@charset "UTF-8";
@font-face {
  font-family: "Mercari Sans";
  src: url("../fonts/MercariSans-Thin.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mercari Sans";
  src: url("../fonts/MercariSans-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mercari Sans";
  src: url("../fonts/MercariSans-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mercari Sans";
  src: url("../fonts/MercariSans-ExtraBold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@media screen and (min-width: 768px) {
  .HIDE-PC {
    display: none !important;
  }
}
@media screen and (max-width: 767.9px) {
  .HIDE-SP {
    display: none !important;
  }
}
* {
  box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, button {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

body,
html {
  height: 100%;
  scroll-padding-top: 100px;
}
@media screen and (max-width: 767.9px) {
  body,
  html {
    scroll-padding-top: 80px;
  }
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: "Avenir-Roman", "Arial", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  background-color: #f5f5f5;
  color: #222;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}
body main#main {
  flex: 1;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  body main#main {
    padding-top: 58px;
    padding-bottom: 40px;
  }
}
body .common-hero {
  padding-top: 100px;
  margin-bottom: 104px;
}
@media screen and (max-width: 767.9px) {
  body .common-hero {
    padding-top: 74px;
    margin-bottom: 80px;
  }
}
body {
  --main-content-width-num: 61;
  --main-content-width: calc(var(--main-content-width-num) * 1%);
  --sidenav-grid-col-width: calc((100% - var(--main-content-width)) / 2);
  --main-content-local-width: calc((var(--main-content-width-num) * 2 / (100 + var(--main-content-width-num))) * 100%);
}
body .l-lower-grid {
  position: relative;
  display: grid;
  grid-template-columns: var(--sidenav-grid-col-width) minmax(0, 1fr);
  align-items: start;
  z-index: 1;
}
@media screen and (max-width: 1079.9px) {
  body .l-lower-grid {
    grid-template-columns: 1fr;
  }
}
body .l-lower-grid .c-sidenav {
  position: sticky;
  top: 200px;
  width: 100%;
  max-width: 260px;
  margin-left: auto;
}
@media screen and (max-width: 1079.9px) {
  body .l-lower-grid .c-sidenav {
    max-width: inherit;
    padding: 0;
    display: none;
  }
}
body .l-lower-grid .c-main-content {
  width: var(--main-content-local-width);
}
@media screen and (max-width: 1079.9px) {
  body .l-lower-grid .c-main-content {
    width: 100%;
  }
}

.inner {
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 1079.9px) {
  .inner {
    max-width: 880px;
    width: 89.33%;
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-inner {
  width: 83.3%;
}

/* cancel caret */
body {
  caret-color: transparent;
}

input,
textarea,
select,
button,
[contenteditable=true],
[contenteditable=""] {
  caret-color: auto;
}

.c-link-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 1.5em;
  list-style: disc;
}
.c-link-list li a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  line-height: 1.2;
  transition: opacity 0.2s;
  color: #222;
}
@media (pointer: fine) {
  .c-link-list li a:hover {
    opacity: 0.7;
  }
}
.c-link-list li a:after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url("/assets/images/icon_link.svg") center/contain no-repeat;
}

.c-circle-arrow {
  position: absolute;
  display: block;
  right: -7px;
  bottom: -10px;
  width: 38px;
  height: 38px;
  border: 1px solid #666;
  border-radius: 50%;
  transition: all 0.2s;
  cursor: pointer;
  background-color: transparent;
}
@media screen and (max-width: 767.9px) {
  .c-circle-arrow {
    right: 0;
    bottom: 0;
    width: 32px;
    height: 32px;
  }
}
.c-circle-arrow:after {
  display: block;
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 12px;
  background: url("/assets/images/arrow.svg") center/contain no-repeat;
  transition: transform 0.2s;
}
@media screen and (max-width: 767.9px) {
  .c-circle-arrow:after {
    width: 12px;
    height: 9px;
  }
}
@media (pointer: fine) {
  .c-circle-arrow:hover {
    background-color: #222;
    border-color: #222;
  }
  .c-circle-arrow:hover:after {
    background-image: url("/assets/images/arrow_w.svg");
  }
}

.c-breadcrumb {
  position: absolute;
  top: 96px;
  left: 40px;
  z-index: 1;
}
@media screen and (max-width: 767.9px) {
  .c-breadcrumb {
    top: 68px;
    left: 20px;
  }
}
.c-breadcrumb .topic-path {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-size: 12px;
  line-height: 1.3;
}
.c-breadcrumb .topic-path li {
  position: relative;
}
.c-breadcrumb .topic-path li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 44%;
  right: -13px;
  width: 5px;
  height: 5px;
  border-top: 1px solid #222;
  border-right: 1px solid #222;
  transform: translateY(-50%) rotate(45deg);
}
.c-lower-kv-bg-obj {
  position: absolute;
  opacity: 0.35;
  z-index: -1;
}
.c-lower-kv-bg-obj img,
.c-lower-kv-bg-obj picture {
  width: 100%;
  height: auto;
}
.c-lower-kv-bg-obj.bg-obj1 {
  right: 32.6vw;
  top: 22.5vw;
  width: 13.61vw;
}
@media screen and (max-width: 767.9px) {
  .c-lower-kv-bg-obj.bg-obj1 {
    right: 44vw;
    top: 100vw;
    width: 23.2vw;
  }
}
.c-lower-kv-bg-obj.bg-obj2 {
  right: 0;
  top: 0px;
  width: 41.5vw;
}
@media screen and (max-width: 767.9px) {
  .c-lower-kv-bg-obj.bg-obj2 {
    top: 42.6vw;
    width: 58.66vw;
  }
}

.c-lower-kv-title {
  display: block;
  width: fit-content;
  margin-bottom: 30px;
  background: linear-gradient(90deg, #EE5267 0%, #7379F1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 70px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  font-family: "Mercari Sans", "Arial", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
@media screen and (max-width: 767.9px) {
  .c-lower-kv-title {
    margin-bottom: 38px;
    font-size: 34px;
  }
}

.c-lower-kv-lead {
  font-size: 20px;
  line-height: 1.8;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .c-lower-kv-lead {
    font-size: 14px;
    line-height: 1.8;
  }
}

.c-tag {
  display: flex;
  align-items: center;
  padding: 3px 12px 1px;
  border: 1px solid #666;
  border-radius: 999px;
  line-height: 1.2;
  font-size: 14px;
}
@media screen and (max-width: 767.9px) {
  .c-tag {
    font-size: 12px;
  }
}

.c-deco-tag {
  display: flex;
  align-items: center;
  padding: 3px 12px 1px;
  border-radius: 999px;
  line-height: 1.2;
  font-size: 14px;
  color: #ffffff;
  background: linear-gradient(90deg, #EE5267 0%, #7379F1 113.16%);
}
@media screen and (max-width: 767.9px) {
  .c-deco-tag {
    font-size: 12px;
  }
}

#main .c-text-link {
  display: inline-flex;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-decoration: none !important;
  color: #222;
}
@media screen and (max-width: 767.9px) {
  #main .c-text-link {
    font-size: 16px;
  }
}
@media (pointer: fine) {
  #main .c-text-link:hover .c-circle-arrow {
    background-color: #222;
    border-color: #222;
  }
  #main .c-text-link:hover .c-circle-arrow:after {
    background-image: url("/assets/images/arrow_w.svg");
  }
}
#main .c-text-link .text {
  margin-right: 8px;
  transition: all 0.2s;
}
#main .c-text-link .c-circle-arrow {
  position: relative;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 767.9px) {
  #main .c-text-link .c-circle-arrow {
    top: -2px;
  }
}

.c-article-card {
  display: flex;
  flex: 1;
  flex-direction: column;
  width: 24.44vw;
  padding: 16px 16px;
  border-radius: 16px;
  transition: all 0.2s;
}
@media screen and (max-width: 767.9px) {
  .c-article-card {
    width: 70.13vw;
    padding: 0;
  }
}
@media (pointer: fine) {
  .c-article-card:hover {
    background-color: #ffffff;
    box-shadow: 0px 0px 14px rgba(34, 34, 34, 0.15);
  }
  .c-article-card:hover .info .title {
    text-decoration-color: #222;
  }
}
.c-article-card .thumb {
  width: 100%;
  margin-bottom: 13px;
}
.c-article-card .thumb img,
.c-article-card .thumb picture,
.c-article-card .thumb picture img {
  margin-bottom: 10px;
  border-radius: 8px;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
}
.c-article-card .info {
  word-break: break-word;
}
.c-article-card .info .title {
  margin-bottom: 9px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  text-decoration-line: underline;
  text-decoration-color: transparent;
  transition: all 0.2s;
}
.c-article-card .info p {
  margin-bottom: 13px;
  font-size: 14px;
  line-height: 1.4;
  color: #282828;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.c-article-card .info .date {
  display: block;
  font-size: 14px;
  color: #666;
  margin-bottom: 6px;
  font-weight: 700;
}
.c-article-card .info .tags {
  display: flex;
  margin-left: 5px;
  font-size: 12px;
  line-height: 1.2;
  gap: 10px;
}

.c-document-card {
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .c-document-card {
    padding: 0;
  }
}
.c-document-card:last-child {
  border-bottom: none;
}
.c-document-card .card-link {
  padding: 24px 24px;
  border-radius: 16px;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: inherit;
  text-decoration: none;
  width: 100%;
  padding-right: 30px;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .c-document-card .card-link {
    padding: 0 0 35px;
  }
}
@media (pointer: fine) {
  .c-document-card .card-link:hover {
    background-color: #ffffff;
  }
  .c-document-card .card-link:hover .info .title {
    text-decoration: underline;
  }
  .c-document-card .card-link:hover .c-circle-arrow {
    background-color: #222;
    border-color: #222;
  }
  .c-document-card .card-link:hover .c-circle-arrow:after {
    background-image: url("/assets/images/arrow_w.svg");
  }
}
.c-document-card .tag-label {
  margin-bottom: 16px;
  display: inline-block;
}
.c-document-card .title {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: #222;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s;
}
@media screen and (max-width: 767.9px) {
  .c-document-card .title {
    font-size: 20px;
  }
}
.c-document-card .card-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 16px;
}
@media screen and (max-width: 767.9px) {
  .c-document-card .card-desc {
    font-size: 14px;
  }
}
.c-document-card .meta-row {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
  line-height: 1.4;
}
@media screen and (max-width: 767.9px) {
  .c-document-card .meta-row {
    font-size: 12px;
  }
}
.c-document-card .hash-tags {
  font-size: 14px;
  line-height: 1.2;
  color: #282828;
}
@media screen and (max-width: 767.9px) {
  .c-document-card .hash-tags {
    font-size: 12px;
  }
}
.c-document-card .c-circle-arrow {
  bottom: 16px;
  right: 16px;
}
@media screen and (max-width: 767.9px) {
  .c-document-card .c-circle-arrow {
    bottom: 0;
    right: 0;
  }
}

