@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
/* ============================================================================
　変数
============================================================================ */
/* ============================================================================
　グローバル
============================================================================ */
html {
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  scroll-behavior: smooth;
  scroll-padding-top: 64px;
}

article {
  padding-block: 0;
}

section {
  padding-block: 32px;
  max-width: 780px;
  margin-inline: auto;
}

img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}
a svg {
  height: 0.7rem;
  width: 0.5rem;
}

sup,
span.taxin {
  font-size: 0.4em;
}

@media (820px >= width) {
  section {
    width: 95%;
  }
}
@media (480px >= width) {
  p {
    font-size: 0.75rem;
  }
}
/* ============================================================================
　共通パーツ
============================================================================ */
.h2 {
  margin-bottom: 56px;
}

h2 {
  color: #333675;
  margin-block: 0;
}

.attention {
  display: block;
  font-size: 0.8rem;
  margin-top: 1rem;
}

.underline {
  text-decoration: underline;
  text-decoration-thickness: 0.2em;
  text-decoration-color: #76BC29;
  text-underline-offset: -0.1em;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

.h2-p {
  text-align: center;
  margin-inline: auto;
}
.h2-p a {
  color: #D46324;
  text-decoration: underline;
}
.h2-p a:hover {
  opacity: 0.6;
}

.card-wrapper {
  display: grid;
  grid-auto-flow: row;
  justify-items: center;
  margin-inline: auto;
  gap: 1rem;
}

.flow__arrow {
  display: flex;
  align-items: center;
  margin-inline: auto;
}
.flow__arrow svg {
  rotate: 90deg;
}

.common-card {
  border-radius: 8px;
}
.common-card hgroup p {
  font-weight: 700;
}
.common-card h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.common-card img {
  height: 100px;
}

.btn-common {
  position: relative;
  width: 390px;
  margin-inline: auto;
  padding-block: 16px;
  font-weight: 700;
  font-size: 1.3rem;
  box-shadow: 0 4px 8px rgba(91, 109, 114, 0.5);
}
.btn-common::after {
  position: absolute;
  right: 1rem;
  top: 40%;
  display: block;
  content: "";
  width: 1rem;
  height: 1rem;
  background-color: #fff;
  -webkit-mask-image: url("../img/ic_baseline-chevron-right.svg");
          mask-image: url("../img/ic_baseline-chevron-right.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.btn-common:hover {
  box-shadow: none;
  transform: translateX(5px) translateY(5px);
}

.btn-common.btn-inquiry:hover::after {
  background-color: #000;
}

.btn-common.btn-document:hover::after {
  background-color: #76BC29;
}

.btn-account {
  background-color: #D46324;
  color: #fff;
}
.btn-account:hover {
  background-color: #fff;
  border: 2px solid #D46324;
  color: #D46324;
}
.btn-account:hover::after {
  background-color: #D46324;
}

.btn-trial {
  background-color: #333675;
}
.btn-trial:hover {
  background-color: #fff;
  border: 2px solid #333675;
  color: #333675;
}
.btn-trial:hover::after {
  background-color: #333675;
}

.btn-common {
  line-height: inherit;
  color: #fff;
}

@media (480px >= width) {
  .btn-common {
    font-size: 1rem;
    width: 100%;
  }
}
/* ============================================================================
　ヘッダー
============================================================================ */
.header-main {
  width: 100vw;
  background-color: #000;
  box-shadow: 0 4px 8px rgba(91, 109, 114, 0.5);
  height: 48px;
  z-index: 50;
}

.header-wrapper {
  width: 90%;
  max-width: 1200px;
  height: 100%;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 200px;
}

.header-logo-wrapper {
  height: 24px;
  margin-block: auto;
}

.right-btns {
  position: relative;
  width: 100%;
}

#nav-btn {
  margin-inline-start: auto;
  background-color: transparent;
  border: none;
  width: 48px;
  height: 100%;
  display: grid;
  align-items: center;
  justify-items: center;
  cursor: pointer;
}
#nav-btn.open .btn-bar {
  background-color: transparent;
}
#nav-btn.open .btn-bar::before {
  top: 0;
  transform: rotate(45deg);
}
#nav-btn.open .btn-bar::after {
  top: 0;
  transform: rotate(-45deg);
}

