@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&family=Montserrat:ital,wght@0,700;1,700&family=Noto+Sans+JP:wght@100..900&display=swap");
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

img {
  vertical-align: bottom;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  --Sans: "Noto Sans JP", sans-serif;
  --Mont: "Montserrat", sans-serif;
  --Lato: "Lato", sans-serif;
  --color01: #ffffff;
  --color02: #000000;
  --color03: #6E6E88;
  --color04: #DFEFFF;
}

@keyframes scrollAnime {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(100%);
  }
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 50px;
}
@media (width >= 1024px) {
  html {
    scroll-padding-top: 80px;
  }
}

body {
  font-family: var(--Sans);
  font-weight: 400;
  color: var(--color02);
  text-size-adjust: 100%;
  position: relative;
  overflow-x: hidden;
  z-index: -1;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; /* Safari */
}

.l-container p:empty {
  display: none;
}

.l-header {
  width: 100%;
  padding-top: 50px;
}
@media (width >= 1280px) {
  .l-header {
    padding-top: 80px;
  }
}

.l-footer .inner {
  width: 90%;
  margin: 0 auto;
  position: relative;
  padding: 50px 0 30px;
}
@media (width >= 1280px) {
  .l-footer .inner {
    width: 1200px;
    padding: 50px 0 33px;
  }
}
.l-footer__nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
  list-style: none;
}
@media (width >= 768px) {
  .l-footer__nav {
    gap: 40px;
    justify-content: flex-start;
  }
}
.l-footer__nav li a {
  display: block;
  font-size: 1.2rem;
  text-decoration: none;
}
@media (width >= 768px) {
  .l-footer__nav li a {
    font-size: 1.4rem;
  }
}
.l-footer__nav li a::before {
  content: "";
  display: block;
  width: 1px;
  height: 14px;
  position: absolute;
  top: 0;
  left: -20px;
}
@media (any-hover: hover) {
  .l-footer__nav li a:hover {
    text-decoration: underline;
  }
}
.l-footer__nav li:nth-last-of-type(2) a {
  position: relative;
}
.l-footer__nav li:nth-last-of-type(2) a::before, .l-footer__nav li:nth-last-of-type(2) a::after {
  content: "";
  display: block;
  width: 1px;
  height: 14px;
  background-color: var(--color02);
  position: absolute;
  top: 0;
}
.l-footer__nav li:nth-last-of-type(2) a::before {
  left: -10px;
}
@media (width >= 768px) {
  .l-footer__nav li:nth-last-of-type(2) a::before {
    left: -20px;
  }
}
.l-footer__nav li:nth-last-of-type(2) a::after {
  right: -10px;
}
@media (width >= 768px) {
  .l-footer__nav li:nth-last-of-type(2) a::after {
    right: -20px;
  }
}
.l-footer__logo {
  width: max-content;
  margin: 50px auto 0;
}
@media (width >= 768px) {
  .l-footer__logo {
    position: absolute;
    top: 68px;
    right: 0;
    margin: 0;
  }
}
.l-footer__copy {
  margin-top: 35px;
  font-size: 1rem;
  text-align: center;
}
@media (width >= 768px) {
  .l-footer__copy {
    font-size: 1.2rem;
    text-align: initial;
  }
}
.l-footer .pageup {
  display: none;
  width: 60px;
  height: 60px;
  border: 1px solid var(--color02);
  position: fixed;
  bottom: 10px;
  right: 10px;
  cursor: pointer;
}
.l-footer .pageup::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2213.414%22%20height%3D%228.121%22%20viewBox%3D%220%200%2013.414%208.121%22%3E%20%3Cpath%20id%3D%22_%22%20data-name%3D%22%26gt%3B%22%20d%3D%22M2811.707-1658.293l-1.414-1.414%2C5.293-5.293-5.293-5.293%2C1.414-1.414%2C6.707%2C6.707Z%22%20transform%3D%22translate(1671.707%202818.414)%20rotate(-90)%22%20fill%3D%22%23222%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (any-hover: hover) {
  .l-footer .pageup:hover {
    background-color: var(--color02);
  }
  .l-footer .pageup:hover::before {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2213.414%22%20height%3D%228.121%22%20viewBox%3D%220%200%2013.414%208.121%22%3E%20%3Cpath%20id%3D%22_%22%20data-name%3D%22%26gt%3B%22%20d%3D%22M2811.707-1658.293l-1.414-1.414%2C5.293-5.293-5.293-5.293%2C1.414-1.414%2C6.707%2C6.707Z%22%20transform%3D%22translate(1671.707%202818.414)%20rotate(-90)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
  }
}

.l-col__col-1 {
  width: 90vw;
  margin: 0 auto;
  padding: 60px 0 80px;
}
@media (width >= 1280px) {
  .l-col__col-1 {
    width: 1200px;
    padding: 100px 0 160px;
  }
}
@media (width >= 1024px) {
  .l-col__col-1--900 {
    width: 900px;
  }
}
@media (width >= 1024px) {
  .l-col__col-1--1080 {
    width: 1080px;
  }
}
.l-col__col-2.news {
  display: flex;
  flex-direction: column-reverse;
  gap: 60px;
  padding: 0 0 65px;
  position: relative;
}
@media (width >= 768px) {
  .l-col__col-2.news {
    width: 90vw;
    margin: 0 auto;
    padding: 65px 0;
    flex-direction: row;
    gap: 40px;
  }
}
@media (width >= 1280px) {
  .l-col__col-2.news {
    width: 1200px;
    flex-direction: row;
  }
}
.l-col__col-2.news main {
  width: 90%;
  margin: 0 auto;
}
@media (width >= 768px) {
  .l-col__col-2.news main {
    width: calc(100% - 298px);
    margin: 0;
  }
}
@media (width >= 1280px) {
  .l-col__col-2.news main {
    width: 896px;
  }
}

.l-wrapper {
  overflow: clip;
  position: relative;
}
@media (width >= 1024px) {
  .l-wrapper {
    background-image: url(../img/bg_page.jpg);
    background-repeat: repeat-y;
    background-position: 50% 0;
    z-index: -1;
  }
  .td-home .l-wrapper {
    background: none !important;
  }
}
.l-wrapper:has(.l-col__col-2) {
  background-position: 50% 200px;
}
@media (width >= 1024px) {
  .l-wrapper:has(.l-col__col-2) .l-wrapper__bg {
    width: calc(5% + 300px);
    height: 100%;
    background-color: var(--color03);
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
  }
}
@media (width >= 1280px) {
  .l-wrapper:has(.l-col__col-2) .l-wrapper__bg {
    width: calc((100% - 1180px) / 2 + 410px);
  }
}
.single-seminar-td .l-wrapper, .single-download-td .l-wrapper {
  background: none;
}

.l-sidebar {
  position: sticky;
  top: 50px;
  padding: 16px;
  background-color: rgba(0, 0, 0, 0.48);
  z-index: 10;
}
@media (width >= 768px) {
  .l-sidebar {
    position: absolute;
    top: -100px;
    right: 0;
    padding: 0;
    background-color: transparent;
  }
}
@media (width >= 1024px) {
  .l-sidebar {
    top: -300px;
    right: 0;
  }
}
.l-sidebar .inner {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  overflow: auto;
  white-space: nowrap;
  scrollbar-width: none;
}
@media (width >= 768px) {
  .l-sidebar .inner {
    flex-direction: column;
    align-items: flex-start;
    position: sticky;
    top: 140px;
    width: 264px;
    padding: 24px;
    background-color: var(--color01);
    box-shadow: 0 0 40px rgba(0, 71, 161, 0.2);
  }
}

.c-button-01 {
  width: 100%;
  height: 100%;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--color01);
  border: 1px solid #333333;
  background-color: #333333;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 30px;
  transition: all 0.2s ease;
}
@media (width >= 768px) {
  .c-button-01 {
    font-size: 2rem;
  }
}
@media (any-hover: hover) {
  .c-button-01:hover {
    color: var(--color02);
    background-color: var(--color01);
  }
  .c-button-01:hover::after {
    background-color: #333333;
  }
}
.c-button-01::after {
  content: "";
  display: block;
  position: absolute;
  background-color: var(--color01);
  mask-repeat: no-repeat;
  mask-size: contain;
}
.c-button-01[target=_blank]::after {
  width: 16px;
  height: 16px;
  mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%20%3Cpath%20id%3D%22icon_external1_1%22%20d%3D%22M12%2C12v3.2a.8.8%2C0%2C0%2C1-.8.8H.8a.8.8%2C0%2C0%2C1-.8-.8V4.8A.8.8%2C0%2C0%2C1%2C.8%2C4H4V.806A.8.8%2C0%2C0%2C1%2C4.806%2C0H15.194A.8.8%2C0%2C0%2C1%2C16%2C.806l0%2C10.388a.805.805%2C0%2C0%2C1-.806.806Zm-1.6%2C0H4.806A.8.8%2C0%2C0%2C1%2C4%2C11.194V5.6H1.6v8.8h8.8Zm4-1.6%2C0-8.8H5.6v8.8Z%22%20fill%3D%22%230076be%22%2F%3E%3C%2Fsvg%3E");
  top: 50%;
  right: 20px;
  transform: translate(0, -50%);
}
.c-button-01--arrow::after {
  width: 16px;
  height: 16px;
  mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20id%3D%22icon_05-arrow2-r%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%20%3Crect%20id%3D%22area%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%23fff%22%20opacity%3D%220%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_548%22%20data-name%3D%22%E3%83%91%E3%82%B9%20548%22%20d%3D%22M1.3%2C0%2C.01%2C1.531l6.432%2C5.41L0%2C12.5l1.307%2C1.514%2C8.22-7.1Z%22%20transform%3D%22translate(3%200.999)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
  top: 50%;
  right: 16px;
  transform: translate(0, -50%);
}
.c-button-01--shadow {
  box-shadow: 0 5px 40px rgba(0, 155, 255, 0.3);
}
.c-button-01--dl::after {
  width: 16px;
  height: 17px;
  mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2217%22%20height%3D%2218%22%20viewBox%3D%220%200%2017%2018%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_8295%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%208295%22%20transform%3D%22translate(-540.44%20-4489.081)%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_975%22%20data-name%3D%22%E3%83%91%E3%82%B9%20975%22%20d%3D%22M265.6%2C30.363l6.065-5.507L265.6%2C19.348%22%20transform%3D%22translate(573.796%204231.809)%20rotate(90)%22%20fill%3D%22none%22%20stroke%3D%22%23009bff%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221%22%2F%3E%20%3Cline%20id%3D%22%E7%B7%9A_45%22%20data-name%3D%22%E7%B7%9A%2045%22%20y2%3D%2210%22%20transform%3D%22translate(548.94%204489.581)%22%20fill%3D%22none%22%20stroke%3D%22%23009bff%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%221%22%2F%3E%20%3Cline%20id%3D%22%E7%B7%9A_46%22%20data-name%3D%22%E7%B7%9A%2046%22%20y2%3D%2216%22%20transform%3D%22translate(556.94%204506.581)%20rotate(90)%22%20fill%3D%22none%22%20stroke%3D%22%23009bff%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%221%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
  top: 50%;
  right: 20px;
  transform: translate(0, -50%);
}
.c-button-01--down::after {
  width: 12px;
  height: 13px;
  mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22480%22%20height%3D%22520%22%20viewBox%3D%220%200%20480%20520%22%3E%20%3Cpath%20id%3D%22arrow_downward_alt_24dp_1F1F1F_FILL0_wght400_GRAD0_opsz24%22%20d%3D%22M480-240%2C240-480l56-56L440-392V-760h80v368L664-536l56%2C56Z%22%20transform%3D%22translate(-240%20760)%22%20fill%3D%22%231f1f1f%22%2F%3E%3C%2Fsvg%3E");
  top: 50%;
  right: 20px;
  transform: translate(0, -50%);
}

