p{
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
}

.section-title {
  color: var(--primary);
  font-size: 3.428571429rem;
  margin-bottom: 44px;
  text-align: center;
}
.section-title span {
  font-size: 1.357142857rem;
  display: block;
}
.section-title.is-white {
  color: #fff;
}
.wrapper {
  padding: 0 24px;
}
#page{
	margin: 100px 0 0 0;
}
.page_title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 5.714285714rem;
  color: #ffffff;
  height: 360px;
  background-color: var(--primary);
}
.is-en {
  font-family: 'Oswald', sans-serif;
}
@font-face {
  font-family: 'DelaGothicOne';
  src: url('../fonts/DelaGothicOne-Regular.woff') format('woff'),
}
@font-face {
  font-family: 'Wrestleround';
  src: url('../fonts/Wrestleround-Regular.woff') format('woff'),
}
.is-ng {
  font-family: 'Wrestleround', sans-serif;
}
.is-p {
  line-height: 2;
}
.is-left {
  text-align: left;
}
.is-right {
  text-align: right;
}
.is-center {
  text-align: center;
}
.button {
  border-radius: 6px;
  display: inline-block;
  color: var(--primary);
  font-size: 1.142857143rem;
  padding: 10px 72px;
  border: solid var(--primary) 1px;
  opacity: 1;
  transition: opacity ease .2s;
}
.button.is-white {
  background: none;
  color: #ffffff;
  border: solid #ffffff 1px;
}
.button:hover {
  opacity: 0.6;
}
.container {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 0 30px;
}
.loader {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity ease .4s;
  padding: 0 24px;
}
.loader.is-active {
  pointer-events: initial;
  opacity: 1;
}
.loader .loader-img img{
	width: 50vw;
	height: auto;
	margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 3rem;
    margin-bottom: 30px;
  }
  .page_title {
    height: 150px;
    font-size: 3.333333333rem;
  }
}
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: #FFFFFF;
  transition: background-color ease .2s;
}
.header.is-scroll {
  background-color: #FFFFFF;
}
.header.is-top {
  background-color: #FFFFFF;
}
.header.is-active {
  background-color: #FFFFFF;
}
.header-logo {
	width: 83px;
	height: auto;
  margin-left: 40px;
}
.header-group {
  display: flex;
  justify-content: center;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: center;
}
.header-nav {
  display: flex;
  align-items: center;
}
.header-nav-item-link {
  font-size: 1.285714286rem;
}
.header-nav-item:not(:last-child) {
  margin-right: 20px;
}
.header-button {
}
.header-button-logo {
  display: none;
}
.header-button-link {
  color: #fff;
  font-size: .857142857rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 100px;
  background-color: #000000;
  line-height: 1.5;
  opacity: 1;
  transition: opacity ease .2s;
}
.header-button-link:hover {
  opacity: .8;
}
.header-menu {
  position: absolute;
  top: 0;
  right: 0;
  display: none;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: #ffffff;
}
.header-menu-inner {
  position: relative;
  width: 24px;
  height: 15px;
}
.header-menu-border {
  width: 24px;
  height: 1px;
  background-color: #000000;
  border-radius: 1px;
  transition: transform ease .2s;
}
.header-menu-border.is-top {
  position: absolute;
  top: 0;
  left: 0;
}
.header-menu-border.is-middle {
  position: absolute;
  top: 50%;
  left: 0;
  transform-origin: right;
}
.header-menu-border.is-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  transform-origin: left;
  transform: scaleX(0.7);
}
.header-menu.is-active .header-menu-border.is-top {
  transform: rotate(45deg) translateY(5px) translateX(5px);
}
.header-menu.is-active .header-menu-border.is-middle {
  transform: scaleX(0);
}
.header-menu.is-active .header-menu-border.is-bottom {
  transform: rotate(-45deg) translateY(4px) translateX(1px);
}

