@charset "UTF-8";
/* ===== レスポンシブフォントサイズ設定 ===== */
html {
  font-size: 16px;
}

:root {
  /* ===== スペーシングシステム ===== */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;
  /* ===== レスポンシブフォントサイズ ===== */
  --text-xs: clamp(
    0.7rem,
    calc(0.65rem + 0.25vw),
    0.85rem
  );
  /* 11.2px - 13.6px */
  --text-sm: clamp(0.875rem, calc(0.8rem + 0.375vw), 1rem);
  /* 14px - 16px */
  --text-base: clamp(1rem, calc(0.9rem + 0.5vw), 1.125rem);
  /* 16px - 18px */
  --text-lg: clamp(1.125rem, calc(1rem + 0.625vw), 1.25rem);
  /* 18px - 20px */
  --text-xl: clamp(1.25rem, calc(1.1rem + 0.75vw), 1.5rem);
  /* 20px - 24px */
  --text-2xl: clamp(1.5rem, calc(1.3rem + 1vw), 1.875rem);
  /* 24px - 30px */
  --text-3xl: clamp(1.875rem, calc(1.6rem + 1.375vw), 2.5rem);
  /* 30px - 40px */
  --text-4xl: clamp(2.25rem, calc(1.9rem + 1.75vw), 3rem);
  /* 36px - 48px */
  --text-5xl: clamp(3rem, calc(3rem + 2.5vw), 4rem);
  /* 48px - 64px */
  --text-6xl: clamp(4rem, calc(4rem + 3vw), 5rem);
  /* 64px - 80px */
  --heading-sp: clamp(4rem, calc(3rem + 5vw), 7.2rem);
  /* 64px - 115.2px */
  /* color */
  --color-black: #000000;
  --color-black-100: #212121;
  --color-black-200: #333333;
  --color-white: #ffffff;
  --color-gray: #515151;
  --color-gray-100: #989392;
  --color-yellow: #fff95f;
  --color-pink: #c2006c;
  --color-red: #ff0000;
  --color-red-100: #fc7175;
  --bg-color-gray: #d1d1d1;
}

@media (min-width: 768px) {
  .hide-pc {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .hide-sp {
    display: none !important;
  }
}

.g-navigation__link a {
  font-size: var(--text-xl);
}

.g-navigation__sub-link a {
  font-size: 15px;
}

.main-content {
  padding-top: calc(5.33vw + 50px);
}

@media (min-width: 768px) {
  .main-content {
    padding-top: calc(5rem + 50px);
    overflow: hidden;
  }
}

.section-padding {
  padding-top: var(--space-xl);
  padding-bottom: var(--space-3xl);
}

@media (min-width: 768px) {
  .section-padding {
    padding: var(--space-5xl) 0;
  }
}

.section .header__text {
  font-size: var(--text-base);
  font-weight: 700;
  margin-top: var(--space-xl);
  line-height: 2;
}

.heading {
  font-size: var(--text-xl);
  font-weight: 700 !important;
}

.heading .en {
  font-size: var(--text-xl);
}

@media (min-width: 768px) {
  .heading .en {
    font-size: var(--text-2xl);
  }
}

.heading .ja {
  font-size: var(--text-4xl);
  margin-top: var(--space-md);
}

@media (min-width: 768px) {
  .heading .ja {
    font-size: var(--text-4xl);
  }
}

.g-header .logo__claim {
  font-size: var(--text-xs);
}

.g-footer .links a {
  font-size: var(--text-base);
}

.g-footer .page-links .copyright a {
  font-size: var(--text-sm);
}

.post-new-label {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  width: 21%;
  aspect-ratio: 1/1;
  color: #fff;
  background-color: var(--color-red);
  -webkit-clip-path: polygon(100% 0%, 0% 0%, 100% 100%);
          clip-path: polygon(100% 0%, 0% 0%, 100% 100%);
  container-type: inline-size;
}

.post-new-label::before {
  content: "NEW";
  position: absolute;
  top: 58%;
  left: 42%;
  -webkit-transform: rotate(45deg) translate(-55%, -50%);
      -ms-transform: rotate(45deg) translate(-55%, -50%);
          transform: rotate(45deg) translate(-55%, -50%);
  font-size: 30cqw;
  font-weight: 700;
}

#main-visual {
  padding-bottom: var(--space-2xl);
}