.c-button-02 {
  width: 100%;
  height: 100%;
  font-size: 1.6rem;
  font-weight: 500;
  color: #333333;
  border: 1px solid var(--color01);
  background-color: var(--color01);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 30px;
  transition: all 0.2s ease;
}
@media (width >= 768px) {
  .c-button-02 {
    font-size: 2rem;
  }
}
@media (any-hover: hover) {
  .c-button-02:hover {
    color: var(--color01);
    background-color: #333333;
  }
  .c-button-02:hover::after {
    background-color: var(--color01);
  }
}
.c-button-02::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #333333;
  mask-repeat: no-repeat;
  mask-size: contain;
}
.c-button-02[target=_blank]::after {
  width: 16px;
  height: 16px;
  mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%20%3Cpath%20id%3D%22icon_external1_1%22%20d%3D%22M12%2C12v3.2a.8.8%2C0%2C0%2C1-.8.8H.8a.8.8%2C0%2C0%2C1-.8-.8V4.8A.8.8%2C0%2C0%2C1%2C.8%2C4H4V.806A.8.8%2C0%2C0%2C1%2C4.806%2C0H15.194A.8.8%2C0%2C0%2C1%2C16%2C.806l0%2C10.388a.805.805%2C0%2C0%2C1-.806.806Zm-1.6%2C0H4.806A.8.8%2C0%2C0%2C1%2C4%2C11.194V5.6H1.6v8.8h8.8Zm4-1.6%2C0-8.8H5.6v8.8Z%22%20fill%3D%22%230076be%22%2F%3E%3C%2Fsvg%3E");
  top: 50%;
  right: 20px;
  transform: translate(0, -50%);
}
.c-button-02--arrow::after {
  width: 16px;
  height: 16px;
  mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20id%3D%22icon_05-arrow2-r%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%20%3Crect%20id%3D%22area%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%23fff%22%20opacity%3D%220%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_548%22%20data-name%3D%22%E3%83%91%E3%82%B9%20548%22%20d%3D%22M1.3%2C0%2C.01%2C1.531l6.432%2C5.41L0%2C12.5l1.307%2C1.514%2C8.22-7.1Z%22%20transform%3D%22translate(3%200.999)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
  top: 50%;
  right: 16px;
  transform: translate(0, -50%);
}
.c-button-02--shadow {
  box-shadow: 0 5px 40px rgba(0, 155, 255, 0.3);
}
.c-button-02--dl::after {
  width: 16px;
  height: 17px;
  mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2217%22%20height%3D%2218%22%20viewBox%3D%220%200%2017%2018%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_8295%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%208295%22%20transform%3D%22translate(-540.44%20-4489.081)%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_975%22%20data-name%3D%22%E3%83%91%E3%82%B9%20975%22%20d%3D%22M265.6%2C30.363l6.065-5.507L265.6%2C19.348%22%20transform%3D%22translate(573.796%204231.809)%20rotate(90)%22%20fill%3D%22none%22%20stroke%3D%22%23009bff%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221%22%2F%3E%20%3Cline%20id%3D%22%E7%B7%9A_45%22%20data-name%3D%22%E7%B7%9A%2045%22%20y2%3D%2210%22%20transform%3D%22translate(548.94%204489.581)%22%20fill%3D%22none%22%20stroke%3D%22%23009bff%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%221%22%2F%3E%20%3Cline%20id%3D%22%E7%B7%9A_46%22%20data-name%3D%22%E7%B7%9A%2046%22%20y2%3D%2216%22%20transform%3D%22translate(556.94%204506.581)%20rotate(90)%22%20fill%3D%22none%22%20stroke%3D%22%23009bff%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%221%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
  top: 50%;
  right: 20px;
  transform: translate(0, -50%);
}
.c-button-02--down::after {
  width: 12px;
  height: 13px;
  mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22480%22%20height%3D%22520%22%20viewBox%3D%220%200%20480%20520%22%3E%20%3Cpath%20id%3D%22arrow_downward_alt_24dp_1F1F1F_FILL0_wght400_GRAD0_opsz24%22%20d%3D%22M480-240%2C240-480l56-56L440-392V-760h80v368L664-536l56%2C56Z%22%20transform%3D%22translate(-240%20760)%22%20fill%3D%22%231f1f1f%22%2F%3E%3C%2Fsvg%3E");
  top: 50%;
  right: 20px;
  transform: translate(0, -50%);
}

.c-button-03 {
  width: 100%;
  height: 100%;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--color01);
  border: 1px solid #004D99;
  background-color: #004D99;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 30px;
  transition: all 0.2s ease;
}
@media (width >= 1280px) {
  .c-button-03 {
    font-size: 2rem;
  }
}
@media (any-hover: hover) {
  .c-button-03:hover {
    color: #004D99;
    background-color: var(--color01);
  }
  .c-button-03:hover::after {
    background-color: #004D99;
  }
}

.c-button-04 {
  width: 100%;
  height: 100%;
  font-size: 1.4rem;
  font-weight: 500;
  color: #004D99;
  border: 1px solid #004D99;
  background-color: var(--color01);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0 20px;
  transition: all 0.2s ease;
}
@media (width >= 1024px) {
  .c-button-04 {
    font-size: 1.6rem;
    padding: 0 30px;
  }
}
.c-button-04::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #004D99;
  mask-repeat: no-repeat;
  mask-size: contain;
}
.c-button-04--arrow::after {
  width: 16px;
  height: 16px;
  mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20id%3D%22icon_05-arrow2-r%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%20%3Crect%20id%3D%22area%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%23fff%22%20opacity%3D%220%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_548%22%20data-name%3D%22%E3%83%91%E3%82%B9%20548%22%20d%3D%22M1.3%2C0%2C.01%2C1.531l6.432%2C5.41L0%2C12.5l1.307%2C1.514%2C8.22-7.1Z%22%20transform%3D%22translate(3%200.999)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
  top: 50%;
  right: 10px;
  transform: translate(0, -50%);
}
@media (width >= 1280px) {
  .c-button-04--arrow::after {
    right: 16px;
  }
}
.c-button-04--dl::after {
  width: 13px;
  height: 10px;
  mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2210%22%20height%3D%227%22%20viewBox%3D%220%200%2010%207%22%3E%20%3Cpath%20id%3D%22keyboard_arrow_down_24dp_1F1F1F_FILL0_wght400_GRAD0_opsz24_1_%22%20data-name%3D%22keyboard_arrow_down_24dp_1F1F1F_FILL0_wght400_GRAD0_opsz24%20(1)%22%20d%3D%22M245-633l-5-5.676L241.167-640%2C245-635.649%2C248.833-640%2C250-638.676Z%22%20transform%3D%22translate(-240%20640)%22%20fill%3D%22%231f1f1f%22%2F%3E%3C%2Fsvg%3E");
  top: 50%;
  right: 10px;
  transform: translate(0, -50%);
}
@media (width >= 1280px) {
  .c-button-04--dl::after {
    right: 20px;
  }
}
.c-button-04--back::after {
  width: 16px;
  height: 16px;
  mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%229%22%20height%3D%2216%22%20viewBox%3D%220%200%209%2016%22%3E%20%3Cpath%20id%3D%22arrow_back_ios_new_24dp_1F1F1F_FILL0_wght400_GRAD0_opsz24%22%20d%3D%22M247.643-864%2C240-872l7.643-8L249-878.58%2C242.713-872%2C249-865.42Z%22%20transform%3D%22translate(-240%20880)%22%20fill%3D%22%231f1f1f%22%2F%3E%3C%2Fsvg%3E");
  top: 50%;
  left: 10px;
  transform: translate(0, -50%);
}
@media (width >= 1280px) {
  .c-button-04--back::after {
    left: 16px;
  }
}

@media (any-hover: hover) {
  a.c-button-04:hover {
    color: var(--color01);
    background-color: #004D99;
  }
  a.c-button-04:hover::after {
    background-color: var(--color01);
  }
}

