@charset "UTF-8";
/*共通スタイル*/
/* main colors */
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  word-break: break-all;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: 100%;
  font-family: YakuHanJP, "IBM Plex Sans JP", sans-serif;
  color: #121212;
  line-height: 1.75;
  font-size: 16px;
  background: #2D2C37;
}
@media (min-width: 920px) {
  body {
    font-size: 1.1428571429vw;
  }
}

img,
svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

svg {
  max-width: 100%;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  cursor: pointer !important;
  text-decoration: none;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
ul.disc {
  list-style-type: disc;
  padding-left: 1.5em;
  list-style-position: outside;
}

.site_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
}

.site_body {
  margin-bottom: auto;
}

.container-base {
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 920px) {
  .container-base {
    padding: 0 110px;
  }
}
@media (min-width: 920px) and (min-width: 1200px) {
  .container-base {
    padding: 0 7.8571428571vw;
  }
}
@media screen and (min-width: 1920px) {
  .container-base {
    padding: 0 10%;
  }
}

.inner_link {
  position: relative;
}
.inner_link::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #ffffff;
  position: absolute;
  bottom: 0;
  left: 0;
  scale: 0 1;
  transition: scale 0.3s ease-out;
  transform-origin: 100% 0;
}
.inner_link:hover {
  opacity: 1;
  visibility: visible;
}
.inner_link:hover::before {
  scale: 1 1;
  transform-origin: 0 0;
}