@media (min-width: 768px) {
  #main-visual {
    padding-bottom: 0;
  }
}

@media (min-width: 768px) {
  #main-visual .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    padding-right: 50px;
    padding-left: 50px;
    gap: var(--space-2xl);
  }
}

@media (min-width: 768px) {
  #main-visual .wrap .key-copy {
    -ms-flex-item-align: start;
        align-self: flex-start;
    width: 50%;
  }
}

#main-visual .wrap .key-copy__title {
  width: 100%;
}

#main-visual .wrap .key-copy__title img {
  max-width: 100%;
}

@media (min-width: 768px) {
  #main-visual .wrap .key-copy__links {
    margin-top: var(--space-xl);
  }
}

#main-visual .wrap .key-copy__links li a {
  white-space: nowrap;
  font-size: var(--text-base);
  border-radius: 50px;
  border: 3px solid var(--color-black);
}

#main-visual .wrap .illust {
  width: 50%;
  height: 100%;
}

#main-visual .wrap .illust__charas {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
      grid-template-areas: "area1 area1" "area2 area3";
  margin-top: 0;
  height: 100%;
}

#main-visual .wrap .illust__chara {
  position: relative;
}

#main-visual .wrap .illust__chara img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

#main-visual .wrap .illust__chara:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: area1;
}

#main-visual .wrap .illust__chara:nth-child(1) .chara {
  position: absolute;
  top: 0;
  right: 10%;
  width: 50%;
}

#main-visual .wrap .illust__chara:nth-child(1) .comment {
  position: absolute;
  top: 6%;
  right: 50%;
  width: 40%;
}

#main-visual .wrap .illust__chara:nth-child(2) {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: area2;
}

#main-visual .wrap .illust__chara:nth-child(2) .chara {
  position: absolute;
  bottom: 20%;
  left: 0;
  width: 80%;
}

#main-visual .wrap .illust__chara:nth-child(2) .comment {
  position: absolute;
  bottom: 84%;
  left: 0;
  width: 80%;
}

#main-visual .wrap .illust__chara:nth-child(3) {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: area3;
}

#main-visual .wrap .illust__chara:nth-child(3) .chara {
  position: absolute;
  bottom: 22%;
  left: 0;
  width: 80%;
}

#main-visual .wrap .illust__chara:nth-child(3) .comment {
  position: absolute;
  bottom: 84%;
  left: 0;
  width: 80%;
}

#main-visual .wrap .scroll {
  display: none;
}

@media (min-width: 768px) {
  #main-visual .wrap .scroll {
    display: block;
  }
}

#main-visual .wrap .news-links {
  font-size: var(--text-base);
  padding: var(--space-xl) 0;
  font-weight: 700;
}

@media (min-width: 768px) {
  #main-visual .wrap .news-links {
    padding: var(--space-2xl) 0;
  }
}

#main-visual .wrap .news-links__title {
  margin-left: 2rem;
}

#main-visual .wrap .news-links li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#main-visual .wrap .news-links li .news-text {
  display: inline;
}

#main-visual .wrap .news-links li:not(:first-child) {
  margin-top: var(--space-md);
}

@media (min-width: 768px) {
  #main-visual .wrap .news-links li:not(:first-child) {
    margin-top: var(--space-xs);
  }
}

#main-visual .wrap .news-links .custom-date {
  margin-right: var(--space-md);
}

#main-visual .wrap .news-links .news-link {
  text-decoration: underline;
}

#main-visual .wrap .js-slide-wrap {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 335/293;
  margin: 0 auto;
  margin-top: var(--space-2xl);
  overflow: hidden;
}

#main-visual .wrap .js-slide-wrap img {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
}