.c-pageup {
  display: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #6E6E88;
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 50;
  cursor: pointer;
}
@media (width >= 768px) {
  .c-pageup {
    right: 36px;
  }
}
@media (any-hover: hover) {
  .c-pageup:hover {
    background-color: var(--color02);
  }
}
.c-pageup::after {
  content: "";
  width: 15px;
  height: 13px;
  background-color: var(--color01);
  mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212.32%22%20height%3D%2210.711%22%20viewBox%3D%220%200%2012.32%2010.711%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_44008%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2044008%22%20transform%3D%22translate(-5.84%20-10.395)%22%3E%20%3Cline%20id%3D%22Line_4%22%20data-name%3D%22Line%204%22%20x2%3D%2212.32%22%20transform%3D%22translate(5.84%2010.895)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%221%22%2F%3E%20%3Cpath%20id%3D%22Vector%22%20d%3D%22M0%2C0%2C6.16%2C5.57%2C12.32%2C0V2.64L6.16%2C8.21%2C0%2C2.64Z%22%20transform%3D%22translate(18.16%2021.105)%20rotate(180)%22%20fill%3D%22%23fff%22%20fill-rule%3D%22evenodd%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
  mask-repeat: no-repeat;
  mask-size: contain;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.c-card__cat {
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.c-card__cat__item {
  width: max-content;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #333333;
  border-radius: 2px;
}
.c-card.product {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (width >= 768px) {
  .c-card.product {
    display: grid;
    grid-template-columns: repeat(3, 32%);
    grid-template-rows: auto;
    gap: 0 2%;
  }
}
@media (width >= 1280px) {
  .c-card.product {
    grid-template-columns: repeat(3, 320px);
    gap: 0 40px;
  }
}
.c-card.product .c-card__item {
  display: flex;
  flex-direction: column;
  gap: 12px 0;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(0, 0, 75, 0.15);
  transition: all 0.2s ease;
}
@media (width >= 768px) {
  .c-card.product .c-card__item {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 4;
  }
}
@media (any-hover: hover) {
  .c-card.product .c-card__item:hover {
    opacity: 0.75;
  }
}
.c-card.product .c-card__thumb {
  height: 180px;
}
.c-card.product .c-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-card.product .c-card__cat {
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
}
.c-card.product .c-card__cat__item {
  width: max-content;
  padding: 4px 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #333333;
  border-radius: 2px;
}
.c-card.product .c-card__cat__item.bk {
  background-color: var(--color02);
  color: var(--color01);
}
.c-card.product .c-card__title {
  font-size: 1.3rem;
  font-weight: 700;
  padding: 0 20px;
  line-height: 1.6;
}
.c-card.product .c-card__text {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1D61BC;
  line-height: 1.6;
  padding: 0 20px 30px;
}
@media (width >= 768px) {
  .c-card.product .c-card__text {
    font-size: 1.6rem;
  }
}
.c-card.product .c-card__text.black {
  color: #333333;
  font-weight: 400;
}
.c-card.product .c-card__date {
  font-size: 1.4rem;
  font-weight: 700;
  padding: 0 20px;
  line-height: 1.6;
  margin-bottom: 3px;
}
@media (width >= 1024px) {
  .c-card.product .c-card__date {
    font-size: 1.6rem;
  }
}
.c-card.case {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (width >= 768px) {
  .c-card.case {
    display: grid;
    grid-template-columns: repeat(2, 47%);
    grid-template-rows: auto;
    gap: 0 6%;
    margin-bottom: -50px;
  }
}
@media (width >= 1280px) {
  .c-card.case {
    width: 989px;
    margin: 0 auto;
    grid-template-columns: repeat(2, 449px);
    gap: 0 91px;
    margin-bottom: -70px;
  }
}
@media (any-hover: hover) {
  .c-card.case a:hover {
    opacity: 0.75;
  }
}
.c-card.case .c-card__item {
  display: flex;
  flex-direction: column;
  gap: 12px 0;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(0, 0, 75, 0.15);
  transition: all 0.2s ease;
}
@media (width >= 768px) {
  .c-card.case .c-card__item {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 4;
    margin-bottom: 50px;
  }
}
@media (width >= 1280px) {
  .c-card.case .c-card__item {
    margin-bottom: 70px;
  }
}
.c-card.case .c-card__item[target=_blank] .c-card__text__in {
  padding: 0 50px 0 20px;
  position: relative;
}
.c-card.case .c-card__item[target=_blank] .c-card__text__in::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-color: #1D61BC;
  mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%20%3Cpath%20id%3D%22icon_external1_1%22%20d%3D%22M12%2C12v3.2a.8.8%2C0%2C0%2C1-.8.8H.8a.8.8%2C0%2C0%2C1-.8-.8V4.8A.8.8%2C0%2C0%2C1%2C.8%2C4H4V.806A.8.8%2C0%2C0%2C1%2C4.806%2C0H15.194A.8.8%2C0%2C0%2C1%2C16%2C.806l0%2C10.388a.805.805%2C0%2C0%2C1-.806.806Zm-1.6%2C0H4.806A.8.8%2C0%2C0%2C1%2C4%2C11.194V5.6H1.6v8.8h8.8Zm4-1.6%2C0-8.8H5.6v8.8Z%22%20fill%3D%22%230076be%22%2F%3E%3C%2Fsvg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translate(0, -50%);
}
.c-card.case .c-card__thumb {
  height: 202px;
  margin-bottom: 5px;
}
.c-card.case .c-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-card.case .c-card__cat {
  padding: 0 20px;
}
.c-card.case .c-card__cat__item {
  width: max-content;
  height: 26px;
  padding: 0 5px;
  font-size: 1.2rem;
}
.c-card.case .c-card__title {
  font-size: 1.3rem;
  font-weight: 700;
  padding: 0 20px 30px;
}
.c-card.case .c-card__title:has(+ .c-card__text) {
  padding: 0 20px;
}
.c-card.case .c-card__text {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1D61BC;
  line-height: 1.6;
  padding: 0 0 30px;
  position: relative;
}
@media (width >= 768px) {
  .c-card.case .c-card__text {
    font-size: 1.6rem;
  }
}
.c-card.case .c-card__text__in {
  padding: 0 20px;
}
.c-card.case .c-card__text.black {
  color: #333333;
  font-weight: 400;
}
.c-card.case .c-card__date {
  font-size: 1.4rem;
  font-weight: 700;
  padding: 0 20px;
  line-height: 1.6;
  margin-bottom: 3px;
}
@media (width >= 1024px) {
  .c-card.case .c-card__date {
    font-size: 1.6rem;
  }
}
.c-card.case_text {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (width >= 768px) {
  .c-card.case_text {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 60px 87px;
    width: 90vw;
    margin: 0 auto;
  }
}
@media (width >= 1024px) {
  .c-card.case_text {
    width: 985px;
  }
}
.c-card.case_text .c-card__item2 {
  font-size: 1.4rem;
  line-height: 1.6;
}
@media (width >= 768px) {
  .c-card.case_text .c-card__item2 {
    width: calc((100% - 87px) / 2);
    font-size: 2rem;
  }
}
.c-card.case_text .c-card__item2 a {
  text-decoration: underline;
  color: #000;
  position: relative;
  display: inline-block;
  padding-right: 30px;
}
@media (any-hover: hover) {
  .c-card.case_text .c-card__item2 a:hover {
    text-decoration: none;
  }
}
.c-card.case_text .c-card__item2 a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: 24px;
  height: 24px;
  margin: auto;
  background-color: #004D99;
  mask-image: url(../image/icon_arw1_1.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 9px 13px;
}
.c-card.case_text .c-card__item2 a[target=_blank]::after {
  mask-image: url(../image/icon_external1_1.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 16px 16px;
}
.c-card:has(.c-card__item2) {
  margin-top: 123px;
  gap: 30px;
}
@media (width >= 768px) {
  .c-card:has(.c-card__item2) {
    gap: 40px 87px;
  }
}
.c-card.download {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (width >= 768px) {
  .c-card.download {
    display: grid;
    grid-template-columns: repeat(2, 47%);
    grid-template-rows: auto;
    gap: 0 6%;
    margin-bottom: -50px;
  }
}
@media (width >= 1280px) {
  .c-card.download {
    margin: 0 auto;
    grid-template-columns: repeat(3, 380px);
    gap: 0 30px;
    margin-bottom: -70px;
  }
}
.c-card.download .c-card__item {
  display: flex;
  flex-direction: column;
  gap: 12px 0;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(0, 0, 75, 0.15);
  transition: all 0.2s ease;
  padding: 30px 24px;
}
@media (width >= 768px) {
  .c-card.download .c-card__item {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 5;
    margin-bottom: 50px;
  }
}
@media (width >= 1280px) {
  .c-card.download .c-card__item {
    margin-bottom: 70px;
  }
}
@media (any-hover: hover) {
  .c-card.download .c-card__item:hover .c-card__thumb {
    opacity: 0.75;
  }
  .c-card.download .c-card__item:hover .c-button-04 {
    color: var(--color01);
    background-color: #004D99;
  }
  .c-card.download .c-card__item:hover .c-button-04::after {
    background-color: var(--color01);
  }
}
.c-card.download .c-card__item[target=_blank] .c-button-04--arrow::after {
  mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%20%3Cpath%20id%3D%22icon_external1_1%22%20d%3D%22M12%2C12v3.2a.8.8%2C0%2C0%2C1-.8.8H.8a.8.8%2C0%2C0%2C1-.8-.8V4.8A.8.8%2C0%2C0%2C1%2C.8%2C4H4V.806A.8.8%2C0%2C0%2C1%2C4.806%2C0H15.194A.8.8%2C0%2C0%2C1%2C16%2C.806l0%2C10.388a.805.805%2C0%2C0%2C1-.806.806Zm-1.6%2C0H4.806A.8.8%2C0%2C0%2C1%2C4%2C11.194V5.6H1.6v8.8h8.8Zm4-1.6%2C0-8.8H5.6v8.8Z%22%20fill%3D%22%230076be%22%2F%3E%3C%2Fsvg%3E");
}
.c-card.download .c-card__thumb {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.c-card.download .c-card__thumb img {
  width: 100%;
  height: auto;
}
.c-card.download .c-card__cat {
  padding: 0;
}
.c-card.download .c-card__cat__item {
  width: max-content;
  height: 26px;
  padding: 0 5px;
  font-size: 1.2rem;
}
.c-card.download .c-card__title {
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: 700;
}
.c-card.download .c-card__text {
  font-size: 1.4rem;
  line-height: 2;
}
.c-card.download .c-card__text span {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.c-card.download .c-card__btn {
  height: 50px;
}
.c-card.column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (width >= 768px) {
  .c-card.column {
    display: grid;
    grid-template-columns: repeat(2, 47%);
    grid-template-rows: auto;
    gap: 0 6%;
    margin-bottom: -50px;
  }
}
@media (width >= 1280px) {
  .c-card.column {
    margin: 0 auto;
    grid-template-columns: repeat(3, 380px);
    gap: 0 30px;
    margin-bottom: -70px;
  }
}
.c-card.column .c-card__item {
  display: flex;
  flex-direction: column;
  gap: 12px 0;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(0, 0, 75, 0.15);
  transition: all 0.2s ease;
}
@media (width >= 768px) {
  .c-card.column .c-card__item {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 4;
    margin-bottom: 50px;
  }
}
@media (width >= 1280px) {
  .c-card.column .c-card__item {
    margin-bottom: 70px;
  }
}
@media (any-hover: hover) {
  .c-card.column .c-card__item:hover {
    opacity: 0.75;
  }
}
.c-card.column .c-card__thumb {
  height: 210px;
  margin-bottom: 5px;
}
.c-card.column .c-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-card.column .c-card__cat {
  padding: 0 20px;
}
.c-card.column .c-card__cat__item {
  width: max-content;
  height: 26px;
  padding: 0 5px;
  font-size: 1.2rem;
}
.c-card.column .c-card__title {
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: 700;
  padding: 0 20px 60px;
}
.c-card.seminar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (width >= 768px) {
  .c-card.seminar {
    display: grid;
    grid-template-columns: repeat(2, 47%);
    grid-template-rows: auto;
    gap: 0 6%;
    margin-bottom: -50px;
  }
}
@media (width >= 1280px) {
  .c-card.seminar {
    margin: 0 auto;
    grid-template-columns: repeat(3, 380px);
    gap: 0 30px;
    margin-bottom: -70px;
  }
}
.c-card.seminar .c-card__item {
  display: flex;
  flex-direction: column;
  gap: 12px 0;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(0, 0, 75, 0.15);
  transition: all 0.2s ease;
}
@media (width >= 768px) {
  .c-card.seminar .c-card__item {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 4;
    margin-bottom: 50px;
  }
}
@media (width >= 1280px) {
  .c-card.seminar .c-card__item {
    margin-bottom: 70px;
  }
}
@media (any-hover: hover) {
  .c-card.seminar .c-card__item:hover {
    opacity: 0.75;
  }
}
.c-card.seminar .c-card__item[target=_blank] .c-card__text__in {
  padding: 0 25px 0 0;
  position: relative;
}
.c-card.seminar .c-card__item[target=_blank] .c-card__text__in::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-color: #1D61BC;
  mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%20%3Cpath%20id%3D%22icon_external1_1%22%20d%3D%22M12%2C12v3.2a.8.8%2C0%2C0%2C1-.8.8H.8a.8.8%2C0%2C0%2C1-.8-.8V4.8A.8.8%2C0%2C0%2C1%2C.8%2C4H4V.806A.8.8%2C0%2C0%2C1%2C4.806%2C0H15.194A.8.8%2C0%2C0%2C1%2C16%2C.806l0%2C10.388a.805.805%2C0%2C0%2C1-.806.806Zm-1.6%2C0H4.806A.8.8%2C0%2C0%2C1%2C4%2C11.194V5.6H1.6v8.8h8.8Zm4-1.6%2C0-8.8H5.6v8.8Z%22%20fill%3D%22%230076be%22%2F%3E%3C%2Fsvg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
.c-card.seminar .c-card__thumb {
  height: 180px;
  margin-bottom: 5px;
}
@media (width >= 768px) {
  .c-card.seminar .c-card__thumb {
    height: 210px;
  }
}
.c-card.seminar .c-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-card.seminar .c-card__cat {
  padding: 0 20px;
}
.c-card.seminar .c-card__cat__item {
  width: max-content;
  height: 26px;
  padding: 0 5px;
  font-size: 1.2rem;
}
.c-card.seminar .c-card__cat__item.bk {
  background-color: var(--color02);
  color: var(--color01);
}
.c-card.seminar .c-card__text {
  font-size: 1.4rem;
  line-height: 1.6;
  padding: 0 20px 30px;
}
.c-card.seminar .c-card__text__in {
  padding: 0 20px;
}
.c-card.seminar .c-card__date {
  font-size: 1.4rem;
  font-weight: 700;
  padding: 0 20px;
  line-height: 1.6;
  margin-bottom: 3px;
}
@media (width >= 1024px) {
  .c-card.seminar .c-card__date {
    font-size: 1.6rem;
  }
}
.c-card.blog {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (width >= 768px) {
  .c-card.blog {
    display: grid;
    grid-template-columns: repeat(3, 32%);
    grid-template-rows: auto;
    gap: 20px 2%;
  }
}
@media (width >= 1280px) {
  .c-card.blog {
    grid-template-columns: repeat(3, 368px);
    gap: 48px;
  }
}
.c-card.blog .c-card__item {
  display: flex;
  flex-direction: column;
  gap: 12px 0;
  text-decoration: none;
  box-shadow: 0 0 15px rgba(0, 0, 75, 0.15);
  background-color: var(--color01);
  transition: all 0.2s ease;
}
@media (width >= 768px) {
  .c-card.blog .c-card__item {
    display: grid;
    gap: 14px 0;
    grid-template-rows: subgrid;
    grid-row: span 3;
  }
}
@media (any-hover: hover) {
  .c-card.blog .c-card__item:hover {
    filter: brightness(1.1);
  }
}
.c-card.blog .c-card__thumb {
  height: 206px;
  margin-bottom: 8px;
}
@media (width >= 768px) {
  .c-card.blog .c-card__thumb {
    margin: 0;
  }
}
.c-card.blog .c-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-card.blog .c-card__cat {
  padding: 0 20px;
}
.c-card.blog .c-card__cat__item {
  width: max-content;
  height: 26px;
  padding: 0 5px;
  font-size: 1.2rem;
}
.c-card.blog .c-card__title {
  font-size: 1.4rem;
  font-weight: 400;
  color: #333333;
  line-height: 1.6;
  padding: 0 20px 30px;
}
@media (width >= 1024px) {
  .c-card.blog .c-card__title {
    font-size: 1.6rem;
  }
}

.c-cat__pt01 {
  width: 90%;
  margin: 0 auto 70px;
}
@media (width >= 1280px) {
  .c-cat__pt01 {
    width: 1080px;
    margin: 35px auto 140px;
  }
}
.c-cat__pt01__item {
  display: flex;
  gap: 20px;
  flex-direction: column;
}
@media (width >= 768px) {
  .c-cat__pt01__item {
    flex-direction: row;
    gap: 36px;
    align-items: center;
  }
}
.c-cat__pt01__item:not(:first-of-type) {
  margin-top: 44px;
}
.c-cat__pt01__item__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}
@media (width >= 768px) {
  .c-cat__pt01__item__title {
    margin: 0;
    width: 120px;
  }
}
@media (width >= 768px) {
  .c-cat__pt01__item__cat {
    width: calc(100% - 176px);
  }
}
.c-cat__pt01__item__cat ul {
  display: flex;
  gap: 30px 8px;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
}
.c-cat__pt01__item__cat ul li input[type=checkbox] {
  display: none;
}
.c-cat__pt01__item__cat ul li .c-cat__pt01__item__cat__label {
  background-color: #fff;
  border: 1px solid #C8C8C8;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 23px 6px;
}
.c-cat__pt01__item__cat ul li input[type=checkbox]:checked + .c-cat__pt01__item__cat__label {
  background-color: #000;
  color: #fff;
  border: 1px solid #000;
}
.c-cat__pt01__btn {
  width: 234px;
  height: 50px;
  margin: 64px auto 0;
}
@media (width >= 768px) {
  .c-cat__pt01__btn {
    margin: 93px auto 0;
  }
}
.c-cat__pt01__btn input {
  cursor: pointer;
}

.p-nav {
  position: relative;
}
.p-nav#header {
  width: 100%;
  background-color: var(--color01);
  transition: background-color 0.3s ease, all 0.3s ease;
  height: 50px;
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--color02);
}
@media (width >= 1280px) {
  .p-nav#header {
    height: 80px;
  }
}
@media (width >= 600px) {
  .logged-in .p-nav#header {
    top: 32px;
  }
}
.p-nav#header .inner {
  height: 100%;
  position: relative;
}
@media (width >= 1280px) {
  .p-nav#header .inner {
    width: 98%;
    margin: 0 auto;
  }
}
.p-nav#header .p-nav__logo {
  position: absolute;
  top: 9px;
  left: 20px;
  z-index: 10;
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
@media (width >= 1280px) {
  .p-nav#header .p-nav__logo {
    top: 20px;
    left: 0;
    transition: background-color 0.3s ease, all 0.3s ease;
  }
}
.p-nav#header .p-nav__logo__image {
  display: block;
  width: 100%;
  height: 100%;
  width: 120px;
  height: 27.69px;
}
@media (width >= 1280px) {
  .p-nav#header .p-nav__logo__image {
    width: 145px;
    height: auto;
  }
}
.p-nav#header .p-nav__logo__image img {
  width: 100%;
  height: auto;
}
.p-nav#header .p-nav__logo__text {
  color: var(--color01);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 5px;
}
@media (width >= 768px) {
  .p-nav#header .p-nav__logo__text {
    font-size: 1.2rem;
  }
}
.p-nav#header .p-nav__menu {
  --opacity: 0;
  --pointer-events: none;
  width: 100vw;
  height: 100vh;
  opacity: var(--opacity);
  pointer-events: var(--pointer-events);
  overflow-y: scroll;
  padding: 30px 0 100px;
  transition: opacity 0.3s ease;
  position: absolute;
  background-color: var(--color02);
  top: 50px;
}
@media (width >= 1280px) {
  .p-nav#header .p-nav__menu {
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 32px;
    background-color: transparent;
    opacity: 1;
    pointer-events: all;
    overflow-y: visible;
    padding: 0;
    width: auto;
    height: 100%;
    position: relative;
    top: auto;
  }
}
.p-nav#header .p-nav__menu.is-active {
  --opacity: 1;
  --pointer-events: all;
}
.p-nav#header .p-nav__g_nav {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (width >= 1280px) {
  .p-nav#header .p-nav__g_nav {
    flex-direction: row;
    gap: 36px;
    width: max-content;
    margin: 0;
  }
}
.p-nav#header .p-nav__g_nav > li {
  width: 100%;
}
@media (width >= 1280px) {
  .p-nav#header .p-nav__g_nav > li {
    width: auto;
  }
}
.p-nav#header .p-nav__g_nav > li > a,
.p-nav#header .p-nav__g_nav > li .drop {
  font-size: 1.6rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  color: var(--color01);
  width: 100%;
  height: 65px;
  text-decoration: none;
  position: relative;
  border-bottom: 1px solid var(--color01);
  padding: 0 15px;
}
@media (width >= 1280px) {
  .p-nav#header .p-nav__g_nav > li > a,
  .p-nav#header .p-nav__g_nav > li .drop {
    font-size: 1.4rem;
    height: 50px;
    border: none;
    background-color: transparent;
    transition: all 0.2s ease;
    padding: 0;
  }
}
.p-nav#header .p-nav__g_nav > li > a::before,
.p-nav#header .p-nav__g_nav > li .drop::before {
  content: "";
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  mask-size: contain;
  mask-position: center;
  background-color: var(--color01);
  mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20id%3D%22icon_05-arrow2-r%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%20%3Crect%20id%3D%22area%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%23fff%22%20opacity%3D%220%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_548%22%20data-name%3D%22%E3%83%91%E3%82%B9%20548%22%20d%3D%22M1.3%2C0%2C.01%2C1.531l6.432%2C5.41L0%2C12.5l1.307%2C1.514%2C8.22-7.1Z%22%20transform%3D%22translate(3%200.999)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
  top: 25px;
  right: 20px;
}
@media (width >= 1280px) {
  .p-nav#header .p-nav__g_nav > li > a::before,
  .p-nav#header .p-nav__g_nav > li .drop::before {
    display: none;
  }
}
.p-nav#header .p-nav__g_nav > li > a::after,
.p-nav#header .p-nav__g_nav > li .drop::after {
  display: none;
}
@media (width >= 1280px) {
  .p-nav#header .p-nav__g_nav > li > a::after,
  .p-nav#header .p-nav__g_nav > li .drop::after {
    content: "";
    display: block;
    width: 0%;
    height: 2px;
    background-color: var(--color01);
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
    transition: all 0.3s 0s ease;
  }
}
@media (any-hover: hover) {
  .p-nav#header .p-nav__g_nav > li > a:hover::after,
  .p-nav#header .p-nav__g_nav > li .drop:hover::after {
    opacity: 1;
    width: 100%;
    transition: all 0.3s 0s ease;
  }
}
.p-nav#header .p-nav__g_nav > li .drop {
  cursor: pointer;
  padding-right: 15px;
}
.p-nav#header .p-nav__g_nav > li .drop::before {
  display: none;
}
@media (width >= 1280px) {
  .p-nav#header .p-nav__g_nav > li .drop::before {
    display: block;
    mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2210%22%20height%3D%227%22%20viewBox%3D%220%200%2010%207%22%3E%20%3Cpath%20id%3D%22keyboard_arrow_down_24dp_1F1F1F_FILL0_wght400_GRAD0_opsz24_1_%22%20data-name%3D%22keyboard_arrow_down_24dp_1F1F1F_FILL0_wght400_GRAD0_opsz24%20(1)%22%20d%3D%22M245-633l-5-5.676L241.167-640%2C245-635.649%2C248.833-640%2C250-638.676Z%22%20transform%3D%22translate(-240%20640)%22%20fill%3D%22%231f1f1f%22%2F%3E%3C%2Fsvg%3E");
    width: 10px;
    height: 7px;
    top: 23px;
    right: 0px;
  }
}
@media (width >= 1280px) {
  .p-nav#header .p-nav__g_nav > li .drop.active::before {
    mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2210%22%20height%3D%227%22%20viewBox%3D%220%200%2010%207%22%3E%20%3Cpath%20id%3D%22keyboard_arrow_down_24dp_1F1F1F_FILL0_wght400_GRAD0_opsz24_1_%22%20data-name%3D%22keyboard_arrow_down_24dp_1F1F1F_FILL0_wght400_GRAD0_opsz24%20(1)%22%20d%3D%22M245-633l-5-5.676L241.167-640%2C245-635.649%2C248.833-640%2C250-638.676Z%22%20transform%3D%22translate(250%20-633)%20rotate(180)%22%20fill%3D%22%231f1f1f%22%2F%3E%3C%2Fsvg%3E");
  }
}
.p-nav#header .p-nav__g_nav > li .drop.active .icon::after {
  display: none;
}
.p-nav#header .p-nav__g_nav > li .drop .icon {
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 25px;
  right: 20px;
}
@media (width >= 1280px) {
  .p-nav#header .p-nav__g_nav > li .drop .icon {
    display: none;
  }
}
.p-nav#header .p-nav__g_nav > li .drop .icon::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color01);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}
.p-nav#header .p-nav__g_nav > li .drop .icon::after {
  content: "";
  display: block;
  width: 2px;
  height: 100%;
  background-color: var(--color01);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
