.circle img {
  position: absolute;
  animation: circle 120s linear infinite forwards;
}
.circle .text {
  width: calc(100% - 15rem);
}
.circle .color {
  width: calc(100% - 30rem);
  animation-direction: reverse;
}
@keyframes circle {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0);
  }
}
@media only screen and (max-width: 980px) {
  .circle .text {
    width: 150%;
  }
  .circle .color {
    width: calc(150% - 4rem);
    animation-direction: reverse;
  }
}

header {
  position: fixed;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding: 2.4rem 4.8rem;
  padding-right: 10rem;
  height: 4.8rem;
  z-index: 150;
}
header.action .default_menu ul li a {
  color: #F0F0F0;
  color: #ffffff;
}
header .logo {
  position: fixed;
  top: 2.4rem;
  left: 4.8rem;
  width: auto;
  height: fit-content;
  z-index: 151;
}
header .logo img {
  width: auto;
  height: 4.8rem;
}
header .menu_button {
  position: relative;
  position: fixed;
  top: 2.4rem;
  right: 4.8rem;
  width: 48px;
  height: 48px;
  z-index: 50;
  border: 1px solid #010101;
  border-radius: 50%;
  background-color: #ffffff;
  z-index: 151;
}
header .menu_button span {
  position: relative;
  display: block;
  margin: auto;
  width: 16px;
  height: 8px;
}
header .menu_button span:before, header .menu_button span:after {
  content: "";
  position: absolute;
  display: block;
  margin: auto;
  width: 16px;
  height: 1px;
  background-color: #010101;
}
header .menu_button span:before {
  top: 0;
}
header .menu_button span:after {
  bottom: 0;
}
header .menu_button.show span:before {
  transform: rotate(45deg) translate3d(2.5px, 2.5px, 0px);
}
header .menu_button.show span:after {
  transform: rotate(-45deg) translate3d(2.5px, -2.5px, 0px);
}
header .default_menu {
  margin-left: auto;
}
header .default_menu ul li {
  margin-right: 2.4rem;
}
header .default_menu ul li:last-of-type {
  margin-right: 3.5rem;
}
header .main_menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  padding: 12rem 8rem 10rem;
  width: calc(100% - 16rem);
  height: calc(100% - 22rem);
  background-color: #ffffff;
  z-index: 150;
}
header .main_menu .circle .text {
  right: -46rem;
  bottom: 20rem;
}
header .main_menu .circle .color {
  right: -38rem;
  bottom: 27rem;
}
header .main_menu .menu {
  margin-top: auto;
  width: 60%;
  height: fit-content;
}
header .main_menu .menu .list {
  width: 46%;
}
header .main_menu .menu .list li {
  margin-bottom: 1.2rem;
}
header .main_menu .menu .list li a {
  display: inline-block;
}
header .main_menu .menu .list li a span {
  display: inline-block;
}
header .main_menu .menu .list li a span.en {
  margin-right: 0.4rem;
  font-size: 3.5rem;
  line-height: 1.2;
}
header .main_menu .menu .list li.actions {
  margin: 1.2rem 2.4rem;
}
header .main_menu .menu .list li.actions a {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 2.4rem;
  line-height: 1.2;
}
header .main_menu .menu .list li.sns {
  margin-top: 4.8rem;
}
header .main_menu .menu .list li.sns a {
  display: flex;
  margin-bottom: 0.4rem;
}
header .main_menu .menu .list li.sns a img {
  display: block;
  margin-right: 0.8rem;
  width: 2rem;
}
header .main_menu .menu .list li.sns a .title {
  font-size: 1.6rem;
}
header .main_menu .menu .list li:last-of-type {
  margin-bottom: 0;
}
header .main_menu.show {
  display: flex;
}
@media only screen and (max-width: 980px) {
  header {
    position: fixed;
    padding: 1.25rem 2.5vw;
    height: 3.5rem;
    background-color: #ffffff;
  }
  header.home, header.action {
    background-color: rgba(255, 255, 255, 0);
  }
  header .logo {
    position: relative;
    top: 0;
    left: 0;
  }
  header .logo img {
    width: auto;
    height: 3rem;
  }
  header .menu_button {
    position: relative;
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
  }
  header .main_menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    padding: 8rem 2.5vw 0;
    width: calc(100% - 5vw);
    height: calc(100% - 6rem);
  }
}
@media only screen and (max-width: 980px) and (max-width: 375px) {
  header .main_menu {
    padding-top: 6rem;
  }
}
@media only screen and (max-width: 980px) {
  header .main_menu .circle {
    z-index: -1;
  }
  header .main_menu .circle .text {
    right: -31rem;
    bottom: -24rem;
  }
  header .main_menu .circle .color {
    right: -29rem;
    bottom: -22rem;
  }
}
@media only screen and (max-width: 980px) {
  header .main_menu .menu {
    display: block;
    width: 100%;
    height: 100%;
    overflow: scroll;
  }
  header .main_menu .menu .list {
    width: 100%;
  }
  header .main_menu .menu .list li {
    margin-bottom: 1rem;
  }
  header .main_menu .menu .list li a span.en {
    margin-right: 0.4rem;
    font-size: 3rem;
  }
  header .main_menu .menu .list li.actions {
    margin: 0.8rem 2rem;
  }
  header .main_menu .menu .list li.actions a {
    margin-bottom: 0.8rem;
    font-size: 2rem;
  }
  header .main_menu .menu .list li.sns {
    margin-top: 2.4rem;
  }
  header .main_menu .menu .list li.sns a {
    margin-bottom: 0.4rem;
  }
}
footer {
  position: relative;
  z-index: 1;
}
footer .other_action {
  padding-top: 12rem;
  border-top: 1px solid #010101;
}
footer .other_action h3 {
  display: block;
  font-size: 12rem;
  text-align: center;
}
footer .other_action ul {
  margin-top: 4.8rem;
  counter-reset: num;
}
footer .other_action ul li {
  width: 25%;
  counter-increment: num;
}
footer .other_action ul li a {
  position: relative;
  display: block;
}
footer .other_action ul li a:before {
  content: counter(num, decimal-leading-zero);
  display: block;
  font-size: 15rem;
  font-weight: 700;
  line-height: 0.8;
  opacity: 0.2;
}
footer .other_action ul li a .title {
  position: absolute;
  top: 0.4rem;
  left: 0.8rem;
  right: 0.8rem;
  display: block;
}
footer .other_action ul li a .title .heading {
  display: block;
  margin-bottom: 0.6rem;
}
footer .other_action ul li a .title h4 {
  font-size: 3.5rem;
  line-height: 1;
}
footer .other_action ul li a .ratio {
  margin-top: -0.6rem;
  padding-top: 48rem;
  border-top: 1px solid #010101;
  border-right: 1px solid #010101;
}
footer .other_action ul li:first-of-type .ratio {
  border-left: 1px solid #010101;
}
footer .other_action ul li.now {
  display: none;
}
footer .user .wrap {
  position: relative;
  padding: 8rem 10rem;
  width: calc(50% - 20rem);
}
footer .user .wrap * {
  color: #ffffff;
}
footer .user .wrap:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
}
footer .user .wrap img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
footer .user .wrap .text_wrap {
  margin-top: 1.2rem;
  padding: 0 grid_vw(0, 1);
}
footer .user .wrap .text_wrap h3 {
  font-size: 4.8rem;
  line-height: 1.2;
}
footer .user .wrap .text_wrap .introduction {
  margin-top: 1.6rem;
}
footer .user .wrap a {
  margin-top: 1.6rem;
  margin-left: auto;
}
footer .footer {
  position: relative;
  padding: 6rem;
  padding-top: 10rem;
  height: calc(100svh - 16rem);
  overflow: hidden;
}
footer .footer .circle .text {
  right: -20rem;
  bottom: 30rem;
}
footer .footer .circle .color {
  right: -12rem;
  bottom: 37rem;
}
footer .footer .nav_wrap {
  max-width: 20%;
  height: 100%;
}
footer .footer .nav_wrap .sns_list {
  width: 100%;
  height: fit-content;
}
footer .footer .nav_wrap .sns_list li {
  margin-bottom: 0.4rem;
}
footer .footer .nav_wrap .sns_list li a {
  width: 33rem;
}
footer .footer .nav_wrap .sns_list li a img {
  display: block;
  margin-right: 0.8rem;
  width: 2rem;
}
footer .footer .nav_wrap .menu_wrap {
  margin-top: auto;
  width: 100%;
  height: fit-content;
}
footer .footer .nav_wrap .menu_wrap ul li {
  margin-bottom: 0.8rem;
}
footer .footer .nav_wrap .menu_wrap ul li a {
  display: inline-block;
}
footer .footer .nav_wrap .menu_wrap .menu li a {
  font-size: 1.8rem;
}
footer .footer .nav_wrap .menu_wrap .sub_menu {
  margin-top: 3.5rem;
}
footer .footer .nav_wrap .menu_wrap .sub_menu li a {
  font-size: 1.3rem;
}
footer .footer .nav_wrap .menu_wrap .copyright {
  display: block;
  margin-top: 8rem;
  font-size: 1.5rem;
}
footer .footer .logo {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 70%;
}
@media only screen and (max-width: 980px) {
  footer .other_action {
    padding-top: 8rem;
  }
  footer .other_action h3 {
    font-size: 6rem;
  }
  footer .other_action ul {
    margin-top: 2.4rem;
  }
  footer .other_action ul li {
    width: 50%;
  }
  footer .other_action ul li a:before {
    position: absolute;
    left: 0;
    bottom: 0;
    font-size: 8rem;
    color: #ffffff;
    opacity: 0.5;
  }
  footer .other_action ul li a .title {
    position: absolute;
    top: initial;
    left: 0.4rem;
    bottom: 0.4rem;
  }
  footer .other_action ul li a .title .heading {
    margin-bottom: 0.6rem;
    color: #ffffff;
  }
  footer .other_action ul li a .title h4 {
    height: 4.8rem;
    font-size: 2.4rem;
    color: #ffffff;
  }
  footer .other_action ul li a .ratio {
    margin-top: 0;
    padding-top: 24rem;
    z-index: -1;
  }
  footer .other_action ul li a .ratio:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    background-color: rgba(255, 255, 255, 0.6);
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 1;
  }
  footer .other_action ul li:first-of-type .ratio {
    border-left: none;
  }
  footer .other_action ul li:nth-of-type(2n) .ratio {
    border-right: none;
  }
  footer .user .wrap {
    position: relative;
    padding: 6rem 5vw 4.8rem;
    width: calc(100% - 10vw);
  }
  footer .user .wrap .text_wrap {
    margin-top: 1.2rem;
    padding: 0 2.5vw;
  }
  footer .user .wrap .text_wrap h3 {
    font-size: 3.5rem;
  }
  footer .user .wrap .text_wrap .introduction {
    margin-top: 1.2rem;
  }
  footer .user .wrap a {
    margin-top: 1.2rem;
  }
  footer .footer {
    padding: 8rem 2.5vw;
    height: calc(100svh - 16rem - 6rem);
  }
  footer .footer .circle {
    z-index: -1;
  }
  footer .footer .circle .text {
    top: -22rem;
    right: -26rem;
    bottom: initial;
  }
  footer .footer .circle .color {
    top: -20rem;
    right: -24rem;
    bottom: initial;
  }
  footer .footer .nav_wrap {
    position: absolute;
    bottom: 10rem;
    max-width: 100%;
    height: fit-content;
    z-index: 10;
  }
  footer .footer .nav_wrap .sns_list {
    margin-top: auto;
    z-index: 1;
  }
  footer .footer .nav_wrap .sns_list li {
    margin-bottom: 0.4rem;
  }
  footer .footer .nav_wrap .sns_list li a {
    width: fit-content;
  }
  footer .footer .nav_wrap .sns_list li a img {
    display: block;
    margin-right: 0.8rem;
    width: 2rem;
  }
  footer .footer .nav_wrap .menu_wrap {
    margin-top: 2.4rem;
    margin-bottom: 0;
    width: 100%;
    height: fit-content;
    z-index: 1;
  }
  footer .footer .nav_wrap .menu_wrap ul li {
    margin-bottom: 0.8rem;
  }
  footer .footer .nav_wrap .menu_wrap ul li a {
    display: inline-block;
  }
  footer .footer .nav_wrap .menu_wrap .menu li a {
    font-size: 1.6rem;
  }
  footer .footer .nav_wrap .menu_wrap .sub_menu {
    margin-top: 2.4rem;
  }
  footer .footer .nav_wrap .menu_wrap .sub_menu li a {
    font-size: 1.2rem;
  }
  footer .footer .nav_wrap .menu_wrap .copyright {
    margin-top: 4.8rem;
    font-size: 1.5rem;
  }
  footer .footer .logo {
    width: 100%;
  }
}

