@charset "utf-8";

*,
*::before,
*::after {
  box-sizing: border-box;
}
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}
ul,
ol {
  list-style: none;
  padding: 0;
}
a {
  color: inherit;
  text-decoration: inherit;
  text-decoration-skip-ink: auto;
}
a img {
  opacity: 1;
  transition: 0.4s;
}
a:hover img {
  opacity: 0.7;
}
img,
svg,
video,
iframe {
  vertical-align: middle;
}
img,
video {
  max-width: 100%;
}
img[height] {
  height: auto;
}
input,
button,
textarea,
select {
  font: inherit;
}
button {
  border: 0;
  padding: 0;
  background: none;
}
small {
  font-size: inherit;
}
sub {
  vertical-align: baseline;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html {
  scroll-behavior: auto;
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}
body {
  overscroll-behavior: auto;
  color: #070e29;
  font-size: 1.6em;
  line-height: 2;
  font-family:
    "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", "HiraKakuProN-W3",
    sans-serif;
  font-weight: 500;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body.is-fixed {
  position: fixed;
  width: 100%;
}
@media (min-width: 768px) {
  .v-mb {
    display: none;
  }
}
@media (max-width: 767px) {
  .v-dt {
    display: none;
  }
  body {
    font-size: 1.4em;
    line-height: 1.8;
  }
}

/**
 * prefix について
 * c- css だけでことたるコンポーネント (使いまわせる)
 * l- ページレイアウト (z-index の基礎として)
 * o- js も伴うコンポーネント (o-modal/o-tabs など)
 * p- 固有のブロックスタイル (主に main/section に附帯)
 * a- 唯一のスタイル (≡ Menu とか Scroll とか)
 * no prefix コンポーネント内の要素 (title/lead/text/photo など)
 * js- js で拾うためだけの class (js-modalTrigger など)
 */
/**
 * mediaquery について
 * common style (desktop/mobile 共通の style)
 * @media (min-width: 481px) {} mobile には適用したくない style
 * @media (min-width: 768px) {} desktop だけの style
 * @media (min-width: 1200px) {} wide desktop style
 * @media (min-width: 1199px) {} wide ~ desktop 補完 style
 * @media (max-width: 767px) {} desktop には適用したくない style
 * @media (max-width: 480px) {} mobile だけの style
 * @media (max-width: 360px) {} small mobile style
 * MEMO: 
 * -------------------------------------------------- */
.l-header {
  z-index: 3;
}
.l-menu {
  z-index: 4;
}
.l-main {
  z-index: 1;
}
.l-footer {
  z-index: 2;
}

/**
 * header
 * ---------------------------------------- */
.l-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
.l-header .logo {
  line-height: 0;
}
.l-header .logo a[aria-current="page"] {
  pointer-events: none;
}
@media (min-width: 768px) {
  .l-header {
    height: 96px;
    padding: 0 calc(100vw / 12);
  }
  .l-header .logo {
    min-width: 119px;
  }
  .l-header .menu {
    display: none;
  }
}
@media (min-width: 1200px) {
  .l-header {
    padding: 0 100px;
  }
}
@media (max-width: 767px) {
  .l-header {
    height: 72px;
    padding: 0 calc(20vw / 3.75);
  }
  .l-header .logo {
    width: 70px;
  }
  .l-header .menu {
    z-index: 5;
    position: relative;
    width: 40px;
    height: 40px;
    margin-right: calc(-10vw / 3.75);
    font-size: 1.1rem;
    line-height: 1.2;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  .l-header .menu .label {
    position: absolute;
    top: calc(50% - 0.5em);
    right: 40px;
  }
  .l-header .menu svg {
    position: absolute;
    top: 50%;
    left: 10px;
    fill: none;
    stroke: currentcolor;
  }
  .l-header .menu .b1 {
    transform: translateY(-7px);
  }
  .l-header .menu .b3 {
    transform: translateY(7px);
  }
  /* effect */
  .l-header .menu.is-active .b1 {
    transform: rotate(45deg);
  }
  .l-header .menu.is-active .b2 {
    opacity: 0;
  }
  .l-header .menu.is-active .b3 {
    transform: rotate(-45deg);
  }
  .l-header .menu.is-anim .b2 {
    transition: opacity 0s 0.24s;
  }
  .l-header .menu.is-anim .b1,
  .l-header .menu.is-anim .b3 {
    animation: 0.6s cubic-bezier(0.2, 1, 0.7, 1);
  }
  .l-header .menu.is-anim.is-active .b1 {
    animation-name: open-b1;
  }
  .l-header .menu.is-anim.is-active .b3 {
    animation-name: open-b3;
  }
  .l-header .menu.is-anim:not(.is-active) .b1 {
    animation-name: close-b1;
  }
  .l-header .menu.is-anim:not(.is-active) .b3 {
    animation-name: close-b3;
  }
  @keyframes open-b1 {
    from {
      transform: translateY(-7px);
    }
    40% {
      transform: none;
    }
    to {
      transform: rotate(45deg);
    }
  }
  @keyframes open-b3 {
    from {
      transform: translateY(7px);
    }
    40% {
      transform: none;
    }
    to {
      transform: rotate(-45deg);
    }
  }
  @keyframes close-b1 {
    from {
      transform: rotate(45deg);
    }
    40% {
      transform: none;
    }
    to {
      transform: translateY(-7px);
    }
  }
  @keyframes close-b3 {
    from {
      transform: rotate(-45deg);
    }
    40% {
      transform: none;
    }
    to {
      transform: translateY(7px);
    }
  }
}

/**
 * main
 * ---------------------------------------- */
.l-main {
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .l-main {
    padding: 96px calc(100vw / 12) 0;
  }
}
@media (min-width: 1200px) {
  .l-main {
    padding: 96px 100px 0;
  }
}
@media (max-width: 767px) {
  .l-main {
    padding: 72px calc(20vw / 3.75) 0;
  }
}

/* :::::: title :::::: */
.c-title {
  position: relative;
  padding-bottom: 0.4em;
  font-size: 2.4rem;
  line-height: 1;
}
.c-title .sub {
  display: inline-block;
}
.c-title .main {
  position: absolute;
  left: 0.1em;
  bottom: 0;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .c-title {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .c-title {
    text-align: center;
    font-size: 2rem;
  }
  .c-title .sub img {
    width: auto;
    max-height: 60px;
  }
  .c-title .main {
    width: 100%;
  }
}
/* inview */
.c-title.js-inview .sub {
  overflow: hidden;
}
.c-title.js-inview:not(.is-inview) .sub img {
  transform: translateY(100%);
}
.c-title.js-inview:not(.is-inview) .main {
  opacity: 0;
  transform: translateY(24px);
}
.c-title.is-anim .sub img {
  transition: transform 0.6s cubic-bezier(0.2, 1, 0.7, 1);
}
.c-title.is-anim .main {
  transition:
    opacity 0.6s,
    transform 0.6s cubic-bezier(0.2, 1, 0.7, 1);
  transition-delay: 0.2s;
}

/* :::::: lead :::::: */
.c-lead {
  text-align: left;
}
.c-lead + .c-lead {
  margin-top: 1em;
}

/* :::::: button :::::: */
.c-button {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 0;
  position: relative;
  max-width: 380px;
  height: 62px;
  border-radius: 62px;
  color: #fff;
  font-weight: 700;
}
.c-button .bg {
  z-index: -1;
  position: absolute;
  overflow: hidden;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 1px solid #1f2c5c;
  border-radius: 62px;
  background: #1f2c5c;
}
.c-button .ico {
  position: absolute;
  top: calc(50% - 10px);
  right: 30px;
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentcolor;
}
.c-button .arr {
  position: absolute;
  top: calc(50% - 4px);
  right: 30px;
  width: 18px;
  height: 9px;
  fill: none;
  stroke: currentcolor;
}

/* 資料請求はこちら */
.c-button.-smeta .bg {
  border: 1px solid #f37d58;
  background: #f37d58;
}

.c-button.-violet .bg {
  border: 1px solid #4b4be2;
  background: #4b4be2;
}
/* READ MORE */
.c-button.-more {
  overflow: hidden;
  width: 100%;
  max-width: 240px;
  height: 48px;
  margin: 48px auto 0;
  color: #1f2c5c;
  font-weight: 500;
  background: #fff;
}
.c-button.-more .bg {
  border-width: 2px;
  background: #fff;
}
.c-button.-more::after {
  content: "";
  position: absolute;
  top: calc(50% - 6px);
  right: 20px;
  width: 12px;
  height: 12px;
  background: url(../img/more.svg) center / cover no-repeat;
}
.c-button.-more span {
  line-height: 1;
}
.c-button.-more .close {
  position: absolute;
  top: calc(50% - 0.5em);
  left: 0;
  width: 100%;
}
@media (hover: hover) {
  .c-button .bg::after {
    content: "";
    position: absolute;
    top: 0;
    right: -30px;
    bottom: 0;
    left: -30px;
    background: #f5f7ff;
    transform: skewX(-30deg) translateX(-4%);
  }
  .c-button.-smeta .bg::after {
    background: #fff;
  }
  .c-button.-violet .bg::after {
    background: #fff;
  }
  .c-button.is-hov {
    color: #1f2c5c;
  }
  .c-button.-smeta.is-hov {
    color: #f37d58;
  }
  .c-button.-violet.is-hov {
    color: #4b4be2;
  }
  .c-button.is-hov .arr {
    transform: translateX(12px);
  }
  .c-button:not(.is-hov) .bg::after {
    transform: skewX(-30deg) translateX(-104%);
  }
  .c-button:not(.is-hov).is-hovani .bg::after {
    transform: skewX(-30deg) translateX(104%);
  }
  .c-button.is-hovani {
    transition: color 0.4s cubic-bezier(0.2, 1, 0.7, 1);
  }
  .c-button.is-hovani .arr,
  .c-button.is-hovani .bg::after {
    transition: transform 0.4s cubic-bezier(0.2, 1, 0.7, 1);
  }
}
@media (max-width: 767px) {
  .c-button {
    height: 56px;
  }
}
/* inview */
.c-button.js-inview:not(.is-inview) {
  opacity: 0;
  transform: scale(0.2);
}
.c-button.js-inview.is-anim {
  transition:
    opacity 0.6s,
    transform 0.6s cubic-bezier(0.2, 1.5, 0.4, 1);
}

/* :::::: link :::::: */
.c-link {
  display: block;
  width: 100%;
  text-align: center;
}
.c-link .arr {
  display: inline-block;
  position: relative;
  top: -0.2em;
  width: 18px;
  height: 9px;
  margin-left: 0.5em;
  fill: none;
  stroke: currentcolor;
}
@media (hover: hover) {
  .c-link:hover .arr {
    transform: translateX(12px);
  }
  .c-link .arr {
    transition: transform 0.4s cubic-bezier(0.2, 1, 0.7, 1);
  }
}

/* :::::: login :::::: */
.c-login {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 0;
  position: relative;
  width: 100%;
  max-width: 380px;
  height: 56px;
  border: 3px solid currentcolor;
  border-radius: 62px;
  font-weight: 700;
  background: #fff;
}
.c-login::before {
  content: "";
  display: inline-block;
  position: relative;
  top: -0.1em;
  width: 22px;
  height: 28px;
  margin-right: 0.8em;
  vertical-align: middle;
  background: url(../img/lock.svg) center / cover no-repeat;
}
.c-login.-comingsoon {
  pointer-events: none;
  opacity: 0.5;
}
@media (hover: hover) {
  .c-login {
    overflow: hidden;
  }
  .c-login .bg::after {
    content: "";
    z-index: -1;
    position: absolute;
    top: 0;
    right: -30px;
    bottom: 0;
    left: -30px;
    background: #f5f7ff;
    transform: skewX(-30deg) translateX(-4%);
  }
  .c-login.is-hov {
    color: #1f2c5c;
  }
  .c-login.is-hov .arr {
    transform: translateX(12px);
  }
  .c-login:not(.is-hov) .bg::after {
    transform: skewX(-30deg) translateX(-104%);
  }
  .c-login:not(.is-hov).is-hovani .bg::after {
    transform: skewX(-30deg) translateX(104%);
  }
  .c-login.is-hovani {
    transition: color 0.4s cubic-bezier(0.2, 1, 0.7, 1);
  }
  .c-login.is-hovani .bg::after {
    transition: transform 0.4s cubic-bezier(0.2, 1, 0.7, 1);
  }
}

/* :::::: text link :::::: */
.c-textlink {
  padding: 0.1em;
  background: linear-gradient(currentcolor, currentcolor) left bottom / 100% 1px
    no-repeat;
}
@media (hover: hover) {
  .c-textlink {
    transition: background-size 0.4s cubic-bezier(0.2, 1, 0.7, 1);
  }
  .c-textlink:hover {
    background-position: right bottom;
    background-size: 0 1px;
  }
}

/* :::::: loader :::::: */
.c-loader .svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #1f2c5c;
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 230 230;
  animation:
    loader 1.4s infinite cubic-bezier(0.4, 0, 0.3, 1),
    loading 1.2s infinite linear;
}
@keyframes loader {
  from {
    stroke-dashoffset: 230;
  }
  to {
    stroke-dashoffset: -230;
  }
}
@keyframes loading {
  from {
    transform: none;
  }
  to {
    transform: rotate(360deg);
  }
}

/* :::::: VIEW ALL :::::: */
.c-viewall {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #1f2c5c;
}
.c-viewall .ico {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  width: 71px;
  height: 71px;
  margin-left: 1em;
  border: 1px solid currentcolor;
  border-radius: 71px;
}
.c-viewall .arr {
  width: 18px;
  height: 9px;
  fill: none;
  stroke: currentcolor;
}
.c-viewall .arr.a2 {
  display: none;
}
@media (hover: hover) {
  .c-viewall .ico::after {
    content: "";
    z-index: -1;
    position: absolute;
    top: -1px;
    left: -1px;
    width: 140%;
    height: inherit;
    background: #1f2c5c;
    transform: skewX(-30deg) translateX(-8%);
  }
  .c-viewall .arr.a2 {
    display: unset;
    position: absolute;
    top: calc(50% - 4.5px);
    left: calc(50% - 9px);
    stroke: #fff;
  }
  .c-viewall:not(.is-hov) .ico::after {
    transform: skewX(-30deg) translateX(-108%);
  }
  .c-viewall:not(.is-hov).is-hovani .ico::after {
    transform: skewX(-30deg) translateX(108%);
  }
  .c-viewall:not(.is-hov) .arr.a2,
  .c-viewall.is-hov:not(.is-hovani) .arr.a1 {
    transform: translateX(-38px);
  }
  .c-viewall.is-hov.is-hovani .arr.a1,
  .c-viewall:not(.is-hov).is-hovani .arr.a2 {
    transform: translateX(44px);
  }
  .c-viewall.is-hovani .arr,
  .c-viewall.is-hovani .ico::after {
    transition: transform 0.4s cubic-bezier(0.2, 1, 0.7, 1);
  }
}
/* inview */
.c-viewall.js-inview:not(.is-inview) {
  opacity: 0;
  transform: scale(0.2);
}
.c-viewall.js-inview.is-anim {
  transition:
    opacity 0.6s,
    transform 0.6s cubic-bezier(0.2, 1.5, 0.4, 1);
}

/* :::::: lineup :::::: */
.c-lineup .image img {
  width: 100%;
  border-radius: 5px;
}
.c-lineup .text {
  margin-top: 20px;
  text-align: left;
}
.c-lineup .text {
  margin-top: 24px;
}
.c-lineup .text dd {
  margin-top: 12px;
}
.c-lineup .text dd + dd {
  margin-top: 24px;
}
.c-lineup .c-button {
  margin: 20px auto 0;
}
.c-lineup .c-button {
  margin: 0 auto;
}
.c-lineup .login {
  text-align: center;
}
.c-lineup .item.-comingsoon .image {
  position: relative;
}
.c-lineup .item.-comingsoon .image img:first-child {
  opacity: 0.25;
}
.c-lineup .item.-comingsoon .soon {
  position: absolute;
  top: calc(50% - 10px);
  left: calc(50% - 84px);
  width: 168px;
  height: 20px;
}
.c-lineup .item.-comingsoon .c-button {
  pointer-events: none;
  opacity: 0.4;
}
@media (min-width: 768px) {
  .c-lineup {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .c-lineup .item {
    flex-basis: calc(50% - 40vw / 12);
    margin-bottom: 30px;
  }
  .c-lineup .item:nth-child(n + 3) {
    margin-top: 90px;
  }
  .c-lineup._3row .item:nth-child(n + 3) {
    margin-top: 0px;
  }
  .c-lineup._3row .item.is-anim a img {
    opacity: 1;
    transition: 0.4s;
  }
  .c-lineup._3row .item.is-anim a:hover img {
    opacity: 0.6;
  }
  .c-lineup._3row .item a:hover {
    color: #344789;
  }
}
@media (min-width: 1200px) {
  .c-lineup .item {
    flex-basis: calc(50% - 40px);
  }
  .c-lineup._3row .item {
    flex-basis: calc(100% / 4 - 20px);
  }
}
@media (max-width: 767px) {
  .c-lineup .item:nth-child(n + 2) {
    margin-top: 60px;
  }
  .c-lineup .c-button {
    margin-top: 24px;
  }
}
/* inview */
.c-lineup .image.js-inview {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}
.c-lineup .image.js-inview::after {
  content: "";
  position: absolute;
  top: 0;
  right: -80px;
  bottom: 0;
  left: -80px;
  background: #dce0f2;
}
.c-lineup .item.-comingsoon .image.js-inview:not(.is-inview) img:first-child,
.c-lineup .image.js-inview:not(.is-inview) img {
  opacity: 0;
}
.c-lineup .image.js-inview:not(.is-inview)::after {
  transform: skewX(-30deg) translateX(-100%);
}
.c-lineup .image.is-anim img {
  transition: opacity 0.6s 0.6s;
}
.c-lineup .image.is-anim::after {
  animation: slice 1s cubic-bezier(0.2, 1, 0.7, 1) both;
}
@keyframes slice {
  from {
    transform: skewX(-30deg) translateX(-100%);
  }
  42%,
  44% {
    transform: skewX(-30deg);
  }
  to {
    transform: skewX(-30deg) translateX(100%);
  }
}

/* :::::: variation :::::: */
.products_list .tagline,
.products_list .title {
  display: block;
}
.products_list .title {
  padding: 4px 0 8px;
}
.products_list .text dt {
  font-weight: 700;
  text-align: center;
}
@media (min-width: 768px) {
  .products_list .text {
    padding: 0 calc(40vw / 12);
  }
  .products_list .item,
  .products_list .text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .products_list .text,
  .products_list .text dd:first-of-type {
    flex-grow: 1;
  }
}
@media (min-width: 1200px) {
  .products_list .text {
    padding: 0 40px;
  }
}
/* inview */
.products_list .text.js-inview:not(.is-inview) dt,
.products_list .text.js-inview:not(.is-inview) dd {
  opacity: 0;
  transform: translateY(24px);
}
.products_list .text.js-inview:not(.is-inview) .btn {
  transform: scale(0.2);
}
.products_list .image.is-anim {
  transition:
    opacity 0.6s,
    transform 0.6s cubic-bezier(0.2, 1, 0.7, 1);
}
.products_list .text.is-anim dt,
.products_list .text.is-anim dd {
  transition:
    opacity 0.6s,
    transform 0.6s cubic-bezier(0.2, 1, 0.7, 1);
}
.products_list .text.is-anim .btn {
  transition-timing-function: cubic-bezier(0.2, 1.5, 0.4, 1);
}
.products_list .text.is-anim dt {
  transition-delay: 0.1s;
}
.products_list .text.is-anim dd:nth-of-type(1) {
  transition-delay: 0.2s;
}
.products_list .text.is-anim dd:nth-of-type(2) {
  transition-delay: 0.3s;
}
.products_list .text.is-anim dd:nth-of-type(3) {
  transition-delay: 0.4s;
}
.products_list .text.is-anim dd:nth-of-type(4) {
  transition-delay: 0.5s;
}

/* :::::: MEDIA :::::: */
.media_list {
  position: relative;
  padding-bottom: 80px;
}
.media_list img {
  width: 100%;
}
.media_list::before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 50px;
  right: calc(50% - 50vw);
  left: calc(50% - 50vw);
  bottom: 0;
  background: #f5f7ff;
}
.hasScrollbar .media_list::before {
  right: calc(50% - 50vw + var(--scroll-bar-width) / 2);
  left: calc(50% - 50vw + var(--scroll-bar-width) / 2);
}
@media (hover: hover) {
  .media_list a {
    display: block;
    overflow: hidden;
  }
  .media_list a:hover img {
    transform: scale(1.08);
  }
  .media_list a img {
    transition: transform 0.4s cubic-bezier(0.2, 1, 0.7, 1);
  }
}
@media (min-width: 481px) {
  .media_list {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (min-width: 481px) and (max-width: 767px) {
  .media_list li {
    flex-basis: calc(50% - 30px / 2);
  }
  .media_list li:nth-child(2n) {
    margin-left: 30px;
  }
  .media_list li:nth-child(n + 3) {
    margin-top: 30px;
  }
}
@media (min-width: 768px) {
  .media_list {
    margin-top: 60px;
  }
  .media_list li {
    flex-basis: calc(33.333% - 96px / 3);
  }
  .media_list li:not(:nth-child(3n + 1)) {
    margin-left: 48px;
  }
  .media_list li:nth-child(n + 4) {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .media_list {
    margin-top: 60px;
  }
}
@media (max-width: 480px) {
  .media_list li:nth-child(n + 2) {
    margin-top: 30px;
  }
}
/* inview */
.media_list li.js-inview:not(.is-inview) {
  opacity: 0;
  transform: translateY(24px);
}
.media_list li.is-anim {
  transition:
    opacity 0.6s,
    transform 0.6s cubic-bezier(0.2, 1, 0.7, 1);
}
@media (min-width: 768px) {
  .media_list li.is-anim:nth-child(3n + 1) {
    transition-delay: 0.1s;
  }
  .media_list li.is-anim:nth-child(3n + 2) {
    transition-delay: 0.2s;
  }
  .media_list li.is-anim:nth-child(3n) {
    transition-delay: 0.3s;
  }
}
@media (max-width: 767px) and (min-width: 481px) {
  .media_list li.is-anim:nth-child(2n + 1) {
    transition-delay: 0.1s;
  }
  .media_list li.is-anim:nth-child(2n) {
    transition-delay: 0.2s;
  }
}

/**
 * 部門別
 * ---------------------------------------- */
.p-package-wrapper {
  padding-bottom: 80px;
}
.p-package {
  padding-top: 80px;
}

@media (min-width: 768px) {
  .p-package-wrapper .p-package {
    padding-top: 0;
    margin-right: calc(-80vw / 12);
    margin-left: calc(-80vw / 12);
  }
}
@media (min-width: 1200px) {
  .p-package-wrapper .p-package {
    padding-top: 0;
    margin-right: -80px;
    margin-left: -80px;
  }
}

.p-package .item_list {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}
.p-package .item_list .item {
  border-radius: 16px;
  text-align: center;
  background: #f5f7ff;
  padding: 30px;
  width: calc(100% / 3);
  box-sizing: border-box;
}
.p-package-wrapper .p-package .item_list .item {
  background: #fff;
}
@media (max-width: 768px) {
  .p-package .item_list {
    flex-direction: column;
  }
  .p-package .item_list .item {
    padding: 16px;
    max-width: 100%;
    width: 100%;
  }
}
.p-package .item_list .item_plan {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #ccc;
}
.p-package .item_list .item .item_title {
  color: #178dc6;
  font-size: 2rem;
  line-height: 1.4;
  margin-bottom: 8px;
}
.p-package .item_list .item .desc {
  font-size: 1.5rem;
  line-height: 1.6;
}
.p-package .item_list .item .item_plan_title {
  font-size: 1.6rem;
  line-height: 1.2;
}
.p-package .item_list .item .price {
  font-weight: bold;
  font-size: 1.8rem;
  letter-spacing: 1px;
}
.p-package .item_list .item .price .currency {
  font-size: 1.1rem;
}
.p-package .item_list .item .btn_box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}
.p-package .item_list .item .btn_box .c-button {
  height: 44px;
  max-width: 100%;
}

/**
 * 料金 / プラン比較
 * ---------------------------------------- */
.p-fee,
.p-compare {
  padding-top: 80px;
}
.product_title {
  font-size: 3.6rem;
  line-height: 1.6;
  text-align: center;
}
.product_subtitle {
  font-size: 2.4rem;
}
@media (max-width: 1000px) {
  .product_title {
    font-size: 3rem;
  }
  .product_subtitle {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .product_title {
    font-size: 2.4rem;
  }
  .product_subtitle {
    font-size: 1.8rem;
  }
}
/* inview */
.product_title .l {
  display: inline-block;
  position: relative;
  transform-origin: left center;
}
.product_title .l::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform-origin: right center;
  background: #fff;
}
.product_title.js-inview:not(.is-inview) .l,
.product_title.js-inview.is-inview .l::after {
  transform: scaleX(0);
}
.product_title.is-anim .l,
.product_title.is-anim .l::after {
  transition: transform 0.6s cubic-bezier(0.2, 1, 0.7, 1);
}
.product_title.is-anim .l {
  transition-delay: 0.1s;
}
.product_title.is-anim .l::after {
  transition-delay: 0.6s;
}

.tab-group {
  display: flex;
  justify-content: center;
  /* width: 80%; */
  width: 100%;
  margin: auto;
}
.tab {
  flex-grow: 1;
  list-style: none;
  text-align: center;
  cursor: pointer;
  padding-bottom: 30px;
  padding: 0 10px 30px;
}
.panel-group {
  border-top: none;
  /* width: 80%; */
  width: 100%;
  margin: auto;
}
.panel {
  display: none;
}
.tab.is-active {
  font-weight: bold;
  transition: all 0.2s ease-out;
}
.panel.is-show {
  display: block;
}

.fee_nav li.is-active {
  position: relative;
}
.fee_nav li.is-active .panel_arrow {
  position: absolute;
  left: calc(50% - 30px);
  bottom: 0;
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 30px solid #edf0fa;
  z-index: -1;
}
.fee_nav li.is-active .panel_arrow_inner {
  width: 0;
  height: 0;
  border-left: 30px solid #edf0fa;
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
}
.panel_inner {
  background: #edf0fa;
  padding: 40px;
}
.panel_inner .inner_content {
  margin: auto;
  max-width: 480px;
}

.fee_item {
  color: #1f2c5d;
  margin-bottom: 20px;
}
.fee_title {
  font-size: 2.4rem;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 15px;
}
.title_invisual {
  color: #edf0fa;
}
.fee_amount_box {
  border-radius: 5px;
  overflow: hidden;
}
.fee_amount_title {
  background: #1f2c5d;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  padding: 20px 0;
}
.fee_item_cloudsales .fee_amount_title {
  background: #4b5b95;
}
.fee_amount_price {
  padding: 30px 0;
  font-size: 3.6rem;
  font-weight: bold;
  background: #fff;
}
.fee_panel .notice_box {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.fee_panel .notice_box p {
  margin: 0 0 20px;
}
.notice_box_tax {
  font-size: 1.2rem;
  margin-bottom: 20px;
  text-align: right;
  /* width: 80%; */
  width: 100%;
  margin: auto;
}
.fee_panel .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
}
.fee_panel .fee_item {
  text-align: center;
  position: relative;
}
.fee_board {
  margin-top: 40px;
}
.fee_board .panel_inner {
  padding: 0;
  margin-top: 40px;
  background: transparent;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
}
.fee_plus:before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background: url(../img/plus.svg) center / cover no-repeat;
}
@media (min-width: 768px) {
  .fee_plus:before {
    top: calc(50% - 15px);
    left: calc(100% + 4px);
  }
  .fee_title {
    font-size: 2rem;
    min-height: 56px;
  }
  .fee_amount_title {
    font-size: 1.6rem;
  }
  .fee_amount_price {
    font-size: 2.4rem;
    padding: 20px 0;
  }
}
@media (min-width: 1200px) {
  .fee_plus:before {
    left: calc(100% + 14px);
  }
}
@media (max-width: 767px) {
  .fee_board .panel_inner,
  .notice_box_tax {
    width: 100%;
  }
  .title_invisual {
    display: none;
  }
  .fee_plus:before {
    bottom: -46px;
    right: calc(50% - 13px);
    width: 25px;
    height: 25px;
  }
  .fee_title {
    font-size: 2rem;
  }
  .fee_amount_title {
    font-size: 1.6rem;
  }
  .fee_amount_price {
    font-size: 2.4rem;
    padding: 20px 0;
  }
}
@media (max-width: 480px) {
  .p-feature1 .smeta_column .text dl {
    font-size: 1rem;
  }
  .p-cloud3_figure {
    font-size: calc(12vw / 3.75);
  }
  .panel_inner {
    padding: 30px 15px;
  }
  .tab-group,
  .panel-group {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .fee_board {
    margin-right: calc(-80vw / 12);
    margin-left: calc(-80vw / 12);
  }
}
@media (min-width: 1200px) {
  .fee_board {
    margin-right: -80px;
    margin-left: -80px;
  }
}
.compare_table {
  margin: 40px auto;
  text-align: center;
  width: 100%;
  border-collapse: collapse;
}
.compare_table tr {
  border: none;
  box-sizing: border-box;
}
.compare_table tr th {
  width: 20%;
  padding: 20px 10px;
  border: none;
}
.compare_table tr td {
  width: 20%;
  padding: 20px 10px;
  border: none;
  border-right: 1px solid #1f2c5d;
}
.compare_table tr td .small {
  font-size: 1.2rem;
}
.compare_table tr td.subtitle,
.compare_table tr:nth-child(even) td.subtitle {
  padding: 10px;
  color: #fff;
  font-weight: bold;
  text-align: center !important;
  background: #1f2c5c;
}
.compare_table tbody tr td:last-child {
  border-right: none;
}
.compare_table tbody tr:nth-child(even) td {
  background: #f5f7ff;
}
.compare_table tbody tr td:first-child {
}
.p-compare .notice_box_table {
  display: none;
}
@media (min-width: 768px) {
  .fee_panel .fee_item {
    flex-basis: calc(100% / 2 - 40vw / 12);
  }
  .fee_panel.tab-ai .fee_item {
    flex-basis: calc(50% - 40vw / 12);
  }
}
@media (min-width: 1200px) {
  .fee_panel .fee_item {
    flex-basis: calc(100% / 2 - 16px);
    flex-basis: 100%;
  }
  .fee_panel.tab-ai .fee_item {
    flex-basis: calc(50% - 16px);
    flex-basis: 100%;
  }
}
@media (max-width: 767px) {
  .fee_panel .fee_item,
  .fee_panel.tab-ai .fee_item {
    width: calc(335vw / 3.75);
    margin-bottom: 70px;
  }
  .fee_panel .fee_item:last-child {
    margin-bottom: 20px;
  }
  .fee_panel.tab-ai .fee_item:last-child {
    margin-bottom: 20px;
  }
  .p-compare .notice_box_table {
    display: block;
    font-size: 1.2rem;
    margin: 10px 0;
    text-align: center;
  }
  .wrap_scroll_table {
    overflow-x: scroll;
    margin: 0 auto;
  }
  .compare_table {
    margin-top: 10px;
    width: 800px;
    margin: 0px auto;
  }
}

.p-support .notice_box {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.p-inquiry {
  margin: 60px 0 30px;
  text-align: center;
}
.p-inquiry .c-button {
  margin: 40px auto;
}

/**
 * producet > update
 * ---------------------------------------- */

.p-updatelist {
  margin-top: 90px;
}
.p-updatelist h2 {
  margin-bottom: 40px;
  text-align: center;
  font-size: 3.6rem;
}
.p-updatelist .btn_box {
  margin-top: 40px;
}
.p-updatelist .btn_box a {
  margin: auto;
}

@media (max-width: 480px) {
  .p-updatelist h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
}

/**
 * contact / thanks
 * ---------------------------------------- */
.page-thanks .c-lead {
  padding-top: 120px;
}
.page-thanks .section_title {
  font-size: 2.4rem;
  margin-bottom: 40px;
  text-align: center;
}
.content_trial {
  padding: 60px 0;
  position: relative;
  max-width: 1000px;
  margin: 60px auto 0;
  text-align: center;
}
.content_trial::before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  right: calc(50% - 50vw);
  left: calc(50% - 50vw);
  bottom: 0;
  background: #f5f7ff;
}
.content_trial .section_title {
  font-size: 2.4rem;
  margin-bottom: 40px;
}
.content_trial .trial_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.content_trial .trial_box .item {
  width: 48%;
}
.content_trial p {
  margin: 20px auto;
}
.content_trial .c-button {
  margin: 40px auto;
}
.wp_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 80px;
  border-bottom: 1px solid #ccc;
}
.wp_box.list .item {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}
.wp_box .item {
  width: 46%;
}
.wp_box.list .item .left,
.wp_box.list .item .right {
  width: 46%;
}
.wp_box .item h3 {
  font-size: 2rem;
  line-height: 1.5;
  margin: 15px 0 0;
}
.wp_box.list .item h3 {
  font-size: 2rem;
  line-height: 1.5;
  margin: 0 0 20px;
}

@media (max-width: 767px) {
  .content_trial {
    padding: 40px calc(20vw / 3.75);
  }
  .wp_box.list .item {
    margin-bottom: 0px;
  }
  .wp_box.list .item .left,
  .wp_box.list .item .right {
    width: 100%;
  }
  .wp_box .item {
    width: 100%;
    margin-top: 30px;
  }
  .wp_box.list .item h3 {
    margin: 15px 0;
  }
}

/**
 * ホワイトペーパー
 * ---------------------------------------- */
.wp_box .item .c-button {
  margin: 20px auto;
}
.wp_box.list .item .c-button {
  margin: 20px 0;
}
.form_wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding-top: 100px;
}
.form_wrapper .left,
.form_wrapper .right {
  width: 46%;
  position: relative;
}
.form_wrapper .left {
  margin-bottom: 40px;
}
.form_wrapper .left hr {
  margin: 40px auto;
  border: 1px solid #ebebeb;
}
.form_wrapper .left .image {
  text-align: center;
}
.form_wrapper .right {
  padding-top: 100px;
}
.form_wrapper .left .item {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 100px;
}
.form_wrapper .c-lead {
  padding-top: 0;
}
@media (max-width: 767px) {
  .form_wrapper .left,
  .form_wrapper .right {
    width: 100%;
  }
  .form_wrapper .right {
    padding-top: 0px;
  }
  .form_wrapper .left .item {
    position: static;
    padding-top: 0px;
  }
}

/**
 * 採用情報 / お知らせ
 * ---------------------------------------- */
.l-panels {
  max-width: 1200px;
  margin: 120px auto 180px;
}
.c-panel {
  display: flex;
  flex-direction: column;
  z-index: 0;
  position: relative;
  height: 285px;
  border-radius: 5px;
}
.c-panel::before,
.c-panel::after {
  content: "";
  z-index: -1;
  position: absolute;
}
.c-panel::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f5f7ff;
}
.c-panel::after {
  right: 40px;
  bottom: 40px;
  background: center / cover no-repeat;
}
.c-panel.-recruit::after {
  width: 121px;
  height: 136px;
  background-image: url(../img/thumb_recruit.svg);
}
.c-panel.-news::after {
  width: 148px;
  height: 136px;
  background-image: url(../img/thumb_news.svg);
}
.c-panel .link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.panel_title {
  line-height: 1.5;
  font-family: "Helvetica Neue", helvetica, sans-serif;
  font-weight: 700;
}
.panel_title .main {
  display: block;
  font-size: 3.6rem;
}
.panel_title .sub {
  font-size: 1.6rem;
}
.panel_lead {
  margin-top: auto;
  font-size: 1.2rem;
}
.panel_symbol {
  position: absolute;
}
@media (min-width: 768px) {
  .l-panels {
    padding: 0 calc(100vw / 12);
  }
  .l-panels {
    display: flex;
    justify-content: space-between;
  }
  .c-panel {
    flex-basis: calc(50% - 40vw / 12);
    padding: calc(32vw / 12);
    padding-top: calc(20vw / 12);
  }
  .panel_lead {
    line-height: 1.5;
  }
  .panel_symbol {
    top: calc(28vw / 12);
    right: calc(32vw / 12);
  }
}
@media (min-width: 1200px) {
  .l-panels {
    padding: 0 100px;
  }
  .c-panel {
    flex-basis: calc(50% - 40px);
    padding: 20px 32px 32px;
  }
  .panel_symbol {
    top: 28px;
    right: 32px;
  }
}
@media (max-width: 767px) {
  .l-panels {
    margin: 90px 0;
    padding: 0 calc(20vw / 3.75);
  }
  .c-panel {
    width: calc(335vw / 3.75);
    height: calc(209vw / 3.75);
    padding: calc(20vw / 3.75);
    padding-top: calc(16vw / 3.75);
  }
  .c-panel::after {
    right: calc(20vw / 3.75);
    bottom: calc(20vw / 3.75);
  }
  .c-panel.-recruit::after {
    width: calc(100vw / 3.75);
    height: calc(112vw / 3.75);
  }
  .c-panel.-news::after {
    width: calc(120vw / 3.75);
    height: calc(110vw / 3.75);
  }
  .c-panel.-news {
    margin-top: 30px;
  }
  .panel_title .main {
    font-size: calc(36vw / 4.6);
  }
  .panel_title .sub {
    font-size: calc(16vw / 4.6);
  }
  .panel_lead {
    font-size: calc(12vw / 4.6);
  }
  .panel_symbol {
    top: calc(20vw / 3.75);
    right: calc(24vw / 3.75);
  }
}
/* inview */
.c-panel.js-inview:not(.is-inview)::before,
.c-panel.js-inview:not(.is-inview)::after,
.c-panel.js-inview:not(.is-inview) .panel_title .main,
.c-panel.js-inview:not(.is-inview) .panel_title .sub,
.c-panel.js-inview:not(.is-inview) .panel_lead,
.c-panel.js-inview:not(.is-inview) .panel_symbol {
  opacity: 0;
  transform: scale(0.8);
}
.c-panel.is-anim::before,
.c-panel.is-anim::after,
.c-panel.is-anim .panel_title .main,
.c-panel.is-anim .panel_title .sub,
.c-panel.is-anim .panel_lead,
.c-panel.is-anim .panel_symbol {
  transition:
    opacity 0.6s,
    transform 0.6s cubic-bezier(0.2, 1.5, 0.4, 1);
}
.c-panel.is-anim .panel_symbol {
  will-change: opacity, transform;
  backface-visibility: hidden;
}
.c-panel.is-anim .panel_title .main {
  transition-delay: 0.4s;
}
.c-panel.is-anim .panel_title .sub {
  transition-delay: 0.5s;
}
.c-panel.is-anim .panel_lead {
  transition-delay: 0.6s;
}
.c-panel.is-anim::after {
  transition-delay: 0.7s;
}
.c-panel.is-anim .panel_symbol {
  transition-delay: 0.8s;
}
@media (min-width: 768px) {
  .c-panel.-news.is-anim::before {
    transition-delay: 0.1s;
  }
  .c-panel.-news.is-anim .panel_title .main {
    transition-delay: 0.5s;
  }
  .c-panel.-news.is-anim .panel_title .sub {
    transition-delay: 0.6s;
  }
  .c-panel.-news.is-anim .panel_lead {
    transition-delay: 0.7s;
  }
  .c-panel.-news.is-anim::after {
    transition-delay: 0.8s;
  }
  .c-panel.-news.is-anim .panel_symbol {
    transition-delay: 0.9s;
  }
}

/**
 * footer
 * ---------------------------------------- */
.l-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  color: #fff;
}
.l-footer::before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #1f2c5c;
}
.l-footer .logo {
  line-height: 1;
}
.l-footer .sitemap {
  line-height: 1.2;
}
.l-footer .sitemap dt {
  font-weight: 700;
}
.l-footer .sitemap a {
  display: inline-block;
  padding: 0.5em 0;
}
.l-footer .footer_link {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  color: #fff;
  background: #070f2a;
}
.l-footer .footer_link a {
  display: block;
  padding: 1em;
}
@media (min-width: 768px) {
  .l-footer {
    padding: 100px calc(100vw / 12);
    padding-bottom: 160px;
  }
  .l-footer .address {
    margin-top: 40px;
  }
  .l-footer .sitemap {
    flex-basis: 70%;
    display: flex;
    justify-content: space-between;
  }
  .l-footer .sitemap dt + dd {
    margin-top: 0.5em;
  }
  .copyright {
    display: none;
  }
  .l-footer .footer_link li:nth-child(n + 2) {
    margin-left: 2em;
  }
}
@media (max-width: 1000px) and (min-width: 768px) {
  .l-footer {
    font-size: 1.6vw;
  }
}
@media (min-width: 1200px) {
  .l-footer {
    padding: 100px;
    padding-bottom: 160px;
  }
  .l-footer .sitemap .content {
    flex-basis: 20%;
  }
}
@media (max-width: 767px) {
  .l-footer {
    flex-direction: column;
    padding: 80px calc(20vw / 3.75);
    padding-bottom: 120px;
  }
  .l-footer .contentsinfo {
    margin-top: 60px;
  }
  .l-footer .logo {
    width: 100px;
  }
  .l-footer .sitemap {
    order: -1;
  }
  .l-footer .sitemap .content {
    display: flex;
    flex-wrap: wrap;
  }
  .l-footer .sitemap .content:nth-child(n + 2) {
    margin-top: 1.5em;
  }
  .l-footer .sitemap dt {
    flex-basis: 100%;
    font-size: 2.2rem;
  }
  .l-footer .sitemap dd {
    margin-right: 1.5em;
  }
  .l-footer .address {
    margin-top: 1em;
  }
  .copyright {
    margin-top: 40px;
    font-size: 1.1rem;
    letter-spacing: 0.03em;
  }
}
/* inview */
.l-footer.js-inview:not(.is-inview)::before,
.l-footer.js-inview:not(.is-inview) .contentsinfo,
.l-footer.js-inview:not(.is-inview) .sitemap .content,
.l-footer.js-inview:not(.is-inview) .copyright {
  opacity: 0;
  transform: translateY(24px);
}
.l-footer.is-anim::before,
.l-footer.is-anim .contentsinfo,
.l-footer.is-anim .sitemap .content,
.l-footer.is-anim .copyright {
  transition:
    opacity 0.6s,
    transform 0.6s cubic-bezier(0.2, 1, 0.7, 1);
}
.l-footer.is-anim .contentsinfo {
  transition-delay: 0.2s;
}
.l-footer.is-anim .sitemap .content:nth-child(1) {
  transition-delay: 0.3s;
}
.l-footer.is-anim .sitemap .content:nth-child(2) {
  transition-delay: 0.4s;
}
.l-footer.is-anim .sitemap .content:nth-child(3) {
  transition-delay: 0.5s;
}
.l-footer.is-anim .sitemap .content:nth-child(4) {
  transition-delay: 0.6s;
}
.l-footer.is-anim .sitemap .content:nth-child(5) {
  transition-delay: 0.7s;
}
.l-footer.is-anim .copyright {
  transition-delay: 0.8s;
}
@media (max-width: 767px) {
  .l-footer.is-anim .sitemap .content:nth-child(1) {
    transition-delay: 0.2s;
  }
  .l-footer.is-anim .sitemap .content:nth-child(2) {
    transition-delay: 0.3s;
  }
  .l-footer.is-anim .sitemap .content:nth-child(3) {
    transition-delay: 0.4s;
  }
  .l-footer.is-anim .sitemap .content:nth-child(4) {
    transition-delay: 0.5s;
  }
  .l-footer.is-anim .sitemap .content:nth-child(5) {
    transition-delay: 0.6s;
  }
  .l-footer.is-anim .contentsinfo {
    transition-delay: 0.7s;
  }
}