.stream_line {
  background-image: linear-gradient(to right, #ffffff, #ffffff);
  background-size: 100% 1px;
  background-position: bottom left;
  background-repeat: no-repeat;
  line-height: 1.25;
  width: fit-content;
}
.stream_line:hover {
  animation: none;
}
@media (min-width: 920px) {
  .stream_line:hover {
    animation: linkLineReverse 0.5s ease forwards;
  }
}
@keyframes linkLineReverse {
  0% {
    background-size: 100% 1px;
    background-position: bottom right;
  }
  50% {
    background-size: 0 1px; /* 幅(100%=文字の長さ) | 高さ(線の太さ) */
    background-position: bottom right;
  }
  51% {
    background-position: bottom left;
  }
  100% {
    background-size: 100% 1px;
  }
}

.br_sp {
  display: block;
}
@media (min-width: 920px) {
  .br_sp {
    display: none;
  }
}

.br_pc {
  display: none;
}
@media (min-width: 920px) {
  .br_pc {
    display: block;
  }
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}
.text-center_pc {
  text-align: left !important;
}
@media (min-width: 920px) {
  .text-center_pc {
    text-align: center !important;
  }
}
.text-center_sp {
  text-align: center !important;
}
@media (min-width: 920px) {
  .text-center_sp {
    text-align: left !important;
  }
}

.txt {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 920px) {
  .txt {
    font-size: 1.1428571429vw;
  }
}

.icon::before, .icon::after {
  transition: translate 0.2s ease-out, background-color 0.3s;
}
.icon_wrap {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 9999px;
  border: 1px solid #121212;
  transition: translate 0.2s ease-out;
}
@media (min-width: 920px) {
  .icon_wrap {
    width: 1.7142857143vw;
    height: 1.7142857143vw;
  }
}
.icon_arrow {
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.icon_arrow::before, .icon_arrow::after {
  content: "";
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  aspect-ratio: 1;
  -webkit-mask-image: url(../img/common/arrow.svg);
  mask-image: url(../img/common/arrow.svg);
  display: block;
  width: 9px;
  height: 6px;
  background: #121212;
  transition: translate 0.2s ease-out;
}
@media (min-width: 1200px) {
  .icon_arrow::before, .icon_arrow::after {
    width: 0.8571428571vw;
    height: 0.5714285714vw;
  }
}
.icon_arrow::after {
  position: absolute;
  top: 0;
  left: 0;
  translate: -200% 0;
}

.btn {
  width: fit-content;
  height: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 4px;
  background-size: 100% 1px;
  background-position: bottom left;
  background-repeat: no-repeat;
  line-height: 1.25;
}
@media (min-width: 920px) {
  .btn {
    width: fit-content;
    gap: 0.8571428571vw;
    padding-bottom: 0.5714285714vw;
  }
}
.btn .icon::before, .btn .icon::after {
  transition: translate 0.2s ease-out, background-color 0.3s;
}
.btn .icon_wrap {
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 9999px;
  transition: translate 0.2s ease-out;
}
@media (min-width: 920px) {
  .btn .icon_wrap {
    width: 1.7142857143vw;
    height: 1.7142857143vw;
  }
}
.btn .icon_arrow {
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.btn .icon_arrow::before, .btn .icon_arrow::after {
  content: "";
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  aspect-ratio: 1;
  -webkit-mask-image: url(../img/common/arrow.svg);
  mask-image: url(../img/common/arrow.svg);
  display: block;
  width: 9px;
  height: 6px;
  background: #121212;
  transition: translate 0.2s ease-out;
}
@media (min-width: 1200px) {
  .btn .icon_arrow::before, .btn .icon_arrow::after {
    width: 0.8571428571vw;
    height: 0.5714285714vw;
  }
}
.btn .icon_arrow::after {
  position: absolute;
  top: 0;
  left: 0;
  translate: -200% 0;
}
.btn_black {
  background-image: linear-gradient(to right, #121212, #121212);
}
.btn_black .icon_wrap {
  border: 1px solid #121212;
}
.btn_black .txt {
  color: #121212;
}
.btn_black .icon_arrow::before, .btn_black .icon_arrow::after {
  background: #121212;
}
.btn_black:hover {
  animation: none;
}
@media (min-width: 920px) {
  .btn_black:hover {
    animation: linkLineReverse 0.5s ease forwards;
  }
}
.btn_black:hover .icon_wrap {
  border: 1px solid #C93F18;
  background-color: #C93F18;
}
.btn_black:hover .icon_arrow::before, .btn_black:hover .icon_arrow::after {
  background: #ffffff;
}
.btn_black:hover .icon_arrow::before {
  translate: 100% 0;
}
.btn_black:hover .icon_arrow::after {
  translate: 0 0;
}
.btn_white {
  background-image: linear-gradient(to right, #ffffff, #ffffff);
}
.btn_white .icon_wrap {
  border: 1px solid #ffffff;
}
.btn_white .txt {
  color: #ffffff;
}
.btn_white .icon_arrow::before, .btn_white .icon_arrow::after {
  background: #ffffff;
}
.btn_white:hover {
  animation: none;
}
@media (min-width: 920px) {
  .btn_white:hover {
    animation: linkLineReverse 0.5s ease forwards;
  }
}
.btn_white:hover .icon_wrap {
  border: 1px solid #C93F18;
  background-color: #C93F18;
}
.btn_white:hover .icon_arrow::before, .btn_white:hover .icon_arrow::after {
  background: #ffffff;
}
.btn_white:hover .icon_arrow::before {
  translate: 100% 0;
}
.btn_white:hover .icon_arrow::after {
  translate: 0 0;
}
@keyframes linkLineReverse {
  0% {
    background-size: 100% 1px;
    background-position: bottom right;
  }
  50% {
    background-size: 0 1px; /* 幅(100%=文字の長さ) | 高さ(線の太さ) */
    background-position: bottom right;
  }
  51% {
    background-position: bottom left;
  }
  100% {
    background-size: 100% 1px;
  }
}
@media (min-width: 920px) {
  .btn_wrap_sp {
    display: none;
  }
}
.btn_wrap_pc {
  display: none;
}
@media (min-width: 920px) {
  .btn_wrap_pc {
    display: block;
  }
}

.sns_row {
  width: fit-content;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto;
}
@media (min-width: 920px) {
  .sns_row {
    gap: 0.7142857143vw;
    margin: 0;
  }
}
.sns_row_link {
  width: 32px;
  height: 32px;
  display: flex;
  transition: all 0.5s cubic-bezier(0.18, 0.06, 0.23, 1);
}
@media (min-width: 920px) {
  .sns_row_link {
    width: 2.2857142857vw;
    height: 2.2857142857vw;
  }
}
.sns_row_link img {
  width: 100%;
  height: 100%;
}
.sns_row_link:hover {
  opacity: 0.5;
}

.policy_link {
  display: flex;
  margin: 0 auto;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  color: #ffffff;
}
@media (min-width: 920px) {
  .policy_link {
    font-size: 1vw;
    margin: 0 auto 0 0;
  }
}

.news_list {
  width: 100%;
  height: auto;
  border-top: 1px solid #58566B;
}
.news_list_item {
  border-bottom: 1px solid #58566B;
}
.news_list_item_link {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 4px;
  transition: all 0.5s cubic-bezier(0.18, 0.06, 0.23, 1);
}
@media (min-width: 920px) {
  .news_list_item_link {
    padding: 2.8571428571vw 1.4285714286vw;
  }
}
.news_list_item_link_inner {
  flex: 1 1 0%;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #ffffff;
}
@media (min-width: 920px) {
  .news_list_item_link_inner {
    gap: 2vw;
  }
}
.news_list_item_link_date {
  font-family: "Inter", serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 0.9;
}
@media (min-width: 920px) {
  .news_list_item_link_date {
    font-size: 1vw;
  }
}
.news_list_item_link_title {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  text-align: justify;
}
@media (min-width: 920px) {
  .news_list_item_link_title {
    font-size: 1.2857142857vw;
    line-height: 1.75;
  }
}
.news_list_item_link .icon_wrap {
  width: 24px;
  height: 24px;
  flex: 0 1 24px;
  border: 1px solid #ffffff;
}
@media (min-width: 920px) {
  .news_list_item_link .icon_wrap {
    width: 1.7142857143vw;
    height: 1.7142857143vw;
    flex: 0 1 1.7142857143vw;
  }
}
.news_list_item_link .icon_arrow::before, .news_list_item_link .icon_arrow::after {
  background: #ffffff;
}
@media (min-width: 920px) {
  .news_list_item_link:hover {
    background-color: #383745;
  }
}
.news_list_item_link:hover .icon_wrap {
  background-color: #ffffff;
}
.news_list_item_link:hover .icon_arrow::before, .news_list_item_link:hover .icon_arrow::after {
  background: #2D2C37;
}
.news_list_item_link:hover .icon_arrow::before {
  translate: 100% 0;
}
.news_list_item_link:hover .icon_arrow::after {
  translate: 0 0;
}

.animation {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.text-split {
  overflow: hidden;
  display: block;
}
.text-split span {
  display: inline-block;
  min-width: 0.15em;
}

.animation--1 .text-split span {
  transform: translateY(150%);
}
.animation--1 .is-active .text-split span {
  transform: translateY(0);
  transition: transform cubic-bezier(0.7, 0.2, 0.1, 1) 0.8s;
}
.animation--1 .is-active .text-split span:nth-child(1) {
  transition-delay: 0s;
}
.animation--1 .is-active .text-split span:nth-child(2) {
  transition-delay: 0.04s;
}
.animation--1 .is-active .text-split span:nth-child(3) {
  transition-delay: 0.08s;
}
.animation--1 .is-active .text-split span:nth-child(4) {
  transition-delay: 0.12s;
}
.animation--1 .is-active .text-split span:nth-child(5) {
  transition-delay: 0.16s;
}
.animation--1 .is-active .text-split span:nth-child(6) {
  transition-delay: 0.2s;
}
.animation--1 .is-active .text-split span:nth-child(7) {
  transition-delay: 0.24s;
}
.animation--1 .is-active .text-split span:nth-child(8) {
  transition-delay: 0.28s;
}
.animation--1 .is-active .text-split span:nth-child(9) {
  transition-delay: 0.32s;
}
.animation--1 .is-active .text-split span:nth-child(10) {
  transition-delay: 0.36s;
}
.animation--1 .is-active .text-split span:nth-child(11) {
  transition-delay: 0.4s;
}
.animation--1 .is-active .text-split span:nth-child(12) {
  transition-delay: 0.44s;
}
.animation--1 .is-active .text-split span:nth-child(13) {
  transition-delay: 0.48s;
}
.animation--1 .is-active .text-split span:nth-child(14) {
  transition-delay: 0.52s;
}
.animation--1 .is-active .text-split span:nth-child(15) {
  transition-delay: 0.56s;
}
.animation--1 .is-active .text-split span:nth-child(16) {
  transition-delay: 0.6s;
}
.animation--1 .is-active .text-split span:nth-child(17) {
  transition-delay: 0.64s;
}
.animation--1 .is-active .text-split span:nth-child(18) {
  transition-delay: 0.68s;
}
.animation--1 .is-active .text-split span:nth-child(19) {
  transition-delay: 0.72s;
}
.animation--1 .is-active .text-split span:nth-child(20) {
  transition-delay: 0.76s;
}
.animation--1 .is-active .text-split span:nth-child(21) {
  transition-delay: 0.8s;
}
.animation--1 .is-active .text-split span:nth-child(22) {
  transition-delay: 0.84s;
}
.animation--1 .is-active .text-split span:nth-child(23) {
  transition-delay: 0.88s;
}
.animation--1 .is-active .text-split span:nth-child(24) {
  transition-delay: 0.92s;
}
.animation--1 .is-active .text-split span:nth-child(25) {
  transition-delay: 0.96s;
}
.animation--1 .is-active .text-split span:nth-child(26) {
  transition-delay: 1s;
}
.animation--1 .is-active .text-split span:nth-child(27) {
  transition-delay: 1.04s;
}
.animation--1 .is-active .text-split span:nth-child(28) {
  transition-delay: 1.08s;
}
.animation--1 .is-active .text-split span:nth-child(29) {
  transition-delay: 1.12s;
}
.animation--1 .is-active .text-split span:nth-child(30) {
  transition-delay: 1.16s;
}
.animation--1 .is-active .text-split span:nth-child(31) {
  transition-delay: 1.2s;
}
.animation--1 .is-active .text-split span:nth-child(32) {
  transition-delay: 1.24s;
}
.animation--1 .is-active .text-split span:nth-child(33) {
  transition-delay: 1.28s;
}
.animation--1 .is-active .text-split span:nth-child(34) {
  transition-delay: 1.32s;
}
.animation--1 .is-active .text-split span:nth-child(35) {
  transition-delay: 1.36s;
}
.animation--1 .is-active .text-split span:nth-child(36) {
  transition-delay: 1.4s;
}
.animation--1 .is-active .text-split span:nth-child(37) {
  transition-delay: 1.44s;
}
.animation--1 .is-active .text-split span:nth-child(38) {
  transition-delay: 1.48s;
}
.animation--1 .is-active .text-split span:nth-child(39) {
  transition-delay: 1.52s;
}
.animation--1 .is-active .text-split span:nth-child(40) {
  transition-delay: 1.56s;
}
.animation--1 .is-active .text-split span:nth-child(41) {
  transition-delay: 1.6s;
}
.animation--1 .is-active .text-split span:nth-child(42) {
  transition-delay: 1.64s;
}
.animation--1 .is-active .text-split span:nth-child(43) {
  transition-delay: 1.68s;
}
.animation--1 .is-active .text-split span:nth-child(44) {
  transition-delay: 1.72s;
}
.animation--1 .is-active .text-split span:nth-child(45) {
  transition-delay: 1.76s;
}
.animation--1 .is-active .text-split span:nth-child(46) {
  transition-delay: 1.8s;
}
.animation--1 .is-active .text-split span:nth-child(47) {
  transition-delay: 1.84s;
}
.animation--1 .is-active .text-split span:nth-child(48) {
  transition-delay: 1.88s;
}
.animation--1 .is-active .text-split span:nth-child(49) {
  transition-delay: 1.92s;
}
.animation--1 .is-active .text-split span:nth-child(50) {
  transition-delay: 1.96s;
}
.animation--1 .is-active .text-split span:nth-child(51) {
  transition-delay: 2s;
}
.animation--1 .is-active .text-split span:nth-child(52) {
  transition-delay: 2.04s;
}
.animation--1 .is-active .text-split span:nth-child(53) {
  transition-delay: 2.08s;
}
.animation--1 .is-active .text-split span:nth-child(54) {
  transition-delay: 2.12s;
}
.animation--1 .is-active .text-split span:nth-child(55) {
  transition-delay: 2.16s;
}
.animation--1 .is-active .text-split span:nth-child(56) {
  transition-delay: 2.2s;
}
.animation--1 .is-active .text-split span:nth-child(57) {
  transition-delay: 2.24s;
}
.animation--1 .is-active .text-split span:nth-child(58) {
  transition-delay: 2.28s;
}
.animation--1 .is-active .text-split span:nth-child(59) {
  transition-delay: 2.32s;
}
.animation--1 .is-active .text-split span:nth-child(60) {
  transition-delay: 2.36s;
}
.animation--1 .is-active .text-split span:nth-child(61) {
  transition-delay: 2.4s;
}
.animation--1 .is-active .text-split span:nth-child(62) {
  transition-delay: 2.44s;
}
.animation--1 .is-active .text-split span:nth-child(63) {
  transition-delay: 2.48s;
}
.animation--1 .is-active .text-split span:nth-child(64) {
  transition-delay: 2.52s;
}
.animation--1 .is-active .text-split span:nth-child(65) {
  transition-delay: 2.56s;
}
.animation--1 .is-active .text-split span:nth-child(66) {
  transition-delay: 2.6s;
}
.animation--1 .is-active .text-split span:nth-child(67) {
  transition-delay: 2.64s;
}
.animation--1 .is-active .text-split span:nth-child(68) {
  transition-delay: 2.68s;
}
.animation--1 .is-active .text-split span:nth-child(69) {
  transition-delay: 2.72s;
}
.animation--1 .is-active .text-split span:nth-child(70) {
  transition-delay: 2.76s;
}

#stalker {
  position: fixed;
  top: -5vw;
  left: 1.5rem;
  width: 21.4285714286vw;
  height: 14.2857142857vw;
  transition: 0.2s;
  transition-timing-function: ease-out;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  -webkit-transition: -webkit-opacity 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  display: none;
  background-size: cover;
}
@media (min-width: 920px) {
  #stalker {
    display: block;
  }
}
#stalker span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%) scale(0.5);
  transition: 0.25s;
}
#stalker.stalker_drag01_active {
  opacity: 1;
  -webkit-transition: -webkit-opacity 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#stalker.stalker_drag01_active span {
  transform: translate(-50%, -50%) scale(1);
  transition: 0.25s;
  background-image: image-set(url(../img/home/service_img01.png) 1x, url(../img/home/service_img01@2x.png) 2x);
  background-size: cover;
}
#stalker.stalker_drag02_active {
  opacity: 1;
  -webkit-transition: -webkit-opacity 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#stalker.stalker_drag02_active span {
  transform: translate(-50%, -50%) scale(1);
  transition: 0.25s;
  background-image: image-set(url(../img/home/service_img02.png) 1x, url(../img/home/service_img02@2x.png) 2x);
  background-size: cover;
}
#stalker.stalker_drag03_active {
  opacity: 1;
  -webkit-transition: -webkit-opacity 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#stalker.stalker_drag03_active span {
  transform: translate(-50%, -50%) scale(1);
  transition: 0.25s;
  background-image: image-set(url(../img/home/service_img03.png) 1x, url(../img/home/service_img03@2x.png) 2x);
  background-size: cover;
}
#stalker.stalker_drag04_active {
  opacity: 1;
  -webkit-transition: -webkit-opacity 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#stalker.stalker_drag04_active span {
  transform: translate(-50%, -50%) scale(1);
  transition: 0.25s;
  background-image: image-set(url(../img/home/service_img04.png) 1x, url(../img/home/service_img04@2x.png) 2x);
  background-size: cover;
}
#stalker.stalker_drag05_active {
  opacity: 1;
  -webkit-transition: -webkit-opacity 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#stalker.stalker_drag05_active span {
  transform: translate(-50%, -50%) scale(1);
  transition: 0.25s;
  background-image: image-set(url(../img/home/service_img05.png) 1x, url(../img/home/service_img05@2x.png) 2x);
  background-size: cover;
}
#stalker.stalker_drag06_active {
  opacity: 1;
  -webkit-transition: -webkit-opacity 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: opacity 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#stalker.stalker_drag06_active span {
  transform: translate(-50%, -50%) scale(1);
  transition: 0.25s;
  background-image: image-set(url(../img/home/service_img06.png) 1x, url(../img/home/service_img06@2x.png) 2x);
  background-size: cover;
}

