@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --text-color: #000;
  --primary-color: #31327B;
  --over-color: #565CE2;
  --background-color: rgba(49 50 123 / 5%);
  --border-color: #C5C8E1;
  --easing: cubic-bezier(0.33, 1, 0.68, 1);
}

body {
  margin: 0;
  padding: 0;
  background: url("/products/assets/img/common/bg.jpg") #fff;
  color: var(--text-color);
  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN",
    Meiryo, "sans-serif";
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  -webkit-text-size-adjust: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-size: 100%;
  font-weight: 700;
  line-height: 1.5;
 }
p {
  margin: 0;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
ol {
  margin: 0;
  padding: 0 0 0 28px;
}
dl,
dt,
dd {
  margin: 0;
  padding: 0;
}
figure {
  margin: 0;
  padding: 0;
}
a,
.a {
  color: var(--primary-color);
  text-decoration: underline;
  cursor: pointer;
  transition: .2s var(--easing);
}
a:hover,
.a:hover {
  color: var(--over-color);
}
a img {
  border: none;
}
img {
  height: auto;
  max-width: 100%;
  border: 0;
  vertical-align: middle;
}
sub {
  font-size: .8em;
}
sup {
  display: inline-block;
  font-size: .8em;
}
em {
  font-style: normal;
}
table {
  border-collapse: collapse;
}
main {
  display: block;
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}



/* ---------------- fix */
html {
  overflow-y: scroll;
  /*scroll-behavior: smooth;*/
}
body.-fix {
  position: fixed;
  width: 100%;
}



/* ---------------- layout */
#wrap {
  overflow: hidden;
  padding-top: 80px;
}
.l-container {
  position: relative;
  max-width: 1248px;
  margin: 0 auto;
  padding: 0 24px;
}
.l-main-container {
  max-width: 1254px;
  margin: 0 auto;
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
}
.l-main-container section + section {
  border-top: 1px solid var(--border-color);
}
.l-home-container section + section {
  max-width: 1600px;
  margin: 0 auto;
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
}
@media (max-width: 1252px) {
  .l-main-container {
    border: none;
  }
}



/* ---------------- general */
.-mobile {
  display: none;
}
@media (max-width: 767px) {
  .-pc {
    display: none;
  }
  .-mobile {
    display: block;
  }
}

/* english */
.-en {
  font-family: "Roboto", sans-serif;
}

/* note */
.note {
  padding-left: 1em;
  font-size: 12px;
  text-indent: -1em;
}

/* blank */
.-blank::after {
  content: '';
  display: inline-block;
  width: 13px;
  height: 14px;
  margin-left: 6px;
  background: url(/products/assets/img/common/ico_blank.svg) no-repeat center center / contain;
  vertical-align: middle;
}
.-blank:hover::after {
  background-image: url(/products/assets/img/common/ico_blank_over.svg);
}
.-blank:not(.-btn)::after {
  translate: 0 -2px;
}

/* btn */
.-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: fit-content;
  min-width: 188px;
  height: 58px;
  padding: 16px;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.5;
}
.-btn::after {
  content: '';
  display: inline-block;
  aspect-ratio: 1 / 1;
  width: 16px;
  background: url("/products/assets/img/common/arw_btn.svg") no-repeat center center / contain;
}
.-btn:hover {
  background: #fff;
  color: var(--text-color);
}
.-btn:hover::after {
  background-image: url("/products/assets/img/common/arw_btn_over.svg");
}
@media (max-width: 767px) {
  .-btn {
    height: 48px;
  }
}

/* -btn -blank */
.-btn.-blank::after {
  width: 15px;
  height: 16px;
  margin-left: 6px;
  background-image: url(/products/assets/img/common/ico_blank_white.svg);
}
.-btn.-blank:hover::after {
  background-image: url(/products/assets/img/common/ico_blank_black.svg);
}

/* underline */
.-underline {
  width: fit-content;
  min-width: 188px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--primary-color);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.-underline:hover {
  border-color: var(--over-color);
}

/* tags */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.tags li {
  padding: 2px 6px;
  background: #C5C8E1;
  color: var(--text-color);
  font-size: 14px;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .tags {
    gap: 4px;
    margin-top: 8px;
  }
  .tags li {
    padding: 4px;
    font-size: 10px;
  }
}

/* inlinks */
.p-inlinks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}
.p-inlinks .a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}
.p-inlinks .a::before {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background: url("/products/assets/img/common/arw_btn_over.svg") no-repeat center center / contain;
  rotate: 90deg;
}



/* ---------------- header */
header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  background: url("/products/assets/img/common/bg.jpg") #fff;
  border-bottom: 1px solid var(--border-color);
}
header .wrap-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 2;
  height: 80px;
  padding: 0 48px;
  background: url("/products/assets/img/common/bg.jpg") #fff;
}
header .logo {
  width: 240px;
}
header .nav-group ul {
  display: flex;
  gap: 40px;
  align-items: center;
}
header .nav-group ul a,
header .nav-group ul .a {
  color: #000;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.5;
}
header .nav-group ul a:hover,
header .nav-group ul .a:hover {
  color: var(--over-color);
}
header .nav-group ul .a {
  display: flex;
  align-items: center;
  gap: 6px;
}
header .nav-group ul .-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
header .nav-group ul .-nav::after {
  content: '';
  display: inline-block;
  width: 13px;
  height: 8px;
  background: url("/products/assets/img/common/arw_nav.svg") no-repeat center center / contain;
  transition: .2s var(--easing);
}
header .nav-group ul .-nav:hover::after {
  background-image: url("/products/assets/img/common/arw_nav_over.svg");
}
header .nav-group ul .-nav.-active::after {
  rotate: 180deg;
}
@media (max-width: 1023px) {
  header .wrap-header {
    padding: 0 24px;
  }
  header .logo {
    position: relative;
    z-index: 10;
    width: 240px;
  }
  header .btn-nav {
    position: absolute;
    z-index: 10;
    top: 50%;
    right: 24px;
    translate: 0 -50%;
  }
  header .btn-nav .a {
    display: block;
    aspect-ratio: 1 / 1;
    width: 40px;
    background: var(--primary-color);
    border-radius: 50%;
  }
  header .btn-nav .a span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 1px;
    background: #fff;
    translate: -50% -50%;
    transition: .2s var(--easing);
  }
  header .btn-nav .a span:nth-child(1) {
    margin-top: -5px;
  }
  header .btn-nav .a span:nth-child(3) {
    margin-top: 5px;
  }
  header .nav-group {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 24px;
    background: #fff;
    translate: 0 -32px;
    transition: .2s var(--easing);
  }
  header .nav-group ul {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    translate: -50% -50%;
  }
  header .nav-group ul li + li {
    margin-top: 40px;
  }
  header .nav-group ul .-nav {
    justify-content: center;
  }

  /* active */
  header .nav-group.-active {
    opacity: 1;
    visibility: visible;
    translate: 0 0;
  }
  header .btn-nav .a.-active span:nth-child(2) {
    opacity: 0;
  }
  header .btn-nav .a.-active span:nth-child(1) {
    margin-top: 0;
    rotate: -45deg;
  }
  header .btn-nav .a.-active span:nth-child(3) {
    margin-top: 0;
    rotate: 45deg;
  }
}
@media (max-width: 767px) {
  header .logo {
    width: 180px;
  }
}

