@charset "UTF-8";
/* -- color --*/
/*-- fonts --*/
.anton {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-style: normal;
}

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

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #000;
  position: relative;
  line-height: 1.7;
  background: #f9f9f9;
}

@media screen and (max-width: 750px) {
  body {
    font-size: 1.4rem;
  }
}
*, div, dt, dd, li, input, select, textarea {
  box-sizing: border-box;
}

caption, th, td {
  font-weight: 500;
}

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

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

/*-- common --*/
.flex {
  display: flex;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.left {
  text-align: left;
}

.bold {
  font-weight: 600;
}

.inner {
  width: 92%;
  max-width: 120rem;
  margin: 0 auto;
}

.inner-160 {
  width: 92%;
  max-width: 160rem;
  margin: 0 auto;
}

/* ------------------------- 
            button
--------------------------- */
.btn {
  width: 100%;
  max-width: 29rem;
}
.btn a {
  display: block;
  background: #fff;
  border: 0.1rem solid #8d1313;
  color: #8d1313;
  text-align: center;
  box-shadow: 0.2rem 0.2rem 1rem rgba(0, 0, 0, 0.25);
  font-size: 2rem;
  font-weight: 600;
  padding: 1.4rem;
}

@media screen and (max-width: 740px) {
  .btn {
    margin: 12vw auto 0;
  }
  .btn a {
    font-size: 1.6rem;
    padding: 3vw;
  }
}
.pconly {
  display: block;
}

.sponly {
  display: none;
}

@media screen and (max-width: 1024px) {
  .sponly {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  .pconly {
    display: none;
  }
  .sponly {
    display: block;
  }
}
/* ------------------------- 
            header
--------------------------- */
#header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
#header .inner {
  max-width: 100%;
  padding: 1.6rem 0;
  align-items: center;
  justify-content: space-between;
}
#header .head-menu {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
}
#header .head-menu li:not(:last-child) {
  margin-right: 5rem;
}
#header .head-menu .ct-btn a {
  display: block;
  color: #fff;
  background: linear-gradient(90deg, rgb(0, 13, 110) 0%, rgb(212, 0, 0) 100%);
  padding: 0.8rem 2.4rem;
  transition: 0.3s;
}
#header .head-menu .ct-btn a:hover {
  opacity: 0.8;
}
#header .toggle {
  display: none;
}

@media screen and (max-width: 1024px) {
  #header {
    transition: 0.4s;
  }
  #header.open-toggle {
    background: #fff;
  }
  #header .inner {
    padding: 2vw 0;
  }
  #header .logo {
    width: 25%;
  }
  #header .head-menu {
    display: none;
    width: 100%;
    height: calc(100vh - 6.4vw);
    background: #fff;
    position: fixed;
    top: 6.4vw;
    left: 0;
    padding: 6vw 4vw;
    z-index: 999;
  }
  #header .head-menu li {
    text-align: center;
  }
  #header .head-menu li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 4vw;
  }
  #header .head-menu li.sponly {
    display: block;
  }
  #header .toggle {
    display: block;
    width: 4rem;
    height: 1.6rem;
    position: relative;
  }
  #header .toggle span {
    width: 100%;
    height: 0.2rem;
    background: #8d1313;
    display: block;
    position: absolute;
    transition: 0.3s;
  }
  #header .toggle span:first-of-type {
    top: 0;
    left: 0;
  }
  #header .toggle span:last-of-type {
    bottom: 0;
    left: 0;
  }
  #header .toggle.open span:first-of-type {
    rotate: -35deg;
    top: 50%;
    transform: translateY(-50%);
  }
  #header .toggle.open span:last-of-type {
    rotate: 35deg;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 750px) {
  #header .inner {
    padding: 3vw 0;
  }
  #header .logo {
    width: 32%;
  }
  #header .toggle {
    width: 3rem;
    height: 1.2rem;
  }
  #header .head-menu {
    font-size: 1.6rem;
    height: calc(100% - 10vw);
    top: 10vw;
  }
}
/* ------------------------- 
            footer
--------------------------- */
.loop_wrapper {
  display: flex;
  width: 100%;
  overflow: hidden;
}
.loop_wrapper .loop_text {
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: 13.9583333333vw;
  overflow: hidden;
  padding-left: 20px;
  color: #ffa07a;
  background: linear-gradient(90deg, rgb(0, 13, 110) 0%, rgb(212, 0, 0) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  opacity: 0.15;
}
.loop_wrapper .loop_text:nth-child(odd) {
  animation: loop 60s -30s linear infinite;
}
.loop_wrapper .loop_text:nth-child(even) {
  animation: loop2 60s linear infinite;
}

@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
#footer {
  color: #fff;
  background: linear-gradient(90deg, rgb(0, 13, 110) 0%, rgb(212, 0, 0) 100%);
  padding: 13rem 0;
}
#footer a {
  color: #fff;
}
#footer .inner {
  align-items: flex-start;
  justify-content: space-between;
}
#footer .right-content {
  width: 49%;
}
#footer .left-content {
  width: 50%;
}
#footer .ft-logo a {
  display: inline-block;
}
#footer .ft-address {
  margin: 4rem 0;
}
#footer .ft-menu {
  margin-bottom: 5rem;
}
#footer .ft-menu li:not(:last-child) {
  margin-right: 3rem;
}
#footer .ft-contact {
  justify-content: space-between;
}
#footer .ft-contact .box-btn {
  width: 48%;
}
#footer .ft-contact .box-btn a {
  display: block;
  border: 0.1rem solid #fff;
  text-align: center;
  padding: 1.8rem;
  transition: 0.3s;
}
#footer .ft-contact .box-btn a:hover {
  opacity: 0.8;
}
#footer .copy {
  font-size: 1.4rem;
  margin-top: 6rem;
}