@media screen and (max-width: 1024px) {
  .header-inner {
    display: flex;
    justify-content: space-between;
    padding: 0;
  }
  .header-logo {
	  width: auto;
    margin-left: 14px;
  }
  .header-logo img {
    height: 20px;
  }
  .header-button {
    position: relative;
    margin-right: 50px;
  }
  .header-button-link {
    width: 50px;
    height: 50px;
    background-color: #ffffff;
  }
  .header-button-text {
    display: none;
  }
  .header-button-logo {
    display: block;
  }
  .header-nav {
    display: none;
  }
  .header-menu {
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  .header {
    position: fixed;
  }
  .header.is-scroll {
    background-color: #FFFFFF;
  }
}

.sns-menu {
  transform: translateY(-50%);
  position: fixed;
  z-index: 201;
  top: 50%;
  right: 40px;
  border-radius: 4px;
}
.sns-menu-item a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  width: 36px;
  height: 36px;
  background-color: #000000;
  margin: 10px 0;
  opacity: 1;
  transition: opacity ease .2s;
}
.sns-menu-item a:hover {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  .sns-menu {
    display: none;
  }
}
.nav-menu {
  pointer-events: none;
  display: none;
  z-index: 300;
  position: fixed;
  top: 50px;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity ease .2s;
  opacity: 0;
}
.nav-menu.is-active {
  opacity: 1;
  pointer-events: initial;
}
.nav-menu-inner {
  position: relative;
  z-index: 100;
  padding: 45px 30px;
  width: 100%;
}
.nav-menu-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
}
.nav-menu-item {
  font-size: 5vw;
  margin-bottom: 32px;
}
.nav-menu-sns {
  display: flex;
  align-items: center;
}
.nav-menu-sns-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  margin-right: 16px;
}
@media screen and (max-width: 1470px) {
  .nav-menu {
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  .nav-menu {
  }
}

.information{
  position: fixed;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -100px;
  transition: all 0.3s;
}
.information.on {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 199;
  background-color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px -3px 20px 0px;
  transition: all 0.3s;
}
.information-inner {
  padding: 13px 30px;
}
.information-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.information-body-text {
  display: flex;
  align-items: center;
  width: 100%;
}
.information-body-text-date,
.information-body-text-venue{
  display: flex;
  align-items: center;
  width: 100%;
  margin-right: 54px;
}
.information-body-text-date-name {
  font-size: 1.714285714rem;
  max-width: 120px;
  width: 100%;
  text-align: center;
  padding: 8px 0;
  border: solid #000 1px;
  margin-right: 20px;
}
.information-body-text-date-value {
  position: relative;
  line-height: 1.5;
  width: 100%;
}
.information-body-text-date-value a {
  text-decoration: underline;
}
.information-body-summary {
  display: none;
}
.information-body-button {
  max-width: 224px;
  width: 100%;
}
.information-body-summary {
  width: 45%;
  margin-right: 10px;
}
.information-body-summary .information-body-button-link {
  font-size: 1rem;
  padding: 19px 20px;
}
.information-body-button-link {
  position: relative;
  font-weight: bold;
  display: block;
  background-color: #000000;
  border-radius: 6px;
  padding: 12px 20px;
  color: #ffffff;
  opacity: 1;
  transition: opacity ease .2s;
}
.information-body-button-link:hover {
  opacity: 0.6;
}
.information-body-button-arrow {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
}
.information-body-button.is-enter{
}
.information-body-button.is-enter .information-body-button-link{
}
.information-body-button-link span {
  font-weight: normal;
  font-size: 0.714285714rem;
  display: block;
  margin-top: 10px;
}
@media screen and (max-width: 1024px) {
  .information-inner {
    padding: 10px 30px;
  }
  .information-body-button {
    max-width: initial;
  }
  .information-body-button-link {
    text-align: center;
    padding: 9px 20px;
  }
  .information-body-summary {
    display: block;
  }
  .information-body-text {
    display: none;
  }
}
@media screen and (max-width: 450px){
  .information-inner{
    padding: 10px;
  }
}


.alliance {
  background-color: #F4F4F4;
  padding: 100px 0;
}
.alliance-inner {
}
.alliance-group + .alliance-group {
  margin-top: 100px;
}
.alliance-group-name {
  font-size: 1.714285714rem;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 60px;
  text-align: center;
  padding: 15px 0;
  border-top: solid 1px var(--primary);
  border-bottom: solid 1px var(--primary);
}
.alliance-group.special_support .alliance-group-body {
  justify-content: center;
}
.alliance-group-body {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.alliance-group.special_support .alliance-item {
  margin-right: 0;
  width: 33.28125%;
}
.alliance-item {
  width: calc(100% / 5);
  height: 100%;
  overflow: hidden;
  border: solid 0.5px #EEEEEE;
}
.alliance-item img {
  width: 100%;
}
.alliance-item-link {
  opacity: 1;
  transition: opacity ease .2s;
}
.alliance-item-link.is-disable {
  pointer-events: none;
}
.alliance-item-link:hover {
  opacity: 0.6;
}
.alliance-item:nth-child(4n) {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .alliance {
    padding: 66px 0 80px;
  }
  .alliance-group + .alliance-group {
    margin-top: 40px;
  }
  .alliance-group-name {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  .alliance-item {
    width: calc(100% / 2);
  }
  .alliance-group.special_support .alliance-item {
    width: 100%;
  }
}

.footer {
  overflow: hidden;
  background-color: #ffffff;
  padding: 120px 0 60px;
  margin-bottom: 84px;
}
.footer-inner {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.footer-body {
  padding: 12px 0;
  margin-left: 10px;
}
.footer-navigator-links {
  margin-bottom: -32px;
}
.footer-navigator-links-item {
  margin-bottom: 32px;
}
.footer-navigator-links-item a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  opacity: 1;
  transition: opacity ease .2s;
}
.footer-navigator-links-item-x a {
  position: relative;
  text-decoration: none;
  opacity: 1;
  transition: opacity ease .2s;
}
.footer-navigator-links-item-x a img{
  height: 30px;
  width: 60px;
}
.footer-navigator-links-item a:hover {
  opacity: 0.6;
}
.footer-bottom {
  padding: 12px 0;
}
.footer-bottom-archived {
  margin-bottom: 40px;
  display: flex;
}
.footer-bottom-archived-item{
	width: 80px;
	height: auto;
}
.footer-bottom-archived-item:not(:last-child) {
  margin-right: 14px;
}
.footer-bottom-archived a {
  opacity: 1;
  transition: opacity ease .2s;
}
.footer-bottom-archived a:hover {
  opacity: 0.6;
}
.footer-bottom-logo {
  margin-bottom: 30px;
}
.footer-bottom-copyright {
  font-size: 0.714285714rem;
  letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 80px 0 60px;
    margin-bottom: 70px;
  }
  .footer-inner {
    display: block;
  }
  .footer-body {
    padding: 0;
    margin-bottom: 60px;
  }
  .footer-navigator-links {
    margin-bottom: 0;
  }
  .footer-navigator-links-item {
    margin-bottom: 24px;
  }
  .footer-bottom {
    padding: 0;
  }
  .footer-bottom-archived {
    margin-bottom: 60px;
    justify-content: center;
  }
  .footer-bottom-logo {
    margin-bottom: 40px;
  }
  .footer-bottom-archived-item{
    width: 80px;
    height: auto;
  }
  .footer-bottom-archived-item:not(:last-child) {
    margin-right: 7px;
  }
}

.banner-inner {
	position: relative;
	margin-bottom: 50px;
	display: flex;
	justify-content: center;
}
.banner-group {
  width: 49%;
  overflow: hidden;
	margin: 0 8px;
}
.banner-item img {
	border-radius: 6px;
}
.banner-item + .banner-item {
  margin-left: 2%;
}
.banner-item a {
  opacity: 1;
  transition: opacity ease .2s;
}
.banner-item a:hover {
  opacity: 0.8;
}
@media screen and (min-width: 986px) {
  .banner-inner {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    width: 946px;
  }
  #top .news-inner-top{
    position: relative;
    padding: 0 30px;
    width: 930px;
  }
}
@media screen and (max-width: 768px) {
  .banner-item {
    width: 100%;
  }
  .banner-item + .banner-item {
    margin-left: 0;
  }
  .banner-inner {
    position: relative;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
  }
}
@media screen and (max-width: 450px){
	.banner-inner{
		flex-wrap: wrap;
	}
	.banner-group{
		width: 100%;
		margin: 0 0 15px 0; 
	}
}

.area-inner {
  background-color: #fff;
  padding: 80px 40px 0;
  display: flex;
  flex-wrap: wrap;
}
.area-item {
  width: calc(100% / 5 - 2%);
}
.area-item.is-disable {
  background-color: #1D0000;
  pointer-events: none;
}
.area-item.is-disable img {
  opacity: 0.3;
}
.area-item {
  margin-right: 2.5%;
  margin-bottom: 2.5%;
  overflow: hidden;
  border-radius: 12px;
}
.area-item:nth-child(5n) {
  margin-right: 0;
}
.area-item a {
  opacity: 1;
  transition: opacity ease .2s;
}
.area-item a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .area-inner {
	width: 85%;
	flex-wrap: wrap;
	margin: 0 auto;
	padding: 40px 30px 0;
  }
  .area-item {
    width: 17.5%;
    margin-right: 3%;
    margin-bottom: 3%;
  }
  .area-item:nth-child(5n) {
    margin-right: 0;
  }
  .area-item + .area-item {
    margin-left: 0;
  }
}
@media screen and (max-width: 450px){
	.area-inner{
		padding: 10% 0 0 0;
	}
	.area-item{
		width: 48%;
		margin: 0 10px 10px 0;
	}
	.area-item:nth-child(2n){
		margin: 0 0 10px 0;
	}
	.area-item:nth-child(5n){
		margin: 0 10px 10px 0;
	}
	.area-item:nth-child(10){
		margin: 0 0 10px 0;
	}
}

#global {
  position: relative;
  padding: 80px 40px 40px 40px;
}
#global .global-logo {
	position: relative;
	text-align: center;
	width:580px;
	margin: 0 auto 64px auto;
}
#global .global-links {
  display: flex;
  flex-wrap: wrap;
}
#global .global-links-item {
  width: 190px;
}
#global .global-links-item.is-disable {
  background-color: #1D0000;
  pointer-events: none;
}
#global .global-links-item.is-disable img {
  opacity: 0.3;
}
#global .global-links-item {
  margin-right: 27px;
  margin-bottom: 27px;
  overflow: hidden;
  border-radius: 6px;
}
/* #global .global-links-item:nth-child(5n) {
  margin-right: 0;
} */
#global .global-links-item a {
  opacity: 1;
  transition: opacity ease .2s;
}
#global .global-links-item a:hover {
  opacity: 0.8;
}
#global .global-copyright {
  width: 100%;
  text-align: center;
  position: fixed;
  left: 40px;
  top: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  font-size: 0.857142857rem;
}
@media screen and (max-width: 768px) {
  #global {
    padding: 80px 0;
  }
  #global .global-links-item {
    width: 46.5%;
    margin-right: 6.3%;
    margin-bottom: 6.3%;
  }
  #global .global-links-item:nth-child(5n) {
    margin-right: 6.3%;
  }
  #global .global-links-item:nth-child(2n) {
    margin-right: 0;
  }
  #global .global-links-item + .global-links-item {
    margin-left: 0;
  }
  #global .global-copyright {
    display: none;
  }
  #global .global-logo {
    width:75%;
  }
}