.btn-bar {
  position: relative;
}

.btn-bar,
.btn-bar::before,
.btn-bar::after {
  display: block;
  background-color: #fff;
  width: 24px;
  height: 4px;
  border-radius: 2px;
  transition: all 0.5s;
}

.btn-bar::before {
  position: absolute;
  content: "";
  top: -10px;
}

.btn-bar::after {
  position: absolute;
  content: "";
  top: 10px;
}

nav {
  position: fixed;
  z-index: 30;
  width: 390px;
  height: 100svh;
  top: 48px;
  right: -100%;
  padding-block: 40px;
  padding-inline: 54px;
  text-align: center;
  transition: all 0.5s;
  background-color: #C8D0D2;
}
nav.open {
  right: 0;
}
nav ul {
  margin-bottom: 40px;
}
nav li {
  margin-bottom: 24px;
}
nav li:last-child {
  margin-bottom: 0;
}
nav li a {
  color: #292854;
  font-weight: 700;
}
nav li a:hover {
  opacity: 0.6;
}
nav li:has(ul) {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2;
}
nav li:has(ul) ul li {
  font-size: 1rem;
  margin-bottom: 0.8rem;
  line-height: 1;
}
nav .btn-common {
  width: 100%;
  max-width: 18rem;
  font-size: 1rem;
  margin-bottom: 24px;
}

.btn-fixed-wrapper {
  position: fixed;
  right: 0;
  top: 70%;
}

.btn-fixed-top {
  position: fixed;
  right: 0;
  bottom: 56px;
  width: 64px;
  height: 64px;
  text-align: center;
  background-color: #C8D0D2;
  border: 2px solid #292854;
  border-right: none;
  border-radius: 8px 0 0 8px;
}
.btn-fixed-top a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #292854;
  font-weight: 700;
}
.btn-fixed-top a img {
  width: 12px;
  height: 14px;
}

.btn-fixed {
  width: 172px;
  height: 72px;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  border-radius: 8px 0 0 8px;
  margin-bottom: 16px;
  border: 2px solid #fff;
  border-right: 0;
  box-shadow: 0 4px 4px rgba(91, 109, 114, 0.5);
}
.btn-fixed:hover {
  border: 2px solid;
  border-right: 0;
}

#fixedBtn {
  opacity: 0;
  transform: translateX(180px);
}
#fixedBtn.UpMove {
  animation: UpAnime 0.3s forwards;
}
#fixedBtn.DownMove {
  animation: DownAnime 0.3s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateX(180px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 1;
    transform: translateX(180px);
  }
}
@media (820px >= width) {
  #fixedBtn {
    transform: translateY(100px);
  }
  @keyframes UpAnime {
    from {
      opacity: 0;
      transform: translateY(100px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes DownAnime {
    from {
      opacity: 1;
      transform: translateY(0);
    }
    to {
      opacity: 1;
      transform: translateY(100px);
    }
  }
}
/* ヘッダーレスポンシブ　------------------------------------------ */
@media (820px >= width) {
  nav {
    width: 100%;
  }
  .btn-fixed-wrapper {
    display: flex;
    flex-direction: row-reverse;
    bottom: 0;
    top: auto;
    right: calc(50% - 180px);
    left: calc(50% - 180px);
    gap: 16px;
  }
  .btn-fixed {
    border-right: 2px solid #fff;
    border-bottom: none;
    box-shadow: -4px 0 4px rgba(91, 109, 114, 0.5);
    border-radius: 8px 8px 0 0;
    margin-bottom: 0;
  }
  .btn-fixed-top {
    bottom: 80px;
  }
}
/* ============================================================================
　FV
============================================================================ */
.fv {
  text-align: center;
  padding-top: 5rem;
}
.fv hgroup p {
  font-weight: 700;
  font-size: 2rem;
  margin-block: 0;
}
.fv hgroup h1 {
  margin-block: 0;
  padding-block: 0;
}

.fv-for {
  width: 15rem;
  margin-inline: auto;
  margin-bottom: 1rem;
  padding: 8px 16px;
  background-color: #5B5DA8;
  color: #fff;
  border-radius: 8px;
}

/* ============================================================================
　検証sim
============================================================================ */
#trial {
  padding: 16px 24px;
  max-width: 780px;
  border: 2px solid #5B5DA8;
  border-radius: 8px;
  margin-inline: auto;
}
#trial p a {
  color: #D46324;
  text-decoration: underline;
}