#navigation-list {
  padding: var(--space-md) 0;
  background-color: var(--color-black);
}

@media (min-width: 768px) {
  #navigation-list {
    padding: var(--space-xl);
  }
}

#navigation-list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  #navigation-list ul {
    gap: var(--space-4xl);
  }
}

#navigation-list ul li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

#navigation-list ul li .nav-button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 700;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 3px solid var(--color-yellow);
  border-radius: 50px;
  padding: var(--space-sm) var(--space-md) var(--space-sm) 0;
  background-color: var(--color-black);
  color: var(--color-yellow);
  line-height: 1;
}

@media (min-width: 768px) {
  #navigation-list ul li .nav-button {
    padding: var(--space-md) var(--space-lg) var(--space-md) 0;
    border-radius: 58px;
  }
}

#navigation-list ul li .nav-button::before, #navigation-list ul li .nav-button::after {
  content: "";
  width: 12px;
  height: 3px;
  display: inline-block;
  border-radius: 2px;
  background: var(--color-yellow);
  position: absolute;
  right: 9%;
}

@media (min-width: 768px) {
  #navigation-list ul li .nav-button::before, #navigation-list ul li .nav-button::after {
    width: 17px;
  }
}

#navigation-list ul li .nav-button::before {
  top: calc(50% - 5px);
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

@media (min-width: 768px) {
  #navigation-list ul li .nav-button::before {
    top: calc(50% - 7px);
  }
}

#navigation-list ul li .nav-button::after {
  bottom: calc(50% - 5px);
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@media (min-width: 768px) {
  #navigation-list ul li .nav-button::after {
    bottom: calc(50% - 7px);
  }
}

#navigation-list ul li .nav-button:hover {
  background-color: rgba(255, 249, 95, 0.25);
}

#navigation-list ul li .nav-button .lang-en {
  font-family: "Dosis";
  font-size: var(--text-xs);
}

@media (min-width: 768px) {
  #navigation-list ul li .nav-button .lang-en {
    font-size: var(--text-xl);
  }
}

#navigation-list ul li .nav-button .lang-ja {
  font-size: var(--text-lg);
  margin-top: var(--space-xs);
  line-height: 1;
}

@media (min-width: 768px) {
  #navigation-list ul li .nav-button .lang-ja {
    font-size: var(--text-3xl);
    margin-top: var(--space-sm);
  }
}

#special-video {
  background-color: var(--color-black-100);
}

#special-video .header .heading {
  text-align: center;
}

#special-video .video {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: var(--space-sm);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: var(--space-xl);
  margin-left: -2vw;
  margin-right: -2vw;
}

@media (min-width: 768px) {
  #special-video .video {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: var(--space-2xl);
  }
}

#special-video .video-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  max-width: 48vw;
  min-width: 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#special-video .video-item__image {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: var(--space-sm);
}

#special-video .video-item__image iframe {
  width: 100%;
  height: 100%;
  min-height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
}

#special-video .video-item__title {
  width: 100%;
  color: #fff;
  font-size: 10px;
  text-align: left;
  margin-top: var(--space-xs);
}

@media (min-width: 768px) {
  #special-video .video-item__title {
    font-size: var(--text-base);
  }
}

#special-video .video-link {
  display: block;
  margin-top: var(--space-xl);
  text-align: center;
}

@media (min-width: 768px) {
  #special-video .video-link {
    margin-top: var(--space-3xl);
  }
}

#special-video .video-link a {
  font-size: var(--text-base);
  font-weight: 700;
  border-radius: 50px;
  padding: var(--space-md) clamp(5rem, 8vw, 10rem);
  background-color: var(--color-black-100);
  color: var(--color-white);
  border: 1px solid var(--color-white);
}

@media (min-width: 768px) {
  #special-video .video-link a {
    font-size: var(--text-2xl);
  }
}

#about-tokusyusagi .wrap .example__label {
  font-size: var(--text-base);
}

#about-tokusyusagi .wrap .example__content {
  font-size: var(--text-base);
}

