@charset "UTF-8";
/* 変数 */
/* ベース */
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html, body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

#root, #__next {
  isolation: isolate;
}

/* ---------------------共通部分--------------------- */
html {
  scroll-behavior: smooth;
  height: auto;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  color: #646464;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

main {
  overflow: visible;
  height: auto;
}

a {
  transition: 0.3s;
}

a:hover {
  opacity: 0.75;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

h2 {
  font-weight: 400;
  letter-spacing: 0.08em;
}

/* -----------------------none---------------------- */
@media (min-width: 500px) {
  .drawer__button,
  .drawer__nav,
  br.pc_none,
  p.pc_none,
  .mv_textbox-mobile {
    display: none;
  }
}
/* header */
.site-header {
  position: sticky;
  top: 0;
  height: 5.5vw;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2vw;
  z-index: 1000;
  transition: background-color 0.4s ease, box-shadow 0.4s ease, border-radius 0.4s ease, width 0.4s ease, top 0.4s ease, color 0.4s ease;
}

/* FV通過後 */
.site-header.is-scrolled {
  top: 2vw;
  width: calc(100% - 4vw);
  margin-inline: auto;
  background-color: rgb(255, 255, 255);
  border-radius: 0.8rem;
  box-shadow: 0 0.8rem 3rem rgba(0, 0, 0, 0.08);
}

.logo_block {
  width: 40%;
  display: flex;
}
.logo_block .logo_block-logo {
  width: 20%;
}
.logo_block strong {
  font-size: clamp(0.2rem, 0.9vw, 2rem);
  font-weight: 400;
  color: #fff;
  padding-left: clamp(0.3rem, 1.5vw, 1.5rem);
  transition: color 0.4s ease;
}

/* スクロール後のロゴ横テキスト */
.site-header.is-scrolled .logo_block strong {
  color: #333;
}

.nav_block {
  width: 47%;
  margin-right: 1%;
}
.nav_block ul {
  display: flex;
  justify-content: end;
  padding-left: 0;
}
.nav_block li {
  font-size: clamp(0.2rem, 1.1vw, 1.4rem);
  list-style: none;
  padding: 1vw 1vw;
}
.nav_block li a {
  text-decoration: none;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
  font-weight: 500;
  color: #fff;
  padding-bottom: 0.8vw;
  position: relative;
  transition: color 0.4s ease, opacity 0.4s ease;
}
.nav_block li a:hover {
  opacity: 1;
  color: #003b94;
}
.nav_block li a::before {
  background: #003b94;
  content: "";
  width: 100%;
  height: 1.5px;
  position: absolute;
  left: 0;
  bottom: 0;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
.nav_block li a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

/* スクロール後のナビ文字 */
.site-header.is-scrolled .nav_block li a {
  color: #333;
}
.site-header.is-scrolled .nav_block li a:hover {
  color: #003b94;
}

.cta_block {
  width: clamp(100px, 13%, 200px);
}
.cta_block .c-contact-btn {
  position: relative;
  display: flex;
  padding: clamp(0.5rem, 0.7vw, 1.4rem) 0;
  align-items: center;
  justify-content: center;
  background-color: #00479d;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 500px) {
  .cta_block .c-contact-btn {
    width: 100%;
    min-height: 10.8rem;
    padding: 2rem 6rem 2rem 3rem;
  }
}
.cta_block .c-contact-btn:hover {
  background-color: #003b84;
}
.cta_block .c-contact-btn:hover .c-contact-btn__arrow {
  transform: translateX(clamp(10px, 1vw, 80px)) rotate(45deg);
}
.cta_block .c-contact-btn__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}
.cta_block .c-contact-btn__en {
  font-family: "Forum", "Times New Roman", serif;
  font-size: clamp(0.4rem, 1.2vw, 1.2rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.12em;
}
@media screen and (max-width: 500px) {
  .cta_block .c-contact-btn__en {
    font-size: 3.4rem;
  }
}
.cta_block .c-contact-btn__ja {
  margin-top: 0.5vw;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
  font-size: clamp(0.1rem, 0.8vw, 0.9rem);
  line-height: 1;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 500px) {
  .cta_block .c-contact-btn__ja {
    font-size: 2rem;
  }
}
.cta_block .c-contact-btn__arrow {
  position: absolute;
  right: clamp(1rem, 1.7vw, 2rem);
  width: clamp(0.3rem, 0.7vw, 2rem);
  height: clamp(0.3rem, 0.7vw, 2rem);
  border-top: clamp(0.1rem, 0.15vw, 2rem) solid #fff;
  border-right: clamp(0.1rem, 0.15vw, 2rem) solid #fff;
  transform: translateX(60%) rotate(45deg);
  transition: transform 0.3s ease;
}
@media screen and (max-width: 500px) {
  .cta_block .c-contact-btn__arrow {
    right: 3rem;
    width: 1.6rem;
    height: 1.6rem;
    border-width: 0.25rem;
  }
}

/* --------------------------------------------------------Mobile------------------------------------------------------- */
@media (max-width: 500px) {
  .site-header {
    position: sticky;
    height: 14vw;
    padding: 1vw 4vw;
    z-index: 1200;
  }
  .site-header.is-scrolled {
    border-radius: 0.4rem;
  }
  .logo_block {
    position: sticky;
    width: 80%;
    z-index: 1300;
  }
  .logo_block .logo_block-logo {
    width: 20%;
  }
  .logo_block strong {
    width: 80%;
    font-size: 2vw;
    padding-left: 2vw;
  }
  .cta_block,
  .nav_block {
    display: none;
  }
  .drawer__button {
    position: relative;
    width: 12%;
    height: 10vw;
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 1300;
  }
  .drawer__button > span {
    display: block;
    position: absolute;
    left: 50%;
    width: 7.5vw;
    height: 1px;
    background-color: #fff;
    transform: translateX(-50%);
  }
  .drawer__button > span:first-child {
    transform: translate(-50%, calc(-50% - 0.5rem));
    transition: transform 0.3s ease;
  }
  .drawer__button > span:nth-child(2) {
    transform: translate(-50%, calc(-50% + 0.5rem));
    transition: transform 0.3s ease;
  }
  .drawer__button.active > span:first-child {
    transform: translate(-50%, -50%) rotate(-45deg);
    background-color: #646464;
  }
  .drawer__button.active > span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(45deg);
    background-color: #646464;
  }
  .site-header.is-scrolled .drawer__button span {
    background-color: #646464;
  }
  .site-header.is-scrolled .logo_block strong,
  .site-header.is-drawer-open .logo_block strong {
    color: #333;
  }
  .site-header.is-scrolled .drawer__button > span,
  .site-header.is-drawer-open .drawer__button > span {
    background-color: #333;
  }
  .site-header.is-drawer-open {
    background-color: #fff;
    z-index: 1200;
  }
  /* =========================
     ドロワーメニュー全体
  ========================= */
  .drawer__nav {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background-color: transparent;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0s linear 0.65s;
  }
  .drawer__nav.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.3s ease, visibility 0s linear 0s;
  }
  .drawer__nav__inner {
    position: relative;
    width: 100%;
    height: 100%;
    margin-left: auto;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    padding: 22vw 0 8vw;
    overflow-y: auto;
    clip-path: circle(0 at calc(100% - 8vw) 7.5vw);
    transition: clip-path 0.65s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1000;
  }
  .drawer__nav.active .drawer__nav__inner {
    clip-path: circle(150% at calc(100% - 8vw) 7.5vw);
  }
  /* =========================
     メニューリスト
  ========================= */
  .drawer__nav__menu {
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(1.5rem);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }
  .drawer__nav.active .drawer__nav__menu {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.35s ease 0.25s, transform 0.35s ease 0.25s;
  }
  .drawer__nav__item {
    width: 100%;
    letter-spacing: 0.1em;
  }
  /* 通常リンク */
  .drawer__nav__link {
    display: block;
    font-size: 4.5vw;
    font-weight: 500;
    font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
    line-height: 10vw;
    color: #515151;
    text-decoration: none;
    padding: 3vw 6vw;
    border-bottom: 1px solid #e5e5e5;
    transition: opacity 0.1s;
  }
  .accordion-inner-header .drawer__nav__link {
    padding: 3vw 10vw;
    font-size: 3.6vw;
    font-weight: 400;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
    background-color: #e5e5e5;
    border-bottom: 1px solid #fff;
  }
  .drawer__nav__link span {
    font-size: 3vw;
  }
  .drawer__nav__link:hover {
    opacity: 0.6;
  }
  .accordion-open-header {
    display: block;
    font-size: 4.5vw;
    font-weight: 500;
    font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
    padding: 3vw 6vw;
    position: relative;
    border-bottom: 1px solid #e5e5e5;
  }
  .accordion-open-header span {
    font-size: 3vw;
  }
  /* ＋アイコン */
  .accordion-open-header::before,
  .accordion-open-header::after {
    content: "";
    width: 18px;
    height: 0.1vw;
    background-color: #515151;
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
  }
  /* アイコンのー */
  .accordion-open-header::after {
    transform: translateY(-50%) rotate(90deg);
    transition: 0.5s;
  }
  /* アコーディオンが開いたらーに */
  .accordion-hidden:checked + .accordion-open-header:after {
    transform: translateY(-50%) rotate(0);
  }
  /* アコーディオン中身部分 */
  .accordion-inner-header {
    display: block;
    height: 0;
    overflow: hidden;
    padding: 0;
    opacity: 0;
    transition: 0.5s;
    /* 表示速度の設定 */
    cursor: pointer;
  }
  .accordion-hidden {
    display: none;
  }
  /* チェックボックスにチェックが入ったら中身部分を表示する */
  .accordion-hidden:checked + .accordion-open-header + .accordion-inner-header {
    height: auto;
    opacity: 1;
  }
  .accordion_qa .accordion-open-header {
    padding-left: 0.5vw;
  }
  .accordion_qa .accordion-hidden:checked + .accordion-open-header + .accordion-inner-header {
    font-size: 1.2vw;
    height: auto;
    opacity: 1;
    padding: 0.5vw;
  }
  /* =========================
     CTAリンク（画像ボタン）
  ========================= */
  .drawer__nav__item--cta .drawer__nav__link {
    padding: 0;
    margin: 3vw auto;
    border-bottom: none;
  }
  .drawer__nav__item--cta img {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 auto;
    height: auto;
  }
  .drawer__nav__item--cta2 .drawer__nav__link {
    padding: 4vw;
    margin: 3vw auto;
    border-bottom: none;
    font-size: 5.5vw;
    font-weight: 600;
    text-align: center;
    color: #fff;
  }
  .cta_block-mobile {
    width: 80%;
    margin: 12vw auto;
  }
  .cta_block-mobile .c-contact-btn {
    position: relative;
    display: flex;
    padding: 5vw 0;
    align-items: center;
    justify-content: center;
    background-color: #00479d;
    color: #fff;
    text-decoration: none;
    overflow: hidden;
    transition: background-color 0.3s ease;
  }
  .cta_block-mobile .c-contact-btn__text {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
  }
  .cta_block-mobile .c-contact-btn__en {
    font-family: "Forum", "Times New Roman", serif;
    font-size: 6.5vw;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.12em;
  }
  .cta_block-mobile .c-contact-btn__ja {
    margin-top: 1vw;
    font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
    font-size: 3vw;
    line-height: 1;
    letter-spacing: 0.7em;
  }
  .cta_block-mobile .c-contact-btn__arrow {
    position: absolute;
    right: 10vw;
    width: 3vw;
    height: 3vw;
    border-top: clamp(0.1rem, 0.15vw, 2rem) solid #fff;
    border-right: clamp(0.1rem, 0.15vw, 2rem) solid #fff;
    transform: translateX(60%) rotate(45deg);
    transition: transform 0.3s ease;
  }
  /* =========================
     スクロール抑止
  ========================= */
  body.active {
    overflow: hidden;
    height: 100%;
  }
}
/* --------------------------------------------------------creative------------------------------------------------------- */
.creative-header {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #fff;
  z-index: 1000;
}
.creative-header *,
.creative-header *::before,
.creative-header *::after {
  box-sizing: border-box;
}
.creative-header__inner {
  width: min(100% - 40px, 700px);
  margin: 0 auto;
  padding: 2.5vw 0;
}
.creative-header__top {
  display: flex;
  align-items: center;
  justify-content: center;
}
.creative-header__logo {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #252525;
  text-decoration: none;
  white-space: nowrap;
}
.creative-header__logo-ja {
  font-size: clamp(0.4rem, 1.4vw, 1.4rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
.creative-header__logo-line {
  display: block;
  width: 1px;
  height: 20px;
  flex-shrink: 0;
  background-color: #252525;
}
.creative-header__logo-en {
  font-size: clamp(0.4rem, 1.4vw, 1.4rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
}
.creative-header__menu-button {
  display: none;
}

.creative-nav {
  margin-top: 1.5vw;
}
.creative-nav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.creative-nav__item {
  line-height: 1;
  margin: 0;
  padding: 0;
}
.creative-nav__link {
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
  color: #252525;
  font-size: clamp(0.4rem, 0.9vw, 0.9rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-decoration: none;
}
.creative-nav__link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background-color: #f7cf00;
  content: "";
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.3s ease;
}
.creative-nav__link:hover::after, .creative-nav__link:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left center;
}

@media screen and (max-width: 500px) {
  .creative-header {
    position: fixed;
  }
  .creative-header__inner {
    width: 100%;
    margin: 0;
    padding: 6vw;
  }
  .creative-header__top {
    position: relative;
    z-index: 2;
    justify-content: space-between;
  }
  .creative-header__logo {
    min-width: 0;
    gap: 13px;
  }
  .creative-header__logo-ja {
    font-size: 3vw;
  }
  .creative-header__logo-line {
    height: 20px;
  }
  .creative-header__logo-en {
    font-size: 3vw;
    letter-spacing: 0.06em;
  }
  .creative-header__menu-button {
    position: relative;
    display: flex;
    width: 29px;
    height: 21px;
    flex-shrink: 0;
    flex-direction: column;
    justify-content: space-between;
    margin: 0;
    padding: 0;
    border: 0;
    background-color: transparent;
    cursor: pointer;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }
  .creative-header__menu-button span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background-color: #252525;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .creative-header__menu-button.is-open span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .creative-header__menu-button.is-open span:nth-child(2) {
    opacity: 0;
  }
  .creative-header__menu-button.is-open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  .creative-nav {
    display: grid;
    grid-template-rows: 0fr;
    width: 100%;
    margin-top: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition: grid-template-rows 0.35s ease, margin-top 0.35s ease, opacity 0.3s ease, visibility 0s linear 0.35s;
  }
  .creative-nav.is-open {
    grid-template-rows: 1fr;
    margin-top: 24px;
    visibility: visible;
    opacity: 1;
    transition: grid-template-rows 0.35s ease, margin-top 0.35s ease, opacity 0.3s ease, visibility 0s linear 0s;
  }
  .creative-nav__list {
    display: flex;
    min-height: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    overflow: hidden;
  }
  .creative-nav__link {
    font-size: 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .creative-header__menu-button span,
  .creative-nav,
  .creative-nav__link::after {
    transition: none;
  }
}
/* ベース */
#fv, #popup-fv {
  margin-top: -8vw;
}
#fv strong, #popup-fv strong {
  position: relative;
  top: -15vw;
  right: -3vw;
  font-size: clamp(0.3rem, 3.8vw, 4.5rem);
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
  font-weight: 600;
  line-height: 1.35;
  color: #fff;
}
#fv h1, #popup-fv h1 {
  position: relative;
  top: -15vw;
  margin-left: 3vw;
  font-size: clamp(0.3rem, 1vw, 1.5rem);
  font-weight: 400;
  color: #fff;
}
#fv .marquee, #popup-fv .marquee {
  overflow: hidden;
  width: 100%;
  background: #fff;
  margin-top: -8vw;
}
#fv .marquee .marquee__track, #popup-fv .marquee .marquee__track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: scroll 36s linear infinite;
}
#fv .marquee .marquee__track .marquee__group, #popup-fv .marquee .marquee__track .marquee__group {
  display: flex;
  flex-shrink: 0; /* 縮まない */
}
#fv .marquee .marquee__track .marquee__group .client_logo, #popup-fv .marquee .marquee__track .marquee__group .client_logo {
  width: clamp(60px, 10vw, 400px);
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 1.5vw;
  flex-shrink: 0;
  display: block;
}
@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (max-width: 500px) {
  #fv, #popup-fv {
    margin-top: -14vw;
  }
  #fv strong, #popup-fv strong {
    top: -125vw;
    right: -5vw;
    font-size: 8vw;
    line-height: 1.8;
  }
  #fv h1, #popup-fv h1 {
    position: relative;
    top: -125vw;
    margin-left: 5vw;
    font-size: 2.6vw;
    font-weight: 400;
    color: #fff;
  }
  #fv .marquee, #popup-fv .marquee {
    margin-top: -60vw;
  }
  #fv .marquee .marquee__track .marquee__group .client_logo, #popup-fv .marquee .marquee__track .marquee__group .client_logo {
    width: 20vw;
  }
}

#about {
  position: relative;
  overflow: hidden;
  margin: 8vw auto;
}
#about .about_block {
  width: clamp(300px, 70%, 1200px);
  margin: 0 auto;
}
#about .about_block .about_contents {
  display: flex;
  margin-top: clamp(10px, 6vw, 80px);
}
#about .about_block .about_contents h3 {
  font-size: clamp(0.6rem, 2vw, 2.5rem);
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
  font-weight: 600;
}
#about .about_block .about_contents p {
  font-size: clamp(0.3rem, 1.1vw, 1.2rem);
  line-height: 2;
  padding-left: clamp(3rem, 10vw, 10rem);
}
#about .about_block .p_view {
  margin-top: clamp(-100px, -6vw, -80px);
}
@media (max-width: 500px) {
  #about {
    margin-top: 18vw;
  }
  #about .about_block {
    width: 90%;
  }
  #about .about_block .about_contents {
    flex-direction: column;
    margin-top: 10vw;
  }
  #about .about_block .about_contents h3 {
    font-size: 6vw;
  }
  #about .about_block .about_contents p {
    font-size: 3.3vw;
    line-height: 2;
    padding-top: 6vw;
    padding-left: 1vw;
  }
  #about .about_block .p_view {
    margin: 18vw auto;
  }
}
#about .about_photo {
  position: relative;
  width: 100%;
}
#about .about_photo__item {
  position: absolute;
  overflow: hidden;
}
#about .js-fadeup {
  opacity: 0;
  transform: translateY(4rem);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
#about .js-fadeup.is-show {
  opacity: 1;
  transform: translateY(0);
}
#about {
  /* ABOUT画像だけ少し時間差 */
}
#about .about_photo__item:nth-child(1) {
  transition-delay: 0s;
}
#about .about_photo__item:nth-child(2) {
  transition-delay: 0.12s;
}
#about .about_photo__item:nth-child(3) {
  transition-delay: 0.24s;
}
#about .about_photo__item:nth-child(4) {
  transition-delay: 0.36s;
}
#about .about_photo--pc {
  display: block;
  height: clamp(32rem, 36vw, 52rem);
  margin-top: clamp(6rem, 10vw, 15rem);
}
#about .about_photo--pc .about_photo__item--pc01 {
  width: clamp(10rem, 20vw, 30rem);
  top: 18%;
  left: 3%;
}
#about .about_photo--pc .about_photo__item--pc02 {
  width: clamp(0.9vw, 13vw, 25rem);
  top: 0;
  left: 30%;
}
#about .about_photo--pc .about_photo__item--pc03 {
  width: clamp(10rem, 23vw, 38rem);
  top: 22%;
  left: 50%;
}
#about .about_photo--pc .about_photo__item--pc04 {
  width: clamp(10rem, 18vw, 30rem);
  top: 30%;
  right: 0;
}
#about .about_photo--sp {
  display: none;
}
@media (max-width: 500px) {
  #about {
    padding-bottom: 65vw;
  }
  #about .about_photo--pc {
    display: none;
  }
  #about .about_photo--sp {
    display: block;
    height: 145vw;
    margin-top: 14vw;
  }
  #about .about_photo--sp .about_photo__item--sp01 {
    width: 53vw;
    top: 0;
    left: 6vw;
  }
  #about .about_photo--sp .about_photo__item--sp02 {
    width: 40vw;
    top: 62vw;
    right: 0;
  }
  #about .about_photo--sp .about_photo__item--sp03 {
    width: 50vw;
    top: 78vw;
    left: 0;
  }
  #about .about_photo--sp .about_photo__item--sp04 {
    width: 55vw;
    top: 155vw;
    right: 8vw;
  }
}