/*ヘッダーのスタイル*/
.site_header {
  width: 100%;
  height: 76px;
  padding: 12px 12px 0;
  position: fixed;
  z-index: 99;
  transition: 0.5s;
}
@media (min-width: 920px) {
  .site_header {
    padding: 0;
    height: 7.1428571429vw;
  }
}
.site_header_container {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 500px;
  background-color: #2D2C37;
  padding: 11px 20px;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.3019607843);
  transition: 0.5s;
}
@media (min-width: 920px) {
  .site_header_container {
    width: 71.2857142857vw;
    padding: 1.2857142857vw 4.2857142857vw 1.2857142857vw 1.7857142857vw;
    border-radius: 0 0 40px 0;
    margin: 0 auto 0 0;
  }
}
.site_header_logo {
  width: fit-content;
  height: 42px;
  display: flex;
  position: relative;
  z-index: 5;
}
@media (min-width: 920px) {
  .site_header_logo {
    width: 7.7142857143vw;
    height: 4.2857142857vw;
  }
}
.site_header_logo img {
  width: 100%;
  height: 100%;
}

.pc_nav {
  display: none;
}
@media (min-width: 920px) {
  .pc_nav {
    width: fit-content;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2.8571428571vw;
  }
}
.pc_nav_item {
  color: #ffffff;
}
@media (min-width: 920px) {
  .pc_nav_item_service .pc_nav_link {
    position: relative;
    padding-right: 1.4285714286vw;
  }
}
.pc_nav_item_service .pc_nav_link::after {
  content: none;
  display: block;
  position: absolute;
  top: 40%;
  right: 0.3571428571vw;
  width: 0.5714285714vw;
  height: 0.5714285714vw;
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  transform: translateY(-50%) rotate(135deg);
}
@media (min-width: 920px) {
  .pc_nav_item_service .pc_nav_link::after {
    content: "";
  }
}
.pc_nav_item_service:hover .pc_nav_mega {
  opacity: 1;
  visibility: visible;
}
.pc_nav_link {
  font-weight: 700;
  line-height: 1.25;
}
.pc_nav_mega {
  position: absolute;
  width: 100%;
  top: 5.5714285714vw;
  left: 0;
  opacity: 0;
  z-index: 2;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.pc_nav_mega_container {
  width: 65vw;
  height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 5.7142857143vw;
  padding: 2.8571428571vw;
  background-color: #ffffff;
  border-radius: 8px;
  margin: 0 auto;
}
.pc_nav_mega_textArea {
  width: 100%;
  height: 19.7142857143vw;
  display: flex;
  flex-direction: column;
  gap: 2.8571428571vw;
  flex: 0 1 19.1428571429vw;
  position: relative;
}
.pc_nav_mega_textArea p {
  font-size: 1.1428571429vw;
  font-weight: 700;
  line-height: 1.75;
  text-align: left;
  color: #121212;
}
.pc_nav_mega_textArea .btn {
  position: absolute;
  bottom: 0;
  left: 0;
}
.pc_nav_mega_title {
  font-family: "Inter", serif;
  font-size: 4.5714285714vw;
  font-weight: 500;
  line-height: 1;
  color: rgba(18, 18, 18, 0.1);
}
.pc_nav_mega_list {
  width: 100%;
  height: auto;
  flex: 0 1 34.4285714286vw;
  display: flex;
  flex-wrap: wrap;
  gap: 1.7142857143vw 1.1428571429vw;
}
.pc_nav_mega_list_item {
  width: calc((100% - 2.286vw) / 3);
  height: auto;
}
.pc_nav_mega_link {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 0.8571428571vw;
  transition: all 0.5s cubic-bezier(0.18, 0.06, 0.23, 1);
}
.pc_nav_mega_link_img {
  width: 10.7142857143vw;
  height: 7.1428571429vw;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.18, 0.06, 0.23, 1);
}
.pc_nav_mega_link_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
  transition: all 0.5s cubic-bezier(0.18, 0.06, 0.23, 1);
}
.pc_nav_mega_link_title {
  font-size: 1vw;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #121212;
}
.pc_nav_mega_link:hover .pc_nav_mega_link_img img {
  scale: 1.07;
}