#about-tokusyusagi .wrap .example__content strong {
  font-weight: 700;
}

#column .column-post-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: var(--space-md);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (min-width: 768px) {
  #column .column-post-items {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

#column .column-post-item {
  position: relative;
  width: 100%;
}

@media (min-width: 768px) {
  #column .column-post-item {
    width: calc(100% / 3);
  }
}

#column .column-post-item__thumbnail {
  position: relative;
}

#column .column-post-item__thumbnail a img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

#column .column-post-item-title .heading {
  font-size: var(--text-xs);
  line-height: 1.4;
  margin-top: var(--space-xs);
}

@media (min-width: 768px) {
  #column .column-post-item-title .heading {
    font-size: var(--text-base);
  }
}

#column .column-post-item-title .published-date {
  display: block;
  font-size: 10px;
  color: var(--color-gray);
}

@media (min-width: 768px) {
  #column .column-post-item-title .published-date {
    font-size: var(--text-base);
  }
}

#column .column-link {
  text-align: center;
  margin-top: var(--space-xl);
}

@media (min-width: 768px) {
  #column .column-link {
    margin-top: var(--space-3xl);
  }
}

#column .column-link a {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-white);
  border-radius: 50px;
  padding: var(--space-md) clamp(5rem, 8vw, 10rem);
  background-color: var(--color-black-100);
}

@media (min-width: 768px) {
  #column .column-link a {
    font-size: var(--text-2xl);
  }
}

#about-yamibaito .wrap .header__image {
  width: 100%;
}

@media (min-width: 768px) {
  #about-yamibaito .wrap .header__image {
    top: 60px;
    -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
            transform: scale(0.9);
    max-width: 572px;
  }
}

@media (min-width: 768px) {
  #about-yamibaito .wrap .header {
    min-height: 495px;
  }
}

#about-yamibaito .wrap .example__scroll {
  height: 350px;
}

@media (min-width: 768px) {
  #about-yamibaito .wrap .example__scroll {
    height: auto;
  }
}

#about-yamibaito .wrap .example__item {
  border-radius: 20px;
  background-color: var(--color-white);
}

#about-yamibaito .wrap .example__item__text {
  font-weight: 700;
  margin-top: var(--space-xl);
  font-size: var(--text-base);
}

#about-yamibaito .wrap .example__item__text.black {
  position: relative;
  display: inline-block;
  font-size: var(--text-base);
  color: var(--color-white);
  margin-top: 0;
}

#about-yamibaito .wrap .example__item__text.black::before {
  position: absolute;
  content: "※";
  top: 0;
  left: -24px;
}

#about-yamibaito .wrap .example__item.black {
  background-color: var(--color-black-100);
}

#about-yamibaito .wrap .example__item.black .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

@media (min-width: 768px) {
  #case-study .header {
    min-height: 455px;
  }
}

#case-study .header__image {
  -webkit-transform: scale(0.8);
      -ms-transform: scale(0.8);
          transform: scale(0.8);
  width: 100%;
}

@media (min-width: 768px) {
  #case-study .header__image {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
    right: 0;
    max-width: 570px;
  }
}

#case-study .case {
  margin-top: var(--space-xl);
}

@media (min-width: 768px) {
  #case-study .case {
    margin-top: var(--space-4xl);
  }
}

#case-study .case li:not(:first-child) {
  margin-top: var(--space-md);
}

#case-study .case-header {
  position: relative;
  height: 36px;
}

@media (min-width: 768px) {
  #case-study .case-header {
    width: 100%;
    height: 58px;
  }
}

#case-study .case-header::before, #case-study .case-header::after {
  content: "";
  background: var(--color-white);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
  z-index: 4;
}

@media (min-width: 768px) {
  #case-study .case-header::before, #case-study .case-header::after {
    display: none;
  }
}

#case-study .case-header::before {
  width: 2px;
  height: 16px;
  right: 18px;
}

#case-study .case-header::after {
  width: 16px;
  height: 2px;
  right: 11px;
}