#service {
  position: relative;
  overflow: hidden;
  padding: 8vw 0;
  margin: 0 auto;
  background-color: #464646;
}
#service .service_block {
  width: clamp(300px, 70%, 1400px);
  margin: 0 auto;
  color: #fff;
}
#service .service_block h3 {
  font-size: clamp(0.6rem, 2vw, 2.5rem);
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
  letter-spacing: 0.08em;
  margin-top: clamp(10px, 5vw, 60px);
}
#service .service_block .p_view-btn {
  background-color: #fff;
  color: #646464;
  margin-top: clamp(10px, 4vw, 50px);
}
#service .service_block .p_view-btn__arrow {
  border-top: clamp(0.1rem, 0.15vw, 0.15rem) solid #646464;
  border-right: clamp(0.1rem, 0.15vw, 0.15rem) solid #646464;
}
#service .service_block {
  /* ==============================
  Service Panel
  ============================== */
}
#service .service_block .service_panel {
  margin-top: clamp(0.4rem, 4vw, 50px);
}
#service .service_block {
  /* ---------- PC ---------- */
}
#service .service_block .service_panel__pc {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(5rem, 0.75fr);
  gap: clamp(0.4rem, 1vw, 1rem);
}
#service .service_block .service_panel__menu {
  display: flex;
  flex-direction: column;
}
#service .service_block .service_panel__button {
  position: relative;
  display: block;
  width: 100%;
  padding: clamp(1.8rem, 2vw, 3.2rem) clamp(4.8rem, 5vw, 7.2rem) clamp(1.8rem, 2vw, 3.2rem) clamp(1.8rem, 2vw, 3.2rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  background-color: transparent;
  color: #fff;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.5s ease, padding 0.5s ease;
}
#service .service_block .service_panel__button:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}
#service .service_block .service_panel__button.is-active,
#service .service_block .service_panel__button:hover,
#service .service_block .service_panel__button:focus-visible {
  background-color: rgba(255, 255, 255, 0.14);
}
#service .service_block .service_panel__button-title {
  display: block;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
  font-size: clamp(0.8rem, 1.5vw, 1.6rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
#service .service_block .service_panel__button-text {
  display: block;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  font-size: clamp(0.5rem, 1.1vw, 13px);
  line-height: 2;
  letter-spacing: 0.04em;
  opacity: 0;
  transition: max-height 0.5s ease, margin-top 0.5s ease, opacity 0.5s ease;
}
#service .service_block .service_panel__button.is-active .service_panel__button-text,
#service .service_block .service_panel__button:hover .service_panel__button-text,
#service .service_block .service_panel__button:focus-visible .service_panel__button-text {
  max-height: 12rem;
  margin-top: clamp(0.3rem, 1vw, 1rem);
  text-align: justify;
  opacity: 1;
}
#service .service_block .service_panel__button-arrow {
  position: absolute;
  top: 50%;
  right: clamp(1.4rem, 1.8vw, 2.4rem);
  width: clamp(2.4rem, 2.2vw, 3.6rem);
  height: clamp(2.4rem, 2.2vw, 3.6rem);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-50%);
  transition: background-color 0.3s ease;
}
#service .service_block .service_panel__button-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 48%;
  width: 0.7rem;
  height: 0.7rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}
#service .service_block .service_panel__button.is-active .service_panel__button-arrow,
#service .service_block .service_panel__button:hover .service_panel__button-arrow,
#service .service_block .service_panel__button:focus-visible .service_panel__button-arrow {
  background-color: #fff;
}
#service .service_block .service_panel__button.is-active .service_panel__button-arrow::before,
#service .service_block .service_panel__button:hover .service_panel__button-arrow::before,
#service .service_block .service_panel__button:focus-visible .service_panel__button-arrow::before {
  border-color: #464646;
}
#service .service_block .service_panel__visual {
  position: relative;
  width: 100%;
  overflow: hidden;
}
#service .service_block .service_panel__visual img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
#service .service_block .service_panel__visual img.is-changing {
  opacity: 0;
  transform: scale(1.03);
}
#service .service_block {
  /* ---------- SP ---------- */
}
#service .service_block .service_panel__sp {
  display: none;
}
@media (max-width: 500px) {
  #service {
    padding: 24vw 0;
  }
  #service .service_block {
    width: 90%;
  }
  #service .service_block h3 {
    font-size: 5.5vw;
    line-height: 2;
    margin-top: 12vw;
  }
  #service .service_block .p_view-btn {
    margin: 12vw auto;
  }
  #service .service_block .p_view-btn__arrow {
    border-top: clamp(0.1rem, 0.15vw, 0.15rem) solid #646464;
    border-right: clamp(0.1rem, 0.15vw, 0.15rem) solid #646464;
  }
  #service .service_block .service_panel__pc {
    display: none;
  }
  #service .service_block .service_panel__sp {
    display: block;
    margin-top: 10vw;
  }
  #service .service_block .service_slider {
    position: relative;
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    overflow: hidden;
  }
  #service .service_block .service_slider__track {
    display: flex;
    gap: 6vw;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0 8vw 2vw;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  #service .service_block .service_slider__track::-webkit-scrollbar {
    display: none;
  }
  #service .service_block .service_slide {
    flex: 0 0 82vw;
    scroll-snap-align: center;
    padding: 6vw 5vw 7vw;
    background-color: #646464;
    border-top: 1px solid rgba(255, 255, 255, 0.55);
    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
    color: #fff;
  }
  #service .service_block .service_slide__image {
    width: 100%;
    aspect-ratio: 4/4.6;
    overflow: hidden;
  }
  #service .service_block .service_slide__image img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #service .service_block .service_slide__progress {
    position: relative;
    width: 100%;
    height: 2px;
    margin-top: 5vw;
    background-color: rgba(255, 255, 255, 0.25);
    overflow: hidden;
  }
  #service .service_block .service_slide__progress span {
    display: block;
    width: 0;
    height: 100%;
    background-color: #fff;
  }
  #service .service_block .service_slide.is-active .service_slide__progress span {
    animation: serviceProgress 5s linear forwards;
  }
  #service .service_block .service_slide h4 {
    margin-top: 5vw;
    font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
    font-size: 4.5vw;
    font-weight: 600;
    line-height: 1.8;
    letter-spacing: 0.03em;
  }
  #service .service_block .service_slide p {
    margin-top: 4vw;
    font-size: 3.2vw;
    text-align: justify;
    line-height: 2;
    letter-spacing: 0.06em;
  }
  #service .service_block .service_slide__link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: -moz-fit-content;
    width: fit-content;
    margin: 6vw 0 0 auto;
    color: #fff;
    text-decoration: none;
  }
  #service .service_block .service_slide__link span:first-child {
    display: none;
  }
  #service .service_block .service_slide__arrow {
    position: relative;
    display: block;
    width: 12vw;
    height: 12vw;
    border-radius: 50%;
    background-color: #fff;
  }
  #service .service_block .service_slide__arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 47%;
    width: 2.4vw;
    height: 2.4vw;
    border-top: 2px solid #003b94;
    border-right: 2px solid #003b94;
    transform: translate(-50%, -50%) rotate(45deg);
  }
}
@keyframes serviceProgress {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

#menu {
  position: relative;
  overflow: hidden;
  padding-bottom: 8vw;
  background-color: #e5e5e5;
}
#menu .menu_block {
  width: clamp(300px, 65%, 1000px);
  margin-inline: auto;
}
#menu .menu_block .menu_cards {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(2.4rem, 3vw, 4rem);
}
#menu .menu_block .menu_cards .menu_card {
  position: relative;
  display: block;
  width: min(100%, 35rem);
  aspect-ratio: 52/76;
  overflow: hidden;
  color: #fff;
  background-color: #333;
  text-decoration: none;
  z-index: 100;
}
#menu .menu_block .menu_cards .menu_card--recruit {
  margin-top: clamp(4rem, 6vw, 8rem);
}
#menu .menu_block .menu_cards .menu_card--recruit h2 {
  color: #464646;
  align-items: end;
}
#menu .menu_block .menu_cards .menu_card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  transition: background 0.4s ease;
}
#menu .menu_block .menu_cards .menu_card__picture {
  position: absolute;
  inset: 0;
  display: block;
}
#menu .menu_block .menu_cards .menu_card__picture img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
}
#menu .menu_block .menu_cards .menu_card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: clamp(0.8rem, 2.2vw, 2rem);
}
#menu .menu_block .menu_cards .menu_card__heading {
  display: flex;
  flex-direction: column;
  margin: 0;
  line-height: 1;
}
#menu .menu_block .menu_cards .menu_card__en {
  display: block;
  font-family: "Forum", "Times New Roman", serif;
  font-size: clamp(2.8rem, 3vw, 4.4rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
}
#menu .menu_block .menu_cards .menu_card__ja {
  display: block;
  margin-top: clamp(0.2rem, 0.2vw, 0.5rem);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-size: clamp(1.1rem, 0.9vw, 1.3rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
}
#menu .menu_block .menu_cards .menu_card__more {
  position: absolute;
  right: clamp(2rem, 2.4vw, 3.2rem);
  bottom: clamp(2rem, 2.4vw, 3.2rem);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 1.2vw, 1.8rem);
}
#menu .menu_block .menu_cards .menu_card__more-text {
  display: block;
  font-family: "Forum", "Times New Roman", serif;
  font-size: clamp(1.1rem, 1vw, 1.4rem);
  line-height: 1;
  letter-spacing: 0.22em;
  color: #fff;
  transition: color 0.3s ease;
}
#menu .menu_block .menu_cards .menu_card__arrow {
  --arrow-color: #fff;
  position: relative;
  display: block;
  width: clamp(4rem, 4vw, 5.6rem);
  height: clamp(4rem, 4vw, 5.6rem);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background-color: transparent;
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
#menu .menu_block .menu_cards .menu_card__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 47%;
  width: clamp(0.8rem, 0.8vw, 1.1rem);
  height: clamp(0.8rem, 0.8vw, 1.1rem);
  border-top: 1px solid var(--arrow-color);
  border-right: 1px solid var(--arrow-color);
  transform: translate(-50%, -50%) rotate(45deg);
  transition: border-color 0.3s ease;
}
#menu .menu_block .menu_cards {
  /* PC hover */
}
@media (hover: hover) and (pointer: fine) {
  #menu .menu_block .menu_cards .menu_card:hover {
    opacity: 1;
  }
  #menu .menu_block .menu_cards .menu_card:hover .menu_card__picture img {
    transform: scale(1.06);
    filter: brightness(1.08);
  }
  #menu .menu_block .menu_cards .menu_card:hover .menu_card__arrow {
    --arrow-color: #646464;
    background-color: #fff;
    border-color: #fff;
    transform: translateX(0.6rem);
  }
}
@media (max-width: 500px) {
  #menu {
    padding: 0;
  }
  #menu .menu_block {
    width: 95%;
  }
  #menu .menu_block .menu_cards {
    flex-direction: column;
    gap: 8vw;
  }
  #menu .menu_block .menu_cards .menu_card {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    left: -2.5%;
  }
  #menu .menu_block .menu_cards .menu_card--recruit {
    position: relative;
    margin-top: 0;
    left: 2.5%;
  }
  #menu .menu_block .menu_cards .menu_card__content {
    padding: 7vw 6vw;
  }
  #menu .menu_block .menu_cards .menu_card__en {
    font-size: 10vw;
  }
  #menu .menu_block .menu_cards .menu_card__ja {
    margin-top: 0.3rem;
    font-size: 4vw;
  }
  #menu .menu_block .menu_cards .menu_card__more {
    right: 6vw;
    bottom: 6vw;
    gap: 1.2rem;
  }
  #menu .menu_block .menu_cards .menu_card__more-text {
    font-size: 4vw;
  }
  #menu .menu_block .menu_cards .menu_card__arrow {
    width: 2.8rem;
    height: 2.8rem;
  }
  #menu .menu_block .menu_cards .menu_card__arrow::before {
    width: 0.5rem;
    height: 0.5rem;
  }
}

#news {
  position: relative;
  width: 100%;
  padding: 8vw 0;
  margin: -30vw auto 0;
  background-color: #464646;
  z-index: 10;
}
#news .news_block {
  display: flex;
  justify-content: space-between;
  width: clamp(300px, 70%, 1200px);
  margin: 25vw auto 0;
  color: #fff;
}
#news .news_block .news_block-list {
  width: 65%;
}
#news .news_block .news_block-list .list_box {
  padding: 2vw;
  margin: 0 0 2vw;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  list-style: none;
  background-color: #646464;
}
#news .news_block .news_block-list .list_box a {
  color: #fff;
  text-decoration: none;
}
#news .news_block .news_block-list .list_box a .text {
  display: flex;
  font-size: clamp(6px, 1.1vw, 18px);
  letter-spacing: 0.5px;
  align-items: center;
}
#news .news_block .news_block-list .list_box a .text .cat-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  font-size: 0.8125rem;
}
#news .news_block .news_block-list .list_box a .text time.date {
  font-size: clamp(6px, 1vw, 14px);
  margin: 0 0.4vw;
}
#news .news_block .news_block-list .list_box a .text p.title {
  font-size: clamp(6px, 1.1vw, 18px);
  font-weight: 500;
  margin: 0 0.4vw;
}
#news .news_btn {
  position: relative;
  top: -5.5vw;
  width: clamp(300px, 70%, 1200px);
  margin: 0 auto;
  color: #fff;
}
#news .news_btn .p_view-btn {
  background-color: #fff;
  color: #464646;
}
#news .news_btn .p_view-btn__arrow {
  border-top: clamp(0.1rem, 0.15vw, 0.15rem) solid #464646;
  border-right: clamp(0.1rem, 0.15vw, 0.15rem) solid #464646;
}
@media (max-width: 500px) {
  #news {
    padding: 40vw 0 16vw;
    margin: -45vw auto 0;
  }
  #news .news_block {
    flex-direction: column;
    justify-content: space-between;
    width: 90%;
    margin: 30vw auto 0;
    color: #fff;
  }
  #news .news_block .news_block-list {
    width: 100%;
    margin-top: 12vw;
  }
  #news .news_block .news_block-list .list_box {
    padding: 1vw 0 8vw;
    margin: 0;
    border-top: 1.5px solid #e5e5e5;
    border-bottom: 1.5px solid #e5e5e5;
  }
  #news .news_block .news_block-list .list_box a .text {
    flex-direction: column;
    font-size: 3.4vw;
    align-items: start;
    padding-left: 4vw;
  }
  #news .news_block .news_block-list .list_box a .text .cat-list {
    position: relative;
    top: 6vw;
    left: 18vw;
    font-size: 3.4vw;
    margin-bottom: 0;
  }
  #news .news_block .news_block-list .list_box a .text .cat-list li {
    font-size: 3vw;
    padding: 0 3vw;
  }
  #news .news_block .news_block-list .list_box a .text time.date {
    font-size: 3.4vw;
    margin: 0 2vw;
  }
  #news .news_block .news_block-list .list_box a .text p.title {
    font-size: 3.4vw;
    margin: 0 2vw;
  }
  #news .news_btn {
    width: 100%;
    margin: 14vw auto;
  }
}

#creative {
  background-color: #646464;
}
#creative .business_read {
  color: #fff;
}
#creative .business_read strong {
  color: #fff;
}

.dx .business-card__title img {
  width: 70%;
  margin-bottom: 0.8vw;
}
@media (max-width: 500px) {
  .dx .business-card__title img {
    width: 94%;
    margin-top: 2vw;
    margin-bottom: 2vw;
  }
}

#brand,
#seminar {
  background: #6f6f6f;
  color: #fff;
  padding: 3vw 0 10vw;
}
#brand .business_read strong,
#seminar .business_read strong {
  color: #fff;
  font-size: clamp(0.6rem, 2.5vw, 2.5rem);
  letter-spacing: 0.12em;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
}
#brand .brand_list,
#seminar .brand_list {
  width: clamp(300px, 65%, 1400px);
  margin: 0 auto;
}
#brand .brand_item,
#seminar .brand_item {
  position: relative;
  display: grid;
  grid-template-columns: 39% 1fr;
  gap: clamp(20px, 4vw, 60px);
  padding: clamp(56px, 6vw, 72px) 0;
}
#brand .brand_item::before, #brand .brand_item::after,
#seminar .brand_item::before,
#seminar .brand_item::after {
  content: "";
  position: absolute;
  left: 20%;
  width: 50%;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
}
#brand .brand_item::before,
#seminar .brand_item::before {
  top: 0;
}
#brand .brand_item::after,
#seminar .brand_item::after {
  bottom: 0;
}
#brand .brand_item + .brand_item::before,
#seminar .brand_item + .brand_item::before {
  display: none;
}
#brand .brand_img img,
#seminar .brand_img img {
  width: 100%;
  aspect-ratio: 520/360;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
#brand .brand_content h3,
#seminar .brand_content h3 {
  margin: 0 0 1vw;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
  font-size: clamp(10px, 2vw, 28px);
  line-height: 1.45;
  letter-spacing: 0.12em;
  font-weight: 600;
}
#brand .brand_content p,
#seminar .brand_content p {
  max-width: 560px;
  margin: 0 0 34px;
  font-size: clamp(6px, 1vw, 15px);
  line-height: 2;
  text-align: justify;
  letter-spacing: 0.04em;
}
#brand .brand_btn,
#seminar .brand_btn {
  width: 60%;
  padding: 1.3vw 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #646464;
  text-decoration: none;
  transition: opacity 0.3s;
}
#brand .brand_btn span,
#seminar .brand_btn span {
  font-size: 12px;
  letter-spacing: 0.35em;
  font-weight: 600;
}
#brand .brand_btn img,
#seminar .brand_btn img {
  position: absolute;
  right: 20px;
  width: 14px;
  height: 14px;
  -o-object-fit: contain;
     object-fit: contain;
}
#brand .brand_btn:hover,
#seminar .brand_btn:hover {
  opacity: 0.7;
}
@media screen and (max-width: 500px) {
  #brand,
  #seminar {
    padding: 12vw 16px 20vw;
  }
  #brand .business_read,
  #seminar .business_read {
    padding: 10vw 0 7vw;
  }
  #brand .business_read strong,
  #seminar .business_read strong {
    font-size: 7vw;
  }
  #brand .brand_read,
  #seminar .brand_read {
    margin-bottom: 40px;
  }
  #brand .brand_list,
  #seminar .brand_list {
    width: 90%;
  }
  #brand .brand_item,
  #seminar .brand_item {
    display: block;
    padding: 12vw 0;
  }
  #brand .brand_item::before, #brand .brand_item::after,
  #seminar .brand_item::before,
  #seminar .brand_item::after {
    left: 0;
    width: 100%;
  }
  #brand .brand_item + .brand_item,
  #seminar .brand_item + .brand_item {
    margin-top: 0px;
  }
  #brand .brand_item + .brand_item::before,
  #seminar .brand_item + .brand_item::before {
    display: block;
  }
  #brand .brand_img,
  #seminar .brand_img {
    margin-bottom: 22px;
  }
  #brand .brand_img img,
  #seminar .brand_img img {
    aspect-ratio: 360/245;
  }
  #brand .brand_content h3,
  #seminar .brand_content h3 {
    margin-bottom: 4vw;
    font-size: 6vw;
    line-height: 1.45;
  }
  #brand .brand_content p,
  #seminar .brand_content p {
    margin-bottom: 8vw;
    font-size: 4vw;
    line-height: 1.9;
    letter-spacing: 0.04em;
  }
  #brand .brand_btn,
  #seminar .brand_btn {
    width: 100%;
    min-height: 64px;
  }
  #brand .brand_btn span,
  #seminar .brand_btn span {
    font-size: 4vw;
    letter-spacing: 0.32em;
    font-weight: 400;
  }
}