#top{
	overflow: hidden;
}

#top .mv {
  margin-top: 100px;
  position: relative;
  width: 100%;
  overflow: hidden;
}
#top .mv-body {
  position: relative;
  height: 100%;
  width: 100%;
}
#top .mv-body-paper01 {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100vw;
  background-size: cover;
  background-position: center;
  background-image: url("../imgs/mv-paper01.png");
  animation-name: huwahuwa;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 1.5s;
  transform: translateY(-1%) scale(1.1);
}
#top .mv-body-paper02 {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  min-width: 1400px;
  background-size: 90vw;
  background-position: center;
  background-image: url("../imgs/mv-paper02.png");
  animation-name: huwahuwa;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 2s;
  transform: translateY(-1%) scale(1.1);
}
@keyframes huwahuwa {
  0% {
    transform: translateY(-1%) scale(1.1);
  }
  100% {
    transform: translateY(1%) scale(1.1);
  }
}
@-webkit-keyframes huwahuwa {
  0% {
    transform: translateY(-1%) scale(1.1);
  }
  100% {
    transform: translateY(1%) scale(1.1);
  }
}
#top .mv-body-mainimg {
  height: 100%;
  width: 100%;
}
#top .mv-body-mainimg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color:var(--primary);
}


#top .mv-inner {
  position: absolute;
  top: 0;
  left: -4%;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#top .mv-img {
  display: none;
  height: 100%;
  width: 100%;
  text-align: center;
}
#top .mv-img img {
  display: inline-block;
  object-fit: contain;
  height: 100%;
}
#top .mv-body .sp {
  display: none;
}
#top .mv-news {
  position: absolute;
  bottom: 8vw;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  max-width: 960px;
  width: 100%;
  background-color: #ffffff;
  border-radius: 6px;
  opacity: 1;
  transition: opacity ease .2s;
}
#top .mv-news:hover {
  opacity: 0.8;
}
#top .mv-news-link {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  padding-right: 52px;
}
#top .mv-news-value {
  padding: 0 14px;
  width: 100%;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.857142857rem;
}
#top .mv-news-arrow {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  height: 16px;
}
#top .mv-scroll {
  position: absolute;
  bottom: 40%;
  left: 30px;
  width: 48px;
  height: 162px;
  transform: translateX(-25%);
}
#top .mv-scroll-border {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 100px;
  background-color: #000;
  transform-origin: top;
  transform: translateX(-50%);
  opacity: 0.5;
}
#top .mv-scroll-shape {
  opacity: 0.5;
  width: 48px;
  height: 48px;
  border: solid #000 1px;
  border-radius: 100%;
  position: absolute;
  top: 32px;
  left: 0;
  transform: translateY(0);
  animation: scroll 2s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
}
@keyframes scroll {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  1% {
    transform: translateY(0);
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(120px);
  }
}
@-webkit-keyframes scroll {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  1% {
    opacity: 0.5;
    transform: translateY(0);
  }
  50% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(120px);
  }
}
#top .mv-scroll-text {
  transform: rotate(90deg) translateX(25%);
}


@media screen and (max-width: 1470px){
  #top .mv-body{
    height: 84vh;
  }
  #top .mv-body-mainimg img{
    position: absolute;
    top: 0;
  }
  #top .mv-news{
    bottom: 6vw;
  }
}
@media screen and (max-width: 1280px){
  #top .mv-news{
    bottom: 10vw;
  }
}
@media screen and (max-width: 1024px) {
  #top .mv{
    margin: 35px 0 0 0;
  }
  #top .mv-inner{
    top: 0;
	}
  #top .mv-body{
    height: 62vh;
    margin: 16px 0 0 0;
  }
  #top .mv-body-mainimg .sp{
    display: none;
  }
  #top .mv-news {
    bottom: 4vw;
    max-width: 600px;
  }
  #top .mv-body-mainimg img{
    object-fit: cover;
  }
  #top .mv-body-paper01 {
    background-size: 115vw;
    background-repeat: no-repeat;
    background-position: center;
  }
  #top .mv-body-paper02 {
    background-size: 100vw;
    background-repeat: no-repeat;
    background-position: 36% center;
  }
}
@media screen and (max-width: 768px) {
  #top .mv-body{
    height: auto;
  }
  #top .mv {
    height: 48vh;
  }
  #top .mv-body-mainimg img{
    height: 48vh;
    top: 0;
  }
  #top .mv-scroll {
    display: none;
  }
  #top .mv-text {
    padding: 0;
  }
  #top .mv-news {
    max-width: calc(100% - 60px);
    margin: 0 30px;
    left: 0;
    bottom: 10px;
    transform: translateX(0px);
  }
  #top .mv-news-link {
    display: block;
    padding: 12px 16px;
  }
  #top .mv-news-date {
    font-size: 0.833333333rem;
    margin-bottom: 4px;
  }
  #top .mv-news-value {
    padding: 0;
  }
}

@media screen and (max-width: 450px){
  #top .mv-body{
    height: 100vh;
    margin: 0;
  }
  #top .mv-body-mainimg .pc{
    display: none;
  }
  #top .mv-body-mainimg .sp{
    display: block;
    height: 102vh;
    top: 35px;
  }
  #top .mv-body-mainimg{
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  #top .mv{
    margin: 0;
    height: 100vh;
  }
	#top .mv-body-paper01{
    background-image: url("../imgs/mv-paper01_sp.png");
		background-size: 100vw;
		background-position: -6% center;
	}
	#top .mv-body-paper02{
		background-size: 230vw;
		background-position: -9% center;
	}
  #top .mv-news{
    bottom: 4.5vw;
  }
  ::-webkit-full-page-media, :future, :root #top .mv-body-mainimg .sp{
    height: 100vh;
    top: 2%;
  }
}

@media screen and (max-width: 320px){
  #top .mv-body-mainimg .sp{
    bottom: -5%;
  }
  #top .mv{
    height: calc(112vh - 50px - 70px);
  }
  #top .mv-news{
    bottom: 12px;
  }
}

.banner,
#top .about,
#top .model,
#top .performance,
#top .brand,
#top .salon {
  background-color: #fff;
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .banner,
  #top .about,
  #top .model,
  #top .performance,
  #top .brand,
  #top .salon {
    padding-top: 70px;
  }
}

#top .news {
  background-color: #F4F4F4;
  padding: 54px 0 60px;
}
#top .news-inner {
  position: relative;
}
#top .news-inner-top{
  position: relative;
  padding: 0 30px;
}
#top .news .button-outer {
  margin-bottom: 30px;
}
#top .news-title {
  font-size: 2.285714286rem;
  color: var(--primary);
  margin-bottom: 30px;
}
#top .news-title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
#top .news-item-link {
  padding: 18px 0;
  border-bottom: solid 1px #DDDDDD;
  display: flex;
  opacity: 1;
  transition: opacity ease .2s;
}
#top .news-item-link:hover {
  opacity: 0.6;
}
#top .news-item-date {
  margin-right: 26px;
  font-size: 0.857142857rem;
}
#top .news-item-value {
  font-size: 0.857142857rem;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#top .about {
  padding-bottom: 100px;
}
#top .about-group {
  display: flex;
  justify-content: space-between;
}
#top .about-text-group {
  margin-right: 60px;
}
#top .about-title {
  font-weight: bold;
  font-size: 1.714285714rem;
  line-height: 1.5;
  letter-spacing: 2px;
  margin-bottom: 30px;
}
#top .about-text {
  margin-bottom: 75px;
}
#top .about-img {
  position: relative;
  width: 40%;
  max-width: 620px;
}
#top .about .button-outer{
  text-align: center;
  margin: 20px auto;
}