.circle_template {
  position: relative;
  overflow: hidden;
}
.circle_template .circle .color {
  top: 35rem;
  left: -15vw;
  width: 100vw;
  animation-direction: initial;
}
.circle_template .mv {
  position: relative;
  z-index: 1;
}
.circle_template .mv h1 {
  margin-top: 16rem;
  margin-left: 12rem;
  font-size: 7rem;
}
.circle_template .mv h2 {
  margin-top: 16rem;
  font-size: 12rem;
  line-height: 1;
  text-align: right;
}
@media only screen and (max-width: 980px) {
  .circle_template .circle .color {
    top: 25rem;
    left: -30vw;
    width: 125vw;
  }
  .circle_template .mv h1 {
    margin-top: 12rem;
    margin-left: 2.5vw;
    font-size: 4rem;
  }
  .circle_template .mv h2 {
    margin-top: 8rem;
    font-size: 5.5rem;
  }
}

.action_template {
  position: relative;
}
.action_template .mv {
  position: relative;
  z-index: 1;
}
.action_template .mv .title_wrap {
  position: absolute;
  top: 15rem;
  right: 10rem;
  text-align: right;
  z-index: 1;
}
.action_template .mv .title_wrap * {
  color: #F0F0F0;
}
.action_template .mv .title_wrap .title {
  display: block;
  font-size: 4.8rem;
}
.action_template .mv .title_wrap h1 {
  margin-top: 1.6rem;
  font-size: 8rem;
  line-height: 1;
  text-align: right;
}
.action_template .mv .visual_wrap {
  position: relative;
  padding-top: 70vw;
  z-index: -1;
}
.action_template .mv .visual_wrap:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  margin: auto;
  background-color: rgba(1, 1, 1, 0.2);
  z-index: 1;
}
.action_template .mv h2 {
  position: absolute;
  top: 70svh;
  left: 0;
  font-size: 15rem;
  line-height: 0.5;
  color: #F0F0F0;
  white-space: nowrap;
  z-index: 1;
}
.action_template .about {
  position: relative;
  padding: 12rem 10rem 12rem 20rem;
  z-index: 1;
}
.action_template .about h3 {
  font-size: 4.8rem;
  line-height: 1.2;
}
.action_template .about .introduction {
  margin-top: 6rem;
  margin-left: auto;
  width: 55%;
}
.action_template .action_link {
  position: relative;
  padding: 0 10rem;
  z-index: 1;
}
.action_template .action_link:last-of-type {
  margin: 0;
  padding: 0;
}
.action_template .list {
  position: relative;
  padding: 9.6rem 10rem;
  z-index: 1;
}
.action_template .list .title_wrap {
  margin-bottom: 6rem;
}
.action_template .list .title_wrap:not(:first-of-type) {
  margin-top: 12rem;
}
.action_template .list .title_wrap .heading {
  display: inline-block;
  font-size: 1.3rem;
}
.action_template .list .title_wrap h3 {
  margin-top: 0.8rem;
  font-size: 4.8rem;
  line-height: 1.2;
}
.action_template .list ul:before, .action_template .list ul:after {
  content: "";
  display: block;
  width: 31.5%;
  order: 100;
}
.action_template .list ul li {
  margin-bottom: 3.5rem;
  width: 31.5%;
}
.action_template .list ul li a {
  display: block;
}
@media only screen and (max-width: 980px) {
  .action_template .mv .title_wrap {
    top: 10rem;
    right: 2.5vw;
  }
  .action_template .mv .title_wrap .title {
    font-size: 3rem;
  }
  .action_template .mv .title_wrap h1 {
    margin-top: 1.2rem;
    font-size: 4.6rem;
  }
  .action_template .mv .visual_wrap {
    padding-top: 90svh;
  }
  .action_template .mv h2 {
    top: 70svh;
    font-size: 9.6rem;
  }
  .action_template .about {
    padding: 9.6rem 2.5vw 10.8rem 5vw;
  }
  .action_template .about h3 {
    font-size: 3rem;
    font-size: 2.5rem;
  }
  .action_template .about .introduction {
    margin-top: 4.8rem;
    width: 86%;
  }
  .action_template .action_link {
    padding: 0 5vw;
  }
  .action_template .action_link:last-of-type {
    margin: 0;
    padding: 0;
  }
  .action_template .list {
    padding: 6rem 2.5vw;
  }
  .action_template .list .title_wrap {
    margin-bottom: 3.5rem;
  }
  .action_template .list .title_wrap:not(:first-of-type) {
    margin-top: 12rem;
  }
  .action_template .list .title_wrap h3 {
    font-size: 3.5rem;
  }
  .action_template .list ul:before, .action_template .list ul:after {
    width: 48%;
  }
  .action_template .list ul li {
    margin-bottom: 2.4rem;
    width: 48%;
  }
}