.p-nav#header .p-nav__sub_nav {
  display: none;
  width: 100vw;
  background-color: #3B3B3B;
}
@media (width >= 1280px) {
  .p-nav#header .p-nav__sub_nav {
    position: absolute;
    top: 80px;
    left: calc(-1 * (100vw - 100%) / 2);
  }
}
.p-nav#header .p-nav__sub_nav .inner {
  width: 100%;
  padding: 10px 0;
  background-color: var(--color01);
}
@media (width >= 1280px) {
  .p-nav#header .p-nav__sub_nav .inner {
    background-color: transparent;
    display: flex;
    gap: 0 5%;
  }
}
@media (width >= 1280px) {
  .p-nav#header .p-nav__sub_nav .inner {
    width: 1200px;
    margin: 0 auto;
    padding: 60px 0 80px;
    gap: 24px;
  }
}
.p-nav#header .p-nav__sub_nav__item {
  text-decoration: none;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  position: relative;
}
.p-nav#header .p-nav__sub_nav__item:not(:last-of-type) {
  margin-bottom: 10px;
  border-bottom: 1px solid #E3E3E3;
}
@media (width >= 1280px) {
  .p-nav#header .p-nav__sub_nav__item {
    display: block;
    width: 384px;
    padding: 0;
  }
  .p-nav#header .p-nav__sub_nav__item:not(:last-of-type) {
    margin-bottom: 0;
    border: none;
    padding: 0;
  }
}
@media (any-hover: hover) {
  .p-nav#header .p-nav__sub_nav__item:hover .p-nav__sub_nav__more {
    text-decoration: underline;
  }
  .p-nav#header .p-nav__sub_nav__item:hover .p-nav__sub_nav__more span::before {
    left: 25px;
  }
}
.p-nav#header .p-nav__sub_nav__item::after {
  content: "";
  display: block;
  position: absolute;
  background-color: var(--color02);
  mask-repeat: no-repeat;
  mask-size: contain;
  width: 16px;
  height: 16px;
  mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20id%3D%22icon_05-arrow2-r%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%20%3Crect%20id%3D%22area%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%23fff%22%20opacity%3D%220%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_548%22%20data-name%3D%22%E3%83%91%E3%82%B9%20548%22%20d%3D%22M1.3%2C0%2C.01%2C1.531l6.432%2C5.41L0%2C12.5l1.307%2C1.514%2C8.22-7.1Z%22%20transform%3D%22translate(3%200.999)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
  top: 50%;
  right: 20px;
  transform: translate(0, -50%);
}
@media (width >= 1280px) {
  .p-nav#header .p-nav__sub_nav__item::after {
    display: none;
  }
}
.p-nav#header .p-nav__sub_nav__item__in {
  width: 120px;
  display: flex;
  justify-content: flex-end;
  background-color: var(--color01);
}
@media (width >= 1280px) {
  .p-nav#header .p-nav__sub_nav__item__in {
    width: auto;
    padding-bottom: 30px;
    box-shadow: 0 0px 15px rgba(0, 0, 15, 0.25);
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media (width >= 1280px) {
  .p-nav#header .p-nav__sub_nav__logo {
    padding: 40px 24px 28px;
    display: flex;
    align-items: center;
    width: 310px;
    height: 150px;
  }
}
.p-nav#header .p-nav__sub_nav__logo.cix {
  width: 90px;
}
@media (width >= 1280px) {
  .p-nav#header .p-nav__sub_nav__logo.cix {
    width: 250px;
  }
}
@media (width >= 1280px) {
  .p-nav#header .p-nav__sub_nav__logo.tagetik {
    width: 300px;
  }
}
.p-nav#header .p-nav__sub_nav__logo img {
  width: 100%;
  height: auto;
}
.p-nav#header .p-nav__sub_nav__more {
  display: none;
}
@media (width >= 1280px) {
  .p-nav#header .p-nav__sub_nav__more {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    position: relative;
    line-height: 2.22;
    width: max-content;
    padding-right: 60px;
    margin: 0 36px 0 auto;
  }
}
.p-nav#header .p-nav__sub_nav__more .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: relative;
  background-color: var(--color02);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
