@charset "UTF-8";
:root {
  --c_white: #FFFFFF;
  --c_black: #2D2D2D;
  --c_blue_bright: #007DE4;
  --c_blue_dark: #3582C2;
  --c_light_blue: #00B4ED;
  --c_light_red: #F0454E;
  --c_orange: #FF813F;
  --c_gray: #F6F6F6;
  --c_dark_gray: #9C9C9C;
  --c_purple: #A489BE;
  --c_green: #22AC38;
}

/* =========================================
   Common
========================================= */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: var(--c_black);
  background-color: var(--c_white);
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 400;
  font-style: normal;
  box-sizing: border-box;
}

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

/* =========================================
   Animation
========================================= */
.fadeUp {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 2s, transform 2s;
}
.fadeUp.on {
  opacity: 1;
  transform: translateY(0);
}

.pc {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

/* =========================================
   Button
========================================= */
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: min(3.4722222222vw, 50px);
  font-size: min(1.1111111111vw, 16px);
  font-weight: 700;
  line-height: 1.7;
  border-radius: 100px;
  transition: 0.3s ease;
  cursor: pointer;
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 768px) {
  .btn {
    height: 13.3333333333vw;
    font-size: 4.2666666667vw;
  }
}
.btn span {
  display: flex;
  align-items: center;
  gap: min(0.6944444444vw, 10px);
}
@media screen and (max-width: 768px) {
  .btn span {
    gap: 2.6666666667vw;
  }
}
.btn span::after {
  content: "";
  width: min(1.3888888889vw, 20px);
  height: min(1.3888888889vw, 20px);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.3s ease;
}
@media screen and (max-width: 768px) {
  .btn span::after {
    width: 5.3333333333vw;
    height: 5.3333333333vw;
  }
}
.btn:hover {
  opacity: 0.8;
}
.btn.color_a {
  background-color: var(--c_blue_bright);
  color: var(--c_white);
  border: 1px solid var(--c_blue_bright);
}
.btn.color_a span::after {
  background: url(../images/arrow_white_a.svg) no-repeat center center/contain;
}
.btn.color_a:hover {
  background-color: var(--c_white);
  color: var(--c_blue_bright);
}
.btn.color_a:hover span::after {
  background: url(../images/arrow_blue_a.svg) no-repeat center center/contain;
}
.btn.color_b {
  background-color: var(--c_blue_dark);
  color: var(--c_white);
  border: 1px solid var(--c_blue_dark);
}
.btn.color_b span::after {
  background-image: url(../images/arrow_white_b.svg);
}
.btn.color_b:hover {
  background-color: var(--c_white);
  color: var(--c_blue_dark);
}
.btn.color_b:hover span::after {
  background-image: url(../images/arrow_blue_b.svg);
}

/* =========================================
   header
========================================= */
.header {
  width: 100%;
  padding: min(0.8333333333vw, 12px) min(1.3888888889vw, 20px);
  position: fixed;
  top: 0;
  z-index: 100;
  background: transparent;
  transition: transform 0.35s ease;
}
.header.is-hidden {
  transform: translateY(-110%);
}
.header:not(:has(+ main .top)) {
  position: fixed;
}
@media screen and (max-width: 768px) {
  .header {
    padding: 2.6666666667vw 3.7333333333vw;
  }
}
.header__inner {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(30px);
  border-radius: 100px;
  padding: 0 min(1.1111111111vw, 16px) 0 min(2.3611111111vw, 34px);
  height: min(5.5555555556vw, 80px);
  margin: 0 auto;
  gap: 0;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .header__inner {
    height: 14.9333333333vw;
    padding: 0 2.1333333333vw 0 4.2666666667vw;
    justify-content: space-between;
  }
}
.header__logo {
  width: min(20.8333333333vw, 235px);
}
.header__logo {
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 49.6vw;
  }
}
.header__logo img {
  display: block;
  width: 100%;
}
.header__nav {
  margin-left: auto;
  margin-right: min(3.4722222222vw, 50px);
}
@media screen and (max-width: 768px) {
  .header__nav {
    margin-right: 13.3333333333vw;
  }
}
.header__nav ul {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media screen and (max-width: 1100px) {
  .header__nav ul {
    gap: 2.6666666667vw;
  }
}
@media screen and (max-width: 800px) {
  .header__nav ul {
    gap: 20px;
  }
}
.header__nav ul li a {
  position: relative;
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.03em;
  transition: 0.2s;
  position: relative;
  white-space: nowrap;
}
.header__nav ul li a::after {
  content: "";
  position: absolute;
  bottom: min(-0.4166666667vw, -6px);
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  border-radius: 100px;
  background-color: var(--c_blue_bright);
  transition: 0.2s;
}
.header__nav ul li a:hover::after {
  width: 100%;
}
.header__nav ul li a.current::after {
  width: 100%;
}
.header__cta {
  width: min(14.5833333333vw, 210px);
}
.header__cta.pc .btn span {
  font-size: min(16px, 1.2820512821vw);
}
@media screen and (max-width: 768px) {
  .header .sp_menu_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.3333333333vw;
    width: 23.4666666667vw;
    height: 10.6666666667vw;
    font-size: 3.7333333333vw;
    font-weight: 500;
    color: var(--c_white);
    line-height: 1.3;
    letter-spacing: 0.03em;
    transition: 0.2s;
    cursor: pointer;
    border-radius: 100px;
    background-color: var(--c_blue_dark);
    z-index: 100;
  }
}
.header .sp_menu_btn .hamburger_lines {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.3333333333vw;
  width: 4.8vw;
  top: -2.2vw;
}
.header .sp_menu_btn .hamburger_lines .line {
  width: 4.8vw;
  height: 2px;
  background-color: var(--c_white);
  border-radius: 100px;
  transition: 0.2s;
  margin-top: 0;
}
.header .sp_menu_btn .hamburger_lines .line:first-of-type {
  position: absolute;
  top: 0;
}
.header .sp_menu_btn .hamburger_lines .line:nth-of-type(2) {
  position: absolute;
  top: 1.8vw;
}
.header .sp_menu_btn .hamburger_lines .line:last-of-type {
  width: 4vw;
  position: absolute;
  top: 3.7vw;
}
.header .sp_menu_btn.is_open .hamburger_lines {
  display: block;
  margin-bottom: 0.5333333333vw;
  margin-top: 5vw;
}
.header .sp_menu_btn.is_open .hamburger_lines .line:first-of-type {
  top: 0%;
  transform: rotate(45deg);
  transform-origin: center;
}
.header .sp_menu_btn.is_open .hamburger_lines .line:nth-of-type(2) {
  position: absolute;
  top: 0%;
  transform: rotate(-45deg);
  transform-origin: center;
}
.header .sp_menu_btn.is_open .hamburger_lines .line:last-of-type {
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .header.is_open .header__inner {
    background: none;
    position: relative;
    z-index: 100;
    box-shadow: none;
  }
}

/* =========================================
   SP Menu
========================================= */
.sp_menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  opacity: 0;
  padding-top: 18.6666666667vw;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  pointer-events: none;
  transition: opacity 0.5s ease;
  transform: translateZ(0);
  overflow-y: auto;
  overscroll-behavior: contain;
  align-items: flex-start;
  justify-content: flex-start;
}
.sp_menu.is_open {
  opacity: 1;
  pointer-events: all;
}
.sp_menu_inner .sp_nav {
  padding: 8px 0;
  flex: 1;
}
.sp_menu_inner .sp_nav .sp_nav_list {
  display: flex;
  flex-direction: column;
}
.sp_menu_inner .sp_nav .sp_nav_list .sp_nav_item a {
  display: flex;
  align-items: baseline;
  flex-direction: column;
  gap: 0vw;
  padding: 2.6666666667vw 13.3333333333vw;
}
.sp_menu_inner .sp_nav .sp_nav_list .sp_nav_item a .sp_nav_en {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 4.8vw;
  font-family: "Zen Maru Gothic", "Solway", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.01em;
}
.sp_menu_inner .sp_nav .sp_nav_list .sp_nav_item a .sp_nav_en::before {
  content: "–";
  font-size: 14px;
}
.sp_menu_inner .sp_nav .sp_nav_list .sp_nav_item a .sp_nav_ja {
  padding-left: 19px;
  font-size: 3.2vw;
  color: var(--c_blue_dark);
  font-weight: 500;
  letter-spacing: 0;
}
.sp_menu_inner .sp_menu_contact {
  width: 82.6666666667vw;
  margin: 8vw auto 8vw;
  padding: 8vw 5.8666666667vw;
  border-radius: 16px;
  border: 1px solid #E3E3E3;
  background-color: var(--c_white);
  text-align: center;
  position: relative;
}
.sp_menu_inner .sp_menu_contact .staff-label {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -13px;
  white-space: nowrap;
  background: #FFF28D;
  border-radius: 8px;
  width: fit-content;
  font-weight: bold;
  font-size: 3.7333333333vw;
  padding: 4px 4.5333333333vw 4px 13.3333333333vw;
}
.sp_menu_inner .sp_menu_contact .staff-label::before {
  position: absolute;
  content: "";
  left: 5.6vw;
  width: 6.1333333333vw;
  height: 6.6666666667vw;
  top: -4px;
  background: url(../images/icon_staff.svg) no-repeat center center/contain;
}
.sp_menu_inner .sp_menu_contact .sp_contact_en {
  font-size: 7.4666666667vw;
  font-family: "Zen Maru Gothic", "Solway", serif;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0;
}
.sp_menu_inner .sp_menu_contact .sp_contact_ja {
  font-size: 3.2vw;
  font-weight: 700;
  color: var(--c_blue_dark);
  letter-spacing: 0;
}
.sp_menu_inner .sp_menu_contact .sp_contact_sub {
  margin-top: 5.3333333333vw;
  font-size: 3.7333333333vw;
  font-weight: 700;
  letter-spacing: 0;
  letter-spacing: 0.2em;
}
.sp_menu_inner .sp_menu_contact .btn {
  margin-top: 2.6666666667vw;
}