/* p-nav-products */
.p-nav-products {
  opacity: 0;
  visibility: hidden;
  overflow: auto;
  position: fixed;
  z-index: 1;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100svh - 80px);
  padding: 48px 0;
  background: var(--primary-color);
  color: #fff;
  translate: 0 -32px;
  transition: .2s var(--easing);
}
.p-nav-products a {
  display: grid;
  grid-template-columns: 5px auto;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  line-height: 1.5;
}
.p-nav-products a::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 9px;
  background: url("/products/assets/img/common/arw_next_white.svg") no-repeat center center / contain;
}
.p-nav-products a:hover {
  color: var(--over-color);
}
.p-nav-products a:hover::before {
  background-image: url("/products/assets/img/common/arw_next_over.svg");
}
.p-nav-products .group {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 48px;
}
.p-nav-products .group + .group {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
}
.p-nav-products .list-group {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}
.p-nav-products .head {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}
.p-nav-products dl dt {
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 700;
}
.p-nav-products dl dd + dd {
  margin-top: 4px;
}
.p-nav-products dl dd + dt {
  margin-top: 32px;
}
@media (max-width: 1023px) {
  .p-nav-products {
    z-index: 20;
    top: 0;
    height: 100svh;
    padding: 12px 0 160px;
  }
  .p-nav-products .btn-close {
    position: sticky;
    z-index: 10;
    top: 0;
    left: calc(100% - 64px);
    width: 40px;
    margin-bottom: 24px;
  }
  .p-nav-products .btn-close .a {
    display: block;
    position: relative;
    aspect-ratio: 1 / 1;
    width: 40px;
    background: #fff;
    border-radius: 50%;
  }
  .p-nav-products .btn-close .a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 1px;
    background: var(--primary-color);
    translate: -50% -50%;
    rotate: -45deg;
  }
  .p-nav-products .btn-close .a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 1px;
    background: var(--primary-color);
    translate: -50% -50%;
    rotate: 45deg;
  }
  .p-nav-products .list-group {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-nav-products .group {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .p-nav-products .list-group {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .p-nav-products .group + .group {
    margin-top: 24px;
    padding-top: 24px;
  }
}
/* active */
.p-nav-products.-active {
  opacity: 1;
  visibility: visible;
  translate: 0 0;
}



/* ---------------- footer */
footer {
   border-top: 1px solid var(--border-color);
}

/* prev */
footer .prev-index {
  border-bottom: 1px solid var(--border-color);
}
footer .prev-index a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding: 64px 24px;
  color: var(--text-color);
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.5;
}
footer .prev-index .arw {
  display: inline-block;
  position: relative;
  aspect-ratio: 1 / 1;
  width: 30px;
  background: url("/products/assets/img/common/arw_circle.svg") no-repeat center center / contain;
  border-radius: 50%;
  rotate: 180deg;
}
footer .prev-index a:hover {
  background: var(--primary-color);
  color: #fff;
}
footer .prev-index a:hover .arw {
  background-image: url("/products/assets/img/common/arw_circle_white.svg");
}
@media (max-width: 767px) {
  footer .prev-index a {
    gap: 20px;
    padding: 40px 24px;
    font-size: 16px;
  }
  footer .prev-index .arw {
    width: 20px;
  }
  footer .prev-index .arw::before {
    width: 5px;
  }
}

/* home */
.-home footer .prev-index {
  display: none;
}


/* nav */
.p-footer .nav-group {
  display: grid;
  grid-template-columns: 1fr 197px;
  position: relative;
}
.p-footer .nav-group .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px 200px;
  padding: 48px;
}
.p-footer .nav-group .logo {
  width: 293px;
}
.p-footer .nav-group .nav {
  flex: 1;
  display: flex;
  gap: 120px;
}
.p-footer .nav-group .nav li + li {
  margin-top: 40px;
}
.p-footer .nav-group .nav a {
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.p-footer .nav-group .nav a:not(:hover) {
  color: var(--text-color);
}
.p-footer .nav-group .nav .-blank:not(:hover)::after {
  background-image: url("/products/assets/img/common/ico_blank_black.svg");
}
.p-footer .nav-group .btn-top {
  display: flex;
  border-left: 1px solid var(--border-color);
}
.p-footer .nav-group .btn-top .a {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
.p-footer .nav-group .btn-top .a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  aspect-ratio: 60 / 30;
  width: 60px;
  background: url("/products/assets/img/common/arw_top.svg") no-repeat center center / contain;
  translate: -50% -50%;
}
.p-footer .nav-group .btn-top .a:hover {
  background: var(--primary-color);
}
.p-footer .nav-group .btn-top .a:hover::before {
  background-image: url("/products/assets/img/common/arw_top_white.svg");
}
@media (max-width: 767px) {
  .p-footer .nav-group {
    display: block;
  }
  .p-footer .nav-group .wrap {
    display: block;
    padding: 24px;
  }
  .p-footer .nav-group .logo {
    width: 160px;
    margin: 0 auto;
  }
  .p-footer .nav-group .nav {
    display: block;
    margin-top: 40px;
  }
  .p-footer .nav-group .nav a {
    font-size: 12px;
  }
  .p-footer .nav-group .nav ul + ul {
    margin-top: 24px;
  }
  .p-footer .nav-group .nav ul li + li{
    margin-top: 16px;
  }
  .p-footer .nav-group .btn-top {
    position: absolute;
    bottom: 0;
    right: 0;
    border-top: 1px solid var(--border-color);
  }
  .p-footer .nav-group .btn-top .a {
    width: 96px;
    height: 80px;
  }
  .p-footer .nav-group .btn-top .a::before {
    width: 30px;
  }
}

/* copyright */
.p-footer .copyright {
  padding: 24px 48px 80px;
  border-top: 1px solid var(--border-color);
  font-size: 12px;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .p-footer .copyright {
    padding: 16px 24px 64px;
    font-size: 10px;
  }
}



/* ---------------- p-head-group */
.p-head-group {
  padding: 40px 0 ;
  border-bottom: 1px solid var(--border-color);
}
.p-head-group .h1 {
  position: relative;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
}
.p-head-group .lead {
  position: relative;
  margin-top: 24px;
  font-size: 18px;
}
.p-head-group .topics {
  position: absolute;
  top: 50%;
  right: 24px;
  color: rgba(197 200 225 / 50%);
  font-size: 60px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 2.5px;
  translate: 0 -50%;
}
@media (max-width: 767px) {
  .p-head-group {
    padding: 24px 0 ;
  }
  .p-head-group .h1 {
    font-size: 24px;
  }
  .p-head-group .lead {
    margin-top: 8px;
    font-size: 14px;
  }
  .p-head-group .topics {
    position: static;
    margin-bottom: 4px;
    font-size: 20px;
    font-weight: 500;
    translate: 0 0;
  }
}



/* ---------------- p-download */
.p-download {
  padding: 64px 0;
  background: url("/products/assets/img/common/bg_hero.png") center center var(--primary-color);
  color: #fff;
}
.p-download .head {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
  font-weight: 700;
}
.p-download .head::before {
  content: '';
  display: block;
  width: 2px;
  height: 32px;
  background: #fff;
  rotate: -30deg;
}
.p-download .head::after {
  content: '';
  display: block;
  width: 2px;
  height: 32px;
  background: #fff;
  rotate: 30deg;
}
.p-download .btn {
  display: flex;
  justify-content: center;
}
.p-download .btn .-btn {
  gap: 24px;
  width: 100%;
  max-width: 534px;
  height: 80px;
  background: #fff;
  color: var(--text-color);
  font-size: 18px;
  font-weight: 700;
}
.p-download .btn .-btn::after {
  width: 30px;
  background: url("/products/assets/img/common/arw_circle.svg") no-repeat center center / contain;
}
.p-download .btn .-btn:hover {
  background: var(--over-color);
  color: #fff;
}
.p-download .btn .-btn:hover::after {
  background-image: url("/products/assets/img/common/arw_circle_white.svg");
}
@media (max-width: 767px) {
  .p-download {
    padding: 40px 0;
    background-size: 1838.5px;
  }
  .p-download .btn .-btn {
    height: 64px;
    font-size: 16px;
  }
}



/* ---------------- p-hero-products */
.p-hero-products {
  border-bottom: 1px solid var(--border-color);
}
.p-hero-products .wrap {
  display: grid;
  grid-template-columns: 1fr 57.93%;
  max-width: 1600px;
  margin: 0 auto;
}
.p-hero-products .body-group {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 40px;
}
.p-hero-products .body-group h1 {
  font-size: 37px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 2.5px;
}
.p-hero-products .body-group .shoulder {
  margin-top: 12px;
  font-size: 24px;
  line-height: 1.5;
}
.p-hero-products .body-group .tags {
  margin-top: 24px;
}
.p-hero-products figure {
  display: flex;
  align-items: center;
  padding: 24px;
  border-left: 1px solid var(--border-color);
}
@media (max-width: 1599px) {
  .p-hero-products .body-group h1 {
    font-size: 32px;
  }
}
@media (max-width: 1365px) {
  .p-hero-products .body-group h1 {
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .p-hero-products .wrap {
    display: block;
  }
  .p-hero-products .body-group {
    justify-content: start;
    padding: 24px;
  }
  .p-hero-products .body-group h1 {
    font-size: 24px;
  }
  .p-hero-products .body-group .shoulder {
    margin-top: 8px;
    font-size: 18px;
  }
  .p-hero-products .body-group .tags {
    margin-top: 16px;
  }
  .p-hero-products figure {
    padding: 8px;
    border-left: none;
    border-top: 1px solid var(--border-color);
  }
}



/* ---------------- p-lead */
.p-lead {
  padding: 48px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 20px;
}
.p-lead p + p {
  margin-top: 16px;
}
@media (max-width: 767px) {
  .p-lead {
    padding: 40px 0;
    font-size: 16px;
  }
}


/* ---------------- p-releated */
.p-related .head {
  padding: 24px 48px;
  background: rgba(70 49 123 / 5%);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}
.p-related .links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: -1px;
}
.p-related .links > li {
  display: flex;
  border-bottom: 1px solid var(--border-color);
}
.p-related .links > li:nth-child(odd) {
  border-right: 1px dashed var(--border-color);
}
.p-related .links a {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 0 24px;
  position: relative;
  width: 100%;
  padding: 24px 24px 64px;
  color: var(--text-color);
  font-size: 14px;
  text-decoration: none;
}
.p-related .links a::after {
  content: '';
  position: absolute;
  bottom: 24px;
  right: 24px;
  aspect-ratio: 1 / 1;
  width: 30px;
  background: url("/products/assets/img/common/arw_circle.svg") no-repeat center center / contain;
}
.p-related .links figure {
  transition: .2s var(--easing);
}
.p-related .links figure img {
  width: 100%;
}
.p-related .links p + p {
  margin-top: 8px;
}
.p-related .links .title {
  font-size: 16px;
  font-weight: 700;
}
.p-related .links a:hover {
  background: var(--primary-color);
  color: #fff;
}
.p-related .links a:hover::after {
  background-image: url("/products/assets/img/common/arw_circle_white.svg");
}
.p-related .links a:hover figure {
  opacity: .7;
}
@media (max-width: 1023px) {
  .p-related .links a {
    display: block;
  }
  .p-related .links figure {
    max-width: 180px;
    margin: 0 auto;
  }
  .p-related .links .body {
    margin-top: 24px;
  }
}
@media (max-width: 767px) {
  .p-related .head {
    padding: 24px;
    font-size: 18px;
  }
  .p-related .links a {
    padding: 8px 8px 56px;
    font-size: 12px;
  }
  .p-related .links a::after {
    bottom: 16px;
    right: 16px;
    width: 24px;
  }
  .p-related .links .body {
    margin-top: 8px;
    padding: 0 8px;
  }
  .p-related .links p + p {
    margin-top: 4px;
  }
}



/* ---------------- .p-body */
.p-body {
  padding: 64px 24px;
  font-size: 18px;
}
.p-body h2 {
  position: relative;
  margin-bottom: 48px;
  padding-left: 24px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}
.p-body h2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 100%;
  background: var(--primary-color);
}
.p-body .body + h2 {
  margin-top: 64px;
}
.p-body > .body {
  padding: 0 24px;
}
.p-body h3 {
  font-size: 20px;
  font-weight: 700;
}
.p-body p + h3,
.p-body .p + h3 {
  margin-top: 48px !important;
}
.p-body ul li + li {
  margin-top: 8px;
}
.p-body ul li {
  position: relative;
  padding-left: 16px;
}
.p-body ul li::before {
  content: '';
  position: absolute;
  top: calc((1em * 1.7) / 2);
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--primary-color);
  border-radius: 50%;
  translate: 0 -50%;
}
.p-body p + p,
.p-body .p + p,
.p-body p + .p,
.p-body .p + .p {
  margin-top: 16px;
}
.p-body p + .column-group {
  margin-top: 24px;
}
@media (max-width: 767px) {
  .p-body {
    padding: 40px 24px;
    font-size: 14px;
  }
  .p-body h2 {
    margin-bottom: 32px;
    padding-left: 16px;
    font-size: 18px;
  }
  .p-body h2::before {
    width: 4px;
  }
  .p-body .body + h2 {
    margin-top: 40px;
  }
  .p-body > .body {
    padding: 0 16px;
  }
  .p-body h3 {
    font-size: 16px;
  }
  .p-body p + h3,
  .p-body .p + h3 {
    margin-top: 40px !important;
  }
}