@media screen and (max-width: 800px){
	#top .about-img{
    width: 50%;
		margin: 0 auto;
	}
}
@media screen and (max-width: 450px){
  #top .about-img{
    width: 80%;
		margin: 0 auto;
	}
}

#top .model {
  padding-bottom: 100px;
  background-color: var(--secondary);
}
#top .model-slider {
  width: 100vw;
}
.model-slider-body {
  margin-bottom: 30px;
}
#top .model-slider-body-item {
  position: relative;
  max-width: 200px;
  min-width: 200px;
  overflow: hidden;
  border-radius: 4px;
  opacity: 1;
  transition: opacity ease .2s;
}
#top .model-slider-body-item:hover {
  opacity: 0.8;
}
#top .model-slider-body-item .name {
  background-color: #000000;
  color: #fff;
  padding: 11px 8px;
  text-align: center;
  font-size: 0.857142857rem;
}
#top .model-slider-body-item .ribbon {
  position: absolute;
  top: 0;
  left: -2px;
  background-color: var(--primary);
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 10px;
  padding: 4px;
  border-radius: 2px;
  box-shadow: 0 5px 10px rgba(0,0,0,.1);
}

#top .performance {
	position: relative;
	padding-bottom: 100px;
	background-color: var(--primary);
	overflow: hidden;
	z-index: 1;
}
#top .performance .anime-bg{
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-position: center;
	background-size: 60vw;
	background-color: var(--primary);
	background-image: url('../imgs/mv-paper02.png');
	animation-name: huwahuwa;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	animation-duration: 1.5s;
	transform: translateY(-1%) scale(1.1);
	z-index: -1;
}
#top .performance-group {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 0;
  margin-bottom: 80px;
}
#top .performance-item {
  display: inline-block;
  margin: 0 3.125% 15px 0;
  width: 22.480620155%;
  overflow: hidden;
  border-radius: 4px;
  opacity: 1;
  transition: opacity ease .2s;
}
#top .performance-item img {
  width: 100%;
}
#top .performance-item:hover {
  opacity: 0.8;
}
#top .performance-item:nth-child(4n) {
  margin: 0 0 15px 0;
}
#top .performance-item-name {
  width: 100%;
  font-size: 2rem;
  background-color: #ffffff;
  padding: 16px 20px;
}

@media screen and (max-width: 450px){
	#top .performance .anime-bg{
		background-position: 47%;
		background-size: 135%;
	}
}

#top .brand {
  padding-bottom: 50px;
}
#top .brand-group {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
#top .brand-item {
  display: inline-block;
  width: calc(100% / 5);
  height: 100%;
  overflow: hidden;
  border: solid 0.5px #EEEEEE;
  opacity: 1;
}
#top .brand-item-link {
  transition: opacity ease .2s;
}
#top .brand-item-link.is-disable {
  pointer-events: none;
}
#top .brand-item-link:hover {
  opacity: 0.6;
}
#top .brand-item img {
  width: 100%;
}
#top .brand-item:nth-child(4n) {
  margin-right: 0;
}
#top .brand-item-link.is-disable {
  pointer-events: none;
}
#top .salon {
  padding-bottom: 100px;
}
#top .salon-group {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
#top .salon-item {
  display: inline-block;
  width: calc(100% / 5);
  height: 100%;
  overflow: hidden;
  border: solid 0.5px #EEEEEE;
  opacity: 1;
}
#top .salon-item-link {
  transition: opacity ease .2s;
}
#top .salon-item-link.is-disable {
  pointer-events: none;
}
#top .salon-item-link:hover {
  opacity: 0.6;
}
#top .salon-item img {
  width: 100%;
}
#top .salon-item:nth-child(4n) {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  #top .news {
    padding: 40px 0;
  }
  #top .about-group {
    display: block;
  }
  #top .about-text-group {
	  margin-right: 0;
	  padding: 0 0 0 6%;
  }
  #top .about-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  #top .about-text {
    margin-bottom: 24px;
  }
  #top .about .button-outer {
    margin-bottom: 40px;
  }
  #top .button-outer {
    text-align: center;
  }
  #top .model {
    padding-bottom: 80px;
  }
  #top .model-slider-body {
    margin-bottom: 20px;
  }
  #top .model-slider-body-item {
    max-width: 150px;
    min-width: 150px;
  }
  #top .performance {
    padding-bottom: 80px;
  }
  #top .performance-group {
    margin-bottom: 40px;
  }
  #top .performance-item {
    width: 100%;
    margin-bottom: 20px;
    margin-right: 0;
  }
  #top .performance-item-name {
    font-size: 1.833333333rem;
  }
  #top .salon {
    padding-bottom: 80px;
  }
  #top .brand-group,
  #top .salon-group {
    margin-bottom: 60px;
  }
  #top .brand-item,
  #top .salon-item {
    width: calc(100% / 2);
  }
}
@media screen and (max-width: 450px){
	#top .about-text-group{
		padding: 0;
	}
}

#news {
  margin-top: 100px;
}
#news .page_contents {
  background-color: #fff;
}
#news .news-inner {
  padding: 100px 0 150px;
  width: 600px;
}
#news .news-item-link {
  position: relative;
  padding: 18px 0;
  border-bottom: solid 1px #DDDDDD;
  display: flex;
  opacity: 1;
  transition: opacity ease .2s;
}
#news .news-item-link:hover {
  opacity: 0.6;
}
#news .news-item-date {
  margin-right: 26px;
  font-size: 1.142857143rem;
  color: var(--primary);
}
#news .news-item-value {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
#news .news-item-arrow {
  position: absolute;
  top: 50%;
  right: 0;
  height: 8px;
  transform: translateY(-50%);
}
#news .news-date {
  margin-bottom: 15px;
  font-size: 1.142857143rem;
  color: var(--primary);
}
#news .news-title {
  width: 100%;
  line-height: 2;
  font-size: 1.285714286rem;
  font-weight: bold;
  padding-bottom: 16px;
  border-bottom: solid 1px #DDDDDD;
  margin-bottom: 40px;
}
#news .news-content {
  line-height: 2;
  margin-bottom: 70px;
}
#news .news-content a {
  text-decoration: underline;
}
#news .news-content strong {
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  #news {
    margin-top: 50px;
  }
  #news .news-inner {
    padding: 60px 30px 120px;
  }
  #news .news-item-link {
    display: block;
    padding-right: 16px;
  }
  #news .news-item-date {
    margin-bottom: 10px;
    margin-right: 0;
  }
  #news .news-content {
    margin-bottom: 60px;
  }
}