#case-study .case-header.is-active::before {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

#case-study .case-header.is-active::after {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

#case-study .case-header__title {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  color: var(--color-white);
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: var(--text-lg);
  font-weight: 700;
  white-space: nowrap;
}

@media (min-width: 768px) {
  #case-study .case-header__title {
    font-size: var(--text-3xl);
  }
}

#case-study .case-header__black__top {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: var(--space-sm) var(--space-lg);
  background-color: var(--color-black-100);
  z-index: 3;
  border-radius: 3px;
}

#case-study .case-header__white {
  position: absolute;
  width: 100%;
  height: calc(100% + 4px);
  top: 2px;
  left: 7px;
  background-color: var(--color-white);
  z-index: 2;
  -webkit-transform: translateX(-2px);
      -ms-transform: translateX(-2px);
          transform: translateX(-2px);
  border: 3px solid var(--color-black);
  border-radius: 3px;
}

#case-study .case-header__black__bottom {
  position: absolute;
  width: 100%;
  height: calc(100% + 4px);
  top: 2px;
  left: 6px;
  background-color: var(--color-black-100);
  z-index: 1;
  border-radius: 3px;
}

#case-study .case-content {
  gap: var(--space-sm);
  overflow: hidden;
}

#case-study .case-content__wrapper {
  margin-top: var(--space-md);
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 0fr;
  grid-template-rows: 0fr;
  -webkit-transition: grid-template-rows 0.5s ease-out;
  -o-transition: grid-template-rows 0.5s ease-out;
  transition: grid-template-rows 0.5s ease-out;
  transition: grid-template-rows 0.5s ease-out, -ms-grid-rows 0.5s ease-out;
}

#case-study .case-content__wrapper.is-active {
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
}

@media (min-width: 768px) {
  #case-study .case-content__wrapper {
    margin-top: 0;
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
  }
}

@media (min-width: 768px) {
  #case-study .case-content {
    margin-top: var(--space-xl);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (min-width: 768px) {
  #case-study .case-description {
    margin-top: var(--space-sm);
    padding-right: var(--space-2xl);
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

#case-study .case-description p {
  line-height: 1.8;
  font-size: var(--text-sm);
  font-weight: 700;
}

@media (min-width: 768px) {
  #case-study .case-description p {
    font-size: var(--text-base);
  }
}

#case-study .case-penalty {
  background-color: #CB0071;
  border: 3px solid #000;
  border-radius: 10px;
  color: var(--color-white);
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  padding: var(--space-sm);
  margin-top: var(--space-md);
}

@media (min-width: 768px) {
  #case-study .case-penalty {
    width: 27%;
    margin-top: 0;
  }
}

#case-study .case-penalty__title {
  font-size: var(--text-2xl);
  line-height: 1.3;
}

@media (min-width: 768px) {
  #case-study .case-penalty__title {
    font-size: var(--text-3xl);
  }
}

#case-study .case-penalty__text {
  font-size: var(--text-sm);
  margin-top: var(--space-sm);
}

@media (min-width: 768px) {
  #case-study .case-penalty__text {
    font-size: var(--text-base);
  }
}

#case-study .advice {
  font-size: var(--text-lg);
  margin-top: var(--space-xl);
  line-height: 1.5;
  color: var(--color-white);
  background-color: var(--color-black-100);
  font-weight: 900;
  text-align: center;
  padding: var(--space-sm);
}

@media (min-width: 768px) {
  #case-study .advice {
    margin-top: var(--space-4xl);
    font-size: var(--text-3xl);
  }
}

#case-study .advice span {
  display: inline-block;
  line-height: 1.2;
  font-size: var(--text-xl);
  background-color: var(--color-pink);
}

@media (min-width: 768px) {
  #case-study .advice span {
    font-size: var(--text-4xl);
  }
}

@media (min-width: 768px) {
  #question .wrap .header {
    padding-top: 0;
  }
}

#question .wrap .header__image {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

