@charset "UTF-8";
:root {
  --viewport: 1920;
}
@media (max-width: 1280px) {
  :root {
    --viewport: 1280;
  }
}
@media (max-width: 768px) {
  :root {
    --viewport: 768;
  }
}

html {
  scroll-behavior: initial;
  width: 100%;
  font-size: 0.83vw;
}
@media (max-width: 767px) {
  html {
    font-size: 16px;
  }
}

body {
  letter-spacing: 1.5px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium",
    "游ゴシック", "Yu Gothic", sans-serif;
  color: #222a35;
  transform-origin: 0 0;
  margin: 0;
  overflow-x: hidden;
}
@media (max-width: 767px) {
  body {
    width: 100%;
    transform: scale(1) !important;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

.mv {
  overflow: hidden;
  height: calc(100vh - 5.5rem);
}
@media (max-width: 767px) {
  .mv {
    height: 100vh;
  }
}

.appraisal-sv {
  background-image: url(../img/appraisal/sv.png);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 35rem;
}
@media (max-width: 767px) {
  .appraisal-sv {
    background-image: url(../img/appraisal/sv-sp.png);
    background-position: center bottom;
    height: 19.625rem;
  }
}

.hb {
  position: relative;
}
.hb::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 0%;
  bottom: -1px;
  left: 0;
  border-top: 2px solid black;
  transition: all 0.3s;
}
.hb:hover::after {
  width: 100%;
}

header {
  transition: all 0.5s;
  transform: translateY(0);
}
header.moved {
  transform: translateY(-100%);
}

.overflow-y-scroll::-webkit-scrollbar {
  width: 10px;
}

.overflow-y-scroll::-webkit-scrollbar-thumb {
  background-color: gray;
}

.slide-area span {
  padding: 2px 0 0 2px;
}

.scroll {
  font-family: TazuganeGothicStdN-Book,Noto Sans JP,sans-serif;
  letter-spacing: .02em;
  font-weight: bold;
  color: #000;
  font-size: 0.75rem;
  height: 4.5rem;
  left: 0;
  margin: auto auto 0;
  position: absolute;
  right: 0;
  text-align: center;
  top: -4.5rem;
  width: 5rem;
  z-index: 10;
  bottom: 0;
}

.sv .scroll {
  color: #fff;
  font-size: 0.75rem;
  height: 4.5rem;
  left: 0;
  margin: auto auto 0;
  position: absolute;
  right: 0;
  text-align: center;
  top: -4.5rem;
  width: 5rem;
  z-index: 10;
  bottom: 0;
}

.scroll:after, .scroll:before {
  content: "";
  display: block;
  height: 1.4375rem;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  width: 0.0625rem
}

.scroll .anim-bar:before {
  background: #cd001a;
  bottom: 1.7rem;
}

.scroll .anim-bar:after {
  background: #000;
  bottom: 0px;
}

.sv .scroll .anim-bar:after {
  background: #fff;
  bottom: 0
}

 .scroll .anim-bar:after, .scroll .anim-bar:before {
  content: "";
  display: block;
  height: 1.7rem;
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  width: 1rem;
}

@-webkit-keyframes anim-scroll-bar {
  0% {
      height: 0
  }

  50% {
      height: 0
  }

  75% {
      height: 3.5rem;;
      margin-top: 0
  }

  to {
      height: 0;
      margin-top: 3.5rem;;
  }
}

@keyframes anim-scroll-bar {
  0% {
      height: 0
  }

  50% {
      height: 0
  }

  75% {
      height: 3.5rem;;
      margin-top: 0
  }

  to {
      height: 0;
      margin-top: 3.5rem;;
  }
}


@keyframes anim-scroll-bar {
  0% {
      height: 0
  }

  50% {
      height: 0
  }

  75% {
      height: 3.5rem;;
      margin-top: 0
  }

  to {
      height: 0;
      margin-top: 3.5rem;;
  }
}

.scroll .anim-bar {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: anim-scroll-bar;
  animation-name: anim-scroll-bar;
  display: block;
  height: 3.5rem;;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  width: 0.1rem;
}

.pp section {
  margin-bottom: 20px;
}

.pp h3 {
  margin: 1.5rem 0;
}

.pp ol {
  margin-left: 3rem;
}

.pp ol li {
  margin-bottom: 1rem;
  padding: 0;
  list-style: decimal;
  text-indent: 0.75rem;
}

.pp ul {
  margin-top: 1rem;
}

.pp ol li ul li {
  list-style: unset;
  counter-increment: cnt;
}

.pp ul li:before {
  display: marker;
  content: "("counter(cnt) ") ";
}

.valuemap-sv {
  background-image: url(../img/valuemap/sv.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.sv-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.valuemap-button-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10rem;
  height: 100%;
  width: 100%;
}

@media (max-width: 767px) {
  .valuemap-button-wrap {
    display: block;
    height: auto;
  }
}

.valuemap-button-wrap a {
    display: inline-block;
    width: 16rem;
    height: calc(16rem * 0.68);
    color: white;
    background-color: #44546A;
    border-radius: 999px;
    text-align: center;
    padding: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 0.05em;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1rem;
    position: relative;
}

@media (max-width: 767px) {
  .valuemap-button-wrap a {
    width: 8rem;
    height: calc(8rem * 0.68);
    gap: 0.5rem;
    margin: 10px auto 0;
   
  }
}

.valuemap-button-wrap a .en {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
}
.valuemap-button-wrap a .ja {
  font-size: 1.2rem;
  line-height: 1;
}
.valuemap-button-wrap a::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 1.875rem;
  height: 1.875rem;
  background-image: url(../img/valuemap/arrowsv.svg);
  background-size: contain;
  background-repeat: no-repeat;
  bottom: 3px;
  left: 0;
  right: 0;
  margin: auto;

}

@media (max-width: 767px) {
  .valuemap-button-wrap a .en {
    font-size: 1.2rem;
  }
  .valuemap-button-wrap a .ja {
    font-size: 0.8rem;
  }
  .valuemap-button-wrap a::before {
    width:15px;
    height:15px;
  
  }
}

.opbtn {
  width: 60px;
}
.hidebtn {
  width: 60px;
}
.sp-nav {
  z-index: 100 !important;
}