@charset "UTF-8";
body {
  color: #333;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  background-color: #222;
}

body * {
  box-sizing: border-box;
}

body > .overflow-wrap {
  overflow-x: hidden;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.container {
  max-width: 1050px;
  width: 54.7%;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .container {
    width: 90%;
  }
}

.sans {
  font-family: "Noto Sans JP", sans-serif;
}

a {
  transition: all 0.2s ease-out;
}

@media (hover: hover) {
  a:hover {
    opacity: 0.6;
  }
}
.js-clipTopWrap.is-active .js-clipTop {
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
}

.js-clipTop {
  -webkit-clip-path: inset(0 0 100% 0);
  clip-path: inset(0 0 100% 0);
  transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1) -webkit-clip-path;
  transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1) clip-path;
  transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1) clip-path, 1s cubic-bezier(0.165, 0.84, 0.44, 1) -webkit-clip-path;
}

.js-clipLeftWrap.is-active .js-clipLeft {
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
}

.js-clipLeft {
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1) -webkit-clip-path;
  transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1) clip-path;
  transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1) clip-path, 1s cubic-bezier(0.165, 0.84, 0.44, 1) -webkit-clip-path;
}

.js-clipRightWrap.is-active .js-clipRight {
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
}

.js-clipRight {
  -webkit-clip-path: inset(0 0 0 100%);
  clip-path: inset(0 0 0 100%);
  transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1) -webkit-clip-path;
  transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1) clip-path;
  transition: 1s cubic-bezier(0.165, 0.84, 0.44, 1) clip-path, 1s cubic-bezier(0.165, 0.84, 0.44, 1) -webkit-clip-path;
}

.c_page-top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 50px;
  height: 50px;
  padding: 5px;
  border-radius: 50%;
  background-color: #222;
  transition: opacity 0.5s ease-out;
}

.c_page-top::before,
.c_page-top::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  border: 2px solid #d3290f;
  border-radius: 50%;
  box-sizing: border-box;
  pointer-events: none;
  animation: pulsate 2.8s linear infinite;
}

.c_page-top::after {
  animation-delay: 1s;
}