/* box */
.p-body .p-box-group {
  margin-top: 40px;
  padding: 0;
}



/* ---------------- p-point */
.p-point {
  padding: 48px 24px;
  font-size: 18px;
}
.p-point p + p,
.p-point .p + p,
.p-point p + .p,
.p-point .p + .p {
  margin-top: 24px;
}
.p-point .items .item + .item {
  margin-top: 40px;
}
.p-point .items .item {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 142px;
}
.p-point .items .head {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #7B82B9;
  color: #fff;
}
.p-point .items .head::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 24px;
  height: 54px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: #7B82B9;
  translate: 100% -50%;
}
.p-point .items .body {
  display: flex;
  align-items: center;
  padding: 40px 56px 40px 72px;
  background: rgba(70 49 123 / 5%);
  font-size: 18px; 
}
@media (max-width: 1023px) {
  .p-point .items .column-group {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
}
@media (max-width: 767px) {
  .p-point {
    padding: 40px 24px;
    font-size: 18px;
  }
  .p-point .items .item + .item {
    margin-top: 24px;
  }
  .p-point .items .item {
    grid-template-columns: 1fr;
  }
  .p-point .items .head {
    padding: 24px;
  }
  .p-point .items .head img {
    width: auto;
    height: 24px;
  }
  .p-point .items .head::after {
    top: 100%;
    left: 50%;
    right: auto;
    width: 32px;
    height: 16px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    background: #7B82B9;
    translate: -50%;
  }
  .p-point .items .body {
    padding: 24px;
    font-size: 14px;
  }
  .p-point p + p,
  .p-point .p + p,
  .p-point p + .p,
  .p-point .p + .p {
    margin-top: 16px;
  }
}

/* column */
.column-group[data-column="3"] {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 48px;
}
.column-group[data-column="2"] {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 48px;
}
.column-group figure +.h {
  margin-top: 16px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .column-group {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .column-group figure +.h {
    font-size: 16px;
  }
}



/* ---------------- .p-flow-howto */
.p-flow-howto {
  padding: 64px 24px;
}
.p-flow-howto h2 {
  position: relative;
  margin: 0 0 48px;
  padding-left: 24px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}
.p-flow-howto h2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 100%;
  background: var(--primary-color);
}
.p-flow-howto p + .items {
  margin-top: 32px;
}
.p-flow-howto .items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  counter-reset: num 0;
}
.p-flow-howto .items .item {
  position: relative;
  padding: 24px;
  background: rgba(70 49 123 / 5%);
}
.p-flow-howto .items .item + .item::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -31px;
  width: 15px;
  height: 30px;
  background: url(/products/assets/img/common/arw_flow.svg) no-repeat center center / contain;
  translate: 0 -50%;
}
.p-flow-howto .items .head {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 18px;
  line-height: 1.5;
}
.p-flow-howto .items .head::before {
  counter-increment: num 1;
  content: '0'counter(num);
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1 / 1;
  width: 40px;
  background: var(--primary-color);
  border-radius: 50%;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 1023px) {
  .p-flow-howto .items {
    grid-template-columns: 1fr;
    max-width: 264px;
    margin: 0 auto;
  }
  .p-flow-howto .items .item + .item::before {
    top: -24px;
    left: 50%;
    translate: -50% -50%;
    rotate: 90deg;
  }
}
@media (max-width: 767px) {
  .p-flow-howto {
    padding: 40px 24px;
  }
  .p-flow-howto h2 {
    margin-bottom: 24px;
    padding-left: 16px;
    font-size: 18px;
  }
  .p-flow-howto h2::before {
    width: 4px;
  }
  .p-flow-howto .items .head {
    font-size: 16px;
  }
}