#seminar {
  background: #464646;
}

#sales h2 {
  font-size: clamp(0.6rem, 3vw, 35px);
  font-weight: 600;
  margin-bottom: 1vw;
}
#sales .another-event p {
  font-size: clamp(0.6rem, 1.1vw, 1.2rem);
  font-weight: 500;
  text-align: center;
  margin-bottom: 0.5vw;
}
#sales .another-event__box {
  width: clamp(300px, 65%, 1200px);
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
#sales .another-event__box img {
  width: 100%;
  padding: 0.5vw;
}
#sales .another-event__box figcaption {
  font-size: clamp(0.6rem, 1.1vw, 1.1rem);
  text-align: center;
  margin-bottom: 0.5vw;
}
#sales .p_view {
  padding: 6vw 0;
  margin: 0 auto;
}
@media screen and (max-width: 500px) {
  #sales h2 {
    font-size: 6vw;
    margin-bottom: 2vw;
  }
  #sales .another-event p {
    font-size: 4vw;
    margin-top: 12vw;
    margin-bottom: 2vw;
  }
  #sales .another-event__box {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
  }
  #sales .another-event__box figure {
    width: 46%;
  }
  #sales .another-event__box figure img {
    width: 100%;
    padding: 2vw;
  }
  #sales .another-event__box figure figcaption {
    font-size: 3vw;
    text-align: center;
    margin-bottom: 0.5vw;
  }
}

#s_works {
  background-color: #646464;
}
#s_works .works_block {
  color: #fff;
}

.voice {
  background: #e5e5e5;
  padding: clamp(72px, 8vw, 120px) 0;
  overflow: hidden;
}
.voice .voice_inner {
  width: clamp(300px, 65%, 1200px);
  margin: 0 auto;
}
.voice .voice_inner .voice_read {
  display: flex;
  flex-direction: column;
  padding: 6vw 0 4vw;
  margin: 0 auto;
}
.voice .voice_inner .voice_read strong {
  font-size: clamp(0.3rem, 3.8vw, 4.8rem);
  letter-spacing: 0.12em;
  line-height: 1;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
  color: #464646;
}
.voice .voice_inner .voice_read h2 {
  margin: 0 0 24px;
  font-size: clamp(0.5rem, 1.2vw, 1.4rem);
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
}
.voice .voice_list {
  display: flex;
  flex-direction: column;
  gap: 44px;
}
.voice .voice_item {
  position: relative;
  display: grid;
  grid-template-columns: 250px 1fr;
  align-items: center;
  min-height: 230px;
  padding: 4vw;
  background: #fff;
  overflow: hidden;
}
.voice .voice_num {
  position: absolute;
  top: -22px;
  left: -8px;
  z-index: 0;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
  font-size: clamp(64px, 8vw, 110px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: #e5e5e5;
  pointer-events: none;
}
.voice .voice_profile {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-right: 40px;
  border-right: 1px solid #d5d5d5;
}
.voice .voice_icon {
  width: 112px;
  height: 112px;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
  background: #666;
}
.voice .voice_icon img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.voice .voice_type {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: #333;
}
.voice .voice_company {
  font-size: 11px;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #333;
}
.voice .voice_company span {
  font-size: 10px;
}
.voice .voice_content {
  position: relative;
  z-index: 1;
  padding-left: 48px;
}
.voice .voice_content h3 {
  margin-bottom: 20px;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.55;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: #333;
}
.voice .voice_content p {
  font-size: clamp(6px, 1vw, 14px);
  line-height: 2;
  letter-spacing: 0.04em;
  font-weight: 500;
  color: #333;
}
.voice .voice_arrow,
.voice .voice_dots {
  display: none;
}
.voice .sp_only {
  display: none;
}

@media screen and (max-width: 768px) {
  .voice {
    padding: 48px 0 0;
  }
  .voice .voice_inner {
    width: 100%;
  }
  .voice .voice_inner .voice_read {
    width: calc(100% - 40px);
    margin: 0 auto 28px;
  }
  .voice .voice_inner .voice_read strong {
    font-size: 10vw;
  }
  .voice .voice_inner .voice_read h2 {
    font-size: 2.8vw;
  }
  .voice .voice_slider-wrap {
    position: relative;
  }
  .voice .voice_list {
    display: flex;
    flex-direction: row;
    gap: 0;
    width: 100%;
    margin: 0 auto;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .voice .voice_list::-webkit-scrollbar {
    display: none;
  }
  .voice .voice_item {
    flex: 0 0 86%;
    display: block;
    min-height: auto;
    margin: 0 7%;
    padding: 32px 28px 36px;
    scroll-snap-align: center;
  }
  .voice .voice_num {
    top: -10px;
    left: -6px;
    font-size: 72px;
  }
  .voice .voice_profile {
    padding-right: 0;
    padding-bottom: 22px;
    border-right: none;
    border-bottom: none;
  }
  .voice .voice_icon {
    width: 104px;
    height: 104px;
    margin-bottom: 14px;
  }
  .voice .voice_type {
    font-size: 13px;
    margin-bottom: 8px;
  }
  .voice .voice_company {
    font-size: 10px;
    line-height: 1.7;
  }
  .voice .voice_content {
    padding-left: 0;
    padding-top: 24px;
  }
  .voice .voice_content h3 {
    margin-bottom: 18px;
    font-size: 22px;
    line-height: 1.55;
  }
  .voice .voice_content p {
    font-size: 12px;
    line-height: 1.9;
  }
  .voice .voice_arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: block;
    width: 56px;
    height: 56px;
    padding: 0;
    border: none;
    background: transparent;
    transform: translateY(-50%);
    cursor: pointer;
  }
  .voice .voice_arrow img {
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .voice .voice_arrow-prev {
    margin-top: -15vw;
    left: 4px;
  }
  .voice .voice_arrow-next {
    margin-top: -15vw;
    right: 4px;
  }
  .voice .voice_dots {
    display: flex;
    justify-content: center;
    gap: 0;
    width: calc(100% - 80px);
    margin: 28px auto 0;
  }
  .voice .voice_dots button {
    display: block;
    width: 33.333%;
    height: 1px;
    padding: 0;
    border: none;
    background: #c7c7c7;
    cursor: pointer;
  }
  .voice .voice_dots button.is-active {
    height: 2px;
    background: #555;
  }
  .voice .sp_only {
    display: block;
  }
}
.point {
  background-color: #3f3f3f;
  padding: 8vw 0 40vw;
  color: #fff;
}
.point__inner {
  width: clamp(300px, 65%, 1200px);
  margin: 0 auto;
}
.point__title {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: center;
  gap: 0.4em;
  margin: 0 0 clamp(3rem, 5vw, 6rem);
  color: #fff;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-align: center;
}
.point__title-small {
  font-size: clamp(0.6rem, 1.4vw, 1.6rem);
}
.point__title-main {
  font-size: clamp(1rem, 3vw, 3.6rem);
}
@media screen and (max-width: 500px) {
  .point__title {
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 3.2rem;
  }
  .point__title-small {
    font-size: 1.1rem;
  }
  .point__title-main {
    font-size: 2.2rem;
  }
}
.point__list {
  display: flex;
  flex-direction: column;
  gap: clamp(4rem, 10vw, 10rem);
}
@media screen and (max-width: 500px) {
  .point__list {
    gap: 5.6rem;
  }
}
@media screen and (max-width: 500px) {
  .point {
    padding: 4.8rem 0 35rem;
  }
  .point__inner {
    width: 90%;
  }
}

.point-card {
  position: relative;
}
.point-card::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: clamp(-4rem, -5vw, -2rem);
  width: min(32%, 320px);
  height: 1px;
  background-color: rgba(255, 255, 255, 0.25);
  transform: translateX(-50%);
}
.point-card:last-child::after {
  content: none;
}
.point-card__body {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  grid-template-rows: auto 1fr;
  gap: 2.5vw;
}
.point-card__number {
  grid-column: 2;
  grid-row: 1;
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 0.35rem;
  color: #fff;
  font-size: clamp(1.8rem, 2vw, 2.6rem);
  line-height: 1;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.75);
}
.point-card__image {
  grid-column: 1;
  grid-row: 1/span 2;
  display: block;
  margin: 0;
}
.point-card__image img {
  display: block;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.point-card__text {
  grid-column: 2;
  grid-row: 2;
  color: #fff;
}
.point-card h3 {
  margin: 0 0 1.4rem;
  color: #fff;
  font-size: clamp(0.6vw, 1.5vw, 1.5rem);
  line-height: 1.7;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.point-card p {
  margin: 0;
  color: #fff;
  font-size: clamp(0.6vw, 1vw, 1rem);
  text-align: justify;
  line-height: 2;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.point-card--reverse .point-card__number {
  grid-column: 1;
}
.point-card--reverse .point-card__image {
  grid-column: 2;
}
.point-card--reverse .point-card__text {
  grid-column: 1;
}
@media screen and (max-width: 500px) {
  .point-card::after {
    left: 0;
    bottom: -2.8rem;
    width: 100%;
    transform: none;
  }
  .point-card__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  .point-card__number {
    order: 1;
    font-size: 2rem;
    padding-bottom: 0.6rem;
  }
  .point-card__image {
    order: 2;
  }
  .point-card__image img {
    aspect-ratio: 1.55/1;
  }
  .point-card__text {
    order: 3;
  }
  .point-card h3 {
    margin-bottom: 1.2rem;
    font-size: 5vw;
    text-align: center;
    line-height: 1.6;
  }
  .point-card p {
    font-size: 1rem;
    line-height: 1.9;
  }
}

.flow {
  background-color: #646464;
}
.flow .flow_service {
  width: clamp(300px, 65%, 1200px);
  margin: 0 auto 10vw;
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
}
.flow .flow_service .image-caption {
  width: 22%;
  padding: 2vw 1.5vw;
  margin: 0.5vw;
  border: 1px solid #fff;
  font-size: clamp(0.4rem, 0.8vw, 0.8rem);
  text-align: center;
  color: #fff;
}
.flow .flow_service .image-caption img {
  width: 50%;
  margin: auto;
}
.flow .flow_service .image-caption figcaption {
  margin-top: 2vw;
}
.flow picture {
  position: relative;
  top: -25vw;
  width: clamp(300px, 65%, 1200px);
  margin: 0 auto;
}
@media screen and (max-width: 500px) {
  .flow {
    padding: 100vw 0 0;
  }
  .flow .flow_service {
    width: 90%;
    margin: 0 auto 16vw;
    display: flex;
    flex-wrap: wrap;
  }
  .flow .flow_service .image-caption {
    width: 45%;
    padding: 5vw 1.5vw;
    margin: 2vw;
    font-size: 2.8vw;
  }
  .flow .flow_service .image-caption figcaption {
    margin-top: 4vw;
  }
  .flow picture {
    top: -200vw;
    width: 90%;
    margin: 0 auto;
  }
  .flow picture img {
    aspect-ratio: auto;
  }
}

.faq {
  position: relative;
  top: 0;
  background-color: #e5e5e5;
  padding: 10vw 0;
  margin-top: -10vw;
  color: #3f3f3f;
}
.faq__inner {
  width: clamp(300px, 65%, 1200px);
  margin: 0 auto;
}
.faq__heading {
  margin-bottom: clamp(2.8rem, 4vw, 4.8rem);
}
.faq__heading h2 {
  margin: 0;
  font-size: clamp(3.2rem, 4vw, 5.2rem);
  line-height: 1;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
  font-weight: 400;
  letter-spacing: 0.04em;
}
.faq__heading p {
  margin: 0.8rem 0 0;
  font-size: clamp(0.6rem, 1.1vw, 1rem);
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
@media screen and (max-width: 500px) {
  .faq {
    margin-top: -180vw;
    padding: 5rem 0;
  }
  .faq__inner {
    width: 90%;
  }
  .faq__heading {
    margin-bottom: 2.8rem;
  }
  .faq__heading h2 {
    font-size: 10vw;
  }
  .faq__heading p {
    font-size: 3vw;
    margin-top: 1vw;
  }
  .faq__list {
    gap: 1.2rem;
  }
}

.faq-item {
  background-color: #fff;
}
.faq-item[open] .faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.faq-item__question {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 2.4rem 4rem;
  cursor: pointer;
  list-style: none;
}
.faq-item__question::-webkit-details-marker {
  display: none;
}
.faq-item__answer {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  padding: 0 4rem 2.8rem;
}
.faq-item__label {
  display: inline-block;
  color: #3f3f3f;
  font-size: clamp(0.6rem, 1.4vw, 20px);
  line-height: 1;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
  font-weight: 400;
}
.faq-item__text {
  font-size: clamp(0.6rem, 1.4vw, 20px);
  text-align: justify;
  line-height: 1.8;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.faq-item__answer-text p {
  margin: 0;
  font-size: clamp(0.6rem, 1.2vw, 16px);
  text-align: justify;
  line-height: 2;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.faq-item__icon {
  position: relative;
  display: block;
  width: 1.8rem;
  height: 1.8rem;
  flex-shrink: 0;
}
.faq-item__icon::before, .faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 1px;
  background-color: #8f8f8f;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
@media screen and (max-width: 500px) {
  .faq-item__question {
    grid-template-columns: auto 1fr auto;
    align-items: flex-start;
    gap: 1.4rem;
    padding: 2rem;
  }
  .faq-item__answer {
    grid-template-columns: auto 1fr;
    gap: 1.4rem;
    padding: 0 2rem 2.4rem;
  }
  .faq-item__label {
    font-size: 6vw;
  }
  .faq-item__text {
    font-size: 4vw;
    line-height: 1.7;
  }
  .faq-item__answer-text p {
    font-size: 3.4vw;
    line-height: 2;
  }
  .faq-item__icon {
    width: 1.6rem;
    height: 1.6rem;
    margin-top: 0.4rem;
  }
}

#popup-fv {
  margin-top: -8vw;
}
#popup-fv strong {
  position: relative;
  top: -28vw;
  right: -15vw;
  font-size: clamp(0.3rem, 3.8vw, 38px);
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
  font-weight: 600;
  line-height: 1.35;
  color: #fff;
}
#popup-fv h1, #popup-fv p {
  position: relative;
  top: -28vw;
  margin-left: 15vw;
  font-size: clamp(0.3rem, 1vw, 1.5rem);
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 2;
  color: #fff;
}
#popup-fv .popup__box {
  position: relative;
  top: -26vw;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}
#popup-fv .popup__box-cta {
  width: 20%;
  margin-left: 15vw;
}
#popup-fv .popup__box-cta img {
  width: 100%;
}
#popup-fv .popup__box-badge {
  width: clamp(100px, 40%, 600px);
  display: flex;
  justify-content: end;
  margin-right: 3vw;
}
#popup-fv .popup__box-badge img {
  width: 35%;
  margin: 1vw;
}
#popup-fv .marquee {
  margin-top: -17.5vw;
}
@media (max-width: 500px) {
  #popup-fv {
    margin-top: -14vw;
  }
  #popup-fv strong {
    top: -100vw;
    display: block;
    text-align: center;
    right: auto;
    font-size: 9.3vw;
    line-height: 1.3;
    margin-bottom: 5vw;
  }
  #popup-fv h1, #popup-fv p {
    position: relative;
    top: -100vw;
    margin: 2vw auto;
    text-align: center;
    font-size: 3vw;
    line-height: 1.7;
    letter-spacing: 1.5px;
    color: #fff;
  }
  #popup-fv .popup__box-cta {
    display: none;
  }
  #popup-fv .popup__box-badge {
    position: relative;
    top: -60vw;
    width: 100%;
    display: flex;
    justify-content: end;
    margin-right: 3vw;
  }
  #popup-fv .popup__box-badge img {
    width: 27%;
    margin: 1vw;
  }
  #popup-fv .marquee {
    margin-top: -74vw;
  }
}

#popup__about {
  background: linear-gradient(to bottom, #ffffff, #e5e5e5);
}
#popup__about .popup__inner {
  width: clamp(300px, 65%, 1200px);
  margin: 12vw auto 0;
  text-align: center;
}
#popup__about .popup__inner h2 {
  font-size: clamp(0.3rem, 3.5vw, 35px);
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
  line-height: 1.4;
  margin-bottom: 1.5vw;
}
#popup__about .popup__inner p {
  font-size: clamp(0.5rem, 1vw, 1.1rem);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
}
#popup__about .popup__inner picture {
  margin-top: 6vw;
}
@media (max-width: 500px) {
  #popup__about .popup__inner {
    width: 90%;
    margin: 20vw auto 0;
    text-align: justify;
  }
  #popup__about .popup__inner h2 {
    font-size: 6.4vw;
    line-height: 1.7;
    font-weight: 600;
    margin-bottom: 2vw;
  }
  #popup__about .popup__inner p {
    font-size: 3.4vw;
    line-height: 1.9;
  }
  #popup__about .popup__inner picture {
    margin-top: 20vw;
  }
}

#popup_read .event-read {
  padding: clamp(1rem, 4vw, 4rem) 0;
}
#popup_read .event-read__link-wrap {
  margin-top: clamp(1rem, 4vw, 4rem);
}
#popup_read .event-read__link-wrap::before {
  display: none;
}
#popup_read .event-read__link-wrap::after {
  width: min(38vw, 900px);
}
#popup_read .event-read__link {
  font-size: clamp(0.6rem, 1.2vw, 1.3rem);
}
@media screen and (max-width: 500px) {
  #popup_read .event-read {
    padding: 5rem 0;
  }
  #popup_read .event-read br {
    display: none;
  }
  #popup_read .event-read__link-wrap {
    display: block;
    margin: 5vw auto 0;
    text-align: center;
  }
  #popup_read .event-read__link-wrap::before, #popup_read .event-read__link-wrap::after {
    content: none;
  }
  #popup_read .event-read__link {
    display: inline-block;
    font-size: 5vw;
    line-height: 1.8;
    letter-spacing: 2px;
  }
}
#popup_read .works_list {
  width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  margin: clamp(0.5rem, 2vw, 2rem) auto 0;
}
@media screen and (max-width: 500px) {
  #popup_read {
    padding: 24vw 0 14vw;
  }
  #popup_read .p_view {
    width: 90%;
    margin: 16vw auto;
  }
  #popup_read .works_list {
    width: 90%;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1rem;
  }
}

.popup__works {
  color: #fff;
  background-color: #646464;
  padding-bottom: 16vw;
}
.popup__works .works_block {
  width: clamp(300px, 65%, 1200px);
  padding: 10vw 0 4vw;
  margin: 0 auto;
}
.popup__works .popup__block {
  width: clamp(300px, 65%, 1200px);
  margin: 0 auto;
}
.popup__works .popup__block-box {
  margin: 2vw auto 4vw;
}
.popup__works .popup__block-box h3 {
  font-size: clamp(0.8rem, 2.2vw, 2.2rem);
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
  line-height: 1.4;
  margin-bottom: 0.5vw;
}
.popup__works .popup__block-box p {
  font-size: clamp(0.5rem, 1vw, 1.1rem);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  text-align: justify;
  margin-bottom: 0.5vw;
}
.popup__works .popup__block-contents {
  display: flex;
}
.popup__works .popup__block-contents picture {
  margin: 0.5vw;
}
@media screen and (max-width: 500px) {
  .popup__works .works_block {
    width: 90%;
    padding: 20vw 0 8vw;
  }
  .popup__works .popup__block {
    width: 90%;
  }
  .popup__works .popup__block-box {
    margin: 8vw auto 16vw;
  }
  .popup__works .popup__block-box h3 {
    font-size: 6vw;
    margin-bottom: 2vw;
  }
  .popup__works .popup__block-box p {
    font-size: 3.2vw;
    margin-bottom: 4vw;
  }
  .popup__works .popup__block-contents {
    display: flex;
    flex-direction: column;
  }
  .popup__works .popup__block-contents picture {
    margin: 2vw 0 0;
  }
}