/**
 * menu
 * ---------------------------------------- */
.menu_list {
  display: flex;
  align-items: center;
  line-height: 1.2;
  font-family: roboto, sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.menu_list a {
  display: block;
  padding: 0.5em 0;
}
.menu_list a[aria-current="page"] {
  pointer-events: none;
}
@media (hover: hover) {
  .menu_list a:hover {
    background-position: left bottom;
    background-size: 100% 100%;
  }
  .menu_list a {
    background: linear-gradient(
        to top,
        #dce0f2 0.5em,
        rgba(221, 225, 243, 0) 0.5em
      )
      right bottom / 0 100% no-repeat;
    transition: background-size 0.4s cubic-bezier(0.2, 1, 0.7, 1);
  }
}
@media (min-width: 768px) {
  .menu_list {
    margin-left: 2em;
  }
  .menu_list li {
    margin-left: 2em;
  }
  .menu_list a[aria-current="page"] {
    background: linear-gradient(
      to top,
      #dce0f2 0.5em,
      rgba(221, 225, 243, 0) 0.5em
    );
  }
  .l-menu .close {
    display: none;
  }
}
@media (max-width: 1000px) and (min-width: 768px) {
  .menu_list {
    font-size: 1.6vw;
  }
}
@media (max-width: 767px) {
  .l-menu,
  .l-menu .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .l-menu .overlay {
    background: #dce0f2;
    opacity: 0.92;
  }
  .l-menu .close {
    position: absolute;
    top: 24px;
    right: 24px;
  }
  .l-menu .container {
    position: absolute;
    top: calc(50% - 200px);
    left: calc(50% - 150px);
    width: 300px;
    height: 400px;
    border-radius: 5px;
    background: white;
  }
  .menu_list {
    flex-direction: column;
    justify-content: center;
    height: 100%;
    font-size: 1.8rem;
  }
  .menu_list a {
    padding: 0.8em;
  }
  .menu_list a[aria-current="page"] {
    color: #dce0f2;
  }
  /* effect */
  .l-menu:not(.is-active) {
    pointer-events: none;
  }
  .l-menu:not(.is-active) .overlay,
  .l-menu:not(.is-active) .close,
  .l-menu:not(.is-active) .container {
    opacity: 0;
  }
  .l-menu:not(.is-active) .close {
    transform: scale(0.5);
  }
  .l-menu:not(.is-active) .container {
    transform: translateY(-24px);
  }
  .l-menu.is-anim:not(.is-active) .container {
    transform: translateY(24px);
  }
  .l-menu.is-anim .overlay,
  .l-menu.is-anim .close,
  .l-menu.is-anim .container {
    transition:
      opacity 0.6s,
      transform 0.6s cubic-bezier(0.2, 1, 0.7, 1);
  }
  .l-menu.is-anim.is-active .close {
    transition-delay: 0.2s;
  }
  .l-menu.is-anim.is-active .container {
    transition-delay: 0.1s;
  }
  .l-menu.is-anim:not(.is-active) .close,
  .l-menu.is-anim:not(.is-active) .container {
    transition-duration: 0.3s;
  }
}

/**
 * trial navi button
 * -------------------------------------------------- */

.nav_trial {
  display: none;
  position: fixed;
  top: 78px;
  right: 100px;
  z-index: 1000;
}
.nav_trial .btn {
  display: inline-block;
  margin-left: 5px;
}
.nav_trial .c-button {
  margin-left: auto;
  width: 220px;
  height: 44px;
  font-size: 1.4rem;
  background: #178dc6;
  border: #178dc6;
  margin-bottom: 10px;
}
.nav_trial .c-button.button_blue .bg {
  background: #178dc6;
  border: #178dc6;
}
@media (hover: hover) {
  .nav_trial .c-button .bg::after {
    background: #58b8e8;
  }
  .nav_trial .c-button.button_blue.is-hov {
    color: #fff;
  }
}
@media (max-width: 767px) {
  .nav_trial {
    top: auto;
    bottom: 15px;
    right: 15px;
    width: calc(100% - 95px);
  }
  .nav_trial .btn {
    display: block;
  }
  .nav_trial .c-button {
    width: 100%;
    max-width: 100%;
  }
  .smeta_intro .nav_trial .c-button {
    margin-top: 10px;
  }
}

/**
 * svg
 * -------------------------------------------------- */
.svg-parts,
.visuallyhidden {
  position: absolute;
  clip: rect(0 0 0 0);
  overflow: hidden;
  width: 1px;
  height: 1px;
}

/**
 * javascript
 * -------------------------------------------------- */
.js-holder {
  display: none;
  position: absolute;
  clip: rect(0 0 0 0);
  overflow: hidden;
  width: 1px;
  height: 1px;
}

/* transformScroll */
.js-sc-wrap {
  overflow: hidden;
}
.js-fixed {
  position: fixed;
  width: 100%;
}
.js-fixed,
.js-sc-slip {
  backface-visibility: hidden;
  will-change: transform;
}
.js-sc-dummy {
  z-index: -1;
  pointer-events: none;
}

/* lazy */
img[data-src]:not(.is-loaded) {
  opacity: 0;
}
img.is-anim {
  transition: opacity 0.6s;
}