@keyframes pulsate {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
.c_page-top:hover {
  opacity: 0.6;
}

.header {
  position: fixed;
  z-index: 9999;
  width: 100%;
  background-color: #765898;
}
.header .header__inner {
  max-width: 1600px;
  width: 83%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 80px;
  font-size: 50px;
  font-weight: 700;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .header .header__inner {
    height: 50px;
  }
}
.header .header__inner .logo {
  color: #fff;
  font-size: 30px;
  letter-spacing: 0.05em;
  margin-left: 50px;
}
@media (max-width: 768px) {
  .header .header__inner .logo {
    font-size: 20px;
    margin-left: 15px;
  }
}
.header .header__inner .header-nav {
  height: 100%;
  margin-right: 5%;
}
@media (max-width: 768px) {
  .header .header__inner .header-nav {
    display: none;
  }
}
.header .header__inner .header-nav ul {
  height: 100%;
  display: flex;
  gap: 25px;
  align-items: center;
}
.header .header__inner .header-nav ul li {
  display: flex;
}
.header .header__inner .header-nav ul li a {
  font-size: 16px;
  color: #fff;
}
.header .header__inner .header-nav .live-link {
  border: 2px solid #e6770b;
  background-color: #e6770b;
  color: #fff;
  border-radius: 35px;
  padding: 10px 30px;
}
@media (hover: hover) {
  .header .header__inner .header-nav .live-link:hover {
    border: 2px solid #e6770b;
    color: #e6770b;
    background-color: #fff;
    opacity: 1;
  }
}
.header .header-bottom-line {
  width: 100%;
  height: 8px;
  background-color: #52d053;
  border: 1px solid #cdd6dd;
}

.hum {
  display: none;
}

@media (max-width: 768px) {
  .hum {
    display: block;
  }
  /*ボタン*/
  .hum .header-menu-trigger {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #e6770b;
    position: fixed;
    top: 10px;
    right: 15px;
    border: none;
    cursor: pointer;
    z-index: 99;
    transition: background-color 0.5s;
  }
  .hum .header-menu-trigger.is-active {
    background-color: #fff;
  }
  .hum .header-menu-trigger.is-active .line,
  .hum .header-menu-trigger.is-active .dot {
    background-color: #e6770b;
  }
  .hum .line {
    width: 11px;
    height: 3px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
  }
  .hum .dot {
    width: 3px;
    height: 3px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
  }
  .hum .line[data-index="1"] {
    transform: translate(calc(-50% + 3px), calc(-50% - 5px));
  }
  .hum .line[data-index="2"] {
    transform: translate(calc(-50% + 3px), calc(-50% + 5px));
  }
  .hum .dot[data-index="1"] {
    transform: translate(calc(-50% - 7px), calc(-50% - 5px));
  }
  .hum .dot[data-index="2"] {
    transform: translate(calc(-50% - 7px), calc(-50% + 5px));
  }
  .hum .circle-bg {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #765898;
    position: absolute;
    top: 10px;
    right: 15px;
    z-index: -1;
    transform: scale(0);
  }
  /*メニュー内のスタイル*/
  .hum .header-menu {
    width: 300px;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
  }
  .hum .header-menu.is-active {
    opacity: 1;
    visibility: visible;
  }
  .hum .header-lists {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .hum .header-lists li {
    color: #fff;
    opacity: 0;
    visibility: hidden;
  }
  .hum .header-lists li + li {
    margin-top: 80px;
  }
  .hum .header-lists .live-link {
    border: 2px solid #e6770b;
    background-color: #e6770b;
    color: #fff;
    border-radius: 35px;
    padding: 10px 30px;
  }
}
.footer {
  width: 100%;
  background-color: #765898;
}
.footer .sns-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  border-bottom: 1px solid #222;
}
@media (max-width: 768px) {
  .footer .sns-wrapper {
    height: 50px;
  }
}
.footer .sns-wrapper ul {
  display: flex;
  gap: 12px;
}
.footer .sns-wrapper ul li {
  display: inline-block;
}
.footer .sns-wrapper ul li a img {
  width: 100%;
  height: 100%;
}
.footer .sns-wrapper .link--insta {
  width: 20px;
}
.footer .sns-wrapper .link--twitter {
  width: 20px;
}
.footer .sns-wrapper .link--youtube {
  width: 20px;
}
.footer .logo-wrapper {
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  color: #fff;
}
@media (max-width: 768px) {
  .footer .logo-wrapper {
    height: 50px;
    font-size: 18px;
  }
}
.footer .copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  height: 62px;
  color: #fff;
  background-color: #52d053;
}
@media (max-width: 768px) {
  .footer .copyright {
    height: 30px;
  }
}

.g-h-wrap {
  position: relative;
  margin-bottom: 60px;
}

.g-s-h {
  font-size: 140px;
  letter-spacing: 0.05em;
  color: #765898;
  text-align: right;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .g-s-h {
    font-size: 50px;
  }
}

.g-h {
  font-size: 12px;
  position: absolute;
  bottom: 50px;
  right: 0;
  color: #52d053;
}
@media (max-width: 768px) {
  .g-h {
    bottom: 15px;
  }
}

.g-h::before {
  content: "";
  position: absolute;
  left: -130px;
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
  height: 1px;
  background-color: #52d053;
}