#popup-voice {
  background-color: #e5e5e5;
  padding-bottom: 12vw;
  margin: 0 auto;
}
#popup-voice p.cta-read {
  position: relative;
  top: -9vw;
  font-size: clamp(0.5rem, 1.5vw, 1.5rem);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  color: #fff;
  letter-spacing: 1px;
  text-align: center;
}
#popup-voice .cta-block {
  position: relative;
  top: -9vw;
  margin: 0.5vw auto 2vw;
}
#popup-voice .voice {
  padding: 0;
}
#popup-voice .voice .voice_read {
  padding: 0 0 2.5vw;
}
#popup-voice .voice h3 {
  font-size: clamp(0.5rem, 1.8vw, 1.8rem);
}
@media screen and (max-width: 500px) {
  #popup-voice {
    padding-bottom: 16vw;
  }
  #popup-voice p.cta-read {
    position: relative;
    top: 13.6vw;
    font-size: 4vw;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
    color: #fff;
    letter-spacing: 1px;
    text-align: center;
    z-index: 100;
  }
  #popup-voice .cta-block {
    position: relative;
    top: -15vw;
    margin: 0.5vw auto 2vw;
  }
  #popup-voice .cta-block__box {
    padding: 30vw 0 22vw;
  }
  #popup-voice .voice {
    padding: 0;
  }
  #popup-voice .voice .voice_read {
    padding: 0 0 2.5vw;
  }
  #popup-voice .voice h3 {
    font-size: 4.2vw;
    font-weight: 600;
  }
  #popup-voice .voice p {
    font-weight: 400;
  }
}

#popup_f {
  margin-bottom: -10vw;
}
@media screen and (max-width: 500px) {
  #popup_f {
    margin-bottom: -170vw;
  }
}

#page-fv.notfound {
  background-color: #fff;
}

#notfound_page .notfound_inner {
  width: clamp(300px, 65%, 1200px);
  text-align: center;
  padding: 4vw 0 8vw;
  margin: 0 auto;
}
#notfound_page .notfound_inner p {
  font-size: clamp(0.6rem, 1.4vw, 1.6rem);
}
#notfound_page .notfound_inner a {
  color: #003b94;
}
#notfound_page .notfound_inner a .btn-viewmore__text {
  font-size: clamp(0.6rem, 1.4vw, 1.6rem);
}
@media screen and (max-width: 500px) {
  #notfound_page .notfound_inner {
    width: 90%;
    padding: 8vw 0 16vw;
  }
  #notfound_page .notfound_inner p {
    font-size: 4vw;
  }
  #notfound_page .notfound_inner a .btn-viewmore__text {
    font-size: 4vw;
  }
}

#page-fv.privacy {
  background-color: #e9e9e9;
}

#privacy.privacy {
  background-color: #e9e9e9;
  padding: clamp(5rem, 8vw, 10rem) 0;
  color: #3f3f3f;
  text-align: justify;
}
#privacy.privacy .privacy__inner {
  width: min(100% - 40px, 1080px);
  margin: 0 auto;
}
#privacy.privacy .privacy__header {
  margin-bottom: clamp(4rem, 6vw, 7rem);
}
#privacy.privacy .privacy__header h1 {
  margin: 0 0 2.4rem;
  font-size: clamp(0.6rem, 4vw, 28px);
  line-height: 1.4;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
  font-weight: 700;
  letter-spacing: 0.08em;
}
#privacy.privacy .privacy__header p {
  max-width: 920px;
  margin: 0;
  font-size: clamp(0.4rem, 1vw, 13px);
  line-height: 2;
  letter-spacing: 0.04em;
}
#privacy.privacy .privacy__content {
  display: flex;
  flex-direction: column;
  gap: clamp(0.6rem, 4vw, 20px);
}
#privacy.privacy .privacy__section h2,
#privacy.privacy .privacy__section h3,
#privacy.privacy .privacy__section h4,
#privacy.privacy .privacy__section p,
#privacy.privacy .privacy__subsection h2,
#privacy.privacy .privacy__subsection h3,
#privacy.privacy .privacy__subsection h4,
#privacy.privacy .privacy__subsection p {
  margin-top: 0;
}
#privacy.privacy .privacy__section {
  padding-bottom: clamp(3rem, 4vw, 4.8rem);
  border-bottom: 1px solid rgba(63, 63, 63, 0.2);
}
#privacy.privacy .privacy__section:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
#privacy.privacy .privacy__section > h2 {
  margin-bottom: 1.6rem;
  font-size: clamp(0.6rem, 1.7vw, 24px);
  line-height: 1.7;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
  font-weight: 700;
  letter-spacing: 0.08em;
}
#privacy.privacy .privacy__section > p {
  margin-bottom: 0;
  font-size: clamp(0.4rem, 1vw, 13px);
  line-height: 2;
  letter-spacing: 0.04em;
}
#privacy.privacy .privacy__section--large {
  border-bottom: none;
}
#privacy.privacy .privacy__section--large > h2 {
  margin-bottom: clamp(3rem, 4vw, 4.8rem);
  font-size: clamp(0.6rem, 4vw, 24px);
}
#privacy.privacy .privacy__subsection {
  margin-top: clamp(3.2rem, 4vw, 5rem);
}
#privacy.privacy .privacy__subsection:first-of-type {
  margin-top: 0;
}
#privacy.privacy .privacy__subsection h3 {
  margin-bottom: 1.6rem;
  padding-left: 1.2rem;
  border-left: 3px solid #3f3f3f;
  font-size: clamp(0.4rem, 1.4vw, 18px);
  line-height: 1.7;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
  font-weight: 700;
  letter-spacing: 0.06em;
}
#privacy.privacy .privacy__subsection h4 {
  margin: 2.4rem 0 1.2rem;
  font-size: clamp(0.4rem, 1.1vw, 15px);
  line-height: 1.7;
  font-weight: 700;
  letter-spacing: 0.04em;
}
#privacy.privacy .privacy__subsection p {
  margin-bottom: 1.2rem;
  font-size: clamp(0.4rem, 1vw, 13px);
  line-height: 2;
  letter-spacing: 0.04em;
}
#privacy.privacy .privacy__subsection p:last-child {
  margin-bottom: 0;
}
#privacy.privacy .privacy__info {
  margin-top: 2.4rem;
}
#privacy.privacy .privacy__info p {
  margin: 0 0 0.6rem;
  font-size: clamp(0.6rem, 1vw, 13px);
  line-height: 1.8;
}
#privacy.privacy .privacy__info p:last-child {
  margin-bottom: 0;
}
#privacy.privacy .privacy__address {
  margin-top: 2.4rem;
  padding: 2.4rem;
  background-color: #fff;
  font-style: normal;
}
#privacy.privacy .privacy__address p {
  margin: 0 0 0.8rem;
  font-size: clamp(0.6rem, 1vw, 13px);
  line-height: 1.8;
}
#privacy.privacy .privacy__address p:last-child {
  margin-bottom: 0;
}
#privacy.privacy .privacy__address a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
#privacy.privacy .privacy__address a:hover {
  text-decoration: none;
}
#privacy.privacy .privacy__definition {
  margin: 0;
  border-top: 1px solid rgba(63, 63, 63, 0.2);
}
#privacy.privacy .privacy__definition div {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(63, 63, 63, 0.2);
}
#privacy.privacy .privacy__definition dt {
  font-weight: 700;
  line-height: 1.8;
}
#privacy.privacy .privacy__definition dd {
  margin: 0;
  line-height: 1.8;
}
#privacy.privacy .privacy__definition dt,
#privacy.privacy .privacy__definition dd {
  font-size: clamp(0.6rem, 1vw, 13px);
  letter-spacing: 0.04em;
}
#privacy.privacy .privacy__definition a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
#privacy.privacy .privacy__definition a:hover {
  text-decoration: none;
}
#privacy.privacy .privacy__table-wrap {
  overflow-x: auto;
  margin: 1.6rem 0 2.4rem;
}
#privacy.privacy .privacy__table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  background-color: #fff;
}
#privacy.privacy .privacy__table th,
#privacy.privacy .privacy__table td {
  padding: 1.6rem;
  border: 1px solid rgba(63, 63, 63, 0.18);
  font-size: clamp(0.4rem, 1vw, 13px);
  line-height: 1.8;
  letter-spacing: 0.04em;
  text-align: left;
  vertical-align: top;
}
#privacy.privacy .privacy__table thead th {
  background-color: #d8d8d8;
  font-weight: 700;
}
#privacy.privacy .privacy__table tbody th {
  width: 28%;
  font-weight: 700;
  background-color: #f5f5f5;
}
#privacy.privacy .privacy__list,
#privacy.privacy .privacy__ordered-list {
  margin: 1.6rem 0 2.4rem;
  padding-left: 1.6em;
}
#privacy.privacy .privacy__list li,
#privacy.privacy .privacy__ordered-list li {
  margin-bottom: 1rem;
  font-size: clamp(0.6rem, 1vw, 13px);
  line-height: 1.9;
  letter-spacing: 0.04em;
}
#privacy.privacy .privacy__list li:last-child,
#privacy.privacy .privacy__ordered-list li:last-child {
  margin-bottom: 0;
}
#privacy.privacy .privacy__ordered-list li {
  margin-bottom: 2rem;
}
#privacy.privacy .privacy__ordered-list li strong {
  display: block;
  margin-bottom: 0.6rem;
}
#privacy.privacy .privacy__ordered-list li p {
  margin: 0;
}
@media screen and (max-width: 500px) {
  #privacy.privacy {
    padding: 5.6rem 0;
  }
  #privacy.privacy .privacy__inner {
    width: min(100% - 32px, 420px);
  }
  #privacy.privacy .privacy__header {
    margin-bottom: 4rem;
  }
  #privacy.privacy .privacy__header h1 {
    margin-bottom: 2rem;
    font-size: 8vw;
  }
  #privacy.privacy .privacy__header p {
    font-size: 3.6vw;
    line-height: 1.9;
  }
  #privacy.privacy .privacy__section {
    padding-bottom: 3.2rem;
  }
  #privacy.privacy .privacy__section > h2 {
    font-size: 6vw;
  }
  #privacy.privacy .privacy__section > p {
    font-size: 3.6vw;
  }
  #privacy.privacy .privacy__section--large > h2 {
    font-size: 6.8vw;
    letter-spacing: 0;
  }
  #privacy.privacy .privacy__subsection {
    margin-top: 3.6rem;
  }
  #privacy.privacy .privacy__subsection h3 {
    padding-left: 1rem;
    font-size: 5.5vw;
  }
  #privacy.privacy .privacy__subsection h4 {
    font-size: 5vw;
  }
  #privacy.privacy .privacy__subsection p {
    font-size: 3.6vw;
  }
  #privacy.privacy .privacy__address {
    padding: 2rem;
  }
  #privacy.privacy .privacy__address p {
    font-size: 3.6vw;
  }
  #privacy.privacy .privacy__info p {
    font-size: 3.6vw;
    line-height: 1.4;
  }
  #privacy.privacy .privacy__definition div {
    grid-template-columns: 1fr;
    gap: 0.4rem;
    padding: 1.4rem 0;
  }
  #privacy.privacy .privacy__definition dt,
  #privacy.privacy .privacy__definition dd {
    font-size: 4vw;
  }
  #privacy.privacy .privacy__table {
    min-width: 640px;
  }
  #privacy.privacy .privacy__table th,
  #privacy.privacy .privacy__table td {
    padding: 1.2rem;
    font-size: 3.4vw;
  }
  #privacy.privacy .privacy__list li,
  #privacy.privacy .privacy__ordered-list li {
    font-size: 3.6vw;
  }
}

#AI .business_read h2 {
  font-size: clamp(0.6rem, 2.4vw, 2.8rem);
  font-weight: 600;
}
#AI .business_read p {
  font-weight: 400;
}
#AI .business__contents-title {
  font-size: clamp(0.6rem, 2vw, 2rem);
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
  margin: 4vw 0 2vw;
}
@media screen and (max-width: 600px) {
  #AI .business_read h2 {
    font-size: 7.4vw;
  }
  #AI .business__contents-title {
    font-size: 5.5vw;
    margin: 4vw 0 2vw;
  }
}

#AI_read {
  width: 100%;
  background-color: #646464;
}
#AI_read .works_block {
  width: clamp(300px, 85%, 1200px);
  color: #fff;
}
#AI_read .works_block .ai-case {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 2vw, 3rem);
  width: 100%;
  margin: clamp(3rem, 4vw, 6rem) auto 0;
}
#AI_read .works_block .ai-case__card {
  overflow: hidden;
  min-width: 0;
  border: 1px solid #d9e2f2;
  border-radius: clamp(1rem, 1.2vw, 1.8rem);
  background-color: #fff;
}
#AI_read .works_block .ai-case__head {
  min-height: 10vw;
  padding: clamp(0.5rem, 2vw, 2rem);
  background: linear-gradient(120deg, #17376f 0%, #1e69df 100%);
  color: #fff;
}
#AI_read .works_block .ai-case__category {
  margin: 0 0 clamp(0.2rem, 0.8vw, 20px);
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.3rem, 0.9vw, 13px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
#AI_read .works_block .ai-case__company {
  margin: 0;
  color: #fff;
  font-size: clamp(0.5rem, 1.2vw, 20px);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.01em;
  overflow-wrap: anywhere;
}
#AI_read .works_block .ai-case__body {
  padding: clamp(0.6rem, 2vw, 2rem);
}
#AI_read .works_block .ai-case__list {
  width: 100%;
  margin: 0;
}
#AI_read .works_block .ai-case__row {
  display: grid;
  grid-template-columns: clamp(0.4rem, 4vw, 4rem) minmax(0, 1fr);
  gap: clamp(0.4rem, 1.5vw, 1.5rem);
  align-items: start;
  padding: clamp(0.2rem, 1.2vw, 20px) 0;
}
#AI_read .works_block .ai-case__row + #AI_read .works_block .ai-case__row {
  border-top: 1px solid #e5e9f0;
}
#AI_read .works_block .ai-case__row:first-child {
  padding-top: 0;
}
#AI_read .works_block .ai-case__row:last-child {
  padding-bottom: 0;
}
#AI_read .works_block .ai-case__row dd {
  margin: 0;
  color: #111;
  font-size: clamp(0.4rem, 1vw, 16px);
  font-weight: 400;
  line-height: 1.7;
  overflow-wrap: anywhere;
}
#AI_read .works_block .ai-case__label {
  margin: 0;
  font-size: clamp(0.4rem, 1vw, 16px);
  font-weight: 700;
  line-height: 1.7;
}
#AI_read .works_block .ai-case__label--issue {
  color: #ff3b30;
}
#AI_read .works_block .ai-case__label--introduction {
  color: #0076ff;
}
#AI_read .works_block .ai-case__label--effect {
  color: #00b85c;
}
@media screen and (max-width: 600px) {
  #AI_read {
    padding: 24vw 0;
  }
  #AI_read .works_block .ai-case {
    grid-template-columns: 1fr;
    gap: 2.4rem;
    width: 100%;
    margin-top: 4rem;
  }
  #AI_read .works_block .ai-case__card {
    border-radius: 1.2rem;
  }
  #AI_read .works_block .ai-case__head {
    min-height: auto;
    padding: 5vw;
  }
  #AI_read .works_block .ai-case__category {
    margin-bottom: 2vw;
    font-size: 3.6vw;
  }
  #AI_read .works_block .ai-case__company {
    font-size: 5vw;
    line-height: 1.5;
  }
  #AI_read .works_block .ai-case__body {
    padding: 5vw;
  }
  #AI_read .works_block .ai-case__row {
    grid-template-columns: 2.4rem minmax(0, 1fr);
    gap: 1rem;
    padding: 4vw 0;
  }
  #AI_read .works_block .ai-case__row dd {
    font-size: 3.4vw;
    line-height: 1.7;
  }
  #AI_read .works_block .ai-case__label {
    font-size: 3.4vw;
  }
}

#AI_voice {
  padding: 6vw 0 12vw;
}
@media screen and (max-width: 768px) {
  #AI_voice {
    padding: 20vw 0;
  }
}