#about {
  margin-top: 100px;
}
#about .page_contents {
  background-color: #ffffff;
}
#about .about-text-title {
  text-align: center;
  font-size: 3.428571429rem;
  color: var(--primary);
  margin-bottom: 42px;
}
#about .about-text-title span {
  display: inline-block;
  font-size: 1.714285714rem;
  margin-top: 10px;
  font-weight: bold;
}
#about .about-video-item {
  width: 100%;
  height: 0;
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
  transform: translateY(100px);
}
#about .about-video-item iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#about .about-video-item p{
  position: absolute;
  bottom: 3%;
  right: 3%;
  color: #FFF;
}
#about .about-text {
  background-color: #F2F2F2;
  padding: 150px 0 100px;
}
#about .about-text-body {
  text-align: center;
}
#about .about-text-body p {
  line-height: 2;
}
#about .about-text-body p + p {
  margin-top: 16px;
}
#about .about-summary {
  background-color: #ffffff;
  padding: 88px 0 100px;
}
#about .about-summary-title {
  font-size: 3.428571429rem;
  margin-bottom: 60px;
  color: var(--primary);
}
#about .about-summary-sub_title {
  font-size: 1.714285714rem;
  padding-bottom: 24px;
  border-bottom: solid 1px var(--primary);
  font-weight: bold;
}
#about .about-summary-item {
  padding: 32px 0;
  border-bottom: solid 1px #BBBBBB;
  display: flex;
  align-items: flex-start;
}
#about .about-summary-item-name {
  font-size: 1.714285714rem;
  font-weight: bold;
  max-width: 200px;
  width: 100%;
}
#about .about-summary-item-value {
  line-height: 1.5;
}
#about .about-summary-item-value a {
  text-decoration: underline;
}
@media screen and (max-width: 1024px) {
  #about {
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  #about .about-text {
    padding: 180px 0 80px;
  }
  #about .about-text-title {
    font-size: 3rem;
    margin-bottom: 27px;
  }
  #about .about-text-body {
    text-align: left;
    font-size: 1rem;
  }
  #about .about-summary {
    padding: 70px 0 120px;
  }
  #about .about-summary-title {
    font-size: 3rem;
    margin-bottom: 27px;
  }
  #about .about-summary-sub_title {
    font-size: 1.5rem;
    padding-bottom: 16px;
    margin-bottom: 0;
  }
  #about .about-summary-item {
    display: block;
    padding: 16px 0;
  }
  #about .about-summary-item-name {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }
  #about .about-summary p {
    width: 100%;
    margin-right: 0;
  }
}

#model {
  margin-top: 100px;
}
#model .page_contents {
  background-color: #fff;
}
#model .model-inner {
  padding: 100px 30px 150px;
}
#model .model-group {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 5%;
}
#model .model-item {
  position: relative;
  cursor: pointer;
  width: 18.75%;
  margin-right: 1.5625%;
  margin-bottom: 1.5625%;
  border-radius: 4px;
  overflow: hidden;
  opacity: 1;
  transition: opacity ease .2s;
}
#model .model-item:hover {
  opacity: 0.8;
}
#model .model-item:nth-child(5n) {
  margin-right: 0;
}
#model .model-item .name {
  background-color: #000000;
  color: #fff;
  padding: 14px 8px;
  text-align: center;
}
#model .model-item .ribbon {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--primary);
  color: #fff;
  text-align: center;
  padding: 6px 10px 4px;
  border-radius: 6px 0 6px 0;
}
#model .model-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 300;
  overflow-y: scroll;
  padding: 40px;
  -webkit-overflow-scrolling: touch;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
#model .model-modal-bg {
  position: fixed;
  top: 0;
  left: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  background-color: rgba(35, 25, 22, .8);
}
#model .model-modal-inner {
  position: relative;
  background-color: #fff;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  padding: 60px;
  display: flex;
}
#model .model-modal-slider {
  width: 43.793103448%;
  margin-right: 3.405172414%;
}
#model .model-modal-slider img {
  width: 100%;
}
#model .model-modal-body {
  width: 52.75862069%;
}
#model .model-modal-body-header .name {
  font-weight: bold;
  font-size: 1.714285714rem;
  margin-bottom: 12px;
}
#model .model-modal-body-header .name_en {
  font-size: 1.285714286rem;
}
#model .model-modal-body-header {
  padding: 16px 30px;
  background-color: #000000;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
#model .model-modal-body-header .sns {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
#model .model-modal-body-header .sns-item {
  margin-left: 10px;
  width: 36px;
  height: 36px;
  border-radius: 100%;
  background-color: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity ease .2s;
}
#model .model-modal-body-header .sns-item:hover {
  opacity: 0.6;
}
#model .model-modal-body-thumbnail {
  display: flex;
}
#model .model-modal-body-thumbnail-item {
  position: relative;
  cursor: pointer;
  border-radius: 6px;
  overflow: hidden;
  width: 31.045751634%;
  margin-right: 3.431372549%;
}
#model .model-modal-body-thumbnail-item:last-child {
  margin-right: 0;
}
#model .model-modal-body-thumbnail-item:after {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  border: solid 3px var(--primary);
  border-radius: 6px;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity ease .2s;
}
#model .model-modal-body-thumbnail-item:hover:after,
#model .model-modal-body-thumbnail-item.is-active:after {
  opacity: 1;
}
#model .model-modal-body-body .profile {
  margin-bottom: 24px;
}
#model .model-modal-body-body .title {
  font-weight: bold;
}
#model .model-modal-body-body a {
  display: inline-block;
  margin-right: 8px;
  text-decoration: underline;
}
#model .model-modal-body-brand {
  background-color: #F2F2F2;
  padding: 20px;
  margin-bottom: 20px;
  display: flex;
}
#model .model-modal-body-brand .title {
  font-size: 1.285714286rem;
  padding-top: 16px;
  padding-right: 20px;
  margin-right: 20px;
  color: var(--primary);
  border-right: solid 1px var(--primary);
}
#model .model-modal-body-brand .value {
  line-height: 2;
  font-size: 0.857142857rem;
}
#model .model-modal-close {
  position: absolute;
  right: 0;
  top: -32px;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  #model {
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  #model .model-inner {
    padding: 60px 30px 120px;
  }
  #model .model-item {
    width: calc(100% / 3 - (20px / 3));
    margin-right: 10px;
    margin-bottom: 10px;
  }
  #model .model-item:nth-child(5n) {
    margin-right: 10px;
  }
  #model .model-item:nth-child(2n) {
    margin-right: 10px;
  }
  #model .model-item:nth-child(3n) {
    margin-right: 0px;
  }
  #model .model-item .name {
    font-size: 10px;
  }
  #model .model-modal {
    padding: 60px 30px;
  }
  #model .model-modal-inner {
    display: block;
    padding: 26px 20px;
  }
  #model .model-modal-slider {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
  #model .model-modal-body {
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
  }
  #model .model-modal-body-header {
    margin-top: 30px;
    display: block;
    padding: 18px 20px;
  }
  #model .model-modal-body-header .sns {
    margin-top: 18px;
    justify-content: flex-start;
  }
  #model .model-modal-body-header .sns-item {
    margin-left: 0;
    margin-right: 10px;
  }
  #model .model-modal-body-brand {
    padding: 20px 15px;
    display: block;
    margin-bottom: 0;
  }
  #model .model-modal-body-brand .title {
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 8px;
    border-right: none;
    border-bottom: solid 1px var(--primary);
  }
  #model .model-modal-body-brand .value {
    font-size: 1rem;
  }
}
#brand {
  margin-top: 100px;
}
#brand .page_contents {
  background-color: #ffffff;
}
#brand .brand-inner {
  padding: 100px 30px 150px;
}
#brand .brand-group {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -3.125%;
}
#brand .brand-item {
  width: 22.65625%;
  overflow: hidden;
  margin-right: 3.125%;
  margin-bottom: 3.125%;
}
#brand .brand-item:nth-child(4n) {
  margin-right: 0;
}
#brand .brand-item-link.is-disable {
  pointer-events: none;
}
#brand .brand-item-img {
  text-align: center;
  border: solid 1px #EEEEEE;
  width: 100%;
  opacity: 1;
  transition: opacity ease .2s;
}
#brand .brand-item-img:hover {
  opacity: 0.6;
}
#brand .brand-item-name {
  text-align: center;
  font-size: 1.285714286rem;
  margin-bottom: 18px;
  color: #FFFFFF;
}
#brand .brand-item-group {
  background-color: #000000;
  padding: 15px;
}
#brand .brand-item-sns {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 21px;
}
#brand .brand-item-sns * {
  margin: 0 4px;
  opacity: 1;
  transition: opacity ease .2s;
}
#brand .brand-item-sns *:hover {
  opacity: 0.8;
}
@media screen and (max-width: 1024px) {
  #brand {
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  #brand .brand-inner {
    padding: 60px 30px 120px;
  }
  #brand .brand-group {
    margin-bottom: -20px;
  }
  #brand .brand-item {
    width: calc(50% - 10px);
    margin-right: 20px;
    margin-bottom: 20px;
  }
  #brand .brand-item:nth-child(2n) {
    margin-right: 0;
  }
}