.c-research-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 340px;
  border-radius: 16px;
  padding: 24px;
  color: #ffffff;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767.9px) {
  .c-research-card {
    height: 180px;
    padding: 12px;
    border-radius: 12px;
  }
}
@media (pointer: fine) {
  .c-research-card:hover .c-research-card__hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .c-research-card:hover .c-circle-arrow {
    background-color: #222;
    border-color: #222;
  }
  .c-research-card:hover .c-circle-arrow:after {
    background-image: url("/assets/images/arrow_w.svg");
  }
}
.c-research-card {
  /* カテゴリごとの背景画像はWPで与えるので不要になる
  &.ar {
    background: url("/assets/images/research_bg1.svg") center / cover no-repeat;
  }
  &.ce {
    background: url("/assets/images/research_bg2.svg") center / cover no-repeat;
  }
  &.quan {
    background: url("/assets/images/research_bg3.svg") center / cover no-repeat;
  }
  &.robo {
    background: url("/assets/images/research_bg4.svg") center / cover no-repeat;
  }
  &.logi {
    background: url("/assets/images/research_bg5.svg") center / cover no-repeat;
  }
  &.el {
    background: url("/assets/images/research_bg6.svg") center / cover no-repeat;
  }
  &.ai {
    background: url("/assets/images/research_bg7.svg") center / cover no-repeat;
  }
  &.eco {
    background: url("/assets/images/research_bg8.svg") center / cover no-repeat;
  }
     */
}
.c-research-card .category {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.06;
  margin-bottom: 8px;
  filter: drop-shadow(0px 0px 12px rgba(0, 0, 0, 0.25));
  font-weight: 700;
  word-break: break-word;
}
@media screen and (max-width: 767.9px) {
  .c-research-card .category {
    font-size: 20px;
  }
}
.c-research-card .sub {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
  filter: drop-shadow(0px 0px 12px rgba(0, 0, 0, 0.25));
}
@media screen and (max-width: 767.9px) {
  .c-research-card .sub {
    font-size: 12px;
  }
}
.c-research-card__body {
  max-width: calc(100% - 42px);
}
.c-research-card__hover {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 16px 16px 60px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s;
  z-index: 1;
}
.c-research-card__hover .text {
  color: #222;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}
@media screen and (max-width: 767.9px) {
  .c-research-card__hover .text {
    font-size: 12px;
  }
}
@media screen and (max-width: 767.9px) {
  .c-research-card__hover {
    padding: 16px 48px 16px 16px;
  }
}
.c-research-card .lead {
  font-size: 14px;
  line-height: 1.55;
  font-weight: 700;
  color: #ffffff;
  filter: drop-shadow(0px 0px 12px rgba(0, 0, 0, 0.25));
}
@media screen and (max-width: 767.9px) {
  .c-research-card .lead {
    font-size: 11px;
    line-height: 1.45;
  }
}
.c-research-card--archive {
  height: 360px;
  padding: 22px 20px 18px;
}
@media screen and (max-width: 767.9px) {
  .c-research-card--archive {
    height: 240px;
    padding: 16px 14px 14px;
  }
}
.c-research-card--archive .category {
  margin-bottom: 6px;
  font-size: 28px;
  line-height: 1.04;
}
@media screen and (max-width: 767.9px) {
  .c-research-card--archive .category {
    font-size: 24px;
  }
}
.c-research-card--archive .sub {
  max-width: 88%;
  font-size: 13px;
  line-height: 1.35;
}
@media screen and (max-width: 767.9px) {
  .c-research-card--archive .sub {
    max-width: 92%;
    font-size: 11px;
  }
}
.c-research-card--archive.ar {
  justify-content: flex-start;
  padding-bottom: 0;
}
.c-research-card--archive.ar .c-research-card__body {
  max-width: none;
  margin: auto -20px 0;
  padding: 14px 62px 20px 20px;
  background: linear-gradient(180deg, rgba(248, 242, 253, 0.92) 0%, rgba(243, 236, 250, 0.96) 100%);
  min-height: 132px;
}
@media screen and (max-width: 767.9px) {
  .c-research-card--archive.ar .c-research-card__body {
    margin: auto -14px 0;
    padding: 12px 48px 14px 14px;
    min-height: 92px;
  }
}
.c-research-card--archive.ar .lead {
  color: #4b4b4b;
  filter: none;
  font-weight: 500;
}
.c-research-card .c-circle-arrow {
  position: absolute;
  display: block;
  width: 38px;
  height: 38px;
  bottom: 16px;
  right: 16px;
  border: 1px solid rgb(255, 255, 255);
  border-radius: 50%;
  transition: all 0.2s;
  z-index: 2;
}
.c-research-card .c-circle-arrow::after {
  display: block;
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 12px;
  background: url("/assets/images/arrow_w.svg") center/contain no-repeat;
  transition: transform 0.2s;
}
@media screen and (max-width: 767.9px) {
  .c-research-card .c-circle-arrow::after {
    width: 12px;
    height: 9px;
  }
}
@media screen and (max-width: 767.9px) {
  .c-research-card .c-circle-arrow {
    width: 32px;
    height: 32px;
    bottom: 12px;
    right: 12px;
  }
}

.c-sidenav {
  font-size: 14px;
  line-height: 1.3;
  letter-spacing: 0.07em;
  font-family: "Mercari Sans", "Arial", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
.c-sidenav > ul {
  padding-left: 20px;
  padding-right: 56px;
  display: grid;
  gap: 18px;
  word-break: break-word;
}
.c-sidenav a {
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  transition: all 0.2s;
}
.c-sidenav a > span {
  flex: 1;
}
.c-sidenav a:before {
  display: block;
  position: relative;
  opacity: 0;
  visibility: hidden;
  content: "";
  width: 11px;
  height: 7px;
  background: url("/assets/images/sidenav_arrow.svg") center/contain no-repeat;
  transition: all 0.2s;
}
.c-sidenav a.is-active {
  text-decoration: underline;
  font-weight: 700;
}
.c-sidenav a.is-active:before {
  opacity: 1;
  visibility: visible;
}
@media (pointer: fine) {
  .c-sidenav a:hover {
    text-decoration: underline;
    font-weight: 700;
  }
  .c-sidenav a:hover:before {
    opacity: 1;
    visibility: visible;
  }
}
.c-sidenav .checkbox-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.c-sidenav .c-checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  cursor: pointer;
  user-select: none;
}
.c-sidenav .c-checkbox-label input[type=checkbox] {
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  position: relative;
  cursor: pointer;
  transition: all 0.35s;
}
.c-sidenav .c-checkbox-label input[type=checkbox]:checked {
  background-color: #222;
  border-color: #222;
}
.c-sidenav .c-checkbox-label input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 4px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.c-sidenav .c-checkbox-label span {
  flex: 1;
}

#main .c-link-external {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s;
}
@media (pointer: fine) {
  #main .c-link-external:hover {
    opacity: 0.7;
  }
}
#main .c-link-external::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 15px;
  background: url("/assets/images/icon_link.svg") center/contain no-repeat;
}

@media screen and (max-width: 1079.9px) {
  body .l-lower-grid .js-sidebar-accordion {
    display: block;
    position: relative;
    top: 0;
    width: 100%;
    background-color: #fff;
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
  }
}
body .l-lower-grid .js-sidebar-accordion .sidebar-toggle {
  display: none;
}
@media screen and (max-width: 1079.9px) {
  body .l-lower-grid .js-sidebar-accordion .sidebar-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 54px;
    padding: 0 24px;
    background: transparent;
    border: none;
    font-size: 16px;
    font-weight: 700;
    color: #222;
    cursor: pointer;
    outline: none;
    position: relative;
  }
}
body .l-lower-grid .js-sidebar-accordion .sidebar-content {
  padding-left: 20px;
  padding-right: 56px;
}
@media screen and (max-width: 1079.9px) {
  body .l-lower-grid .js-sidebar-accordion .sidebar-content {
    display: none;
    padding: 24px;
  }
}

body header#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 1000;
}
body header#header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  pointer-events: none;
  transition: opacity 0.35s;
  z-index: -1;
}
body header#header.is-open {
  background: transparent;
}
body header#header.is-open::before {
  opacity: 0;
}
@media screen and (max-width: 767.9px) {
  body header#header.is-open::before {
    opacity: 0;
  }
}
body header#header.is-open .nav-global {
  display: none;
}
body header#header.is-open .header-logo img {
  width: 167px;
}
@media screen and (max-width: 767.9px) {
  body header#header.is-open .header-logo {
    height: auto;
    padding-top: 0;
    display: flex;
    align-items: flex-start;
  }
}
@media screen and (max-width: 1119.9px) {
  body header#header.is-open .lang-switch {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    height: auto;
  }
}
body header#header.is-open .hamburger-btn {
  background-color: #222;
}
body header#header.is-open .hamburger-btn span {
  background-color: #fff;
}
body header#header.is-open .hamburger-btn span:nth-child(1) {
  top: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