/* ---------------- p-feature-index */
.p-feature-index {
  padding: 64px 24px;
}
.p-feature-index .items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 48px;
}
.p-feature-index .items .item {
  position: relative;
  padding: 24px 24px 64px;
  background: rgba(70 49 123 / 5%);
  color: var(--text-color);
  text-align: center;
  text-decoration: none;
  line-height: 1.5;
}
.p-feature-index .items .item::after {
  content: '';
  position: absolute;
  bottom: 24px;
  right: 24px;
  aspect-ratio: 1 / 1;
  width: 30px;
  background: url("/products/assets/img/common/plus.svg") no-repeat center center;
}
.p-feature-index .items .item:hover {
  background: var(--primary-color);
  color: #fff;
}
.p-feature-index .items .item:hover::after {
  background-image: url("/products/assets/img/common/plus_over.svg");
}
.p-feature-index .items figure {
  margin-bottom: 16px;
  transition: .2s var(--easing);
}
.p-feature-index .items .item:hover figure {
  opacity: .7;
}
.p-feature-index .items .head {
  margin-bottom: 8px;
  font-weight: 700;
}
.p-feature-index .items .data-txt {
  display: none;
}
@media (max-width: 1023px) {
  .p-feature-index .items {
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .p-feature-index {
    padding: 40px 24px;
  }
  .p-feature-index .items {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}



/* ---------------- p-modal */
.p-modal {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: .2s var(--easing);
}
.p-modal .overlay {
  opacity: .6;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
}
.p-modal .modal {
  overflow: auto;
  position: fixed;
  top: 50%;
  left: 50%;
  width: calc(100% - 48px);
  max-width: 784px;
  max-height: calc(100% - 48px);
  padding: 24px 24px 80px;
  background: #fff;
  translate: -50% -50%;
}
.p-modal .btn-close {
  display: flex;
  justify-content: end;
  position: sticky;
  top: 0;
  margin-bottom: 16px;
}
.p-modal .btn-close .a {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1;
  width: 30px;
  background: var(--primary-color);
  border-radius: 50%;
}
.p-modal .btn-close .a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1px;
  background: #fff;
  translate: -50% -50%;
  rotate: -45deg;
}
.p-modal .btn-close .a::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1px;
  background: #fff;
  translate: -50% -50%;
  rotate: 45deg;
}
.p-modal .btn-close .a:hover {
  background: #fff;
}
.p-modal .btn-close .a:hover::before {
  background: var(--primary-color);
}
.p-modal .btn-close .a:hover::after {
  background: var(--primary-color);
}
.p-modal .modal .wrap {
  padding: 0 32px;
}
.p-modal .modal .wrap.-grid {
  display: grid;
  grid-template-columns: 254px 1fr;
  gap: 24px;
}
.p-modal .modal figure img {
  width: 100%;
}
.p-modal .modal .head {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}
.p-modal .modal .data-txt {
  margin-top: 24px;
}
.p-modal .modal .data-txt p + p {
  margin-top: 24px;
}
@media (max-width: 767px) {
  .p-modal .modal {
    padding: 16px 24px 40px;
  }
  .p-modal .modal .wrap {
    padding: 0;
  }
  .p-modal .modal .wrap.-grid {
    grid-template-columns: 1fr;
  }
  .p-modal .modal .head {
    font-size: 16px;
  }
}

