@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@400;500;700&display=swap");
@import url("https://use.typekit.net/jid5chq.css");
@keyframes flip {
  0% {
    transform: rotateY(0deg);
  }
  40% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(180deg);
  }
  90% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(0deg);
  }
}
@keyframes flip2 {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
@keyframes down {
  0% {
    transform: rotate(0deg) translateY(0px);
  }
  10% {
    transform: rotate(0deg) translateY(0px);
  }
  40% {
    transform: rotate(0deg) translateY(10px);
  }
  60% {
    transform: rotate(0deg) translateY(10px);
  }
  90% {
    transform: rotate(0deg) translateY(0px);
  }
  100% {
    transform: rotate(0deg) translateY(0px);
  }
}
@keyframes line {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
/* ------------------------------------------------------------------------------------------------------------------------ */
* {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: auto;
}

html {
  font-size: 62.5%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #4E4E4E;
  text-align: center;
  -webkit-text-size-adjust: 100%;
  background-color: #FFF;
}

a {
  color: #4E4E4E;
  text-decoration: none;
  cursor: pointer;
  box-sizing: border-box;
}

a:hover, a:active, a.active {
  color: #009d96;
}

.pgtop a {
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

i {
  font-style: normal;
}

form, section, p, div, ul, li, dl, dt, dd, input, textarea {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  list-style: none;
}

/* ---------------------------------------------------------common--------------------------------------------------------- */
.brpc {
  display: block;
}

.brsp {
  display: none;
}

header {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 25px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 999;
}
header .inner {
  width: 100%;
  padding: 0px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
header .inner h1 a {
  color: #000;
  font-family: neuzeit-grotesk, sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  font-feature-settings: "palt";
}
header .inner h1 a span {
  color: #009d96;
}
header .inner .sns ul {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0 16px;
}
header .inner .sns ul li {
  width: 24px;
}
header .inner .sns ul li.x a {
  background-image: url(../images/icon_x.svg);
}
header .inner .sns ul li.ig a {
  background-image: url(../images/icon_insta.svg);
}
header .inner .sns ul li.fb a {
  background-image: url(../images/icon_fb.svg);
}
header .inner .sns ul li.note a {
  background-image: url(../images/icon_note.svg);
}
header .inner .sns ul li.tt a {
  background-image: url(../images/icon_ticktok.svg);
}
header .inner .sns ul li a {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  height: 24px;
}
header .inner .btn {
  width: 120px;
  margin-left: auto;
  transition: all 0.25s ease-in 0s;
}
header .inner .btn:hover {
  transform: scale(1.05);
}
header .inner .btn a {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
  width: 100%;
  height: 40px;
  background-color: #05a365;
  border-radius: 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  transition: all 0.25s ease-in 0s;
}
header .inner .hum {
  display: none;
}

nav > ul {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0 24px;
}
nav > ul > li {
  position: relative;
}
nav > ul > li:hover > a > span:nth-child(1), nav > ul > li:hover > a > span:nth-child(2) {
  color: #009d96;
}
nav > ul > li.on > ul {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  pointer-events: auto;
}
nav > ul > li > a {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 8px 0;
}
nav > ul > li > a > span {
  transition: all 0.25s ease-in 0s;
}
nav > ul > li > a > span:nth-child(1) {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
}
nav > ul > li > a > span:nth-child(2) {
  color: #000;
  font-family: "poppins", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
}
nav > ul > li > ul {
  width: 200px;
  padding: 16px 0 0 0;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 1px 0;
  position: absolute;
  top: 100%;
  left: calc(50% - 100px);
  clip-path: inset(0 0 100% 0);
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease-in 0s;
}
nav > ul > li > ul li {
  width: 100%;
}
nav > ul > li > ul li a {
  width: 100%;
  padding: 8px 16px;
  background-color: #009d96;
  border-radius: 4px;
  display: block;
}
nav > ul > li > ul li a:hover {
  background-color: #05a365;
}
nav > ul > li > ul li a:hover span:nth-child(1) {
  color: #FFF;
}
nav > ul > li > ul li a span:nth-child(1) {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
}

#sns {
  width: 100%;
  padding: 80px 0;
  background-color: #ECE7E0;
}
#sns h4 {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
  margin-bottom: 40px;
}
#sns ul {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0 32px;
}
#sns ul li {
  width: 48px;
}
#sns ul li.x a {
  background-image: url(../images/icon_x.svg);
}
#sns ul li.ig a {
  background-image: url(../images/icon_insta.svg);
}
#sns ul li.fb a {
  background-image: url(../images/icon_fb.svg);
}
#sns ul li.note a {
  background-image: url(../images/icon_note.svg);
}
#sns ul li.tt a {
  background-image: url(../images/icon_ticktok.svg);
}
#sns ul li a {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  height: 48px;
  transition: all 0.25s ease-in 0s;
}
#sns ul li a:hover {
  opacity: 0.75;
}