.p-nav#header .p-nav__sub_nav__more .icon::before {
  content: "";
  width: 16px;
  height: 16px;
  background-color: var(--color01);
  mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20id%3D%22icon_05-arrow2-r%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%20%3Crect%20id%3D%22area%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%23fff%22%20opacity%3D%220%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_548%22%20data-name%3D%22%E3%83%91%E3%82%B9%20548%22%20d%3D%22M1.3%2C0%2C.01%2C1.531l6.432%2C5.41L0%2C12.5l1.307%2C1.514%2C8.22-7.1Z%22%20transform%3D%22translate(3%200.999)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.2s ease;
}
.p-nav#header .p-nav__sub_nav h2 {
  font-size: 1rem;
  line-height: 1.6;
  width: calc(100% - 150px);
}
@media (width >= 768px) {
  .p-nav#header .p-nav__sub_nav h2 {
    font-size: 1.3rem;
  }
  .p-nav#header .p-nav__sub_nav h2 br {
    display: none;
  }
}
@media (width >= 1280px) {
  .p-nav#header .p-nav__sub_nav h2 {
    width: 100%;
    height: 142px;
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.77;
    color: var(--color01);
    height: 164px;
    padding-top: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-size: cover;
    background-position: 50%;
  }
  .p-nav#header .p-nav__sub_nav h2 br {
    display: block;
  }
}
@media (width >= 1280px) {
  .p-nav#header .p-nav__sub_nav h2 {
    clip-path: polygon(90% 0, 100% 20%, 100% 100%, 0 100%, 0 0);
  }
}
@media (width >= 1280px) {
  .p-nav#header .p-nav__sub_nav h2.cix {
    background-image: url(../image/bg_product_list_cix.png);
  }
}
@media (width >= 1280px) {
  .p-nav#header .p-nav__sub_nav h2.stravis {
    background-image: url(../image/bg_product_list_stravis.png);
  }
}
@media (width >= 1280px) {
  .p-nav#header .p-nav__sub_nav h2.tagetik {
    background-image: url(../image/bg_product_list_tagetik.png);
  }
}
.p-nav#header .p-nav__cv_nav {
  display: flex;
  flex-direction: column-reverse;
  gap: 20px;
}
@media (width >= 1280px) {
  .p-nav#header .p-nav__cv_nav {
    flex-direction: row;
    gap: 0;
  }
}
.p-nav#header .p-nav__cv_nav__btn {
  width: 83%;
  height: 74px;
  margin: 0 auto;
}
@media (width >= 1280px) {
  .p-nav#header .p-nav__cv_nav__btn {
    width: 150px;
    height: 40px;
    margin: 0;
  }
}
.p-nav#header .p-nav__cv_nav__btn a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
}
@media (width >= 1280px) {
  .p-nav#header .p-nav__cv_nav__btn a {
    font-size: 1.3rem;
    padding-left: 25px;
  }
}
.p-nav#header .p-nav__cv_nav__btn a::after {
  content: "";
  display: block;
  position: absolute;
  width: 24px;
  height: 24px;
  mask-size: contain;
  mask-position: center;
}
@media (width >= 1280px) {
  .p-nav#header .p-nav__cv_nav__btn a::after {
    width: 16px;
    height: 16px;
  }
}
.p-nav#header .p-nav__cv_nav__btn--dl a {
  border: 1px solid var(--color01);
  color: var(--color01);
}
.p-nav#header .p-nav__cv_nav__btn--dl a::after {
  background-color: var(--color01);
  mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20id%3D%22icon_13-download%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%20%3Crect%20id%3D%22bg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%23fff%22%20opacity%3D%220%22%2F%3E%20%3Cpath%20id%3D%22%E5%90%88%E4%BD%93_17%22%20data-name%3D%22%E5%90%88%E4%BD%93%2017%22%20d%3D%22M7017-499v-11l5-5h9v16Zm1-10.586V-500h12v-14h-7.5v4.5H7018Zm3.5-.916v-2.585l-2.584%2C2.585Zm-.5%2C9v-1h6v1Zm.526-4.025.706-.706%2C1.269%2C1.267V-509h1v4.036l1.269-1.267.706.706L7024-503.05Z%22%20transform%3D%22translate(-7016%20515)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
  top: 25px;
  left: 21px;
}
@media (width >= 1280px) {
  .p-nav#header .p-nav__cv_nav__btn--dl a::after {
    top: 11px;
    left: 10px;
  }
}
@media (any-hover: hover) {
  .p-nav#header .p-nav__cv_nav__btn--dl a:hover {
    color: var(--color02);
    background-color: var(--color01);
    border-right: 1px solid var(--color02);
  }
  .p-nav#header .p-nav__cv_nav__btn--dl a:hover::after {
    background-color: var(--color02);
  }
}
.p-nav#header .p-nav__cv_nav__btn--contact a {
  background-color: var(--color01);
  border-top: 1px solid var(--color01);
  border-bottom: 1px solid var(--color01);
  border-right: 1px solid var(--color01);
  color: var(--color02);
}
.p-nav#header .p-nav__cv_nav__btn--contact a::after {
  background-color: var(--color02);
  mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20id%3D%22icon_41-mail%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216.001%22%20height%3D%2216%22%20viewBox%3D%220%200%2016.001%2016%22%3E%20%3Crect%20id%3D%22bg%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%23333%22%20opacity%3D%220%22%2F%3E%20%3Cpath%20id%3D%22%E5%90%88%E4%BD%93_20%22%20data-name%3D%22%E5%90%88%E4%BD%93%2020%22%20d%3D%22M7377-539v-12h16v12Zm1-1h14v-9.342l-7%2C6-7-6Zm7-4.657%2C6.232-5.342H7378.77ZM7378-550h0Z%22%20transform%3D%22translate(-7377%20553)%22%20fill%3D%22%23333%22%2F%3E%3C%2Fsvg%3E");
  top: 25px;
  left: 21px;
}
@media (width >= 1280px) {
  .p-nav#header .p-nav__cv_nav__btn--contact a::after {
    top: 11px;
    left: 24px;
  }
}
@media (any-hover: hover) {
  .p-nav#header .p-nav__cv_nav__btn--contact a:hover {
    color: var(--color01);
    background-color: var(--color02);
  }
  .p-nav#header .p-nav__cv_nav__btn--contact a:hover::after {
    background-color: var(--color01);
  }
}
.p-nav__sp_btn {
  --opacity: 1;
  --rotate: 1;
  --translate: 6px;
  width: 50px;
  height: 50px;
  background-color: var(--color03);
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (width >= 1280px) {
  .p-nav__sp_btn {
    display: none;
  }
}
.p-nav__sp_btn.is-active {
  --opacity: 0;
  --rotate: 135deg;
  --translate: 0;
}
.p-nav__sp_btn.is-active .p-nav__sp_btn__panel::before {
  width: 20px;
}
.p-nav__sp_btn__panel {
  display: grid;
  place-items: center end;
  width: 20px;
  height: 15px;
}
.p-nav__sp_btn__panel span, .p-nav__sp_btn__panel::before, .p-nav__sp_btn__panel::after {
  content: "";
  display: block;
  height: 2px;
  background-color: var(--color01);
  grid-area: 1/1/-1/-1;
  transition: rotate 0.3s ease, translate 0.3s ease;
}
.p-nav__sp_btn__panel span {
  opacity: var(--opacity);
  width: 14px;
}
.p-nav__sp_btn__panel::before {
  translate: 0 calc(var(--translate) * -1);
  rotate: calc(var(--rotate) * -1);
  width: 10px;
}
.p-nav__sp_btn__panel::after {
  translate: 0 var(--translate);
  rotate: var(--rotate);
  width: 20px;
}
.p-nav__sp_btn__text {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translate(-50%, 0);
}
.p-nav#footer {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media (width >= 1024px) {
  .p-nav#footer {
    flex-direction: row;
    gap: 150px;
    position: absolute;
    top: 65px;
    right: 0;
  }
}
.p-nav#footer .p-nav__f_nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 0;
  margin-bottom: 5px;
}
@media (width >= 1024px) {
  .p-nav#footer .p-nav__f_nav {
    display: block;
    margin: 0;
  }
}
.p-nav#footer .p-nav__f_nav li {
  width: 50%;
  font-size: 1.3rem;
  font-weight: 700;
}
@media (width >= 1024px) {
  .p-nav#footer .p-nav__f_nav li {
    width: auto;
    margin-bottom: 23px;
  }
}
.p-nav#footer .p-nav__f_nav li a {
  text-decoration: none;
}
@media (any-hover: hover) {
  .p-nav#footer .p-nav__f_nav li a:hover {
    text-decoration: underline;
  }
}
.p-nav#footer .p-nav__f_nav li ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 0;
  margin: 20px 0 0;
}
@media (width >= 1024px) {
  .p-nav#footer .p-nav__f_nav li ul {
    display: block;
    margin: 23px 0 0;
  }
}
.p-nav#footer .p-nav__f_nav li ul li {
  position: relative;
  padding-left: 14px;
}
.p-nav#footer .p-nav__f_nav li ul li::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--color03);
  position: absolute;
  top: 5px;
  left: 3px;
}
.p-nav#footer .p-nav__f_nav li ul li ul {
  display: block;
  padding: 0;
}
@media (width >= 1024px) {
  .p-nav#footer .p-nav__f_nav li ul li ul {
    margin: 23px 0 0 0;
  }
}
.p-nav#footer .p-nav__f_nav li ul li ul li {
  width: 100%;
  padding: 0;
  font-weight: 500;
}
.p-nav#footer .p-nav__f_nav li ul li ul li:not(:last-of-type) {
  margin-bottom: 20px;
}
@media (width >= 1024px) {
  .p-nav#footer .p-nav__f_nav li ul li ul li {
    width: auto;
    margin: 0;
  }
}
.p-nav#footer .p-nav__f_nav li ul li ul li::before {
  display: none;
}
.p-nav#footer .p-nav__f_nav.test {
  width: 100%;
}
@media (width >= 1024px) {
  .p-nav#footer .p-nav__f_nav.test {
    width: auto;
  }
}
.p-nav#footer .p-nav__f_nav.test > li {
  width: 100%;
}
@media (width >= 1024px) {
  .p-nav#footer .p-nav__f_nav.test > li {
    width: auto;
  }
}
.p-nav.page {
  display: flex;
  flex-direction: column;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 32px auto 75px;
  width: 342px;
}
@media (width >= 768px) {
  .p-nav.page {
    flex-direction: row;
    gap: 30px 5%;
    margin: 62px 0 145px;
    width: auto;
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media (width >= 1280px) {
  .p-nav.page {
    gap: 30px 87px;
  }
}
.p-nav.page li {
  height: 50px;
}
@media (width >= 768px) {
  .p-nav.page li {
    width: 30%;
  }
}
@media (width >= 1280px) {
  .p-nav.page li {
    width: 342px;
  }
}
.p-nav__side {
  width: 100%;
}
@media (width >= 768px) {
  .p-nav__side:not(:first-of-type) {
    margin-top: 24px;
  }
}
.p-nav__side__title {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
@media (width >= 768px) {
  .p-nav__side__title {
    justify-content: space-between;
    transition: opacity 0.2s ease;
  }
}
.p-nav__side__title[aria-expanded=false] .p-nav__side__title__icon {
  transform: rotate(90deg);
}
@media (width >= 768px) {
  .p-nav__side__title[aria-expanded=false] .p-nav__side__title__icon {
    transform: none;
  }
}
@media (width >= 768px) {
  .p-nav__side__title[aria-expanded=false] .p-nav__side__title__icon::before {
    transform: rotate(0);
  }
}
.p-nav__side__title[aria-expanded=true] .p-nav__side__title__icon {
  transform: rotate(90deg) scale(-1);
}
@media (width >= 768px) {
  .p-nav__side__title[aria-expanded=true] .p-nav__side__title__icon {
    transform: none;
  }
}
@media (width >= 768px) {
  .p-nav__side__title[aria-expanded=true] .p-nav__side__title__icon::before {
    transform: rotate(90deg);
  }
}
.p-nav__side__title__label {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color01);
}
@media (width >= 768px) {
  .p-nav__side__title__label {
    font-size: 2rem;
    color: var(--color02);
  }
}
.p-nav__side__title__icon {
  display: block;
  width: 24px;
  height: 24px;
  background-color: var(--color01);
  mask-image: url(../image/icon_arw1_1.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 9px 13px;
  transition: all 0.2s ease;
}
@media (width >= 768px) {
  .p-nav__side__title__icon {
    background-color: transparent;
    position: relative;
    mask: none;
    transform: rotate(0);
  }
}
@media (width >= 768px) {
  .p-nav__side__title__icon::before, .p-nav__side__title__icon::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    margin: auto;
    background-color: var(--color02);
    transition: all 0.2s ease;
  }
}
@media (width >= 768px) {
  .p-nav__side__title__icon::before {
    width: 2px;
    height: 16px;
  }
}
@media (width >= 768px) {
  .p-nav__side__title__icon::after {
    width: 16px;
    height: 2px;
  }
}
.p-nav__side__list {
  display: none;
  list-style: none;
  position: absolute;
  top: 56px;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.64);
  padding: 16px;
}
@media (width >= 768px) {
  .p-nav__side__list {
    display: block;
    width: auto;
    margin-top: 16px;
    position: relative;
    top: auto;
    left: auto;
    background-color: transparent;
    padding: 0;
  }
}
.p-nav__side__list li:not(:first-of-type) {
  margin-top: 8px;
}
@media (width >= 768px) {
  .p-nav__side__list li:not(:first-of-type) {
    margin-top: 6px;
  }
}
.p-nav__side__list a {
  font-size: 1.6rem;
  line-height: 1.5;
  position: relative;
  display: flex;
  align-items: center;
  padding: 12px;
  background: #fff;
  color: #000;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
@media (width >= 768px) {
  .p-nav__side__list a {
    box-shadow: 0 0 10px rgba(0, 71, 161, 0.1);
    width: auto;
    margin: 0;
  }
}
@media (hover: hover) {
  .p-nav__side__list a:hover {
    opacity: 0.56;
  }
  .p-nav__side__list a:hover::after {
    translate: 5px 0;
  }
}
.p-nav__side__list a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 12px;
  bottom: 0;
  display: block;
  background: #0076be;
  width: 24px;
  height: 24px;
  margin: auto;
  mask-image: url(../image/icon_arw1_1.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 9px 13px;
  transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.p-contact {
  background-color: #fff;
}
.p-contact .inner {
  width: 80%;
  margin: 0 auto;
  padding: 50px 0 100px;
}
@media (width >= 1024px) {
  .p-contact .inner {
    width: 990px;
    padding: 100px 0 200px;
  }
}
.p-contact__col {
  display: flex;
  gap: 30px;
  flex-direction: column;
}
@media (width >= 768px) {
  .p-contact__col {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media (width >= 1024px) {
  .p-contact__col {
    gap: 90px;
  }
}
.p-contact__col__item {
  display: block;
  background-color: #fff;
  padding: 40px 20px;
  box-shadow: 0 0 15px rgba(0, 71, 161, 0.2);
  text-decoration: none;
  width: 100%;
  position: relative;
}
@media (width >= 768px) {
  .p-contact__col__item {
    width: calc((100% - 30px) / 2);
  }
}
@media (width >= 1024px) {
  .p-contact__col__item {
    padding: 76px 15px 85px 34px;
    width: 450px;
  }
}
.p-contact__col__item::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #004D99;
  mask-repeat: no-repeat;
  mask-size: contain;
}
.p-contact__col__item--arrow::after {
  width: 10px;
  height: 14px;
  mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%229.527%22%20height%3D%2214.018%22%20viewBox%3D%220%200%209.527%2014.018%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_20737%22%20data-name%3D%22%E3%83%91%E3%82%B9%2020737%22%20d%3D%22M1.3%2C0%2C.01%2C1.531l6.432%2C5.41L0%2C12.5l1.307%2C1.514L6.1%2C9.882%2C9.527%2C6.921Z%22%20transform%3D%22translate(0%200)%22%20fill%3D%22%23004d99%22%2F%3E%3C%2Fsvg%3E");
  top: 57%;
  right: 15px;
  transform: translate(0, -50%);
}
@media (hover: hover) {
  .p-contact__col__item:hover {
    color: #fff;
    background-color: #004D99;
  }
  .p-contact__col__item:hover::after {
    background-color: #fff;
  }
  .p-contact__col__item:hover h2, .p-contact__col__item:hover p {
    color: #fff;
  }
}
.p-contact__col__item h2 {
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 35px;
}
@media (width >= 768px) {
  .p-contact__col__item h2 {
    font-size: 22px;
  }
}
.p-contact__col__item p {
  font-size: 15px;
  color: #000;
  line-height: 1.93em;
}
@media (width >= 1024px) {
  .p-contact__col__item p br {
    display: none;
  }
}

.p-contact2 {
  background-color: #fff;
}
.p-contact2 iframe {
  margin-top: 45px;
}
@media (width >= 768px) {
  .p-contact2 iframe {
    margin-top: 90px;
  }
}
.p-contact2 p {
  font-size: 15px;
  color: #000;
  line-height: 1.93em;
}

.p-hero.top {
  background-image: url(../image/bg_hero_sp.jpg);
  background-size: cover;
  background-position: 50% 0;
}
@media (width >= 768px) {
  .p-hero.top {
    background-image: url(../image/bg_hero.jpg);
  }
}
.p-hero.top .inner {
  width: 90%;
  height: 700px;
  margin: 0 auto;
  position: relative;
}
@media (width >= 1280px) {
  .p-hero.top .inner {
    width: 1200px;
    height: 680px;
  }
}
.p-hero.top .p-hero__wrap {
  position: absolute;
  top: 40px;
  left: 5px;
}
@media (width >= 768px) {
  .p-hero.top .p-hero__wrap {
    top: 124px;
    left: 0;
  }
}
.p-hero.top .p-hero__wrap h1 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color01);
}
@media (width >= 768px) {
  .p-hero.top .p-hero__wrap h1 {
    font-size: 4rem;
  }
}
.p-hero.top .p-hero__logo {
  width: 222px;
  margin-bottom: 25px;
}
@media (width >= 768px) {
  .p-hero.top .p-hero__logo {
    width: 271px;
    margin-bottom: 35px;
  }
}
.p-hero.top .p-hero__logo img {
  width: 100%;
  height: auto;
}
.p-hero:not(.top) {
  position: relative;
  background-image: url(../image/bg_texture1_1.png);
  overflow: hidden;
}
@media (width >= 1024px) {
  .p-hero:not(.top) {
    background-position: 0 -200px;
  }
}
.p-hero:not(.top) .inner {
  width: 90%;
  padding: 40px 0;
  margin: 0 auto;
}
@media (width >= 1280px) {
  .p-hero:not(.top) .inner {
    width: 1200px;
    padding: 40px 0 80px;
  }
}
.p-hero:not(.top) .p-hero__title {
  line-height: 1.5;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (width >= 768px) {
  .p-hero:not(.top) .p-hero__title {
    gap: 24px;
  }
}
.p-hero:not(.top) .p-hero__title__wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (width >= 768px) {
  .p-hero:not(.top) .p-hero__title__wrap {
    gap: 64px;
  }
}
.single-event .p-hero:not(.top) .p-hero__title__wrap {
  gap: 32px;
}
.p-hero:not(.top) .p-hero__title__wrap p {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.5;
}
@media (width >= 768px) {
  .p-hero:not(.top) .p-hero__title__wrap p {
    font-size: 3.2rem;
  }
}
.p-hero:not(.top) .p-hero__title--main {
  font-size: 3.6rem;
}
@media (width >= 768px) {
  .p-hero:not(.top) .p-hero__title--main {
    font-size: 4.2rem;
  }
}
.p-hero:not(.top) .p-hero__title--sub {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.2rem;
  font-family: var(--Lato);
  font-weight: 700;
}
.p-hero:not(.top) .p-hero__title--sub::before {
  content: "";
  display: inline-block;
  width: 60px;
  height: 1px;
  background-color: var(--color02);
}
.p-hero:not(.top) .p-hero__page_title__wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.p-hero:not(.top) .p-hero__page_title {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.5;
}
@media (width >= 768px) {
  .p-hero:not(.top) .p-hero__page_title {
    font-size: 3.2rem;
  }
}
.p-hero:not(.top) .p-hero__sub_title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.p-hero:not(.top) .p-hero__en {
  color: rgba(0, 0, 0, 0.04);
  font-family: var(--Lato);
  font-weight: 900;
  font-size: 12rem;
  position: absolute;
  bottom: -34px;
  left: 100%;
  translate: -80% 0;
}
@media (width >= 768px) {
  .p-hero:not(.top) .p-hero__en {
    bottom: -42px;
    font-size: 24rem;
  }
}

.p-panlist .panlist_in {
  display: none;
}
@media (width >= 1280px) {
  .p-panlist .panlist_in {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 5px;
    width: 100%;
    padding: 24px 40px;
    overflow: auto;
    white-space: nowrap;
  }
}
.p-panlist .panlist_in a {
  color: var(--color02);
  text-decoration: none;
}
@media (any-hover: hover) {
  .p-panlist .panlist_in a:hover {
    text-decoration: underline;
  }
}
.p-panlist .panlist_in .current-item {
  color: #B4B4B4;
}
.p-panlist .separate {
  background-color: var(--color02);
  display: block;
  width: 12px;
  height: 8px;
  mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20id%3D%22icon_05-arrow2-r%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%3E%20%3Crect%20id%3D%22bg%22%20width%3D%2212%22%20height%3D%2212%22%20fill%3D%22%23fff%22%20opacity%3D%220%22%2F%3E%20%3Cpath%20id%3D%22_%22%20data-name%3D%22%26gt%3B%22%20d%3D%22M2811.354-1661.646l-1.061-1.061%2C3.969-3.97-3.969-3.969%2C1.061-1.061%2C5.031%2C5.03Z%22%20transform%3D%22translate(-2807.073%201672.677)%22%20fill%3D%22%23222%22%2F%3E%3C%2Fsvg%3E");
  background-size: contain;
  margin: 0 8px;
  mask-repeat: no-repeat;
  mask-position: center;
  flex-shrink: 0;
}

.wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 70px 0 0;
}
@media (width >= 768px) {
  .wp-pagenavi {
    padding: 100px 0 0;
  }
}
.wp-pagenavi a,
.wp-pagenavi span {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  position: relative;
}
@media (width >= 768px) {
  .wp-pagenavi a,
  .wp-pagenavi span {
    font-size: 1.6rem;
    padding: 7px 16px;
    width: 40px;
    height: 40px;
  }
}
.wp-pagenavi a {
  color: var(--color02);
  text-decoration: none;
}
@media (width >= 1024px) {
  .wp-pagenavi a.page:hover {
    color: var(--color01);
    background-color: #004D99;
    border-radius: 50%;
  }
}
.wp-pagenavi .current {
  background-color: #004D99;
  border-radius: 50%;
  color: var(--color01);
}
.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink {
  font-weight: 500;
  width: 80px;
  height: 50px;
  position: relative;
}
.wp-pagenavi .nextpostslink:hover,
.wp-pagenavi .previouspostslink:hover {
  text-decoration: underline;
}
.wp-pagenavi .nextpostslink::after,
.wp-pagenavi .previouspostslink::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #004D99;
  mask-repeat: no-repeat;
  mask-size: contain;
  position: absolute;
}
.wp-pagenavi .nextpostslink::after {
  width: 16px;
  height: 16px;
  mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20id%3D%22icon_05-arrow2-r%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%20%3Crect%20id%3D%22area%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%23fff%22%20opacity%3D%220%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_548%22%20data-name%3D%22%E3%83%91%E3%82%B9%20548%22%20d%3D%22M1.3%2C0%2C.01%2C1.531l6.432%2C5.41L0%2C12.5l1.307%2C1.514%2C8.22-7.1Z%22%20transform%3D%22translate(3%200.999)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
.wp-pagenavi .previouspostslink::after {
  width: 16px;
  height: 16px;
  mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%229%22%20height%3D%2216%22%20viewBox%3D%220%200%209%2016%22%3E%20%3Cpath%20id%3D%22arrow_back_ios_new_24dp_1F1F1F_FILL0_wght400_GRAD0_opsz24%22%20d%3D%22M247.643-864%2C240-872l7.643-8L249-878.58%2C242.713-872%2C249-865.42Z%22%20transform%3D%22translate(-240%20880)%22%20fill%3D%22%231f1f1f%22%2F%3E%3C%2Fsvg%3E");
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
}
.wp-pagenavi .extend {
  margin: 0;
  padding: 2px 5px 7px;
  font-size: 1.8rem;
}
@media (width >= 768px) {
  .wp-pagenavi .extend {
    padding: 5px 10px 9px;
  }
}

.p-news {
  position: relative;
}
.p-news__list__cat_item {
  width: 100px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #333333;
  border-radius: 2px;
  font-family: var(--Mont);
}
.p-news__list__cat_item.news {
  background-color: #004896;
  color: var(--color01);
  border: 1px solid #004896;
}
.p-news__list__cat_item.release {
  background-color: #004896;
  color: var(--color01);
  border: 1px solid #004896;
}
.p-news__list__cat_item.seminar {
  background-color: #12B4AE;
  color: var(--color01);
  border: 1px solid #12B4AE;
}
.p-news__list__cat_item.case {
  background-color: #34A6ED;
  color: var(--color01);
  border: 1px solid #34A6ED;
}
.p-news__list__cat_item.recruit {
  background-color: #004896;
  color: var(--color01);
  border: 1px solid #004896;
}
.p-news.pickup {
  background-color: #3B3B3B;
  position: relative;
  padding: 1px 0 0 0;
}
.p-news.pickup .inner {
  width: 95%;
  background-color: var(--color01);
  padding: 65px 11px 26px 20px;
  margin-top: -41px;
  position: relative;
  clip-path: polygon(89% 0, 100% 6%, 100% 100%, 0 100%, 0 0);
}
@media (width >= 768px) {
  .p-news.pickup .inner {
    clip-path: polygon(94% 0, 100% 15%, 100% 100%, 0 100%, 0 0);
  }
}
@media (width >= 1024px) {
  .p-news.pickup .inner {
    width: 92.6%;
    padding: 78px 70px 50px 50px;
    clip-path: polygon(97% 0, 100% 15%, 100% 100%, 0 100%, 0 0);
  }
}
.p-news.pickup h2 {
  font-family: var(--Mont);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color01);
  width: max-content;
  padding: 11px 36px 11px 16px;
  background: var(--color02);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  clip-path: polygon(0 0, 100% 0, 91% 100%, 0% 100%);
}
@media (width >= 768px) {
  .p-news.pickup h2 {
    font-size: 1.8rem;
    padding: 15px 36px 15px 52px;
  }
}
.p-news.pickup .p-news__list__item {
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-decoration: none;
  border-bottom: 1px solid #E3E3E3;
  margin-bottom: 22px;
  padding-bottom: 26px;
}
.p-news.pickup .p-news__list__item:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}
@media (width >= 768px) {
  .p-news.pickup .p-news__list__item {
    gap: 24px;
    flex-direction: row;
    align-items: center;
  }
}
@media (any-hover: hover) {
  .p-news.pickup .p-news__list__item:hover .p-news__list__date,
  .p-news.pickup .p-news__list__item:hover .p-news__list__title {
    text-decoration: underline;
  }
}
.p-news.pickup .p-news__list__date {
  width: 150px;
  font-size: 1.4rem;
  font-weight: 700;
}
.p-news.pickup .p-news__list__cat {
  width: 208px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: -5px;
}
@media (width >= 768px) {
  .p-news.pickup .p-news__list__cat {
    margin: 0;
  }
}
.p-news.pickup .p-news__list__title {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.78;
}
@media (width >= 768px) {
  .p-news.pickup .p-news__list__title {
    width: calc(100% - 174px);
  }
}
@media (width >= 1024px) {
  .p-news.pickup .p-news__list__title {
    font-size: 1.6rem;
  }
}
.p-news.top .inner {
  width: 90%;
  margin: 0 auto;
  padding: 60px 0 50px;
  position: relative;
}
@media (width >= 1024px) {
  .p-news.top .inner {
    width: 1200px;
    padding: 120px 0 80px;
  }
}
.p-news.top h2 {
  font-size: 2.8rem;
  font-weight: 600;
  padding: 0 0 0 40px;
  position: relative;
  margin: 0 0 20px;
}
@media (width >= 1024px) {
  .p-news.top h2 {
    font-size: 4.8rem;
    margin: 0 0 65px;
    padding: 0 0 0 68px;
    margin: 0 0 20px;
  }
}
.p-news.top h2::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2250%22%20height%3D%2250%22%20viewBox%3D%220%200%2050%2050%22%3E%20%3Cpath%20id%3D%22icon%22%20d%3D%22M50.27.47h-12.5l-37.5%2C50h12.5l37.5-50Z%22%20transform%3D%22translate(-0.27%20-0.47)%22%20fill%3D%22%23333%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
}
@media (width >= 1280px) {
  .p-news.top h2::before {
    width: 50px;
    height: 50px;
    top: -2px;
  }
}
.p-news.top .p-news__list {
  margin-bottom: 24px;
}
.p-news.top .p-news__list__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px 0;
  border-bottom: 1px solid #E3E3E3;
  position: relative;
  color: var(--color02);
  text-decoration: none;
  transition: all 0.2s ease;
}
@media (width >= 768px) {
  .p-news.top .p-news__list__item {
    flex-direction: row;
    gap: 28px;
    padding: 23px 0;
  }
}
@media (any-hover: hover) {
  .p-news.top .p-news__list__item:hover .p-news__list__title,
  .p-news.top .p-news__list__item:hover .p-news__list__date {
    text-decoration: underline;
  }
}
.p-news.top .p-news__list__item::after {
  content: "";
  display: block;
  position: absolute;
  background-color: var(--color03);
  mask-repeat: no-repeat;
  mask-size: contain;
}
.p-news.top .p-news__list__date {
  width: 150px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color02);
  display: flex;
  align-items: center;
}
.p-news.top .p-news__list__title {
  font-size: 1.4rem;
  line-height: 1.8;
  display: flex;
  align-items: center;
}
@media (width >= 768px) {
  .p-news.top .p-news__list__title {
    width: calc(100% - 306px);
  }
}
@media (width >= 1024px) {
  .p-news.top .p-news__list__title {
    font-size: 1.6rem;
  }
}
.p-news.top .p-news__list__cat {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
@media (width >= 768px) {
  .p-news.top .p-news__list__cat {
    flex-direction: column;
  }
}
.p-news.top .p-news__btn {
  width: 100%;
  height: 60px;
  margin: 35px auto 0;
}
@media (width >= 768px) {
  .p-news.top .p-news__btn {
    width: 400px;
    height: 80px;
    margin: 60px auto 0;
  }
}
.p-news.archive .p-news__item {
  display: block;
  transition: opacity 0.2s ease;
  text-decoration: none;
  padding: 20px 14px;
  border-bottom: 1px solid #DCDCDC;
}
@media (width >= 768px) {
  .p-news.archive .p-news__item {
    padding: 30px 24px;
  }
}
.p-news.archive .p-news__item:first-of-type {
  border-top: 1px solid #DCDCDC;
}
@media (hover: hover) {
  .p-news.archive .p-news__item:hover {
    opacity: 0.56;
  }
}
.p-news.archive .p-news__item[target=_blank] .p-news__item__title::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 20px;
  height: 20px;
  background-color: var(--color05);
  transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%20%3Cpath%20id%3D%22icon_external1_1%22%20d%3D%22M12%2C12v3.2a.8.8%2C0%2C0%2C1-.8.8H.8a.8.8%2C0%2C0%2C1-.8-.8V4.8A.8.8%2C0%2C0%2C1%2C.8%2C4H4V.806A.8.8%2C0%2C0%2C1%2C4.806%2C0H15.194A.8.8%2C0%2C0%2C1%2C16%2C.806l0%2C10.388a.805.805%2C0%2C0%2C1-.806.806Zm-1.6%2C0H4.806A.8.8%2C0%2C0%2C1%2C4%2C11.194V5.6H1.6v8.8h8.8Zm4-1.6%2C0-8.8H5.6v8.8Z%22%20fill%3D%22%230076be%22%2F%3E%3C%2Fsvg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 14px 14px;
}
.p-news.archive .p-news__item__cat {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}
.p-news.archive .p-news__item__cat li {
  font-size: 1.2rem;
  color: var(--color02);
  padding: 8px;
  display: flex;
  align-items: center;
  width: max-content;
  height: 24px;
  border: 1px solid #DCDCDC;
  background-color: #F4F4F4;
}
.p-news.archive .p-news__item__date {
  font-size: 1.4rem;
  line-height: 2;
  color: var(--color02);
  margin-bottom: 8px;
}
.p-news.archive .p-news__item__title {
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 700;
  color: var(--color05);
}