/* active */
.p-modal.-active {
  opacity: 1;
  visibility: visible;
}


/* ---------------- .p-lineup */
.p-lineup {
  padding: 64px 0 40px;
}
.p-lineup h2 {
  position: relative;
  margin: 0 24px 48px;
  padding-left: 24px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}
.p-lineup h2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 100%;
  background: var(--primary-color);
}
.p-lineup .items .head {
  display: flex;
  align-items: center;
  gap: 8px 16px;
  padding: 24px;
  background: rgba(70 49 123 / 5%);
  border-top: 1px solid var(--border-color);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}
.p-lineup .items .head .tag {
  padding: 0 6px;
  border: 1px solid var(--text-color);
  font-size: 14px;
  font-weight: 400;
  line-height: 30px;
}
.p-lineup .body-group {
  padding: 24px 80px 24px 24px;
}
.p-lineup .body-group:not(.-wide) {
  display: grid;
  grid-template-columns: 370px 1fr;
  gap: 32px 48px;
}
.p-lineup .body-group p + p,
.p-lineup .body-group p + .p,
.p-lineup .body-group .p + p,
.p-lineup .body-group .p + .p {
  margin-top: 24px;
}
.p-lineup .body-group .copy {
  margin-top: 24px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}
.p-lineup .body-group .note {
  font-size: 12px;
}
@media (max-width: 1023px) {
  .p-lineup .body-group {
    padding: 24px;
  }
}
@media (max-width: 767px) {
  .p-lineup {
    padding: 40px 0 16px;
  }
  .p-lineup h2 {
    margin-bottom: 24px;
    padding-left: 16px;
    font-size: 18px;
  }
  .p-lineup h2::before {
    width: 4px;
  }
  .p-lineup .items .head {
    padding: 16px 24px;
    font-size: 18px;
  }
  .p-lineup .items .head .tag {
    font-size: 12px;
  }
  .p-lineup .body-group {
    grid-template-columns: 1fr !important;
  }
  .p-lineup .body-group .copy {
    margin-top: 0;
    font-size: 16px;
  }
}