#front .mv {
  width: 100%;
  height: 100vh;
  position: relative;
}
#front .mv .mv-heading-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff;
  font-size: 60px;
  transform: translate(-50%, -50%);
}
#front .mv .mv-heading-wrap h1 {
  font-size: 100px;
  text-align: center;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
}
@media (max-width: 768px) {
  #front .mv .mv-heading-wrap h1 {
    font-size: 40px;
  }
}
#front .mv .mv-heading-wrap h2 {
  font-size: 40px;
  text-align: center;
  padding-top: 10px;
}
@media (max-width: 768px) {
  #front .mv .mv-heading-wrap h2 {
    font-size: 15px;
  }
}
#front .mv .hexagon-wrap {
  display: flex;
  position: absolute;
}
#front .mv .hexagon-left-up {
  top: 0;
  left: 0;
}
@media (max-width: 768px) {
  #front .mv .hexagon-left-up {
    top: -30px;
    left: -30px;
  }
}
#front .mv .hexagon-left-up .col-1 {
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 768px) {
  #front .mv .hexagon-left-up .col-1 {
    top: 50px;
  }
}
#front .mv .hexagon-left-up .col-2 {
  position: absolute;
  top: 54px;
  left: 94px;
}
@media (max-width: 768px) {
  #front .mv .hexagon-left-up .col-2 {
    top: 80px;
    left: 52px;
  }
}
#front .mv .hexagon-left-up .col-3 {
  position: absolute;
  top: 0;
  left: 188px;
}
@media (max-width: 768px) {
  #front .mv .hexagon-left-up .col-3 {
    top: 50px;
    left: 103px;
  }
}
#front .mv .hexagon-left-up .col-4 {
  position: absolute;
  top: 54px;
  left: 282px;
}
@media (max-width: 768px) {
  #front .mv .hexagon-left-up .col-4 {
    top: 80px;
    left: 154px;
  }
}
#front .mv .hexagon-right-up {
  top: 0;
  right: 0;
}
@media (max-width: 768px) {
  #front .mv .hexagon-right-up {
    top: -30px;
    right: -30px;
  }
}
#front .mv .hexagon-right-up .col-1 {
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 768px) {
  #front .mv .hexagon-right-up .col-1 {
    top: 50px;
  }
}
#front .mv .hexagon-right-up .col-2 {
  position: absolute;
  top: 54px;
  right: 94px;
}
@media (max-width: 768px) {
  #front .mv .hexagon-right-up .col-2 {
    top: 80px;
    right: 52px;
  }
}
#front .mv .hexagon-right-up .col-3 {
  position: absolute;
  top: 0;
  right: 188px;
}
@media (max-width: 768px) {
  #front .mv .hexagon-right-up .col-3 {
    top: 50px;
    right: 103px;
  }
}
#front .mv .hexagon-right-up .col-4 {
  position: absolute;
  top: 54px;
  right: 282px;
}
@media (max-width: 768px) {
  #front .mv .hexagon-right-up .col-4 {
    top: 80px;
    right: 154px;
  }
}
#front .mv .hexagon-left-down {
  bottom: -180px;
  left: 0;
}
@media (max-width: 768px) {
  #front .mv .hexagon-left-down {
    left: -30px;
  }
}
#front .mv .hexagon-left-down .col-1 {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 768px) {
  #front .mv .hexagon-left-down .col-1 {
    bottom: 80px;
  }
}
#front .mv .hexagon-left-down .col-2 {
  position: absolute;
  bottom: 54px;
  left: 94px;
}
@media (max-width: 768px) {
  #front .mv .hexagon-left-down .col-2 {
    bottom: 109px;
    left: 52px;
  }
}
#front .mv .hexagon-left-down .col-3 {
  position: absolute;
  bottom: 0;
  left: 188px;
}
@media (max-width: 768px) {
  #front .mv .hexagon-left-down .col-3 {
    bottom: 80px;
    left: 103px;
  }
}
#front .mv .hexagon-left-down .col-4 {
  position: absolute;
  bottom: 54px;
  left: 282px;
}
@media (max-width: 768px) {
  #front .mv .hexagon-left-down .col-4 {
    bottom: 109px;
    left: 154px;
  }
}
#front .mv .hexagon-right-down {
  right: 0;
  bottom: -75px;
}
@media (max-width: 768px) {
  #front .mv .hexagon-right-down {
    right: -30px;
  }
}
#front .mv .hexagon-right-down .col-1 {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 768px) {
  #front .mv .hexagon-right-down .col-1 {
    bottom: 35px;
  }
}
#front .mv .hexagon-right-down .col-2 {
  position: absolute;
  bottom: 54px;
  right: 94px;
}
@media (max-width: 768px) {
  #front .mv .hexagon-right-down .col-2 {
    bottom: 64px;
    right: 52px;
  }
}
#front .mv .hexagon-right-down .col-3 {
  position: absolute;
  bottom: 0;
  right: 188px;
}
@media (max-width: 768px) {
  #front .mv .hexagon-right-down .col-3 {
    bottom: 35px;
    right: 103px;
  }
}
#front .mv .hexagon-right-down .col-4 {
  position: absolute;
  bottom: 54px;
  right: 282px;
}
@media (max-width: 768px) {
  #front .mv .hexagon-right-down .col-4 {
    bottom: 64px;
    right: 154px;
  }
}
#front .mv .hexagon {
  width: 58px;
  height: 100px;
  background-color: #765898;
  position: relative;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  #front .mv .hexagon {
    width: 28px;
    height: 51px;
  }
}
#front .mv .hexagon::before, #front .mv .hexagon::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #765898;
  z-index: 0;
}
#front .mv .hexagon::before {
  transform: rotate(60deg);
}
#front .mv .hexagon::after {
  transform: rotate(-60deg);
}
#front .mv .hexagon .hexagon_content {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