.trial {
  text-align: center;
}
.trial p {
  margin-top: 2rem;
  margin-bottom: 0;
}

.trial-tags {
  margin-top: 1rem;
}
.trial-tags span {
  display: inline-block;
  margin-inline: auto;
  padding: 4px 8px;
  background-color: #5B5DA8;
  color: #fff;
  border-radius: 8px;
}

.trial-flow h3 {
  text-align: center;
  color: #5B5DA8;
  margin-top: 0;
  margin-bottom: 2rem;
}
.trial-flow .common-card {
  width: 100%;
  background-color: #E5E8E9;
  display: grid;
  grid-template-columns: 100px auto;
  grid-row: span 3;
  gap: 8px;
  grid-template-areas: "flow-img flow-h4" "flow-img flow-p" "flow-img flow-btn";
}
.trial-flow .common-card img {
  grid-area: flow-img;
  justify-self: center;
}
.trial-flow .common-card h4 {
  grid-area: flow-h4;
  font-size: 1.2rem;
  color: #5B5DA8;
}
.trial-flow .common-card p {
  grid-area: flow-p;
  margin-block: 0;
}
.trial-flow .common-card a {
  grid-area: flow-btn;
  justify-self: start;
  font-size: 0.8rem;
  width: 100%;
  max-width: 20rem;
  padding: 4px 8px;
  margin-inline-start: 0;
}
.trial-flow .common-card a::after {
  height: 0.6rem;
  width: 0.6rem;
  top: inherit;
  -webkit-mask-size: contain;
          mask-size: contain;
}

/* 検証simレスポンシブ　------------------------------------------ */
@media (820px >= width) {
  #trial {
    width: 95%;
  }
}
@media (480px >= width) {
  .trial-flow {
    padding-top: 0;
  }
  .trial-flow .common-card {
    grid-template-columns: 1fr;
    grid-template-areas: "flow-img" "flow-h4" "flow-p" "flow-btn";
    grid-template-rows: 80px auto auto auto;
    grid-auto-flow: row;
  }
  .trial-flow .common-card img {
    height: 100%;
  }
}
/* ============================================================================
　資料
============================================================================ */
.knowledge-wrapper {
  padding-bottom: 3rem;
}

.knowledge {
  grid-template-columns: 1fr 1fr;
}

.knowledge-recommend_wrapper h2 {
  background-color: #5B5DA8;
}
.knowledge-recommend_wrapper .knowledge {
  grid-template-columns: 1fr 1fr 1fr;
}
.knowledge-recommend_wrapper h3 {
  height: inherit;
}

.knowledge__h2 {
  margin-top: 0;
  color: #333;
  font-size: 2rem;
}
.knowledge__h2::after {
  background: linear-gradient(to right, #292854 0%, 50%, #78c800 50%);
}

.knowledge__anchorlink_wrapper a::after {
  background-image: url(../img/more_green.svg);
}

@media (820px >= width) {
  .knowledge__anchorlink_wrapper {
    flex-direction: row;
  }
}
@media screen and (max-width: 639px) {
  .knowledge__anchorlink_wrapper {
    flex-direction: column;
  }
  .knowledge {
    grid-template-columns: 1fr;
  }
}
/* ============================================================================
　フッター
============================================================================ */
footer {
  background-color: #000;
  padding: 8px;
}

.footer-contents {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}
.footer-contents a,
.footer-contents p {
  color: #fff;
  font-size: 0.6rem;
}
.footer-contents a::after {
  display: inline-block;
  content: url(/assets/img/head_icon_white.svg);
  width: 0.6rem;
  height: 0.6rem;
  margin-left: 4px;
}/*# sourceMappingURL=style.css.map */