body header#header.is-open .hamburger-btn span:nth-child(2) {
  opacity: 0;
}
body header#header.is-open .hamburger-btn span:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
body header#header .header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding-right: clamp(75px, 8.19%, 96px);
  padding-left: min(60px, 3.05%);
  gap: 15px;
  transition: width 0.35s, margin-left 0.35s;
}
@media screen and (max-width: 767.9px) {
  body header#header .header-wrap {
    position: relative;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    height: 60px;
    padding-right: 20px;
    padding-left: 14px;
    width: 100%;
    margin-left: auto;
  }
}
@media screen and (max-width: 767.9px) {
  body header#header.is-open .header-wrap {
    width: 89.33%;
    height: 102px;
    padding-top: 15px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 15px;
    background: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
  }
  body header#header.is-open .header-wrap::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 15px;
    background: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
  }
}
body header#header .header-logo {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  body header#header .header-logo {
    height: 80px;
  }
}
@media screen and (max-width: 767.9px) {
  body header#header .header-logo {
    height: 60px;
  }
}
body header#header .header-logo a {
  position: relative;
  display: inline-block;
}
body header#header .header-logo .default {
  opacity: 1;
  visibility: visible;
}
body header#header .header-logo img,
body header#header .header-logo picture {
  width: 167px;
}
@media screen and (max-width: 767.9px) {
  body header#header .header-logo img,
  body header#header .header-logo picture {
    width: 157px;
  }
}
body header#header .header-actions {
  display: flex;
  align-items: center;
  gap: 32px;
}
body header#header .nav-global {
  padding-top: 5px;
}
@media screen and (max-width: 1119.9px) {
  body header#header .nav-global {
    display: none;
  }
}
body header#header .menu-list {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
body header#header .menu-list .menu-item {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 24px;
  margin-bottom: -24px;
}
body header#header .menu-list .menu-item::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #222;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s;
}
body header#header .menu-list .menu-item > a {
  color: #333;
  display: flex;
  align-items: center;
  position: relative;
  padding-bottom: 6px;
}
body header#header .menu-list .menu-item.is-active:after {
  transform: scaleX(1);
}
@media (pointer: fine) {
  body header#header .menu-list .menu-item:hover:after {
    transform: scaleX(1);
  }
}
body header#header .menu-list .menu-item.has-dropdown > a:after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 5px;
  margin-left: 6px;
  background: url("/assets/images/arrow_menu.svg") no-repeat center;
  background-size: contain;
  transition: transform 0.35s;
}
@media (pointer: fine) {
  body header#header .menu-list .menu-item.has-dropdown:hover > a:after {
    transform: rotate(180deg);
  }
  body header#header .menu-list .menu-item.has-dropdown:hover .header-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) translateZ(0);
  }
}
body header#header .menu-list .menu-item .header-dropdown {
  position: absolute;
  top: 88px;
  left: -8px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 8px;
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.35s, visibility 0.35s, transform 0.35s;
  box-shadow: 0px 2px 4px rgba(34, 34, 34, 0.1);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  margin-top: -22px;
  z-index: 10;
}
body header#header .menu-list .menu-item .header-dropdown::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: 30px;
  background: transparent;
}
body header#header .menu-list .menu-item .header-dropdown ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
body header#header .menu-list .menu-item .header-dropdown li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px;
  font-size: 14px;
  transition: opacity 0.35s;
}
body header#header .menu-list .menu-item .header-dropdown li a::after {
  content: "";
  display: block;
  width: 14px;
  height: 10px;
  background: url("/assets/images/arrow.svg") no-repeat center right;
  background-size: contain;
  transition: transform 0.35s;
}
@media (pointer: fine) {
  body header#header .menu-list .menu-item .header-dropdown li a:hover::after {
    transform: translateX(4px);
  }
}
body header#header .lang-switch {
  position: relative;
}
@media screen and (min-width: 768px) {
  body header#header .lang-switch {
    display: block;
  }
}
@media screen and (max-width: 1119.9px) {
  body header#header .lang-switch {
    opacity: 0;
    height: 0;
    visibility: hidden;
    pointer-events: none;
  }
}
body header#header .lang-switch .lang-switch-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  padding: 6px 0;
  cursor: pointer;
  color: inherit;
  font-family: inherit;
}
@media screen and (max-width: 767.9px) {
  body header#header .lang-switch .lang-switch-toggle {
    display: none;
  }
}
body header#header .lang-switch .lang-switch-toggle .lang-icon {
  position: relative;
  display: flex;
  align-items: center;
  color: inherit;
}
body header#header .lang-switch .lang-switch-toggle .lang-icon:after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 5px;
  margin-left: 6px;
  background: url("/assets/images/arrow_menu.svg") no-repeat center;
  background-size: contain;
  transition: transform 0.35s;
}
@media screen and (min-width: 768px) {
  body header#header .lang-switch .lang-switch-dropdown {
    position: absolute;
    top: 88px;
    left: -20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 16px;
    opacity: 0;
    min-width: 120px;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.35s, visibility 0.35s, transform 0.35s;
    box-shadow: 0px 2px 4px rgba(34, 34, 34, 0.1);
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
    margin-top: -22px;
    z-index: 100;
  }
  body header#header .lang-switch .lang-switch-dropdown::before {
    content: "";
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 30px;
    background: transparent;
  }
}
@media screen and (max-width: 767.9px) {
  body header#header .lang-switch .lang-switch-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
@media screen and (pointer: fine) and (min-width: 768px) {
  body header#header .lang-switch:hover .lang-icon:after {
    transform: rotate(180deg);
  }
  body header#header .lang-switch:hover .lang-switch-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) translateZ(0);
  }
}
body header#header .lang-switch .lang-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  body header#header .lang-switch .lang-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
}
@media screen and (max-width: 767.9px) {
  body header#header .lang-switch .lang-list {
    display: flex;
    align-items: center;
    gap: 14px;
  }
}
body header#header .lang-switch .lang-list-item {
  margin: 0;
  padding: 0;
  list-style: none;
  display: block;
}
body header#header .lang-switch .lang-item {
  font-family: inherit;
  text-decoration: none;
  line-height: 1;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  body header#header .lang-switch .lang-item {
    font-size: 14px;
    color: #222;
    transition: opacity 0.35s;
  }
  body header#header .lang-switch .lang-item.is-active {
    text-decoration: underline;
    text-underline-offset: 5px;
    text-decoration-thickness: 1.5px;
    cursor: default;
    pointer-events: none;
    font-weight: 700;
  }
  body header#header .lang-switch .lang-item[href] {
    cursor: pointer;
  }
}
@media screen and (min-width: 768px) and (pointer: fine) {
  body header#header .lang-switch .lang-item[href]:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 768px) {
  body header#header .lang-switch .lang-item:not([href]):not(.is-active) {
    cursor: default;
    pointer-events: none;
  }
}
@media screen and (max-width: 767.9px) {
  body header#header .lang-switch .lang-item {
    font-size: 14px;
    color: #222;
    padding: 0 14px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: transparent;
    transition: background-color 0.35s, color 0.35s;
  }
  body header#header .lang-switch .lang-item.is-active {
    background-color: #222;
    color: #fff;
    font-weight: 700;
  }
}
body header#header .hamburger-btn {
  position: absolute;
  top: 14px;
  right: 16px;
  display: block;
  background: none;
  border: none;
  padding: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.35s;
}
@media screen and (max-width: 767.9px) {
  body header#header .hamburger-btn {
    width: 48px;
    height: 48px;
    top: 3px;
    right: 14px;
  }
}
body header#header .hamburger-btn span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 22px;
  height: 2px;
  background-color: #333;
  transition: transform 0.35s, opacity 0.35s, top 0.35s;
}
body header#header .hamburger-btn span:nth-child(1) {
  top: 17px;
}
body header#header .hamburger-btn span:nth-child(2) {
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
body header#header .hamburger-btn span:nth-child(3) {
  bottom: 17px;
}

.nav-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  z-index: 100;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.35s, visibility 0.35s;
  overflow-y: auto;
  overscroll-behavior: contain;
}
@media screen and (max-width: 767.9px) {
  .nav-drawer {
    left: auto;
    right: 0;
    overflow: hidden;
    transition: width 0.35s, opacity 0.35s, visibility 0.35s;
  }
}
#header.is-open ~ .nav-drawer {
  visibility: visible;
  opacity: 1;
}
@media screen and (max-width: 767.9px) {
  #header.is-open ~ .nav-drawer {
    width: 89.33%;
  }
}
.nav-drawer .nav-drawer-inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding-top: 80px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(7px);
  overflow-y: auto;
}
@media screen and (max-width: 767.9px) {
  .nav-drawer .nav-drawer-inner {
    position: absolute;
    top: 117px;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: unset;
    padding-top: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
}
.nav-drawer .nav-drawer-nav {
  display: flex;
  gap: 20px;
  padding: 90px 10% 35px 14.5%;
  font-family: "Mercari Sans", "Arial", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
@media screen and (max-width: 767.9px) {
  .nav-drawer .nav-drawer-nav {
    gap: 0;
    flex-direction: column;
    padding: 0 16px;
  }
}
.nav-drawer .nav-drawer-col {
  flex: 1;
}
@media screen and (min-width: 768px) {
  .nav-drawer .nav-drawer-col {
    min-width: 398px;
  }
}
@media screen and (max-width: 767.9px) {
  .nav-drawer .nav-drawer-col {
    width: 100%;
    flex: none;
    border-top: 1px solid #dcdcdc;
  }
}
.nav-drawer .nav-drawer-col--main {
  flex: 0 0 28%;
}
@media screen and (max-width: 767.9px) {
  .nav-drawer .nav-drawer-col--main {
    flex: none;
  }
}
.nav-drawer .nav-drawer-mobile-head {
  display: none;
}
@media screen and (max-width: 767.9px) {
  .nav-drawer .nav-drawer-mobile-head {
    display: block;
    padding: 10px 16px 14px;
  }
}
@media screen and (max-width: 767.9px) {
  .nav-drawer .nav-drawer-subtitle {
    margin-top: 0;
    margin-bottom: 14px;
    font-size: 14px;
    line-height: 1.4;
    color: #222;
    font-weight: 500;
  }
}
.nav-drawer .drawer-col-title {
  position: relative;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
  background: transparent;
  border: 0;
  text-align: left;
  display: inline-block;
}
.nav-drawer .drawer-col-title::after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .nav-drawer .drawer-col-title::after {
    opacity: 0;
    right: -40px;
    width: 24px;
    height: 24px;
    background: #222 url("/assets/images/arrow_w.svg") center/14px no-repeat;
    border-radius: 50%;
    transition: opacity 0.35s;
  }
}
@media screen and (max-width: 767.9px) {
  .nav-drawer .drawer-col-title::after {
    right: 0;
    width: 12px;
    height: 1px;
    background-color: #222;
    transform: translateY(-50%);
  }
}
@media (pointer: fine) {
  .nav-drawer .drawer-col-title:hover:after {
    opacity: 1;
  }
}
@media screen and (max-width: 767.9px) {
  .nav-drawer .drawer-col-title.is-pc {
    display: none;
  }
}
.nav-drawer .drawer-col-title.is-sp {
  display: none;
}
@media screen and (max-width: 767.9px) {
  .nav-drawer .drawer-col-title.is-sp {
    display: flex;
  }
}
@media screen and (max-width: 767.9px) {
  .nav-drawer .drawer-col-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 0;
    padding: 9px 28px 11px 0;
    font-size: 16px;
    line-height: 1.4;
    cursor: pointer;
  }
  .nav-drawer .drawer-col-title::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 12px;
    height: 1px;
    background-color: #222;
    transform: translateY(-50%) rotate(90deg);
    transition: opacity 0.35s;
  }
}
@media screen and (max-width: 767.9px) {
  .nav-drawer .js-drawer-accordion.is-open .drawer-col-title {
    border-bottom: 1px solid #dcdcdc;
  }
  .nav-drawer .js-drawer-accordion.is-open .drawer-col-title::before {
    opacity: 0;
  }
}
@media screen and (max-width: 767.9px) {
  .nav-drawer .drawer-main-list {
    padding: 0;
    margin: 0;
    list-style: none;
  }
}
.nav-drawer .drawer-main-list li {
  margin-bottom: 12px;
}
@media screen and (max-width: 767.9px) {
  .nav-drawer .drawer-main-list li {
    margin-bottom: 0;
    border-bottom: 1px solid #dcdcdc;
  }
  .nav-drawer .drawer-main-list li:last-child {
    border-bottom: 0;
  }
}
.nav-drawer .drawer-main-list li a {
  position: relative;
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #222;
  transition: opacity 0.35s;
}
@media screen and (min-width: 768px) {
  .nav-drawer .drawer-main-list li a {
    width: fit-content;
  }
}
@media screen and (max-width: 767.9px) {
  .nav-drawer .drawer-main-list li a {
    display: block;
    padding: 9px 28px 11px 0;
    font-size: 16px;
    line-height: 1.4;
  }
}
.nav-drawer .drawer-main-list li a:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .nav-drawer .drawer-main-list li a:after {
    opacity: 0;
    right: -40px;
    width: 24px;
    height: 24px;
    background: #222 url("/assets/images/arrow_w.svg") center/14px no-repeat;
    border-radius: 50%;
    transition: opacity 0.35s;
  }
}
@media screen and (max-width: 767.9px) {
  .nav-drawer .drawer-main-list li a:after {
    right: 0;
    width: 15px;
    height: 10px;
    background: url("/assets/images/arrow.svg") center/contain no-repeat;
  }
}
@media (pointer: fine) {
  .nav-drawer .drawer-main-list li a:hover:after {
    opacity: 1;
  }
}
@media screen and (max-width: 767.9px) {
  .nav-drawer .drawer-sub-list {
    display: none;
    padding: 8px 0 0;
    margin: 0;
    list-style: none;
  }
}
.nav-drawer .drawer-sub-list li {
  margin-bottom: 13px;
}
@media screen and (max-width: 767.9px) {
  .nav-drawer .drawer-sub-list li {
    margin-bottom: 21px;
  }
}
.nav-drawer .drawer-sub-list li a {
  position: relative;
  font-size: 18px;
  color: #222;
  transition: opacity 0.35s;
}
@media screen and (max-width: 767.9px) {
  .nav-drawer .drawer-sub-list li a {
    display: block;
    padding: 0 28px 0 0;
    font-size: 14px;
    line-height: 1.3;
  }
}
.nav-drawer .drawer-sub-list li a:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .nav-drawer .drawer-sub-list li a:after {
    opacity: 0;
    right: -40px;
    width: 24px;
    height: 24px;
    background: #222 url("/assets/images/arrow_w.svg") center/14px no-repeat;
    border-radius: 50%;
    transition: opacity 0.35s;
  }
}
@media screen and (max-width: 767.9px) {
  .nav-drawer .drawer-sub-list li a:after {
    right: 0;
    width: 15px;
    height: 10px;
    background: url("/assets/images/arrow.svg") center/contain no-repeat;
  }
}
@media (pointer: fine) {
  .nav-drawer .drawer-sub-list li a:hover:after {
    opacity: 1;
  }
}
.nav-drawer .nav-drawer-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 14.5% 35px 14.5%;
  gap: 22px;
}
@media screen and (max-width: 767.9px) {
  .nav-drawer .nav-drawer-footer {
    flex-direction: column;
    align-items: flex-start;
    margin: 0px 16px 0;
    padding: 20px 0 28px;
  }
}
.nav-drawer .drawer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 32px;
}
@media screen and (max-width: 767.9px) {
  .nav-drawer .drawer-legal-links {
    flex-direction: column;
    gap: 10px;
  }
}
.nav-drawer .drawer-legal-links li a {
  font-size: 14px;
  color: #666;
  transition: opacity 0.35s;
}
@media screen and (max-width: 767.9px) {
  .nav-drawer .drawer-legal-links li a {
    font-size: 14px;
    line-height: 1.4;
  }
}
@media (pointer: fine) {
  .nav-drawer .drawer-legal-links li a:hover {
    opacity: 0.7;
  }
}
.nav-drawer .drawer-sns-list {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 767.9px) {
  .nav-drawer .drawer-sns-list {
    gap: 18px;
  }
}
.nav-drawer .drawer-sns-link,
.nav-drawer .drawer-sns-list .sns-link {
  display: flex;
  align-items: center;
  color: #222;
  transition: opacity 0.35s;
}
.nav-drawer .drawer-sns-link img,
.nav-drawer .drawer-sns-link picture,
.nav-drawer .drawer-sns-link svg,
.nav-drawer .drawer-sns-list .sns-link img,
.nav-drawer .drawer-sns-list .sns-link picture,
.nav-drawer .drawer-sns-list .sns-link svg {
  height: 28px;
  object-fit: contain;
}
@media (pointer: fine) {
  .nav-drawer .drawer-sns-link:hover,
  .nav-drawer .drawer-sns-list .sns-link:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767.9px) {
  .nav-drawer .lang-switch--drawer {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 14px;
  }
  .nav-drawer .lang-switch--drawer .lang-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 66px;
    height: 28px;
    padding: 0 14px;
    border-radius: 999px;
    font-size: 14px;
    line-height: 1;
    color: #222;
    background: transparent;
  }
  .nav-drawer .lang-switch--drawer .lang-item.is-active {
    background-color: #222;
    color: #fff;
    font-weight: 700;
  }
}