.creative_case {
  padding: clamp(80px, 8vw, 150px) 0;
}
.creative_case__inner {
  width: clamp(300px, 60%, 1200px);
  margin: 0 auto;
}
.creative_case__heading {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.creative_case__heading h2 {
  flex-shrink: 0;
  margin: 0;
  color: #000;
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 700;
  line-height: 1;
}
.creative_case__heading span {
  width: 100%;
  height: 1px;
  background: #000;
}
.creative_case__heading--client {
  margin-top: clamp(80px, 9vw, 150px);
}
.creative_case {
  /* =====================================================
    CREATIVE WORKS GRID
  ===================================================== */
}
.creative_case__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 34px;
  gap: 12px;
  margin: 0 0 6vw;
  padding: 0;
  list-style: none;
}
.creative_case__item {
  min-width: 0;
  margin: 0;
}
.creative_case__item.is-large {
  grid-column: span 5;
  grid-row: span 9;
}
.creative_case__item.is-tall {
  grid-column: span 3;
  grid-row: span 11;
}
.creative_case__item.is-medium {
  grid-column: span 4;
  grid-row: span 8;
}
.creative_case__item.is-small {
  grid-column: span 3;
  grid-row: span 6;
}
.creative_case__item.is-wide {
  grid-column: span 5;
  grid-row: span 6;
}
.creative_case__card {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #e7e7e7;
  color: #fff;
  text-decoration: none;
}
.creative_case__card::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.35) 35%, rgba(0, 0, 0, 0) 68%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.creative_case__card:hover::after {
  opacity: 1;
}
.creative_case__card:hover .creative_case__image img {
  transform: scale(1.04);
}
.creative_case__card:hover .creative_case__content {
  opacity: 1;
  transform: translateY(0);
}
.creative_case__card:focus-visible {
  outline: 2px solid #000;
  outline-offset: 3px;
}
.creative_case__card:focus-visible::after {
  opacity: 1;
}
.creative_case__card:focus-visible .creative_case__content {
  opacity: 1;
  transform: translateY(0);
}
.creative_case__image {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}
.creative_case__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.45s ease;
}
.creative_case__content {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 16px;
  left: 16px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.creative_case__category {
  display: inline-flex;
  align-items: center;
  min-height: 23px;
  margin-bottom: 8px;
  padding: 3px 9px;
  background: #fff;
  color: #222;
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
.creative_case__title {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: #fff;
  font-size: clamp(11px, 1vw, 15px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.03em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.creative_case__arrow {
  position: absolute;
  z-index: 3;
  right: 10px;
  bottom: 10px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}
.creative_case__empty {
  margin: 50px 0;
  color: #555;
  font-size: 15px;
  line-height: 1.8;
  text-align: center;
}
.creative_case {
  /* =====================================================
    PAGINATION
  ===================================================== */
}
.creative_case__pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 60px;
}
.creative_case__pagination .page-numbers {
  display: grid;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  border: 1px solid #aaa;
  color: #222;
  font-size: 11px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  place-items: center;
}
.creative_case__pagination .page-numbers:hover, .creative_case__pagination .page-numbers.current {
  background: #000;
  color: #fff;
}
.creative_case__pagination .page-numbers.dots {
  border-color: transparent;
}
.creative_case {
  /* =====================================================
    CLIENT LIST
  ===================================================== */
}
.creative_case__logo {
  padding: 28px;
}
.creative_case__logo picture,
.creative_case__logo img {
  display: block;
  width: 100%;
}
.creative_case__logo img {
  height: auto;
}

/* =========================================================
  TABLET
========================================================= */
@media screen and (max-width: 1024px) {
  .creative_case__inner {
    width: calc(100% - 80px);
    max-width: 900px;
  }
  .creative_case__grid {
    grid-auto-rows: 28px;
    gap: 9px;
  }
}
/* =========================================================
  SP
========================================================= */
@media screen and (max-width: 767px) {
  .creative_case {
    padding: 20vw 0;
  }
  .creative_case__inner {
    width: calc(100% - 40px);
  }
  .creative_case__heading {
    gap: 16px;
    margin-bottom: 20px;
  }
  .creative_case__heading h2 {
    font-size: 5vw;
  }
  .creative_case__heading--client {
    margin-top: 80px;
  }
  .creative_case__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-flow: dense;
    grid-auto-rows: 32vw;
    gap: 7px;
    margin-bottom: 14vw;
  }
  .creative_case__item.is-large, .creative_case__item.is-tall, .creative_case__item.is-medium, .creative_case__item.is-small, .creative_case__item.is-wide {
    grid-column: span 1;
    grid-row: span 1;
  }
  .creative_case__item {
    /*
     * 一部だけ横長・縦長にして
     * モバイルでも変化を出す
     */
  }
  .creative_case__item:nth-child(7n+1) {
    grid-column: span 2;
    grid-row: span 1;
  }
  .creative_case__item:nth-child(7n+4) {
    grid-column: span 1;
    grid-row: span 2;
  }
  .creative_case__card::after {
    opacity: 1;
  }
  .creative_case__card:hover .creative_case__image img {
    transform: none;
  }
  .creative_case__content {
    right: 9px;
    bottom: 9px;
    left: 9px;
    opacity: 1;
    transform: none;
  }
  .creative_case__category {
    min-height: 17px;
    margin-bottom: 4px;
    padding: 2px 5px;
    font-size: 7px;
  }
  .creative_case__title {
    font-size: 9px;
    line-height: 1.4;
  }
  .creative_case__arrow {
    right: 6px;
    bottom: 6px;
    width: 5px;
    height: 5px;
  }
  .creative_case__pagination {
    margin-top: 40px;
  }
  .creative_case__logo {
    padding: 10px;
  }
}
.creative-service {
  background-color: #ffd900;
  padding: 6vw 2vw;
}
.creative-service *,
.creative-service *::before,
.creative-service *::after {
  box-sizing: border-box;
}
.creative-service__inner {
  width: clamp(300px, 65%, 1200px);
  margin: 0 auto;
}
.creative-service__title {
  margin: 0 0 56px;
  color: #000;
  font-size: clamp(0.4rem, 2vw, 2rem);
  font-weight: 700;
  line-height: 1.4;
}
.creative-service__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5vw;
}
.creative-service__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}
.creative-service__icon {
  display: flex;
  width: clamp(60px, 30%, 300px);
  height: auto;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.creative-service__icon img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.creative-service__content {
  width: 100%;
  text-align: center;
}
.creative-service__heading {
  margin-bottom: 16px;
  text-align: center;
}
.creative-service__heading h3 {
  margin: 0;
  color: #111;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}
.creative-service__heading p {
  margin: 3px 0 0;
  color: #111;
  font-size: clamp(0.4rem, 0.8vw, 0.8rem);
  font-weight: 600;
  line-height: 1.4;
}
.creative-service__text {
  margin: 0;
  color: #000;
  font-size: clamp(0.4rem, 1vw, 1rem);
  text-align: justify;
  line-height: 1.8;
}
.creative-service__link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 28px auto 0;
  color: #111;
  font-size: clamp(0.4rem, 1vw, 1rem);
  font-weight: 700;
  text-decoration: none;
}
.creative-service__link span:first-child {
  position: relative;
  z-index: 1;
}
.creative-service__link:focus-visible {
  outline: 2px solid #111;
  outline-offset: 5px;
}
.creative-service__arrow {
  position: relative;
  display: block;
  width: 9vw;
  height: 1px;
  background: #000;
  transition: transform 0.3s ease;
}
.creative-service__arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 1.4vw;
  height: 1px;
  background: #000;
  transform: rotate(22deg);
  transform-origin: right center;
}

@media screen and (min-width: 768px) {
  .creative-service__link {
    transition: opacity 0.3s ease;
  }
  .creative-service__link:hover {
    opacity: 0.65;
  }
  .creative-service__link:hover .creative-service__arrow {
    transform: translateX(10px);
  }
}
@media screen and (max-width: 768px) {
  .creative-service {
    padding: 16vw 0;
  }
  .creative-service__inner {
    width: 90%;
    margin: 0 auto;
  }
  .creative-service__title {
    margin-bottom: 28px;
    font-size: 5vw;
  }
  .creative-service__list {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .creative-service__item {
    display: grid;
    grid-template-columns: 27% 1fr;
    align-items: start;
    gap: 18px;
  }
  .creative-service__icon {
    width: 100%;
    padding: 2vw;
  }
  .creative-service__heading {
    margin-bottom: 10px;
    text-align: left;
  }
  .creative-service__heading h3 {
    font-size: 4vw;
  }
  .creative-service__heading p {
    margin-top: 1px;
    font-size: 2.4vw;
  }
  .creative-service__text {
    min-height: auto;
    font-size: 3.4vw;
    line-height: 1.65;
  }
  .creative-service__link {
    position: relative;
    left: 15vw;
    width: 90px;
    margin: 10px 0 0 auto;
    font-size: 3.4vw;
  }
  .creative-service__arrow {
    width: 30vw;
  }
  .creative-service__arrow::after {
    width: 4vw;
  }
}
@media (prefers-reduced-motion: reduce) {
  .creative-service__link,
  .creative-service__arrow {
    transition: none;
  }
}
.creative-voice {
  padding: 90px 20px;
}
.creative-voice__inner {
  width: clamp(300px, 65%, 1200px);
  margin: 0 auto;
}
.creative-voice__title {
  margin: 0 0 50px;
  font-size: clamp(0.4rem, 2vw, 2rem);
  font-weight: 700;
  color: #222;
}
.creative-voice__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.creative-voice__item picture,
.creative-voice__item img {
  display: block;
  width: 100%;
}
.creative-voice__item img {
  height: auto;
}
.creative-voice__bottom {
  margin-top: 55px;
  text-align: center;
}
.creative-voice__bottom h3 {
  margin-bottom: 18px;
  font-size: clamp(0.4rem, 1.2vw, 1.2rem);
  font-weight: 700;
  color: #222;
}
.creative-voice__bottom p {
  margin: 0;
  font-size: clamp(0.4rem, 1.1vw, 1.1rem);
  line-height: 2;
  color: #222;
}
.creative-voice .creative-voice__slash {
  display: inline;
}

@media screen and (max-width: 768px) {
  .creative-voice {
    padding: 16vw 0;
  }
  .creative-voice__inner {
    width: 90%;
  }
  .creative-voice__title {
    margin-bottom: 10vw;
    font-size: 5vw;
  }
  .creative-voice__list {
    display: flex;
    flex-direction: column;
    gap: 6vw;
  }
  .creative-voice__bottom {
    margin-top: 12vw;
  }
  .creative-voice__bottom h3 {
    margin-bottom: 16px;
    font-size: 3.6vw;
    line-height: 1.6;
  }
  .creative-voice__bottom p {
    font-size: 3.2vw;
  }
  .creative-voice .creative-voice__slash {
    display: none;
  }
}
.creative-about {
  background-color: #ffd900;
}
.creative-about *,
.creative-about *::before,
.creative-about *::after {
  box-sizing: border-box;
}
.creative-about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;
}
.creative-about__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 72%;
  margin-left: auto;
  padding: 70px 70px 70px 20px;
}
.creative-about__title {
  margin: 0 0 44px;
  color: #111;
  font-size: clamp(0.4rem, 2vw, 2rem);
  font-weight: 700;
  line-height: 1.4;
}
.creative-about__lead {
  margin: 0 0 30px;
  color: #111;
  font-size: clamp(0.4rem, 1.2vw, 1.2rem);
  font-weight: 700;
  line-height: 1.8;
}
.creative-about__text {
  color: #111;
  font-size: clamp(0.4rem, 0.87vw, 0.87rem);
  font-weight: 400;
  text-align: justify;
  line-height: 2;
}
.creative-about__text p {
  margin: 0;
}
.creative-about__text p + p {
  margin-top: 22px;
}
.creative-about__visual {
  min-width: 0;
}
.creative-about__visual picture {
  display: block;
  width: 100%;
  height: 100%;
}
.creative-about__visual img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 768px) {
  .creative-about__inner {
    display: flex;
    min-height: auto;
    flex-direction: column-reverse;
  }
  .creative-about__visual {
    width: 100%;
    height: auto;
  }
  .creative-about__visual picture {
    height: auto;
  }
  .creative-about__visual img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .creative-about__content {
    width: 100%;
    margin: 0;
    padding: 34px 20px 52px;
  }
  .creative-about__title {
    margin-bottom: 34px;
    font-size: 5vw;
  }
  .creative-about__lead {
    margin-bottom: 28px;
    font-size: 4vw;
    line-height: 1.7;
  }
  .creative-about__text {
    font-size: 2.8vw;
    line-height: 2.2;
  }
  .creative-about__text p + p {
    margin-top: 24px;
  }
}
.creative-contact {
  margin: 8vw auto;
  color: #000;
}
.creative-contact .creative-contact_inner {
  width: clamp(200px, 40%, 600px);
  margin: 8vw auto;
}
.creative-contact .creative-contact_inner p {
  font-size: clamp(0.4rem, 1.4vw, 1.4rem);
  font-weight: 500;
  text-align: center;
  letter-spacing: 3px;
}
.creative-contact .creative-contact_inner .creative-cta {
  width: 40%;
  margin: 2vw auto;
  border-radius: 0.5vw;
  border: 1px solid #000;
  transition: background-color 0.5s ease;
}
.creative-contact .creative-contact_inner .creative-cta:hover {
  background-color: #333;
  border: 1px solid #333;
}
.creative-contact .creative-contact_inner .creative-cta a {
  text-decoration: none;
  color: #000;
  transition: background-color 0.5s ease, color 0.5s ease;
}
.creative-contact .creative-contact_inner .creative-cta a:hover {
  color: #fff;
}
.creative-contact .creative-contact_inner .creative-cta .creative-cta_box {
  width: 100%;
  padding: 1vw 3vw;
  font-size: clamp(0.4rem, 1.1vw, 1.1rem);
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 500px) {
  .creative-contact {
    margin: 16vw auto;
  }
  .creative-contact .creative-contact_inner {
    width: 90%;
    margin: 16vw auto;
  }
  .creative-contact .creative-contact_inner p {
    font-size: 3.6vw;
  }
  .creative-contact .creative-contact_inner .creative-cta {
    width: 60%;
    margin: 6vw auto;
    border-radius: 1vw;
  }
  .creative-contact .creative-contact_inner .creative-cta .creative-cta_box {
    width: 100%;
    padding: 2vw 6vw;
    font-size: 3.4vw;
  }
}

.creative-case-title {
  padding: 4vw 0;
}
.creative-case-title__inner {
  width: clamp(300px, 65%, 1200px);
  margin: 0 auto;
  text-align: center;
  color: #000;
}
.creative-case-title__section {
  position: relative;
  display: inline-block;
  margin: 0 0 2vw;
  padding-bottom: 0.4vw;
  font-size: clamp(0.6rem, 1.3vw, 1.3rem);
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.4;
}
.creative-case-title__section::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #111;
}
.creative-case-title__title {
  margin: 0;
  line-height: 1.2;
}
.creative-case-title__en {
  display: block;
  font-size: clamp(0.5rem, 2vw, 2rem);
  font-weight: 700;
}
.creative-case-title__ja {
  display: block;
  margin-top: 0.4vw;
  font-size: clamp(0.6rem, 1.2vw, 1.2rem);
  font-weight: 700;
}

@media (max-width: 767px) {
  .creative-case-title {
    padding: 0;
  }
  .creative-case-title__section {
    margin-bottom: 4vw;
    padding-bottom: 1.5vw;
    font-size: 4vw;
  }
  .creative-case-title__section::after {
    height: 2px;
  }
  .creative-case-title__en {
    font-size: 5vw;
  }
  .creative-case-title__ja {
    margin-top: 1.5vw;
    font-size: 3.2vw;
  }
}
.creative-detail {
  padding: 80px 20px;
  background-color: #fff;
  color: #111;
}
.creative-detail__inner {
  display: grid;
  grid-template-columns: 20vw minmax(0, 1fr);
  gap: 3vw;
  width: clamp(500px, 65%, 1200px);
  margin: 0 auto;
}
.creative-detail__heading {
  display: flex;
  align-items: flex-start;
  gap: 1.5vw;
  padding-right: 3vw;
  border-right: 2px solid #111;
}
.creative-detail__icon {
  width: 30%;
  flex-shrink: 0;
}
.creative-detail__icon img {
  display: block;
  width: 100%;
  height: auto;
}
.creative-detail__title {
  margin: 0;
  font-size: clamp(0.6rem, 1.4vw, 1.4rem);
  font-weight: 700;
  line-height: 1.35;
  white-space: nowrap;
}
.creative-detail__title-ja {
  margin: 2px 0 0;
  font-size: clamp(0.6rem, 0.9vw, 0.9rem);
  font-weight: 600;
  line-height: 1;
}
.creative-detail__content {
  min-width: 0;
}
.creative-detail__description {
  font-size: clamp(0.6rem, 1vw, 1rem);
  font-weight: 500;
  line-height: 1.9;
}
.creative-detail__description p {
  font-size: clamp(0.6rem, 0.95vw, 0.95rem);
  text-align: justify;
  margin: 0;
}
.creative-detail__description p + p {
  margin-top: 26px;
}
.creative-detail__works {
  margin-top: 34px;
}
.creative-detail__works-title {
  display: inline-block;
  margin: 0 0 14px;
  padding: 6px 14px;
  background-color: #111;
  color: #fff;
  font-size: clamp(0.6rem, 0.9vw, 0.9rem);
  font-weight: 700;
  line-height: 1.2;
}
.creative-detail__works-list {
  margin: 0;
}
.creative-detail__works-item + .creative-detail__works-item {
  margin-top: 12px;
}
.creative-detail__works-item dt {
  margin: 0 0 3px;
  font-size: clamp(0.6rem, 1vw, 1rem);
  font-weight: 700;
  line-height: 1.5;
}
.creative-detail__works-item dd {
  margin: 0;
  font-size: clamp(0.6rem, 1vw, 1rem);
  font-weight: 500;
  line-height: 1.7;
}

@media screen and (max-width: 768px) {
  .creative-detail {
    padding: 16vw 0;
  }
  .creative-detail__inner {
    display: block;
    width: 90%;
    margin: 0 auto;
  }
  .creative-detail__heading {
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0 0 22px;
    border-right: 0;
    border-bottom: 1px solid #111;
    text-align: center;
  }
  .creative-detail__icon {
    width: 62px;
  }
  .creative-detail__title-block {
    line-height: 1.3;
    padding-top: 0;
  }
  .creative-detail__title {
    font-size: 4.2vw;
  }
  .creative-detail__title-ja {
    margin-top: 0;
    font-size: 2.8vw;
  }
  .creative-detail__content {
    padding-top: 24px;
  }
  .creative-detail__description {
    font-size: 10px;
    line-height: 1.75;
  }
  .creative-detail__description p {
    font-size: 3.3vw;
    font-weight: 400;
    line-height: 2;
  }
  .creative-detail__description p + p {
    margin-top: 22px;
  }
  .creative-detail__works {
    margin-top: 28px;
  }
  .creative-detail__works-title {
    margin-bottom: 12px;
    padding: 5px 10px;
    font-size: 3vw;
  }
  .creative-detail__works-item + .creative-detail__works-item {
    margin-top: 12px;
  }
  .creative-detail__works-item dt {
    font-size: 3.2vw;
    font-weight: 600;
  }
  .creative-detail__works-item dd {
    font-size: 3.2vw;
    font-weight: 400;
    line-height: 1.7;
    padding-bottom: 3.5vw;
  }
}
.creative-flow .creative-flow_inner {
  width: clamp(600px, 65%, 1200px);
  margin: 12vw auto;
}
.creative-flow .creative-flow_inner h2 {
  font-size: clamp(0.4rem, 2vw, 2rem);
  font-weight: 700;
  color: #000;
  margin-bottom: 6vw;
}
@media screen and (max-width: 500px) {
  .creative-flow .creative-flow_inner {
    width: 90%;
    margin: 4vw auto 20vw;
  }
  .creative-flow .creative-flow_inner h2 {
    font-size: 5vw;
    font-weight: 700;
    color: #000;
    margin-bottom: 6vw;
  }
}

.creative-faq {
  padding: 8vw 0;
  background-color: #fff;
  color: #111;
}
.creative-faq__inner {
  width: clamp(500px, 65%, 1200px);
  margin: 0 auto;
}
.creative-faq__title {
  margin: 0 0 3vw;
  font-size: clamp(0.4rem, 2vw, 2rem);
  font-weight: 700;
  line-height: 1.4;
}
.creative-faq__list {
  display: flex;
  flex-direction: column;
  gap: 2vw;
}
.creative-faq__item {
  overflow: hidden;
  border: 1.5px solid #111;
  border-radius: 7px;
}
.creative-faq__question {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 24px;
  gap: 2vw;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 1.6vw;
  border: 0;
  background-color: transparent;
  color: #111;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.creative-faq__question:focus-visible {
  outline: 2px solid #111;
  outline-offset: -4px;
}
.creative-faq__mark {
  display: flex;
  width: 3vw;
  height: 3vw;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #111;
  border-radius: 50%;
  font-size: clamp(0.4rem, 1.2vw, 1.2rem);
  font-weight: 500;
  line-height: 1;
}
.creative-faq__mark--answer {
  border-color: #f2d300;
  color: #f2d300;
}
.creative-faq__question-text {
  font-size: clamp(0.4rem, 1.1vw, 1.1rem);
  font-weight: 600;
  line-height: 1.7;
}
.creative-faq__toggle {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  justify-self: end;
}
.creative-faq__toggle::before, .creative-faq__toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1.5px;
  background-color: #111;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}
.creative-faq__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.creative-faq__answer {
  padding: 1.6vw;
}
.creative-faq__answer-inner {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding-top: 14px;
  border-top: 1px solid #777;
}
.creative-faq__answer-inner p {
  margin: 7px 0 0;
  font-size: clamp(0.4rem, 1.1vw, 1.1rem);
  text-align: justify;
  font-weight: 500;
  line-height: 1.8;
}
.creative-faq__item.is-open .creative-faq__toggle::after {
  transform: translate(-50%, -50%) rotate(0);
}