/* ---------------- p-topics */
.p-topics {
  padding: 24px 80px 24px 24px;
}
.p-topics .wrap {
  display: grid;
  grid-template-columns: 368px 1fr;
  gap: 48px;
}
.p-topics .body-group .category {
  margin: 24px 0 4px;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 2.5px;
}
.p-topics .body-group .title {
  margin-bottom: 24px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}
.p-topics .body-group .btn-more {
  display: flex;
  justify-content: end;
  margin-top: 40px;
}
@media (max-width: 1023px) {
  .p-topics {
    padding: 24px;
  }
}
@media (max-width: 767px) {
  .p-topics .wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .p-topics .body-group .category {
    margin: 0 0 4px;
    font-size: 12px;
  }
  .p-topics .body-group .title {
    margin-bottom: 16px;
    font-size: 18px;
  }
  .p-topics .body-group .btn-more {
    margin-top: 24px;
  }
}



/* ---------------- p-box-group */
.p-box-group {
  padding: 48px 24px;
}
.p-box-group p + p,
.p-box-group .p + p,
.p-box-group p + .p,
.p-box-group .p + .p {
  margin-top: 8px;
}
.p-box-group .items .item + .item {
  margin-top: 40px;
}
.p-box-group .items .item {
  display: grid;
  grid-template-columns: 344px 1fr;
  gap: 24px 48px;
  padding: 24px 56px 24px 24px;
  border: 1px solid var(--border-color);
}
.p-box-group .items .head {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}
.p-box-group .items p + .head {
  margin-top: 16px;
}
.p-box-group .items ul li + li {
  margin-top: 8px;
}
.p-box-group .items ul li {
  position: relative;
  padding-left: 16px;
}
.p-box-group .items ul li::before {
  content: '';
  position: absolute;
  top: calc((1em * 1.7) / 2);
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--primary-color);
  border-radius: 50%;
  translate: 0 -50%;
}
.p-box-group .items .btn-more {
  display: flex;
  justify-content: end;
  margin-top: 40px;
}
.p-box-group .items .btn-link {
  margin-top: 16px;
}
@media (max-width: 1023px) {
  .p-box-group .items .item {
    grid-template-columns: 264px 1fr;
  }
}
@media (max-width: 767px) {
  .p-box-group {
    padding: 40px 24px;
  }
  .p-box-group .items .item + .item {
    margin-top: 24px;
  }
  .p-box-group .items .item {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .p-box-group .items .head {
    margin-bottom: 16px;
    font-size: 16px;
  }
  .p-box-group .items .btn-more {
    margin-top: 24px;
  }
}



/* ---------------- p-feature */
.p-feature .items .item + .item {
  border-top: 1px solid var(--border-color);
}
.p-feature .head {
  position: relative;
  padding: 24px 24px 24px 80px;
  background: rgba(70 49 123 / 5%);
  border-top: 1px solid var(--border-color);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}
.p-feature .head::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 24px;
  aspect-ratio: 1 / 1;
  width: 40px;
  background: url("/products/assets/img/common/ico_feature.svg") no-repeat center center / contain;
  translate: 0 -50%;
}
.p-feature .body-group {
  display: grid;
  grid-template-columns: 368px 1fr;
  gap: 36px 48px;
  padding: 24px 80px 24px 24px;
}
.p-feature .body .h {
  margin: 24px 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}
.p-feature .body .btn-more {
  display: flex;
  justify-content: end;
  margin-top: 40px;
}
@media (max-width: 1023px) {
  .p-feature .body-group {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px 24px 40px;
  }
}
@media (max-width: 767px) {
  .p-feature .head {
    padding: 16px 24px 16px 72px;
    font-size: 18px;
  }
  .p-feature .head::before {
    width: 32px;
  }
  .p-feature .body-group {
    grid-template-columns: repeat(1, 1fr);
  }
  .p-feature .body .h {
    margin: 0 0 16px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
  }
}



/* ---------------- p-exhibition */
.p-exhibition .items .item + .item {
  border-top: 1px solid var(--border-color);
}
.p-exhibition .head {
  position: relative;
  padding: 24px;
  background: rgba(70 49 123 / 5%);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}
.p-exhibition .body-group {
  display: grid;
  grid-template-columns: 1fr 520px;
  align-items: start;
  gap: 24px 48px;
  padding: 20px 80px 40px 48px;
}
.p-exhibition .body-group dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  font-size: 20px;
}
.p-exhibition .body-group dl dt {
  font-weight: 700;
}
.p-exhibition .body-group .btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 24px;
}
.p-exhibition .body-group .btns .-btn {
  min-width: 224px;
}
.p-exhibition .body-group figure img {
  background: #fff;
  border: 1px solid var(--border-color);
}
@media (max-width: 1279px) {
  .p-exhibition .body-group {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px 24px 40px;
  }
}
@media (max-width: 1023px) {
  .p-exhibition .body-group {
    grid-template-columns: repeat(1, 1fr);
  }
  .p-exhibition .body-group figure {
    max-width: 520px;
  }
}
@media (max-width: 767px) {
  .p-exhibition .head {
    padding: 16px 24px;
    font-size: 18px;
  }
  .p-exhibition .head::before {
    left: 24px;
    width: 16px;
  }
  .p-exhibition .body-group dl {
    font-size: 16px;
  }
}


/* ---------------- p-hero-section */
.p-hero-section {
  position: relative;
  padding: 24px 24px 48px;
}
/*
.p-hero-section > .wrap {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
}
*/
.p-hero-section > .wrap .inner {
  position: relative;
}
.p-hero-section .p-box-group {
  margin: 0 0 24px;
  padding: 24px 0 48px;
  border-bottom: 1px solid var(--border-color);
}
.p-hero-section .wrap + .p-box-group {
  margin: 24px 0 0;
  padding: 48px 0 0;
  border-top: 1px solid var(--border-color);
  border-bottom: none;
}
@media (max-width: 767px) {
  .p-hero-section {
    padding: 24px 24px 40px;
  }
  .p-hero-section .p-box-group {
    padding: 16px 0 40px;
  }
  .p-hero-section .wrap + .p-box-group {
    padding: 40px 0 0;
  }
}