body footer#footer {
  position: relative;
  width: 100%;
}
body footer#footer .cta-area {
  background-color: #ffffff;
  display: flex;
  border-top: 1px solid #eee;
}
@media screen and (max-width: 1079.9px) {
  body footer#footer .cta-area {
    flex-direction: column;
  }
}
body footer#footer .cta-area .cta-card {
  width: 50%;
  display: flex;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 1079.9px) {
  body footer#footer .cta-area .cta-card {
    width: 100%;
    justify-content: flex-start;
  }
}
body footer#footer .cta-area .cta-card:first-child::after {
  content: "";
  position: absolute;
  right: 0;
  top: 12%;
  height: 75%;
  width: 2px;
  background-color: #222;
}
@media screen and (max-width: 1079.9px) {
  body footer#footer .cta-area .cta-card:first-child::after {
    top: auto;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: calc(100% - 40px);
    height: 1px;
  }
}
body footer#footer .cta-area a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 95px 0;
}
@media screen and (max-width: 1079.9px) {
  body footer#footer .cta-area a {
    padding: 24px 20px;
  }
}
@media (pointer: fine) {
  body footer#footer .cta-area a:hover .c-circle-arrow {
    background-color: #222;
    border-color: #222;
  }
  body footer#footer .cta-area a:hover .c-circle-arrow:after {
    background-image: url("/assets/images/arrow_w.svg");
  }
}
body footer#footer .cta-area .cta-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 69%;
  margin: 0 auto;
}
@media screen and (max-width: 1079.9px) {
  body footer#footer .cta-area .cta-content {
    width: 100%;
  }
}
body footer#footer .cta-area .cta-title {
  font-size: 56px;
  margin: 0 0 8px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  font-family: "Mercari Sans", "Arial", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
@media screen and (max-width: 1079.9px) {
  body footer#footer .cta-area .cta-title {
    margin-bottom: 15px;
    font-size: 32px;
  }
}
body footer#footer .cta-area .cta-text {
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  margin: 0;
  padding-right: 64px;
}
@media screen and (max-width: 1079.9px) {
  body footer#footer .cta-area .cta-text {
    font-size: 14px;
  }
}
body footer#footer .cta-area .c-circle-arrow {
  right: -1%;
  top: 50%;
  transform: translateY(-50%);
  width: 64px;
  height: 64px;
}
body footer#footer .cta-area .c-circle-arrow:after {
  width: 22px;
  height: 14px;
}
@media screen and (max-width: 1079.9px) {
  body footer#footer .cta-area .c-circle-arrow {
    right: 0;
    width: 38px;
    height: 38px;
    bottom: 5px;
    top: auto;
    transform: none;
  }
}
body footer#footer .footer-main {
  background-color: #222;
  color: #ffffff;
  padding: 48px 0 50px;
}
body footer#footer .footer-main .footer-inner {
  margin-left: 5.5%;
  margin-right: 5.5%;
}
@media screen and (max-width: 1079.9px) {
  body footer#footer .footer-main .footer-inner {
    width: 89.33%;
    margin: 0 auto;
  }
}
body footer#footer .footer-main .footer-nav-rows {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1079.9px) {
  body footer#footer .footer-main .footer-nav-rows {
    flex-direction: column;
  }
}
body footer#footer .footer-main .footer-nav-col {
  max-width: 320px;
  width: 25%;
  font-family: "Mercari Sans", "Arial", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
@media screen and (max-width: 1079.9px) {
  body footer#footer .footer-main .footer-nav-col.info-col {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 1079.9px) {
  body footer#footer .footer-main .footer-nav-col {
    max-width: inherit;
    width: 100%;
  }
}
body footer#footer .footer-main .footer-logo {
  margin-bottom: 15px;
}
body footer#footer .footer-main .footer-logo img,
body footer#footer .footer-main .footer-logo picture {
  width: 189px;
}
body footer#footer .footer-main .sns-list {
  display: flex;
  gap: 16px;
}
body footer#footer .footer-main .sns-list .sns-link {
  display: block;
  transition: opacity 0.35s;
}
body footer#footer .footer-main .sns-list .sns-link img,
body footer#footer .footer-main .sns-list .sns-link picture {
  width: 28px;
}
@media (pointer: fine) {
  body footer#footer .footer-main .sns-list .sns-link:hover {
    opacity: 0.7;
  }
}
body footer#footer .footer-main .footer-nav-group {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 1079.9px) {
  body footer#footer .footer-main .footer-nav-group {
    border-top: 1px solid #5a5a5a;
  }
}
@media screen and (max-width: 1079.9px) {
  body footer#footer .footer-main .footer-nav-group.no-accordion .nav-label a:after {
    right: 0;
  }
}
@media screen and (max-width: 1079.9px) {
  body footer#footer .footer-main .footer-nav-group.no-accordion .nav-label::before, body footer#footer .footer-main .footer-nav-group.no-accordion .nav-label::after {
    display: none;
  }
}
body footer#footer .footer-main .footer-nav-group li {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.4;
}
@media screen and (max-width: 1079.9px) {
  body footer#footer .footer-main .footer-nav-group li {
    margin-bottom: 0;
    padding: 0;
  }
}
body footer#footer .footer-main .footer-nav-group li a {
  position: relative;
  color: #aaa;
}
@media screen and (min-width: 768px) {
  body footer#footer .footer-main .footer-nav-group li a::after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    right: -40px;
    width: 24px;
    height: 24px;
    background: #ffffff url("/assets/images/arrow.svg") center/14px no-repeat;
    border-radius: 50%;
    transition: opacity 0.35s;
  }
}
@media (pointer: fine) {
  body footer#footer .footer-main .footer-nav-group li a:hover:after {
    opacity: 1;
  }
}
body footer#footer .footer-main .footer-nav-group .nav-label {
  position: relative;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 1079.9px) {
  body footer#footer .footer-main .footer-nav-group .nav-label {
    margin-bottom: 0;
    border-bottom: 1px solid #666;
    position: relative;
    padding: 0;
  }
  body footer#footer .footer-main .footer-nav-group .nav-label:after {
    content: "";
    display: block;
    width: 12px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.35s;
  }
  body footer#footer .footer-main .footer-nav-group .nav-label:before {
    content: "";
    display: block;
    width: 12px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transition: transform 0.35s, opacity 0.35s;
  }
}
body footer#footer .footer-main .footer-nav-group .nav-label a,
body footer#footer .footer-main .footer-nav-group .nav-label span {
  color: #ffffff;
}
body footer#footer .footer-main .footer-nav-group .nav-label a {
  position: relative;
  display: block;
}
@media screen and (min-width: 1080px) {
  body footer#footer .footer-main .footer-nav-group .nav-label a {
    width: fit-content;
  }
}
@media screen and (max-width: 1079.9px) {
  body footer#footer .footer-main .footer-nav-group .nav-label a {
    padding: 11px 0 9px;
  }
}
body footer#footer .footer-main .footer-nav-group .nav-label .nav-link-pc {
  display: block;
}
@media screen and (max-width: 1079.9px) {
  body footer#footer .footer-main .footer-nav-group .nav-label .nav-link-pc {
    display: none;
  }
}
body footer#footer .footer-main .footer-nav-group .nav-toggle {
  position: relative;
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  line-height: inherit;
  text-align: left;
  cursor: pointer;
}
body footer#footer .footer-main .footer-nav-group .nav-toggle span {
  position: relative;
}
@media screen and (max-width: 1079.9px) {
  body footer#footer .footer-main .footer-nav-group .nav-toggle {
    display: flex;
    padding: 11px 24px 10px 0;
  }
}
@media screen and (max-width: 1079.9px) {
  body footer#footer .footer-main .footer-nav-group.is-open .nav-label::before {
    transform: translateY(-50%) rotate(0deg);
    opacity: 0;
  }
}
body footer#footer .footer-main .footer-nav-group .accordion-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
body footer#footer .footer-main .footer-nav-group .accordion-content li a {
  position: relative;
}
@media screen and (max-width: 1079.9px) {
  body footer#footer .footer-main .footer-nav-group .accordion-content {
    display: none;
    padding: 12px 0 13px;
    border-bottom: 1px solid #666;
  }
  body footer#footer .footer-main .footer-nav-group .accordion-content li {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.4;
  }
  body footer#footer .footer-main .footer-nav-group .accordion-content li a {
    color: #ffffff;
  }
}
body footer#footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 35px;
  max-width: 1280px;
  margin: 0 auto;
}
[lang=en-US] body footer#footer .footer-bottom {
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 1079.9px) {
  body footer#footer .footer-bottom {
    flex-direction: column;
    padding-top: 28px;
  }
}
body footer#footer .footer-bottom .legal-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 730px;
}
[lang=en-US] body footer#footer .footer-bottom .legal-links {
  width: auto;
  gap: 2em;
}
@media screen and (max-width: 1079.9px) {
  [lang=en-US] body footer#footer .footer-bottom .legal-links {
    width: 100%;
    gap: 12px;
  }
}
@media screen and (max-width: 1079.9px) {
  body footer#footer .footer-bottom .legal-links {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 35px;
  }
}
body footer#footer .footer-bottom .legal-links li {
  font-size: 14px;
  line-height: 1.4;
}
body footer#footer .footer-bottom .legal-links li a {
  color: #dcdcdc;
  transition: opacity 0.35s;
}
@media (pointer: fine) {
  body footer#footer .footer-bottom .legal-links li a:hover {
    opacity: 0.7;
  }
}
body footer#footer .footer-bottom .copyright-text {
  font-size: 14px;
  color: #b3b3b3;
}
[lang=en-US] body footer#footer .footer-bottom .copyright-text {
  width: 100%;
  text-align: right;
}
@media screen and (max-width: 1079.9px) {
  [lang=en-US] body footer#footer .footer-bottom .copyright-text {
    text-align: center;
  }
}
@media screen and (max-width: 1079.9px) {
  body footer#footer .footer-bottom .copyright-text {
    width: 100%;
    text-align: center;
  }
}