section#nowshow {
  width: 100%;
  padding: 120px 0;
}
section#nowshow h3::before {
  background-image: url(../../common/images/icon_onshow.svg);
}
section#nowshow .inner {
  width: calc(100% - 240px);
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
}
section#nowshow .inner:not(:last-child) {
  margin-bottom: 40px;
}
section#nowshow .inner > div {
  width: calc((100% - 96px) / 5);
}
section#nowshow .inner > div a {
  width: 100%;
}
section#nowshow .inner > div a:hover figure img {
  transform: scale(1.05);
}
section#nowshow .inner > div a figure {
  width: 100%;
  margin-bottom: 16px;
  overflow: hidden;
}
section#nowshow .inner > div a figure img {
  width: 100%;
  transition: all 0.25s ease-in 0s;
}
section#nowshow .inner > div a dl dt {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
section#nowshow .inner > div a dl dt span:nth-child(1) {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
  white-space: nowrap;
  padding: 4px 8px;
  background-color: #009d96;
  border-radius: 4px;
}
section#nowshow .inner > div a dl dt span:nth-child(1).onlyd {
  color: #009d96;
  font-family: neuzeit-grotesk, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
  text-align: left;
  padding: 0px;
  background-color: transparent;
  border-radius: 0px;
}
section#nowshow .inner > div a dl dt span:nth-child(2) {
  color: #009d96;
  font-family: neuzeit-grotesk, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
  text-align: left;
  white-space: nowrap;
}
section#nowshow .inner > div a dl dd {
  color: #4E4E4E;
  font-family: neuzeit-grotesk, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0em;
  font-feature-settings: "palt";
  text-align: left;
}