@media (min-width: 768px) {
  #question .wrap .header__image {
    position: absolute;
    top: 0;
    left: 30px;
    width: 50%;
    margin: 0;
  }
}

#question .wrap .header .heading .ja {
  font-size: var(--text-5xl);
}

@media (min-width: 768px) {
  #question .wrap .header .heading .ja {
    font-size: var(--text-6xl);
  }
}

#question .wrap .qa__item dd {
  font-size: var(--text-base);
  font-weight: 700;
  line-height: 2;
}

@media (min-width: 768px) {
  #question .wrap .qa__item dd {
    font-size: var(--text-lg);
  }
}

#question .wrap .qa__item__content {
  display: none;
  height: auto;
}

#question .wrap .qa__item__content.is-open {
  display: block;
}

#application {
  padding-top: 0;
}

#application .wrap .header {
  text-align: center;
}

#application .wrap .apply-example {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  margin-top: var(--space-2xl);
}

@media (min-width: 768px) {
  #application .wrap .apply-example {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    grid-auto-rows: 1fr;
  }
}

@media (min-width: 768px) {
  #application .wrap .apply-example .image-wrap {
    height: 100%;
    max-height: 188px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

#application .wrap .apply-example__item {
  width: 100%;
  height: 100%;
  border: 4px solid var(--color-white);
  border-radius: 20px;
  background-color: var(--color-black-100);
  padding: var(--space-md);
}

@media (min-width: 768px) {
  #application .wrap .apply-example__item {
    padding: var(--space-lg);
    padding-bottom: var(--space-2xl);
  }
}

#application .wrap .apply-example__item.triangle {
  position: relative;
}

#application .wrap .apply-example__item.triangle:nth-of-type(1) {
  z-index: 3;
}

#application .wrap .apply-example__item.triangle:nth-of-type(2) {
  z-index: 0;
}

@media (min-width: 768px) {
  #application .wrap .apply-example__item.triangle:nth-of-type(2) {
    z-index: 2;
  }
}

#application .wrap .apply-example__item.triangle:nth-of-type(3) {
  z-index: 1;
}

@media (min-width: 768px) {
  #application .wrap .apply-example__item.triangle:nth-of-type(3) {
    z-index: 1;
  }
}

#application .wrap .apply-example__item.triangle::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 99%;
  z-index: 2;
  -webkit-transform: translateY(-50%) scale(0.85);
      -ms-transform: translateY(-50%) scale(0.85);
          transform: translateY(-50%) scale(0.85);
  -webkit-transform-origin: left center;
      -ms-transform-origin: left center;
          transform-origin: left center;
  width: 35%;
  height: 30%;
  background-color: var(--color-black-100);
  -webkit-clip-path: polygon(0 0, 0 100%, 50% 50%);
          clip-path: polygon(0 0, 0 100%, 50% 50%);
}

@media (min-width: 768px) {
  #application .wrap .apply-example__item.triangle::before {
    width: 22%;
    height: 30%;
  }
}

#application .wrap .apply-example__item.triangle::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 100%;
  z-index: 1;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 32%;
  height: 27%;
  background-color: var(--color-white);
  -webkit-clip-path: polygon(0 0, 0 100%, 50% 50%);
          clip-path: polygon(0 0, 0 100%, 50% 50%);
}

@media (min-width: 768px) {
  #application .wrap .apply-example__item.triangle::after {
    width: 20%;
    height: 27%;
  }
}

#application .wrap .apply-example__description {
  color: var(--color-white);
  font-weight: 700;
  font-size: var(--text-xs);
  margin-top: var(--space-sm);
  line-height: 1.5;
}

@media (min-width: 768px) {
  #application .wrap .apply-example__description {
    font-size: var(--text-xl);
  }
}

#application .wrap .apply-example__description span {
  display: inline;
  background-color: var(--color-pink);
}

#application .wrap .apply-example__description__warning {
  font-size: var(--text-xs);
  font-weight: 700;
  white-space: normal;
  margin-top: var(--space-sm);
  padding: var(--space-xs);
  border: 1px solid var(--color-white);
}