.p-case__no_post {
  font-size: 14px;
  line-height: 1.8;
  text-align: center;
  width: 90%;
  margin: 0 auto;
}
@media (width >= 768px) {
  .p-case__no_post {
    font-size: 16px;
    width: 100%;
  }
}
.p-case__btn {
  width: 90%;
  height: 56px;
  margin: 60px auto 0;
}
@media (width >= 768px) {
  .p-case__btn {
    width: 500px;
    margin-top: 120px;
  }
}
.p-case h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 70px 0 40px;
}
@media (width >= 768px) {
  .p-case h2 {
    font-size: 3.2rem;
    margin: 138px 0 80px;
  }
}
.post-type-archive-case .p-case__cat {
  padding: 50px 0 70px;
}
@media (width >= 768px) {
  .post-type-archive-case .p-case__cat {
    padding: 70px 0 100px;
  }
}
@media (width >= 1280px) {
  .post-type-archive-case .p-case__cat {
    padding: 100px 0 140px;
  }
}

.p-blog.top {
  background-color: #3B3B3B;
}
.p-blog.top .inner {
  width: 90%;
  margin: 0 auto;
  padding: 65px 0 50px;
}
@media (width >= 1280px) {
  .p-blog.top .inner {
    width: 1200px;
    padding: 130px 0 80px;
  }
}
.p-blog.top h2 {
  font-size: 2.8rem;
  font-weight: 600;
  padding: 0 0 0 40px;
  position: relative;
  margin: 0 0 45px;
  color: var(--color01);
}
@media (width >= 1024px) {
  .p-blog.top h2 {
    font-size: 4.8rem;
    margin: 0 0 65px;
    padding: 0 0 0 68px;
    margin: 0 0 60px;
  }
}
.p-blog.top h2::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-color: var(--color01);
  mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2250%22%20height%3D%2250%22%20viewBox%3D%220%200%2050%2050%22%3E%20%3Cpath%20id%3D%22icon%22%20d%3D%22M50.27.47h-12.5l-37.5%2C50h12.5l37.5-50Z%22%20transform%3D%22translate(-0.27%20-0.47)%22%20fill%3D%22%23333%22%2F%3E%3C%2Fsvg%3E");
  mask-repeat: no-repeat;
  mask-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}
