/* =====================
base
===================== */
html *,
::before,
::after {
  box-sizing: border-box;
}

body {
  font-family: YakuHanJP, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #333333;
  font-size: 14px;
}

body.fixed {
  overflow: hidden;
}

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

p {
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: #333333;
}
.trans {
  backface-visibility: hidden;
  transition: 0.3s ease-out;
}
.trans:hover {
  opacity: 0.5;
}

.pcv {
  display: block;
}
.spv {
  display: none;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@media (min-width: 1px) and (max-width: 1050px) {
  .trans:hover {
    opacity: 1;
    transition: 0.5s all;
  }
}

@media (min-width: 1px) and (max-width: 767px) {
  .pcv {
    display: none;
  }
  .spv {
    display: block;
  }
}
/* 游ゴシック */
body {
  font-family: "yu-gothic-pr6n", sans-serif;
  font-weight: 400;
  font-style: normal;
}
/* ページ読み込み時フェードイン */
body {
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* フェードアップ */
.fadeup-item {
  transform: translateY(30px);
  opacity: 0;
  visibility: hidden;
  transition: transform 1s, opacity 1s, visibility 1s;
}
.fadeup-item-top {
  transform: translateY(30px);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.5s, opacity 0.5s, visibility 0.5s;
}
.is-fadeup-item {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.is-fadeup-item-top {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.fadeup-deley-1 {
  transition-delay: 1s;
}
.fadeup-deley-15 {
  transition-delay: 1.5s;
}
.fadeup-deley-2 {
  transition-delay: 2s;
}
.fadeup-deley-25 {
  transition-delay: 2.5s;
}
/* 英字フォント */
@font-face {
  font-family: 'font-grotesk-regular';
  src: url("../font/AlteHaasGroteskRegular.ttf");
}
@font-face {
  font-family: 'font-grotesk-bold';
  src: url("../font/AlteHaasGroteskBold.ttf");
}
/* 共通ページリンク */
.common_page_link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 70px;
}
.common_page_link a {
  width: 100%;
  max-width: 280px;
  height: 70px;
  border: 1px solid #000;
  border-radius: 5px;
  display: flex;
  align-items: center;
  padding-left: 15px;
  letter-spacing: 0.05em;
  background-image: url(../img/common_page/arrow_black.png);
  background-repeat: no-repeat;
  background-size: 36px 36px;
  background-position: right 15px center;
  transition:all .5s ease;
}
.common_page_link a:hover {
  box-shadow: 0 0.5em 0.5em -0.4em;
  transform: translateY(-0.25em);
  transition:all .5s ease;
}
.common_page_link a.active {
  background-image: url(../img/common_page/arrow_white.png);
  background-color: #000;
  color: #fff;
}
@media (min-width: 1px) and (max-width: 1050px) {
  .common_page_link {
    width: 95%;
    margin: 0 auto;
    gap: 8px;
  }
  .common_page_link a {
    height: 48px;
    background-image: none;
    padding: 0;
    justify-content: center;
  }
  .common_page_link a.active {
    background-image: none;
  }
}
/* webフォント読み込み遅延改善 */
html {
  visibility: hidden;
}
html.wf-active {
  visibility: visible;
}
/* スムーススクロール */
html {
  scroll-behavior: smooth;
}