@media (min-width: 768px) {
  #application .wrap .apply-example__description__warning {
    font-size: var(--text-base);
  }
}

#application .wrap .apply-example__description.bullet-point li {
  position: relative;
  margin-left: 8px;
}

#application .wrap .apply-example__description.bullet-point li:not(:first-child) {
  margin-top: var(--space-sm);
}

#application .wrap .apply-example__description.bullet-point li::before {
  position: absolute;
  top: 6px;
  left: -10px;
  content: "";
  width: 6px;
  height: 6px;
  background-color: var(--color-yellow);
  border-radius: 50px;
}

@media (min-width: 768px) {
  #application .wrap .apply-example__description.bullet-point li::before {
    top: 12px;
    left: -16px;
    width: 12px;
    height: 12px;
  }
}

#application .wrap .apply .point-wrap {
  margin-top: var(--space-md);
}

@media (min-width: 768px) {
  #application .wrap .apply .point-wrap {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: calc(55% - var(--space-md)) calc(45% - var(--space-md));
    grid-template-columns: calc(55% - var(--space-md)) calc(45% - var(--space-md));
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
  }
}

@media (min-width: 768px) {
  #application .wrap .apply .point-wrap .point {
    margin-top: 0;
  }
}

#application .wrap .apply .point-wrap .consultation {
  margin-top: var(--space-md);
  margin-left: -2vw;
  margin-right: -2vw;
  color: var(--color-white);
  border-radius: 10px;
  background-color: var(--color-black-100);
  padding: var(--space-md) 0;
  text-align: center;
}

@media (min-width: 768px) {
  #application .wrap .apply .point-wrap .consultation {
    -ms-flex-item-align: end;
        -ms-grid-row-align: end;
        align-self: end;
    height: 190px;
    text-align: left;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 4px;
    padding: var(--space-md) 0 0 0;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#application .wrap .apply .point-wrap .consultation .caption {
  position: relative;
  font-size: var(--text-xs);
  font-weight: 500;
}

@media (min-width: 768px) {
  #application .wrap .apply .point-wrap .consultation .caption {
    font-size: var(--text-lg);
    padding: 0 var(--space-xl);
  }
}

#application .wrap .apply .point-wrap .consultation .caption::before {
  position: absolute;
  content: "※";
  top: 0;
  left: -24px;
}

@media (min-width: 768px) {
  #application .wrap .apply .point-wrap .consultation .caption::before {
    left: 14px;
  }
}

#application .wrap .apply .point-wrap .consultation .strong {
  margin-top: var(--space-md);
  font-size: var(--text-xl);
  font-weight: 900;
  letter-spacing: 2px;
  background-color: var(--color-pink);
  line-height: 1.8;
}

@media (min-width: 768px) {
  #application .wrap .apply .point-wrap .consultation .strong {
    font-size: var(--text-3xl);
    margin-top: var(--space-md);
    padding-left: var(--space-lg);
    line-height: 1;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

#point .wrap {
  padding: 0 20px;
}

#point .wrap .three-point {
  margin-top: var(--space-xl);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 768px) {
  #point .wrap .three-point {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
    gap: var(--space-md);
  }
}

#point .wrap .three-point__item {
  padding: 0 var(--space-2xl);
}

@media (min-width: 768px) {
  #point .wrap .three-point__item {
    padding: 0;
  }
}

#point .wrap .three-point__item img {
  width: 100%;
  max-width: 235px;
}

@media (min-width: 768px) {
  #point .wrap .three-point__item img {
    max-width: 100%;
  }
}

#point .wrap .three-point__item:not(:first-child) {
  margin-top: var(--space-xl);
}

@media (min-width: 768px) {
  #point .wrap .three-point__item:not(:first-child) {
    margin-top: 0;
  }
}

@media (min-width: 768px) {
  #contacts .wrap .header__image {
    right: -30px;
    -webkit-transform: scale(0.9);
        -ms-transform: scale(0.9);
            transform: scale(0.9);
  }
}