@media (width >= 1280px) {
  .p-blog.top h2::before {
    width: 50px;
    height: 50px;
    top: -2px;
  }
}
.p-blog.top .p-blog__btn {
  width: 88%;
  height: 60px;
  margin: 40px auto 0;
}
@media (width >= 768px) {
  .p-blog.top .p-blog__btn {
    width: 400px;
    height: 80px;
    margin: 60px auto 0;
  }
}

.p-page_nav ul {
  display: flex;
  gap: 30px 50px;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
}
@media (width >= 1024px) {
  .p-page_nav ul {
    gap: 30px 88px;
  }
}
.p-page_nav ul li {
  padding: 0;
  margin: 0;
  line-height: 0;
}
.p-page_nav ul li::before {
  display: none;
}
.p-page_nav ul li a {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color03);
  text-decoration: none;
  padding: 0 20px 0 0;
  position: relative;
  letter-spacing: 0.05em;
}
@media (any-hover: hover) {
  .p-page_nav ul li a:hover {
    text-decoration: underline;
  }
}
.p-page_nav ul li a::after {
  content: "";
  display: block;
  position: absolute;
  top: 55%;
  right: 1px;
  transform: translate(0, -50%);
  background-color: var(--color03);
  mask-repeat: no-repeat;
  mask-size: contain;
  width: 12px;
  height: 8px;
  mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212.428%22%20height%3D%227.271%22%20viewBox%3D%220%200%2012.428%207.271%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_975%22%20data-name%3D%22%E3%83%91%E3%82%B9%20975%22%20d%3D%22M265.6%2C30.363l6.065-5.507L265.6%2C19.348%22%20transform%3D%22translate(31.07%20-264.89)%20rotate(90)%22%20fill%3D%22none%22%20stroke%3D%22%23009bff%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%221%22%2F%3E%3C%2Fsvg%3E");
}

.p-seminar h2 {
  font-size: 3rem;
  font-weight: 700;
  margin: 75px 0 50px;
}
@media (width >= 768px) {
  .p-seminar h2 {
    font-size: 3.6rem;
    margin: 145px 0 60px;
  }
}
.p-seminar h2.back {
  margin: 30px 0 50px;
}
@media (width >= 768px) {
  .p-seminar h2.back {
    margin: 75px 0 60px;
  }
}
.p-seminar__btn {
  width: 100%;
  height: 50px;
  margin: 60px auto 0;
}
@media (width >= 768px) {
  .p-seminar__btn {
    width: 500px;
    margin: 120px auto 0;
  }
}