@media screen and (min-width: 768px) {
  .creative-faq__question {
    transition: background-color 0.3s ease;
  }
  .creative-faq__question:hover {
    background-color: #f8f8f8;
  }
}
@media screen and (max-width: 768px) {
  .creative-faq {
    padding: 12vw 0 20vw;
  }
  .creative-faq__inner {
    width: 90%;
    margin: 0 auto;
  }
  .creative-faq__title {
    margin-bottom: 6vw;
    font-size: 5vw;
  }
  .creative-faq__list {
    gap: 4vw;
  }
  .creative-faq__item {
    border-width: 1px;
    border-radius: 5px;
  }
  .creative-faq__question {
    grid-template-columns: 24px minmax(0, 1fr) 18px;
    gap: 3vw;
    padding: 4vw 3vw;
  }
  .creative-faq__mark {
    width: 6vw;
    height: 6vw;
    border-width: 1px;
    font-size: 3.4vw;
  }
  .creative-faq__question-text {
    font-size: 3.3vw;
    line-height: 1.65;
  }
  .creative-faq__toggle {
    width: 3.4vw;
    height: 3.4vw;
  }
  .creative-faq__toggle::before, .creative-faq__toggle::after {
    width: 12px;
    height: 1px;
  }
  .creative-faq__answer {
    padding: 0 10px 18px;
  }
  .creative-faq__answer-inner {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 12px;
    padding-top: 3.3vw;
  }
  .creative-faq__answer-inner p {
    margin-top: 0;
    font-size: 3.3vw;
    line-height: 1.75;
  }
}
@media (prefers-reduced-motion: reduce) {
  .creative-faq__toggle::after,
  .creative-faq__question {
    transition: none;
  }
}
#page-fv.recruit {
  height: auto;
  background-color: #fff;
  margin-top: -6vw;
}
#page-fv.recruit picture {
  position: relative;
}
#page-fv.recruit strong {
  position: relative;
  top: -32vw;
  left: 18vw;
  font-size: clamp(0.3rem, 3.8vw, 48px);
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
  font-weight: 400;
  text-shadow: 2px 3px 6px rgba(0, 0, 0, 0.4);
  line-height: 2;
  color: #fff;
}
#page-fv.recruit h1, #page-fv.recruit p {
  position: relative;
  top: -30vw;
  margin-left: 18vw;
  font-size: clamp(0.3rem, 1vw, 1.5rem);
  left: 0;
  font-weight: 400;
  color: #fff;
}
@media (max-width: 500px) {
  #page-fv.recruit {
    margin-top: -14vw;
  }
  #page-fv.recruit strong {
    top: -110vw;
    left: 6%;
    display: block;
    right: auto;
    text-align: justify;
    font-size: 6vw;
  }
  #page-fv.recruit h1 {
    top: -122vw;
    left: 6%;
    margin: 0 auto;
    font-size: 2.6vw;
    font-weight: 400;
    text-align: justify;
  }
}

#recruit_block {
  position: relative;
  z-index: 100;
}
#recruit_block .recruit_inner {
  width: clamp(300px, 65%, 1200px);
  text-align: center;
  padding: 4vw 0 8vw;
  margin: -12vw auto 0;
}
#recruit_block .recruit_inner p {
  font-size: clamp(0.6rem, 1.4vw, 1.6rem);
}
#recruit_block .recruit_inner a {
  color: #003b94;
}
#recruit_block .recruit_inner a .btn-viewmore__text {
  font-size: clamp(0.6rem, 1.4vw, 1.6rem);
}
@media screen and (max-width: 500px) {
  #recruit_block .recruit_inner {
    width: 90%;
    margin-top: -18vw;
    padding: 8vw 0 16vw;
  }
  #recruit_block .recruit_inner p {
    font-size: 4vw;
  }
  #recruit_block .recruit_inner a .btn-viewmore__text {
    font-size: 4vw;
  }
}

/* =========================================================
  CORPORATE PROFILE
========================================================= */
.profile {
  padding: clamp(80px, 9vw, 160px) 0;
  background: #e5e5e5;
  color: #444;
}
.profile__inner {
  width: clamp(600px, 65%, 1200px);
  margin: 0 auto;
}
.profile__heading {
  margin-bottom: clamp(60px, 7vw, 110px);
}
.profile__heading h2 {
  margin: 0;
  font-family: serif;
  font-size: clamp(6px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.08em;
}
.profile__heading p {
  margin: 0.3vw 0 0;
  font-size: clamp(6px, 1.1vw, 16px);
  font-weight: 500;
  letter-spacing: 0.08em;
}
.profile__list {
  margin: 0;
}
.profile__row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
}
.profile__row dt,
.profile__row dd {
  position: relative;
  margin: 0;
  padding: 34px 0;
  font-size: clamp(6px, 1.1vw, 16px);
  line-height: 1.9;
  letter-spacing: 0.08em;
}
.profile__row dt::after,
.profile__row dd::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
}
.profile__row dt {
  padding-right: 40px;
  font-weight: 500;
}
.profile__row dt::after {
  background: #a8a8a8;
}
.profile__row dd {
  min-width: 0;
  padding-left: 70px;
}
.profile__row dd::after {
  background: #d6d6d6;
}
.profile__row:first-child dt::before,
.profile__row:first-child dd::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
}
.profile__row:first-child dt::before {
  background: #a8a8a8;
}
.profile__row:first-child dd::before {
  background: #d6d6d6;
}
.profile__row address {
  margin: 0;
  font-style: normal;
}
.profile__map {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  color: #005bbb;
  font-size: clamp(6px, 1.1vw, 16px);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.profile__map img {
  display: block;
  width: 18px;
  height: auto;
  flex-shrink: 0;
}
.profile__map:hover {
  opacity: 0.6;
}
.profile__tel {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 3px;
  color: inherit;
  font-size: clamp(6px, 1.1vw, 16px);
  letter-spacing: 0.18em;
  text-decoration: none;
}
.profile__license {
  display: flex;
  align-items: center;
  gap: 28px;
}
.profile__license img {
  display: block;
  width: 76px;
  height: auto;
}

/* =========================================================
  SP
========================================================= */
@media screen and (max-width: 767px) {
  .profile {
    padding: 80px 0;
  }
  .profile__inner {
    width: calc(100% - 32px);
  }
  .profile__heading {
    margin-bottom: 56px;
  }
  .profile__heading h2 {
    max-width: 300px;
    font-size: 10vw;
    line-height: 1.05;
    letter-spacing: 3.2px;
  }
  .profile__heading p {
    margin-top: 10px;
    font-size: 3.4vw;
  }
  .profile__row {
    grid-template-columns: 100px minmax(0, 1fr);
  }
  .profile__row dt,
  .profile__row dd {
    padding: 17px 0;
    line-height: 1.8;
    letter-spacing: 0.07em;
  }
  .profile__row dt {
    display: flex;
    font-size: 3.2vw;
    align-items: center;
    padding-right: 3.2vw;
  }
  .profile__row dd {
    font-size: 3.8vw;
    padding-left: 12px;
  }
  .profile__row address {
    font-size: 3.8vw;
  }
  .profile__map {
    gap: 6px;
    margin-top: 3px;
    font-size: 3.8vw;
    letter-spacing: 0.15em;
  }
  .profile__map img {
    width: 14px;
  }
  .profile__tel {
    font-size: 3.8vw;
    letter-spacing: 0.13em;
  }
  .profile__license {
    gap: 12px;
  }
  .profile__license img {
    width: 50px;
  }
}
/* =========================================================
  COMPANY DATA
========================================================= */
.company-data {
  color: #fff;
  /*
   * FACTS部分とHISTORY部分は別背景。
   * CLIENTSパネルを境界にまたがせます。
   */
}
.company-data__lower {
  position: relative;
  background: #777;
}

/* =========================================================
  FACTS & FIGURES
========================================================= */
.company-facts {
  padding: clamp(90px, 9vw, 170px) 0 0;
  background: #464646;
}
.company-facts__inner {
  width: clamp(600px, 65%, 1200px);
  margin: 6vw auto;
}
.company-facts__heading {
  margin-bottom: 30px;
}
.company-facts__heading h2 {
  margin: 0;
  font-family: serif;
  font-size: clamp(20px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.06em;
}
.company-facts__heading p {
  margin: 10px 0 0;
  font-size: clamp(6px, 1vw, 14px);
  letter-spacing: 0.1em;
}
.company-facts__lead {
  max-width: 900px;
  margin: 0 0 42px;
  font-size: clamp(6px, 1.1vw, 16px);
  text-align: justify;
  line-height: 2;
  letter-spacing: 0.06em;
}
.company-facts__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.company-facts__card {
  margin: 0;
  overflow: hidden;
  background: #fff;
}
.company-facts__card--main {
  grid-column: 1/-1;
}
.company-facts__card picture,
.company-facts__card img {
  display: block;
  width: 100%;
}
.company-facts__card img {
  height: auto;
}

/* =========================================================
  MAJOR CLIENTS
========================================================= */
.company-clients {
  position: relative;
  z-index: 2;
  /*
   * 上方向へ引き上げて背景色の境界にまたがせる
   */
  margin-top: clamp(-220px, -13vw, -150px);
}
.company-clients__inner {
  position: relative;
  width: clamp(600px, 65%, 1200px);
  margin: 0 auto;
  z-index: 1;
}
.company-clients__panel {
  width: 100%;
  margin: 0 auto;
  padding: clamp(50px, 6vw, 90px);
  background: #fff;
  color: #333;
  text-align: center;
}
.company-clients__panel picture,
.company-clients__panel img {
  display: block;
  width: 100%;
}
.company-clients__panel img {
  height: auto;
}
.company-clients__heading {
  margin-bottom: clamp(35px, 4vw, 60px);
}
.company-clients__heading h2 {
  margin: 0;
  font-family: serif;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
}
.company-clients__heading p {
  margin: 9px 0 0;
  font-size: 11px;
  letter-spacing: 0.12em;
}

/* =========================================================
  HISTORY
========================================================= */
.company-history {
  margin-top: -12vw;
  padding: clamp(40px, 18vw, 400px) 0 clamp(100px, 12vw, 210px);
}
.company-history__inner {
  width: clamp(600px, 65%, 1200px);
  margin: 0 auto;
}
.company-history__heading {
  margin-bottom: clamp(20px, 6vw, 70px);
}
.company-history__heading h2 {
  margin: 0;
  font-family: serif;
  font-size: clamp(20px, 3vw, 40px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
}
.company-history__heading p {
  margin: 10px 0 0;
  font-size: clamp(6px, 1vw, 14px);
  letter-spacing: 0.12em;
}
.company-history__list {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  /*
   * 年表の縦線
   */
}
.company-history__list::before {
  position: absolute;
  top: 9px;
  bottom: -20px;
  left: 114px;
  width: 1px;
  background: rgba(255, 255, 255, 0.45);
  content: "";
}
.company-history__item {
  position: relative;
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 48px;
}
.company-history__item + .company-history__item {
  margin-top: 30px;
}
.company-history__item {
  /*
   * 年表上の丸
   */
}
.company-history__item::before {
  position: absolute;
  top: 7px;
  left: 110px;
  width: 9px;
  height: 9px;
  border: 2px solid #777;
  border-radius: 50%;
  background: #fff;
  content: "";
}
.company-history__item time {
  display: block;
  padding-top: 1px;
  font-family: serif;
  font-size: clamp(6px, 1.2vw, 20px);
  text-align: end;
  line-height: 1.2;
  letter-spacing: 0.08em;
}
.company-history__content {
  min-width: 0;
}
.company-history__content p {
  margin: 0;
  font-size: clamp(6px, 1.1vw, 16px);
  text-align: justify;
  line-height: 1.9;
  letter-spacing: 0.05em;
}
.company-history__content p + p {
  margin-top: 8px;
}

/* =========================================================
  TABLET
========================================================= */
@media screen and (max-width: 1024px) {
  .company-facts__inner,
  .company-clients__inner,
  .company-history__inner {
    width: min(900px, 100% - 48px);
  }
  .company-clients__panel {
    width: 88%;
  }
}
/* =========================================================
  SP
========================================================= */
@media screen and (max-width: 767px) {
  .company-facts {
    padding: 80px 0 150px;
  }
  .company-facts__inner {
    width: calc(100% - 32px);
  }
  .company-facts__heading {
    margin-bottom: 22px;
  }
  .company-facts__heading h2 {
    font-size: 10vw;
  }
  .company-facts__heading p {
    font-size: 3.4vw;
  }
  .company-facts__lead {
    margin-bottom: 28px;
    font-size: 3.6vw;
    line-height: 1.9;
  }
  .company-facts__lead br {
    display: none;
  }
  .company-facts__grid {
    display: block;
  }
  .company-facts__card + .company-facts__card {
    margin-top: 5vw;
  }
  .company-clients {
    margin-top: -105px;
  }
  .company-clients__inner {
    width: calc(100% - 32px);
    margin-top: 14vw;
  }
  .company-clients__panel {
    width: 100%;
    padding: 36px 24px 42px;
  }
  .company-clients__heading {
    margin-bottom: 28px;
  }
  .company-clients__heading h2 {
    font-size: 10vw;
    line-height: 1.3;
  }
  .company-clients__heading p {
    margin-top: 8px;
    font-size: 3.4vw;
  }
  .company-history {
    padding: 80px 0 110px;
  }
  .company-history__inner {
    width: calc(100% - 32px);
  }
  .company-history__heading {
    margin-bottom: 48px;
  }
  .company-history__heading h2 {
    font-size: 10vw;
  }
  .company-history__heading p {
    font-size: 3.4vw;
  }
  .company-history__list::before {
    left: 55px;
  }
  .company-history__item {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 28px;
  }
  .company-history__item + .company-history__item {
    margin-top: 8vw;
  }
  .company-history__item::before {
    top: 5px;
    left: 51px;
    width: 8px;
    height: 8px;
  }
  .company-history__item time {
    font-size: 3.4vw;
  }
  .company-history__content p {
    font-size: 3.4vw;
    line-height: 1.8;
  }
}
/* =========================================================
  MESSAGE
========================================================= */
.message {
  position: relative;
  overflow: hidden;
  color: #444;
  background-color: #e5e5e5;
}
.message__inner {
  position: relative;
  width: 100%;
  min-height: 760px;
  margin: 0 auto;
  padding: clamp(90px, 8vw, 150px) 0;
}
.message__heading {
  position: relative;
  z-index: 2;
  margin-left: 12vw;
  margin-bottom: 58px;
}
.message__heading h2 {
  margin: 0;
  font-family: serif;
  font-size: clamp(20px, 3vw, 40px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.08em;
}
.message__heading p {
  margin: 6px 0 0;
  font-size: clamp(6px, 1.1vw, 16px);
  letter-spacing: 0.1em;
}
.message__visual {
  width: 100%;
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
}
.message__visual picture,
.message__visual img {
  display: block;
  width: 100%;
  height: 100%;
}
.message__visual img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center bottom;
     object-position: center bottom;
}
.message__body {
  position: relative;
  z-index: 2;
  width: min(480px, 48%);
  font-size: clamp(6px, 1.1vw, 16px);
  text-align: justify;
  line-height: 2;
  letter-spacing: 0.08em;
  margin-left: 12vw;
}
.message__body p {
  margin: 0;
}
.message__body p + p {
  margin-top: 26px;
}

/* =========================================================
  TABLET
========================================================= */
@media screen and (max-width: 1024px) {
  .message__inner {
    width: calc(100% - 48px);
  }
  .message__visual {
    right: -120px;
    width: 68vw;
  }
  .message__body {
    width: 52%;
    font-size: 13px;
  }
}
/* =========================================================
  SP
========================================================= */
@media screen and (max-width: 767px) {
  .message__inner {
    width: 90%;
    min-height: auto;
    padding: 72px 0 90px;
  }
  .message__heading {
    margin: 4vw auto 8vw;
  }
  .message__heading h2 {
    font-size: 10vw;
  }
  .message__heading p {
    margin-top: 8px;
    font-size: 3.4vw;
  }
  .message__visual {
    position: static;
    width: min(100%, 320px);
    margin: 0 auto 30px;
  }
  .message__visual picture,
  .message__visual img {
    width: 100%;
    height: auto;
  }
  .message__visual img {
    -o-object-fit: contain;
       object-fit: contain;
  }
  .message__body {
    width: 100%;
    font-size: 3.4vw;
    line-height: 1.9;
    letter-spacing: 0.06em;
    margin: 0 auto;
  }
  .message__body p + p {
    margin-top: 22px;
  }
}
/* パーツ */
.p_view {
  width: clamp(100px, 20%, 300px);
}
.p_view .p_view-btn {
  position: relative;
  display: flex;
  padding: clamp(0.5rem, 1.3vw, 1.7rem) 0;
  align-items: center;
  justify-content: center;
  background-color: #464646;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  transition: background-color 0.3s ease;
}
.p_view .p_view-btn:hover .p_view-btn__arrow {
  transform: translateX(clamp(0px, 0.4vw, 20px)) rotate(45deg);
}
.p_view .p_view-btntext {
  font-family: "Forum", "Times New Roman", serif;
  font-size: clamp(0.4rem, 1.2vw, 1.2rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.12em;
}
.p_view .p_view-btn__arrow {
  position: absolute;
  right: clamp(1rem, 1.7vw, 2rem);
  width: clamp(0.3rem, 0.7vw, 0.8rem);
  height: clamp(0.3rem, 0.7vw, 0.8rem);
  border-top: clamp(0.1rem, 0.15vw, 0.15rem) solid #fff;
  border-right: clamp(0.1rem, 0.15vw, 0.15rem) solid #fff;
  transform: translateX(0%) rotate(45deg);
  transition: transform 0.3s ease;
}
@media screen and (max-width: 500px) {
  .p_view {
    width: 90%;
    margin: 0 auto;
  }
  .p_view .p_view-btn {
    padding: 7vw 0;
  }
  .p_view .p_view-btntext {
    font-size: 5vw;
    letter-spacing: 0.2em;
  }
  .p_view .p_view-btn__arrow {
    right: 8vw;
    width: 2.8vw;
    height: 2.8vw;
    border-top: 0.5vw solid #fff;
    border-right: 0.5vw solid #fff;
  }
}

.works {
  position: relative;
  overflow: hidden;
  padding: 8vw 0;
  margin: 0 auto;
  background-color: #e5e5e5;
}
.works .works_block {
  width: clamp(300px, 65%, 1200px);
  margin: 0 auto;
  color: #464646;
}
.works .works_block .works_read {
  font-size: clamp(0.6rem, 1.1vw, 1.4rem);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  letter-spacing: 0.08em;
  margin-top: clamp(10px, 4vw, 50px);
}
.works .works_block .works_list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.6rem, 1.6vw, 2rem);
  margin-top: clamp(0.6rem, 4vw, 50px);
}
.works .works_block .works_card {
  position: relative;
  display: block;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
}
.works .works_block .works_card__figure {
  position: relative;
  margin: 0;
  aspect-ratio: 1/1;
  overflow: hidden;
  background-color: #ddd;
}
.works .works_block .works_card__figure img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
}
.works .works_block .works_card__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: clamp(1.4rem, 1.5vw, 2.4rem);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.72) 100%);
  opacity: 0;
  transform: translateY(1.2rem);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.works .works_block .works_card__category {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  background-color: #fff;
  color: #646464;
  font-size: clamp(0.4rem, 0.8vw, 14px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
}
.works .works_block .works_card__title {
  display: block;
  margin-top: 0.2rem;
  font-size: clamp(0.6rem, 1vw, 18px);
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
.works .works_block .works_card__arrow {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 3;
  display: none;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
}
.works .works_block .works_card__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 46%;
  width: 0.8rem;
  height: 0.8rem;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}
.works .works_block {
  /* PC hover */
}
@media (hover: hover) and (pointer: fine) {
  .works .works_block .works_card:hover .works_card__figure img {
    transform: scale(1.06);
    filter: brightness(0.78);
  }
  .works .works_block .works_card:hover .works_card__caption {
    opacity: 1;
    transform: translateY(0);
  }
}
.works .works_block .p_view {
  width: clamp(100px, 25%, 450px);
  margin: 6vw auto;
}
.works {
  /* ---------- Mobile ---------- */
}
@media (max-width: 500px) {
  .works {
    padding: 24vw 0;
  }
  .works .works_block {
    width: 100%;
  }
  .works .works_block h2 {
    width: 90%;
    position: relative;
    left: 5%;
  }
  .works .works_block .works_read {
    width: 90%;
    margin: 10vw auto;
    font-size: 3.6vw;
    text-align: justify;
    line-height: 2;
  }
  .works .works_block .works_read br {
    display: none;
  }
  .works .works_block .works_list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    margin-top: 14vw;
  }
  .works .works_block .works_card__figure img {
    filter: brightness(0.78);
  }
  .works .works_block .works_card__caption {
    opacity: 1;
    transform: translateY(0);
    padding: 3.4vw 3vw;
  }
  .works .works_block .works_card__category {
    padding: 0.35rem 0.8rem;
    font-size: 2vw;
  }
  .works .works_block .works_card__title {
    margin-top: 0.1rem;
    font-size: 2.5vw;
    text-align: justify;
    line-height: 1.45;
  }
  .works .works_block .works_card__arrow {
    display: none;
  }
  .works .works_block .p_view {
    width: 80%;
    margin: 16vw auto;
  }
}