.article_mv {
  position: relative;
  padding-top: 8rem;
}
.article_mv:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  margin: auto;
  width: 24rem;
  height: 24rem;
  background-image: url("../../images/circle_c.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
  animation: circle 120s linear infinite forwards;
}
.article_mv * {
  position: relative;
  z-index: 1;
}

.not_found {
  position: relative;
  padding: 0 12rem;
  height: 100svh;
  min-height: 70rem;
  overflow: hidden;
}
.not_found .circle .text {
  right: -46rem;
  bottom: 20rem;
}
.not_found .circle .color {
  right: -38rem;
  bottom: 27rem;
}
.not_found .text_wrap {
  position: relative;
  margin: auto;
  margin-left: 0;
  padding-top: 4.8rem;
  height: fit-content;
  z-index: 1;
}
.not_found .text_wrap h1 {
  width: 100%;
  font-size: 10rem;
}
.not_found .text_wrap h2 {
  font-size: 12rem;
}
.not_found .text_wrap .wrap {
  margin: 4.8rem 3.5rem 0;
  width: grid_vw(4, 4);
}
.not_found .text_wrap .wrap a {
  margin-top: 2.4rem;
  margin-left: auto;
}
@media only screen and (max-width: 980px) {
  .not_found {
    padding: 0 2.5vw;
  }
  .not_found .circle .text {
    right: -26rem;
    bottom: -35rem;
  }
  .not_found .circle .color {
    right: -24rem;
    bottom: -33rem;
  }
  .not_found .text_wrap {
    margin: 0 auto 6rem;
    padding-top: 0;
  }
  .not_found .text_wrap h1 {
    font-size: 3.5rem;
  }
  .not_found .text_wrap h2 {
    font-size: 4.4rem;
  }
  .not_found .text_wrap .wrap {
    margin: 3.5rem 2.5vw 0;
    width: calc(100% - 5vw);
  }
}