.p-product__more {
  font-size: 1.6rem;
  font-weight: 700;
  position: relative;
  line-height: 2.5;
  width: max-content;
  padding-right: 50px;
}
@media (width >= 768px) {
  .p-product__more {
    font-size: 1.8rem;
    line-height: 2.22;
    padding-right: 60px;
  }
}
@media (any-hover: hover) {
  .p-product__more:hover {
    text-decoration: underline;
  }
  .p-product__more:hover span::before {
    left: 25px;
  }
}
.p-product__more .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: relative;
  background-color: var(--color02);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
.p-product__more .icon::before {
  content: "";
  width: 16px;
  height: 16px;
  background-color: var(--color01);
  mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20id%3D%22icon_05-arrow2-r%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%3E%20%3Crect%20id%3D%22area%22%20width%3D%2216%22%20height%3D%2216%22%20fill%3D%22%23fff%22%20opacity%3D%220%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_548%22%20data-name%3D%22%E3%83%91%E3%82%B9%20548%22%20d%3D%22M1.3%2C0%2C.01%2C1.531l6.432%2C5.41L0%2C12.5l1.307%2C1.514%2C8.22-7.1Z%22%20transform%3D%22translate(3%200.999)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fsvg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.2s ease;
}
.p-product__more.small {
  font-size: 1.4rem;
  padding-right: 30px;
  margin: 20px 0 20px auto !important;
}
@media (width >= 768px) {
  .p-product__more.small {
    font-size: 1.6rem;
    padding-right: 40px;
  }
}
.p-product__more.small .icon {
  width: 20px;
  height: 20px;
}
@media (width >= 768px) {
  .p-product__more.small .icon {
    width: 30px;
    height: 30px;
  }
}
.p-product__more.small .icon::before {
  width: 10px;
  height: 10px;
}
@media (width >= 768px) {
  .p-product__more.small .icon::before {
    width: 12px;
    height: 12px;
  }
}
@media (any-hover: hover) {
  .p-product__more.small:hover span::before {
    left: 20px;
  }
}
.p-product.list {
  background-color: #3B3B3B;
}
.p-product.list .p-product__more {
  padding-bottom: 20px;
  margin: 0 20px 0 auto;
}
@media (width >= 768px) {
  .p-product.list .p-product__more {
    margin: 0 36px 0 auto;
  }
}
.p-product.list .p-product__more .icon {
  top: 20px;
}
.p-product.list .inner {
  width: 90%;
  margin: 0 auto;
  padding: 40px 0 50px;
}
@media (width >= 768px) {
  .p-product.list .inner {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: repeat(2, 45%);
    gap: 0 5%;
  }
}
@media (width >= 1280px) {
  .p-product.list .inner {
    width: 1200px;
    padding: 60px 0 80px;
    gap: 24px;
    grid-template-columns: repeat(3, 384px);
  }
}
.p-product.list .p-product__item {
  background-color: var(--color01);
  text-decoration: none;
  display: block;
  clip-path: polygon(88% 0, 100% 8%, 100% 100%, 0 100%, 0 0);
}
.p-product.list .p-product__item:not(:last-of-type) {
  margin-bottom: 20px;
}
@media (width >= 768px) {
  .p-product.list .p-product__item {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 4;
    gap: 0;
  }
}
@media (width >= 1024px) {
  .p-product.list .p-product__item {
    clip-path: polygon(90% 0, 100% 6%, 100% 100%, 0 100%, 0 0);
  }
}
@media (width >= 1280px) {
  .p-product.list .p-product__item:not(:last-of-type) {
    margin-bottom: 0;
  }
}
.p-product.list .p-product__logo {
  padding: 30px 24px 28px;
}
@media (width >= 768px) {
  .p-product.list .p-product__logo {
    padding: 40px 24px 28px;
  }
}
.p-product.list .p-product__logo img {
  width: 100%;
  height: auto;
}
.p-product.list h2 {
  width: 100%;
  height: 142px;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.77;
  color: var(--color01);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-size: cover;
  background-position: 50%;
}
@media (width >= 768px) {
  .p-product.list h2 {
    font-size: 1.8rem;
    height: 164px;
    padding-top: 5px;
  }
}
.p-product.list h2.cix {
  background-image: url(../image/bg_product_list_cix.png);
}
.p-product.list h2.stravis {
  background-image: url(../image/bg_product_list_stravis.png);
}
.p-product.list h2.tagetik {
  background-image: url(../image/bg_product_list_tagetik.png);
}
.p-product.list .p-product__text {
  padding: 0 20px 20px;
}
.p-product.list .p-product__text p {
  font-size: 1.4rem;
  line-height: 1.78;
}
@media (width >= 768px) {
  .p-product.list .p-product__text p {
    font-size: 1.6rem;
    line-height: 1.8;
    padding: 0 0 15px;
  }
}
@media (width >= 1024px) {
  .p-product.list .p-product__text p {
    padding: 0 32px 15px;
  }
}
.p-product.top {
  background-color: #E9E9F0;
}
.p-product.top .inner {
  width: 90%;
  margin: 0 auto;
  padding: 80px 0 60px;
  position: relative;
}
@media (width >= 1024px) {
  .p-product.top .inner {
    width: 1200px;
    padding: 175px 0 120px;
  }
}
.p-product.top .inner::before {
  content: "";
  display: block;
  width: 100px;
  height: 100px;
  background-image: url(../image/bg_product_top_logo.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 53px;
  right: calc(-1 * (100vw - 100%) / 2);
}
@media (width >= 768px) {
  .p-product.top .inner::before {
    width: 200px;
    height: 200px;
    top: 0;
  }
}
@media (width >= 1280px) {
  .p-product.top .inner::before {
    width: 320px;
    height: 320px;
    top: 0;
    right: -120px;
  }
}
.p-product.top h2 {
  font-size: 2.8rem;
  font-weight: 600;
  padding: 0 0 0 40px;
  position: relative;
  margin: 0 0 45px;
}
@media (width >= 1024px) {
  .p-product.top h2 {
    font-size: 4.8rem;
    margin: 0 0 65px;
    padding: 0 0 0 68px;
  }
}
.p-product.top h2::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2250%22%20height%3D%2250%22%20viewBox%3D%220%200%2050%2050%22%3E%20%3Cpath%20id%3D%22icon%22%20d%3D%22M50.27.47h-12.5l-37.5%2C50h12.5l37.5-50Z%22%20transform%3D%22translate(-0.27%20-0.47)%22%20fill%3D%22%23333%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
}
@media (width >= 1280px) {
  .p-product.top h2::before {
    width: 50px;
    height: 50px;
    top: -2px;
  }
}
.p-product.top .p-product__wrap {
  background-color: var(--color01);
  padding: 103px 20px 30px;
  position: relative;
  z-index: 1;
}
@media (width >= 1024px) {
  .p-product.top .p-product__wrap {
    padding: 60px 80px;
  }
}
.p-product.top .p-product__wrap:not(:last-of-type) {
  margin-bottom: 60px;
}
.p-product.top .p-product__wrap .p-product__logo {
  margin: 0 auto 30px;
}
@media (width >= 768px) {
  .p-product.top .p-product__wrap .p-product__logo {
    margin: 0 0 20px;
  }
}
.p-product.top .p-product__wrap .p-product__logo img {
  width: 100%;
  height: auto;
}
@media (width >= 1024px) {
  .p-product.top .p-product__wrap > p {
    width: 800px;
  }
}
.p-product.top .p-product__wrap.cix {
  background-image: url(../image/bg_product_top_cix_sp.png);
  background-size: contain;
  background-position: 100% 0;
  background-repeat: no-repeat;
}
@media (width >= 768px) {
  .p-product.top .p-product__wrap.cix {
    background-image: url(../image/bg_product_top_cix.png);
    background-size: 300px 333px;
  }
}
.p-product.top .p-product__wrap.cix .p-product__logo {
  width: 240px;
}
@media (width >= 768px) {
  .p-product.top .p-product__wrap.cix .p-product__logo {
    width: 250px;
  }
}
.p-product.top .p-product__wrap.cix h4::before {
  background-color: #AB55C1;
}
.p-product.top .p-product__wrap.stravis {
  background-image: url(../image/bg_product_top_stravis_sp.png);
  background-size: contain;
  background-position: 100% 0;
  background-repeat: no-repeat;
}
@media (width >= 768px) {
  .p-product.top .p-product__wrap.stravis {
    background-image: url(../image/bg_product_top_stravis.png);
    background-size: 300px 333px;
  }
}
.p-product.top .p-product__wrap.stravis .p-product__logo {
  width: 295px;
}
@media (width >= 768px) {
  .p-product.top .p-product__wrap.stravis .p-product__logo {
    width: 380px;
  }
}
.p-product.top .p-product__wrap.stravis h4::before {
  background-color: #3B7745;
}
.p-product.top .p-product__wrap.tagetik {
  background-image: url(../image/bg_product_top_tagetik_sp.png);
  background-size: contain;
  background-position: 100% 0;
  background-repeat: no-repeat;
}
@media (width >= 768px) {
  .p-product.top .p-product__wrap.tagetik {
    background-image: url(../image/bg_product_top_tagetik.png);
    background-size: 300px 333px;
  }
}
.p-product.top .p-product__wrap.tagetik .p-product__logo {
  width: 295px;
}
@media (width >= 768px) {
  .p-product.top .p-product__wrap.tagetik .p-product__logo {
    width: 368px;
  }
}
.p-product.top .p-product__wrap.tagetik h4::before {
  background-color: #1D63D5;
}
.p-product.top .p-product__wrap h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.6;
}
.p-product.top .p-product__wrap h4 {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  position: relative;
  padding-top: 23px;
  padding-left: 25px;
  border-top: 2px solid #E3E3E3;
  margin-bottom: 25px;
}
@media (width >= 768px) {
  .p-product.top .p-product__wrap h4 {
    font-size: 2.4rem;
    padding-left: 35px;
  }
}
.p-product.top .p-product__wrap h4::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: #333333;
  position: absolute;
  top: -2px;
  left: 0;
}
@media (width >= 768px) {
  .p-product.top .p-product__wrap h4::after {
    width: 80px;
  }
}
.p-product.top .p-product__wrap h4::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%20%3Cpath%20id%3D%22icon%22%20d%3D%22M24.27.47h-6l-18%2C24h6l18-24Z%22%20transform%3D%22translate(-0.27%20-0.47)%22%20fill%3D%22%23ab55c1%22%2F%3E%3C%2Fsvg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  position: absolute;
  bottom: 6px;
  left: 0;
}
@media (width >= 768px) {
  .p-product.top .p-product__wrap h4::before {
    width: 24px;
    height: 24px;
    bottom: 8px;
  }
}
.p-product.top .p-product__wrap p {
  font-size: 1.4rem;
  line-height: 1.78;
}
@media (width >= 768px) {
  .p-product.top .p-product__wrap p {
    font-size: 1.6rem;
    line-height: 1.8;
  }
}
.p-product.top .p-product__more {
  margin: 20px 0 40px auto;
}
@media (width >= 768px) {
  .p-product.top .p-product__more {
    margin: 16px 0 60px 3px;
  }
}
.p-product.top .p-product__more a {
  text-decoration: none;
}
.p-product.top .att.product {
  margin-top: 10px;
}
.p-product.top .p-product__btn {
  width: 100%;
  height: 60px;
  margin: 35px auto 0;
}
@media (width >= 768px) {
  .p-product.top .p-product__btn {
    width: 400px;
    height: 80px;
    margin: 60px auto 0;
  }
}

a {
  color: var(--color05);
}

sup {
  vertical-align: top;
}

@media (width >= 768px) {
  .sp {
    display: none;
  }
}

.pc {
  display: none;
}
@media (width >= 768px) {
  .pc {
    display: block;
  }
}

.no_post {
  width: max-content;
  font-size: 1.6rem;
  margin: 100px auto;
}

.wrap_404 {
  padding: 50px 0;
}
@media (width >= 768px) {
  .wrap_404 {
    padding: 100px 0;
  }
}

.text_404 {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.att.product {
  font-size: 1.1rem !important;
  color: #666666;
  text-indent: -1.1rem;
  margin-left: 1.1rem;
  margin-top: 15px;
  line-height: 1.36 !important;
}
.att.footer {
  font-size: 0.9rem;
  color: #AAAAAA;
  line-height: 1.6;
}
@media (width >= 768px) {
  .att.footer {
    width: 60%;
  }
}
@media (width >= 1280px) {
  .att.footer {
    width: auto;
  }
}

/* youtube */
.movie {
  position: relative;
  padding-top: 56.25%;
  width: 100%;
  margin: 40px 0;
}

.movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}/*# sourceMappingURL=theme.css.map */