h2 {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}
h2 .block-title__en {
  display: inline-block;
  font-size: clamp(0.3rem, 3.8vw, 4.8rem);
  font-family: "Forum", "Times New Roman", serif;
}
h2 .block-title__ja {
  display: inline-block;
  font-size: clamp(0.5rem, 1.2vw, 1.4rem);
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
}
@media screen and (max-width: 500px) {
  h2 .block-title__en {
    font-size: 10vw;
  }
  h2 .block-title__ja {
    font-size: 2.8vw;
    padding-top: 2vw;
  }
}

.fixed-contact-banner {
  position: fixed;
  right: 0;
  bottom: clamp(1.6rem, 2vw, 3.2rem);
  z-index: 800;
  display: block;
  width: clamp(8rem, 18vw, 25rem);
  opacity: 0;
  visibility: hidden;
  transform: translateX(2.4rem);
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.5s ease, transform 0.5s ease;
}
.fixed-contact-banner picture,
.fixed-contact-banner img {
  display: block;
  width: 100%;
  height: auto;
}
.fixed-contact-banner img {
  transition: transform 0.5s ease, filter 0.5s ease;
}
.fixed-contact-banner.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}
@media (hover: hover) and (pointer: fine) {
  .fixed-contact-banner :hover img {
    transform: translateY(-0.5rem);
    filter: brightness(1.05);
  }
}
.fixed-contact-banner {
  /* ---------- Mobile ---------- */
}
@media (max-width: 500px) {
  .fixed-contact-banner {
    right: 25%;
    bottom: 4vw;
    width: 50%;
    transform: translateX(calc(50% + 2.4rem));
  }
  .fixed-contact-banner.is-show {
    transform: translateX(50%);
  }
}

#page-fv {
  margin-top: -8vw;
  background-color: #e5e5e5;
}
#page-fv strong {
  position: relative;
  top: -15vw;
  right: -15vw;
  font-size: clamp(0.3rem, 3.8vw, 38px);
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
  font-weight: 600;
  line-height: 1.35;
  color: #fff;
}
#page-fv h1, #page-fv p {
  position: relative;
  top: 55%;
  left: max(8vw, (100% - 1200px) / 2);
  font-size: clamp(0.3rem, 1vw, 1.5rem);
  font-weight: 400;
  color: #fff;
}
@media (max-width: 500px) {
  #page-fv {
    margin-top: -14vw;
  }
  #page-fv strong {
    top: -95vw;
    display: block;
    text-align: center;
    right: auto;
    font-size: 8vw;
    line-height: 1.8;
  }
  #page-fv h1 {
    position: relative;
    top: 55%;
    left: max(6vw, (100% - 678px) / 2);
    margin: 0 auto;
    text-align: justify;
    font-size: 2.6vw;
    font-weight: 400;
    color: #fff;
  }
}

.business, .creative, .dx {
  background-color: #e5e5e5;
}
.business__contents, .creative__contents, .dx__contents {
  width: clamp(300px, 65%, 1200px);
  padding-bottom: 10vw;
  margin: 0 auto;
}
.business__subtitle, .creative__subtitle, .dx__subtitle {
  font-size: clamp(0.6rem, 2vw, 2.5rem);
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
  margin-top: 3vw;
  margin-bottom: 1.2vw;
}
.business__list, .creative__list, .dx__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2vw 1.2vw;
  padding: 0;
  margin: 0;
  list-style: none;
}
.business__list .business-card, .creative__list .business-card, .dx__list .business-card {
  height: 100%;
  background-color: #fff;
}
.business__list .business-card__link, .creative__list .business-card__link, .dx__list .business-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.business__list .business-card__link:hover, .creative__list .business-card__link:hover, .dx__list .business-card__link:hover {
  opacity: 0.8;
}
.business__list .business-card__link:hover .business-card__arrow::before, .creative__list .business-card__link:hover .business-card__arrow::before, .dx__list .business-card__link:hover .business-card__arrow::before {
  transform: translate(-25%, -50%) rotate(45deg);
}
.business__list .business-card__figure, .creative__list .business-card__figure, .dx__list .business-card__figure {
  aspect-ratio: 1/1;
  margin: 0;
  overflow: hidden;
}
.business__list .business-card__figure img, .creative__list .business-card__figure img, .dx__list .business-card__figure img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.business__list .business-card__body, .creative__list .business-card__body, .dx__list .business-card__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 14px 12px;
  min-height: 88px;
}
.business__list .business-card__text, .creative__list .business-card__text, .dx__list .business-card__text {
  min-width: 0;
}
.business__list .business-card__title, .creative__list .business-card__title, .dx__list .business-card__title {
  margin: 0;
  color: #646464;
  font-size: clamp(6px, 1.4vw, 24px);
  font-weight: 500;
  letter-spacing: 0.03em;
}
.business__list .business-card__label, .creative__list .business-card__label, .dx__list .business-card__label {
  font-size: clamp(4px, 0.9vw, 10px);
  color: #646464;
}
.business__list .business-card__arrow, .creative__list .business-card__arrow, .dx__list .business-card__arrow {
  position: relative;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #005bac;
}
.business__list .business-card__arrow::before, .creative__list .business-card__arrow::before, .dx__list .business-card__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(-55%, -50%) rotate(45deg);
  transition: transform 0.3s ease;
}
@media screen and (max-width: 900px) {
  .business__list, .creative__list, .dx__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media screen and (max-width: 500px) {
  .business, .creative, .dx {
    padding: 56px 16px;
  }
  .business__list, .creative__list, .dx__list {
    grid-template-columns: 1fr;
  }
  .business__contents, .creative__contents, .dx__contents {
    width: 92%;
  }
  .business__subtitle, .creative__subtitle, .dx__subtitle {
    font-size: 4vw;
    text-align: center;
    margin-bottom: 2vw;
  }
  .business .business__list .business-card__link, .creative .business__list .business-card__link, .dx .business__list .business-card__link {
    flex-direction: unset;
  }
  .business .business__list .business-card__figure, .creative .business__list .business-card__figure, .dx .business__list .business-card__figure {
    width: 60%;
  }
  .business .business__list .business-card__body, .creative .business__list .business-card__body, .dx .business__list .business-card__body {
    flex-direction: column;
    align-items: flex-start;
    width: 40%;
    padding: 10px 12px;
  }
  .business .business__list .business-card__title, .creative .business__list .business-card__title, .dx .business__list .business-card__title {
    font-size: 5vw;
    line-height: 1.3;
  }
  .business .business__list .business-card__label, .creative .business__list .business-card__label, .dx .business__list .business-card__label {
    font-size: 2.4vw;
  }
  .business .business__list .business-card__arrow, .creative .business__list .business-card__arrow, .dx .business__list .business-card__arrow {
    width: 42px;
    height: 42px;
    top: -10%;
    right: -60%;
  }
}

.business_read {
  display: flex;
  flex-direction: column;
  width: clamp(300px, 65%, 1400px);
  padding: 6vw 0 4vw;
  margin: 0 auto;
}
.business_read strong {
  font-size: clamp(0.6rem, 2.5vw, 28px);
  letter-spacing: 0.12em;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
  color: #464646;
}
.business_read h2 {
  margin: 0 0 24px;
  font-size: clamp(0.6rem, 1.6vw, 16px);
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
}
.business_read p {
  font-size: clamp(0.3rem, 1.1vw, 1.2rem);
  line-height: 2;
  font-weight: 500;
  text-align: justify;
  margin-top: 1vw;
}
@media (max-width: 500px) {
  .business_read {
    width: 92%;
    padding: 10vw 0 16vw;
  }
  .business_read strong {
    font-size: 7vw;
  }
  .business_read h2 {
    margin: 0 0 24px;
    font-size: 3.6vw;
  }
  .business_read p {
    font-size: 3.2vw;
  }
}

.event-read {
  background-color: #e5e5e5;
  padding: clamp(6rem, 8vw, 10rem) 0;
  color: #3f3f3f;
}
.event-read__link-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: clamp(6rem, 7vw, 9rem);
}
.event-read__link-wrap::before, .event-read__link-wrap::after {
  content: "";
  display: block;
  width: min(18vw, 280px);
  height: 1px;
  background-color: #777;
}
.event-read__link {
  color: #3f3f3f;
  font-size: clamp(0.6rem, 1.1vw, 1.3rem);
  line-height: 1.6;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-decoration: none;
}
@media screen and (max-width: 500px) {
  .event-read {
    padding: 5rem 0;
  }
  .event-read br {
    display: none;
  }
  .event-read__link-wrap {
    display: block;
    margin: 5vw auto 0;
    text-align: center;
  }
  .event-read__link-wrap::before, .event-read__link-wrap::after {
    content: none;
  }
  .event-read__link {
    display: inline-block;
    font-size: 4vw;
    line-height: 1.8;
    letter-spacing: 0.12em;
  }
}

#promotion_read .block-title__ja {
  font-size: clamp(0.3rem, 3.8vw, 35px);
}
@media screen and (max-width: 500px) {
  #promotion_read .block-title__ja {
    font-size: 7vw;
  }
  #promotion_read .works_list {
    margin-top: 2vw;
  }
}

#promotion_p {
  padding: 8vw 0 8vw;
}
#promotion_p .point__title .small {
  font-size: 1.6vw;
}
@media screen and (max-width: 500px) {
  #promotion_p {
    padding: 28vw 0;
  }
  #promotion_p .point__title .point__title-small {
    font-size: 5.8vw;
  }
  #promotion_p .point__title .point__title-main {
    font-size: 10vw;
    margin-top: 0.5vw;
  }
  #promotion_p .point__title .point__title-main .small {
    font-size: 5.8vw;
  }
}

#promotion_f {
  padding-bottom: 24vw;
}
#promotion_f .business_read {
  width: clamp(300px, 65%, 1200px);
  color: #fff;
  padding-bottom: 2vw;
}
#promotion_f .business_read strong {
  color: #fff;
}
#promotion_f picture {
  position: relative;
  top: 0;
}
@media screen and (max-width: 500px) {
  #promotion_f {
    padding: 10vw 0 20vw;
  }
  #promotion_f .business_read {
    width: 85%;
    padding-bottom: 5vw;
  }
  #promotion_f .business_read picture {
    width: 90%;
    margin: 0 auto;
  }
  #promotion_f .business_read picture img {
    aspect-ratio: auto;
  }
}

#faq_p {
  margin-top: -12vw;
}
@media screen and (max-width: 500px) {
  #faq_p {
    margin-top: 0;
  }
}

.cta-block {
  width: clamp(300px, 70%, 1300px);
  margin: 10vw auto 6vw;
  background-image: linear-gradient(90deg, #2554c1, #163284 92%);
  border-radius: clamp(0.6vw, 0.8vw, 0.8rem);
}
.cta-block__box {
  display: flex;
  gap: 1vw;
  padding: 2.5vw 1vw 2vw;
  margin: 0 auto;
  align-items: center;
  color: #fff;
}
.cta-block__box .cta-block__inner {
  display: flex;
}
.cta-block__box .cta-block__inner img {
  width: clamp(10px, 16%, 130px);
  margin-top: clamp(4px, 0.6vw, 7px);
  margin-left: 3vw;
  margin-right: 1vw;
  align-self: flex-start;
}
.cta-block__box .cta-block__inner strong {
  display: inline-block;
  font-size: clamp(0.6rem, 2.5vw, 2.5rem);
  line-height: 1;
  padding: 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  font-weight: 400;
}
.cta-block__box .cta-block__inner p {
  margin: 0 0 24px;
  font-size: clamp(0.6rem, 1.3vw, 1.6rem);
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
  letter-spacing: 0.2em;
  padding: 0;
  line-height: 0.9;
}
.cta-block__box .p_view {
  width: clamp(100px, 30%, 450px);
  margin-left: auto;
  margin-right: 3vw;
  background-color: #fff;
}
.cta-block__box .p_view .p_view-btn {
  background-color: #fff;
  color: #003b94;
}
.cta-block__box .p_view .p_view-btn .p_view-btn__arrow {
  border-top: clamp(0.1rem, 0.15vw, 0.15rem) solid #003b94;
  border-right: clamp(0.1rem, 0.15vw, 0.15rem) solid #003b94;
}
@media screen and (max-width: 500px) {
  .cta-block {
    width: 100%;
    margin: 18vw auto 0;
    border-radius: 0;
  }
  .cta-block__box {
    display: flex;
    flex-direction: column;
    padding: 22vw 1vw;
    margin: 0 auto;
  }
  .cta-block__box .cta-block__inner {
    display: flex;
    margin-left: -5vw;
    margin-bottom: 3vw;
  }
  .cta-block__box .cta-block__inner img {
    width: 22%;
    margin: 0 auto;
    align-self: center;
  }
  .cta-block__box .cta-block__inner strong {
    display: inline-block;
    font-size: 8vw;
    letter-spacing: 5px;
  }
  .cta-block__box .cta-block__inner p {
    margin: 0 0 24px;
    font-size: 3vw;
  }
  .cta-block__box .p_view {
    width: 80%;
    margin: 0 auto;
  }
}

/* =========================================================
  WORKS SINGLE
========================================================= */
/* =========================================================
  FV
========================================================= */
#page-fv {
  position: relative;
  width: 100%;
  height: clamp(320px, 31.25vw, 600px);
  overflow: hidden;
  color: #fff;
}
#page-fv picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}
#page-fv picture::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(0, 0, 0, 0.48);
}
#page-fv img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#page-fv strong,
#page-fv > p {
  position: absolute;
  z-index: 1;
  left: max(8vw, (100% - 1200px) / 2);
  margin: 0;
}
#page-fv strong {
  top: 48%;
  font-family: serif;
  font-size: clamp(40px, 4.2vw, 80px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
  transform: translateY(-50%);
}

/* =========================================================
  MAIN
========================================================= */
.main {
  padding-bottom: 120px;
  background: #e9e9e9;
}

.page-title {
  display: none;
}

.inner {
  width: min(1200px, 100% - 80px);
  margin-inline: auto;
}
.inner.is-small {
  max-width: 1200px;
}

/* =========================================================
  BREADCRUMB
========================================================= */
.c-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 0;
  padding: 28px 0 38px;
  list-style: none;
  color: #666;
  font-size: 12px;
}
.c-breadcrumbs li {
  display: flex;
  align-items: center;
}
.c-breadcrumbs li:not(:last-child)::after {
  margin-left: 8px;
  content: ">";
  color: #aaa;
}
.c-breadcrumbs a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.c-breadcrumbs a:hover {
  opacity: 0.6;
}

/* =========================================================
  CONTENT LAYOUT
========================================================= */
.news-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 840px) 280px;
  gap: 24px;
  align-items: start;
}

.main-content {
  min-width: 0;
}
.main-content.post .box-white {
  padding: clamp(32px, 4vw, 64px);
  background: #fff;
}

/* =========================================================
  POST HEADER
========================================================= */
.cat-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  list-style: none;
}
.cat-list li {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 12px;
  background: #646464;
  color: #fff;
  font-size: clamp(6px, 1vw, 14px);
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.post-header {
  margin-bottom: 4px;
}
.post-header time {
  display: inline-block;
  color: #777;
  font-size: clamp(6px, 1vw, 14px);
  letter-spacing: 0.06em;
}

.post-title {
  margin: 0 0 28px;
  color: #464646;
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.04em;
}

/* =========================================================
  POST CONTENT
========================================================= */
.post-wrapper {
  color: #464646;
  font-size: 15px;
  line-height: 2;
}
.post-wrapper .eyecatch {
  margin: 0 0 32px;
}
.post-wrapper .eyecatch img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
.post-wrapper h2 {
  margin: 4vw 0 0.2vw;
  font-family: serif;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.06em;
}
.post-wrapper h3 {
  margin: 42px 0 18px;
  font-size: 20px;
  line-height: 1.6;
}
.post-wrapper p {
  margin: 0 0 24px;
}
.post-wrapper ul,
.post-wrapper ol {
  margin: 24px 0;
  padding-left: 1.5em;
}
.post-wrapper li {
  margin-bottom: 8px;
}
.post-wrapper figure {
  margin: 1.5vw 0;
}
.post-wrapper figure img {
  display: block;
  max-width: 100%;
  height: auto;
}
.post-wrapper a {
  color: #0648aa;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.post-wrapper blockquote {
  margin: 40px 0;
  padding: 24px 30px;
  border-left: 4px solid #0648aa;
  background: #f5f5f5;
}
.post-wrapper .wp-block-gallery,
.post-wrapper .wp-block-columns {
  gap: 12px;
}
.post-wrapper .wp-block-gallery {
  margin: 36px 0;
}
.post-wrapper .wp-block-gallery img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

/* =========================================================
  ARTICLE CTA
========================================================= */
.post-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 56px;
  padding: 26px 32px;
  background: #0648aa;
  color: #fff;
}
.post-contact p {
  margin: 0;
  font-size: 18px;
  letter-spacing: 0.08em;
}
.post-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(230px, 100%);
  min-height: 58px;
  background: #fff;
  color: #464646;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.post-contact a::after {
  margin-left: auto;
  padding-right: 18px;
  content: "›";
  font-size: 20px;
}
.post-contact a:hover {
  background: #3f3f3f;
  color: #fff;
}

/* =========================================================
  PREV / NEXT
========================================================= */
.page-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  margin: 70px 0 0;
  padding: 0;
  list-style: none;
}
.page-nav li {
  min-width: 0;
}
.page-nav li:first-child {
  justify-self: start;
}
.page-nav li:nth-child(2) {
  justify-self: center;
}
.page-nav li:last-child {
  justify-self: end;
  text-align: right;
}
.page-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #464646;
  font-size: 13px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.page-nav a:hover {
  opacity: 0.55;
}
.page-nav li:first-child a {
  padding-left: 34px;
}
.page-nav li:first-child a::before {
  position: absolute;
  left: 0;
  display: grid;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #eee;
  content: "←";
  place-items: center;
}
.page-nav li:last-child a {
  padding-right: 34px;
}
.page-nav li:last-child a::after {
  position: absolute;
  right: 0;
  display: grid;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #eee;
  content: "→";
  place-items: center;
}
.page-nav .to-archive {
  padding: 0;
}

/* =========================================================
  SIDEBAR
========================================================= */
.sidebar .box-white {
  overflow: hidden;
  background: #3f3f3f;
  color: #fff;
}
.sidebar .item {
  padding: 28px 24px;
}
.sidebar .item + .item {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}
.sidebar .news-title {
  font-family: serif;
  color: #fff;
  font-size: clamp(0.4rem, 2vw, 30px);
  font-weight: 400;
  letter-spacing: 0.05em;
}
.sidebar .news-title::after {
  content: "カテゴリー";
  font-family: sans-serif;
  font-size: clamp(0.4rem, 0.9vw, 14px);
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-top: 0.3vw;
}
.sidebar .item:first-child .news-title::after {
  content: "アーカイブ";
}
.sidebar .sidebar-category-group__title {
  font-size: clamp(0.4rem, 1vw, 15px);
  font-weight: 600;
  margin-top: 1.5vw;
  margin-bottom: 0.6vw;
}
.sidebar .sidebar-category-group__title a {
  color: #fff;
  text-decoration: none;
}

.sidebar-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.sidebar-list li {
  position: relative;
  padding-left: 12px;
  font-size: 13px;
  line-height: 1.7;
}
.sidebar-list li::before {
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 4px;
  height: 1px;
  background: #fff;
  content: "";
}
.sidebar-list li + li {
  margin: 0.6vw 0;
}
.sidebar-list a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.sidebar-list a:hover {
  opacity: 0.55;
}
.sidebar-list .children {
  margin: 8px 0 0;
  padding-left: 10px;
  list-style: none;
}