#salon {
  margin-top: 100px;
}
#salon .page_contents {
  background-color: #ffffff;
}
#salon .salon-inner {
  padding: 100px 0 150px;
}
#salon .salon-group {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -3.125%;
}
#salon .salon-item {
  width: 22.65625%;
  overflow: hidden;
  margin-right: 3.125%;
  margin-bottom: 3.125%;
}
#salon .salon-item:nth-child(4n) {
  margin-right: 0;
}
#salon .salon-item-link.is-disable {
  pointer-events: none;
}
#salon .salon-item-img {
  text-align: center;
  border: solid 1px #EEEEEE;
  width: 100%;
  opacity: 1;
  transition: opacity ease .2s;
}
#salon .salon-item-img:hover {
  opacity: 0.6;
}
#salon .salon-item-name {
  text-align: center;
  font-size: 1.285714286rem;
  margin-bottom: 18px;
  color: #FFFFFF;
}
#salon .salon-item-group {
  background-color: #000000;
  padding: 15px;
}
#salon .salon-item-sns {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 21px;
}
#salon .salon-item-sns * {
  margin: 0 4px;
  opacity: 1;
  transition: opacity ease .2s;
}
#salon .salon-item-sns *:hover {
  opacity: 0.8;
}
@media screen and (max-width: 1024px) {
  #salon {
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  #salon .salon-inner {
    padding: 60px 30px 120px;
  }
  #salon .salon-group {
    margin-bottom: -20px;
  }
  #salon .salon-item {
    width: calc(50% - 10px);
    margin-right: 20px;
    margin-bottom: 20px;
  }
  #salon .salon-item:nth-child(2n) {
    margin-right: 0;
  }
}

#performance {
  margin-top: 100px;
}
#performance .page_contents {
  background-color: #fff;
}
#performance .performance-inner {
  padding: 100px 30px 150px;
}
#performance .performance-group-body {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
#performance .performance-name {
  font-size: 3.428571429rem;
  color: var(--primary);
  margin-bottom: 44px;
}
#performance .performance-item {
  width: 31.25%;
  /* width: 100%; */
  margin-right: 3.1%;
  margin-bottom: 3.1%;
}
#performance .performance-item:nth-child(3n) {
  margin-right: 0;
}
#performance .performance-item-img {
  margin-bottom: 24px;
}
#performance .performance-item-img img {
  width: 100%;
}
#performance .performance-item-name {
  font-weight: bold;
  font-size: 1.285714286rem;
  padding-bottom: 14px;
  border-bottom: solid 1px var(--primary);
  margin-bottom: 16px;
}
#performance .performance-item-text {
  line-height: 2;
  margin-bottom: 16px;
}
#performance .performance-item-sns {
  line-height: 2;
}
#performance .performance-item-sns a img{
  margin-right: 12px;
}
@media screen and (max-width: 1024px) {
  #performance {
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  #performance .performance-inner {
    padding: 60px 30px 120px;
  }
  #performance .performance-name {
    font-size: 3rem;
    margin-bottom: 29px;
  }
  #performance .performance-item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
  }
  #performance .performance-item-name {
    font-size: 1.333333333rem;
  }
}


/* guest */
#guest {
  margin-top: 100px;
}
#guest .page_contents {
  background-color: #fff;
}
#guest .guest-inner {
  padding: 100px 0 150px;
  width: 600px;
}
#guest .guest-group-body {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}
#guest .guest-name {
  font-size: 3.428571429rem;
  color: var(--primary);
  margin-bottom: 44px;
}
#guest .guest-item {
  width: 100%;
  /* margin-right: 3.1%; */
  margin-bottom: 3.1%;
}
#guest .guest-item:nth-child(3n) {
  margin-right: 0;
}
#guest .guest-item-img {
  margin-bottom: 24px;
}
#guest .guest-item-img img {
  width: 600px;
}
#guest .guest-item-name {
  font-weight: bold;
  font-size: 1.285714286rem;
  padding-bottom: 14px;
  border-bottom: solid 1px var(--primary);
  margin-bottom: 16px;
}
#guest .guest-item-text {
  line-height: 2;
  margin-bottom: 16px;
}
#guest .guest-item-sns {
  line-height: 2;
}
#guest .guest-item-sns a img{
  margin-right: 12px;
}
@media screen and (max-width: 1024px) {
  #guest {
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  #guest .guest-inner {
    padding: 60px 30px 120px;
  }
  #guest .guest-name {
    font-size: 3rem;
    margin-bottom: 29px;
  }
  #guest .guest-item {
    width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
  }
  #guest .guest-item-name {
    font-size: 1.333333333rem;
  }
}

/*  */