#contacts .wrap .link__title {
  font-size: var(--text-2xl);
}

@media (min-width: 768px) {
  #contacts .wrap .link__title {
    font-size: var(--text-xl);
  }
}

#contacts .wrap .link__list a {
  font-size: var(--text-base);
  line-height: 1.2;
}

#videos-list {
  width: 100%;
  min-height: 100vh;
  background-color: var(--color-black-100);
  padding-bottom: var(--space-3xl);
}

#videos-list .heading {
  text-align: center;
  color: var(--color-yellow);
}

#videos-list .videos-grid {
  display: -ms-grid;
  display: grid;
  gap: var(--space-sm);
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  margin-top: var(--space-xl);
}

@media (min-width: 768px) {
  #videos-list .videos-grid {
    gap: var(--space-xl);
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
}

#videos-list .video-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#videos-list .video-item .video-frame {
  width: 100%;
}

#videos-list .video-item .video-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}

#videos-list .video-item .video-title {
  font-size: 10px;
  color: #fff;
  text-align: left;
  margin-top: var(--space-sm);
}

@media screen and (min-width: 768px) {
  #videos-list .video-item .video-title {
    font-size: var(--text-base);
  }
}

#column-list {
  width: 100%;
  min-height: 100vh;
  background-color: var(--bg-color-gray);
  padding-bottom: var(--space-3xl);
}

#column-list .heading {
  text-align: center;
  color: var(--color-black-200);
  font-size: var(--text-2xl);
  font-weight: 700;
}

#column-list .heading .en:before {
  background-color: var(--color-yellow);
}

#column-list .columns-grid {
  display: -ms-grid;
  display: grid;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

@media (min-width: 768px) {
  #column-list .columns-grid {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
  }
}

#column-list .column-item {
  overflow: hidden;
  position: relative;
}

#column-list .column-item .column-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

#column-list .column-item .column-content {
  margin-top: var(--space-sm);
}

#column-list .column-item .column-content .column-title {
  font-size: var(--text-xs);
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  #column-list .column-item .column-content .column-title {
    font-size: var(--text-base);
  }
}

#column-list .column-item .column-content .column-date {
  font-size: 10px;
  color: var(--color-gray);
}

@media screen and (min-width: 768px) {
  #column-list .column-item .column-content .column-date {
    font-size: var(--text-base);
  }
}

.fixed-page {
  padding: var(--space-3xl) 0;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .fixed-page {
    padding: var(--space-xl) 0 var(--space-3xl);
  }
}

.fixed-page__heading--01 {
  font-size: var(--text-3xl);
  font-weight: 700;
}

.fixed-page__heading--02 {
  font-size: var(--text-2xl);
  font-weight: 700;
}

.fixed-page__heading--03 {
  font-size: var(--text-lg);
  font-weight: 700;
}

.fixed-page__text {
  font-size: var(--text-base);
}

.fixed-page a {
  font-size: var(--text-base);
  color: var(--color-red-100);
}

.fixed-page .mt-xl {
  margin-top: var(--space-xl);
}

@media screen and (min-width: 768px) {
  .fixed-page .mt-xl {
    margin-top: var(--space-2xl);
  }
}

.fixed-page .mt-lg {
  margin-top: var(--space-lg);
}

@media screen and (min-width: 768px) {
  .fixed-page .mt-lg {
    margin-top: var(--space-xl);
  }
}

.fixed-page .mt-md {
  margin-top: var(--space-md);
}

@media screen and (min-width: 768px) {
  .fixed-page .mt-md {
    margin-top: var(--space-lg);
  }
}

.fixed-page .text-center {
  text-align: center;
}

.fixed-page .divider {
  width: 100%;
  height: 2px;
  background: var(--color-black);
  margin: var(--space-xl) 0;
}

@media screen and (min-width: 768px) {
  .fixed-page .divider {
    margin: var(--space-2xl) 0;
  }
}

.swiper-slide img {
  height: auto;
  width: 100%;
}
/*# sourceMappingURL=index.css.map */