@keyframes flow1 {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: -200% 0%;
  }
}
@keyframes flow2 {
  0% {
    scale: 1;
    rotate: 0deg;
  }
  50% {
    scale: 1.5;
    rotate: 10deg;
  }
  100% {
    scale: 1;
    rotate: 0deg;
  }
}
@keyframes flow3 {
  0% {
    scale: 1;
    rotate: 0deg;
    top: 0;
    left: 0;
    --flow-color: #8674d9;
  }
  25% {
    scale: 3;
    rotate: 90deg;
    top: 35%;
    left: 25%;
    --flow-color: #54cdfb;
  }
  50% {
    scale: 2;
    rotate: 180deg;
    top: 70%;
    left: 50%;
    --flow-color: #fc4f4f;
  }
  100% {
    scale: 1;
    rotate: 360deg;
    top: 0;
    left: 0;
    --flow-color: #8674d9;
  }
}
.partial-news-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 30px;
}
@media screen and (max-width: 1079.9px) {
  .partial-news-list {
    gap: 24px 16px;
    margin-bottom: 25px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767.9px) {
  .partial-news-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.partial-news-list .c-article-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  color: inherit;
  text-decoration: none;
}
.partial-news-list .c-article-card .thumb {
  margin-bottom: 0;
}
.partial-news-list .c-article-card .category {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.2;
  color: #666;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .partial-news-list .c-article-card .category {
    font-size: 12px;
  }
}
.partial-news-list .c-article-card .info {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
}
@media screen and (max-width: 767.9px) {
  .partial-news-list .c-article-card .info {
    flex-direction: column;
    align-items: flex-start;
  }
}
.partial-news-list .c-article-card .date {
  margin-bottom: 0;
}
@media screen and (max-width: 767.9px) {
  .partial-news-list .c-article-card .date {
    font-size: 12px;
  }
}
.partial-news-list .c-article-card .title {
  margin-bottom: 18px;
}
@media screen and (max-width: 767.9px) {
  .partial-news-list .c-article-card .title {
    margin-bottom: 8px;
    font-size: 14px;
  }
}
.partial-news-list .c-article-card .tag-wrap {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
  width: 70%;
  flex: 1;
}
@media screen and (max-width: 767.9px) {
  .partial-news-list .c-article-card .tag-wrap {
    width: 100%;
    justify-content: flex-start;
  }
}
.partial-news-list .c-article-card .hash-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 12px;
  font-size: 14px;
  color: #333;
}
@media screen and (max-width: 767.9px) {
  .partial-news-list .c-article-card .hash-tags {
    font-size: 12px;
  }
}

.partial-row-news-list {
  border-top: 1px solid #dcdcdc;
}
.partial-row-news-list .news-item {
  position: relative;
  display: block;
  padding: 16px 36px 16px 16px;
  border-bottom: 1px solid #dcdcdc;
  text-decoration: none;
  color: #222;
}
@media screen and (max-width: 767.9px) {
  .partial-row-news-list .news-item {
    padding: 12px 36px 12px 0;
  }
}
.partial-row-news-list .news-item:after {
  display: block;
  position: absolute;
  content: "";
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 16px;
  height: 12px;
  background: url("/assets/images/arrow.svg") center/contain no-repeat;
}
@media screen and (max-width: 767.9px) {
  .partial-row-news-list .news-item:after {
    right: 11px;
  }
}
@media (pointer: fine) {
  .partial-row-news-list .news-item:hover {
    background: #ffffff;
  }
  .partial-row-news-list .news-item:hover .news-title {
    text-decoration: underline;
  }
}
.partial-row-news-list .news-meta {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  gap: 10px;
  font-size: 14px;
  color: #666;
}
@media screen and (max-width: 767.9px) {
  .partial-row-news-list .news-meta {
    margin-bottom: 4px;
  }
}
.partial-row-news-list .news-title {
  font-size: 16px;
  line-height: 1.4;
}
@media screen and (max-width: 767.9px) {
  .partial-row-news-list .news-title {
    font-size: 14px;
  }
}
.partial-row-news-list .partial-news-list .c-deco-tag {
  display: none;
}