/* txt */
.p-hero-section.-txt > .wrap .inner {
  padding-left: 208px;
}
.p-hero-section .txt {
  position: absolute;
  top: 50%;
  left: 56px;
  translate: 0 -50%;
}
.p-hero-section .txt span + span {
  margin-top: 10px;
}
.p-hero-section .txt span {
  display: block;
  width: fit-content;
  padding: 0 10px;
  background: var(--primary-color);
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  line-height: 59px;
}
@media (max-width: 767px) {
  .p-hero-section.-txt > .wrap .inner {
    padding-left: 50px;
  }
  .p-hero-section .txt {
    left: 0;
  }
  .p-hero-section .txt span + span {
    margin-top: 8px;
  }
  .p-hero-section .txt span {
    display: block;
    width: fit-content;
    padding: 0 8px;
    font-size: 20px;
    line-height: 42px;
  }
}



/* ---------------- p-iorder */
.p-iorder {
  padding: 64px 24px;
}
.p-iorder .head {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
  color: var(--primary-color);
  font-weight: 700;
}
.p-iorder .head::before {
  content: '';
  display: block;
  width: 2px;
  height: 32px;
  background: var(--primary-color);
  rotate: -30deg;
}
.p-iorder .head::after {
  content: '';
  display: block;
  width: 2px;
  height: 32px;
  background: var(--primary-color);
  rotate: 30deg;
}
.p-iorder .btn {
  display: flex;
  justify-content: center;
}
.p-iorder .btn .-btn {
  width: 100%;
  max-width: 534px;
  height: 80px;
  font-size: 18px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .p-iorder {
    padding: 40px 24px;
    background-size: 1838.5px;
  }
  .p-iorder .btn .-btn {
    height: 64px;
    font-size: 16px;
  }
}



/* ---------------- p-form */
.p-form {
  padding: 64px 24px;
}
.p-form h2 {
  position: relative;
  margin-bottom: 48px;
  padding-left: 24px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}
.p-form h2::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 100%;
  background: var(--primary-color);
}
.p-form .form-wrap {
  max-width: 784px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .p-form {
    padding: 40px 24px;
    font-size: 14px;
  }
  .p-form h2 {
    margin-bottom: 24px;
    padding-left: 16px;
    font-size: 18px;
  }
  .p-form h2::before {
    width: 4px;
  }
}



/* ---------------- p-hero-home */
.p-hero-home {
  overflow: hidden;
  position: relative;
  padding: 140px 0;
  background: var(--primary-color);
  text-align: center;
}
.p-hero-home .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% + 3677px);
  height: calc(100% + 3677px);
  background: url("/products/assets/img/common/bg_hero.png");
  animation: 64s linear infinite hero;
}
.p-hero-home .l-container {
  padding: 0 16px;
}
.p-hero-home h1 span {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 0 10px 2px;
  background: #fff;
  font-size: 56px;
  font-weight: 700;
  line-height: 88px;
  letter-spacing: 2.5px;
}
.p-hero-home h1 span + span {
  margin-top: 24px;
}
.p-hero-home h1 em {
  color: #565CE2;
}
.p-hero-home .lead {
  margin-top: 48px;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 1px;
}
@media (max-width: 1023px) {
  .p-hero-home h1 span {
    font-size: 48px;
  }
}
@media (max-width: 767px) {
  .p-hero-home {
    padding: 114px 0;
  }
  .p-hero-home .bg {
    background-size: 1838.5px;
    animation: 128s linear infinite hero;
  }
  .p-hero-home h1 span {
    padding: 0 8px;
    font-size: 24px;
    line-height: 40px;
  }
  .p-hero-home h1 span + span {
    margin-top: 16px;
  }
  .p-hero-home .lead {
    margin-top: 24px;
    font-size: 14px;
  }
}
@keyframes hero {
  0% {
    top: 0;
    left: 0;
  }
  100% {
    top: -3677px;
    left: -3677px;
  }
}



/* ---------------- p-topics-home */
.p-topics-home {
  border-bottom: 1px solid var(--border-color);
}
.p-topics-home .items ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.p-topics-home .items li + li {
  border-left: 1px dashed var(--border-color);
}
.p-topics-home .items li {
  display: flex;
}
.p-topics-home .items a {
  display: grid;
  grid-template-columns: 159px 1fr;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding: 24px;
  color: var(--text-color);
  text-decoration: none;
}
.p-topics-home .items a:hover {
  background: var(--primary-color);
  color: #fff;
}
.p-topics-home .items a figure {
  transition: .2s var(--easing);
}
.p-topics-home .items a:hover figure {
  opacity: .7;
}
.p-topics-home .items a.-exhibition figure {
  position: relative;
}
.p-topics-home .items a.-exhibition img.-over {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: .2s var(--easing);
}
.p-topics-home .items a.-exhibition:hover figure {
  opacity: 1;
}
.p-topics-home .items a.-exhibition:hover img.-over {
  opacity: 1;
}
.p-topics-home .items .topics {
  margin-bottom: 4px;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 2.5px;
}
.p-topics-home .items .title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 1023px) {
  .p-topics-home .items ul {
    grid-template-columns: 1fr;
  }
  .p-topics-home .items li + li {
    border-top: 1px dashed var(--border-color);
    border-left: none;
  }
}
@media (max-width: 767px) {
  .p-topics-home .items a {
    grid-template-columns: 120px 1fr;
    gap: 16px;
  }
  .p-topics-home .items .topics {
    font-size: 12px;
  }
  .p-topics-home .items .title {
    font-size: 18px;
  }
}