#front .sec-about {
  padding: 250px 0 0;
}
#front .sec-about .content-wrapper {
  position: relative;
}
#front .sec-about .bg-img-wrap {
  width: 100%;
  height: 70vh;
  margin-top: 60px;
  overflow: hidden;
}
@media (max-width: 768px) {
  #front .sec-about .bg-img-wrap {
    height: 450px;
    margin-top: 20px;
  }
}
#front .sec-about .about-bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#front .sec-about .about-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  max-width: 1050px;
  width: 54.7%;
}
@media (max-width: 768px) {
  #front .sec-about .about-wrapper {
    width: 90%;
  }
}
#front .sec-about .about-wrapper .about-desc {
  width: 60.5%;
  color: #fff;
}
@media (max-width: 768px) {
  #front .sec-about .about-wrapper .about-desc {
    padding-right: 15px;
  }
}
#front .sec-about .about-wrapper .about-desc > p:first-of-type {
  font-size: 56px;
  margin-bottom: 40px;
  line-height: 1.3;
}
@media (max-width: 768px) {
  #front .sec-about .about-wrapper .about-desc > p:first-of-type {
    font-size: 30px;
  }
}
#front .sec-about .about-wrapper .about-desc > p:last-of-type {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  #front .sec-about .about-wrapper .about-desc > p:last-of-type {
    font-size: 16px;
  }
}
#front .sec-about .about-wrapper .about-desc .whowatch-wrapper {
  display: flex;
  align-items: center;
}
#front .sec-about .about-wrapper .about-desc .whowatch-wrapper .img {
  min-width: 25px;
  height: 25px;
  margin-right: 5px;
}
#front .sec-about .twitter-link {
  font-weight: 500;
  color: #52d053;
  display: block;
}
@media (max-width: 768px) {
  #front .sec-about .twitter-link {
    font-size: 13px;
  }
}
#front .sec-about .about-wrapper .img-wrapper {
  position: relative;
  height: 0;
  overflow: hidden;
  width: 39.5%;
  padding-top: 39.5%;
  border: 3px solid #52d053;
}
#front .sec-about .about-wrapper .img-wrapper .visual-image {
  position: absolute;
  top: 0;
  left: 0;
}

#front .sec-about .g-h {
  right: 342px;
}
@media (max-width: 768px) {
  #front .sec-about .g-h {
    right: 50px;
  }
}

#front .sec-profile {
  padding: 170px 0 0;
}
@media (max-width: 768px) {
  #front .sec-profile {
    padding: 100px 0 0;
  }
}