.pagination {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  margin: 64px auto 0;
}
@media screen and (max-width: 767.9px) {
  .pagination {
    width: 100%;
    margin-top: 15px;
    gap: 6px;
  }
}
.pagination .page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding-top: 2px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50%;
  transition: background-color 0.35s, color 0.35s;
  line-height: 1;
  color: #222;
}
@media screen and (max-width: 767.9px) {
  .pagination .page-link {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
}
@media (pointer: fine) {
  .pagination .page-link:not(.dots):hover {
    background-color: #222;
    color: #ffffff;
  }
}
.pagination .page-link.is-active {
  background-color: #222;
  color: #ffffff;
  cursor: default;
}
.pagination .page-link.dots {
  cursor: default;
  color: #b4b4b4;
}
.pagination .page-arrow {
  right: -72px;
  bottom: 0;
  width: 32px;
  height: 32px;
  transition: all 0.35s;
}
@media screen and (max-width: 767.9px) {
  .pagination .page-arrow {
    right: 0;
  }
}
.pagination .page-arrow--prev {
  right: 0;
  left: -72px;
  transform: rotate(180deg);
}
@media screen and (max-width: 767.9px) {
  .pagination .page-arrow--prev {
    right: auto;
    left: 0;
  }
}

body.home main {
  padding-top: 0;
  padding-bottom: 131px;
}
@media screen and (max-width: 767.9px) {
  body.home main {
    padding-bottom: 40px;
  }
}
body.home .c-title {
  font-size: 70px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  font-family: "Mercari Sans", "Arial", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
@media screen and (max-width: 767.9px) {
  body.home .c-title {
    font-size: 34px;
  }
}
body.home .kv {
  position: relative;
  width: 100%;
  margin-bottom: 115px;
  color: #ffffff;
}
@media screen and (max-width: 767.9px) {
  body.home .kv {
    margin-bottom: 78px;
  }
}
body.home .kv .kv-contents {
  position: relative;
  height: 560px;
  overflow: hidden;
}
@media screen and (min-width: 768px) and (max-width: 1439.9px) {
  body.home .kv .kv-contents {
    height: 38.8888888889vw;
  }
}
@media screen and (max-width: 767.9px) {
  body.home .kv .kv-contents {
    height: 510px;
  }
}
body.home .kv .kv-contents .kv-bg-anim {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
body.home .kv .kv-contents .kv-bg-anim .bg-anim-child {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
body.home .kv .kv-contents .kv-bg-anim .bg-anim-child.bg-anim1 {
  background-image: linear-gradient(90deg, #fc4f4f 0%, #8674d9 20%, #748beb 35%, #7778f2 50%, #748beb 65%, #8674d9 80%, #fc4f4f 100%);
  background-size: 200% 100%;
  animation: flow1 20s linear infinite;
}
body.home .kv .kv-contents .kv-bg-anim .bg-anim-child.bg-anim-noise {
  opacity: 0.3;
  mix-blend-mode: overlay;
  filter: url(#noise);
}
body.home .kv .kv-contents .kv-bg-anim .bg-anim-child.bg-anim2 {
  height: 100%;
  background-image: radial-gradient(362.88% 141.42% at 0% 0%, #fc4f4f 0%, #54cdfb 100%);
  mix-blend-mode: overlay;
  animation: flow2 30s infinite linear;
}
body.home .kv .kv-contents .kv-bg-anim .bg-anim-child.bg-anim3 {
  width: 70%;
  height: 60%;
  background-image: radial-gradient(50% 50% at 50% 50%, #8674d9 0%, rgba(116, 139, 235, 0) 70%);
  animation: flow3 40s infinite linear;
  border-radius: 50%;
  filter: blur(25px);
}
body.home .kv .kv-contents .kv-bg-anim .bg-anim-child.bg-dots {
  background: url(/assets/images/kv_bg_dots.svg) center center/cover no-repeat;
}
body.home .kv .kv-contents .swiper-wrapper {
  height: 100%;
}
body.home .kv .kv-contents .kv-content {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
}
body.home .kv .kv-contents .kv-content.content-center-type {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 25px;
}
@media screen and (min-width: 768px) and (max-width: 1439.9px) {
  body.home .kv .kv-contents .kv-content.content-center-type {
    padding-top: 1.7361111111vw;
  }
}
@media screen and (max-width: 767.9px) {
  body.home .kv .kv-contents .kv-content.content-center-type {
    justify-content: flex-start;
    align-items: flex-start;
    padding: 110px 27px 0;
  }
}
body.home .kv .kv-contents .kv-content .kv-content-inner {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 1440px;
  height: 100%;
}
@media screen and (min-width: 768px) {
  body.home .kv .kv-contents .kv-content.content-dyn-type .kv-dyn-title, body.home .kv .kv-contents .kv-content.content-dyn-type .kv-dyn-text {
    padding-left: 56px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439.9px) {
  body.home .kv .kv-contents .kv-content.content-dyn-type .kv-dyn-title, body.home .kv .kv-contents .kv-content.content-dyn-type .kv-dyn-text {
    padding-left: 3.8888888889vw;
  }
}
@media screen and (max-width: 767.9px) {
  body.home .kv .kv-contents .kv-content.content-dyn-type .kv-dyn-title, body.home .kv .kv-contents .kv-content.content-dyn-type .kv-dyn-text {
    padding-right: 24px;
    padding-left: 24px;
  }
}
@media screen and (max-width: 767.9px) {
  body.home .kv .kv-contents .kv-content.content-dyn-type .kv-dyn-link {
    padding-left: 24px;
  }
}
body.home .kv .kv-contents .kv-content .kv-bg {
  position: absolute;
  z-index: 1;
}
body.home .kv .kv-contents .kv-content .kv-bg img,
body.home .kv .kv-contents .kv-content .kv-bg picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media screen and (min-width: 768px) {
  body.home .kv .kv-contents .kv-content .kv-bg img,
  body.home .kv .kv-contents .kv-content .kv-bg picture {
    object-position: bottom;
  }
}
@media screen and (max-width: 767.9px) {
  body.home .kv .kv-contents .kv-content .kv-bg img,
  body.home .kv .kv-contents .kv-content .kv-bg picture {
    object-position: top;
  }
}
body.home .kv .kv-contents .kv-content .kv-bg.kv-bg-default {
  inset: 0;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  body.home .kv .kv-contents .kv-content .kv-bg.kv-bg-dyn {
    width: 640px;
    height: 685px;
    top: -180px;
    right: -45px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439.9px) {
  body.home .kv .kv-contents .kv-content .kv-bg.kv-bg-dyn {
    width: 44.4444444444vw;
    height: 47.5694444444vw;
    top: -12.5vw;
    right: -3.125vw;
  }
}
@media screen and (max-width: 767.9px) {
  body.home .kv .kv-contents .kv-content .kv-bg.kv-bg-dyn {
    width: 300px;
    height: 321px;
    right: -50px;
    bottom: -90px;
  }
}
body.home .kv .kv-contents .kv-content .kv-bg.kv-bg-dyn {
  -webkit-mask-image: url("/assets/images/top_kv_hexagon.svg");
  mask-image: url("/assets/images/top_kv_hexagon.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
body.home .kv .kv-contents .kv-content .kv-bg.kv-bg-dyn.is-unmasked {
  -webkit-mask-image: none;
  mask-image: none;
}
@media screen and (min-width: 768px) {
  body.home .kv .kv-contents .kv-content .kv-bg.kv-bg-dyn.is-unmasked {
    width: 712px;
    height: 687px;
    top: -180px;
    right: -45px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439.9px) {
  body.home .kv .kv-contents .kv-content .kv-bg.kv-bg-dyn.is-unmasked {
    width: 49.4444444444vw;
    height: 47.7083333333vw;
    top: -12.5vw;
    right: -3.125vw;
  }
}
@media screen and (max-width: 767.9px) {
  body.home .kv .kv-contents .kv-content .kv-bg.kv-bg-dyn.is-unmasked {
    width: 299px;
    height: 144px;
    bottom: 0;
    right: 0;
  }
}
body.home .kv .kv-contents .kv-content > *:not(.kv-bg):not(.kv-content-link) {
  position: relative;
  z-index: 2;
}
body.home .kv .kv-contents .kv-content .kv-content-link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
}
@media (pointer: fine) {
  body.home .kv .kv-contents .kv-content .kv-content-link:hover .c-circle-arrow {
    background-color: #222;
    border-color: #222;
  }
  body.home .kv .kv-contents .kv-content .kv-content-link:hover .c-circle-arrow:after {
    background-image: url("/assets/images/arrow_w.svg");
  }
}
body.home .kv .kv-contents .kv-content .kv-dyn-link {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  body.home .kv .kv-contents .kv-content .kv-dyn-link {
    position: absolute;
    bottom: 40px;
    left: 56px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439.9px) {
  body.home .kv .kv-contents .kv-content .kv-dyn-link {
    bottom: 2.7777777778vw;
    left: 3.8888888889vw;
  }
}
@media screen and (max-width: 767.9px) {
  body.home .kv .kv-contents .kv-content .kv-dyn-link {
    padding-left: 56px;
  }
}
body.home .kv .kv-contents .kv-content .kv-dyn-link a .text,
body.home .kv .kv-contents .kv-content .kv-dyn-link .c-text-link .text {
  color: #ffffff;
}
@media screen and (min-width: 768px) and (max-width: 1439.9px) {
  body.home .kv .kv-contents .kv-content .kv-dyn-link a .text,
  body.home .kv .kv-contents .kv-content .kv-dyn-link .c-text-link .text {
    font-size: 1.3888888889vw;
  }
}
body.home .kv .kv-contents .kv-content .kv-dyn-link a .c-circle-arrow,
body.home .kv .kv-contents .kv-content .kv-dyn-link .c-text-link .c-circle-arrow {
  border-color: #ffffff;
}
@media screen and (min-width: 768px) and (max-width: 1439.9px) {
  body.home .kv .kv-contents .kv-content .kv-dyn-link a .c-circle-arrow,
  body.home .kv .kv-contents .kv-content .kv-dyn-link .c-text-link .c-circle-arrow {
    width: 2.6388888889vw;
    height: 2.6388888889vw;
  }
}
body.home .kv .kv-contents .kv-content .kv-dyn-link a .c-circle-arrow:after,
body.home .kv .kv-contents .kv-content .kv-dyn-link .c-text-link .c-circle-arrow:after {
  background-image: url("/assets/images/arrow_w.svg");
}
@media (pointer: fine) {
  body.home .kv .kv-contents .kv-content:hover .kv-dyn-link a .text,
  body.home .kv .kv-contents .kv-content:hover .kv-dyn-link .c-text-link .text {
    color: #222;
  }
  body.home .kv .kv-contents .kv-content:hover .kv-dyn-link a .c-circle-arrow,
  body.home .kv .kv-contents .kv-content:hover .kv-dyn-link .c-text-link .c-circle-arrow {
    border-color: #222;
  }
}
body.home .kv .kv-contents .kv-default-title {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
  filter: drop-shadow(0px 0px 14px rgba(0, 0, 0, 0.25));
}
@media screen and (min-width: 768px) {
  body.home .kv .kv-contents .kv-default-title {
    text-align: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 1439.9px) {
  body.home .kv .kv-contents .kv-default-title {
    font-size: 4.4444444444vw;
    margin-bottom: 0.6944444444vw;
  }
}
@media screen and (max-width: 767.9px) {
  body.home .kv .kv-contents .kv-default-title {
    font-size: 34px;
    letter-spacing: 0.05em;
  }
}
body.home .kv .kv-contents .kv-default-en {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.09em;
  filter: drop-shadow(0px 0px 14px rgba(0, 0, 0, 0.25));
  font-family: "Mercari Sans", "Arial", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
@media screen and (min-width: 768px) and (max-width: 1439.9px) {
  body.home .kv .kv-contents .kv-default-en {
    font-size: 1.6666666667vw;
  }
}
@media screen and (max-width: 767.9px) {
  body.home .kv .kv-contents .kv-default-en {
    font-size: 14px;
    letter-spacing: 0.18em;
  }
}
body.home .kv .kv-contents .kv-dyn-title {
  position: relative;
  padding-top: 120px;
  font-size: 96px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0;
  line-height: 1;
  z-index: 1;
  font-family: "Mercari Sans", "Arial", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
@media screen and (min-width: 768px) and (max-width: 1439.9px) {
  body.home .kv .kv-contents .kv-dyn-title {
    padding-top: 8.3333333333vw;
    font-size: 6.6666666667vw;
    margin-bottom: 0.8333333333vw;
  }
}
@media screen and (max-width: 767.9px) {
  body.home .kv .kv-contents .kv-dyn-title {
    padding-top: 82px;
    font-size: 34px;
    letter-spacing: 0.01em;
  }
}
body.home .kv .kv-contents .kv-dyn-text {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0;
  line-height: 1.6;
  z-index: 1;
}
@media screen and (min-width: 768px) and (max-width: 1439.9px) {
  body.home .kv .kv-contents .kv-dyn-text {
    font-size: 1.3888888889vw;
    margin-bottom: 0.8333333333vw;
  }
}
@media screen and (max-width: 767.9px) {
  body.home .kv .kv-contents .kv-dyn-text {
    font-size: 15px;
    letter-spacing: 0.05em;
  }
}
body.home .kv .kv-controls {
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 5;
}
body.home .kv .kv-pagination {
  position: static;
  width: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
body.home .kv .kv-pagination .dot {
  cursor: pointer;
  width: 10px;
  height: 10px;
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
  border: 1px solid #666;
  transition: background-color 0.35s;
}
body.home .kv .kv-pagination .dot.is-active {
  background-color: #222;
}
body.home .kv .kv-play-pause-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #666;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0;
  transition: opacity 0.35s, border-color 0.35s;
}
@media (pointer: fine) {
  body.home .kv .kv-play-pause-btn:hover {
    opacity: 0.7;
  }
}
body.home .kv .kv-play-pause-btn::before, body.home .kv .kv-play-pause-btn::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 9px;
  background-color: #222;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.35s;
}
body.home .kv .kv-play-pause-btn::before {
  left: 8px;
}
body.home .kv .kv-play-pause-btn::after {
  right: 8px;
}
body.home .kv .kv-play-pause-btn.is-paused::before, body.home .kv .kv-play-pause-btn.is-paused::after {
  opacity: 0;
}
body.home .kv .kv-play-pause-btn.is-paused::after {
  content: "";
  opacity: 1;
  position: absolute;
  left: 9px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #222;
  background: transparent;
}
body.home .news {
  margin-bottom: 170px;
}
@media screen and (max-width: 767.9px) {
  body.home .news {
    margin-bottom: 85px;
  }
}
body.home .news .news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 5.5%;
  padding-right: 5.5%;
  margin-bottom: 56px;
}
@media screen and (max-width: 767.9px) {
  body.home .news .news-header {
    align-items: flex-end;
    margin-bottom: 24px;
  }
}
body.home .news .news-nav {
  display: flex;
  gap: 16px;
  margin-right: 2px;
}
@media screen and (max-width: 767.9px) {
  body.home .news .news-nav {
    gap: 12px;
    margin-right: 0;
  }
}
body.home .news .news-nav .c-circle-arrow {
  position: relative;
  width: 62px;
  height: 62px;
}
body.home .news .news-nav .c-circle-arrow:after {
  width: 22px;
  height: 14px;
}
@media screen and (max-width: 767.9px) {
  body.home .news .news-nav .c-circle-arrow {
    width: 40px;
    height: 40px;
  }
}
body.home .news .news-nav .c-circle-arrow.arrow-btn--prev {
  transform: rotate(180deg);
}
body.home .news .news-nav .c-circle-arrow.inactive {
  opacity: 0.5;
}
@media (pointer: fine) {
  body.home .news .news-nav .c-circle-arrow.inactive:hover {
    background-color: transparent;
    border-color: #666;
  }
  body.home .news .news-nav .c-circle-arrow.inactive:hover:after {
    background-image: url("/assets/images/arrow.svg");
  }
}
body.home .news .news-list-wrap {
  width: 100%;
  overflow: auto;
  scrollbar-width: none;
}
body.home .news .news-list-wrap::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 767.9px) {
  body.home .news .news-list-wrap {
    margin-bottom: 10px;
  }
}
body.home .news .top-news-list {
  display: flex;
  gap: 16px;
  margin-left: 5.5%;
  margin-bottom: 32px;
  width: max-content;
}
@media screen and (max-width: 767.9px) {
  body.home .news .top-news-list {
    gap: 16px;
    margin-bottom: 20px;
  }
}
body.home .news .top-news-list > article {
  width: 282px;
}
@media screen and (max-width: 767.9px) {
  body.home .news .top-news-list > article {
    width: 263px;
  }
}
body.home .news .news-footer {
  display: flex;
  justify-content: flex-end;
  padding-right: 5.5%;
}
body.home .about {
  margin-bottom: 160px;
}
@media screen and (max-width: 767.9px) {
  body.home .about {
    margin-bottom: 50px;
  }
}
body.home .about .inner {
  width: 83.33%;
}
body.home .about .flex-container {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767.9px) {
  body.home .about .flex-container {
    flex-direction: column-reverse;
  }
}
body.home .about .about-content {
  width: 45%;
}
@media screen and (max-width: 767.9px) {
  body.home .about .about-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
    margin-bottom: 32px;
  }
}
body.home .about .about-title {
  margin-bottom: 22px;
}
@media screen and (max-width: 767.9px) {
  body.home .about .about-title {
    margin-bottom: 40px;
  }
}
body.home .about .about-text {
  margin-bottom: 25px;
}
@media screen and (max-width: 767.9px) {
  body.home .about .about-text {
    width: 100%;
  }
}
body.home .about p {
  font-size: 18px;
  line-height: 1.8;
}
@media screen and (max-width: 767.9px) {
  body.home .about p {
    font-size: 14px;
    letter-spacing: -0.08em;
  }
}
body.home .about .head {
  margin-bottom: 24px;
  font-size: 24px;
  line-height: 2;
  font-weight: bold;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 767.9px) {
  body.home .about .head {
    margin-bottom: 15px;
    font-size: 18px;
  }
}
body.home .about .about-image {
  position: relative;
  width: 50%;
}
@media screen and (min-width: 768px) {
  body.home .about .about-image {
    top: -50px;
  }
}
@media screen and (max-width: 767.9px) {
  body.home .about .about-image {
    width: 100%;
    margin-bottom: 40px;
  }
}
body.home .about .about-image img,
body.home .about .about-image picture {
  width: 100%;
  height: auto;
}
body.home .research {
  position: relative;
  margin-bottom: 155px;
}
@media screen and (max-width: 767.9px) {
  body.home .research {
    margin-bottom: 80px;
  }
}
@media screen and (min-width: 768px) {
  body.home .research .inner {
    width: 88.88%;
  }
}
body.home .research .bg-obj {
  position: absolute;
  opacity: 0.35;
}
body.home .research .bg-obj img {
  width: 100%;
}
body.home .research .bg-obj.obj1 {
  top: -8%;
  right: 11%;
  width: 14.2%;
}
body.home .research .bg-obj.obj2 {
  top: -3%;
  right: 0;
  width: 24.8%;
}
body.home .research .research-header {
  text-align: center;
  margin-bottom: 55px;
}
@media screen and (max-width: 767.9px) {
  body.home .research .research-header {
    text-align: left;
    margin-bottom: 22px;
  }
}
body.home .research .research-header .title {
  margin-bottom: 15px;
}
body.home .research .research-header .desc {
  font-size: 18px;
  line-height: 1.6;
}
@media screen and (max-width: 767.9px) {
  body.home .research .research-header .desc {
    font-size: 14px;
    letter-spacing: -0.03em;
  }
}
body.home .research .research-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media screen and (max-width: 767.9px) {
  body.home .research .research-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}
@media screen and (min-width: 768px) {
  body.home .lab .inner {
    width: 88.88%;
  }
}
body.home .lab .flex-container {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767.9px) {
  body.home .lab .flex-container {
    flex-direction: column-reverse;
  }
}
body.home .lab .lab-content {
  width: 48%;
}
@media screen and (max-width: 767.9px) {
  body.home .lab .lab-content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 100%;
  }
}
body.home .lab .lab-title {
  margin-bottom: 25px;
}
body.home .lab p {
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 1.8;
}
@media screen and (max-width: 767.9px) {
  body.home .lab p {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
body.home .lab .head {
  margin-bottom: 24px;
  font-size: 24px;
  line-height: 1.8;
  font-weight: bold;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 767.9px) {
  body.home .lab .head {
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 2;
  }
}
body.home .lab .lab-text {
  margin-bottom: 30px;
}
@media screen and (max-width: 767.9px) {
  body.home .lab .lab-text {
    margin-bottom: 0;
  }
}
body.home .lab .lab-image {
  position: relative;
  width: 47%;
}
@media screen and (min-width: 768px) {
  body.home .lab .lab-image {
    top: 10px;
  }
}
@media screen and (max-width: 767.9px) {
  body.home .lab .lab-image {
    width: 100%;
    margin-bottom: 25px;
  }
}
body.home .lab .lab-image img,
body.home .lab .lab-image picture {
  width: 100%;
  height: auto;
}

.research-archive .hero-inner {
  position: relative;
  width: 83.33%;
}
@media screen and (max-width: 767.9px) {
  .research-archive .hero-inner {
    width: 86.4%;
  }
}
.research-archive .desc {
  max-width: 93.66%;
  font-size: 20px;
  line-height: 1.8;
  font-weight: 700;
}
@media screen and (max-width: 767.9px) {
  .research-archive .desc {
    max-width: 100%;
    font-size: 14px;
  }
}
.research-archive .archive-inner {
  width: 81.66%;
}
@media screen and (max-width: 767.9px) {
  .research-archive .archive-inner {
    width: 89.33%;
  }
}
.research-archive .grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 35px;
}
@media screen and (max-width: 1079.9px) {
  .research-archive .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767.9px) {
  .research-archive .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 30px;
    gap: 8px;
  }
}
.research-archive .more-link {
  text-align: right;
}

.research-detail .hero-inner {
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .research-detail .hero-inner {
    width: 87.2%;
  }
}
.research-detail .content {
  position: relative;
}
.research-detail .content .gb-content .partial-topic .partial-topic-card h3 {
  font-size: 18px;
  line-height: 1.5;
  color: #222;
}
@media screen and (max-width: 767.9px) {
  .research-detail .content .gb-content .partial-topic .partial-topic-card h3 {
    font-size: 16px;
  }
}
.research-detail .content .gb-content .partial-topic .partial-topic-card p {
  font-size: 14px;
  line-height: 1.4;
  color: #333;
}

@media screen and (max-width: 767.9px) {
  .archived-research-list .hero-inner {
    width: 87.2%;
  }
}
@media screen and (max-width: 767.9px) {
  .archived-research-list .content-inner {
    width: 89.33%;
  }
}
.archived-research-list .section {
  position: relative;
  background-color: #fff;
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 24px;
}
@media screen and (max-width: 767.9px) {
  .archived-research-list .section {
    padding: 24px 24px 18px;
    margin-bottom: 16px;
  }
}
.archived-research-list .section:last-child {
  margin-bottom: 0;
}
.archived-research-list .heading {
  margin-bottom: 15px;
  font-size: 28px;
  line-height: 1.5;
  font-weight: 700;
  font-family: "Mercari Sans", "Arial", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
@media screen and (max-width: 767.9px) {
  .archived-research-list .heading {
    font-size: 24px;
    margin-bottom: 16px;
  }
}
.archived-research-list .prose {
  margin-bottom: 25px;
  font-size: 18px;
  line-height: 1.6;
}
@media screen and (max-width: 767.9px) {
  .archived-research-list .prose {
    font-size: 16px;
    margin-bottom: 24px;
  }
}
.archived-research-list .related-output .label-text {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #b4b4b4;
}
@media screen and (max-width: 767.9px) {
  .archived-research-list .related-output .label-text {
    margin-bottom: 10px;
  }
}
.archived-research-list .related-output .news-item {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  padding: 4px 0;
  font-size: 14px;
  line-height: 1.4;
  color: #333;
}
@media screen and (max-width: 767.9px) {
  .archived-research-list .related-output .news-item {
    gap: 2px;
    flex-direction: column;
  }
}
.archived-research-list .related-output .news-meta {
  flex-shrink: 0;
  margin-right: 7px;
}
@media screen and (max-width: 1079.9px) {
  .news-archive .content-inner {
    width: 89.33%;
  }
}
.news-archive .sidebar {
  letter-spacing: 0;
}
@media screen and (max-width: 1079.9px) {
  .news-archive .sidebar {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 1079.9px) {
  .news-archive .sidebar .sidebar-toggle::before, .news-archive .sidebar .sidebar-toggle::after {
    content: "";
    display: block;
    position: absolute;
    right: 24px;
    top: 50%;
    width: 14px;
    height: 2px;
    background-color: #222;
    transform-origin: center;
    transition: transform 0.35s ease;
  }
  .news-archive .sidebar .sidebar-toggle::before {
    transform: translateY(-50%);
  }
  .news-archive .sidebar .sidebar-toggle::after {
    transform: translateY(-50%) rotate(90deg);
  }
  .news-archive .sidebar .sidebar-toggle[aria-expanded=true]::after {
    transform: translateY(-50%) rotate(0deg);
  }
}
@media screen and (max-width: 1079.9px) {
  .news-archive .sidebar .sidebar-content {
    padding: 0 24px 24px;
  }
}
.news-archive .sidebar .filter-group {
  margin-bottom: 16px;
}
@media screen and (max-width: 1079.9px) {
  .news-archive .sidebar .filter-group {
    margin-bottom: 25px;
  }
}
.news-archive .sidebar .filter-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}
@media screen and (max-width: 1079.9px) {
  .news-archive .sidebar .filter-title {
    margin-top: 15px;
  }
}
.news-archive .sidebar .filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 8px;
}
.news-archive .sidebar .c-tag {
  background-color: #ffffff;
  color: #222;
  transition: all 0.35s ease;
  cursor: pointer;
  transition: all 0.35s;
}
.news-archive .sidebar .c-tag:before {
  display: none;
}
@media (pointer: fine) {
  .news-archive .sidebar .c-tag:hover {
    background-color: #222;
    color: #ffffff;
    border-color: #222;
    text-decoration: none;
  }
}
.news-archive .sidebar .c-tag.is-active {
  background-color: #222;
  color: #ffffff;
  border-color: #222;
  text-decoration: none;
}
.news-archive .sidebar .search-btn {
  width: 100%;
  padding: 10px 0;
  background-color: #222;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 999px;
  text-align: center;
  transition: opacity 0.35s;
  cursor: pointer;
}
@media screen and (max-width: 1079.9px) {
  .news-archive .sidebar .search-btn {
    padding: 18px 0;
  }
}
@media (pointer: fine) {
  .news-archive .sidebar .search-btn:hover {
    opacity: 0.7;
  }
}
.news-detail {
  padding-top: 90px;
}
@media screen and (max-width: 767.9px) {
  .news-detail {
    padding-top: 74px;
  }
}
.news-detail .content-inner {
  width: 61.11%;
}
@media screen and (max-width: 767.9px) {
  .news-detail .content-inner {
    width: 89.33%;
    margin: 0 auto;
  }
}
.news-detail .news-header {
  margin-bottom: 48px;
}
@media screen and (max-width: 767.9px) {
  .news-detail .news-header {
    margin-bottom: 32px;
  }
}
.news-detail .news-header .meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.news-detail .news-header .meta-row .tag-wrap {
  display: flex;
  gap: 8px;
}
@media screen and (max-width: 767.9px) {
  .news-detail .news-header .meta-row.date-tags {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}
.news-detail .news-header .meta-row .date {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
  font-weight: 700;
}
.news-detail .news-header .title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
  color: #222;
  margin-bottom: 16px;
}
@media screen and (max-width: 767.9px) {
  .news-detail .news-header .title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.news-detail .news-header .category {
  font-size: 18px;
  font-weight: 700;
  color: #666;
}
@media screen and (max-width: 767.9px) {
  .news-detail .news-header .category {
    font-size: 16px;
  }
}
.news-detail .news-header .hash-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
  font-size: 14px;
  color: #282828;
}
@media screen and (max-width: 767.9px) {
  .news-detail .news-header .hash-tags {
    font-size: 12px;
    gap: 4px 12px;
  }
}
.news-detail .news-header .share-sns {
  display: flex;
  align-items: center;
  gap: 16px;
}
.news-detail .news-header .share-sns .share-label {
  font-size: 12px;
  font-weight: 700;
  color: #666;
  letter-spacing: 0.1em;
}
.news-detail .news-header .share-sns .sns-list {
  display: flex;
  align-items: center;
  gap: 16px;
}
.news-detail .news-header .share-sns .sns-list .sns-link {
  display: flex;
  align-items: center;
  transition: opacity 0.35s;
}
.news-detail .news-header .share-sns .sns-list .sns-link.share-x img,
.news-detail .news-header .share-sns .sns-list .sns-link.share-x picture {
  width: 24px;
  height: 25px;
}
.news-detail .news-header .share-sns .sns-list .sns-link img,
.news-detail .news-header .share-sns .sns-list .sns-link picture {
  width: 32px;
  height: 32px;
  display: block;
}
@media (pointer: fine) {
  .news-detail .news-header .share-sns .sns-list .sns-link:hover {
    opacity: 0.7;
  }
}
.news-detail .news-body .gb-content--news h2, .news-detail .news-body .gb-content--news h2.custom-heading-h2 {
  font-size: 40px;
}
@media screen and (max-width: 767.9px) {
  .news-detail .news-body .gb-content--news h2, .news-detail .news-body .gb-content--news h2.custom-heading-h2 {
    font-size: 24px;
  }
}
.news-detail .news-footer {
  padding-top: 35px;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 767.9px) {
  .news-detail .news-footer {
    padding-top: 30px;
  }
}

@media screen and (max-width: 767.9px) {
  .publications-archive .hero-inner {
    width: 87.2%;
  }
}
.publications-archive .sidebar {
  letter-spacing: 0;
}
@media screen and (max-width: 1079.9px) {
  .publications-archive .sidebar {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 1079.9px) {
  .publications-archive .sidebar .sidebar-toggle::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #222;
    border-bottom: 2px solid #222;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 0.35s ease;
  }
  .publications-archive .sidebar .sidebar-toggle[aria-expanded=true]::after {
    transform: translateY(2px) rotate(-135deg);
  }
}
@media screen and (max-width: 1079.9px) {
  .publications-archive .sidebar .sidebar-content {
    padding: 0 24px 24px;
  }
}
.publications-archive .sidebar .filter-group {
  margin-bottom: 18px;
}
@media screen and (max-width: 767.9px) {
  .publications-archive .sidebar .filter-group {
    margin-bottom: 10px;
  }
}
.publications-archive .sidebar .filter-group:last-of-type {
  margin-bottom: 15px;
}
.publications-archive .sidebar .filter-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}
.publications-archive .sidebar .c-select {
  width: 100%;
  height: 32px;
  padding: 0 32px 0 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  font-size: 14px;
  color: #222;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("/assets/images/arrow_menu.svg");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 10px;
  cursor: pointer;
  transition: border-color 0.35s;
}
.publications-archive .sidebar .c-select:invalid {
  color: #b4b4b4;
}
.publications-archive .sidebar .c-select option {
  color: #222;
}
@media screen and (max-width: 767.9px) {
  .publications-archive .sidebar .c-select {
    height: 48px;
  }
}
.publications-archive .sidebar .c-select:focus {
  border-color: #7379F1;
  outline: none;
}
.publications-archive .sidebar .search-btn {
  width: 100%;
  height: 32px;
  padding: 8px 0;
  background-color: #222;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 999px;
  text-align: center;
  transition: opacity 0.35s;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 767.9px) {
  .publications-archive .sidebar .search-btn {
    height: 48px;
  }
}
@media (pointer: fine) {
  .publications-archive .sidebar .search-btn:hover {
    opacity: 0.7;
  }
}
.publications-archive .publications-list {
  display: flex;
  flex-direction: column;
}
.publications-archive .c-document-card {
  margin-bottom: 16px;
}
@media screen and (max-width: 767.9px) {
  .publications-archive .c-document-card {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 767.9px) {
  .publications-detail .hero-inner {
    width: 87.2%;
  }
}
@media screen and (max-width: 1079.9px) {
  .publications-detail .content-inner {
    display: block;
    width: 89.33%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  .publications-detail .detail-header {
    width: 61.11%;
    margin: 0 auto 82px;
  }
}
@media screen and (max-width: 1079.9px) {
  .publications-detail .detail-header {
    width: 89.33%;
    margin: 0 auto 48px;
  }
}
.publications-detail .detail-header .pub-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.3;
  color: #222;
}
@media screen and (max-width: 767.9px) {
  .publications-detail .detail-header .pub-title {
    font-size: 24px;
  }
}
.publications-detail .publication-meta {
  padding-left: 40px;
  padding-right: 56px;
}
@media screen and (max-width: 1079.9px) {
  .publications-detail .publication-meta {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 65px;
  }
}
@media screen and (max-width: 1079.9px) {
  .publications-detail .publication-meta .sidebar-toggle::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid #222;
    border-bottom: 2px solid #222;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 0.35s ease;
  }
  .publications-detail .publication-meta .sidebar-toggle[aria-expanded=true]::after {
    transform: translateY(2px) rotate(-135deg);
  }
}
.publications-detail .publication-meta .meta-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.publications-detail .publication-meta .meta-item {
  border-bottom: 1px solid #dcdcdc;
  padding-bottom: 12px;
  margin-bottom: 16px;
}
@media screen and (max-width: 767.9px) {
  .publications-detail .publication-meta .meta-item {
    padding-bottom: 13px;
    margin-bottom: 0;
  }
}
.publications-detail .publication-meta .meta-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.publications-detail .publication-meta .meta-label {
  font-size: 14px;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
  line-height: 1.3;
}
@media screen and (max-width: 767.9px) {
  .publications-detail .publication-meta .meta-label {
    margin-bottom: 10px;
  }
}
.publications-detail .publication-meta .meta-val {
  font-size: 14px;
}
.publications-detail .publication-meta .author-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (max-width: 767.9px) {
  .publications-detail .publication-meta .author-list {
    gap: 14px;
  }
}
.publications-detail .publication-meta .author-item .affiliation {
  display: block;
  font-size: 12px;
  margin-bottom: 4px;
  color: #666;
}
.publications-detail .publication-meta .author-item .name {
  display: block;
  font-size: 14px;
}
.publications-detail .main .body-section {
  margin-bottom: 80px;
}
.publications-detail .main .body-section:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 767.9px) {
  .publications-detail .main .body-section {
    margin-bottom: 50px;
  }
}
.publications-detail .main .section-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
}
@media screen and (max-width: 767.9px) {
  .publications-detail .main .section-title {
    font-size: 22px;
  }
}
.publications-detail .main .abstract-text {
  font-size: 18px;
  line-height: 1.6;
  color: #282828;
}
@media screen and (max-width: 767.9px) {
  .publications-detail .main .abstract-text {
    font-size: 16px;
  }
}
.publications-detail .main .related-publications .publications-list {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 24px;
}
@media screen and (max-width: 767.9px) {
  .publications-detail .main .related-publications .publications-list {
    margin-top: 40px;
    gap: 32px;
  }
}

@media screen and (min-width: 768px) {
  .about-page {
    padding-bottom: 80px;
  }
}
.about-page .gb-content p {
  font-size: 18px;
}
@media screen and (max-width: 767.9px) {
  .about-page .gb-content p {
    font-size: 16px;
  }
}
.about-page .gb-content {
  --m-mid: 48px;
}
@media screen and (max-width: 767.9px) {
  .about-page .gb-content {
    --m-mid: 48px;
  }
}
.about-page .gb-content:not(.gb-content--news) > * + *, .about-page .gb-content .is-root-container > * + * {
  margin-top: 160px;
}
@media screen and (max-width: 767.9px) {
  .about-page .gb-content:not(.gb-content--news) > * + *, .about-page .gb-content .is-root-container > * + * {
    margin-top: 80px;
  }
}

/*# sourceMappingURL=style.css.map */