#ticket-access {
  margin-top: 100px;
}
#ticket-access .page_contents {
  background-color: #fff;
}
#ticket-access .ticket-inner {
  padding: 40px 0;
}
#ticket-access .ticket-title {
  font-size: 3.428571429rem;
  color: var(--primary);
  margin: 40px 0 0 0;
  text-align: center;
}
#ticket-access .ticket-sub_title {
  font-size: 1.714285714rem;
  font-weight: bold;
  text-align: center;
  color: var(--primary);
  padding: 14px 0;
  border-top: solid 1px var(--primary);
  border-bottom: solid 1px var(--primary);
  margin-bottom: 60px;
  line-height: 1.5;
}
#ticket-access .ticket-flow {
  margin-bottom: 100px;
}
#ticket-access .ticket-flow-outer {
  position: relative;
  display: flex;
  justify-content: center;
}
#ticket-access .ticket-flow-group {
  max-width: 580px;
}
#ticket-access .ticket-flow-group:first-child {
  margin-right: 9.375%;
}
#ticket-access .ticket-flow-group:first-child:after {
  position: absolute;
  top: 0;
  left: 50%;
  content: '';
  display: block;
  width: 1px;
  height: 100%;
  background-color: var(--primary);
}
#ticket-access .ticket-flow-if {
  font-size: 1.285714286rem;
  font-weight: bold;
  margin-bottom: 24px;
  line-height: 2;
}
#ticket-access .ticket-flow-title {
  background-color: var(--primary);
  text-align: center;
  padding: 10px;
  margin-bottom: 40px;
}
#ticket-access .ticket-flow-title-text {
  font-size: 1.285714286rem;
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 8px;
}
#ticket-access .ticket-flow-title-price {
  color: #ffffff;
  font-weight: bold;
}
#ticket-access .ticket-flow-title-price span {
  font-size: 1.714285714rem
}
#ticket-access .ticket-flow-item {
  display: flex;
  margin-bottom: 32px;
}
#ticket-access .ticket-flow-item-number {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  padding-top: 2px;
  width: 30px;
  min-width: 30px;
  height: 30px;
  background-color: var(--primary);
  font-size: 1.714285714rem;
  margin-right: 30px;
}
#ticket-access .ticket-flow-item {
  line-height: 2;
}
#ticket-access .ticket-flow-item-text {
  width: 100%;
}
#ticket-access .ticket-flow-item .image {
  margin-top: 12px;
}
#ticket-access .ticket-flow-item .image .sp {
  width: 100%;
  display: none;
}
#ticket-access .ticket-flow-item .button-outer {
  margin-top: 21px;
}
#ticket-access .ticket-flow-item .button {
  padding: 4px 22px;
  font-size: 1rem;
}
#ticket-access .ticket-flow-item .bold {
  font-weight: bold;
  color: var(--primary);
}
#ticket-access .ticket-flow-item .textlink {
  color: var(--primary);
  text-decoration: underline;
}
#ticket-access .ticket-flow-item .caption {
  margin-top: 20px;
  font-size: 0.714285714rem;
}
#ticket-access .ticket-ticket {
  margin-bottom: 100px;
}
#ticket-access .ticket-ticket-group-name {
  font-size: 1.285714286rem;
  font-weight: bold;
  color: var(--primary);
  padding: 15px;
  background-color: #F2F2F2;
  text-align: center;
  margin-bottom: 38px;
}
#ticket-access .ticket-ticket-group .item-price-group {
  margin-bottom: 24px;
  background-color: var(--primary);
  color: #ffffff;
  padding: 16px 8px;
}
#ticket-access .ticket-ticket-group .item-price {
  text-align: center;
  color: #fff;
  font-weight: bold;
  margin-bottom: 8px;
}
#ticket-access .ticket-ticket-group .item-price span {
  font-size: 1.714285714rem;
}
#ticket-access .ticket-ticket-group .item-sub {
  text-align: center;
  color: #fff;
  font-size: 1rem;
}
#ticket-access .ticket-ticket-group .item-sub a {
  text-decoration: underline;
}
#ticket-access .ticket-ticket-group .item-name {
  text-align: center;
  font-size: 1.214285714rem;
  font-weight: bold;
  margin-bottom: 18px;
}
#ticket-access .ticket-ticket-group .caption {
  line-height: 1.5;
  color: #666666;
  margin-bottom: 60px;
  font-size: 0.714285714rem;
}
#ticket-access .ticket-ticket-group .caption span {
  font-weight: bold;
  color: var(--primary);
}
#ticket-access .ticket-ticket-group .caption a {
  color: var(--primary);
  text-decoration: underline;
}
#ticket-access .ticket-access-text {
  line-height: 2;
  margin-bottom: 40px;
}
#ticket-access .ticket-access-text a {
  text-decoration: underline;
}
#ticket-access .ticket-access-map iframe {
  width: 100%;
  height: 400px;
}
@media screen and (max-width: 1024px) {
  #ticket-access {
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  #ticket-access .ticket-inner {
    padding: 0 30px;
  }
  #ticket-access .ticket-title {
    margin-bottom: 30px;
  }
  #ticket-access .ticket-sub_title {
    font-size: 1.5rem;
    margin-bottom: 40px;
  }
  #ticket-access .ticket-flow {
    margin-bottom: 80px;
  }
  #ticket-access .ticket-flow-outer {
    display: block;
  }
  #ticket-access .ticket-flow-group {
    max-width: 100%;
  }
  #ticket-access .ticket-flow-group:first-child {
    margin-right: 0;
  }
  #ticket-access .ticket-flow-group:first-child:after {
    display: none;
  }
  #ticket-access .ticket-flow-if {
    margin-bottom: 20px;
    font-size: 1.333333333rem;
  }
  #ticket-access .ticket-flow-title {
    padding: 20px 8px;
  }
  #ticket-access .ticket-flow-title-text {
    font-size: 1.333333333rem;
  }
  #ticket-access .ticket-flow-title-price span {
    font-size: 1.666666667rem;
  }
  #ticket-access .ticket-flow-item .button {
    padding: 12px 0;
    width: 100%;
    display: block;
    text-align: center;
  }
  #ticket-access .ticket-flow-item .image .sp {
    display: block;
  }
  #ticket-access .ticket-flow-item .image .pc {
    display: none;
  }
  #ticket-access .ticket-ticket{
    margin: 0;
  }
  #ticket-access .ticket-ticket-group .item-name {
    text-align: left;
    line-height: 1.5;
  }
  #ticket-access .ticket-ticket-group .item-sub {
    line-height: 1.5;
  }
  #ticket-access .ticket-ticket-group .item-price span {
    font-size: 1.666666667rem;
  }
  #ticket-access .ticket-access-map iframe {
    height: 160px;
  }
}

#privacypolicy {
  margin-top: 100px;
}
#privacypolicy .page_contents {
  background-color: #fff;
}
#privacypolicy .privacypolicy-inner {
  padding: 100px 30px 150px;
}
#privacypolicy .privacypolicy-title {
  font-weight: bold;
  font-size: 1.571428571rem;
  margin-bottom: 10px;
}
#privacypolicy .privacypolicy-page_title-body {
  font-size: 1.833333333rem;
  font-weight: bold;
}
#privacypolicy .privacypolicy-text {
  margin-bottom: 50px;
  line-height: 2;
}
#privacypolicy .privacypolicy-group + .privacypolicy-group {
  margin-top: 40px;
}
#privacypolicy .privacypolicy-group-name {
  font-size: 1.357142857rem;
  color: #4D4D4D;
  font-weight: bold;
  margin-bottom: 10px;
}
#privacypolicy .privacypolicy-group-text {
  line-height: 2;
  margin-bottom: 10px;
}
#privacypolicy .privacypolicy-group-text a {
  color: #231916;
}
@media screen and (max-width: 1024px) {
  #privacypolicy {
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  #privacypolicy .page_title {
    font-size: 2.5rem;
  }
  #privacypolicy .privacypolicy-inner {
    padding: 60px 30px 120px;
  }
}