#front .sec-profile .g-h {
  right: 455px;
}
@media (max-width: 768px) {
  #front .sec-profile .g-h {
    right: 130px;
  }
}

#front .sec-profile .profile-wrapper {
  display: flex;
  justify-content: space-between;
}

#front .sec-profile .profile-wrapper .desc {
  width: 60.5%;
  color: #fff;
}
#front .sec-profile .profile-wrapper .desc .catch-phrase {
  font-size: 56px;
  margin-bottom: 25px;
  line-height: 1.3;
}
@media (max-width: 768px) {
  #front .sec-profile .profile-wrapper .desc .catch-phrase {
    font-size: 30px;
  }
}
#front .sec-profile .profile-wrapper .desc .name {
  font-size: 24px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  #front .sec-profile .profile-wrapper .desc .name {
    font-size: 16px;
  }
}
#front .sec-profile .profile-wrapper .desc .feature {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 40px;
}

#front .sec-profile .link-twitter-wrapper .link-twitter {
  font-weight: 500;
  color: #52d053;
  display: block;
}
@media (max-width: 768px) {
  #front .sec-profile .link-twitter-wrapper .link-twitter {
    font-size: 13px;
		line-height: 1.5;
  }
}
#front .sec-profile .link-twitter-wrapper .link-twitter:not(:last-of-type) {
  margin-bottom: 8px;
}

#front .sec-profile .profile-wrapper.second .desc {
  text-align: right;
}

#front .sec-profile .profile-wrapper .img-wrapper {
  position: relative;
  height: 0;
  overflow: hidden;
  width: 39.5%;
  padding-top: 39.5%;
  border: 3px solid #52d053;
}
#front .sec-profile .profile-wrapper .img-wrapper .visual-image {
  position: absolute;
  top: 0;
  left: 0;
}

#front .sec-instagram {
  padding: 170px 0 0;
}
@media (max-width: 768px) {
  #front .sec-instagram {
    padding: 100px 0 0;
  }
}

#front .sec-instagram .g-h {
  right: 683px;
}
@media (max-width: 768px) {
  #front .sec-instagram .g-h {
    right: 200px;
  }
}

#front .sec-instagram .insta-inner .insta_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0 auto;
  gap: 40px;
  margin-bottom: 320px;
}
@media (max-width: 768px) {
  #front .sec-instagram .insta-inner .insta_list {
    margin-bottom: 100px;
    padding-top: 60px;
    gap: 15px;
  }
}

#front .sec-instagram .insta-inner .insta_list li {
  width: calc(33.3333333333% - 26.6666666667px);
  padding-top: calc(33.3333333333% - 26.6666666667px);
  position: relative;
  height: 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  #front .sec-instagram .insta-inner .insta_list li {
    width: calc(33.3333333333% - 10px);
    padding-top: calc(33.3333333333% - 10px);
  }
}

#front .sec-instagram .insta-inner .insta_list li > a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

#front .sec-favorite {
  margin-bottom: 170px;
}
#front .sec-favorite .g-h {
  right: 470px;
}
@media (max-width: 768px) {
  #front .sec-favorite .g-h {
    right: 110px;
  }
}

#front .sec-favorite .youtube-wrapper {
  display: flex;
	flex-wrap: wrap;
  gap: 20px;
}
#front .sec-favorite .youtube-wrapper .youtube {
  /* width: calc(50% - 25px); */
  width: calc(50% - 10px);
  height: 0;
  position: relative;
  /* padding-top: 35%; */
	padding-top: 80%;
  overflow: hidden;
}
#front .sec-favorite .youtube-wrapper .youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

#front .sec-savior {
  margin-bottom: 170px;
}
#front .sec-savior .g-h {
  right: 390px;
}
@media (max-width: 768px) {
  #front .sec-savior .g-h {
    right: 90px;
  }
}

#front .sec-savior {
  color: #fff;
}
#front .sec-savior .desc {
  font-size: 36px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  #front .sec-savior .desc {
    font-size: 20px;
  }
}/*# sourceMappingURL=common.css.map */