.openbtn {
  width: 48px;
  height: 16px;
  position: relative;
  cursor: pointer;
  position: relative;
  z-index: 5;
}
@media (min-width: 920px) {
  .openbtn {
    display: none;
  }
}
.openbtn span {
  display: inline-block;
  transition: all 0.3s; /*アニメーションの設定*/
  position: absolute;
  left: 0;
  height: 1px;
  width: 100%;
  background: #ffffff;
}
.openbtn span:nth-of-type(1) {
  top: 0;
}
.openbtn span:nth-of-type(2) {
  top: 8px;
}
.openbtn span:nth-of-type(3) {
  top: 16px;
}
.openbtn.active span:nth-of-type(1) {
  transform: translateY(8px) rotate(-15deg);
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0; /*真ん中の線は透過*/
}
.openbtn.active span:nth-of-type(3) {
  top: 18px;
  transform: translateY(-10px) rotate(15deg);
}

.mobile_nav {
  width: 100%;
  height: fit-content;
  padding: 12px 12px 0;
  position: absolute;
  z-index: 4;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0; /* 初期状態では不透明度を0に設定 */
  transition: opacity 0.5s ease; /* opacityとtransformの変化にトランジションを適用 */
  pointer-events: none;
}
.mobile_nav.active {
  opacity: 1;
  pointer-events: all;
}
.mobile_nav_container {
  width: 100%;
  height: auto;
  background-color: #2D2C37;
  padding: 93px 20px 20px;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.3019607843);
  border-radius: 30px;
}
.mobile_nav_list {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  color: #ffffff;
  margin-bottom: 40px;
}
.mobile_nav_link {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}
.mobile_nav_info {
  border-top: 1px solid #58566B;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 0;
}
.mobile_nav_info .number,
.mobile_nav_info .time {
  color: #ffffff;
}
.mobile_nav_other {
  border-top: 1px solid #58566B;
  padding: 12px 0 0;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.mobile_nav_other .sns_row,
.mobile_nav_other .policy_link {
  margin: 0;
}

.service_container {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service_list {
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 20px;
  padding-left: 15px;
  border-left: 1px solid #58566B;
  color: #ffffff;
}
.service_list li {
  width: 134px;
  flex: 0 1 134px;
  display: flex;
  justify-content: flex-start;
}
.service_list_link {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
}

/*フッターのスタイル*/
.site_footer {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0 20px 20px;
  background-color: #2D2C37;
}
@media (min-width: 920px) {
  .site_footer {
    padding: 0 1.7857142857vw 1.4285714286vw;
    gap: 4.2857142857vw;
  }
}
.site_footer_contact {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  border-radius: 20px;
  padding: 40px 20px;
  background-color: #383745;
}
@media (min-width: 920px) {
  .site_footer_contact {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    padding: 4.2857142857vw 6.0714285714vw 6vw;
  }
}
.site_footer_contact_textArea {
  color: #ffffff;
}
@media (min-width: 920px) {
  .site_footer_contact_textArea {
    width: 44.5714285714vw;
    flex: 0 1 44.5714285714vw;
  }
}
.site_footer_contact_textArea p {
  font-size: 14px;
  text-align: justify;
}
@media (min-width: 920px) {
  .site_footer_contact_textArea p {
    width: 35.5vw;
    font-size: 1.1428571429vw;
  }
}
.site_footer_contact_title {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}
@media (min-width: 920px) {
  .site_footer_contact_title {
    gap: 2.1428571429vw;
    margin-bottom: 4vw;
  }
}
.site_footer_contact_title_ja {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  position: relative;
  padding-left: 24px;
}
@media (min-width: 920px) {
  .site_footer_contact_title_ja {
    font-size: 1.4285714286vw;
    padding-left: 2vw;
  }
}
.site_footer_contact_title_ja::before {
  content: "";
  position: absolute;
  background: #C93F18;
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  top: 50%;
  left: 0;
  translate: 0 -50%;
}
@media (min-width: 920px) {
  .site_footer_contact_title_ja::before {
    width: 0.8571428571vw;
    height: 0.8571428571vw;
  }
}
.site_footer_contact_title_en {
  font-size: 60px;
  font-weight: 500;
  line-height: 1;
}
@media (min-width: 920px) {
  .site_footer_contact_title_en {
    font-size: 9.1428571429vw;
  }
}
.site_footer_contact_nav {
  width: 100%;
}
@media (min-width: 920px) {
  .site_footer_contact_nav {
    width: 29.3571428571vw;
    flex: 0 1 29.3571428571vw;
    padding-top: 3.1428571429vw;
  }
}
.site_footer_contact_nav_title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
}
.site_footer_contact_nav_title_icon {
  width: 24px;
  height: 24px;
  display: flex;
}
@media (min-width: 920px) {
  .site_footer_contact_nav_title_icon {
    width: 1.7142857143vw;
    height: 1.7142857143vw;
  }
}
.site_footer_contact_nav_title_icon img {
  width: 100%;
  height: 100%;
}
.site_footer_contact_nav_title_large {
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0.04em;
  color: #ffffff;
}
@media (min-width: 920px) {
  .site_footer_contact_nav_title_large {
    font-size: 1.4285714286vw;
  }
}
.site_footer_contact_nav_flex {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 920px) {
  .site_footer_contact_nav_flex {
    align-items: flex-start;
    gap: 1.1428571429vw;
  }
}
.site_footer_contact_nav_flex_tel {
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  margin-bottom: 24px;
}
@media (min-width: 920px) {
  .site_footer_contact_nav_flex_tel {
    padding-bottom: 2.2857142857vw;
    margin-bottom: 2.2857142857vw;
  }
}
.site_footer_contact_nav_flex_tel_contents {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: #ffffff;
}
@media (min-width: 920px) {
  .site_footer_contact_nav_flex_tel_contents {
    width: fit-content;
    gap: 1vw;
  }
}
.site_footer_contact_nav_flex_form_link {
  width: 100%;
  height: 100px;
  max-width: 400px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 0 20px 0 40px;
  margin: 0 auto;
  color: #2D2C37;
  transition: all 0.5s cubic-bezier(0.18, 0.06, 0.23, 1);
}
@media (min-width: 920px) {
  .site_footer_contact_nav_flex_form_link {
    height: 8.5714285714vw;
    max-width: 100%;
    padding: 0 1.4285714286vw 0 2.8571428571vw;
    margin: 0;
  }
}
.site_footer_contact_nav_flex_form_link .icon_wrap {
  width: 24px;
  height: 24px;
  flex: 0 1 24px;
}
@media (min-width: 920px) {
  .site_footer_contact_nav_flex_form_link .icon_wrap {
    width: 1.7142857143vw;
    height: 1.7142857143vw;
    flex: 0 1 1.7142857143vw;
  }
}
.site_footer_contact_nav_flex_form_link .txt {
  transition: all 0.5s cubic-bezier(0.18, 0.06, 0.23, 1);
}
@media (min-width: 920px) {
  .site_footer_contact_nav_flex_form_link .txt {
    font-size: 1.4285714286vw;
  }
}
.site_footer_contact_nav_flex_form_link:hover {
  background-color: #C93F18;
}
.site_footer_contact_nav_flex_form_link:hover .txt {
  color: #ffffff;
}
.site_footer_contact_nav_flex_form_link:hover .icon_wrap {
  border: 1px solid #ffffff;
  background-color: #ffffff;
}
.site_footer_contact_nav_flex_form_link:hover .icon_arrow::before, .site_footer_contact_nav_flex_form_link:hover .icon_arrow::after {
  background: #C93F18;
}
.site_footer_contact_nav_flex_form_link:hover .icon_arrow::before {
  translate: 100% 0;
}
.site_footer_contact_nav_flex_form_link:hover .icon_arrow::after {
  translate: 0 0;
}
.site_footer_main {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 920px) {
  .site_footer_main {
    gap: 2.8571428571vw;
  }
}
.site_footer_main_nav {
  width: 100%;
  height: auto;
  display: contents;
}
@media (min-width: 920px) {
  .site_footer_main_nav {
    display: flex;
  }
}
@media (min-width: 920px) {
  .site_footer_main_nav_item {
    width: 33.33333%;
    height: 12.2857142857vw;
  }
}
.site_footer_main_nav_item_title {
  font-family: "Inter", serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
  display: flex;
  margin: 0 auto 40px;
}
@media (min-width: 920px) {
  .site_footer_main_nav_item_title {
    font-size: 1.1428571429vw;
    margin: 0 auto 3.1428571429vw 0;
  }
}
.site_footer_main_nav_item_info {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  order: 3;
}
@media (min-width: 920px) {
  .site_footer_main_nav_item_info {
    flex-direction: column;
    gap: 0;
    padding: 1vw 1.4285714286vw 1vw 0;
    border-top: 0;
    border-bottom: 0;
    order: 0;
  }
}
.site_footer_main_nav_item_info .site_footer_main_nav_item_title {
  width: 100px;
  flex: 0 1 100px;
  margin: 0;
}
@media (min-width: 920px) {
  .site_footer_main_nav_item_info .site_footer_main_nav_item_title {
    width: 100%;
    flex: 0 1 auto;
    margin: 0 auto 3.1428571429vw 0;
  }
}
.site_footer_main_nav_item_permission {
  width: 100%;
  height: auto;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  order: 4;
  margin-top: -40px;
}
@media (min-width: 920px) {
  .site_footer_main_nav_item_permission {
    flex-direction: column;
    gap: 0;
    padding: 1vw 1.4285714286vw;
    border-bottom: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    order: 0;
    margin-top: 0;
  }
}
.site_footer_main_nav_item_permission .site_footer_main_nav_item_title {
  width: 100px;
  flex: 0 1 100px;
  margin: 0;
}
@media (min-width: 920px) {
  .site_footer_main_nav_item_permission .site_footer_main_nav_item_title {
    width: 100%;
    flex: 0 1 auto;
    margin: 0 auto 3.1428571429vw 0;
  }
}
.site_footer_main_nav_item_nav {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 0 0;
  order: 1;
}
@media (min-width: 920px) {
  .site_footer_main_nav_item_nav {
    padding: 1vw 0 1vw 1.4285714286vw;
    border-bottom: 0;
    align-items: normal;
    justify-content: flex-start;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    order: 0;
  }
}
.site_footer_main_nav_item_inner {
  flex: 1 1 0%;
}
.site_footer_main_nav_list {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 30px;
}
@media (min-width: 920px) {
  .site_footer_main_nav_list {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: normal;
    justify-content: flex-start;
    gap: 1.5vw 2.5vw;
    margin-bottom: 2.5vw;
  }
}
.site_footer_main_nav_list li {
  line-height: 1;
  text-align: center;
}
@media (min-width: 920px) {
  .site_footer_main_nav_list li {
    text-align: left;
  }
}
@media (min-width: 920px) {
  .site_footer_main_nav_list li:nth-child(1), .site_footer_main_nav_list li:nth-child(4) {
    width: 8vw;
  }
}
@media (min-width: 920px) {
  .site_footer_main_nav_list li:nth-child(2), .site_footer_main_nav_list li:nth-child(5) {
    width: 6.8571428571vw;
  }
}
.site_footer_main_nav_link {
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  color: #ffffff;
}
@media (min-width: 920px) {
  .site_footer_main_nav_link {
    font-size: 1.1428571429vw;
  }
}
.site_footer_main_other {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  gap: 24px;
  order: 5;
  margin-top: -16px;
}
@media (min-width: 920px) {
  .site_footer_main_other {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-top: 0;
    order: 0;
  }
}
.site_footer_main_other_row {
  width: fit-content;
  height: auto;
  display: flex;
}
@media (min-width: 920px) {
  .site_footer_main_other_row {
    width: 51.7142857143vw;
    align-items: center;
    justify-content: space-between;
  }
}
.site_footer_catch {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: #ffffff;
  font-family: "Inter", serif;
  padding: 40px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
@media (min-width: 920px) {
  .site_footer_catch {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
    border-top: 0;
    padding: 0;
    order: 0;
    transition: transform cubic-bezier(0.7, 0.2, 0.1, 1) 0.8s;
    transform: translateY(200%);
  }
}
.site_footer_catch_large {
  font-size: 92px;
  font-weight: 400;
  line-height: 0.9;
  white-space: nowrap;
  letter-spacing: -0.03em;
}
@media (min-width: 920px) {
  .site_footer_catch_large {
    font-size: 15vw;
  }
}
.site_footer_catch_logo {
  width: 314px;
  height: 314px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid #ffffff;
  position: relative;
}
@media (min-width: 920px) {
  .site_footer_catch_logo {
    width: 12vw;
    height: 12vw;
  }
}
.site_footer_catch_logo_inner {
  width: 154px;
  height: 274px;
}
@media (min-width: 920px) {
  .site_footer_catch_logo_inner {
    width: 5.7142857143vw;
    height: 10.2142857143vw;
  }
}
.site_footer_catch_logo_inner img {
  width: 100%;
  height: 100%;
}
.site_footer_catch_small {
  display: inline-block;
  font-size: 70px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.008em;
  text-align: center;
}
@media (min-width: 920px) {
  .site_footer_catch_small {
    font-size: 6.7857142857vw;
    letter-spacing: -0.05em;
    white-space: nowrap;
    text-align: left;
  }
}

.number {
  width: fit-content;
  height: auto;
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  font-family: "Inter", serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 920px) {
  .number {
    font-size: 3.4285714286vw;
  }
}
.number a {
  text-decoration: none;
  pointer-events: none;
}
.number small {
  font-family: "Inter", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 920px) {
  .number small {
    font-size: 1.7142857143vw;
  }
}

.time {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}
@media (min-width: 920px) {
  .time {
    font-size: 1.1428571429vw;
  }
}

.company_name {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  color: #ffffff;
  display: block;
  margin-bottom: 0.8rem;
}
@media (min-width: 920px) {
  .company_name {
    font-size: 1.1428571429vw;
    margin-bottom: 1.1428571429vw;
  }
}

.address {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #ffffff;
}
@media (min-width: 920px) {
  .address {
    gap: 0.8571428571vw;
  }
}
.address p {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}
@media (min-width: 920px) {
  .address p {
    font-size: 1vw;
  }
}
.address_tel {
  font-family: "Inter", serif;
  font-size: 12px;
  font-weight: 500;
}
@media (min-width: 920px) {
  .address_tel {
    font-size: 1vw;
  }
}
.address_tel a {
  pointer-events: none;
  text-decoration: none;
}

.permission {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: #ffffff;
}
@media (min-width: 920px) {
  .permission {
    gap: 1.4285714286vw;
  }
}
.permission p,
.permission a {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}
@media (min-width: 920px) {
  .permission p,
  .permission a {
    font-size: 1vw;
  }
}
.permission span {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}
@media (min-width: 920px) {
  .permission span {
    font-size: 1vw;
    line-height: 1;
  }
}

.copyright {
  font-family: "Inter", serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  color: #ffffff;
}
@media (min-width: 920px) {
  .copyright {
    font-size: 0.8571428571vw;
  }
}

.pageTop {
  width: fit-content;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
@media (min-width: 920px) {
  .pageTop {
    height: 1.7142857143vw;
    gap: 0.5714285714vw;
  }
}
.pageTop_text {
  font-family: "Inter", serif;
  font-size: 15px;
  line-height: 1.5;
  color: #ffffff;
  flex: 1 1 0%;
}
@media (min-width: 920px) {
  .pageTop_text {
    font-size: 1.0714285714vw;
  }
}
.pageTop_icon {
  width: 24px;
  height: 24px;
  position: relative;
  overflow: hidden;
  display: inline-block;
  transition: translate 0.2s ease-out, background-color 0.3s;
}
@media (min-width: 920px) {
  .pageTop_icon {
    width: 1.7142857143vw;
    height: 1.7142857143vw;
  }
}
.pageTop_icon::before, .pageTop_icon::after {
  content: "";
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  aspect-ratio: 1;
  -webkit-mask-image: url(../img/common/arrow_pagetop.svg);
  mask-image: url(../img/common/arrow_pagetop.svg);
  display: block;
  width: 24px;
  height: 24px;
  background: #ffffff;
  transition: translate 0.2s ease-out, background-color 0.3s;
}
@media (min-width: 1200px) {
  .pageTop_icon::before, .pageTop_icon::after {
    width: 1.7142857143vw;
    height: 1.7142857143vw;
  }
}
.pageTop_icon::after {
  position: absolute;
  top: 0;
  left: 0;
  translate: 0 200%;
}
.pageTop:hover .pageTop_icon::before {
  translate: 0 -100%;
}
.pageTop:hover .pageTop_icon::after {
  translate: 0 0;
}
.pageTop_sp {
  margin: 40px auto 0;
}
@media (min-width: 920px) {
  .pageTop_sp {
    display: none;
  }
}
.pageTop_pc {
  display: none;
}
@media (min-width: 920px) {
  .pageTop_pc {
    display: flex;
  }
}

.hidden_container {
  order: 2;
}
@media (min-width: 920px) {
  .hidden_container {
    overflow: hidden;
    order: 0;
  }
}
@media (min-width: 920px) {
  .hidden_container.visible .site_footer_catch {
    transform: translateY(0);
  }
}