.float_badge {
  position: fixed;
  right: 0;
  bottom: 5%;
  z-index: 999;
  width: 15%;
}

.contact-area .inner {
  background: #fff;
  border: 0.1rem solid #8d1313;
  justify-content: center;
  align-items: center;
  padding: 6rem 4rem;
}
.contact-area .contact-detail {
  margin-left: 10%;
}
.contact-area .contact-detail .btn {
  margin-top: 4rem;
}
.contact-area h2.ttl {
  font-size: 5.625vw;
  color: #000;
  display: inline-block;
  background: linear-gradient(90deg, rgb(0, 13, 110) 0%, rgb(212, 0, 0) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.contact-area .ttl-jp {
  font-size: 2.6rem;
  font-weight: 600;
  margin-top: 1rem;
}

#retro-counter {
  font-family: "DotGothic16", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.4rem;
  display: inline-block;
  padding: 0 1.2rem;
  color: #000;
  background: #fff;
}

@media screen and (max-width: 1024px) {
  #footer {
    padding: 14vw 0;
  }
  #footer .inner {
    display: block;
  }
  #footer .right-content {
    width: 100%;
    text-align: center;
  }
  #footer .left-content {
    width: 100%;
    text-align: center;
  }
  #footer .ft-address {
    margin: 6vw 0;
  }
  #footer .ft-menu {
    display: none;
  }
  #footer .copy {
    margin-top: 6vw;
  }
  .float_badge {
    width: 30%;
  }
  .contact-area {
    margin-bottom: 10vw;
  }
  .contact-area .inner {
    display: block;
    padding: 6vw 4vw;
    text-align: center;
  }
  .contact-area .contact-detail {
    margin: 4vw auto 0;
  }
  .contact-area .contact-detail .btn {
    margin: 4vw auto 0;
  }
  .contact-area .contact-detail h2.ttl {
    font-size: 11vw;
  }
  #retro-counter {
    margin-bottom: 6vw;
  }
}
@media screen and (max-width: 750px) {
  .loop_wrapper .loop_text {
    font-size: 35.7333333333vw;
  }
  #footer {
    padding: 18vw 0 10vw;
  }
  #footer .ft-logo {
    width: 80%;
    margin: auto;
  }
  #footer .ft-address {
    margin: 8vw 0;
  }
  #footer .ft-contact .box-btn a {
    padding: 3vw;
  }
  #footer .copy {
    margin-top: 14vw;
  }
  .contact-area {
    margin-bottom: 20vw;
  }
  .contact-area .inner {
    padding: 12vw 4vw;
  }
  .contact-area .contact-detail {
    margin: 8vw auto 0;
  }
  .contact-area .contact-detail .btn {
    margin: 8vw auto 0;
  }
  .contact-area h2.ttl {
    font-size: 13.3333333333vw;
  }
  .contact-area .ttl-jp {
    font-size: 1.7rem;
  }
}
/* ------------------------- 
    投稿・固定ページ共通
--------------------------- */
#page-under {
  padding-bottom: 20rem;
}
#page-under .mainv {
  padding: 15rem 0;
  position: relative;
}
#page-under .mainv h1.pagetitle {
  font-size: 5.7291666667vw;
  line-height: 1;
}
#page-under .mainv h1.pagetitle .jp {
  font-size: 1.3541666667vw;
  font-weight: 600;
  margin-top: 2rem;
  display: inline-block;
}
#page-under .mainv h1.pagetitle .en {
  background: linear-gradient(90deg, rgb(0, 13, 110) 0%, rgb(212, 0, 0) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#page-under .mainv::after {
  content: "";
  width: 60%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

@media screen and (max-width: 1024px) {
  #page-under {
    padding-bottom: 20vw;
  }
  #page-under .mainv {
    padding: 14vw 0 12vw;
  }
  #page-under .mainv h1.pagetitle .en {
    font-size: 10vw;
  }
  #page-under .mainv h1.pagetitle .jp {
    font-size: 2rem;
  }
}
@media screen and (max-width: 750px) {
  #page-under {
    padding-bottom: 30vw;
  }
  #page-under .mainv {
    padding: 18vw 0 32vw;
  }
  #page-under .mainv::after {
    width: 100%;
    height: 34%;
    top: auto;
    bottom: 0;
  }
  #page-under .mainv h1.pagetitle .en {
    font-size: 13.3333333333vw;
  }
  #page-under .mainv h1.pagetitle .jp {
    font-size: 1.6rem;
    margin-top: 3vw;
  }
}
#page-under.page-mvnone {
  padding-top: 24rem;
}

@media screen and (max-width: 1024px) {
  #page-under.page-mvnone {
    padding-top: 24vw;
  }
}
@media screen and (max-width: 750px) {
  #page-under.page-mvnone {
    padding-top: 30vw;
  }
}
/* ------------------------- 
        パーツデフォルト
--------------------------- */
/* ------------------------- 
            404
--------------------------- */
.page-404 .page-content .btn {
  margin: 6rem auto 0;
}

@media screen and (max-width: 1024px) {
  /* ------------------------- 
          header
  --------------------------- */
  /* ------------------------- 
          footer
  --------------------------- */
  /* ------------------------- 
          CTA
  --------------------------- */
  /* ------------------------- 
          パーツデフォルト
  --------------------------- */
  /* ------------------------- 
          404
  --------------------------- */
}
@media screen and (max-width: 750px) {
  /* ------------------------- 
          header
  --------------------------- */
  /* ------------------------- 
          footer
  --------------------------- */
  /* ------------------------- 
          CTA
  --------------------------- */
  /* ------------------------- 
          パーツデフォルト
  --------------------------- */
  /* ------------------------- 
          404
  --------------------------- */
}