footer {
  width: 100%;
  background-color: #000;
  position: relative;
}
footer::before {
  width: 4px;
  height: 150px;
  background-color: #000;
  display: block;
  position: absolute;
  top: -72px;
  left: calc(50% - 2px);
  z-index: 5;
}
footer .inner {
  width: 100%;
  margin: 0;
  position: relative;
}
footer .inner .ph {
  width: 100%;
}
footer .inner .text {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 40px 0;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
}
footer .inner .text > div {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 40px 0;
}
footer .inner .text > div p {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
}
footer .inner .text > div h4 {
  width: 1020px;
  height: 90px;
  background-image: url(../../home/images/catch.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
}
footer .inner .text .btn {
  width: 520px;
  perspective: 960px;
  position: relative;
}
footer .inner .text .btn::before {
  content: "";
  width: 81px;
  height: 169px;
  background-image: url(../images/man_entry1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: block;
  position: absolute;
  top: calc(50% - 85px);
  left: -40px;
  z-index: 3;
}
footer .inner .text .btn::after {
  content: "";
  width: 66px;
  height: 161px;
  background-image: url(../images/man_entry2.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: block;
  position: absolute;
  top: calc(50% - 80px);
  right: -33px;
  z-index: 3;
}
footer .inner .text .btn:hover a {
  animation-name: flip2;
  animation-duration: 1.5s;
  animation-iteration-count: 1;
  animation-delay: 0s;
}
footer .inner .text .btn a {
  width: 100%;
  height: 160px;
  background-color: #FFF;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  border-radius: 24px;
}
footer .inner .text .btn a span {
  color: #05a365;
  font-family: "poppins", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
}
footer .cp {
  width: 100%;
  padding: 40px;
}
footer .cp p {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
  font-feature-settings: "palt";
}

.pgtop {
  width: 30px;
  height: 40px;
  background-image: url(../images/arrow_totop.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: left;
  text-indent: 999%;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  position: fixed;
  right: 24px;
  bottom: 32px;
  z-index: 5;
  mix-blend-mode: difference;
  cursor: pointer;
  transition: all 0.25s ease-in 0s;
}
.pgtop:hover {
  opacity: 0.75;
}

/* ----------------------------------------------- Media Queries Smartphone ----------------------------------------------- */
@media screen and (max-width: 1180px) {
  header {
    backdrop-filter: blur(5px);
    padding: 0 0 0 25px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
  }
  header .inner .sns {
    margin: 0 0 0 auto;
  }
  header .inner .hum {
    width: 60px;
    height: 60px;
    margin: 0 0 0 24px;
    background-color: #000;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.25s ease-in 0s;
  }
  header .inner .hum.on > div span:nth-child(1) {
    top: 11px;
    transform: rotate(45deg);
  }
  header .inner .hum.on > div span:nth-child(2) {
    opacity: 0;
  }
  header .inner .hum.on > div span:nth-child(3) {
    top: 11px;
    transform: rotate(-45deg);
  }
  header .inner .hum > div {
    width: 24px;
    height: 24px;
    position: relative;
  }
  header .inner .hum > div span {
    width: 100%;
    height: 2px;
    background-color: #FFF;
    position: absolute;
    left: 0px;
    transition: all 0.25s ease-in 0s;
  }
  header .inner .hum > div span:nth-child(1) {
    top: 0px;
  }
  header .inner .hum > div span:nth-child(2) {
    top: 11px;
  }
  header .inner .hum > div span:nth-child(3) {
    top: 22px;
  }

  nav {
    width: 100%;
    height: calc(100vh - 60px);
    background-color: rgba(0, 0, 0, 0.9);
    position: fixed;
    top: 60px;
    left: 0px;
    z-index: 777;
    clip-path: inset(0 0 100% 0);
    pointer-events: none;
    transition: all 0.25s ease-in 0s;
  }
  nav.on {
    clip-path: inset(0 0 0 0);
    pointer-events: auto;
  }
  nav ul {
    width: 100%;
    height: 100%;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 24px 0;
  }
  nav ul > li:hover > a span:nth-child(1), nav ul > li:hover > a span:nth-child(2) {
    color: #FFF;
  }
  nav ul > li > a {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 8px 0;
  }
  nav ul > li > a > span {
    transition: all 0.25s ease-in 0s;
  }
  nav ul > li > a > span:nth-child(1) {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
  }
  nav ul > li > a > span:nth-child(2) {
    color: #FFF;
    font-family: "poppins", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
  }
  nav ul > li > ul {
    clip-path: none;
    opacity: 1;
    pointer-events: auto;
    position: relative;
    top: auto;
    left: auto;
    display: none;
    transition: none;
  }
  nav ul > li > ul li a {
    background-color: #4E4E4E;
    transition: all 0.25s ease-in 0s;
  }
  nav ul > li > ul li a:hover {
    background-color: #616161;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 1.3020833333vw;
  }

  .brpc {
    display: none;
  }

  .brsp {
    display: block;
  }

  header {
    backdrop-filter: blur(5px);
    padding: 0 0 0 16px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
  }
  header .inner {
    width: 100%;
    padding: 0px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
  }
  header .inner h1 {
    margin: 0 auto 0 0;
  }
  header .inner h1 a {
    color: #000;
    font-family: neuzeit-grotesk, sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.05em;
    font-feature-settings: "palt";
  }
  header .inner h1 a span {
    color: #009d96;
  }
  header .inner .sns ul {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 0 8px;
  }
  header .inner .sns ul li {
    width: 16px;
  }
  header .inner .sns ul li a {
    height: 16px;
  }
  header .inner .hum {
    width: 40px;
    height: 40px;
    margin: 0 0 0 16px;
  }
  header .inner .hum.on > div span:nth-child(1) {
    top: 7px;
    transform: rotate(45deg);
  }
  header .inner .hum.on > div span:nth-child(2) {
    opacity: 0;
  }
  header .inner .hum.on > div span:nth-child(3) {
    top: 7px;
    transform: rotate(-45deg);
  }
  header .inner .hum > div {
    width: 16px;
    height: 16px;
  }
  header .inner .hum > div span:nth-child(1) {
    top: 0px;
  }
  header .inner .hum > div span:nth-child(2) {
    top: 7px;
  }
  header .inner .hum > div span:nth-child(3) {
    top: 14px;
  }

  nav {
    width: 100%;
    height: calc(100vh - 40px);
    background-color: rgba(0, 0, 0, 0.9);
    position: fixed;
    top: 40px;
    left: 0px;
    z-index: 777;
    clip-path: inset(0 0 100% 0);
    pointer-events: none;
    transition: all 0.25s ease-in 0s;
  }
  nav.on {
    clip-path: inset(0 0 0 0);
    pointer-events: auto;
  }
  nav ul {
    width: 100%;
    height: 100%;
    padding: 80px 0;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 24px 0;
  }
  nav ul > li:hover > a span:nth-child(1), nav ul > li:hover > a span:nth-child(2) {
    color: #FFF;
  }
  nav ul > li > a {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 8px 0;
  }
  nav ul > li > a > span {
    transition: all 0.25s ease-in 0s;
  }
  nav ul > li > a > span:nth-child(1) {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
  }
  nav ul > li > a > span:nth-child(2) {
    color: #FFF;
    font-family: "poppins", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
  }
  nav ul > li > ul {
    clip-path: none;
    opacity: 1;
    pointer-events: auto;
    position: relative;
    top: auto;
    left: auto;
  }
  nav ul > li > ul li a {
    background-color: #4E4E4E;
  }
  nav ul > li > ul li a:hover {
    background-color: #4E4E4E;
  }

  #sns {
    padding: 40px 0;
  }
  #sns h4 {
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
    margin-bottom: 24px;
  }
  #sns ul {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 0 16px;
  }
  #sns ul li {
    width: 32px;
  }
  #sns ul li a {
    height: 32px;
    transition: all 0.25s ease-in 0s;
  }
  #sns ul li a:hover {
    opacity: 1;
  }

  section#nowshow {
    width: 100%;
    padding: 56px 0;
  }
  section#nowshow h3::before {
    background-image: url(../../common/images/icon_onshow.svg);
  }
  section#nowshow .inner {
    width: calc(100% - 32px);
    max-width: 1280px;
    justify-content: flex-start;
    gap: 24px 16px;
  }
  section#nowshow .inner:not(:last-child) {
    margin-bottom: 40px;
  }
  section#nowshow .inner > div {
    width: calc((100% - 16px) / 2);
  }
  section#nowshow .inner > div a:hover figure img {
    transform: scale(1);
  }
  section#nowshow .inner > div a figure {
    width: 100%;
    margin-bottom: 16px;
    overflow: hidden;
  }
  section#nowshow .inner > div a figure img {
    width: 100%;
    transition: all 0.25s ease-in 0s;
  }
  section#nowshow .inner > div a dl dt {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 4px 0;
    margin-bottom: 8px;
  }
  section#nowshow .inner > div a dl dt span:nth-child(1) {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
    padding: 4px 8px;
  }
  section#nowshow .inner > div a dl dt span:nth-child(1).onlyd {
    color: #009d96;
    font-family: neuzeit-grotesk, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0em;
    font-feature-settings: "palt";
    text-align: left;
    padding: 0px;
    background-color: transparent;
    border-radius: 0px;
  }
  section#nowshow .inner > div a dl dt span:nth-child(2) {
    color: #009d96;
    font-family: neuzeit-grotesk, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0em;
    font-feature-settings: "palt";
    text-align: left;
  }
  section#nowshow .inner > div a dl dd {
    color: #4E4E4E;
    font-family: neuzeit-grotesk, sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0em;
    font-feature-settings: "palt";
    text-align: left;
  }

  footer {
    width: 100%;
    background-color: #000;
    position: relative;
  }
  footer::before {
    width: 4px;
    height: 150px;
    background-color: #000;
    display: block;
    position: absolute;
    top: -72px;
    left: calc(50% - 2px);
    z-index: 5;
  }
  footer .inner {
    width: 100%;
    margin: 0;
    position: relative;
  }
  footer .inner .ph {
    width: 100%;
  }
  footer .inner .text {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 40px 0;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 1;
  }
  footer .inner .text > div {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 40px 0;
  }
  footer .inner .text > div p {
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
  }
  footer .inner .text > div h4 {
    width: 1020px;
    height: 90px;
    background-image: url(../../home/images/catch.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    text-align: left;
    text-indent: 999%;
    white-space: nowrap;
    display: block;
    overflow: hidden;
  }
  footer .inner .text .btn {
    width: 520px;
    perspective: 960px;
    position: relative;
  }
  footer .inner .text .btn::before {
    content: "";
    width: 81px;
    height: 169px;
    background-image: url(../images/man_entry1.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: block;
    position: absolute;
    top: calc(50% - 85px);
    left: -40px;
    z-index: 3;
  }
  footer .inner .text .btn::after {
    content: "";
    width: 66px;
    height: 161px;
    background-image: url(../images/man_entry2.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: block;
    position: absolute;
    top: calc(50% - 80px);
    right: -33px;
    z-index: 3;
  }
  footer .inner .text .btn:hover a {
    animation-name: flip2;
    animation-duration: 1.5s;
    animation-iteration-count: 1;
    animation-delay: 0s;
  }
  footer .inner .text .btn a {
    width: 100%;
    height: 160px;
    background-color: #FFF;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    border-radius: 24px;
  }
  footer .inner .text .btn a span {
    color: #05a365;
    font-family: "poppins", sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
  }
  footer .cp {
    width: 100%;
    padding: 40px;
  }
  footer .cp p {
    color: #FFF;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0em;
    font-feature-settings: "palt";
  }

  .pgtop {
    width: 16px;
    height: 21px;
    right: 8px;
    bottom: 32px;
  }
  .pgtop:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 2.6666666667vw;
  }
}

/*# sourceMappingURL=style_common.css.map */