#mr_miss {
  margin-top: 100px;
}
#mr_miss .page_contents {
  background-color: #ffffff;
}
#mr_miss .mr_miss-text-title {
  text-align: center;
  font-size: 3.428571429rem;
  color: var(--primary);
  margin-bottom: 42px;
}
#mr_miss .mr_miss-text-title.--support {
  margin-top: 100px;
}
#mr_miss .mr_miss-sub_title {
  font-size: 1.714285714rem;
  font-weight: bold;
  text-align: center;
  color: var(--primary);
  padding: 14px 0;
  border-top: solid 1px var(--primary);
  border-bottom: solid 1px var(--primary);
  margin-bottom: 30px;
}
#mr_miss .mr_miss-mv {
  width: 100%;
  position: relative;
  transform: translateY(100px);
}
#mr_miss .mr_miss-mv img {
  width: 100%;
}
#mr_miss .mr_miss-text {
  background-color: #F2F2F2;
  padding: 150px 0 100px;
}
#mr_miss .mr_miss-text-body {
  text-align: center;
  line-height: 2;
}
#mr_miss .mr_miss-entry_model {
  padding: 90px 0 100px;
}
#mr_miss .mr_miss-entry_model-group {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
#mr_miss .mr_miss-entry_model-item {
  position: relative;
  width: 18.75%;
  margin-right: 1.5625%;
  margin-bottom: 1.5625%;
  border-radius: 4px;
  overflow: hidden;
}
#mr_miss .mr_miss-entry_model-item-ng {
  position: relative;
  width: 23%;
  /* width: 18.75%; */
  margin-right: 1.5625%;
  margin-bottom: 3%;
  border-radius: 4px;
  overflow: hidden;
}
#mr_miss .mr_miss-entry_model-item:nth-child(5n) {
  margin-right: 0;
}
#mr_miss .mr_miss-entry_model .name {
  background-color: #000000;
  color: #fff;
  padding: 14px 8px;
  text-align: center;
}
#mr_miss .mr_miss-entry_model .next_g {
  border-bottom: 2px solid var(--primary);
  color: #000000;
  padding: 10px 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#mr_miss .mr_miss-entry_model .next_g-name {
  flex: 1;
  padding: 0 20px;
  font-size: 20px;
}
#mr_miss .mr_miss-entry_model .next_g-sns {
  flex: 1;
  text-align: right;
}
#mr_miss .mr_miss-entry_model .city-name {
  /* color: #000000; */
  font-size: 28px;
  text-align: center;
  height: 35px;
  font-family: 'DelaGothicOne', sans-serif;
  /* color: var(--primary); */
}
#mr_miss .mr_miss-entry_model .next_g-profile {
  font-size: 14px;
  margin: 10px 10px;
  justify-content: center;
  word-break:break-all;
  font-kerning: none;
}
#mr_miss .mr_miss-winner {
  background-color: #F2F2F2;
  padding: 90px 0 100px;
}
#mr_miss .mr_miss-winner-group {
  display: flex;
  justify-content: center;
}
#mr_miss .mr_miss-winner-group + .mr_miss-winner-group {
  margin-top: 60px;
}
#mr_miss .mr_miss-winner-item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  width: 31.25%;
}
#mr_miss .mr_miss-winner-item + .mr_miss-winner-item {
  margin-left: 40px;
}
#mr_miss .mr_miss-winner-item-name {
  font-size: 1.714285714rem;
  font-weight: bold;
  text-align: center;
  color: var(--primary);
  padding: 14px 0;
  border-top: solid 1px var(--primary);
  border-bottom: solid 1px var(--primary);
  margin-bottom: 30px;
}
#mr_miss .mr_miss-winner-item .name {
  background-color: #000000;
  color: #fff;
  padding: 14px 8px;
  text-align: center;
}
#mr_miss .mr_miss-award {
  padding: 90px 0 100px;
}
#mr_miss .mr_miss-award-item-text {
  line-height: 2;
  font-size: 1.285714286rem;
  font-weight: bold;
}
#mr_miss .mr_miss-award-item + .mr_miss-award-item {
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  #mr_miss {
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  #mr_miss .page_title {
    font-size: 2.5rem;
  }
  #mr_miss .mr_miss-text-body {
    text-align: left;
  }
  #mr_miss .mr_miss-text-title {
    font-size: 3rem;
  }
  #mr_miss .mr_miss-entry_model-group {
    margin-bottom: 60px;
  }
  #mr_miss .mr_miss-entry_model-item {
    width: calc(50% - 10px);
    margin-right: 20px;
    margin-bottom: 20px;
  }
  #mr_miss .mr_miss-entry_model-item-ng {
    width: 100%;
    margin-bottom: 15px;
  }
  #mr_miss .mr_miss-entry_model-item-ng .image {
    text-align: center;
  }
  #mr_miss .mr_miss-entry_model-item:nth-child(5n) {
    margin-right: 20px;
  }
  #mr_miss .mr_miss-entry_model-item:nth-child(3n) {
    margin-right: 20px;
  }
  #mr_miss .mr_miss-entry_model-item:nth-child(2n) {
    margin-right: 0;
  }
  #mr_miss .mr_miss-winner {
    padding: 70px 0 80px;
  }
  #mr_miss .mr_miss-winner-group {
    flex-wrap: wrap;
  }
  #mr_miss .mr_miss-winner-group + .mr_miss-winner-group {
    margin-top: 40px;
  }
  #mr_miss .mr_miss-winner-item {
    width: calc(50% - 10px);
    margin-right: 20px;
    margin-bottom: 20px;
    font-size: 1rem;
  }
  #mr_miss .mr_miss-winner-item.gp {
    width: 100%;
    margin-right: 0;
    font-size: 1.333333333rem;
  }
  #mr_miss .mr_miss-winner-item:nth-child(5n) {
    margin-right: 20px;
  }
  #mr_miss .mr_miss-winner-item:nth-child(3n) {
    margin-right: 20px;
  }
  #mr_miss .mr_miss-winner-item:nth-child(2n) {
    margin-right: 0;
  }
  #mr_miss .mr_miss-winner-item + .mr_miss-winner-item {
    margin-left: 0;
  }
  #mr_miss .mr_miss-sub_title {
    font-size: 1.5rem;
  }
}

#after_report {
  margin-top: 100px;
}
#after_report .page_contents {
  background-color: #fff;
}
#after_report .after_report-inner {
  padding: 100px 30px 150px;
}
#after_report .after_report-group + .after_report-group {
  margin-top: 100px;
}
#after_report .after_report-group-body {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -3.125%;
}
#after_report .after_report-name {
  font-size: 3.428571429rem;
  color: var(--primary);
  margin-bottom: 50px;
  text-align: center;
}
#after_report .after_report-item {
  width: 22.65625%;
  margin-right: 3.125%;
  margin-bottom: 3.125%;
  border-radius: 6px;
  overflow: hidden;
  opacity: 1;
  transition: opacity ease .2s;
}
#after_report .after_report-item:hover {
  opacity: 0.8;
}
#after_report .after_report-item:nth-child(3n) {
  margin-right: 0;
}
#after_report .after_report-item-img img {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  #after_report {
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  #after_report .after_report-inner {
    padding: 60px 30px 120px;
  }
  #after_report .after_report-name {
    font-size: 3rem;
    margin-bottom: 29px;
  }
  #after_report .after_report-group-body {
    margin-bottom: -20px;
  }
  #after_report .after_report-item {
    width: calc(100% / 2 - 10px);
    margin-right: 20px;
    margin-bottom: 20px;
  }
  #after_report .after_report-item:nth-child(2n) {
    margin-right: 0;
  }
}

/*timetable*/
.timetable{
	text-align: center;
}

.timetable .container{
	width: 65%;
	margin: 4% auto;
	padding: 0 0 4% 0;
}

.timetable h3{
	font-size: 37px;
	font-family: 'Oswald', sans-serif;
	margin: 50px auto 0 auto;
	padding: 13px;
	color: #FFF;
	background: var(--primary);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.timetable .timetable_content{
	width: 100%;
	margin: 0 auto 6% auto;
	border: 2px solid var(--primary);
}

.timetable .timetable_content th,.timetable .timetable_content td{
	display: block;
	width: 100%;
	line-height: 1.6em;
}

.timetable .timetable_content th{
	font-size: 27px;
	font-family: 'Oswald', sans-serif;
	background: #E6E6E6;
}

.timetable .timetable_content td{
	font-size: 20px;
	font-weight: normal;
	padding: 18px 13px;
}

.timetable .timetable_content th.no-content{
	padding: 0;
}

@media screen and (max-width: 820px){
	.timetable h3{
		font-size: 31px;
	}
}

@media screen and (max-width: 420px){
	#page{
		margin: 50px 0 0 0;
	}
	.timetable .container{
		width: 90%;
	}
	.timetable h3{
		font-size: 23px;
	}
	.timetable .timetable_content th{
		font-size: 20px;
	}
	.timetable .timetable_content td{
		font-size: 16px;
	}
}


/*ATTENTION*/
.attention .attention_container{
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 25px;
}
.attention h2{
  font-size: 24px;
  margin: 0 0 4% 0;
  padding: 2%;
  text-align: center;
  border-bottom: 1px solid #000;
  font-weight: bold;
}
.attention .attention_container p{
  font-weight: 300;
}
.attention .left,.attention .right{
  width: 48%;
  line-height: 1.5em;
}
.attention .contact{
  width: 100%;
  text-align: center;
}
.attention .contact a{
  display: block;
  width: 40%;
  margin: 2% auto;
  padding: 2% 4%;
  color: #FFF;
  background: #333;
  text-align: center;
}

@media screen and (max-width: 420px){
  .attention .left,.attention .right{
    width: 100%;
  }
  .attention .contact a{
    width: 95%;
    padding: 6%;
    font-size: 16px;
  }
}