/* =========================================
   footer
========================================= */
.footer {
  width: 100%;
  background: var(--c_white);
  padding: min(3.1944444444vw, 46px) 0 min(2.2222222222vw, 32px);
  border-top: 1px solid #EAEAEA;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 0;
  }
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 100px;
  padding: 0 0 0 0;
  width: min(100%, 1120px);
  height: min(5.5555555556vw, 80px);
  height: auto;
  margin-inline: auto;
  gap: 0;
  position: relative;
}
@media screen and (max-width: 1440px) {
  .footer__inner {
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .footer__inner {
    flex-wrap: wrap;
    height: 100%;
    padding: 50px 20px 20px 20px;
    justify-content: space-between;
  }
}
.footer__left__logo {
  width: min(16.3194444444vw, 235px);
  margin-bottom: 18px;
}
@media screen and (max-width: 768px) {
  .footer__left__logo {
    width: 25.9vw;
  }
}
.footer__left__logo img {
  width: 100%;
}
.footer__left__company-info {
  line-height: 280%;
}
@media screen and (max-width: 768px) {
  .footer__left__company-info {
    margin-bottom: 22px;
    line-height: 230%;
  }
}
@media screen and (max-width: 768px) {
  .footer__left__company-info h2 {
    margin-bottom: 5px;
  }
}
.footer__left__company-info .name {
  font-weight: bold;
  font-size: 20px;
}
.footer__left__company-info .add {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 400px) {
  .footer__left__company-info .add {
    font-size: 3.6vw;
  }
}
.footer__left__company-info .add::before {
  content: "";
  background: url(../images/icon-pin.svg) no-repeat center;
  background-size: 100%;
  width: 21px;
  height: 25px;
  margin-right: 14px;
}
.footer__left__company-info .tel {
  display: flex;
  align-items: center;
}
.footer__left__company-info .tel::before {
  content: "";
  background: url(../images/icon-tel.svg) no-repeat center;
  background-size: 100%;
  width: 18px;
  height: 18px;
  margin-right: 14px;
}
.footer__left__company-info .email {
  display: flex;
  align-items: center;
}
.footer__left__company-info .email::before {
  content: "";
  background: url(../images/icon-mail.svg) no-repeat center;
  background-size: 100%;
  width: 21px;
  height: 17px;
  margin-right: 14px;
}
.footer__left__company-info .email picture {
  width: 166px;
  display: block;
}
.footer__left__company-info .email picture img {
  display: block;
}
.footer__right {
  position: relative;
}
.footer__right__nav {
  width: 280px;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .footer__right__nav {
    width: 100%;
    padding: 0 15px;
    margin-bottom: 22px;
  }
}
.footer__right__nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.footer__right__nav ul li {
  width: 50%;
  display: inline-flex;
  align-items: center;
}
.footer__right__nav ul li::before {
  content: "";
  border-top: 2px solid var(--c_blue_dark);
  width: 7px;
  margin-right: 12px;
}
.footer__right__nav ul li a {
  position: relative;
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.03em;
  transition: 0.2s;
  position: relative;
  white-space: nowrap;
  line-height: 280%;
}
@media screen and (max-width: 768px) {
  .footer__right__nav ul li a {
    font-size: 16px;
  }
}
.footer__right__nav ul li a::after {
  content: "";
  position: absolute;
  bottom: min(0.4166666667vw, 6px);
  left: 0%;
  width: 0;
  height: 1px;
  border-radius: 100px;
  background-color: var(--c_black);
  transition: 0.2s;
}
.footer__right__nav ul li a:hover::after {
  width: 100%;
}
.footer__utility {
  position: absolute;
  bottom: 10px;
  right: 20px;
}
@media screen and (max-width: 768px) {
  .footer__utility {
    position: relative;
    bottom: 0;
    right: 0;
    display: flex;
    flex-wrap: wrap;
    line-height: 280%;
    width: 100%;
  }
}
.footer__utility__privacy {
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .footer__utility__privacy {
    width: 100%;
    margin: 0;
    text-align: center;
  }
}
.footer__utility__privacy span {
  background-image: linear-gradient(var(--c_black), var(--c_black));
  background-size: 0% 1px;
  background-repeat: no-repeat;
  background-position: left bottom;
  transition: background-size 0.2s;
}
.footer__utility__privacy span:hover {
  background-size: 100% 1px;
}
.footer__utility small {
  width: 100%;
  text-align: center;
  color: #999;
}

section {
  position: relative;
}

/* 背景筆跡と水滴 */
@keyframes revealUpRight {
  0% {
    /* 最初：左下の1点に絞る */
    clip-path: inset(0 0 100% 100%);
    opacity: 0;
  }
  100% {
    /* 最後：全表示（上下左右の削り幅を0にする） */
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes revealFromLeft {
  0% {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes revealFromRight {
  0% {
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
@keyframes blurRevealCenter {
  0% {
    filter: blur(20px);
    opacity: 0;
    mask-size: 0% 0%;
  }
  20% {
    opacity: 1; /* 早めに不透明度だけ戻す */
  }
  100% {
    filter: blur(0px);
    opacity: 1;
    mask-size: 200% 200%; /* 中央から全体を覆うまで広げる */
  }
}
.bg__object {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
}
.bg__object.bg-yellow.is-visible, .bg__object.bg-pink.is-visible, .bg__object.bg-blue.is-visible, .bg__object.bg-green.is-visible, .bg__object.bg-orange.is-visible {
  animation: revealUpRight 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation-timing-function: cubic-bezier(0.16, 0.1, 0.3, 1);
  animation-delay: 0.8s;
}
.bg__object.bg-yellow.startleft.is-visible, .bg__object.bg-pink.startleft.is-visible, .bg__object.bg-blue.startleft.is-visible, .bg__object.bg-green.startleft.is-visible, .bg__object.bg-orange.startleft.is-visible {
  animation: revealFromLeft 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation-delay: 0.5s;
  animation-timing-function: cubic-bezier(0.33, 1, 0.68, 1);
}
.bg__object.bg-yellow.startright.is-visible, .bg__object.bg-pink.startright.is-visible, .bg__object.bg-blue.startright.is-visible, .bg__object.bg-green.startright.is-visible, .bg__object.bg-orange.startright.is-visible {
  animation: revealFromRight 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation-delay: 0.5s;
}
.bg__object.bg-paint-blue.is-visible, .bg__object.bg-paint-blue-2.is-visible, .bg__object.bg-paint-yellow.is-visible, .bg__object.bg-paint-yellow-2.is-visible, .bg__object.bg-paint-purple.is-visible, .bg__object.bg-paint-lightblue.is-visible, .bg__object.bg-paint-profile.is-visible {
  mask-image: radial-gradient(circle, black 40%, transparent 70%);
  mask-repeat: no-repeat;
  mask-position: center;
  opacity: 0;
  filter: blur(20px);
}
.bg__object.bg-paint-blue.is-visible.is-visible, .bg__object.bg-paint-blue-2.is-visible.is-visible, .bg__object.bg-paint-yellow.is-visible.is-visible, .bg__object.bg-paint-yellow-2.is-visible.is-visible, .bg__object.bg-paint-purple.is-visible.is-visible, .bg__object.bg-paint-lightblue.is-visible.is-visible, .bg__object.bg-paint-profile.is-visible.is-visible {
  animation: blurRevealCenter 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation-delay: 0.3s;
}
.bg__object.bg-yellow {
  background: url(../images/handwriting-yellow.webp) no-repeat;
  background-size: 100%;
  width: 668px;
  height: 326px;
  top: 695px;
  right: -166px;
}
@media screen and (max-width: 768px) {
  .bg__object.bg-yellow {
    width: 72.3vw;
    right: -105px;
    top: 841px;
  }
}
.bg__object.bg-pink {
  background: url(../images/handwriting-pink.webp) no-repeat;
  background-size: 100%;
  width: 672px;
  height: 938px;
  top: 199px;
  left: -150px;
}
@media screen and (max-width: 768px) {
  .bg__object.bg-pink {
    width: 86.2vw;
    height: 117vw;
    top: 200px;
    left: -173px;
  }
}
.bg__object.bg-blue {
  background: url(../images/handwriting-blue.webp) no-repeat;
  background-size: 100%;
  width: 701px;
  height: 326px;
  top: 0px;
  right: -386px;
}
@media screen and (max-width: 768px) {
  .bg__object.bg-blue {
    width: 89.8vw;
    height: 42vw;
    right: -196px;
    top: 0px;
  }
}
.bg__object.bg-green {
  background: url(../images/handwriting-green.webp) no-repeat;
  background-size: 100%;
  width: 441px;
  height: 332px;
  top: -164px;
  left: -165px;
}
@media screen and (max-width: 768px) {
  .bg__object.bg-green {
    width: 59vw;
    height: 48vw;
    left: -18.5vw;
    top: -52px;
  }
}
.bg__object.bg-orange {
  background: url(../images/handwriting-orange.webp) no-repeat;
  background-size: 100%;
  width: 516px;
  height: 438px;
  bottom: -226px;
  right: -157px;
}
@media screen and (max-width: 768px) {
  .bg__object.bg-orange {
    width: 56.6vw;
    height: 42vw;
    right: -18.5vw;
    bottom: -22vw;
  }
}
.bg__object.bg-paint-blue {
  background: url(../images/paint-blue.webp) no-repeat;
  background-size: 100%;
  width: 132px;
  height: 108px;
  top: 437px;
  right: 227px;
}
@media screen and (max-width: 768px) {
  .bg__object.bg-paint-blue {
    top: 320px;
    right: 30px;
  }
}
.bg__object.bg-paint-blue-2 {
  background: url(../images/paint-blue-2.webp) no-repeat;
  background-size: 100%;
  width: 44px;
  height: 41px;
}
@media screen and (max-width: 768px) {
  .bg__object.bg-paint-blue-2 {
    top: 0;
  }
}
.bg__object.bg-paint-yellow {
  background: url(../images/paint-yellow.webp) no-repeat;
  background-size: 100%;
  width: 107px;
  height: 100px;
  top: 854px;
  right: 417px;
}
@media screen and (max-width: 768px) {
  .bg__object.bg-paint-yellow {
    top: 800px;
  }
}
.bg__object.bg-paint-yellow-2 {
  background: url(../images/paint-yellow-2.webp) no-repeat;
  background-size: 100%;
  width: 43px;
  height: 35px;
}
@media screen and (max-width: 768px) {
  .bg__object.bg-paint-yellow-2 {
    top: 0;
  }
}
.bg__object.bg-paint-purple {
  background: url(../images/paint-purple.webp) no-repeat;
  background-size: 100%;
  width: 90px;
  height: 91px;
  bottom: -18px;
  right: 535px;
}
.bg__object.bg-paint-lightblue {
  background: url(../images/paint-lightblue.webp) no-repeat;
  background-size: 100%;
  width: 131px;
  height: 126px;
  top: -39px;
  right: 227px;
  transform: rotate(62.65deg);
}
@media screen and (max-width: 768px) {
  .bg__object.bg-paint-lightblue {
    top: 320px;
    right: 30px;
  }
}

/* =========================================
   top モーダル
========================================= */
/* オーバーレイ（背景） */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #F6F6F6;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  font-family: "Noto Sans JP", sans-serif;
}

/* モーダル白枠 */
.modal-content {
  padding: 30px;
  text-align: center;
  border-radius: 100%;
  width: min(700px, 90%);
  aspect-ratio: 1/1;
  height: auto;
  border: 1px solid #fff;
  display: flex;
  align-content: center;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #FFFFFF;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.modal-title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 25px;
  font-family: "Noto Sans JP";
  color: #2D2D2D;
  width: 100%;
  letter-spacing: 20%;
}
@media screen and (max-width: 768px) {
  .modal-title {
    margin-bottom: 16px;
    font-size: 4vw;
  }
}
@media (max-width: 450px) {
  .modal-title .modal-title {
    font-size: 1.95rem;
  }
}

.modal-subtitle {
  color: #999;
  font-size: 12px;
  margin-top: 50px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .modal-subtitle {
    margin-top: 5vw;
  }
}

.modal-choices {
  display: flex;
  justify-content: center;
  gap: 111px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .modal-choices {
    gap: 50px;
  }
}

/* 選択カード（リンク） */
.modal-block {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, border-color 0.2s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

@media (hover: hover) {
  .modal-block:hover {
    transform: translateY(-2px);
  }
}
.modal-block.soundon:hover {
  border-color: #009b85;
}

.modal-block.soundoff:hover {
  border-color: #d7000f;
}

.modal-image {
  width: 147px;
  height: 165px;
}
@media screen and (max-width: 768px) {
  .modal-image {
    width: 19vw;
    height: 22vw;
  }
}

.modal-image img {
  width: 100%;
  height: auto;
  display: block;
}

.soundon .modal-image {
  background: url(../images/modal_sound_on.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}

.soundon .modal-image:hover {
  background-image: url(../images/modal_sound_on_hover.svg);
}

.soundoff .modal-image {
  background: url(../images/modal_sound_off.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}

.soundoff .modal-image:hover {
  background-image: url(../images/modal_sound_off_hover.svg);
}

.card-text {
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.4;
}

.card-note {
  font-size: 0.75rem;
  color: #888;
  margin-top: 5px;
}

body.modal-open-pending .mv__bg__scroll,
body.modal-open-pending .video-toggle,
body.modal-open-pending .bg__object,
body.modal-open-pending .fadeUp,
body.modal-open-pending .anim_item,
body.modal-open-pending .slide_item {
  animation: none !important;
  transition: none !important;
}

@media screen and (max-width: 780px) {
  .modal-content {
    padding: 15px 20px 17px;
  }
}
@media screen and (max-width: 450px) {
  .modal-content {
    padding: 12px 10px 14px;
  }
}
/* plus icon */
.plus-icon {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.plus-icon::after {
  content: "";
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #3582C2;
  border-radius: 50%;
  flex-shrink: 0;
  background-image: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 2px 10px, 10px 2px;
}

.btn.return {
  padding: 10px 30px 10px 34px;
  width: fit-content;
  height: auto;
  margin: 50px auto 0;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .btn.return {
    padding: 2.6666666667vw 8vw 2.6666666667vw 8vw;
  }
}
.btn.return span::before {
  content: "";
  width: min(1.4583333333vw, 21px);
  height: min(1.4583333333vw, 21px);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.3s ease;
  background-image: url(../images/arrow_white_b.svg);
  transform: scaleX(-1) scaleY(1);
}
@media screen and (max-width: 768px) {
  .btn.return span::before {
    width: 5.6vw;
    height: 5.6vw;
  }
}
.btn.return span::after {
  content: none;
}
.btn.return:hover {
  background-color: var(--c_white);
  color: var(--c_blue_dark);
}
.btn.return:hover span::before {
  background-image: url(../images/arrow_blue_b.svg);
}

.category.bordcasting {
  border-color: #00B4ED;
  color: #00B4ED;
}
.category.advertising {
  border-color: #F0454E;
  color: #F0454E;
}
.category.talent {
  border-color: #EC6500;
  color: #EC6500;
}
.category.inclusive {
  border-color: var(--c_dark_gray);
  color: var(--c_dark_gray);
}
.category.food {
  border-color: #A489BE;
  color: #A489BE;
}
.category.sports {
  border-color: #22AC38;
  color: #22AC38;
}

/* =========================================
   top
========================================= */
.top {
  position: relative;
  overflow: hidden;
}
.top .title__block__row {
  width: min(100%, 1120px);
  margin-inline: auto;
  margin-bottom: 28px;
}
@media screen and (max-width: 1440px) {
  .top .title__block__row {
    padding: 0 20px;
  }
}
.top .title__block__row .en {
  font-family: "Zen Maru Gothic", "Solway", serif;
  font-weight: 400;
  font-size: clamp(46px, 6.9444444444vw, 100px);
  line-height: 1.2;
  letter-spacing: 0;
}
.top .title__block__row .ja {
  font-weight: 500;
  font-size: clamp(10px, 1.3888888889vw, 16px);
  padding-left: 0.5em;
}
@media screen and (max-width: 768px) {
  .top .title__block__row .ja {
    padding-left: 0.5em;
    margin-top: 0.4em;
    font-size: 2.6666666667vw;
  }
}
.top .mv {
  position: relative;
  height: 100vh;
  height: 810px;
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .top .mv {
    margin-top: 0;
    height: 733px;
  }
}
.top .mv__inner {
  margin-inline: auto;
  position: relative;
  z-index: 1;
  height: 100%;
}
.top .mv__catch {
  position: absolute;
}
.top .mv__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}
.top .mv__bg video {
  border: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top .mv__bg__shape {
  background-image: url(../images/mv-shape.svg);
  background-repeat: no-repeat;
  position: absolute;
  bottom: -1px;
  width: 100%;
  min-height: 60px;
  height: 100%;
  background-size: 100%;
  background-position: center bottom;
}
.top .mv__bg__scroll {
  position: absolute;
  bottom: -1vh;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 1;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInMvBtn 0.8s ease-in 3s forwards;
  width: 1px;
  height: 120px;
}
@media screen and (max-width: 768px) {
  .top .mv__bg__scroll {
    bottom: -17px;
    height: 80px;
  }
}
.top .mv__bg__scroll span {
  color: #2d2d2d;
  font-family: "Zen Maru Gothic", "Solway", serif;
  font-size: 18px;
  position: absolute;
  width: 100%;
  left: 0;
  background-color: #2d2d2d;
  backdrop-filter: invert(100%);
  animation: scrollLineLoop 2.5s ease-in-out 3.5s infinite;
}
@media screen and (max-width: 768px) {
  .top .mv__bg__scroll span {
    font-size: 14px;
  }
}
@keyframes scrollLineReveal {
  to {
    clip-path: inset(0 0 0% 0);
  }
}
@keyframes scrollLineLoop {
  0% {
    top: 0%;
    height: 0;
  }
  45% {
    top: 0%;
    height: 100%;
  }
  80% {
    top: 100%;
    height: 0%;
  }
  100% {
    top: 100%;
    height: 0%;
  }
}
@keyframes fadeInMvBtn {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
.top .mv .video-toggle {
  position: absolute;
  top: min(7.3611111111vw, 106px);
  right: min(2.4305555556vw, 35px);
  z-index: 100;
  display: flex;
  align-items: center;
}
.top .mv .video-toggle__inner {
  display: flex;
  align-items: center;
  width: 108px;
  height: 32px;
  padding: 0 16px;
  border: 1.25px solid #fff;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  opacity: 0;
  visibility: hidden; /* クリックもできない状態にする */
  animation: fadeInMvBtn 0.8s ease-in 3s forwards;
}
.top .mv .video-toggle__icon {
  width: 21px;
  height: 16px;
  margin-right: 17px;
  background: url(../images/icon_sound_off.svg) no-repeat center/contain;
  flex: 0 0 auto;
}
.top .mv .video-toggle__label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.4);
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: color 0.2s ease;
}
.top .mv .video-toggle__separator {
  width: 1px;
  height: 13px;
  margin: 0 11px;
  background: rgba(255, 255, 255, 0.75);
  flex: 0 0 auto;
}
.top .mv .video-toggle.soundon .video-toggle__icon {
  background-image: url(../images/icon_sound_on.svg);
}
.top .mv .video-toggle.soundon .video-toggle__label--on {
  cursor: default;
}
.top .mv .video-toggle.soundon .video-toggle__label--off {
  color: #fff;
}
.top .mv .video-toggle.soundon .video-toggle__label--off:hover {
  color: rgba(255, 255, 255, 0.4);
}
.top .mv .video-toggle.soundoff .video-toggle__icon {
  background-image: url(../images/icon_sound_off.svg);
}
.top .mv .video-toggle.soundoff .video-toggle__label--off {
  cursor: default;
}
.top .mv .video-toggle.soundoff .video-toggle__label--on {
  color: #fff;
}
.top .mv .video-toggle.soundoff .video-toggle__label--on:hover {
  color: rgba(255, 255, 255, 0.4);
}
@media screen and (max-width: 768px) {
  .top .mv .video-toggle {
    top: 21vw;
    right: 5.4666666667vw;
  }
}
.top .topics {
  margin-inline: auto;
  position: absolute;
  bottom: 110px;
  right: 0;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .top .topics {
    position: relative;
    bottom: 0;
    z-index: 1;
    padding-top: 50px;
  }
}
.top .topics__inner {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(30px);
  border-radius: 16px 0px 0px 16px;
  padding: 20px 40px 20px 40px;
}
@media screen and (max-width: 1440px) {
  .top .topics__inner {
    width: 45vw;
  }
}
@media screen and (max-width: 768px) {
  .top .topics__inner {
    width: 100%;
    backdrop-filter: none;
    background: transparent;
  }
}
.top .topics__title {
  font-weight: bold;
  margin-bottom: 5px;
}
.top .topics__item a {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .top .topics__item a {
    margin-bottom: 16px;
  }
}
.top .topics__item__date {
  font-size: 12px;
}
.top .topics__item__category {
  border: 1px solid var(--c_black);
  border-radius: 3px;
  font-size: 11px;
  margin: 0 20px;
  width: 6em;
  text-align: center;
}
.top .topics__item__category.cat_company {
  border-color: var(--c_blue_dark);
  color: var(--c_blue_dark);
}
.top .topics__item__category.cat_works {
  border-color: var(--c_black);
  color: var(--c_black);
}
.top .topics__item__category a {
  display: block;
  padding: 3px 8px;
}
.top .topics__item__title {
  font-size: 12px;
  max-width: 400px;
  width: calc(100% - 180px);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media screen and (max-width: 768px) {
  .top .topics__item__title {
    max-width: 100%;
    width: 100%;
    margin-top: 6px;
  }
}
.top .topics__item__title span {
  background-image: linear-gradient(var(--c_black), var(--c_black));
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: left bottom;
  transition: background-size 0.2s, font-weight 0.2s;
}
.top .topics__item:hover .topics__item__title span {
  background-size: 0% 1px;
  font-weight: bold;
}
.top .concept {
  background-color: var(--c_white);
  padding-top: 125px;
}
@media screen and (max-width: 768px) {
  .top .concept {
    padding-top: 7.4666666667vw;
  }
}
.top .concept__inner {
  /*max-width: 1260px;*/
  width: 100%;
  position: relative;
  z-index: 1;
}
.top .concept__inner .slider {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top .concept__inner .slider {
    flex-wrap: wrap;
  }
}
.top .concept__inner .slider .concept-slider-wrap {
  width: 55.5%;
  /*max-width: 800px;*/
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .top .concept__inner .slider .concept-slider-wrap {
    width: 90%;
  }
}
.top .concept__inner .slider .conceptSlider {
  overflow: visible;
  width: 100%;
}
.top .concept__inner .slider .conceptSlider .swiper-slide img {
  border-radius: 8px;
}
.top .concept__inner .slider .concept-slider-controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  position: relative;
  z-index: 10;
}
.top .concept__inner .slider .concept-slider-pagination {
  position: static !important;
  width: auto !important;
  display: flex;
  align-items: center;
}
.top .concept__inner .slider .concept-slider-pagination .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 10px);
}
.top .concept__inner .slider .concept-slider-pagination .swiper-pagination-bullet-active {
  background: var(--c_black);
}
.top .concept__inner .slider .concept-slider-stop-btn {
  width: 27px;
  height: 27px;
  padding: 0;
  background: url(../images/slider-btn-stop.svg) no-repeat center/contain;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  position: relative;
}
.top .concept__inner .slider .concept-slider-stop-btn img {
  width: 100%;
  height: auto;
}
.top .concept__inner .slider .concept-slider-stop-btn.is-stopped {
  opacity: 0.4;
  cursor: default;
}
.top .concept__inner .slider .concept-slider-stop-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/slider-btn-stop-hover.svg) no-repeat center/contain;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.top .concept__inner .slider .concept-slider-stop-btn:hover::after {
  opacity: 1;
}
.top .concept__inner .slider__copy {
  width: 41.6%;
  font-size: 20px;
  font-weight: 500;
  line-height: 49px;
  letter-spacing: 24%;
}
@media screen and (max-width: 768px) {
  .top .concept__inner .slider__copy {
    width: min(100%, 615px);
    margin: 26.6666666667vw auto 0 auto;
    padding: 0 40px;
    font-size: 3.2vw;
    line-height: clamp(34px, 5vw + 20px, 49px);
  }
}
@media (max-width: 768px) and (min-width: 680px) {
  .top .concept__inner .slider__copy {
    font-size: 2.6666666667vw;
  }
}
.top .concept__lead {
  width: min(100%, 615px);
  margin-inline: auto;
  margin-bottom: 154px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.27em;
  line-height: clamp(34px, 5vw + 20px, 49px);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .top .concept__lead {
    font-size: 3.2vw;
    padding: 0 40px;
    margin-bottom: 70px;
  }
}
@media (max-width: 768px) and (min-width: 680px) {
  .top .concept__lead {
    font-size: 2.6666666667vw;
  }
}
.top .services {
  padding: 190px 0 88px;
  z-index: 2;
}
@media screen and (max-width: 1160px) {
  .top .services {
    padding: 190px 20px 88px;
  }
}
@media screen and (max-width: 768px) {
  .top .services {
    padding: 190px 20px 100px;
  }
}
.top .services .title__block__row {
  padding: 0;
}
.top .services__inner {
  display: grid;
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  margin-bottom: 80px;
  gap: 50px;
  grid-template-columns: repeat(3, minmax(164px, 1fr));
}
@media screen and (max-width: 768px) {
  .top .services__inner {
    grid-template-columns: repeat(2, minmax(48%, 1fr));
    margin-bottom: 21.3333333333vw;
    row-gap: 2.5%;
    column-gap: 5%;
  }
}
.top .services__block {
  max-width: 340px;
  width: 100%;
  min-height: 278px;
  justify-self: center;
  padding: 39px 30px;
  border-radius: 16px;
  background-color: var(--c_gray);
  position: relative;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.14);
  border: 2px solid transparent;
  transition: 0.3s ease;
}
@media (min-width: 769px) {
  .top .services__block:nth-child(3n+1) {
    justify-self: start;
  }
  .top .services__block:nth-child(3n) {
    justify-self: end;
  }
}
@media (max-width: 768px) {
  .top .services__block:nth-child(2n+1) {
    justify-self: start;
  }
  .top .services__block:nth-child(2n) {
    justify-self: end;
  }
  .top .services__block {
    padding: 5.3333333333vw 4vw 4.5333333333vw;
    min-height: auto;
  }
}
.top .services__block.bordcasting:hover {
  border: 2px solid var(--c_light_blue);
  background-color: var(--c_white);
}
.top .services__block.bordcasting .services__projectNameEn {
  color: var(--c_light_blue);
}
.top .services__block.advertising:hover {
  border: 2px solid var(--c_light_red);
  background-color: var(--c_white);
}
.top .services__block.advertising .services__projectNameEn {
  color: var(--c_light_red);
}
.top .services__block.talent:hover {
  border: 2px solid var(--c_orange);
  background-color: var(--c_white);
}
.top .services__block.talent .services__projectNameEn {
  color: var(--c_orange);
}
.top .services__block.inclusive:hover {
  border: 2px solid var(--c_black);
  background-color: var(--c_white);
}
.top .services__block.inclusive .services__projectNameEn {
  color: var(--c_black);
}
.top .services__block.food:hover {
  border: 2px solid var(--c_purple);
  background-color: var(--c_white);
}
.top .services__block.food .services__projectNameEn {
  color: var(--c_purple);
}
.top .services__block.sports:hover {
  border: 2px solid #22AC38;
  background-color: var(--c_white);
}
.top .services__block.sports .services__projectNameEn {
  color: #22AC38;
}
.top .services__block:hover {
  cursor: pointer;
}
.top .services__icon {
  width: 86px;
  margin-bottom: 17px;
}
@media screen and (max-width: 768px) {
  .top .services__icon {
    margin: 0 auto 17px;
  }
}
.top .services__projectName {
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .top .services__projectName {
    font-size: 16px;
    text-align: center;
    margin-bottom: 10px;
    height: 4.5em;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.top .services__projectNameEn {
  font-size: 13px;
  font-family: "Zen Maru Gothic", "Solway", serif;
}
@media screen and (max-width: 768px) {
  .top .services__projectNameEn {
    font-size: 2.4vw;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3em;
  }
}
.top .services__popup {
  width: 24px;
  display: block;
  position: absolute;
  top: 20px;
  right: 20px;
}
@media screen and (max-width: 768px) {
  .top .services__popup {
    top: 2.9333333333vw;
    right: 3.4666666667vw;
  }
}
.top .services__popup__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  inset: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  inset: 0;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  z-index: 1000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .top .services__popup__inner {
    padding: 100px 20px 30px 20px;
  }
}
.top .services__popup__inner.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.top .services__popup__inner__close {
  position: absolute;
  top: 36px;
  right: 35px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  color: #000;
}
@media screen and (max-width: 768px) {
  .top .services__popup__inner__close {
    top: -55px;
    right: 0px;
  }
}
@media screen and (max-width: 768px) {
  .top .services__popup__inner__close img {
    filter: brightness(0.4);
  }
}
.top .services__popup__content {
  max-width: 820px;
  background-color: var(--c_white);
  padding: 61px 65px 75px 65px;
  border-radius: 24px;
  flex-wrap: wrap;
  display: flex;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top .services__popup__content {
    padding: 22px 30px 29px 30px;
  }
}
.top .services__popup__content::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  opacity: 0.2;
  mix-blend-mode: screen;
  mix-blend-mode: plus-lighter;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.7'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}
.top .services__popup__subtitle {
  width: 100%;
  font-size: 18px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .top .services__popup__subtitle {
    font-size: 16px;
    margin-bottom: 10px;
    letter-spacing: 0;
    white-space: nowrap;
  }
}
.top .services__popup__subtitle:before {
  content: "";
  background: url(../images/top-service-popup-icon-white.svg) no-repeat;
  width: 18px;
  height: 18px;
  margin-right: 15px;
}
@media screen and (max-width: 768px) {
  .top .services__popup__subtitle:before {
    margin-right: 9px;
  }
}
.top .services__popup__title {
  width: 100%;
  font-size: 32px;
  margin-bottom: 35px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .top .services__popup__title {
    font-size: 20px;
    margin-bottom: 20px;
    text-align: center;
  }
}
.top .services__popup__body {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.top .services__popup__image {
  width: 29%;
  padding-top: 5px;
}
@media screen and (max-width: 768px) {
  .top .services__popup__image {
    width: 48.5%;
    margin: 0 auto 22px;
  }
}
.top .services__popup__image img {
  border-radius: 10px;
}
.top .services__popup__text {
  width: 66.3%;
  line-height: 160%;
  letter-spacing: 0;
  font-size: 17px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .top .services__popup__text {
    width: 100%;
    line-height: 180%;
    font-size: 14px;
    text-align: justify;
  }
}
.top .services__popup__text em {
  font-style: normal;
  font-weight: bold;
  font-size: 120%;
}
.top .services .bordcasting .services__popup__content {
  background-color: var(--c_light_blue);
  color: var(--c_white);
  box-shadow: 40px 40px 40px rgb(from var(--c_light_blue) r g b/0.4);
}
.top .services .advertising .services__popup__content {
  background-color: var(--c_light_red);
  color: var(--c_white);
  box-shadow: 40px 40px 40px rgb(from var(--c_light_red) r g b/0.4);
}
.top .services .talent .services__popup__content {
  background-color: var(--c_orange);
  color: var(--c_white);
  box-shadow: 40px 40px 40px rgb(from var(--c_orange) r g b/0.4);
}
.top .services .inclusive .services__popup__content {
  background-color: var(--c_gray);
  color: var(--c_black);
  box-shadow: 40px 40px 40px rgb(from var(--c_dark_gray) r g b/0.4);
}
.top .services .inclusive .services__popup__content .services__popup__subtitle:before {
  background: url(../images/top-service-popup-icon-gray.svg) no-repeat;
}
.top .services .inclusive .services__popup__inner__close img {
  filter: brightness(0.4);
}
.top .services .food .services__popup__content {
  background-color: var(--c_purple);
  color: var(--c_white);
  box-shadow: 40px 40px 40px rgb(from var(--c_purple) r g b/0.4);
}
.top .services .sports .services__popup__content {
  background-color: #22AC38;
  color: var(--c_white);
  box-shadow: 40px 40px 40px rgba(34, 172, 56, 0.4);
}
.top .services__cta {
  width: 239px;
  margin-inline: auto;
}
.top .services__cta .btn {
  height: auto;
  font-size: 18px;
  letter-spacing: 0;
}
.top .services__cta .btn span {
  padding: 16px 16px;
}
.top .works {
  background-color: var(--c_gray);
  padding: 90px 0 100px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .top .works {
    padding: 22vw 0 22vw;
  }
}
.top .works__cta {
  position: absolute;
  top: -90px;
  right: 20px;
}
@media screen and (max-width: 768px) {
  .top .works__cta {
    position: static;
    margin-top: 10.3vw;
  }
}
.top .works__cta .btn {
  padding: 0 24px 0 40px;
}
@media screen and (max-width: 768px) {
  .top .works__cta .btn {
    width: 70%;
    margin-inline: auto;
  }
}
.top .works__inner {
  width: min(100%, 1120px);
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 1440px) {
  .top .works__inner {
    padding: 0 20px;
  }
}
.top .works__inner .worksSlider {
  position: relative;
  overflow: hidden;
}
.top .works__inner .worksSlider .swiper-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
}
.top .works__inner .worksSlider .swiper-wrapper .swiper-slide {
  background-color: var(--c_white);
  width: 47.2222222222% !important;
  margin-right: 4.6296296296%;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: auto;
  margin-bottom: 7.14%;
  border: 2px solid transparent;
  transition: 0.3s ease;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top .works__inner .worksSlider .swiper-wrapper .swiper-slide {
    width: 95% !important;
    margin: 0 2.5% 7.14%;
  }
}
.top .works__inner .worksSlider .swiper-wrapper .swiper-slide:hover {
  border: 2px solid var(--c_blue_dark);
}
.top .works__inner .swiper-pagination {
  visibility: hidden;
}
@media screen and (max-width: 768px) {
  .top .works__inner .swiper-pagination {
    visibility: visible;
    position: relative;
    width: fit-content;
    top: 0;
  }
}
.top .works__inner .swiper-pagination .swiper-pagination-bullet {
  background: var(--c_black);
}
.top .works__inner .pagination-area {
  display: flex;
  justify-content: center;
  gap: 100px;
  display: none;
}
@media screen and (max-width: 768px) {
  .top .works__inner .pagination-area {
    gap: 20px;
    display: flex;
  }
}
.top .works__inner .pagination-area .pagination-prev,
.top .works__inner .pagination-area .pagination-next {
  width: 40px;
  height: 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top .works__inner .pagination-area .pagination-prev,
  .top .works__inner .pagination-area .pagination-next {
    width: 30px;
    height: 30px;
  }
}
.top .works__inner .pagination-area .pagination-prev:hover::after,
.top .works__inner .pagination-area .pagination-next:hover::after {
  opacity: 1;
}
.top .works__inner .pagination-area .pagination-prev {
  background: url(../images/pagination-prev.svg) no-repeat center center/contain;
}
.top .works__inner .pagination-area .pagination-prev::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/pagination-prev-hover.svg) no-repeat center/contain;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  pointer-events: none;
}
.top .works__inner .pagination-area .pagination-next {
  background: url(../images/pagination-next.svg) no-repeat center center/contain;
}
.top .works__inner .pagination-area .pagination-next::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(../images/pagination-next-hover.svg) no-repeat center/contain;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  pointer-events: none;
}
.top .works__inner__image {
  width: 100%;
  margin-bottom: 20px;
}
.top .works__inner__image img {
  border-radius: 16px;
}
.top .works__inner__content {
  flex: 1;
}
.top .works__inner__content .meta {
  margin-bottom: 8px;
}
.top .works__inner__content .meta .category {
  font-size: 16px;
  border: 1px solid;
  border-radius: 6px;
  padding: 3px 16px 4px;
  margin-right: 8px;
}
@media screen and (max-width: 768px) {
  .top .works__inner__content .meta .category {
    font-size: 14px;
  }
}
.top .works__inner__content .meta .date {
  color: #999;
  font-size: 14px;
  font-weight: 500;
}
.top .works__inner__content .title {
  font-weight: bold;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .top .works__inner__content .title {
    font-size: 18px;
  }
}
.top .works__inner__content .tag {
  font-size: 12px;
  color: #999;
}
.top .works__btn {
  position: absolute;
  width: 30px;
  height: 30px;
  background: url(../images/arrow_blue_a.svg) no-repeat center center/contain;
  bottom: 20px;
  right: 20px;
}
.top .faq {
  background-color: var(--c_gray);
  padding: 100px 0 20px;
}
@media screen and (max-width: 768px) {
  .top .faq {
    padding: 22vw 0 0vw;
  }
}
.top .faq__inner {
  width: min(100%, 1120px);
  margin: 0 auto 0px;
}
@media screen and (max-width: 1440px) {
  .top .faq__inner {
    padding: 0 20px;
  }
}
.top .faq__block {
  background-color: var(--c_white);
  border-radius: 16px;
  margin-bottom: 37px;
  padding: 30px 40px;
}
.top .faq__block:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .top .faq__block {
    padding: 30px;
  }
  .top .faq__block:nth-child(n+3) {
    display: none;
  }
}
.top .faq__block dt {
  color: var(--c_blue_dark);
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.top .faq__block dt:before {
  content: "";
  background: url(../images/icon-faq.svg) no-repeat;
  background-size: 100%;
  width: 34px;
  height: 34px;
  margin-right: 20px;
}
.top .faq__block dt span {
  width: calc(100% - 34px);
}
.top .faq__block dd {
  font-size: 16px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .top .faq__more-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: clamp(0px, 8.8vw, 33px) auto 0;
    padding: clamp(0px, 4.2666666667vw, 16px) clamp(0px, 10.6666666667vw, 40px);
    background-color: var(--c_white);
    color: var(--c_blue_dark);
    border: 1px solid var(--c_blue_dark);
    border-radius: 100px;
    font-size: clamp(0px, 4.8vw, 18px);
    font-weight: 700;
    cursor: pointer;
    box-shadow: 1px 2px 6px rgba(0, 0, 0, 0.15);
  }
  .top .faq__more-btn:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 768px) {
  .top .faq__inner.is-open .faq__block:nth-child(n+3) {
    display: block;
  }
}
.top .faq__lead {
  text-align: center;
  font-weight: bold;
  letter-spacing: 10%;
  line-height: 2.5;
  font-size: 20px;
  margin-top: 130px;
}
@media screen and (max-width: 768px) {
  .top .faq__lead {
    font-size: max(12px, 3.8666666667vw);
    margin-top: clamp(0px, 24vw, 90px);
  }
}
.top .contact {
  background-color: #f6f6f6;
  background-image: url(../images/footer-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  position: relative;
  padding: 149px 0 100px;
}
@media screen and (max-width: 1000px) {
  .top .contact {
    padding: 149px 20px 100px;
  }
}
@media screen and (max-width: 768px) {
  .top .contact {
    padding: 149px 0 100px;
    padding: clamp(0px, 34.9333333333vw, 131px) 0 clamp(0px, 28.2666666667vw, 106px);
    background-image: url(../images/footer-bg-02.webp);
    background-position: center calc(50% + clamp(8px, 62px - 8.9vw, 18px));
    background-size: clamp(1248px, 130vw + 741px, 1740px) auto;
  }
}
.top .contact__inner {
  display: flex;
  justify-content: space-between;
  width: min(100%, 980px);
  margin-inline: auto;
  padding: 46px 76px 46px 66px;
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.8);
  position: relative;
}
@media screen and (max-width: 768px) {
  .top .contact__inner {
    width: calc(100% - 60px);
    padding: 7.6vw 7.6vw 9.5vw 7.6vw;
    flex-wrap: wrap;
    position: relative;
  }
}
.top .contact__inner .title__block__row {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .top .contact__inner .title__block__row {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
}
.top .contact__inner .title__block__row .title__wrapper {
  display: flex;
  gap: 14px;
}
@media screen and (max-width: 768px) {
  .top .contact__inner .title__block__row .title__wrapper {
    flex-direction: column;
    gap: 14px;
  }
}
.top .contact__inner .title__block__row .en {
  line-height: 1;
  font-size: clamp(46px, 4.8611111111vw, 70px);
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .top .contact__inner .title__block__row .en {
    font-size: 12.2666666667vw;
  }
}
.top .contact__inner .title__block__row .ja {
  margin-top: 26px;
}
@media screen and (max-width: 768px) {
  .top .contact__inner .title__block__row .ja {
    margin-top: 0;
  }
}
.top .contact__inner .title__block__row .staff-label {
  background: #FFF28D;
  border-radius: 8px;
  padding: 4px 31px 4px 65px;
  width: fit-content;
  margin-top: 23px;
  position: relative;
  font-size: 16px;
  letter-spacing: 0.2em;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .top .contact__inner .title__block__row .staff-label {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0;
    font-size: 3.7333333333vw;
    width: auto;
    padding: 4px 4.5333333333vw 4px 13.3333333333vw;
    white-space: nowrap;
  }
}
.top .contact__inner .title__block__row .staff-label::before {
  position: absolute;
  content: "";
  width: 25px;
  height: 28px;
  top: -4px;
  left: 25px;
  background: url(../images/icon_staff.svg) no-repeat center center/contain;
}
@media screen and (max-width: 768px) {
  .top .contact__inner .title__block__row .staff-label::before {
    left: 5.6vw;
    width: 5.6vw;
    height: 6.1333333333vw;
  }
}
.top .contact__inner .title__block__row .staff-label br {
  display: none;
}
@media (max-width: 900px) {
  .top .contact__inner .title__block__row .staff-label br {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .top .contact__inner .title__block__row .staff-label br {
    display: none;
  }
}
.top .contact__inner .btn {
  width: 315px;
  height: 69px;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .top .contact__inner .btn {
    width: 100%;
    font-size: 4.5333333333vw;
    height: 14.9333333333vw;
  }
}
.top .contact__cta {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top .contact__cta {
    width: 100%;
  }
}
.top .contact__cta__txt {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
  letter-spacing: 20%;
}
@media screen and (max-width: 768px) {
  .top .contact__cta__txt {
    font-size: 4.1vw;
    font-weight: bold;
  }
}
.top .bg__object.bg-yellow {
  top: 695px;
  right: -166px;
}
@media screen and (max-width: 768px) {
  .top .bg__object.bg-yellow {
    top: 841px;
  }
}
.top .bg__object.bg-pink {
  top: 199px;
  left: -150px;
}
@media screen and (max-width: 768px) {
  .top .bg__object.bg-pink {
    top: 200px;
    left: -173px;
  }
}
.top .bg__object.bg-blue {
  top: 0px;
  right: -386px;
}
@media screen and (max-width: 768px) {
  .top .bg__object.bg-blue {
    right: -196px;
    top: 0px;
  }
}
.top .bg__object.bg-green {
  top: -164px;
  left: -165px;
}
@media screen and (max-width: 768px) {
  .top .bg__object.bg-green {
    left: -18.5vw;
    top: -52px;
  }
}
.top .bg__object.bg-orange {
  bottom: -226px;
  right: -157px;
}
@media screen and (max-width: 768px) {
  .top .bg__object.bg-orange {
    right: -18.5vw;
    bottom: -22vw;
  }
}
.top .bg__object.bg-paint-blue {
  top: 437px;
  right: 227px;
}
@media screen and (max-width: 768px) {
  .top .bg__object.bg-paint-blue {
    top: 320px;
    right: 30px;
  }
}
.top .bg__object.bg-paint-yellow {
  top: 854px;
  right: 417px;
}
@media screen and (max-width: 768px) {
  .top .bg__object.bg-paint-yellow {
    top: 800px;
  }
}
.top .bg__object.bg-paint-purple {
  bottom: -18px;
  right: 535px;
}

.hover:hover {
  font-weight: bold;
  text-decoration: underline;
}

.linkhover {
  position: relative;
  font-weight: 400;
}
.linkhover::after {
  content: "";
  position: absolute;
  bottom: min(-0.1388888889vw, -2px);
  left: 0%;
  width: 100%;
  height: 1px;
  border-radius: 100px;
  background-color: #2D2D2D;
  transition: 0.2s;
}
.linkhover:hover {
  font-weight: bold;
}
.linkhover:hover::after {
  width: 0%;
}

.exlink::after {
  content: "";
  background: url(../images/icon-exlink.svg) no-repeat;
  background-size: 100%;
  display: inline-block;
  vertical-align: baseline;
  width: 21px;
  height: 21px;
  margin-left: 5px;
  position: relative;
  top: 2px;
}

/* =========================================
   固定ページ
========================================= */
.page {
  padding-top: 104px;
  overflow-x: hidden;
}
@media screen and (max-width: 1400px) {
  .page {
    padding-top: 7vw;
  }
}
@media screen and (max-width: 768px) {
  .page {
    padding-top: 17.0666666667vw;
  }
}
.page .title__block__row {
  width: min(100%, 1120px);
  margin-inline: auto;
  margin-bottom: 28px;
  display: flex;
}
.page .title__block__row::before {
  content: "";
  background: url(../images/icon-company-ttl.webp) no-repeat;
  background-size: 100%;
  width: 44px;
  height: 36px;
  display: inline-block;
  margin-top: 16px;
  margin-right: 16px;
}
@media screen and (max-width: 768px) {
  .page .title__block__row::before {
    width: 33px;
    height: 27px;
    margin-right: 11px;
  }
}
.page .title__block__row__inner .en {
  font-family: "Zen Maru Gothic", "Solway", serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -4%;
  color: #9C9C9C;
  padding-left: 0.2em;
}
.page .title__block__row__inner .ja {
  font-weight: 400;
  font-size: clamp(30px, 2.5vw, 36px);
  letter-spacing: 10%;
  line-height: 180%;
}
.page .mv {
  width: min(100%, 1120px);
  margin-inline: auto;
  min-width: 0;
  z-index: 2;
}
@media screen and (max-width: 1120px) {
  .page .mv {
    padding: 0 20px;
  }
}
.page .mv__inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 104px 0 62px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .page .mv__inner {
    padding: 32px 0 31px;
  }
}
.page .mv__inner .en {
  font-size: 70px;
  margin-right: 24px;
  font-family: "Zen Maru Gothic", "Solway", serif;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .page .mv__inner .en {
    font-size: 38px;
    width: 100%;
    line-height: 1.2;
  }
}
.page .mv__inner .ja {
  font-size: 16px;
  padding-top: 15px;
}
@media screen and (max-width: 768px) {
  .page .mv__inner .ja {
    font-size: 14px;
    padding-top: 10px;
  }
}
.page .mv .breadcrumb {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  overflow-x: auto;
  overflow-y: hidden;
  max-width: 100%;
  min-width: 0;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}
.page .mv .breadcrumb li {
  font-size: 14px;
  flex: 0 0 auto;
}
.page .mv .breadcrumb li:first-child {
  margin-left: auto;
}
.page .mv .breadcrumb li:first-of-type::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--c_blue_dark);
  vertical-align: middle;
  margin-right: 10px;
}
.page .mv .breadcrumb li:has(a)::after {
  content: "-";
  color: #999;
  margin: 0 8px;
}
.page .mv .breadcrumb li a {
  color: #787878;
  border-bottom: 1px solid;
  transition: ease 0.3;
}
.page .mv .breadcrumb li a:hover {
  border-bottom: 0;
}
.page .mv .bg__object.bg-paint-purple {
  bottom: 51px;
  right: 535px;
}
@media screen and (max-width: 768px) {
  .page .mv .bg__object.bg-paint-purple {
    width: 48px;
    height: 48px;
    bottom: auto;
    top: 54px;
    right: auto;
    left: 203px;
  }
}
.page .mv .bg__object.bg-paint-lightblue {
  top: -39px;
  right: 227px;
  transform: rotate(62.65deg);
}
@media screen and (max-width: 768px) {
  .page .mv .bg__object.bg-paint-lightblue {
    width: 75px;
    height: 78px;
    top: -32px;
    right: -6px;
  }
}
.page .company {
  position: relative;
  background-color: var(--c_white);
}
.page .company .philosophy__inner {
  max-width: 1120px;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 1120px) {
  .page .company .philosophy__inner {
    padding: 0 20px;
  }
}
.page .company .philosophy__inner .title__block__row {
  padding-left: 12px;
}
@media screen and (max-width: 768px) {
  .page .company .philosophy__inner .title__block__row {
    padding-left: 0;
  }
}
.page .company .philosophy__lead {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .page .company .philosophy__lead {
    margin-bottom: 25.3333333333vw;
  }
}
.page .company .philosophy__lead picture {
  max-width: 950px;
  margin-inline: auto;
  display: block;
}
@media screen and (max-width: 768px) {
  .page .company .philosophy__lead picture {
    margin-bottom: 13px;
  }
}
.page .company .philosophy__lead .text {
  position: relative;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 49px;
  letter-spacing: 27%;
}
@media screen and (max-width: 768px) {
  .page .company .philosophy__lead .text {
    font-size: 3.7333333333vw;
    line-height: 2.3;
  }
}
.page .company .message {
  position: relative;
}
@media screen and (max-width: 1120px) {
  .page .company .message {
    padding: 0 20px;
  }
}
.page .company .message__inner {
  max-width: 1120px;
  width: 100%;
  margin-inline: auto;
  margin-bottom: 100px;
  background-color: rgba(246, 246, 246, 0.8);
  padding: 56px;
  border-radius: 16px;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(14px);
}
@media screen and (max-width: 768px) {
  .page .company .message__inner {
    padding: 32px 20px;
    margin-bottom: 26.6666666667vw;
  }
}
.page .company .message__inner .title__block__row {
  margin-bottom: 24px;
}
.page .company .message__inner .title__block__row::before {
  content: none;
}
.page .company .message__text {
  font-size: 16px;
  margin-bottom: 60px;
  line-height: 180%;
}
@media screen and (max-width: 768px) {
  .page .company .message__text {
    margin-bottom: 10.6666666667vw;
  }
}
.page .company .message__text p {
  margin-bottom: 24px;
}
.page .company .message__ceo {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .page .company .message__ceo {
    flex-wrap: wrap;
  }
}
.page .company .message__ceo__meta {
  width: 230px;
}
@media screen and (max-width: 768px) {
  .page .company .message__ceo__meta {
    margin: 0 auto 40px;
  }
}
.page .company .message__ceo__meta picture {
  margin-bottom: 16px;
}
.page .company .message__ceo__meta .name {
  margin-top: 16px;
  text-align: center;
}
.page .company .message__ceo__meta .name span {
  font-weight: bold;
}
.page .company .message__ceo__career {
  width: 700px;
}
.page .company .message__ceo__career__block {
  font-size: 16px;
}
.page .company .message__ceo__career__title {
  font-size: 20px;
  font-weight: bold;
  line-height: 180%;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .page .company .message__ceo__career__title {
    margin-bottom: 12px;
  }
}
.page .company .message__ceo__career__text {
  font-size: 16px;
  line-height: 180%;
  margin-bottom: 12px;
}
.page .company .message__ceo__career__subtitle {
  font-size: 16px;
  font-weight: bold;
  line-height: 180%;
}
.page .company .message__ceo__career__subtext {
  font-size: 16px;
  line-height: 180%;
  margin-bottom: 12px;
}
.page .company .message__ceo__career__subtext:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 1120px) {
  .page .company .company__info {
    padding: 0 20px;
  }
}
.page .company .company__info .title__block__row {
  padding-left: 12px;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .page .company .company__info .title__block__row {
    padding-left: 0;
    margin-bottom: 40px;
  }
}
.page .company .company__info__profile {
  max-width: 1120px;
  width: 100%;
  margin-inline: auto;
  margin-bottom: 110px;
}
@media screen and (max-width: 768px) {
  .page .company .company__info__profile {
    margin-bottom: 18.6666666667vw;
  }
}
.page .company .company__info__profile dl {
  display: flex;
  border-bottom: 2px solid #EAEAEA;
}
@media screen and (max-width: 768px) {
  .page .company .company__info__profile dl {
    flex-wrap: wrap;
  }
}
.page .company .company__info__profile dl:first-of-type {
  border-top: 2px solid #EAEAEA;
}
.page .company .company__info__profile dl:nth-last-of-type(odd) {
  background-color: #F6F6F6;
}
.page .company .company__info__profile dl dt, .page .company .company__info__profile dl dd {
  padding: 24px 24px;
  line-height: 180%;
}
@media screen and (max-width: 768px) {
  .page .company .company__info__profile dl dt, .page .company .company__info__profile dl dd {
    padding: 16px;
  }
}
.page .company .company__info__profile dl dt {
  width: 230px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .page .company .company__info__profile dl dt {
    width: 100%;
    padding-bottom: 8px;
  }
}
.page .company .company__info__profile dl dd {
  width: 100%;
}
.page .company .company__info__profile dl dd .tel {
  text-decoration: none;
  position: relative;
  font-weight: 400;
}
.page .company .company__info__profile dl dd .tel::after {
  content: "";
  position: absolute;
  bottom: min(-0.1388888889vw, -2px);
  left: 0%;
  width: 0;
  height: 1px;
  border-radius: 100px;
  background-color: #2D2D2D;
  transition: 0.2s;
}
.page .company .company__info__profile dl dd .tel:hover {
  font-weight: bold;
}
.page .company .company__info__profile dl dd .tel:hover::after {
  width: 100%;
}
.page .company .company__info__profile dl dd h3 {
  font-weight: bold;
}
.page .company .company__info__profile dl dd p {
  font-weight: 400;
  margin-bottom: 1em;
}
.page .company .company__info__profile dl dd p:last-of-type {
  margin-bottom: 0;
}
.page .company .staffinfo__wrap {
  max-width: 1120px;
  width: 100%;
  position: relative;
  margin-inline: auto;
  margin-bottom: 100px;
}
@media screen and (max-width: 1120px) {
  .page .company .staffinfo__wrap {
    padding: 0 20px;
    margin-bottom: 11.4666666667vw;
  }
}
.page .company .staffinfo__inner {
  background: rgba(246, 246, 246, 0.8);
  backdrop-filter: blur(14px);
  border-radius: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.page .company .staffinfo__left {
  width: 55.7%;
  padding: 64px 0px 64px 71px;
}
@media screen and (max-width: 1040px) {
  .page .company .staffinfo__left {
    width: calc(100% - 460px);
  }
}
@media screen and (max-width: 768px) {
  .page .company .staffinfo__left {
    width: 100%;
    padding: 8.8vw 9.3333333333vw 8vw 8vw;
  }
}
.page .company .staffinfo__left .title__block__row {
  margin-bottom: 16px;
}
.page .company .staffinfo__left .title__block__row .ja {
  font-size: 28px;
}
.page .company .staffinfo__left .title__block__row::before {
  content: none;
}
@media screen and (max-width: 768px) {
  .page .company .staffinfo__left .title__block__row {
    margin-bottom: 3.7333333333vw;
  }
}
.page .company .staffinfo__left .btn {
  width: 237px;
  font-size: 18px;
  padding: 10px 10px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .page .company .staffinfo__left .btn {
    width: 63.2vw;
    font-size: max(1.1111111111vw, 16px);
  }
}
.page .company .staffinfo__text {
  margin-bottom: 30px;
  line-height: 34px;
  font-weight: 500;
  letter-spacing: 0.18em;
}
.page .company .staffinfo__right {
  width: 40.2%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .page .company .staffinfo__right {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
}
.page .company .staffinfo__right figure {
  position: absolute;
}
.page .company .staffinfo__right figure.img-1 {
  width: min(19.4444444444vw, 280px);
  width: 280px;
  top: 89px;
  right: 171px;
}
@media screen and (max-width: 768px) {
  .page .company .staffinfo__right figure.img-1 {
    position: relative;
    right: auto;
    top: 0;
    left: 0;
    padding: 32.2666666667vw 0 37.3333333333vw 10.4vw;
    width: 68.2666666667vw;
  }
}
.page .company .staffinfo__right figure.img-2 {
  width: min(10.2083333333vw, 147px);
  width: 147px;
  top: 22px;
  right: 0;
}
@media screen and (max-width: 768px) {
  .page .company .staffinfo__right figure.img-2 {
    top: 0;
    width: 42.4vw;
  }
}
.page .company .staffinfo__right figure.img-3 {
  width: min(12.7777777778vw, 184px);
  width: 184px;
  bottom: 26px;
  right: 38px;
}
@media screen and (max-width: 768px) {
  .page .company .staffinfo__right figure.img-3 {
    bottom: 36px;
    width: 49.0666666667vw;
  }
}
.page .company .bg__object.bg-blue {
  width: 413px;
  height: 193px;
  top: -87px;
  right: 31px;
}
@media screen and (max-width: 768px) {
  .page .company .bg__object.bg-blue {
    width: 54.9333333333vw;
    height: 25.6vw;
    top: -38px;
    top: -10.1333333333vw;
    right: -47px;
  }
}
.page .company .bg__object.bg-pink {
  width: 310px;
  height: 445px;
  top: auto;
  bottom: 100px;
  left: 52px;
  transform: rotate(-16deg);
}
@media screen and (max-width: 768px) {
  .page .company .bg__object.bg-pink {
    width: 42.1333333333vw;
    height: 60.2666666667vw;
    bottom: 41%;
    left: -52px;
  }
}
.page .company .bg__object.bg-orange {
  width: 338px;
  height: 239px;
  top: -90px;
  right: 251px;
}
@media screen and (max-width: 768px) {
  .page .company .bg__object.bg-orange {
    width: 32.2666666667vw;
    height: 40vw;
    right: -64px;
    top: -13.6vw;
  }
}
.page .company .bg__object.bg-green {
  width: 277px;
  height: 224px;
  top: auto;
  bottom: -103px;
  left: 227px;
  transform: rotate(58deg);
}
@media screen and (max-width: 768px) {
  .page .company .bg__object.bg-green {
    width: 36.8vw;
    height: 29.8666666667vw;
    right: auto;
    left: -36px;
    bottom: -16vw;
  }
}
.page .company .bg__object.bg-paint-blue {
  top: 437px;
  right: 227px;
}
@media screen and (max-width: 768px) {
  .page .company .bg__object.bg-paint-blue {
    top: 320px;
    right: 30px;
  }
}
.page .company .bg__object.bg-paint-blue-2 {
  bottom: -10px;
  right: 254px;
}
@media screen and (max-width: 768px) {
  .page .company .bg__object.bg-paint-blue-2 {
    visibility: hidden;
  }
}
.page .company .bg__object.bg-paint-yellow {
  top: 854px;
  right: 417px;
}
@media screen and (max-width: 768px) {
  .page .company .bg__object.bg-paint-yellow {
    top: 800px;
  }
}
.page .company .bg__object.bg-paint-yellow-2 {
  top: -30px;
  left: 296px;
}
@media screen and (max-width: 768px) {
  .page .company .bg__object.bg-paint-yellow-2 {
    visibility: hidden;
  }
}
.page .company .bg__object.bg-paint-purple {
  bottom: 51px;
  right: 535px;
}
@media screen and (max-width: 768px) {
  .page .company .bg__object.bg-paint-purple {
    width: 48px;
    height: 48px;
    bottom: auto;
    top: 54px;
    right: auto;
    left: 203px;
  }
}
.page .company .bg__object.bg-paint-lightblue {
  top: -39px;
  right: 227px;
  transform: rotate(62.65deg);
}
@media screen and (max-width: 768px) {
  .page .company .bg__object.bg-paint-lightblue {
    width: 75px;
    height: 78px;
    top: -32px;
    right: -6px;
  }
}
.page .our-team .bg__object.bg-paint-purple {
  bottom: 51px;
  right: 535px;
}
@media screen and (max-width: 768px) {
  .page .our-team .bg__object.bg-paint-purple {
    width: 48px;
    height: 48px;
    bottom: auto;
    top: 54px;
    right: auto;
    left: 203px;
  }
}
.page .our-team .bg__object.bg-paint-lightblue {
  top: -39px;
  right: 227px;
  transform: rotate(62.65deg);
}
@media screen and (max-width: 768px) {
  .page .our-team .bg__object.bg-paint-lightblue {
    width: 75px;
    height: 78px;
    top: -32px;
    right: -6px;
  }
}
@media screen and (max-width: 768px) {
  .page .our-team .title__block__row {
    margin-bottom: 36px;
  }
}
.page .our-team .title__block__row::before {
  flex-shrink: 0;
}
.page .our-team__contents {
  background: #F6F6F6;
}
.page .our-team__inner {
  margin: 0 auto;
  max-width: 1160px;
  padding: 60px 20px 100px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media screen and (max-width: 768px) {
  .page .our-team__inner {
    padding-top: 30px;
    gap: 60px;
  }
}
.page .our-team__lead {
  margin-bottom: 35px;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .page .our-team__lead {
    line-height: 1.8;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .page .our-team .talent-reporters-announcers .title__block__row h2 {
    font-size: 27px;
    letter-spacing: 0;
  }
}
.page .our-team .staff-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4.1666666667vw 5.5555555556vw;
}
@media screen and (max-width: 768px) {
  .page .our-team .staff-list {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.page .our-team .staff-list li {
  position: relative;
}
.page .our-team .staff-list li .bg__object.bg-paint-lightblue {
  top: 88px;
  right: 73px;
}
.page .our-team .staff-list li .bg__object.bg-paint-yellow {
  top: auto;
  right: auto;
  bottom: 102px;
  left: 73px;
}
.page .our-team .profile-card {
  background: #fff;
  border-radius: 16px;
  padding: min(30px, 2.0833333333vw);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: min(20px, 1.3888888889vw);
  position: relative;
}
@media screen and (max-width: 768px) {
  .page .our-team .profile-card {
    padding: min(20px, 5.1282051282vw);
    gap: 20px;
  }
}
.page .our-team .profile-card span {
  color: var(--c_blue_dark);
}
.page .our-team .profile-card .bg-paint-profile {
  background-size: 100%;
  width: 100px;
  height: 94px;
}
@media screen and (max-width: 768px) {
  .page .our-team .profile-card .bg-paint-profile {
    background-size: 100%;
    width: 90px;
    height: 84px;
  }
}
.page .our-team .profile-card__top {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .page .our-team .profile-card__top {
    gap: 17px;
  }
}
.page .our-team .profile-card__text-wrap {
  margin-top: min(65px, 4.5138888889vw);
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .page .our-team .profile-card__text-wrap {
    margin-top: 2px;
  }
}
.page .our-team .profile-card__text-wrap .name-ja {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 3px;
}
@media screen and (max-width: 768px) {
  .page .our-team .profile-card__text-wrap .name-ja {
    font-size: 24px;
  }
}
.page .our-team .profile-card__text-wrap .name-en {
  font-family: "Zen Maru Gothic", "Solway", serif;
  font-size: 14px;
  margin-bottom: 14px;
  letter-spacing: 0;
  font-weight: 500;
  color: var(--c_blue_dark);
}
@media screen and (max-width: 768px) {
  .page .our-team .profile-card__text-wrap .name-en {
    margin-bottom: 10px;
  }
}
.page .our-team .profile-card__text-wrap .text {
  font-size: 14px;
}
.page .our-team .profile-card__img {
  width: min(200px, 13.8888888889vw);
  aspect-ratio: 200/240;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .page .our-team .profile-card__img {
    width: 30.7692307692vw;
    border-radius: 7.4px;
    aspect-ratio: 120/144;
    height: fit-content;
  }
}
.page .our-team .profile-card__img img {
  width: 100%;
  height: 100%;
}
.page .our-team .profile-card__bottom {
  border-radius: 12px;
  background-color: #F6F6F6;
  padding: min(20px, 1.3888888889vw);
  flex: 1;
}
@media screen and (max-width: 768px) {
  .page .our-team .profile-card__bottom {
    padding: 20px;
  }
}
.page .our-team .profile-card__bottom ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.page .our-team .profile-card__bottom li {
  padding-left: 14px;
  position: relative;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0;
}
.page .our-team .profile-card__bottom li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #2D2D2D;
}
.page .our-team .profile-card__label {
  font-weight: 700;
}
.page .our-team .profile-card__value.--color {
  display: flex;
  align-items: center;
  gap: 5px;
}
.page .our-team .profile-card__value.--color::before {
  content: "";
  width: 27px;
  height: 12px;
  background: #fff;
}
.page .our-team .profile-card--miyazaki .name-en {
  background: linear-gradient(90deg, #29DDCC, #D596FF, #FFA82F);
  background: linear-gradient(90deg, var(--c_blue_dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page .our-team .profile-card--miyazaki .--color::before {
  background: linear-gradient(90deg, #29DDCC, #D596FF, #FFA82F);
}
.page .our-team .profile-card--miyazaki .bg-paint-profile {
  background: url(../images/staff_miyazaki_paint.svg) no-repeat center/100%;
  top: 32%;
  left: 34%;
}
@media screen and (max-width: 768px) {
  .page .our-team .profile-card--miyazaki .bg-paint-profile {
    top: 22%;
    left: 36%;
    z-index: 0;
  }
}
.page .our-team .profile-card--makishima .name-ja span,
.page .our-team .profile-card--makishima .name-en {
  color: #9C9C9C;
  color: var(--c_blue_dark);
}
.page .our-team .profile-card--makishima li::before {
  background: #9C9C9C;
  background: #373737;
}
.page .our-team .profile-card--makishima .--color::before {
  border: 1px solid #D9D9D9;
}
.page .our-team .profile-card--makishima .bg-paint-profile {
  background: url(../images/staff_white_paint.svg) no-repeat center/100%;
  top: 8%;
  left: 34%;
}
@media screen and (max-width: 768px) {
  .page .our-team .profile-card--makishima .bg-paint-profile {
    top: 4%;
    left: 43%;
  }
}
.page .our-team .profile-card--fukuda .name-ja span,
.page .our-team .profile-card--fukuda .name-en {
  color: #22AC38;
  color: var(--c_blue_dark);
}
.page .our-team .profile-card--fukuda li::before {
  background: #22AC38;
  background: #373737;
}
.page .our-team .profile-card--fukuda .--color::before {
  background: #22AC38;
}
.page .our-team .profile-card--fukuda .bg-paint-profile {
  background: url(../images/staff_green_paint.svg) no-repeat center/100%;
  top: 26%;
  left: 34%;
}
@media screen and (max-width: 768px) {
  .page .our-team .profile-card--fukuda .bg-paint-profile {
    top: 16%;
    left: 37%;
    z-index: 0;
  }
}
.page .our-team .profile-card--dateki .--color::before {
  background: #373737;
}
.page .our-team .profile-card--dateki .bg-paint-profile {
  background: url(../images/staff_black_paint.svg) no-repeat center/100%;
  top: 73%;
  left: 67%;
}
@media screen and (max-width: 768px) {
  .page .our-team .profile-card--dateki .bg-paint-profile {
    top: 71%;
    left: 64%;
  }
}
.page .our-team .profile-card--kusuda .name-ja span,
.page .our-team .profile-card--kusuda .name-en {
  color: #A489BE;
  color: var(--c_blue_dark);
}
.page .our-team .profile-card--kusuda li::before {
  background: #A489BE;
  background: #373737;
}
.page .our-team .profile-card--kusuda .--color::before {
  background: #A489BE;
}
.page .our-team .profile-card--kusuda .bg-paint-profile {
  background: url(../images/staff_purple_paint.svg) no-repeat center/100%;
  top: 7%;
  left: 33%;
}
@media screen and (max-width: 768px) {
  .page .our-team .profile-card--kusuda .bg-paint-profile {
    top: 4%;
    left: 41%;
  }
}
.page .our-team .profile-card--chinnen .name-ja span,
.page .our-team .profile-card--chinnen .name-en {
  color: #F05962;
  color: var(--c_blue_dark);
}
.page .our-team .profile-card--chinnen li::before {
  background: #F05962;
  background: #373737;
}
.page .our-team .profile-card--chinnen .--color {
  position: relative;
}
.page .our-team .profile-card--chinnen .--color::before {
  background: #fff;
  border: 1px solid #D9D9D9;
}
.page .our-team .profile-card--chinnen .--color::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 13.5px;
  height: 12px;
  background: #F05962;
  z-index: 2;
}
.page .our-team .profile-card--chinnen .bg-paint-profile {
  background: url(../images/staff_red-white_paint.svg) no-repeat center/100%;
  top: 7%;
  left: 34%;
}
@media screen and (max-width: 768px) {
  .page .our-team .profile-card--chinnen .bg-paint-profile {
    top: 4%;
    left: 43%;
  }
}
.page .our-team .profile-card--ogawa .name-ja span,
.page .our-team .profile-card--ogawa .name-en {
  color: #144794;
  color: var(--c_blue_dark);
}
.page .our-team .profile-card--ogawa li::before {
  background: #144794;
  background: #373737;
}
.page .our-team .profile-card--ogawa .--color::before {
  background: #144794;
}
.page .our-team .profile-card--ogawa .bg-paint-profile {
  background: url(../images/staff_navy_paint.svg) no-repeat center/100%;
  top: 29%;
  left: 34%;
}
@media screen and (max-width: 768px) {
  .page .our-team .profile-card--ogawa .bg-paint-profile {
    top: 18%;
    left: 36%;
  }
}
.page .our-team .profile-card--kashiwa .name-ja span,
.page .our-team .profile-card--kashiwa .name-en {
  color: #3582C2;
  color: var(--c_blue_dark);
}
.page .our-team .profile-card--kashiwa li::before {
  background: #3582C2;
  background: #373737;
}
.page .our-team .profile-card--kashiwa .--color::before {
  background: #3582C2;
}
.page .our-team .profile-card--kashiwa .bg-paint-profile {
  background: url(../images/staff_blue_paint.svg) no-repeat center/100%;
  top: 73%;
  left: 66%;
}
@media screen and (max-width: 768px) {
  .page .our-team .profile-card--kashiwa .bg-paint-profile {
    top: 71%;
    left: 63%;
  }
}
.page .our-team .profile-card--miyazaki-mami .name-ja span,
.page .our-team .profile-card--miyazaki-mami .name-en {
  color: #9C9C9C;
  color: var(--c_blue_dark);
}
.page .our-team .profile-card--miyazaki-mami li::before {
  background: #9C9C9C;
  background: #373737;
}
.page .our-team .profile-card--miyazaki-mami .--color::before {
  border: 1px solid #9C9C9C;
}
.page .our-team .profile-card--miyazaki-mami .bg-paint-profile {
  background: url(../images/staff_white_paint.svg) no-repeat center/100%;
  top: 7%;
  left: 34%;
}
@media screen and (max-width: 768px) {
  .page .our-team .profile-card--miyazaki-mami .bg-paint-profile {
    top: 2%;
    left: 41%;
  }
}
.page .our-team .profile-card--sato .name-ja span,
.page .our-team .profile-card--sato .name-en {
  color: #E03F86;
  color: var(--c_blue_dark);
}
.page .our-team .profile-card--sato li::before {
  background: #E03F86;
  background: #373737;
}
.page .our-team .profile-card--sato .--color::before {
  display: none;
}
.page .our-team .profile-card--sato .--color .color-label {
  display: flex;
  gap: 4px;
}
.page .our-team .profile-card--sato .--color .color-label span {
  display: block;
  width: 27px;
  height: 12px;
}
.page .our-team .profile-card--sato .--color .color-label span:nth-child(1) {
  background: #E03F86;
}
.page .our-team .profile-card--sato .--color .color-label span:nth-child(2) {
  background: #2FBEDD;
}
.page .our-team .profile-card--sato .--color .color-label span:nth-child(3) {
  background: #FECF39;
}
.page .our-team .profile-card--sato .bg-paint-profile {
  background: url(../images/staff_pink-blue-yellow_paint.svg) no-repeat center/100%;
  top: 29%;
  left: 35%;
}
@media screen and (max-width: 768px) {
  .page .our-team .profile-card--sato .bg-paint-profile {
    top: 17%;
    left: 38%;
  }
}
.page .contact .form-lead {
  font-weight: 500;
  margin-bottom: 40px;
  font-size: 16px;
}
.page .contact .form__inner {
  max-width: 800px;
  margin: 0 auto 80px;
}
@media screen and (max-width: 820px) {
  .page .contact .form__inner {
    padding: 0 20px;
  }
}
.page .contact .form__inner dl {
  margin-bottom: 40px;
  max-width: 600px;
}
.page .contact .form__inner dl.w100 {
  max-width: 100%;
}
.page .contact .form__inner dl:last-of-type {
  margin-bottom: 50px;
}
.page .contact .form__inner dt {
  margin-bottom: 16px;
  font-weight: bold;
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .page .contact .form__inner dt {
    margin-bottom: 18px;
  }
}
.page .contact .form__inner dd {
  font-size: 16px;
}
.page .contact .form__inner dd textarea {
  height: 120px;
  resize: vertical;
}
.page .contact .form__inner .accpt {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  margin-bottom: 50px;
}
.page .contact .form__inner .accpt .wpcf7-acceptance {
  background-color: #F6F6F6;
  border-radius: 8px;
  padding: 17px 27px 18px 28px;
  font-weight: 500;
  display: inline-flex;
}
@media screen and (max-width: 768px) {
  .page .contact .form__inner .accpt .wpcf7-acceptance {
    display: block;
    padding: 15px 9px 16px 9px;
    font-size: 16px;
    letter-spacing: 0px;
  }
}
.page .contact .form__inner .accpt .wpcf7-acceptance input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border: 1px solid #9f9f9f;
  border-radius: 4px;
  flex-shrink: 0;
  margin-right: 14px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .page .contact .form__inner .accpt .wpcf7-acceptance input[type=checkbox] {
    margin-right: 9px;
  }
}
.page .contact .form__inner .accpt .wpcf7-acceptance input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border: 1px solid #9f9f9f;
  border-radius: 4px;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
}
.page .contact .form__inner .accpt .wpcf7-acceptance input[type=checkbox]:checked {
  background-color: #9f9f9f;
  border-color: #9f9f9f;
}
.page .contact .form__inner .accpt .wpcf7-acceptance input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 7px;
  width: 7px;
  height: 12px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}
.page .contact .form__inner .accpt .policy {
  text-decoration: underline;
}
.page .contact .form__inner .accpt .policy:hover {
  text-decoration: none;
}
.page .contact .form__inner .caution {
  text-align: center;
  margin-bottom: 50px;
  font-size: 12px;
  line-height: 180%;
  font-weight: 500;
}
.page .contact .form__inner .required {
  background-color: var(--c_blue_dark);
  border-radius: 4px;
  padding: 4px 7px;
  color: #fff;
  margin-left: 10px;
  font-size: 13px;
  white-space: nowrap;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .page .contact .form__inner .required {
    padding: 2px 7px;
    margin-left: 6px;
    font-size: 12px;
  }
}
.page .contact .form__inner select {
  color: #9F9F9F;
  appearance: none;
  -webkit-appearance: none;
  background-image: url(../images/icon-pulldown.svg);
  background-repeat: no-repeat;
  background-size: 17px 8px;
  background-position: right 21px center;
  padding-right: 59px;
  cursor: pointer;
}
.page .contact .form__inner select.is-selected {
  color: #2d2d2d;
}
.page .contact .form__inner select option {
  color: #2d2d2d;
}
.page .contact .form__inner input[type=submit] {
  position: relative;
  height: auto;
  padding: 20px 97px 20px 78px;
  margin: 30px auto 0;
  color: #fff;
  background-color: var(--c_blue_dark);
  text-align: center;
  font-size: 20px;
  line-height: 1.5;
  border-radius: 50px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.page .contact .form__inner input[type=submit].btn {
  background-image: url(../images/arrow_white_a.svg);
  background-repeat: no-repeat;
  background-position: right 66px center;
  background-size: 21px;
}
@media screen and (max-width: 768px) {
  .page .contact .form__inner input[type=submit].btn {
    font-size: 18px;
    background-position: right 5.3333333333vw center;
    background-size: 5.3333333333vw;
    padding-right: 14.4vw;
    padding-left: 10.6666666667vw;
  }
}
.page .contact .form__inner input[type=submit].btn:hover {
  background-color: var(--c_white);
  color: var(--c_blue_dark);
  border: 1px solid var(--c_blue_bright);
  background-image: url(../images/arrow_blue_a.svg);
}
.page .contact.error .form__inner .wpcf7-not-valid {
  background-color: #FFF3F3;
}
.page .contact.error .form__inner .wpcf7-not-valid-tip {
  display: flex;
  align-items: center;
  color: #D93025;
  font-size: 16px;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 0;
  margin-top: 8px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .page .contact.error .form__inner .wpcf7-not-valid-tip {
    align-items: flex-start;
  }
}
.page .contact.error .form__inner .wpcf7-not-valid-tip::before {
  content: "";
  background: url(../images/icon-wpcf7-not-valid.svg) no-repeat;
  background-size: 100%;
  width: 17px;
  height: 17px;
  margin-right: 5px;
}
@media screen and (max-width: 768px) {
  .page .contact.error .form__inner .wpcf7-not-valid-tip::before {
    margin-top: 7px;
  }
}
.page .contact.error .form__inner .accpt .wpcf7-not-valid-tip {
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .page .contact.error .form__inner .accpt .wpcf7-not-valid-tip {
    justify-content: flex-start;
    text-align: left;
  }
}
.page .contact.confirm .form__inner dl {
  max-width: 800px;
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid #EAEAEA;
}
@media screen and (max-width: 768px) {
  .page .contact.confirm .form__inner dl {
    flex-wrap: wrap;
  }
}
.page .contact.confirm .form__inner dl:first-of-type {
  border-top: 2px solid #EAEAEA;
}
.page .contact.confirm .form__inner dl:nth-last-of-type(even) {
  background-color: #F6F6F6;
}
.page .contact.confirm .form__inner dt, .page .contact.confirm .form__inner dd {
  line-height: 180%;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .page .contact.confirm .form__inner dt, .page .contact.confirm .form__inner dd {
    padding: 16px;
  }
}
.page .contact.confirm .form__inner dt {
  margin-bottom: 0;
  padding: 24px 0px 24px 24px;
  width: 27%;
}
@media screen and (max-width: 768px) {
  .page .contact.confirm .form__inner dt {
    width: 100%;
    padding: 24px 24px 6px 24px;
  }
}
.page .contact.confirm .form__inner dd {
  padding: 24px 24px 24px 0px;
  width: 69.4%;
}
@media screen and (max-width: 768px) {
  .page .contact.confirm .form__inner dd {
    padding: 0px 24px 24px 24px;
    width: 100%;
  }
}
.page .contact.confirm .form__inner input[type=submit].btn {
  margin: 50px auto 0;
}
.page .contact.thanks .form__inner .form-thx {
  margin-bottom: 9px;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .page .contact.thanks .form__inner .form-thx {
    font-size: 20px;
  }
}
.page .contact.thanks .form__inner .form-lead {
  margin-bottom: 83px;
}
@media screen and (max-width: 768px) {
  .page .contact.thanks .form__inner .form-lead {
    margin-bottom: 40px;
  }
}
.page .contact.thanks .form__inner .btn {
  padding: 10px 30px 11px 34px;
  width: fit-content;
  height: auto;
  margin: 50px auto 0;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .page .contact.thanks .form__inner .btn {
    padding: 2.6666666667vw 8vw 2.9333333333vw 9.0666666667vw;
  }
}
.page .contact.thanks .form__inner .btn span::before {
  content: "";
  width: min(1.3888888889vw, 20px);
  height: min(1.3888888889vw, 20px);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.3s ease;
  background-image: url(../images/arrow_white_b.svg);
  transform: scaleX(-1) scaleY(1);
}
@media screen and (max-width: 768px) {
  .page .contact.thanks .form__inner .btn span::before {
    width: 5.3333333333vw;
    height: 5.3333333333vw;
  }
}
.page .contact.thanks .form__inner .btn span::after {
  content: none;
}
.page .contact.thanks .form__inner .btn:hover {
  background-color: var(--c_white);
  color: var(--c_blue_dark);
}
.page .contact.thanks .form__inner .btn:hover span::before {
  background-image: url(../images/arrow_blue_b.svg);
}
.page .contact.thanks .form__flow {
  counter-reset: flow-count;
  display: flex;
  flex-direction: column;
}
.page .contact.thanks .form__flow h3 {
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 24px;
}
.page .contact.thanks .form__flow .block {
  counter-increment: flow-count;
  background-color: var(--c_gray);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
  position: relative;
}
.page .contact.thanks .form__flow .block__body {
  width: calc(100% - 49px);
  letter-spacing: 0;
}
.page .contact.thanks .form__flow .block::before {
  content: counter(flow-count);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background-image: url(../images/icon-thx-flow.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-right: 15px;
}
.page .contact.thanks .form__flow .block:last-child {
  margin-bottom: 0;
}
.page .contact.thanks .form__flow .block .ttl {
  font-size: 16px;
  font-weight: 500;
  line-height: 180%;
}
.page .contact.thanks .form__flow .block p {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 160%;
}
.page .contact.thanks .form__flow .block:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 31px;
  top: 50px;
  width: 4px;
  height: 100%;
  background-color: #F6F6F6;
}
.page input[type=text],
.page input[type=password],
.page input[type=datetime],
.page input[type=datetime-local],
.page input[type=date],
.page input[type=month],
.page input[type=time],
.page input[type=week],
.page input[type=number],
.page input[type=email],
.page input[type=url],
.page input[type=search],
.page input[type=tel],
.page input[type=color],
.page select,
.page textarea,
.page .field {
  padding: 15px 20px 16px;
  display: block;
  border-radius: 8px;
  box-shadow: none;
  border: 0;
  width: 100%;
  background-color: #f6f6f6;
  border: 1px solid #9F9F9F;
  -webkit-transition: background-color 0.24s ease-in-out;
  transition: background-color 0.24s ease-in-out;
}
.page input[type=text]::placeholder,
.page input[type=password]::placeholder,
.page input[type=datetime]::placeholder,
.page input[type=datetime-local]::placeholder,
.page input[type=date]::placeholder,
.page input[type=month]::placeholder,
.page input[type=time]::placeholder,
.page input[type=week]::placeholder,
.page input[type=number]::placeholder,
.page input[type=email]::placeholder,
.page input[type=url]::placeholder,
.page input[type=search]::placeholder,
.page input[type=tel]::placeholder,
.page input[type=color]::placeholder,
.page select::placeholder,
.page textarea::placeholder,
.page .field::placeholder {
  color: #9f9f9f;
}
.page .contact-area {
  background-color: #E9F5FF;
  padding: 60px 0;
}
@media screen and (max-width: 1000px) {
  .page .contact-area {
    padding: 60px 30px;
  }
}
.page .contact-area__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background: #fff;
  max-width: 980px;
  margin-inline: auto;
  border-radius: 16px;
  padding: 35px 0px 42px;
}
.page .contact-area__left {
  width: 50%;
  padding: 0 85px;
  border-right: 2px solid #d9d9d9;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media screen and (max-width: 768px) {
  .page .contact-area__left {
    width: 100%;
    border-right: 0;
    padding: 0 8vw 0;
    border-right: 0;
  }
}
.page .contact-area__left__title {
  text-align: center;
  margin-bottom: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .page .contact-area__left__title {
    margin-bottom: 6.9333333333vw;
  }
}
.page .contact-area__left__title .en {
  font-size: 51px;
  font-weight: 400;
  font-family: "Zen Maru Gothic", "Solway", serif;
}
@media screen and (max-width: 768px) {
  .page .contact-area__left__title .en {
    font-size: 12.2666666667vw;
  }
}
.page .contact-area__left__title .ja {
  font-weight: bold;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .page .contact-area__left__title .ja {
    font-size: 2.8vw;
  }
}
@media screen and (max-width: 768px) {
  .page .contact-area__left::after {
    content: "";
    border-bottom: 2px solid #d9d9d9;
    padding-top: 8vw;
  }
}
.page .contact-area__cta__txt {
  font-size: 16px;
  text-align: center;
  margin-bottom: 18px;
}
@media screen and (max-width: 768px) {
  .page .contact-area__cta__txt {
    font-size: 4.2666666667vw;
  }
}
.page .contact-area__cta .btn {
  padding: 20px;
  height: auto;
  font-size: 20px;
  font-size: clamp(0px, 1.3888888889vw, 20px);
  letter-spacing: 0;
  line-height: 1.4;
}
.page .contact-area__cta .btn span {
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .page .contact-area__cta .btn span {
    font-size: 4.8vw;
  }
}
.page .contact-area__cta .btn span:after {
  background-size: 100%;
  width: min(1.4583333333vw, 21px);
  height: min(1.5277777778vw, 22px);
}
@media screen and (max-width: 768px) {
  .page .contact-area__cta .btn span:after {
    width: 6.6666666667vw;
    height: 6.9333333333vw;
  }
}
.page .contact-area__right {
  width: 50%;
  padding: 0 85px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .page .contact-area__right {
    width: 100%;
    padding: 8vw 8vw 0;
    align-items: stretch;
  }
}
.page .contact-area__right h2 {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .page .contact-area__right h2 {
    margin-bottom: 5.3333333333vw;
    font-size: 6.4vw;
  }
}
.page .contact-area__right .btn {
  background-color: var(--c_white);
  color: var(--c_blue_bright);
  border: 2px solid var(--c_blue_bright);
}
.page .contact-area__right .btn span::after {
  background-image: url(../images/arrow_blue_a.svg);
}
.page .contact-area__right .btn:hover {
  background-color: var(--c_blue_bright);
  color: var(--c_white);
}
.page .contact-area__right .btn:hover span::after {
  background-image: url(../images/arrow_white_a.svg);
}
.page .contact-area .staff-label {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -49px;
  white-space: nowrap;
  background: #FFF28D;
  border-radius: 8px;
  padding: 4px 31px 4px 65px;
  width: fit-content;
  font-size: 16px;
  letter-spacing: 0.2em;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .page .contact-area .staff-label {
    position: absolute;
    margin-top: 0;
    font-size: 3.7333333333vw;
    width: auto;
    padding: 4px 4.5333333333vw 4px 13.3333333333vw;
  }
}
.page .contact-area .staff-label::before {
  position: absolute;
  content: "";
  width: 25px;
  height: 28px;
  top: -4px;
  left: 25px;
  background: url(../images/icon_staff.svg) no-repeat center center/contain;
}
@media screen and (max-width: 768px) {
  .page .contact-area .staff-label::before {
    left: 5.6vw;
    width: 5.6vw;
    height: 6.1333333333vw;
  }
}
.page .contact-area .staff-label br {
  display: none;
}
@media (max-width: 900px) {
  .page .contact-area .staff-label br {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .page .contact-area .staff-label br {
    display: none;
  }
}
.page .news-archive__inner {
  max-width: 1120px;
  margin: 0 auto 70px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1120px) {
  .page .news-archive__inner {
    padding: 0 20px;
    gap: 5%;
  }
}
@media screen and (max-width: 768px) {
  .page .news-archive__inner {
    flex-wrap: wrap;
    gap: 0;
  }
}
.page .news-archive__inner aside .category-list {
  width: 140px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .page .news-archive__inner aside .category-list {
    width: 100%;
    gap: 10px;
    margin-bottom: 40px;
  }
}
.page .news-archive__inner aside .category-list a {
  width: 100%;
  background: #fff;
  border: 1px solid var(--c_blue_dark);
  color: var(--c_blue_dark);
  border-radius: 40px;
  display: flex;
  align-items: center;
  font-weight: 700;
  padding: 8px 24px 9px;
  transition: 0.2s;
}
@media screen and (max-width: 768px) {
  .page .news-archive__inner aside .category-list a {
    width: auto;
    padding: 6px 20px 6px 16px;
    white-space: nowrap;
  }
}
.page .news-archive__inner aside .category-list a::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 7px;
  height: 1px;
  background-color: var(--c_blue_dark);
  margin-right: 8px;
  margin-top: 2px;
}
.page .news-archive__inner aside .category-list a.current, .page .news-archive__inner aside .category-list a:hover {
  color: #fff;
  background: var(--c_blue_dark);
}
.page .news-archive__inner aside .category-list a.current::before, .page .news-archive__inner aside .category-list a:hover::before {
  background-color: var(--c_white);
}
.page .news-archive__inner .news-list {
  max-width: 900px;
  width: 100%;
}
.page .news-archive__inner .news-list__items li .block {
  counter-increment: flow-count;
  background-color: var(--c_gray);
  border-radius: 16px;
  padding: 32px 32px 28px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .page .news-archive__inner .news-list__items li .block {
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 24px;
  }
}
.page .news-archive__inner .news-list__items li .block:hover .title {
  text-decoration: none;
  font-weight: bold;
}
.page .news-archive__inner .news-list__items li .block .date {
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .page .news-archive__inner .news-list__items li .block .date {
    margin-right: 16px;
  }
}
.page .news-archive__inner .news-list__items li .block .category {
  border: 1px solid var(--c_black);
  border-radius: 4px;
  font-size: 11px;
  padding: 2px 2px;
  width: 5.5em;
  text-align: center;
  font-size: 14px;
  align-self: flex-start;
}
.page .news-archive__inner .news-list__items li .block .category.cat_company {
  border-color: var(--c_blue_dark);
  color: var(--c_blue_dark);
}
.page .news-archive__inner .news-list__items li .block .title {
  width: 75%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 768px) {
  .page .news-archive__inner .news-list__items li .block .title {
    width: 100%;
    margin-top: 10px;
    -webkit-line-clamp: 3;
  }
}
.page .news-archive__inner .news-list__items li .block .title span {
  background-image: linear-gradient(var(--c_black), var(--c_black));
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: left bottom;
  transition: background-size 0.2s, font-weight 0.2s;
}
.page .news-archive__inner .news-list__items li .block:hover .title span {
  background-size: 0% 1px;
  font-weight: bold;
}
.page .news-archive__inner .news-list .pagination ul {
  display: flex;
}
.page .news-archive__inner .news-list .pagination ul li .page-numbers {
  align-items: center;
}
.page .news-archive__inner .news-list .pagination ul li .page-numbers.current, .page .news-archive__inner .news-list .pagination ul li .page-numbers:hover {
  text-decoration: none;
}
.page .pagination ul {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .page .pagination ul {
    gap: 8.5333333333vw;
  }
}
.page .pagination ul li .page-numbers {
  padding: 0 0 5px;
  display: inline-flex;
  align-items: center;
  position: relative;
  font-size: 20px;
}
.page .pagination ul li .page-numbers:after {
  content: "";
  position: absolute;
  bottom: min(0.4166666667vw, 6px);
  left: 0%;
  width: 0;
  height: 1px;
  border-radius: 100px;
  background-color: var(--c_black);
  width: 100%;
}
.page .pagination ul li .page-numbers:hover {
  color: var(--c_blue_dark);
}
.page .pagination ul li .page-numbers:hover::after {
  width: 0;
}
.page .pagination ul li .page-numbers.current::after {
  width: 0;
}
.page .pagination ul li .page-numbers.current:hover::after {
  width: 0;
}
.page .pagination ul li .page-numbers.next::before {
  content: "";
  background: url(../images/icon-arrow.svg) no-repeat;
  width: 34px;
  height: 34px;
  background-size: 100%;
  transition: ease 0.2s;
}
.page .pagination ul li .page-numbers.next::after {
  width: 0;
}
.page .pagination ul li .page-numbers.next:hover::before {
  background: url(../images/icon-arrow-hover.svg) no-repeat;
  background-size: 100%;
}
.page .pagination ul li .page-numbers.prev::before {
  content: "";
  background: url(../images/icon-arrow.svg) no-repeat;
  width: 34px;
  height: 34px;
  background-size: 100%;
  transform: scaleX(-1);
  transition: ease 0.2s;
}
.page .pagination ul li .page-numbers.prev::after {
  width: 0;
}
.page .pagination ul li .page-numbers.prev:hover::before {
  background: url(../images/icon-arrow-hover.svg) no-repeat;
  background-size: 100%;
}
.page .news-single {
  background-color: #F6F6F6;
  padding: 80px 0 100px;
}
@media screen and (max-width: 768px) {
  .page .news-single {
    padding: 40px 0 80px;
  }
}
.page .news-single__inner {
  max-width: 1120px;
  margin: 0 auto 80px;
}
@media screen and (max-width: 1120px) {
  .page .news-single__inner {
    padding: 0 20px;
    gap: 5%;
  }
}
@media screen and (max-width: 768px) {
  .page .news-single__inner {
    flex-wrap: wrap;
    gap: 0;
  }
}
.page .news-single__inner .meta {
  margin-bottom: 40px;
  display: flex;
}
@media screen and (max-width: 768px) {
  .page .news-single__inner .meta {
    margin-bottom: 33px;
  }
}
.page .news-single__inner .meta .date {
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .page .news-single__inner .meta .date {
    margin-right: 16px;
  }
}
.page .news-single__inner .meta .category {
  border: 1px solid var(--c_black);
  border-radius: 4px;
  font-size: 11px;
  padding: 2px 2px;
  width: 5.5em;
  text-align: center;
  font-size: 14px;
  align-self: flex-start;
  margin-right: 16px;
}
.page .news-single__inner .meta .category.cat_company {
  border-color: var(--c_blue_dark);
  color: var(--c_blue_dark);
}
.page .news-single__inner .title {
  font-size: 32px;
  font-weight: bold;
  line-height: 180%;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .page .news-single__inner .title {
    font-size: 22px;
  }
}
.page .news-single__inner .block {
  margin-bottom: 40px;
  display: block;
}
@media screen and (max-width: 768px) {
  .page .news-single__inner .block {
    margin-bottom: 30px;
  }
}
.page .news-single__inner .text {
  font-size: 16px;
}
.page .news-single__inner .main-image {
  margin-inline: auto;
  max-width: 1000px;
  width: 100%;
}
.page .news-single__inner .main-image img {
  border-radius: 15px;
}
.page .news-single__inner .clumn_2 {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .page .news-single__inner .clumn_2 {
    flex-wrap: wrap;
  }
}
.page .news-single__inner .clumn_2 figure {
  width: 44.7%;
}
@media screen and (max-width: 768px) {
  .page .news-single__inner .clumn_2 figure {
    width: 100%;
    margin-bottom: 20px;
  }
}
.page .news-single__inner .clumn_2 .box {
  width: 51.8%;
}
@media screen and (max-width: 768px) {
  .page .news-single__inner .clumn_2 .box {
    width: 100%;
  }
}
.page .news-single__inner .ttl3 {
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .page .news-single__inner .ttl3 {
    font-size: 18px;
  }
}
.page .news-single__inner .text_area_bg {
  background-color: #fff;
  padding: 24px;
  border-radius: 16px;
}
.page .news-single__inner .list_disc {
  margin: 0 0 40px;
}
.page .news-single__inner .list_disc .list_disc_item {
  padding: 0 24px 0 40px;
  position: relative;
  font-size: 16px;
  line-height: 180%;
  margin-bottom: 8px;
}
.page .news-single__inner .list_disc .list_disc_item::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--c_black);
  position: absolute;
  top: 0.7em;
  left: 24px;
}
.page .news-single__inner .newtab {
  font-weight: 500;
  text-align: left;
  word-break: break-word;
}
.page .news-single__inner .newtab::after {
  content: "";
  display: inline-block;
  vertical-align: sub;
  background-size: cover;
  width: 21px;
  height: 21px;
  margin-left: 10px;
  margin-right: 3px;
  background-image: url(../images/icon-newtab.svg);
}
.page .news-single__inner .newtab :hover {
  text-decoration: none;
  font-weight: bold;
}
.page .news-single__inner .pdf {
  font-weight: 500;
  text-align: left;
  word-break: break-word;
  text-decoration: underline;
}
.page .news-single__inner .pdf::after {
  content: "";
  display: inline-block;
  vertical-align: sub;
  background-size: cover;
  width: 21px;
  height: 21px;
  margin-left: 10px;
  margin-right: 3px;
  background-image: url(../images/icon-pdf.svg);
}
.page .news-single__inner .pdf :hover {
  text-decoration: none;
  font-weight: bold;
}
.page .news-single__inner .btn {
  padding: 10px 24px 10px 40px;
  width: fit-content;
  height: auto;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .page .news-single__inner .btn {
    padding: 2.6666666667vw 8vw 2.6666666667vw 8vw;
  }
}
.page .news-single__inner .btn span::after {
  content: "";
  width: min(1.3888888889vw, 20px);
  height: min(1.3888888889vw, 20px);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.3s ease;
  background-image: url(../images/arrow_white_b.svg);
}
@media screen and (max-width: 768px) {
  .page .news-single__inner .btn span::after {
    width: 5.3333333333vw;
    height: 5.3333333333vw;
  }
}
.page .news-single__inner .btn:hover {
  background-color: var(--c_white);
  color: var(--c_blue_dark);
}
.page .news-single__inner .btn:hover span::after {
  background-image: url(../images/arrow_blue_b.svg);
}
.page .news-single__inner .sample {
  background: #d9d9d9;
  width: 100%;
  max-height: 562px;
  aspect-ratio: 16/9;
  border-radius: 16px;
}
.page .works-archive {
  background-color: var(--c_gray);
  padding: 60px 0 100px;
}
@media screen and (max-width: 768px) {
  .page .works-archive {
    padding: 40px 0 27px;
  }
}
.page .works-archive__inner {
  max-width: 1120px;
  margin: 0 auto 70px;
}
@media screen and (max-width: 1120px) {
  .page .works-archive__inner {
    padding: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .page .works-archive__inner {
    margin-bottom: 53px;
  }
}
.page .works-archive__inner .title__block__row {
  margin-bottom: 50px;
}
.page .works-archive .category-list {
  margin-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .page .works-archive .category-list {
    gap: 0;
    margin-bottom: 18px;
  }
}
.page .works-archive .category-list a {
  background: #fff;
  border: 1px solid var(--c_blue_dark);
  color: var(--c_blue_dark);
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  padding: 8px 24px 9px;
  transition: 0.2s;
}
@media screen and (max-width: 768px) {
  .page .works-archive .category-list a {
    width: auto;
    padding: 6px 20px 6px 16px;
    white-space: nowrap;
    margin: 0 16px 12px 0;
  }
}
.page .works-archive .category-list a::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 7px;
  height: 1px;
  background-color: var(--c_blue_dark);
  margin-right: 8px;
  margin-top: 2px;
}
.page .works-archive .category-list a:hover, .page .works-archive .category-list a.current {
  color: #fff;
  background: var(--c_blue_dark);
}
.page .works-archive .category-list a:hover::before, .page .works-archive .category-list a.current::before {
  background-color: var(--c_white);
}
.page .works-archive .category-list a.bordcasting {
  border-color: var(--c_light_blue);
  color: var(--c_light_blue);
}
.page .works-archive .category-list a.bordcasting::before {
  background-color: var(--c_light_blue);
}
.page .works-archive .category-list a.bordcasting:hover, .page .works-archive .category-list a.bordcasting.current {
  background-color: var(--c_light_blue);
  color: var(--c_white);
}
.page .works-archive .category-list a.bordcasting:hover::before, .page .works-archive .category-list a.bordcasting.current::before {
  background-color: var(--c_white);
}
.page .works-archive .category-list a.advertising {
  border-color: var(--c_light_red);
  color: var(--c_light_red);
}
.page .works-archive .category-list a.advertising::before {
  background-color: var(--c_light_red);
}
.page .works-archive .category-list a.advertising:hover, .page .works-archive .category-list a.advertising.current {
  background-color: var(--c_light_red);
  color: var(--c_white);
}
.page .works-archive .category-list a.advertising:hover::before, .page .works-archive .category-list a.advertising.current::before {
  background-color: var(--c_white);
}
.page .works-archive .category-list a.talent {
  border-color: var(--c_orange);
  color: var(--c_orange);
}
.page .works-archive .category-list a.talent::before {
  background-color: var(--c_orange);
}
.page .works-archive .category-list a.talent:hover, .page .works-archive .category-list a.talent.current {
  background-color: var(--c_orange);
  color: var(--c_white);
}
.page .works-archive .category-list a.talent:hover::before, .page .works-archive .category-list a.talent.current::before {
  background-color: var(--c_white);
}
.page .works-archive .category-list a.inclusive {
  border-color: var(--c_dark_gray);
  color: var(--c_dark_gray);
}
.page .works-archive .category-list a.inclusive::before {
  background-color: var(--c_dark_gray);
}
.page .works-archive .category-list a.inclusive:hover, .page .works-archive .category-list a.inclusive.current {
  background-color: var(--c_dark_gray);
  color: var(--c_white);
}
.page .works-archive .category-list a.inclusive:hover::before, .page .works-archive .category-list a.inclusive.current::before {
  background-color: var(--c_white);
}
.page .works-archive .category-list a.food {
  border-color: var(--c_purple);
  color: var(--c_purple);
}
.page .works-archive .category-list a.food::before {
  background-color: var(--c_purple);
}
.page .works-archive .category-list a.food:hover, .page .works-archive .category-list a.food.current {
  background-color: var(--c_purple);
  color: var(--c_white);
}
.page .works-archive .category-list a.food:hover::before, .page .works-archive .category-list a.food.current::before {
  background-color: var(--c_white);
}
.page .works-archive .category-list a.sports {
  border-color: #22AC38;
  color: #22AC38;
}
.page .works-archive .category-list a.sports::before {
  background-color: #22AC38;
}
.page .works-archive .category-list a.sports:hover, .page .works-archive .category-list a.sports.current {
  background-color: #22AC38;
  color: var(--c_white);
}
.page .works-archive .category-list a.sports:hover::before, .page .works-archive .category-list a.sports.current::before {
  background-color: var(--c_white);
}
.page .works-archive .works-list__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  flex-wrap: wrap;
  column-gap: 32px;
}
.page .works-archive .works-list__inner li {
  background-color: var(--c_white);
  width: calc((100% - 64px) / 3);
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: auto;
  margin-bottom: 40px;
  border: 2px solid transparent;
  transition: 0.3s ease;
  position: relative;
}
@media screen and (max-width: 768px) {
  .page .works-archive .works-list__inner li {
    width: 100%;
  }
}
.page .works-archive .works-list__inner li:hover {
  border: 2px solid var(--c_blue_dark);
}
@media screen and (max-width: 768px) {
  .page .works-archive .works-list__inner li:last-of-type {
    margin-bottom: 30px;
  }
}
.page .works-archive .works-list__inner li .arrow-btn {
  content: "";
  background-image: url(../images/arrow_blue_b.svg);
  width: min(1.8888888889vw, 24px);
  height: min(1.9888888889vw, 25px);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.3s ease;
  position: absolute;
  bottom: 22px;
  right: 20px;
}
@media screen and (max-width: 768px) {
  .page .works-archive .works-list__inner li .arrow-btn {
    width: 6.4vw;
    height: 6.6666666667vw;
  }
}
.page .works-archive .works-list__inner__image {
  width: 100%;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .page .works-archive .works-list__inner__image {
    margin-bottom: 18px;
  }
}
.page .works-archive .works-list__inner__image img {
  border-radius: 16px;
}
.page .works-archive .works-list__inner__content {
  flex: 1;
}
.page .works-archive .works-list__inner__content .meta {
  margin-bottom: 8px;
}
.page .works-archive .works-list__inner__content .meta .category {
  font-size: 14px;
  border: 1px solid;
  border-radius: 6px;
  padding: 3px 12px 4px;
  margin-right: 8px;
}
@media screen and (max-width: 768px) {
  .page .works-archive .works-list__inner__content .meta .category {
    font-size: 14px;
  }
}
.page .works-archive .works-list__inner__content .meta .date {
  color: #999;
  font-size: 14px;
  font-weight: 500;
}
.page .works-archive .works-list__inner__content .title {
  font-weight: bold;
  font-size: 20px;
  height: 3.2em;
  margin-bottom: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 768px) {
  .page .works-archive .works-list__inner__content .title {
    font-size: 18px;
  }
}
.page .works-archive .works-list__inner__content .tag {
  font-size: 12px;
  color: #999;
  margin: 8px 0;
}
@media screen and (max-width: 768px) {
  .page .works-archive .works-list__inner__content .tag {
    font-size: 14px;
  }
}
.page .how-we {
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .page .how-we .bg__object.bg__object.bg-blue {
    top: 19px;
  }
}
.page .how-we .bg__object.bg-paint-yellow {
  top: auto;
  bottom: 273px;
  right: auto;
  left: 403px;
}
@media screen and (max-width: 768px) {
  .page .how-we .bg__object.bg-paint-yellow {
    bottom: 144px;
    left: auto;
    right: 25px;
  }
}
.page .how-we__inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 60px 0px 100px;
}
@media screen and (max-width: 1120px) {
  .page .how-we__inner {
    padding: 60px 20px 100px;
  }
}
@media screen and (max-width: 768px) {
  .page .how-we__inner {
    padding: 52px 20px 80px;
  }
}
.page .how-we__inner__block {
  width: 100%;
  position: relative;
  z-index: 1;
}
.page .how-we__inner__block .flex {
  max-width: 900px;
  margin: 0 auto 30px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .page .how-we__inner__block .flex {
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .page .how-we__inner__block .flex:last-of-type {
    margin-bottom: 0px;
  }
}
.page .how-we__inner__block .flex figure {
  max-width: 400px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .page .how-we__inner__block .flex figure {
    max-width: 100%;
    margin-bottom: 18px;
  }
}
.page .how-we__inner__block .flex figure img {
  border-radius: 15px;
}
.page .how-we__inner__block .flex .box {
  width: 440px;
  line-height: 180%;
  display: inline-flex;
  flex-wrap: wrap;
  align-content: center;
}
.page .how-we__inner__block .flex .box h3 {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 20px;
  line-height: 49px;
}
@media screen and (max-width: 768px) {
  .page .how-we__inner__block .flex .box h3 {
    margin-bottom: 10px;
  }
}
.page .how-we__inner__block .flex .box p {
  font-weight: 500;
}
.page .how-we__inner__block .flex:last-of-type figure {
  order: 2;
}
@media screen and (max-width: 768px) {
  .page .how-we__inner__block .flex:last-of-type figure {
    order: 1;
  }
}
.page .how-we__inner__block .flex:last-of-type .box {
  order: 1;
}
@media screen and (max-width: 768px) {
  .page .how-we__inner__block .flex:last-of-type .box {
    order: 2;
  }
}
.page .works-single {
  background-color: #F6F6F6;
  padding: 80px 0 80px;
}
.page .works-single__inner {
  max-width: 1120px;
  margin: 0 auto 0px;
}
@media screen and (max-width: 1120px) {
  .page .works-single__inner {
    padding: 0 20px;
    gap: 5%;
  }
}
@media screen and (max-width: 768px) {
  .page .works-single__inner {
    flex-wrap: wrap;
    gap: 0;
  }
}
.page .works-single__inner > *:last-child {
  margin-bottom: 0 !important;
}
.page .works-single__inner .meta {
  margin-bottom: 17px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .page .works-single__inner .meta {
    margin-bottom: 33px;
  }
}
.page .works-single__inner .meta .date {
  font-size: 16px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .page .works-single__inner .meta .date {
    margin-right: 16px;
  }
}
.page .works-single__inner .meta .category {
  border: 1px solid var(--c_black);
  border-radius: 8px;
  font-size: 11px;
  padding: 6px 12px;
  width: auto;
  text-align: center;
  font-size: 14px;
  align-self: flex-start;
  margin-right: 16px;
}
.page .works-single__inner .meta .category.bordcasting {
  background-color: var(--c_light_blue);
  border-color: var(--c_light_blue);
  color: var(--c_white);
}
.page .works-single__inner .meta .category.advertising {
  background-color: var(--c_light_red);
  border-color: var(--c_light_red);
  color: var(--c_light_red);
}
.page .works-single__inner .meta .category.talent {
  background-color: var(--c_orange);
  border-color: var(--c_orange);
  color: var(--c_orange);
}
.page .works-single__inner .meta .category.inclusive {
  background-color: var(--c_dark_gray);
  border-color: var(--c_dark_gray);
  color: var(--c_dark_gray);
}
.page .works-single__inner .meta .category.food {
  background-color: var(--c_purple);
  border-color: var(--c_purple);
  color: var(--c_purple);
}
.page .works-single__inner .meta .category.sports {
  background-color: #22AC38;
  border-color: #22AC38;
  color: #22AC38;
}
.page .works-single__inner .tags {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .page .works-single__inner .tags {
    margin-bottom: 33px;
  }
}
.page .works-single__inner .tags__item {
  background-color: #fff;
  border: 1px solid var(--c_black);
  border-radius: 8px;
  font-size: 11px;
  padding: 6px 12px;
  width: auto;
  text-align: center;
  font-size: 14px;
  align-self: flex-start;
  margin-right: 16px;
}
.page .works-single__inner .title {
  font-size: 32px;
  font-weight: bold;
  line-height: 180%;
  margin-bottom: 17px;
}
@media screen and (max-width: 768px) {
  .page .works-single__inner .title {
    font-size: 22px;
  }
}
.page .works-single__inner .block {
  margin-bottom: 40px;
  display: block;
}
@media screen and (max-width: 768px) {
  .page .works-single__inner .block {
    margin-bottom: 30px;
  }
}
.page .works-single__inner .text {
  font-size: 16px;
  line-height: 180%;
}
.page .works-single__inner .main-image {
  margin-inline: auto;
  max-width: 1000px;
  width: 100%;
}
.page .works-single__inner .main-image img {
  border-radius: 15px;
}
.page .works-single__inner .newtab {
  font-weight: 500;
  text-align: left;
  word-break: break-word;
}
.page .works-single__inner .newtab::after {
  content: "";
  display: inline-block;
  vertical-align: sub;
  background-size: cover;
  width: 21px;
  height: 21px;
  margin-left: 10px;
  margin-right: 3px;
  background-image: url(../images/icon-newtab.svg);
}
.page .works-single__inner .newtab:hover {
  text-decoration: none;
  font-weight: bold;
}
.page .works-single__inner .pdf {
  font-weight: 500;
  text-align: left;
  word-break: break-word;
  text-decoration: underline;
}
.page .works-single__inner .pdf::after {
  content: "";
  display: inline-block;
  vertical-align: sub;
  background-size: cover;
  width: 21px;
  height: 21px;
  margin-left: 10px;
  margin-right: 3px;
  background-image: url(../images/icon-pdf.svg);
}
.page .works-single__inner .btn {
  padding: 10px 24px 10px 40px;
  width: fit-content;
  height: auto;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .page .works-single__inner .btn {
    padding: 2.6666666667vw 8vw 2.6666666667vw 8vw;
  }
}
.page .works-single__inner .btn span::after {
  content: "";
  width: min(1.3888888889vw, 20px);
  height: min(1.3888888889vw, 20px);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.3s ease;
  background-image: url(../images/arrow_white_b.svg);
}
@media screen and (max-width: 768px) {
  .page .works-single__inner .btn span::after {
    width: 5.3333333333vw;
    height: 5.3333333333vw;
  }
}
.page .works-single__inner .btn:hover {
  background-color: var(--c_white);
  color: var(--c_blue_dark);
}
.page .works-single__inner .btn:hover span::after {
  background-image: url(../images/arrow_blue_b.svg);
}
.page .works-single__inner .event-organizers dl dt {
  font-weight: 500;
}
.page .works-single__inner .event-organizers dl dd {
  font-weight: 500;
}
.page .works-project {
  max-width: 1120px;
  margin: 80px auto 100px;
}
@media screen and (max-width: 768px) {
  .page .works-project {
    margin: 60px auto 100px;
  }
}
@media screen and (max-width: 1120px) {
  .page .works-project__inner {
    padding: 0 20px;
  }
}
.page .works-project dl {
  display: flex;
  border-bottom: 2px solid #EAEAEA;
}
@media screen and (max-width: 768px) {
  .page .works-project dl {
    flex-wrap: wrap;
  }
}
.page .works-project dl:first-of-type {
  border-top: 2px solid #EAEAEA;
}
.page .works-project dl:nth-last-of-type(even) {
  background-color: #F6F6F6;
}
.page .works-project dl dt, .page .works-project dl dd {
  padding: 24px 24px;
  line-height: 180%;
}
@media screen and (max-width: 768px) {
  .page .works-project dl dt, .page .works-project dl dd {
    padding: 16px;
  }
}
.page .works-project dl dt {
  width: 260px;
  font-weight: bold;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .page .works-project dl dt {
    width: 100%;
    padding-bottom: 8px;
  }
}
.page .works-project dl dd {
  width: 100%;
}
.page .works-project dl dd .tel {
  text-decoration: none;
  position: relative;
}
.page .works-project dl dd h3 {
  font-weight: bold;
}
.page .works-project dl dd p {
  font-weight: 400;
  margin-bottom: 1em;
}
.page .works-project dl dd p:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .page .works-project .btn.return {
    margin-top: 30px;
  }
}
.page .price-guide {
  background-color: #fff;
}
.page .price-guide__inner {
  max-width: 1120px;
  margin: 0 auto 0px;
}
@media screen and (max-width: 1120px) {
  .page .price-guide__inner {
    padding: 0 20px;
    gap: 5%;
  }
}
@media screen and (max-width: 768px) {
  .page .price-guide__inner {
    flex-wrap: wrap;
    gap: 0;
  }
}
.page .price-guide__plan {
  padding: 0 0 100px;
}
.page .price-guide__plan__lead {
  margin-bottom: 32px;
  font-weight: 500;
}
.page .price-guide__plan__list table {
  width: 100%;
  line-height: 180%;
  border-collapse: collapse;
}
.page .price-guide__plan__list table thead th {
  background: var(--c_blue_dark);
  padding: 8px 8px 10px;
  text-align: center;
  color: #fff;
  border-radius: 12px 12px 0px 0px;
}
.page .price-guide__plan__list table thead th:first-child {
  border-right: 2px solid #fff;
}
.page .price-guide__plan__list table tbody th {
  padding: 24px 24px;
  border-bottom: 2px solid #EAEAEA;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .page .price-guide__plan__list table tbody th {
    padding: 24px 5px 24px 24px;
    width: 43.5%;
  }
}
.page .price-guide__plan__list table tbody th em {
  font-size: 18px;
  font-weight: bold;
  line-height: 180%;
}
@media screen and (max-width: 768px) {
  .page .price-guide__plan__list table tbody th em {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .page .price-guide__plan__list table tbody th em span {
    display: block;
    font-size: 14px;
    line-height: 160%;
    letter-spacing: 0;
  }
}
.page .price-guide__plan__list table tbody th p {
  font-size: 14px;
  line-height: 160%;
  font-weight: normal;
}
.page .price-guide__plan__list table tbody th em + p {
  margin-top: 4px;
}
.page .price-guide__plan__list table tbody td {
  padding: 24px 24px;
  background-color: #f0f7fd;
  color: var(--c_blue_dark);
  border-bottom: 2px solid #EAEAEA;
  text-align: right;
  vertical-align: middle;
  width: 35.7%;
}
@media screen and (max-width: 768px) {
  .page .price-guide__plan__list table tbody td {
    width: 56.7%;
  }
}
.page .price-guide__plan__list table tbody td em {
  font-size: 24px;
}
.page .price-guide__plan__list table tbody td p {
  font-size: 14px;
}
.page .price-guide__plan__list table em {
  font-style: normal;
  font-weight: bold;
}
.page .price-guide__plan__list .caption {
  margin: 22px 0 0;
  text-align: right;
  font-size: 14px;
  line-height: 160%;
  font-weight: 500;
  letter-spacing: 0;
}
.page .workflow {
  background-color: #f6f6f6;
  padding: 60px 0 100px;
}
.page .workflow__inner {
  max-width: 1120px;
  margin: 0 auto 0px;
}
@media screen and (max-width: 1120px) {
  .page .workflow__inner {
    padding: 0 20px;
  }
}
.page .workflow__inner .title__block__row {
  margin-bottom: 70px;
}
.page .workflow__step {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  counter-reset: list-count;
  gap: 34px;
}
@media screen and (max-width: 768px) {
  .page .workflow__step {
    gap: 53px;
  }
}
.page .workflow__step li {
  position: relative;
  flex: 0 0 calc((100% - 102px) / 4);
  counter-increment: list-count;
  background-color: #fff;
  border-radius: 16px;
  margin-bottom: 61px;
  padding: 32px 19px 17px;
}
@media screen and (max-width: 768px) {
  .page .workflow__step li {
    flex-basis: 100%;
    margin-bottom: 0;
    display: flex;
  }
}
.page .workflow__step li:nth-child(n+5):nth-child(-n+7) {
  margin-bottom: 0;
}
.page .workflow__step li::before {
  content: counter(list-count, decimal-leading-zero);
  position: absolute;
  top: -26px;
  left: 16px;
  font-size: 36px;
  font-weight: 500;
  font-family: "Zen Maru Gothic", "Solway", serif;
  color: var(--c_blue_dark);
}
.page .workflow__step li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: calc(100% + 9px);
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  width: 15px;
  height: 32px;
  background: #3582c2;
  mask: url("data:image/svg+xml,%3Csvg width='15' height='32' viewBox='0 0 15 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.4331 14.9856C14.7585 15.3614 14.7585 15.9191 14.4331 16.2949L1.75593 30.9332C1.14979 31.6331 0 31.2044 0 30.2785L0 1.00198C0 0.0760916 1.1498 -0.352582 1.75593 0.347322L14.4331 14.9856Z' fill='black'/%3E%3C/svg%3E") center/contain no-repeat;
}
@media screen and (max-width: 768px) {
  .page .workflow__step li:not(:last-child)::after {
    left: 50%;
    top: calc(100% + 9px);
    transform: translateX(-50%) rotate(90deg);
  }
}
.page .workflow__step li figure {
  width: 118px;
  margin: 0 auto 6px;
}
@media screen and (max-width: 768px) {
  .page .workflow__step li figure {
    width: 28.5%;
    margin: 0 14px 6px auto;
  }
}
@media screen and (max-width: 768px) {
  .page .workflow__step li .box {
    width: 66.7%;
    display: inline-flex;
    flex-wrap: wrap;
    align-content: center;
  }
}
.page .workflow__step li h3 {
  font-size: 20px;
  font-weight: bold;
  color: var(--c_blue_dark);
  margin-bottom: 4px;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .page .workflow__step li h3 {
    text-align: left;
  }
}
.page .workflow__step__desc {
  text-align: center;
  margin-bottom: 5px;
  letter-spacing: 0;
  font-weight: 500;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .page .workflow__step__desc {
    text-align: left;
  }
}
.page .workflow__step__note {
  text-align: center;
  color: #999;
  font-size: 14px;
  font-weight: 500;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .page .workflow__step__note {
    text-align: left;
  }
}
.page .workflow .example {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  margin-top: 16px;
}
.page .privacy-policy {
  background-color: #f6f6f6;
  padding: 80px 0 80px;
}
.page .privacy-policy__inner {
  max-width: 1120px;
  margin: 0 auto 0px;
  line-height: 180%;
}
@media screen and (max-width: 1120px) {
  .page .privacy-policy__inner {
    padding: 0 20px;
  }
}
.page .privacy-policy__inner .main_ttl {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 40px;
}
.page .privacy-policy__inner .lead {
  margin-bottom: 41px;
}
.page .privacy-policy__inner .block {
  margin-bottom: 40px;
}
.page .privacy-policy__inner .block.mb {
  margin-bottom: 80px;
}
.page .privacy-policy__inner .block .sub_ttl {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
}
.page .privacy-policy__inner .block p {
  font-size: 16px;
}
.page .notfound-body {
  padding: 110px 0 140px;
}
@media screen and (max-width: 768px) {
  .page .notfound-body {
    padding: 80px 0 80px;
  }
}
.page .notfound-body__inner {
  max-width: 1120px;
  margin: 0 auto 0px;
  line-height: 180%;
}
@media screen and (max-width: 1120px) {
  .page .notfound-body__inner {
    padding: 0 20px;
  }
}
.page .notfound-body__inner .main_ttl {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page .notfound-body__inner .main_ttl {
    font-size: 20px;
  }
}
.page .notfound-body__inner .lead {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 50px;
  text-align: center;
}
.page .notfound-body__inner .block {
  margin-bottom: 40px;
}
.page .notfound-body__inner .block .sub_ttl {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
}
.page .notfound-body__inner .block p {
  font-size: 16px;
}