/* ---------------- p-head-home */
.p-head-home {
  position: relative;
  padding: 48px;
  border-bottom: 1px solid var(--border-color);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5;
}
.p-head-home h1 {
  position: relative;
  z-index: 2;
}
.p-head-home .en {
  position: absolute;
  top: 50%;
  right: 48px;
  color: rgba(197 200 225 / 50%);
  font-size: 60px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 2.5px;
  translate: 0 -50%;
}
@media (max-width: 767px) {
  .p-head-home {
    padding: 24px;
  }
  .p-head-home .en {
    position: static;
    font-size: 20px;
    font-weight: 500;
    translate: 0 0;
  }
  .p-head-home h1 {
    font-size: 24px;
  }
}



/* ---------------- p-filter-products */
.p-filter-products {
  padding-bottom: 48px;
}
.p-filter-products .head-group {
  padding: 24px 48px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}
.p-filter-products .head-group {
  padding: 24px 48px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}
.p-filter-products .body-group {
  border-top: 1px solid var(--border-color);
}
.p-filter-products dl {
  display: grid;
  grid-template-columns: 184px 1fr;
  border-bottom: 1px solid var(--border-color);
}
.p-filter-products dl dt {
  display: flex;
  align-items: center;
  background: rgba(70 49 123 / 5%);
  padding: 16px 48px;
  border-right: 1px solid var(--border-color);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}
.p-filter-products dl dd {
  display: flex;
  flex-wrap: wrap;
}
.p-filter-products dl ul {
  display: flex;
  width: 100%;
}
.p-filter-products dl ul + ul {
  border-top: 1px solid var(--border-color);
}
.p-filter-products dl ul li + li {
  border-left: 1px dashed var(--border-color);
}
.p-filter-products dl ul li {
  flex: 1;
  height: 100%;
}
.p-filter-products dl ul .a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: 100%;
  padding: 16px;
  color: var(--text-color);
  font-weight: 700;
  text-decoration: none;
  line-height: 1.5;
}
.p-filter-products dl ul .a::before {
  content: '';
  display: block;
  aspect-ratio: 1 / 1;
  width: 18px;
  background: url("/products/assets/img/common/radio.svg") no-repeat center center / contain;
}
.p-filter-products dl ul .a.-cr,
.p-filter-products dl ul .a:hover {
  background: var(--primary-color);
  color: #fff;
}
.p-filter-products dl ul .a.-cr::before {
  background-image: url("/products/assets/img/common/radio_active.svg");
}
@media (max-width: 1023px) {
  .p-filter-products dl {
    grid-template-columns: 1fr;
  }
  .p-filter-products dl dt {
    padding: 16px 24px;
    border-right: none;
    border-bottom: 1px solid var(--border-color);
  }
}
@media (max-width: 767px) {
  .p-filter-products .head-group {
    padding: 16px 24px;
  }
  .p-filter-products .head-group {
    padding: 16px 24px;
    font-size: 18px;
  }
  .p-filter-products dl dt {
    justify-content: center;
    padding: 8px 24px;
    font-size: 16px;
  }
  .p-filter-products dl dt {
    justify-content: center;
    padding: 8px 24px;
    font-size: 16px;
  }
  .p-filter-products dl ul .a {
    display: block;
    padding: 16px 8px;
    font-size: 14px;
    text-align: center;
  }
  .p-filter-products dl ul .a::before {
    margin: 0 auto 2px;
  }
}



/* ---------------- p-index-products */
.p-index-products {
  margin: 0 -1px -1px 0;
}
.p-index-products .container {
  overflow: hidden;
  position: relative;
}
.p-index-products .items {
  display: flex;
  flex-wrap: wrap;
}
.p-index-products .items .item {
  opacity: 0;
  position: relative;
  width: calc(25% + 1px);
  margin: -1px 0 0 -1px;
  padding: 24px 24px 72px;
  border: 1px solid var(--border-color);
  color: var(--text-color);
  text-decoration: none;
}
.p-index-products .items .item::after {
  content: '';
  position: absolute;
  bottom: 24px;
  right: 24px;
  aspect-ratio: 1 / 1;
  width: 30px;
  background: url(/products/assets/img/common/arw_circle.svg) no-repeat center center / contain;
}
.p-index-products .items .item:hover {
  background: var(--primary-color);
  color: #fff;
}
.p-index-products .items .item:hover::after {
  background-image: url(/products/assets/img/common/arw_circle_white.svg);
}
.p-index-products .items .item.-hidden {
  display: none;
}
.p-index-products .items figure {
  margin-bottom: 16px;
  transition: .2s var(--easing);
}
.p-index-products .items .item:hover figure {
  opacity: .7;
}
.p-index-products .items figure img {
  width: 100%;
}
.p-index-products .items .body {
  padding: 0 24px;
}
.p-index-products .items .title {
  font-size: 20px;
  font-weight: 700;
}
.p-index-products .items .name {
  margin-top: 8px;
  font-size: 14px;
}
.p-index-products .items .tags {
  margin-top: 24px;
}
@media (max-width: 1023px) {
  .p-index-products .items .item {
    width: calc(50% + 1px);
    padding: 8px 8px 56px;
  }
  .p-index-products .items .item::after {
    bottom: 16px;
    right: 16px;
    width: 24px;
  }
  .p-index-products .items figure {
    margin-bottom: 8px;
  }
  .p-index-products .items .body {
    padding: 0 8px;
  }
  .p-index-products .items .title {
    font-size: 16px;
    line-height: 1.5;
  }
  .p-index-products .items .name {
    margin-top: 4px;
    font-size: 12px;
  }
}

/* view */
.p-index-products .items.-view {
  opacity: 0;
  display: block;
  position: absolute;
  top: 1px;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-index-products .items.-view.-active {
  opacity: 1;
  transition: .2s var(--easing);
}
.p-index-products .items.-view .item {
  opacity: 1;
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: calc(25% + 1px);
  transition: .2s var(--easing);
}
.p-index-products .items.-view .item.-hidden {
  opacity: 0;
  z-index: 0;
}
@media (max-width: 1023px) {
  .p-index-products .items.-view .item {
    width: calc(50% + 1px);
  }
}