/* =========================================================
  SIDEBAR CONTACT
========================================================= */
.sidebar-contact {
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  text-align: center;
}
.sidebar-contact p {
  margin: 0 0 16px;
  color: #fff;
  font-family: serif;
  font-size: 18px;
}
.sidebar-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 10px 20px;
  background: #fff;
  color: #464646;
  font-size: 14px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.sidebar-contact a::after {
  margin-left: auto;
  content: "›";
  font-size: 18px;
}
.sidebar-contact a:hover {
  background: #0648aa;
  color: #fff;
}

/* =========================================================
  LATEST WORKS
========================================================= */
.latest-works {
  margin-top: 40px;
  padding: clamp(30px, 4vw, 56px);
  background: #fff;
}
.latest-works > h2 {
  margin: 0 0 30px;
  color: #464646;
  font-family: serif;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
.latest-works__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.latest-works__card {
  position: relative;
  display: block;
  min-width: 0;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
}
.latest-works__card figure {
  position: relative;
  margin: 0;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #d5d5d5;
}
.latest-works__card figure::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.46) 35%, rgba(0, 0, 0, 0) 68%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.latest-works__card img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease, filter 0.35s ease;
}
.latest-works__card figcaption {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.latest-works__card:hover figure::after {
  opacity: 1;
}
.latest-works__card:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}
.latest-works__card:hover img {
  transform: scale(1.05);
}
.latest-works__card:focus-visible {
  outline: 2px solid #0648aa;
  outline-offset: 3px;
}
.latest-works__card:focus-visible figure::after {
  opacity: 1;
}
.latest-works__card:focus-visible figcaption {
  opacity: 1;
  transform: translateY(0);
}
.latest-works__category {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 3px 9px;
  background: #fff;
  color: #464646;
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
.latest-works__title {
  display: -webkit-box;
  overflow: hidden;
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0.03em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.latest-works__arrow {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-bottom: 36px solid #3f3f3f;
  border-left: 36px solid transparent;
  pointer-events: none;
}
.latest-works__arrow::after {
  position: absolute;
  top: 21px;
  right: 6px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  content: "";
  transform: rotate(45deg);
}
.latest-works .p_view {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}
.latest-works .p_view-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 230px;
  min-height: 56px;
  padding: 12px 24px;
  background: #3f3f3f;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.latest-works .p_view-btn:hover {
  background: #0648aa;
}
.latest-works .p_view-btntext {
  font-size: 12px;
  letter-spacing: 0.18em;
}
.latest-works .p_view-btn__arrow {
  position: relative;
  width: 20px;
  height: 1px;
  margin-left: 28px;
  background: #fff;
}
.latest-works .p_view-btn__arrow::after {
  position: absolute;
  top: -3px;
  right: 0;
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  content: "";
  transform: rotate(45deg);
}

/* =========================================================
  TABLET
========================================================= */
@media screen and (max-width: 1024px) {
  .inner {
    width: min(100% - 48px, 900px);
  }
  .news-wrapper {
    grid-template-columns: minmax(0, 1fr) 240px;
    gap: 20px;
  }
  .main-content.post .box-white {
    padding: 36px;
  }
  .latest-works {
    padding: 36px;
  }
  .latest-works__list {
    gap: 6px;
  }
  .latest-works__title {
    font-size: 11px;
  }
}
/* =========================================================
  SP
========================================================= */
@media screen and (max-width: 767px) {
  #page-fv strong,
  #page-fv > p {
    left: 24px;
  }
  #page-fv strong {
    top: 48%;
    font-size: 8vw;
  }
  #page-fv > p {
    top: 55%;
    font-size: 3.4vw;
  }
  .main {
    padding-bottom: 70px;
  }
  .inner {
    width: calc(100% - 32px);
  }
  .c-breadcrumbs {
    padding: 18px 0 26px;
    font-size: 10px;
  }
  .news-wrapper {
    display: block;
  }
  .main-content.post .box-white {
    padding: 24px 20px 30px;
  }
  .cat-list {
    margin-bottom: 6px;
  }
  .cat-list li {
    min-height: 21px;
    padding: 3px 9px;
    font-size: 10px;
  }
  .post-header time {
    font-size: 10px;
  }
  .post-title {
    margin-bottom: 20px;
    font-size: 21px;
    line-height: 1.6;
  }
  .post-wrapper {
    font-size: 14px;
    line-height: 1.9;
  }
  .post-wrapper .eyecatch {
    margin-bottom: 24px;
  }
  .post-wrapper h2 {
    margin: 6vw 0 0.4vw;
    font-size: 20px;
  }
  .post-wrapper h3 {
    margin: 34px 0 16px;
    font-size: 18px;
  }
  .post-wrapper p {
    margin-bottom: 20px;
  }
  .post-wrapper .wp-block-gallery {
    grid-template-columns: 1fr !important;
  }
  .post-wrapper figure {
    margin: 3vw 0;
  }
  .post-contact {
    display: block;
    margin-top: 40px;
    padding: 22px 20px;
  }
  .post-contact p {
    margin-bottom: 16px;
    font-size: 16px;
    text-align: center;
  }
  .post-contact a {
    width: 100%;
  }
  .page-nav {
    grid-template-columns: 1fr 1fr;
    gap: 20px 10px;
    margin-top: 46px;
  }
  .page-nav li:first-child {
    justify-self: start;
  }
  .page-nav li:nth-child(2) {
    grid-column: 1/-1;
    grid-row: 2;
    justify-self: center;
  }
  .page-nav li:last-child {
    justify-self: end;
  }
  .page-nav a {
    font-size: 11px;
  }
  .sidebar {
    position: static;
    margin-top: 32px;
  }
  .sidebar .item {
    padding: 9vw 8vw;
  }
  .sidebar .news-title {
    font-size: 8vw;
  }
  .sidebar .news-title::after {
    font-size: 3vw;
    margin-top: 0.6vw;
  }
  .sidebar .sidebar-category-group__title {
    font-size: 3.8vw;
    font-weight: 400;
    margin: 8vw 0 1vw;
  }
  .sidebar .sidebar-category-group__title a {
    color: #fff;
    text-decoration: none;
  }
  .sidebar-list li {
    font-size: 3.3vw;
  }
  .sidebar-list li + li {
    margin: 2.5vw 0;
  }
  .latest-works {
    margin-top: 28px;
    padding: 24px 18px 28px;
  }
  .latest-works > h2 {
    margin-bottom: 20px;
    font-size: 20px;
  }
  .latest-works__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3px;
  }
  .latest-works__card figure::after {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.35) 48%, rgba(0, 0, 0, 0) 72%);
    opacity: 1;
  }
  .latest-works__card figcaption {
    right: 6px;
    bottom: 7px;
    left: 6px;
    gap: 3px;
    opacity: 1;
    transform: none;
  }
  .latest-works__card:hover img {
    transform: none;
  }
  .latest-works__category {
    min-height: 15px;
    padding: 2px 5px;
    font-size: 2vw;
    line-height: 1.3;
  }
  .latest-works__title {
    font-size: 2.8vw;
    line-height: 1.4;
    -webkit-line-clamp: 2;
  }
  .latest-works__arrow {
    border-bottom-width: 22px;
    border-left-width: 22px;
  }
  .latest-works__arrow::after {
    top: 12px;
    right: 3px;
    width: 4px;
    height: 4px;
  }
  .latest-works .p_view {
    margin-top: 24px;
  }
  .latest-works .p_view-btn {
    width: 100%;
    min-width: 0;
    min-height: 48px;
  }
  .latest-works .p_view-btntext {
    font-size: 10px;
  }
}
/* =========================================================
  WORKS CATEGORY ARCHIVE
========================================================= */
.works-archive {
  padding: clamp(32px, 4vw, 56px);
  background: #fff;
}
.works-archive__header {
  margin-bottom: 36px;
}
.works-archive__title {
  margin: 0;
  color: #464646;
  font-family: serif;
  font-size: clamp(26px, 2.5vw, 40px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
.works-archive__lead {
  font-size: clamp(6px, 1.1vw, 16px);
  text-align: justify;
  margin: 0.5vw 0;
}
.works-archive__description {
  margin-top: 16px;
  color: #666;
  font-size: 14px;
  line-height: 1.8;
}
.works-archive__description p {
  margin: 0;
}
.works-archive__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.works-archive__empty {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
}

/*
記事ページ下部の.latest-works__listを流用し、
カテゴリー一覧では常に3列にする
*/
.works-archive__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.works-archive__list .latest-works__item {
  min-width: 0;
}
.works-archive__list .latest-works__card {
  height: 100%;
}
.works-archive__list .latest-works__card figure {
  height: 100%;
}
.works-archive__list .latest-works__card figure::after {
  opacity: 1;
}
.works-archive__list .latest-works__card figcaption {
  opacity: 1;
  transform: none;
}

/* =========================================================
  PAGINATION
========================================================= */
.works-pagination {
  margin-top: 48px;
}
.works-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.works-pagination .page-numbers {
  display: grid;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border: 1px solid #d9d9d9;
  background: #fff;
  color: #464646;
  font-size: 12px;
  text-decoration: none;
  transition: border-color 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  place-items: center;
}
.works-pagination .page-numbers:hover, .works-pagination .page-numbers.current {
  border-color: #3f3f3f;
  background: #3f3f3f;
  color: #fff;
}
.works-pagination .page-numbers.dots {
  border-color: transparent;
  background: transparent;
  color: #464646;
}

/* =========================================================
  WORKS CATEGORY ARCHIVE SP
========================================================= */
@media screen and (max-width: 767px) {
  .works-archive {
    padding: 24px 18px 30px;
  }
  .works-archive__header {
    margin-bottom: 24px;
  }
  .works-archive__title {
    font-size: 24px;
  }
  .works-archive__lead {
    font-size: 2.8vw;
    margin: 1vw 0;
  }
  .works-archive__description {
    margin-top: 12px;
    font-size: 13px;
  }
  .works-archive__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
  }
  .works-pagination {
    margin-top: 32px;
  }
  .works-pagination .page-numbers {
    min-width: 34px;
    height: 34px;
    padding: 0 8px;
    font-size: 11px;
  }
}
/* footer */
footer {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  text-align: center;
}
footer .f_block {
  width: 100%;
  padding: 7vw 0;
  margin: 0 auto;
  color: #464646;
  background: url(../img/top_contact_image_pc.webp);
  background-repeat: no-repeat;
  background-size: cover;
}
footer .f_block h2 {
  align-items: center;
}
footer .f_block-contents {
  width: clamp(300px, 70%, 1400px);
  display: flex;
  justify-content: center;
  margin: 0 auto;
}
footer .f_block-contents .f_contents-parts {
  width: 30%;
  padding-top: 16vw;
  margin: 0 2vw;
}
footer .f_menu {
  padding: clamp(5rem, 6vw, 8rem) 0 0;
  background-color: #646464;
  color: #fff;
}
footer .f_menu a {
  color: inherit;
  text-decoration: none;
}
footer .f_menu__inner {
  width: clamp(300px, 85%, 1600px);
  padding-bottom: 4vw;
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(20rem, 0.9fr) minmax(0, 2fr);
  gap: clamp(0.5rem, 2vw, 2rem);
  align-items: start;
}
footer .f_menu__company {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
footer .f_menu__logo {
  display: block;
  width: clamp(6rem, 50%, 50rem);
  line-height: 0;
}
footer .f_menu__logo img {
  display: block;
  width: 100%;
  height: auto;
}
footer .f_menu__info {
  margin-top: clamp(2rem, 2vw, 3rem);
  font-size: clamp(0.6rem, 1vw, 1.1rem);
  text-align: justify;
  line-height: 1.7;
  letter-spacing: 0.04em;
}
footer .f_menu__info p {
  margin: 0;
}
footer .f_menu__info a {
  display: inline-block;
  margin-top: 0.8rem;
  transition: opacity 0.3s ease;
}
footer .f_menu__info a:hover {
  opacity: 0.7;
}
footer .f_menu__company-name {
  font-weight: 600;
}
footer .f_menu__sns {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 1.4vw, 2rem);
  margin: clamp(3rem, 3vw, 4rem) 0 0;
  padding: 0;
  list-style: none;
}
footer .f_menu__sns a {
  display: block;
  line-height: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
footer .f_menu__sns a:hover {
  opacity: 0.75;
  transform: translateY(-0.2rem);
}
footer .f_menu__sns img {
  display: block;
  width: clamp(2rem, 2vw, 3rem);
  height: auto;
}
footer .f_menu__nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.2rem, 2vw, 2rem);
}
footer .f_menu__nav-column {
  display: flex;
  flex-direction: column;
  text-align: justify;
  gap: clamp(3rem, 4vw, 5rem);
}
footer .f_menu__nav-group ul {
  margin: clamp(0.2rem, 0.5vw, 0.7rem) 0 0;
  padding: 0;
  list-style: none;
}
footer .f_menu__nav-group li {
  line-height: 1.4;
}
footer .f_menu__nav-group li a {
  font-size: clamp(0.6rem, 1vw, 1rem);
  line-height: 1;
  letter-spacing: 0.04em;
  transition: color 0.3s ease, opacity 0.3s ease;
}
footer .f_menu__nav-group li a:hover {
  opacity: 0.7;
}
footer .f_menu__nav-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: clamp(0.8rem, 0.8vw, 1.2rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", "MS Mincho", serif;
  font-size: clamp(0.7rem, 1vw, 1.2rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.08em;
  transition: opacity 0.3s ease;
}
footer .f_menu__nav-title:hover {
  opacity: 0.75;
}
footer .f_menu__nav-title span {
  position: relative;
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}
footer .f_menu__privacy-mark {
  margin-top: auto;
  align-self: flex-end;
  width: clamp(3.8rem, 4vw, 6rem);
}
footer .f_menu__privacy-mark img {
  display: block;
  width: 100%;
  height: auto;
}
footer .f_menu__copy {
  padding: 0.3vw 0 1.2vw;
  margin: 0 auto;
  background-color: #464646;
  letter-spacing: 0.04em;
  text-align: center;
  line-height: 1;
}
footer .f_menu__copy small {
  font-size: clamp(0.6rem, 0.85vw, 0.9rem);
}
@media (max-width: 500px) {
  footer .f_block {
    width: 100%;
    height: 140vw;
    padding: 16vw 0;
    margin: 0 auto;
    background-image: url("../img/top_contact_image_sp.webp");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
  }
  footer .f_block-contents {
    width: 75%;
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    margin: 4vw auto 0;
  }
  footer .f_block-contents .f_contents-parts {
    width: 75%;
    padding: 0;
    margin: 3.5vw auto;
  }
  footer .f_menu {
    padding: 18vw 0 0;
  }
  footer .f_menu__inner {
    width: 90%;
    display: block;
    padding-bottom: 0;
  }
  footer .f_menu__company {
    align-items: center;
    text-align: center;
  }
  footer .f_menu__logo {
    width: 40vw;
    max-width: 18rem;
  }
  footer .f_menu__info {
    margin-top: 6vw;
    font-size: 3.1vw;
    line-height: 1.8;
    text-align: center;
  }
  footer .f_menu__sns {
    justify-content: center;
    gap: 5vw;
    margin-top: 8vw;
  }
  footer .f_menu__sns img {
    width: 8vw;
    max-width: 3.2rem;
  }
  footer .f_menu__nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 2fr));
    gap: 8vw 7vw;
    margin-top: 20vw;
  }
  footer .f_menu__nav-column {
    gap: 8vw;
  }
  footer .f_menu__nav-group .f_menu__nav-title {
    justify-content: left;
  }
  footer .f_menu__nav-group .f_menu__nav-title ul {
    margin-top: 3vw;
  }
  footer .f_menu__nav-group .f_menu__nav-title li {
    margin-top: 2.4vw;
  }
  footer .f_menu__nav-group .f_menu__nav-title li a {
    font-size: 3vw;
    line-height: 1.5;
  }
  footer .f_menu__nav-title {
    padding-bottom: 2.4vw;
    font-size: 3.6vw;
  }
  footer .f_menu__privacy-mark {
    position: relative;
    left: 100%;
    width: 14vw;
    max-width: 6rem;
    margin-top: 4vw;
    margin-left: 0;
  }
  footer .f_menu__copy {
    padding: 2vw 0;
    margin-top: 8vw;
    font-size: 2.6vw;
    line-height: 1.6;
  }
}

footer#creative-footer {
  background: #fff;
  color: #111;
}
footer#creative-footer .creative-footer__inner {
  width: 100%;
  margin: auto;
  padding: 6vw 0 2vw;
  background-color: #f4f4f4;
}
footer#creative-footer .creative-footer__main {
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer#creative-footer .creative-footer__title {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
}
footer#creative-footer .creative-footer__sub {
  margin-top: 0.2vw;
  font-size: 0.75rem;
  font-weight: 700;
}
footer#creative-footer .creative-footer__sns {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
  padding: 0;
  list-style: none;
}
footer#creative-footer .creative-footer__sns a {
  display: block;
  transition: 0.3s;
}
footer#creative-footer .creative-footer__sns a:hover {
  opacity: 0.7;
  transform: translateY(-3px);
}
footer#creative-footer .creative-footer__sns img {
  display: block;
  width: 40px;
}
footer#creative-footer .creative-footer__nav ul {
  display: flex;
  gap: 2rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
footer#creative-footer .creative-footer__nav a {
  position: relative;
  color: #111;
  font-size: 0.7rem;
  text-decoration: none;
}
footer#creative-footer .creative-footer__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: #111;
  transform: scaleX(0);
  transform-origin: right;
  transition: 0.3s;
}
footer#creative-footer .creative-footer__nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
footer#creative-footer .creative-footer__company {
  margin-top: 4vw;
  padding-top: 2vw;
  border-top: 1px solid #ddd;
}
footer#creative-footer .creative-footer__company-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;
}
footer#creative-footer .creative-footer__logo {
  width: 140px;
}
footer#creative-footer .creative-footer__logo img {
  width: 100%;
}
footer#creative-footer .creative-footer__info {
  font-size: 0.7rem;
  line-height: 1.8;
  text-align: left;
}
footer#creative-footer .creative-footer__info address {
  font-style: normal;
}
footer#creative-footer .creative-footer__label {
  font-weight: 700;
}
footer#creative-footer .creative-footer__copy {
  display: block;
  margin-top: 2vw;
  text-align: center;
  font-size: 0.6rem;
  font-weight: 700;
}

@media (max-width: 500px) {
  footer#creative-footer .creative-footer__inner {
    width: 100%;
    padding: 15vw 0 8vw;
  }
  footer#creative-footer .creative-footer__title {
    font-size: 5vw;
  }
  footer#creative-footer .creative-footer__sub {
    font-size: 4vw;
  }
  footer#creative-footer .creative-footer__sns {
    margin: 8vw 0;
    gap: 1.5vw;
  }
  footer#creative-footer .creative-footer__sns img {
    width: 80%;
    margin: auto;
  }
  footer#creative-footer .creative-footer__nav ul {
    flex-direction: column;
    gap: 1.6vw;
    align-items: center;
  }
  footer#creative-footer .creative-footer__nav a {
    font-size: 3.6vw;
  }
  footer#creative-footer .creative-footer__nav a::after {
    display: none;
  }
  footer#creative-footer .creative-footer__company {
    margin-top: 16vw;
    padding-top: 16vw;
  }
  footer#creative-footer .creative-footer__company-inner {
    flex-direction: column;
    gap: 6vw;
  }
  footer#creative-footer .creative-footer__logo {
    width: 30%;
  }
  footer#creative-footer .creative-footer__info {
    text-align: center;
    font-size: 3.4vw;
  }
  footer#creative-footer address {
    margin-top: 2vw;
  }
  footer#creative-footer .creative-footer__copy {
    margin-top: 8vw;
    font-size: 3vw;
  }
}
/* フォント */
/* ==============================
  Font
============================== */
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/NotoSansJP-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/NotoSansJP-Light.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Forum";
  src: url("../fonts/Forum-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}/*# sourceMappingURL=style.css.map */