.worksVideoSlider {
  overflow: hidden;
}
.worksVideoSlider .swiper-wrapper {
  margin-bottom: 30px;
}
.worksVideoSlider .swiper-wrapper .swiper-slide video {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 15px;
}
.worksVideoSlider .swiper-wrapper .swiper-slide iframe {
  width: 100%;
  aspect-ratio: 16/9;
}

.worksVideoThumbsWrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .worksVideoThumbsWrap {
    gap: 12px;
  }
}
.worksVideoThumbsWrap .worksVideoThumbs {
  display: flex;
  flex: 1;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .worksVideoThumbsWrap .worksVideoThumbs {
    gap: 12px;
  }
}
.worksVideoThumbsWrap .worksVideoThumbs li {
  flex: 1;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s;
}
.worksVideoThumbsWrap .worksVideoThumbs li.is-active {
  opacity: 1;
}
.worksVideoThumbsWrap .worksVideoThumbs li img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.worksVideoThumbsWrap .worksVideoThumbs-next {
  display: inline-flex;
  position: relative;
}
.worksVideoThumbsWrap .worksVideoThumbs-next::before {
  content: "";
  background: url(../images/icon-arrow.svg) no-repeat;
  width: 34px;
  height: 34px;
  background-size: 100%;
}
.worksVideoThumbsWrap .worksVideoThumbs-next::after {
  width: 0;
}
.worksVideoThumbsWrap .worksVideoThumbs-prev {
  display: inline-flex;
  position: relative;
}
.worksVideoThumbsWrap .worksVideoThumbs-prev::before {
  content: "";
  background: url(../images/icon-arrow.svg) no-repeat;
  width: 34px;
  height: 34px;
  background-size: 100%;
  transform: scaleX(-1);
}
.worksVideoThumbsWrap .worksVideoThumbs-prev::after {
  width: 0;
}

.page:has(.news-single) .mv,
.page:has(.works-single) .mv,
.page:has(.privacy) .mv,
.page:has(.notfound) .mv {
  padding-top: 91px;
}
@media screen and (max-width: 768px) {
  .page:has(.news-single) .mv,
  .page:has(.works-single) .mv,
  .page:has(.privacy) .mv,
  .page:has(.notfound) .mv {
    padding-top: 10.3vw;
  }
}
.page:has(.news-single) .breadcrumb,
.page:has(.works-single) .breadcrumb,
.page:has(.privacy) .breadcrumb,
.page:has(.notfound) .breadcrumb {
  margin-bottom: 75px;
}
@media screen and (max-width: 768px) {
  .page:has(.news-single) .breadcrumb,
  .page:has(.works-single) .breadcrumb,
  .page:has(.privacy) .breadcrumb,
  .page:has(.notfound) .breadcrumb {
    margin-bottom: 46px;
  }
}
.page:has(.news-single) .bg__object.bg-paint-purple,
.page:has(.works-single) .bg__object.bg-paint-purple,
.page:has(.privacy) .bg__object.bg-paint-purple,
.page:has(.notfound) .bg__object.bg-paint-purple {
  bottom: -111px;
}
@media screen and (max-width: 768px) {
  .page:has(.news-single) .bg__object.bg-paint-purple,
  .page:has(.works-single) .bg__object.bg-paint-purple,
  .page:has(.privacy) .bg__object.bg-paint-purple,
  .page:has(.notfound) .bg__object.bg-paint-purple {
    bottom: auto;
  }
}
.page:has(.news-single) .bg__object.bg-paint-lightblue,
.page:has(.works-single) .bg__object.bg-paint-lightblue,
.page:has(.privacy) .bg__object.bg-paint-lightblue,
.page:has(.notfound) .bg__object.bg-paint-lightblue {
  top: -39px;
}

select[name=select-65] option:first-child {
  color: #999;
  display: none;
}

.wpcf7 form .form .wpcf7-response-output {
  margin: 0em 0.5em 1em;
  text-align: center;
}/*# sourceMappingURL=base.css.map */