@charset "UTF-8";

:root {
  --color_white: #ffffff;
  --color_black: #1A1A1A;
  --color_blue: #4EC9B0;
  --color_bg: #FBFBFB;
  --font_inter: "Inter", sans-serif;
  --font_noto: "Noto Sans JP", sans-serif;
  --font_instrument: "Instrument Sans", sans-serif
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden
}

body {
  font-size: clamp(14px, 1.15vw, 16px);
  color: var(--color_black);
  font-family: var(--font_noto);
  background-color: var(--color_bg);
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  font-optical-sizing: auto;
  overflow-x: clip
}

@font-face {
  font-family: 'Noto Sans JP';
  src: url(../font/NotoSansJP-Subset-400.woff2) format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: 'Noto Sans JP';
  src: url(../font/NotoSansJP-Subset-500.woff2) format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: 'Noto Sans JP';
  src: url(../font/NotoSansJP-Subset-700.woff2) format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: 'Instrument Sans';
  src: url(../font/InstrumentSans-500.woff2) format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: Inter;
  src: url(../font/Inter-400.woff2) format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: Inter;
  src: url(../font/Inter-500.woff2) format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: Inter;
  src: url(../font/Inter-600.woff2) format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: Inter;
  src: url(../font/Inter-700.woff2) format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: Inter;
  src: url(../font/Inter-900.woff2) format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap
}

*,
::after,
::before {
  box-sizing: border-box
}

img {
  width: 100%;
  display: block
}

a {
  text-decoration: none;
  transition: all .5s
}

a:hover {
  opacity: .7
}

h1,
h2,
h3,
h4,
h5,
h6,
ol,
p,
ul {
  margin: 0;
  padding: 0
}

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

.wrap {
  max-width: 100%;
  margin: 0 auto
}

.pc-br {
  display: block
}

.margin-7 {
  margin-left: 7px
}

.margin-12 {
  margin-left: 12px
}

.margin-16 {
  margin-left: 16px
}

#header {
  position: fixed;
  width: 100%;
  height: 118px;
  font-family: var(--font_inter);
  z-index: 20;
  transition: background-color .4s ease, box-shadow .4s ease;
}

#header.is-scrolled {
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
  height: 118px
}

#header.is-scrolled .header-nav a {
  color: var(--color_black)
}

#header.is-scrolled .roll,
.is-sub #header .roll,
.is-top #header.is-scrolled .roll {
  overflow: hidden;
  color: transparent;
  text-shadow: 0 1.5em 0 var(--color_black), 0 0 0 var(--color_black);
  transition-property: text-shadow;
  transition-duration: .2s;
  transition-delay: calc(var(--index) * .05s);
  transition-timing-function: ease-in-out
}

.is-sub #header a:hover .roll,
.is-top #header.is-scrolled a:hover .roll,
a:hover .roll {
  text-shadow: 0 0 0 var(--color_black), 0 -1.5em 0 var(--color_black)
}

#header .flex {
  display: flex;
  justify-content: space-between;
  padding: 0 32px;
  align-items: center;
  height: 100%;
  transition: all .5s
}

#header .site-title {
  width: 188px;
  height: 41px
}

#header .site-title a {
  position: relative;
  display: block;
  width: 188px;
  height: 100%;
  z-index: 20
}

.site-title .logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity .4s ease
}

#header.is-scrolled.is-mvv .logo-black,
.is-top .logo-black {
  display: none
}

#header.is-scrolled.is-mvv .logo-white {
  display: block
}

#header.is-scrolled .logo-white {
  display: none
}

#header.is-scrolled .logo-black {
  display: block
}

#header .site-title a.logo-hamburger {
  display: none
}

#header .site-title a img {
  width: 100%;
  height: auto
}

#header .site-title a:hover {
  opacity: .7
}

.header-nav {
  display: flex;
  gap: 2.5em;
  align-items: center
}

.header-nav ul {
  display: flex
}

.header-nav ul li {
  overflow: hidden;
  margin-right: clamp(10px, 2.8vw, 40px)
}

.header-nav ul li:last-child {
  margin-right: 0
}

.header-nav a {
  color: var(--color_white);
  font-weight: 700
}

#header.is-mvv .roll,
.is-sub.top-page .roll,
.is-top #header .roll {
  overflow: hidden;
  color: transparent;
  text-shadow: 0 1.5em 0 #fff, 0 0 0 #fff;
  transition-property: text-shadow;
  transition-duration: .2s;
  transition-delay: calc(var(--index) * .05s);
  transition-timing-function: ease-in-out
}

#header.is-mvv a:hover .roll,
.is-sub.top-page a:hover .roll,
.is-top #header a:hover .roll {
  text-shadow: 0 0 0 #fff, 0 -1.5em 0 #fff
}

#about .btn a,
#header .btn a,
#service .btn a {
  margin-top: 1px;
  display: inline-block;
  padding: 11px 15px;
  background-color: var(--color_blue);
  border-radius: 50px;
  border: 1px solid var(--color_blue);
  transition: all .3s;
  font-size: 14px;
  line-height: 1
}

#header.is-scrolled .btn a {
  color: var(--color_white)
}

#about .btn a:hover,
#header .btn a:hover,
#service .btn a:hover {
  color: var(--color_blue);
  background-color: var(--color_white)
}

.hamburger {
  display: none
}

.hamburger-menu {
  display: none
}

body.is-menu-open,
html.is-menu-open {
  overflow: hidden;
  width: 100%
}

header.open {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 10000;
  transform: none !important;
  transition: none !important
}

@media screen and (max-width:768px) {
  #header {
    height: 100px
  }

  #header .flex {
    padding: 0 24px
  }

  #header .site-title a {
    display: block;
    width: 120px;
    margin-top: 4px
  }

  #header.is-scrolled {
    height: 80px
  }

  .header-nav {
    display: none
  }

  .hamburger {
    display: block;
    width: 52px;
    height: 52px;
    cursor: pointer;
    position: fixed;
    top: 24px;
    right: 24px;
    border-radius: 50%;
    background-color: var(--color_white);
    transition: background-color .5s, transform .5s;
    z-index: 20
  }

  #header.is-scrolled .hamburger {
    top: 16px
  }

  .is-sub .hamburger,
  .is-top .is-scrolled .hamburger {
    background-color: var(--color_black)
  }

  .open .hamburger {
    background-color: var(--color_black);
    border: 1px solid var(--color_white)
  }

  #header.open .site-title a.logo-hamburger {
    display: block
  }

  #header.open .site-title a .logo-black {
    display: none
  }

  .is-sub .hamburger span,
  .is-top .is-scrolled .hamburger span {
    background-color: var(--color_white)
  }

  #header.open .site-title .logo-white {
    display: block
  }

  .hamburger span {
    width: 24px;
    height: 2px;
    background-color: var(--color_black);
    border-radius: 4px;
    display: block;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    transition: .5s
  }

  .hamburger span:nth-child(1) {
    top: 40%
  }

  .hamburger span:nth-child(2) {
    top: 55%
  }

  .open .hamburger span:nth-child(1) {
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
    background-color: var(--color_white)
  }

  .open .hamburger span:nth-child(2) {
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(45deg);
    background-color: var(--color_white)
  }

  .hamburger-menu {
    opacity: 0;
    display: block;
    transition: opacity .5s;
    pointer-events: none;
    position: fixed;
    min-height: 100vh;
    overflow-x: hidden;
    inset: -2px 0 0 -1px;
    width: calc(100% + 2px);
    height: calc(100vh + 4px);
    background-color: var(--color_black);
    box-shadow: 0 0 0 2px var(--color_black);
    font-size: 16px;
    line-height: 1
  }

  #header.open .hamburger-menu {
    opacity: 1;
    overflow-y: auto;
    pointer-events: auto
  }

  #header.open .hamburger-menu a .roll {
    text-shadow: 0 1.5em 0 #fff, 0 0 0 #fff;
    will-change: text-shadow;
    transition-delay: calc(var(--index) * .03s)
  }

  .hamburger-menu .inner {
    width: 275px;
    margin: 0 auto 120px
  }

  .hamburger-menu nav ul {
    padding-top: 134px
  }

  .hamburger-menu nav ul li {
    overflow: hidden;
    margin-bottom: 43px
  }

  .hamburger-menu .btn a {
    color: var(--color_white);
    width: 100%;
    text-align: center
  }

  #header .hamburger-menu .btn:last-child a {
    color: var(--color_black);
    background-color: var(--color_white);
    border: 1px solid var(--color_white);
    margin-top: 20px;
    font-weight: 700
  }

  #header .hamburger-menu .btn:last-child a:hover {
    color: var(--color_white);
    background-color: var(--color_black)
  }

  #header .btn a {
    padding: 15px;
    font-size: 16px;
    border-radius: 20px
  }

  .hamburger-menu .sns {
    display: flex;
    gap: 12px;
    margin: 40px 0 42px
  }

  .hamburger-menu .sns a {
    display: block;
    width: 45px;
    height: 45px
  }

  .hamburger-menu .sns .insta-icon {
    display: flex;
    justify-content: center;
    align-items: center
  }

  .hamburger-menu .sns a img {
    width: 100%;
    height: 100%;
    object-fit: cover
  }

  .hamburger-menu .sns li:first-child a {
    position: relative
  }

  .hamburger-menu .sns li:first-child a img {
    width: 78%;
    height: 78%;
    object-fit: cover;
    position: absolute;
    top: 46%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
  }

  .hamburger-menu .privacy a {
    display: block;
    color: var(--color_white);
    margin-bottom: 27px;
  }

  .hamburger-menu .privacy li:last-child a {
    margin-bottom: 40px;
  }
}

.mv-wrap {
  position: relative;
  width: 100vw;
  overflow-x: clip
}

.mv {
  position: relative;
  width: 100%;
  aspect-ratio: 1440/810
}

.mv-video {
  position: relative;
  display: block;
  backface-visibility: hidden;
  top: 50%;
  left: 50%;
  width: calc(100% + 1px);
  height: 100%;
  object-fit: cover;
  -webkit-transform: translate(-50%, -50%) translateZ(0);
  transform: translate(-50%, -50%) translateZ(0)
}

.mv-title {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: var(--color_white);
  font-size: 4em;
  white-space: nowrap;
  text-align: center;
  font-weight: 700;
  font-family: var(--font_inter)
}

.sp-none {
  display: inline-block
}

.mv-video.sp {
  display: none
}

@media screen and (max-width:1024px) {
  .mv-title .sp-none {
    display: none
  }

  .mv .sp-br {
    display: block
  }

  .mv {
    position: relative;
    width: 100%;
    max-height: 100vh;
    aspect-ratio: 393/658
  }

  .mv .mv-video {
    max-height: 100vh;
    width: calc(100% + 1px);
    top: -1px;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0)
  }

  .mv-video.pc {
    display: none
  }

  .mv-video.sp {
    display: block
  }

  .mv-title {
    font-size: 32px;
    letter-spacing: 1.7px;
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 51.5%;
    line-height: 1.5;
    will-change: transform
  }
}

#intro {
  position: relative;
  min-height: 1371px;
  overflow: hidden
}

.intro-bg {
  position: fixed;
  inset: 0;
  background: var(--color_blue);
  clip-path: circle(0 at 50% 100%);
  z-index: -3;
  will-change: clip-path;
  -webkit-transform: translateZ(0);
  transform: translateZ(0)
}

.tokai-map {
  width: 730px;
  height: auto;
  position: absolute;
  right: 1px;
  top: 29.75%
}

.toka-map img {
  width: 100%
}

#intro p {
  position: relative;
  color: var(--color_white);
  padding-top: 308px;
  font-weight: 700;
  line-height: 2.81;
  text-align: center;
  z-index: 2
}

.intro-img {
  position: absolute;
  overflow: hidden
}

.intro-img img {
  width: 100%;
  height: 120%;
  object-fit: cover
}

#intro .intro-1 {
  position: absolute;
  width: 21.875em;
  aspect-ratio: 350/234;
  top: 44.65%;
  left: 10.36%
}

#intro .intro-2 {
  position: absolute;
  width: 15.875em;
  aspect-ratio: 254/170;
  top: 65.89%;
  left: 44.7%
}

#intro .intro-3 {
  position: absolute;
  width: 17.875em;
  object-fit: cover;
  aspect-ratio: 286/432;
  top: 29.7%;
  right: 8.1%
}

@media screen and (max-width:1024px) {
  #intro {
    position: relative;
    min-height: 1691px
  }

  #intro .intro-1 {
    top: 950px
  }

  #intro .intro-2 {
    top: 1300px;
    left: 50%
  }

  #intro .intro-3 {
    top: 650px
  }
}

@media screen and (max-width:768px) {
  #intro {
    min-height: 1539px
  }

  .tokai-map {
    width: 603px;
    top: 39.45%;
    left: 66.5%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
  }

  #intro .intro-1 {
    width: 13.85715em;
    top: 918px;
    left: 6%
  }

  #intro .intro-2 {
    width: 10.0714em;
    top: 1200px;
    left: 53%
  }

  #intro .intro-3 {
    width: 11.286em;
    top: 632px;
    right: 6%
  }

  #intro p {
    padding-top: 327px;
    line-height: 2.78
  }
}

#about {
  background: var(--color_white);
  border-radius: 30px 30px 0 0;
  overflow: hidden;
  padding: 0 2%
}

#about .inner {
  max-width: 1206px;
  margin: 0 auto;
  padding: 125px 26px 25px 0
}

#about .flex {
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 100%;
  align-items: start
}

#about .video-link {
  aspect-ratio: 431/766;
}

.about-media {
  position: relative;
  display: inline-block;
  max-height: 766px
}

.about-media .insta-wrap {
  width: clamp(260px, 30vw, 431px);
  aspect-ratio: 431/766;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 28.1px 0 #00000059;
  position: relative;
  z-index: 2
}


.about-media span {
  position: absolute;
  writing-mode: vertical-rl;
  line-height: 1;
  top: 23px;
  right: -6px;
  -webkit-transform: translateX(80%);
  transform: translateX(80%);
  color: var(--color_blue);
  opacity: .2;
  font-size: clamp(120px, 18vw, 234px);
  font-weight: 900;
  font-family: var(--font_inter);
  pointer-events: none;
  z-index: 1;
  letter-spacing: 4px
}

.about-text {
  width: clamp(360px, 46vw, 526px)
}

#about .section-title {
  font-size: 2.75em;
  line-height: 1.2;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0
}

#about .section-title span {
  font-size: 20px;
  display: block;
  margin-bottom: 12px
}

#about .about-text .about-tags {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: start;
  font-family: var(--font_inter);
  font-size: 14px;
  gap: 8px;
  margin: 33px 0 32px;
  line-height: 1;
}

#about .about-text .about-tags li {
  padding: 11px 16px;
  border: 1px solid var(--color_black);
  border-radius: 30px
}

#about .about-text .about-tags li:nth-child(2) {
  padding: 11px 16px 11px 15px;
  font-family: var(--font_noto)
}

#about .about-text p {
  font-weight: 500;
  margin-bottom: 35px;
  line-height: 2.19
}

#about .about-description p:last-child {
  margin-bottom: 32px
}

#about .btn-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center
}

#about .about-text .sns {
  display: flex;
  gap: 19px;
  margin-top: 30px
}

#about .btn a,
#service .btn a {
  margin-top: 30px;
  padding: 17px 30px;
  font-size: 20px;
  color: var(--color_white)
}

#about .about-text .sns a {
  display: block;
  width: 65px;
  height: 65px;
  background-color: var(--color_blue);
  border-radius: 50%;
  position: relative;
  transition: all .5s
}

#about .about-text .sns a:hover {
  opacity: .7
}

#about .about-text .sns a img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%)
}

#about .about-text .sns .instagram img {
  width: 55%;
  height: 55%
}

.video-link {
  position: relative;
  width: 100%;
  display: block;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  overflow: hidden;
}

.video-thumb {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.video-link iframe {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  display: block;
  object-fit: cover;
  border: 0;
  transform: scale(1.01) translateZ(0);
  transition: none !important;
}

.video-vimeo {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

@media screen and (max-width:1024px) {
  #about {
    padding: 0
  }

  #about .flex {
    flex-direction: column;
    align-items: center;
    padding: 79px 0 0;
    margin: 0 auto
  }

  #about .inner {
    padding: 0 24px
  }

  .about-media {
    position: relative;
    display: inline-block;
    height: 395px
  }

  .about-media .insta-wrap {
    width: 223.5px;
    height: 395px;
    margin: 0 auto;
    border-radius: 5.5px;
    overflow: hidden;
    box-shadow: 0 0 28.1px 0 #00000059
  }

  #about .video-link {
    aspect-ratio: 222 / 395;

  }

  #about .pc-br {
    display: none
  }

  .about-media span {
    top: 2px;
    right: clamp(-141px, -21vw, -98px);
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    font-size: clamp(72px, 17vw, 100px);
    letter-spacing: 1px
  }

  #about .section-title {
    margin-top: 48px;
    font-size: 32px
  }

  #about .about-text {
    width: 100%;
    text-align: center
  }

  #about .section-title span {
    font-size: 16px;
    margin-bottom: 7px
  }

  #about .about-text .about-tags {
    font-size: 12px;
    gap: 8px 4px;
    margin: 32px 0;
    justify-content: center
  }

  #about .about-text .about-tags li {
    padding: 7px 12px
  }

  #about .about-text .about-tags li:nth-child(2) {
    padding: 7px 11px
  }

  #about .about-text p {
    margin-bottom: 28px;
    line-height: 2
  }

  #about .about-text .sns {
    justify-content: center
  }

  #about .sp-br {
    display: none
  }
}

@media screen and (max-width:819px) {
  #about .about-text {
    text-align: left
  }

  #about .about-text .about-tags {
    justify-content: left
  }

  #about .about-text .sns {
    justify-content: left
  }

  #about .sp-br {
    display: block
  }
}

@media screen and (max-width:767px) {
  #about .btn-wrap {
    flex-direction: column;
    align-items: start
  }

  #about .btn {
    width: 100%
  }

  #about .btn a {
    display: block;
    text-align: center
  }
}

@media screen and (max-width:375px) {
  #about .about-text .about-tags {
    grid-template-columns: repeat(1, auto);
  }
}

#service {
  background: var(--color_bg);
  padding: 201px 2.2225% 201px;
  margin: 0 auto -1px
}

#service .inner {
  max-width: 1440px;
  margin: 0 auto
}

#service .flex {
  display: flex;
  justify-content: space-between;
  max-width: 1291px;
  align-items: flex-start;
  margin-left: auto
}

.service-left-wrap {
  position: sticky;
  top: 120px;
  align-self: flex-start
}

.service-left {
  position: relative
}

.title-wrap {
  position: relative
}

.section-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-top: 53px;
  line-height: 1
}

.section-title .en {
  font-size: 2em;
  font-weight: 900;
  font-family: var(--font_inter);
  color: var(--color_blue);
  opacity: .3;
  position: absolute;
  top: -53px;
  white-space: nowrap;
  overflow: hidden;
  letter-spacing: 1.5px;
  z-index: -1
}

#service .section-title .en {
  font-size: clamp(56px, 6vw, 80px)
}

.section-title .en span {
  display: inline-block;
  -webkit-transform: translateY(120%);
  transform: translateY(120%)
}

.service-nav {
  margin-top: 103px;
  font-family: var(--font_inter);
  font-weight: 700;
  font-size: 1.5em;
  width: 240px;
  line-height: 1;
  margin-left: 2px
}



.service-nav li a {
  display: inline-block;
  margin-bottom: 48px;
  color: var(--color_black);
  font-weight: 400;
  transition: color .3s ease, text-shadow .3s ease;
}

.service-nav li:last-child a {
  margin-bottom: 0
}

.service-nav li.is-active a {
  color: var(--color_blue);
  text-shadow: 1px 0 0 currenTcolor, -1px 0 0 currentColor;
}

#service .service-right .flex {
  padding: 47.5px 0;
  flex-direction: row-reverse;
  border-bottom: 1px solid #969696;
  align-items: center;
  width: clamp(450px, 63vw, 907px);
  line-height: 1
}

#service .service-right .flex:first-child {
  border-top: 1px solid #969696
}

#service .content-title {
  font-size: 2.5em;
  margin-bottom: 26px;
  font-family: var(--font_inter);
  font-weight: 700;
  line-height: 1
}

#service #moviecreate .content-title,
#service #webcreate .content-title {
  font-family: var(--font_noto);
  margin-bottom: 28px
}

#service .content-text p {
  line-height: 2.375;
  margin-bottom: 81px;
  max-width: 390px
}

#service #moviecreate .content-text p,
#service #webcreate .content-text p {
  line-height: 2.188
}

#service .content-list {
  overflow: hidden
}

#service .content-list li {
  font-size: 1.25em;
  line-height: 1;
  margin-bottom: 28px;
  padding-left: 32px;
  position: relative
}

#service .content-list li:last-child {
  margin-bottom: 0
}

#service .content-list li::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color_blue);
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%)
}

#service .content-img {
  width: clamp(200px, 32vw, 437px);
  max-height: 535px;
  flex-shrink: 0;
  aspect-ratio: 437/535;
  line-height: 1;
  margin-left: 20px
}

#service .content-img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

#service .btn {
  margin-top: 40px;
  text-align: right
}

@media screen and (max-width:1024px) {
  #service {
    position: relative;
    z-index: 2;
    padding: 112px 21px 120px 24px;
    margin: -19px auto 0
  }

  #service .flex {
    display: block;
    flex-direction: column;
    justify-content: space-between
  }

  .service-left-wrap {
    position: static;
    top: 100px;
    align-self: flex-start;
    min-width: 0;
    text-align: center
  }

  #service .service-left {
    position: relative;
    margin-bottom: 50px
  }

  .title-wrap {
    position: relative
  }

  .section-title {
    font-size: 36px;
    margin-top: 58px
  }

  #service .section-title {
    margin-right: 120px
  }

  .section-title .ja {
    position: relative;
    z-index: 2
  }

  .section-title .en {
    font-size: 72px
  }

  #service .section-title .en {
    font-size: 72px;
    z-index: 1
  }

  #service .service-nav {
    margin-top: 27px;
    font-weight: 500;
    font-size: 18px;
    width: 100%;
    margin-left: 1px
  }

  #service .service-nav li a {
    display: inline-block;
    margin-bottom: 0;
    color: var(--color_black);
    width: 258px;
    padding: 17px 0;
    border-bottom: 1px solid #919191;
    position: relative;
    line-height: 1.3;
    text-align: left
  }

  .service-nav li.is-active a {
    color: var(--color_blue);
    text-shadow: none;
  }

  #service .sp-arrow {
    position: absolute;
    width: 26.3px;
    height: 26.3px;
    border-radius: 50%;
    background-color: var(--color_blue);
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
  }

  #service .sp-arrow::before {
    position: absolute;
    content: "";
    width: 2px;
    height: 10px;
    background: var(--color_white);
    right: 45%;
    top: 25%
  }

  #service .sp-arrow::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    border-top: 2px solid var(--color_white);
    border-right: 2px solid var(--color_white);
    -webkit-transform: translate(-50%, -50%) rotate(135deg);
    transform: translate(-50%, -50%) rotate(135deg);
    right: 26%;
    top: 55%
  }

  #service .service-right .flex {
    flex-direction: column-reverse;
    padding: 48px 0 52px;
    align-items: center;
    width: auto
  }

  #service .service-right #moviecreate.flex,
  #service .service-right #webcreate.flex {
    padding: 52px 0
  }

  #service #webcreate .content-text .content-title {
    font-family: var(--font_inter);
    margin: 29px 0 20px;
    letter-spacing: .5px
  }

  #service #moviecreate .content-text p,
  #service #webcreate .content-text p {
    line-height: 2;
    margin-bottom: 39px;
    width: 100%
  }

  #service .service-right .flex:first-child {
    border-top: none;
    padding: 46px 0 53px
  }

  #service .content-text {
    margin-right: 0
  }

  #service .content-title {
    font-size: 28px;
    margin: 28px 0 20px
  }

  #service #moviecreate .content-title {
    font-family: var(--font_inter);
    margin: 28px 0 20px;
    letter-spacing: .3px
  }

  #service .content-text p {
    line-height: 2.01;
    margin-bottom: 39px;
    max-width: 100%
  }

  #service .content-list li {
    font-size: 16px;
    margin-bottom: 22px;
    padding-left: 26px
  }

  .nowrap {
    white-space: nowrap
  }

  .service-right {
    min-width: 0
  }

  #service .content-list li::before {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color_blue);
    top: 61%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
  }

  #service .content-img {
    width: 100%;
    flex-shrink: 0;
    margin-left: 0;
    padding: 0 2px 0 0;
    aspect-ratio: 345/422.37;
    max-height: inherit
  }

  #service .content-img img {
    aspect-ratio: 345/422.37;
    width: 100%;
    height: auto
  }

  #service .margin-12 {
    margin-left: 10px
  }
}

@media screen and (max-width:767px) {
  .service-left-wrap {
    text-align: left
  }

  #service .btn {
    width: 100%
  }

  #service .btn a {
    display: block;
    text-align: center
  }
}

#works {
  background: var(--color_white);
  text-align: center;
  margin: 0 auto;
  position: relative
}

#works .works-intro .works-item-inner {
  padding: 120px 32px 88px;
  text-align: left
}

#works .works-item-inner {
  padding: 128px 32px 209px;
  text-align: left;
  max-width: 1440px;
  margin: 0 auto
}

#works .works-branding-movie.works-item .works-item-inner {
  padding-top: 127px;
  padding-bottom: 209px
}

#works .works-event-movie.works-item .works-item-inner {
  padding: 127px 32px 209px
}

#works .section-title {
  position: relative;
  margin-bottom: 81px;
  text-align: center
}

#works .works-branding-movie.works-item .content-title,
#works .works-event-movie.works-item .content-title {
  margin-bottom: 40px
}

#works .section-title .en {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%)
}

#works .works-flex {
  display: flex;
  flex-direction: column-reverse
}

.works-sponsor {
  padding-bottom: 113px;
  overflow-x: auto
}

#works .works-list {
  display: flex;
  gap: 28px;
  margin: 32px auto;
  width: max-content;
  justify-content: center
}

#works .works-list:first-child {
  margin-top: 0
}

#works .works-list:last-child {
  margin-bottom: 0
}

.sp-only {
  display: none
}

#works .works-list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 63px;
  max-width: 310px
}

#works .works-list li .logo-ogakishi {
  width: 201px
}

#works .works-list li .logo-heisei {
  width: 222px
}

#works .works-list li .logo-public-health {
  width: 234.5px
}

#works .works-list li .logo-aichi-edu {
  width: 239px
}

#works .works-list li .logo-hanaya {
  width: 177.5px
}

#works .works-list li .logo-houkizai {
  width: 178.5px
}

#works .works-list li .logo-kyouritu {
  width: 310px
}

#works .works-list li .logo-matsuoka {
  width: 170px
}

#works .works-list li .logo-motosu {
  width: 209px
}

#works .works-list li .logo-yamamoto {
  width: 157px
}

#works .works-list li .logo-oasis {
  width: 204px
}

#works .works-list li .logo-minami {
  width: 276px
}

#works .works-list li .logo-shiraki {
  width: 218px
}

#works .works-list li img {
  width: 100%;
  height: 63px;
  object-fit: contain
}

#works .works-item {
  position: sticky;
  top: 0;
  height: auto;
  overflow: visible
}

.works-intro {
  z-index: 1
}

.works-pv {
  z-index: 2
}

.works-branding-movie {
  z-index: 3
}

.works-event-movie {
  z-index: 4
}

.works-influencers {
  z-index: 5
}

.works-item+.works-item {
  margin-top: -80px
}

#works .works-pv {
  background-color: #2c3f50
}

#works .works-branding-movie {
  background-color: #435769
}

#works .works-event-movie {
  background-color: #677f94
}

#works .content-title {
  font-weight: 700;
  font-size: 2.5em;
  color: var(--color_white);
  line-height: 1;
  margin-bottom: 40px
}

.btn-more {
  text-align: right;
  margin-right: 35px;
  margin-bottom: 22px;
  display: inline-block
}

.btn-more a {
  color: var(--color_white);
  font-size: 18px;
  display: inline-flex;
  line-height: 1;
  align-items: center
}

.btn-more.arrow-right a {
  justify-content: end
}

.btn-more.arrow-right {
  margin-right: 28px;
  margin-top: 29px
}

.btn-more .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #2c3f50;
  border-radius: 50%;
  margin-right: 12px;
  position: relative;
  transition: all .5s;
  margin-top: 2px
}

.btn-more.arrow-right .arrow {
  margin: 1px 0 0 12px
}

.btn-more .arrow::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-left: 2px solid var(--color_white);
  border-bottom: 2px solid var(--color_white);
  left: 10px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg)
}

.btn-more.arrow-right .arrow::before {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  left: 12px
}

.btn-more .arrow::after {
  position: absolute;
  content: "";
  width: 16px;
  height: 2px;
  background-color: var(--color_white);
  -webkit-transform: rotate(0);
  transform: rotate(0)
}

.works-branding-movie .btn-more .arrow,
.works-event-movie .btn-more .arrow,
.works-pv .btn-more .arrow {
  background-color: var(--color_white)
}

.works-branding-movie .btn-more .arrow::before,
.works-event-movie .btn-more .arrow::before,
.works-pv .btn-more .arrow::before {
  border-color: #435769
}

.works-branding-movie .btn-more .arrow::after,
.works-event-movie .btn-more .arrow::after,
.works-pv .btn-more .arrow::after {
  background-color: #435769
}

.works-event-movie .btn-more a span {
  color: #435769
}

.btn-more a:hover span {
  -webkit-transform: translateX(8px) scale(1.1);
  transform: translateX(8px) scale(1.1)
}

#works .works-thumbnail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 36px);
  max-width: 1376px
}

#works .works-thumbnail a:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05)
}

#works .works-thumbnail .img {
  max-width: 670px;
  aspect-ratio: 670/376;
  overflow: hidden
}

#works .works-thumbnail .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all .5s;
  transform-origin: center;
  will-change: transform
}

#works .works-thumbnail p {
  margin-top: 28px;
  color: var(--color_white);
  font-size: 1.25em;
  line-height: 1
}

#works .works-influencers {
  background-color: #e5ecf3;
  color: var(--color_black)
}

.btn-more.gray a {
  color: #2c3f50
}

.btn-more.gray a span {
  color: var(--color_white)
}

.btn-more.gray a span::before {
  background-color: #2c3f50
}

#works .works-influencers .works-item-inner {
  padding: 118px 32px 195px
}

#works .works-influencers .content-title {
  color: var(--color_black);
  margin-bottom: 40px
}

#works .works-influencers .flex {
  display: flex;
  gap: 61px;
  align-items: center;
  max-width: 1199px;
  margin: 0 auto 26px
}

#works .works-influencers .insta {
  width: clamp(286px, 27vw, 348px);
}

#works .works-influencers .video-link {
  aspect-ratio: 347 / 616;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  overflow: hidden;
  width: clamp(285px, 27vw, 347.5px);
}

#works .works-influencers .insta p {
  font-weight: 700;
  font-size: 1.25em;
  margin: 29px 0 0 -1px;
  line-height: 1
}

#works .works-influencers .content-text {
  font-family: var(--font_inter);
  border-radius: 10px;
  border: 1px solid var(--color_white);
  padding: 39px 33px 39px 31px;
  width: clamp(350px, 60vw, 788px)
}

#works .works-influencers .content-text:first-child {
  margin-bottom: 16px
}

#works .works-influencers .influencers-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 16px;
  margin-left: 1px;
  line-height: 1
}

#works .works-influencers .content-text p {
  font-weight: 500;
  line-height: 2.188;
  letter-spacing: .05px
}

@media screen and (max-width:1024px) {
  #works {
    margin-top: -1px
  }

  #works .works-intro .works-item-inner {
    padding: 116px 0 90px;
    text-align: left
  }

  .works-sponsor {
    padding-bottom: 113px;
    overflow-x: hidden
  }

  #works .works-list {
    display: flex;
    width: max-content;
    gap: 0;
    margin: 32px 0;
    justify-content: flex-start;
    will-change: transform;
    backface-visibility: hidden;
    contain: layout paint
  }

  #works .works-list li {
    flex-shrink: 0;
    margin-right: 28px;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

  .scroll-left,
  .scroll-right {
    will-change: transform;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden
  }

  .sp-only {
    display: block
  }

  #works .works-list:last-child {
    margin-bottom: 0
  }

  .scroll-right {
    animation: scrollRight 25s linear infinite;
    animation-fill-mode: forwards
  }

  @keyframes scrollRight {
    from {
      -webkit-transform: translateX(-50%);
      transform: translateX(-50%)
    }

    to {
      -webkit-transform: translateX(0);
      transform: translateX(0)
    }
  }

  .scroll-left {
    animation: scrollTop 25s linear infinite;
    animation-fill-mode: forwards
  }

  @keyframes scrollTop {
    from {
      -webkit-transform: translateX(0);
      transform: translateX(0)
    }

    to {
      -webkit-transform: translateX(-1008px);
      transform: translateX(-1008px)
    }
  }

  .scroll-left:last-child {
    animation: scrollBottom 25s linear infinite;
    animation-fill-mode: forwards
  }

  @keyframes scrollBottom {
    from {
      -webkit-transform: translateX(0);
      transform: translateX(0)
    }

    to {
      -webkit-transform: translateX(-1204px);
      transform: translateX(-1204px)
    }
  }

  #works .works-influencers .works-flex {
    flex-direction: column-reverse
  }

  #works .works-influencers .flex {
    flex-direction: column;
    margin-bottom: 27px;
    gap: 58px;
    padding: 0 24px;
    width: 100%;
    align-items: stretch
  }

  #works .works-influencers .insta {
    margin: 0 auto
  }

  #works .works-influencers .content-text {
    width: min(600px, 100%);
    margin: 0 auto
  }

}

@media screen and (max-width:768px) {
  #works .sp-br {
    display: block
  }

  #works .section-title {
    margin-bottom: 60px;
    font-size: 40px
  }

  #works .section-title .en {
    font-size: 80px;
    letter-spacing: 0;
    top: -54px
  }

  #works .works-pv .works-item-inner {
    padding-bottom: 154px
  }

  #works .works-branding-movie .works-item-inner {
    padding-bottom: 146px
  }

  #works .works-event-movie.works-item .works-item-inner {
    padding: 99px 0 160px
  }

  #works .works-item-inner {
    padding: 75px 0
  }

  #works .works-flex {
    flex-direction: column-reverse;
    gap: 32px
  }

  #works .works-event-movie .works-flex {
    gap: 38px
  }

  #works .works-list li a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 63px;
    max-width: 310px
  }

  #works .works-list li img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain
  }

  #works .works-item {
    position: sticky;
    top: 0;
    height: auto;
    overflow: visible
  }

  #works .works-pv .content-title {
    margin-bottom: 25px
  }

  #works .works-branding-movie.works-item .works-item-inner {
    padding: 84px 0 145px
  }

  #works .content-title {
    font-size: 32px;
    padding-left: 24px;
    margin-bottom: 26px;
    line-height: 1.2
  }

  #works .works-branding-movie .content-title {
    margin-bottom: 28px
  }

  #works .works-branding-movie .btn-more.arrow-right {
    margin-top: 16px
  }

  #works .works-event-movie .content-title {
    margin-bottom: 29px
  }

  .btn-more.arrow-right {
    margin-right: 24px;
    margin-bottom: 22px
  }

  .btn-more a {
    color: var(--color_white);
    font-size: 15px
  }

  .btn-more a span {
    margin-left: 11px
  }

  #news .btn-more {
    margin-right: 0
  }

  #works .btn-more .arrow {
    width: 26px;
    height: 26px;
    margin-left: 8px
  }

  #works .btn-more .arrow::before {
    width: 6px;
    height: 6px;
    left: 11px
  }

  #works .btn-more .arrow::after {
    width: 10px
  }

  #works .works-thumbnail {
    grid-template-columns: 1fr;
    gap: 30px;
    width: 100%
  }

  #works .works-branding-movie .works-thumbnail {
    gap: 32px
  }

  #works .works-event-movie .works-thumbnail {
    min-height: 524px
  }

  #works .works-thumbnail li:last-child p {
    margin-top: 13px
  }

  #works .works-thumbnail .img {
    max-width: 100%;
    aspect-ratio: 393/221
  }

  #works .works-thumbnail p {
    margin-top: 12px;
    font-size: 14px;
    padding: 0 24px
  }

  #works .works-branding-movie .works-thumbnail p {
    font-size: 12px;
    margin-top: 12px
  }

  #works .works-influencers .works-flex {
    gap: 0
  }

  #works .works-influencers .works-item-inner {
    padding: 99px 0 180px
  }

  #works .works-influencers .content-title {
    color: var(--color_black);
    margin-bottom: 28px
  }

  #works .works-influencers .works-flex:nth-child(2) {
    margin-top: 40px
  }

  #works .works-influencers .insta {
    width: 284px;
    height: 506px;
    aspect-ratio: 284/506;
    margin: 0
  }

  #works .works-influencers .insta .mv-video {
    margin-left: 0;
    display: block
  }

  #works .works-influencers .insta p {
    font-weight: 700;
    font-size: 14px;
    margin: 12px 0 0 0
  }

  #works .works-influencers .content-text {
    padding: 31px 24px 30px;
    width: 100%
  }

  #works .works-influencers .content-text:first-child {
    margin-bottom: 8px
  }

  #works .works-influencers .influencers-title {
    font-size: 20px;
    margin: 0 0 12px 0;
    line-height: 1
  }

  #works .works-influencers .content-text p {
    font-weight: 500;
    line-height: 2;
    font-family: var(--font_noto)
  }

  #works .works-influencers .content-text .pc-br {
    display: none
  }

  #works .works-influencers .btn-more {
    margin-right: 24px
  }
}

@media screen and (max-width:390px) {
  .sp-br {
    display: none
  }

  .mv .sp-br {
    display: block
  }

  #intro p {
    padding-left: 20px;
    padding-right: 20px
  }

  br {
    display: none
  }

  #about .sp-br {
    display: none
  }

  .nowrap {
    white-space: wrap
  }
}

.news-hidden {
  background: linear-gradient(to bottom, #e5ecf3, #435769)
}

#news {
  border-radius: 30px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--color_white);
  position: relative;
  z-index: 6;
  padding: 0 32px
}

.content-item.is-hidden {
  display: none
}

#news .content-inner {
  max-width: 1206px;
  margin: 0 auto;
  padding: 119px 0 92px
}

#news .section-title {
  margin-bottom: 82px
}

.content-tab-list {
  display: flex;
  font-family: var(--font_inter);
  font-weight: 500;
  font-size: 1.25em;
  line-height: 1;
  margin-bottom: 60px;
  padding-bottom: 23px;
  white-space: nowrap;
  border-bottom: 1px solid var(--color_black)
}

.content-tab {
  padding: 10px 0 10px 16px;
  margin-right: 16px;
  border-radius: 30px;
  transition: background-color .6s, color .3s, padding .6s, margin .6s;
  cursor: pointer
}

.content-tab.is-active {
  color: var(--color_white);
  background-color: var(--color_blue);
  padding: 10px 20px;
  margin-right: 16px
}

.post-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 384px));
  gap: 40px 27px;
  margin-bottom: 78px;
  justify-content: start
}

.post-list a {
  color: var(--color_black);
  transition: all .5s;
  font-family: var(--font_inter)
}

.post-list a:hover {
  opacity: .7
}

.post-list a:hover img {
  transform: scale(1.05)
}

.post-list .img {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 22px;
  aspect-ratio: 384/265
}

.post-list .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .5s;
  will-change: transform
}

.post-content-text span {
  font-size: .75em
}

.post-content-text .tab {
  padding: 5px 11px 6px;
  border-radius: 30px;
  border: 1px solid var(--color_black);
  margin-right: 4px;
  line-height: 1
}

#news .post-content-text .tab {
  margin-right: 0
}

.post-content-text .date {
  margin-right: 8px
}

#news .post-content-text .date {
  margin: 0 0 0 4px
}

.post-content-text .post-title {
  font-family: var(--font_inter);
  font-weight: 500;
  font-size: 20px;
  margin: 20px 0 12px;
  line-height: 1.5
}

.post-content-text p {
  font-size: 14px;
  line-height: 2.2
}

#news .btn-more a {
  justify-content: end
}

#news .btn-more {
  margin-right: 0;
  display: block
}

#news .btn-more a span {
  margin-left: 12px
}

#news .btn-more .arrow {
  width: 40px;
  height: 40px
}

#news .btn-more .arrow::before {
  left: 17px
}

@media screen and (max-width:1024px) {
  .post-list {
    justify-content: center
  }
}

@media screen and (max-width:768px) {
  #news {
    padding: 0 22px 0 24px;
    border-radius: 10px
  }

  #news .content-inner {
    padding: 74px 0 59px
  }

  #news .section-title {
    margin-bottom: 28px
  }

  .content-tab-scroll {
    overflow-x: auto;
    width: 100vw;
    margin-left: -24px
  }

  .content-tab-list {
    padding: 14px 24px 12px;
    gap: 0;
    font-size: 16px;
    margin-bottom: 0;
    border-bottom: none;
    display: flex;
    flex-wrap: nowrap;
    width: max-content
  }

  .content-tab-scroll {
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    position: relative
  }

  .content-tab-scroll::-webkit-scrollbar {
    display: none
  }

  .custom-scrollbar {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-top: 0
  }

  #news .custom-scrollbar {
    margin-bottom: 40px
  }

  .scrollbar-track {
    width: 100%;
    height: 8px;
    background: #eee;
    border-radius: 10px;
    position: relative;
    top: 2px
  }

  .scrollbar-thumb {
    position: absolute;
    left: 0;
    width: 95px;
    height: 4px;
    background: #cdcdcd;
    border-radius: 10px
  }

  .content-tab {
    padding: 10px 0 10px 10px;
    margin-right: 10px
  }

  .content-tab.is-active {
    margin-right: 8px;
    padding: 10px 20px 10px 21px
  }

  .post-list {
    grid-template-columns: 1Fr;
    gap: 32px;
    margin-bottom: 60px;
    padding-left: 1px
  }

  .post-list a {
    display: flex;
    gap: 16px
  }

  .post-list a:hover {
    opacity: .7
  }

  .post-list a:hover img {
    transform: scale(1.1)
  }

  .post-list .img {
    width: 102px;
    height: 102px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0;
    aspect-ratio: 1/1;
    flex-shrink: 0
  }

  .post-list .img img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: all .5s
  }

  .post-content-text {
    margin-top: 1px
  }

  .post-content-text .date {
    font-size: 12px;
    margin-right: 0
  }

  .post-content-text .tab {
    padding: 4px 12px;
    border-radius: 30px;
    border: 1px solid var(--color_black);
    margin-right: 2px;
    font-size: 10px
  }

  .post-content-text .post-title {
    font-family: var(--font_noto);
    font-size: 16px;
    margin: 16px 0 0
  }

  .post-list p {
    display: none
  }

  #news .btn-more {
    margin-right: 0
  }

  #news .btn-more .arrow {
    width: 24px;
    height: 24px;
    margin-left: 9px
  }

  #news .btn-more .arrow::before {
    width: 6px;
    height: 6px;
    left: 11px
  }

  #news .btn-more .arrow::after {
    width: 10px
  }
}

@media screen and (max-width:390px) {
  #news .post-content-text .tab {
    display: inline-block;
    margin-top: 4px
  }

  #news .post-content-text .date {
    display: block;
    margin: 4px 0 0 0
  }
}

#visual-slide {
  position: relative;
  z-index: 1;
  padding: 46px 0 200px;
  margin-top: -1px;
  background-color: #435769
}

#visual-slide .visual-text {
  position: absolute;
  text-align: center;
  color: var(--color_white);
  font-family: var(--font_noto);
  left: 50%;
  -webkit-transform: translateX(-50%) translateZ(0) scale(.8);
  transform: translateX(-50%) translateZ(0) scale(.8);
  z-index: 10;
  font-size: 3.75em;
  font-weight: 700;
  transition: none;
  white-space: nowrap;
  letter-spacing: 2px;
  will-change: transform
}

#visual-slide .slider {
  overflow: hidden;
  margin-top: 205px;
  will-change: transform;
  backface-visibility: hidden;
  contain: layout paint
}

#visual-slide .slider-track {
  display: flex;
  width: fit-content;
  animation: slide 50s linear infinite;
  animation-fill-mode: forwards;
  will-change: transform;
  -webkit-transform: translateZ(0);
  transform: translate3d(0, 0, 0);
}

#visual-slide .track2 {
  margin-top: 92px;
  animation-direction: reverse
}

#visual-slide .slider img {
  width: 397px;
  flex-shrink: 0;
  margin-left: 38px;
}

@keyframes slide {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }

  100% {
    -webkit-transform: translateX(-2610px);
    transform: translateX(-2610px)
  }
}

@media screen and (max-width:1024px) {
  #visual-slide {
    position: relative;
    z-index: 1;
    padding: 22px 0 120px;
    margin-top: -100px;
    background-color: #435769
  }

  #visual-slide .slider {
    overflow: hidden;
    margin-top: 58px;
    will-change: transform;
    backface-visibility: hidden;
    contain: layout paint
  }

  #visual-slide .visual-text {
    font-size: 24px;
    top: 20px;
    letter-spacing: 1px;
    transform: none
  }

  #visual-slide .slider-track {
    gap: 0
  }

  #visual-slide .track2 {
    margin-top: 52px
  }

  #visual-slide .slider img {
    width: 235.83px;
    flex-shrink: 0;
    margin-left: 20px;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

  @keyframes slide {
    0% {
      -webkit-transform: translateX(0);
      transform: translateX(0)
    }

    100% {
      -webkit-transform: translateX(-1535px);
      transform: translateX(-1535px)
    }
  }
}

@media screen and (max-width:390px) {
  #visual-slide .visual-text {
    font-size: 18px;
    top: 26px
  }
}

#cta .cta-btn {
  width: 100%;
  height: 474px;
  background-image: linear-gradient(90deg, rgba(78, 201, 176, .8), rgba(146, 201, 78, .8)), url(../img/top/intro2.webp);
  background-position: center 35%;
  background-size: cover
}

#cta .cta-btn.document {
  background-image: linear-gradient(90deg, rgba(78, 127, 201, .8), rgba(187, 78, 201, .8)), url(../img/top/doc-img.webp);
  background-position: center center
}


#cta .cta-btn a {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: block;
  color: var(--color_white);
  font-size: 40px;
  font-weight: 700;
  padding: 80px 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box
}

#cta .cta-btn a:hover {
  opacity: 1
}

#cta .cta-btn a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #4ec9b0, #92c94e);
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s cubic-bezier(.19, 1, .22, 1);
  z-index: 1
}

#cta .cta-btn.cta-btn.document a::after {
  background-image: linear-gradient(90deg, #4e7fc9, #bb4ec9)
}

#cta .cta-btn a:hover::after {
  transform: scaleX(1);
  opacity: 1
}

#cta .cta-inner {
  position: absolute;
  text-align: center;
  z-index: 2;
  top: 56%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%)
}

#cta .en {
  position: absolute;
  top: -12%;
  left: 51%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: .2;
  font-size: 80px;
  font-family: var(--font_inter);
  font-weight: 900;
  white-space: nowrap;
  z-index: 2;
  letter-spacing: 3px
}

#cta .ja {
  position: relative;
  font-size: 40px
}

#cta .arrow {
  position: absolute;
  display: inline-block;
  width: 38px;
  height: 4px;
  border-radius: 9999px;
  background-color: var(--color_white);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%)
}

#cta .arrow::after,
#cta .arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  width: 22px;
  height: 4px;
  border-radius: 9999px;
  background-color: var(--color_white);
  -webkit-transform-origin: calc(100% - 2px) 50%;
  transform-origin: calc(100% - 2px) 50%
}

#cta .arrow::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg)
}

.arrow::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg)
}

#cta .arrow-circle {
  position: relative;
  content: "";
  width: 186px;
  height: 186px;
  border-radius: 50%;
  border: 2px solid var(--color_white);
  top: 29.2%;
  left: 50.2%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 2
}

@media screen and (max-width:1024px) {
  #cta .cta-btn {
    width: 100%;
    height: auto;
    aspect-ratio: 393/206
  }

  #cta .arrow-circle {
    width: 120px;
    height: 120px;
    left: 60%
  }
}

@media screen and (max-width:768px) {
  #cta .cta-btn.contact {
    background-position: center 50%
  }

  #cta .cta-btn.document {
    background-image: linear-gradient(90deg, rgba(78, 127, 201, .8), rgba(187, 78, 201, .8)), url(../img/top/doc-img-sp.webp);
    background-position: center center
  }


  #cta .cta-btn a {
    padding: 72px 24px 72px 0
  }

  #cta .cta-btn.contact .en {
    top: clamp(8%, calc(26% - (100vw - 393px) * .0427), 25.6%);
    font-size: clamp(44px, 10vw, 60px)
  }

  #cta .cta-inner {
    top: 53%;
    -webkit-transform: translate(6%, -50%);
    transform: translate(6%, -50%)
  }

  #cta .contact .cta-inner {
    top: 54%;
    -webkit-transform: translate(8%, -50%);
    transform: translate(8%, -50%)
  }

  #cta .ja {
    font-size: clamp(24px, 5vw, 40px)
  }

  #cta .en {
    top: clamp(8%, calc(26% - (100vw - 393px) * .0427), 27%);
    letter-spacing: 1px;
    font-size: clamp(40px, 10vw, 60px)
  }

  #cta .arrow {
    right: 45px;
    width: clamp(14px, 3.5vw, 28px);
    height: 2px;
    top: 48%
  }

  #cta .contact .arrow::after,
  #cta .contact .arrow::before {
    top: calc(50% - 1px)
  }

  #cta .contact .arrow-circle {
    width: clamp(62px, 12vw, 120px);
    height: clamp(62px, 12vw, 120px);
    left: 50.2%
  }

  #cta .arrow::after,
  #cta .arrow::before {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    right: 1px;
    width: clamp(8px, 2vw, 18px);
    height: 2px;
    border-radius: 9999px;
    background-color: var(--color_white);
    -webkit-transform-origin: calc(100%) 50%;
    transform-origin: calc(100%) 50%
  }

  #cta .cta-btn.document .arrow-circle {
    width: clamp(62px, 12vw, 120px);
    height: clamp(62px, 12vw, 120px);
    left: 50%
  }
}

@media screen and (max-width:425px) {
  #cta .arrow-circle {
    top: 48.9%
  }
}

@media screen and (max-width:390px) {
  #cta .cta-btn.contact .arrow-circle {
    display: none
  }

  #cta .cta-btn.document .arrow-circle {
    display: none
  }
}

#footer {
  background-color: var(--color_black);
  color: var(--color_white);
  padding: 115px 2% 0;
  overflow: hidden;
  box-sizing: border-box
}

#footer .footer-inner {
  max-width: 1206px;
  margin: 0 auto
}

#footer .flex {
  display: flex;
  justify-content: space-between
}

.footer-left,
.footer-right {
  flex: none
}

#footer a {
  color: var(--color_white);
  font-size: 16px;
  font-weight: 700
}

#footer .site-title {
  margin: 0
}

#footer .site-title a {
  font-size: 30.62px
}

#footer .sns {
  display: flex;
  gap: 12px;
  margin-top: 33px
}

#footer .sns a {
  display: block;
  width: 64px;
  height: 64px;
  position: relative;
  transition: all .5s
}

#footer .sns a:hover {
  opacity: .6
}

#footer .sns a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%)
}

#footer .sns .insta-icon a img {
  width: 78%;
  height: 78%
}

#footer .policy {
  margin-top: 57px
}

#footer .policy li {
  margin-bottom: 19px
}

#footer .policy li:last-child {
  margin-bottom: 0
}

#footer .policy a {
  display: inline-block;
  font-weight: 400;
  position: relative
}

#footer .policy a::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: var(--color_white);
  bottom: 0;
  left: 0;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s
}

#footer .policy a:hover::after {
  transform: scaleX(1)
}

#footer .footer-nav {
  display: flex;
  gap: 52px;
  margin-top: 2px
}

#footer .footer-nav ul li {
  overflow: hidden;
  margin-bottom: 35px
}

.sp {
  display: none
}

#footer .copy-right {
  margin: 0;
  font-size: 14px;
  text-align: right;
  padding: 56px 0 40px
}

@media screen and (max-width:768px) {
  #footer {
    padding: 83px 24px 0;
    letter-spacing: .03em
  }

  #footer .flex {
    flex-direction: column
  }

  #footer .site-title a {
    font-size: 30px;
    line-height: 1;
    margin-left: 1px
  }

  #footer .sns {
    display: flex;
    gap: 12px;
    margin-top: 38px;
    margin-bottom: 56px
  }

  #footer .sns .insta-icon {
    margin-right: 1px
  }

  #footer .sns a {
    width: 40px;
    height: 40px
  }

  #footer .policy.pc {
    display: none
  }

  #footer .policy {
    margin-top: 49px;
    margin-left: 1px;
    display: flex;
    flex-direction: column
  }

  #footer .policy li {
    margin-bottom: 21px
  }

  #footer .policy li:last-child {
    margin-bottom: 0
  }

  #footer .policy a {
    display: inline-block;
    position: relative;
    font-size: 14px;
    letter-spacing: -.1px
  }

  #footer .policy a::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background: var(--color_white);
    bottom: 0;
    left: 0;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s
  }

  #footer .policy a:hover::after {
    transform: scaleX(1)
  }

  .pc {
    display: none
  }

  .sp {
    display: block
  }

  #footer .footer-nav {
    display: flex;
    gap: 51px;
    margin-top: 1px
  }

  #footer .footer-nav ul li {
    overflow: hidden;
    margin-bottom: 35px;
    letter-spacing: .2px
  }

  #footer .copy-right {
    text-align: right;
    padding: 57px 0 80px;
    letter-spacing: -.1px
  }
}

@media screen and (max-width:390px) {
  #footer .footer-nav {
    gap: 22px
  }
}

.page-title {
  padding-top: 218px;
  font-size: 5em;
  font-weight: 700;
  font-family: var(--font_inter);
  letter-spacing: .03em;
  line-height: 1
}

.page-title .ja {
  margin-top: 18px;
  display: block;
  font-size: 24px;
  letter-spacing: 0
}

@media screen and (max-width:768px) {
  .page-title {
    padding-top: 170px;
    font-size: 64px
  }

  .page-title .ja {
    margin-top: 20px
  }
}

.contact-page-wrap,
.document-wrap {
  padding: 0 2%
}

#contact-page {
  max-width: 1206px;
  margin: 0 auto 301px
}

#contact-page .page-title {
  margin: 0 auto 60px
}

#contact-page .page-title .ja {
  margin-top: 21px
}

.contact-content {
  background-color: var(--color_white);
  padding: 92px 3%;
  margin: 0 auto;
  font-weight: 500;
  font-size: 16px;
  line-height: 1
}

.contact-lead {
  max-width: 736px;
  margin: 0 auto;
  line-height: 2.375
}

.contact-form {
  max-width: 736px;
  margin: 61px auto 0
}

.form-item {
  width: 100%;
  margin-bottom: 40px
}

.form-item.form-margin {
  margin-bottom: 38px
}

.form-item label {
  display: flex;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.1875;
  gap: 12px
}

.form-item .required {
  display: inline-block;
  background-color: #cc2e2e;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: var(--color_white);
  padding: 4px 4px
}

.form-item input {
  width: 100%;
  height: auto;
  border: .5px solid #969696;
  border-radius: 5px;
  padding: 19px 23px 16px
}

.form-item input::placeholder {
  color: #00000099;
  font-size: 16px;
  font-family: var(--font_noto);
  font-weight: 500
}

.form-margin .required {
  margin-top: 1px
}

.checkbox-group,
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.checkbox-group,
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 17px
}

.form-label {
  margin-top: -1px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  font-weight: 700;
  line-height: 1.1875;
  gap: 12px;
  flex-wrap: wrap
}

.radio-form {
  margin-bottom: 38px
}

.radio-form .required {
  margin-top: 1px;
  margin-left: 1px
}

.form-margin .form-label {
  margin-bottom: 18px
}

.form-item label.checkbox-custom,
.form-item label.radio-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  position: relative;
  margin-bottom: 0;
  flex-shrink: 0
}

.form-item--agree.form-item label.checkbox-custom {
  gap: 7px;
  white-space: nowrap
}

.form-item .checkbox-text,
.form-item .radio-text {
  font-weight: 500
}

.checkbox-custom input,
.radio-custom input {
  position: absolute;
  opacity: 0;
  pointer-events: none
}

.radio-mark {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 1px solid #29a189;
  border-radius: 50%;
  box-sizing: border-box;
  position: relative;
  top: 0
}

.radio-mark::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: #29a189;
  border-radius: 50%;
  -webkit-transform: scale(0);
  transform: scale(0);
  transition: transform .2s ease
}

.radio-custom input:checked+.radio-mark::after {
  transform: scale(1)
}

.note-multiple {
  font-weight: 500;
  font-size: 14px;
  margin: 1px 0 0 4px
}

.form-message {
  margin-top: -1px;
  margin-bottom: 39px
}

.checkbox-mark {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 1px solid #29a189;
  border-radius: 5px;
  top: 1px;
  box-sizing: border-box;
  position: relative;
  flex-shrink: 0
}

.checkbox-mark.checkbox-privacy {
  width: 20px;
  height: 19px;
  top: -1px
}

.checkbox-mark::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 4px;
  height: 8px;
  border-right: 2px solid #29a189;
  border-bottom: 2px solid #29a189;
  -webkit-transform: rotate(45deg) scale(0);
  transform: rotate(45deg) scale(0);
  transition: transform .2s ease
}

.form-item--agree .checkbox-mark::after {
  left: 6px;
  top: 2px;
  width: 4px;
  height: 12px;
  border-right: 2px solid #29a189;
  border-bottom: 2px solid #29a189;
  -webkit-transform: rotate(45deg) scale(0);
  transform: rotate(45deg) scale(0);
  transition: transform .2s ease
}

.checkbox-custom input:checked+.checkbox-mark::after {
  -webkit-transform: rotate(45deg) scale(1);
  transform: rotate(45deg) scale(1)
}

.form-item textarea {
  width: 100%;
  height: auto;
  border: 1px solid #969696;
  border-radius: 5px;
  padding: 22px 23px 21px
}

.form-item textarea::placeholder {
  color: #00000099;
  font-size: 16px;
  font-weight: 500
}

.recaptcha {
  margin-bottom: 61px
}

.form-item--agree .checkbox-text {
  font-size: 16px;
  font-weight: 400;
  align-items: center
}

.form-item--agree .checkbox-text a {
  color: #3a7cff;
  position: relative
}

.form-item--agree .checkbox-text a::before {
  position: absolute;
  content: "";
  width: 97%;
  height: 1px;
  background-color: #3a7cff;
  left: 0;
  bottom: 2px
}

.form-item--agree .checkbox-text .text {
  margin-left: -3px
}

.form-item--agree .required {
  margin-left: 9px
}

.form-submit button {
  color: var(--color_white);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  display: inline-block;
  padding: 22px 67px 20px 67px;
  background-color: var(--color_blue);
  border-radius: 50px;
  border: 1px solid var(--color_blue);
  transition: all .3s;
  margin-left: 2px
}

.form-submit button:hover {
  color: var(--color_blue);
  background-color: var(--color_white)
}

@media screen and (max-width:768px) {

  .contact-page-wrap,
  .document-wrap {
    padding: 0 24px;
    background-color: var(--color_bg)
  }

  #contact-page {
    margin: 0 auto
  }

  #contact-page .contact-content {
    padding-bottom: 191px
  }

  #contact-page .page-title {
    margin: 0 auto 50px
  }

  #contact-page .page-title .ja {
    margin-top: 20px
  }

  .contact-content {
    padding: 0;
    background-color: var(--color_bg)
  }

  .contact-lead {
    line-height: 2;
    margin-bottom: 20px
  }

  .contact-form {
    margin: 0 auto;
    padding-top: 21px
  }

  #contact-page .contact-form {
    position: relative
  }

  #contact-page .contact-form::before {
    position: absolute;
    content: "";
    width: 100vw;
    height: 100%;
    background-color: var(--color_white);
    left: 50%;
    top: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 0
  }

  #contact-page .contact-form>* {
    position: relative;
    z-index: 1
  }

  .form-item {
    margin-bottom: 32px
  }

  .form-item input {
    padding: 20px 10px 15px
  }

  .form-label {
    margin-top: 32px;
    margin-bottom: 19px
  }

  .checkbox-group,
  .radio-group {
    display: flex;
    flex-direction: column;
    gap: 17px;
    margin-bottom: -2px
  }

  .contact-page-wrap .form-label {
    margin-bottom: 18px
  }

  .form-item.radio-form {
    margin-top: -1px
  }

  .form-item.form-margin {
    margin-bottom: 33px
  }

  .form-item textarea {
    width: 100%;
    height: auto;
    border: 1px solid #969696;
    border-radius: 5px;
    padding: 16px 10px 27px
  }

  .form-item.form-message {
    margin-bottom: 31px
  }

  .form-item--agree {
    margin-bottom: 41px
  }

  .form-submit button {
    width: calc(100% - 5px);
    padding: 24px 0
  }

  .contact-page-wrap .form-submit button {
    padding: 22px 0 20px
  }
}

@media screen and (max-width:375px) {
  .form-item--agree.form-item label.checkbox-custom a {
    display: block
  }

  .form-item--agree .checkbox-text a::before {
    width: 86%
  }
}

#document-page {
  max-width: 1210px;
  margin: 0 auto 299px
}

.document-page .page-title {
  margin-left: 2px
}

#document-page .document-content {
  margin-top: 102px;
  display: flex;
  gap: 34px
}

#document-page .document-content a {
  display: block;
  width: 50%;
  font-size: 1.5em;
  font-weight: 700;
  color: var(--color_black);
  line-height: 1.5
}

#document-page .document-content a .img {
  width: 100%;
  max-width: 590px;
  aspect-ratio: 587/335;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 8px
}

#document-page .document-content a .img img {
  transition: all .5s;
  height: 100%;
  object-fit: cover
}

#document-page .document-content a:hover .img img {
  transform: scale(1.03)
}

@media screen and (max-width:768px) {
  #document-page {
    margin: 0 auto 252px;
    padding: 0 24px
  }

  .document-page .page-title {
    margin-left: 0
  }

  #document-page .page-title .ja {
    margin-top: 20px
  }

  #document-page .document-content {
    margin-top: 80px;
    flex-direction: column;
    gap: 39px
  }

  #document-page .document-content a {
    width: 100%;
    font-size: 16px
  }
}

#document-contact-page {
  max-width: 1206px;
  margin: 0 auto 103px
}

#document-contact-page .document-contact-content {
  margin-top: 82px;
  display: flex;
  gap: 32px
}

.page-title {
  margin: 0
}

#document-contact-page .document-text {
  width: 50%;
  font-weight: 500;
  line-height: 2.4
}

#document-contact-page .content-title {
  font-weight: 700;
  font-size: 2em;
  margin-bottom: 22px;
  margin-top: 0;
  line-height: 1.5
}

#document-contact-page .img {
  max-height: 308px;
  aspect-ratio: 539/308;
  margin-bottom: 30px;
  line-height: 1
}

#document-contact-page .img img {
  height: 100%;
  object-fit: cover
}

#document-contact-page p:last-child {
  margin-bottom: 0;
  line-height: 2.35
}

#document-contact-page .letter-space {
  letter-spacing: -.1px
}

#document-contact-page .document-points {
  border: 1px solid #969696;
  border-left: none;
  border-right: none
}

#document-contact-page .document-points p {
  margin-bottom: 0
}

#document-contact-page .document-points ul {
  margin-bottom: 20px
}

#document-contact-page .document-points li {
  padding-left: 24px;
  position: relative;
  line-height: 2.4
}

#document-contact-page .document-points li::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--color_black);
  top: 53%;
  left: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%)
}

#document-contact-page .contact-content {
  width: 50%;
  padding: 100px 0
}

#document-contact-page .form-item:last-child {
  margin-bottom: 0
}

#document-contact-page .form-item.last-form-item {
  margin-top: -2px;
  margin-bottom: 39px
}

#document-contact-page .form-contents {
  margin: 0 auto;
  max-width: 467px
}

#document-contact-page .form-item {
  margin-bottom: 40px
}

#document-contact-page .form-item input {
  width: 100%;
  padding: 19px 21px 16px;
  box-sizing: border-box
}

#document-contact-page .contact-content .form-label {
  margin-bottom: 18px;
  margin-top: -1px
}

#document-contact-page .contact-content .form-label .required {
  margin-top: 1px
}

#document-contact-page .form-item textarea {
  padding: 20px 15px 37px;
  box-sizing: border-box;
  width: 100%
}

#document-contact-page .form-item--agree {
  margin-bottom: 59px
}

#document-contact-page .form-submit button {
  color: var(--color_white);
  max-width: 100%;
  width: 99.1%;
  padding: 22px 0 20px;
  background-color: var(--color_black);
  border: 1px solid var(--color_black);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 11px;
  line-height: 1;
  margin-left: 2px
}

#document-contact-page .form-submit span {
  display: block;
  white-space: nowrap;
  margin-right: 2px
}

#document-contact-page .form-submit .arrow::after {
  position: absolute;
  display: inline-block;
  content: "";
  width: 2px;
  height: 18px;
  background-color: var(--color_white);
  top: -20px;
  right: 7px;
  transition: all .3s;
  transform: none
}

#document-contact-page .form-submit .arrow::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border: 2px solid var(--color_white);
  border-right: none;
  border-top: none;
  top: -8px;
  left: 2px;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
  transition: all .3s
}

#document-contact-page .form-submit .arrow {
  position: relative;
  content: "";
  width: 15px;
  height: 2px;
  background-color: var(--color_white);
  bottom: -9px;
  left: -3px;
  transition: .3s
}

#document-contact-page .form-submit button:hover {
  background-color: var(--color_white);
  color: var(--color_black)
}

#document-contact-page .form-submit button:hover .arrow {
  bottom: -16px;
  background-color: var(--color_black)
}

#document-contact-page .form-submit button:hover .arrow::before {
  border-color: var(--color_black)
}

#document-contact-page .form-submit button:hover .arrow::after {
  background-color: var(--color_black)
}

#document-contact-page .pc-br {
  display: block
}

@media screen and (max-width:768px) {
  #document-contact-page .pc-br {
    display: none
  }

  .document-wrap {
    padding: 0
  }

  #document-contact-page {
    margin-bottom: 163px
  }

  #document-contact-page .document-contact-content {
    margin-top: 95px;
    flex-direction: column;
    gap: 65px
  }

  #document-contact-page .document-text {
    width: 100%;
    line-height: 2.2
  }

  #document-contact-page .page-title {
    padding: 170px 24px 0
  }

  #document-contact-page .content-title {
    font-size: 20px;
    margin-bottom: 14px;
    padding-left: 24px
  }

  #document-contact-page .img {
    width: 100%;
    margin-bottom: 21px;
    aspect-ratio: 539/310;
    overflow: hidden
  }

  #document-contact-page .img img {
    height: 100%;
    object-fit: cover
  }

  #document-contact-page .document-points ul {
    margin-bottom: 19px
  }

  #document-contact-page .document-points li {
    padding-left: 21px;
    line-height: 2.2
  }

  #document-contact-page .document-points li::before {
    width: 4px;
    height: 4px;
    top: 54%;
    left: 9px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%)
  }

  #document-contact-page .content-text {
    padding: 0 24px
  }

  #document-contact-page .contact-content {
    width: 100%;
    padding: 60px 24px 71px;
    box-sizing: border-box
  }

  #document-contact-page .contact-content {
    background: var(--color_white)
  }

  #document-contact-page .form-item {
    margin-bottom: 40px
  }

  #document-contact-page .form-item:last-child {
    margin-bottom: 0
  }

  #document-contact-page .form-item input {
    padding: 20px 21px 15px
  }

  #document-contact-page .contact-content .form-label {
    margin-bottom: 18px
  }

  #document-contact-page p:last-child {
    line-height: 2.22
  }

  #document-contact-page .contact-form {
    margin-top: 0;
    max-width: 100%;
    padding-top: 0
  }

  #document-contact-page .form-item textarea {
    width: 100%;
    max-height: 269px;
    padding: 30px 11px 49px
  }

  #document-contact-page .form-item.last-form-item {
    margin-top: -4px;
    margin-bottom: 39px
  }

  #document-contact-page .form-item--agree {
    margin-bottom: 61px
  }

  #document-contact-page .form-submit button {
    padding: 22px 0 20px;
    width: 99.2%
  }

  #document-contact-page .form-item--agree.form-item label.checkbox-custom {
    gap: 7px
  }

  #document-contact-page .form-item--agree .required {
    margin-left: 8px
  }
}

.about-page .page-title {
  background: var(--color_bg);
  max-width: 1252px;
  margin: 0 auto;
  padding-left: 24px
}

.about-page .page-title .ja {
  margin-top: 20px
}

.about-mv {
  background: var(--color_bg);
  margin-top: 61px;
  position: relative;
  width: calc(100% + 1px);
  height: 630.5px;
  aspect-ratio: 1440/631;
  z-index: 2
}

@media screen and (max-width:768px) {
  .about-page .page-title {
    padding: 180px 24px 0 24px
  }

  .about-mv {
    aspect-ratio: 393/631
  }
}

#about-overview {
  position: relative;
  overflow: hidden;
  background: var(--color_bg);
  padding: 0 2%;
  z-index: 1
}

#about-overview::after,
#about-overview::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .5;
  z-index: -1
}

#about-overview::before {
  width: 263px;
  height: 262px;
  background: var(--color_blue);
  border-radius: 50%;
  filter: blur(110px);
  top: -6%;
  right: -50px
}

#about-overview::after {
  width: 263px;
  height: 262px;
  background: var(--color_blue);
  border-radius: 50%;
  filter: blur(110px);
  top: 10%;
  right: -50px
}

#about-overview .overview-content {
  max-width: 906px;
  margin: 78px auto 80px
}

#about-overview .overview-title {
  font-weight: 700;
  font-size: 2.25em;
  line-height: 1.5;
  margin-bottom: 42px
}

#about-overview .overview-text {
  font-family: var(--font_instrument);
  font-weight: 500;
  line-height: 2.19;
  font-size: 16px
}

#about-overview p {
  margin-bottom: 35px
}

#about-overview p:last-child {
  margin-bottom: 0
}

#about-overview .short-movie {
  max-width: 1142px;
  background-color: var(--color_white);
  border-radius: 47px;
  margin: 0 auto 120px;
  padding: 0 16px
}

#about-overview .short-movie::before {
  width: 263px;
  height: 262px;
  background: var(--color_blue);
  border-radius: 50%;
  filter: blur(110px);
  top: 45%;
  left: 0;
  position: absolute;
  content: "";
  opacity: .5;
  z-index: -1
}

#about-overview .short-movie::after {
  width: 263px;
  height: 262px;
  background: var(--color_blue);
  border-radius: 50%;
  filter: blur(110px);
  top: 55%;
  left: -50px;
  position: absolute;
  content: "";
  opacity: .5;
  z-index: -1
}

#about-overview .short-movie .inner {
  max-width: 906px;
  padding: 59px 0 60px;
  margin: 0 auto
}

#about-overview .flex {
  display: flex;
  position: relative;
  width: 100%;
  justify-content: center;
  gap: 18px
}

#about-overview .flex .video-link {
  width: calc(100% / 3);
  aspect-ratio: 290/516;
  object-fit: cover;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  z-index: 3;
  border-radius: 5px;
  box-shadow: 0 0 5.5px 0 #00000066
}

.short-movie .content-title {
  font-weight: 700;
  font-size: 2em;
  line-height: 1.5;
  margin-bottom: 25px;
  padding-left: 24px;
  position: relative
}

.short-movie .content-title::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--color_blue);
  top: 52%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%)
}

@media screen and (max-width:768px) {

  #about-overview::after,
  #about-overview::before {
    display: none
  }

  #about-overview .pc-br {
    display: none
  }

  #about-overview .overview-title {
    font-size: 2em;
    margin-bottom: 32px
  }

  #about-overview {
    padding: 0 23px 0 24px
  }

  #about-overview .overview-content {
    margin: 80px auto 59px
  }

  #about-overview .overview-text {
    line-height: 2
  }

  #about-overview p {
    margin-bottom: 32px
  }

  #about-overview .short-movie {
    padding: 10px 28px;
    margin: 0 auto 80px
  }

  #about-overview .short-movie .inner {
    padding: 30px 0
  }

  .short-movie .content-title {
    margin: 0 0 21px
  }

  #about-overview .flex {
    display: flex;
    position: relative;
    width: 100%;
    justify-content: center;
    gap: 18px
  }

  #about-overview .flex .video-link {
    width: 290px
  }

  #about-overview .video-link.sp-none {
    display: none
  }

  .short-movie .content-title::before {
    top: 53%
  }
}

@media screen and (max-width:390px) {
  #about-overview .video-link {
    width: 220px
  }
}

#mvv {
  position: relative;
  color: var(--color_white)
}

.mvv-bg {
  position: sticky;
  top: 0;
  height: 100vh;
  background: linear-gradient(rgba(17, 24, 23, .9), rgba(17, 24, 23, .9)), url(../../assets/img/about/bg-mmv.webp) bottom/cover no-repeat
}

#mvv .inner {
  position: relative;
  z-index: 1;
  margin-top: -100vh
}

#mvv .mvv-content {
  position: relative;
  z-index: 1;
  max-width: 1207px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  flex-direction: column
}

#mvv .mvv-content.mission {
  padding: 30px 0 118px;
  border-bottom: 1px solid var(--color_white)
}

#mvv .mvv-content.vision {
  padding: 30px 0 118px;
  border-bottom: 1px solid var(--color_white)
}

#mvv .mvv-content.value {
  padding: 30px 0 450px
}

#mvv .mvv-content .content-title {
  font-weight: 700;
  font-size: 5em;
  margin-bottom: 0;
  line-height: 1;
  margin-top: 87px
}

#mvv .mvv-content .content-title .ja {
  font-size: 20px;
  display: block;
  margin-top: 26px
}

#mvv .mission .content,
#mvv .vision .content {
  margin-left: auto;
  width: 587px
}

#mvv .content .section-statement {
  font-size: 32px;
  margin: 0 auto 41px;
  font-weight: 700;
  line-height: 1.5
}

#mvv .vision .content .section-statement {
  line-height: 1.51
}

#mvv .content p {
  font-weight: 500;
  line-height: 2.83;
}

#mvv .mvv-content-text {
  white-space: nowrap;
}

#mvv .pc-br {
  display: block
}

#mvv .value .content {
  margin-top: 1px;
  width: 54.1875em;
  margin-left: auto
}

#mvv .value li {
  display: flex;
  gap: 60px;
  align-items: center;
  margin-bottom: 44px
}

#mvv .value li:last-child {
  margin-bottom: 0
}

#mvv .value li .keyword {
  margin: 0;
  height: 248px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--color_blue);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size: 1.5em;
  line-height: 1.2
}

#mvv .value li .value-description {
  font-weight: 500;
  font-size: 1.75em;
  line-height: 1.52;
  white-space: nowrap;
}

@media screen and (max-width:1280px) {
  #mvv .value li {
    gap: 32px;
  }
}

@media screen and (max-width:1024px) {
  #mvv {
    height: 3590px
  }

  #mvv .inner {
    padding: 0 24px
  }

  #mvv .mvv-content.mission {
    padding: 118px 0 79px
  }

  #mvv .mvv-content.vision {
    padding: 78px 0 79px
  }

  #mvv .vision .content .section-statement {
    margin-bottom: 24px
  }

  #mvv .mvv-content.value {
    padding: 79px 0
  }

  #mvv .mvv-content .content-title {
    font-size: 60px;
    margin: 0 0 60px;
    line-height: 1
  }

  #mvv .mvv-content .content-title .ja {
    font-size: 16px;
    margin-top: 17px
  }

  #mvv .mission .content,
  #mvv .vision .content {
    margin-right: auto;
    width: auto;
    max-width: 587px
  }

  #mvv .content .section-statement {
    margin-bottom: 25px;
    line-height: 1.5
  }

  #mvv .content p {
    line-height: 2.43;
  }

  #mvv .mvv-content-text {
    white-space: inherit;
  }

  #mvv .pc-br {
    display: none
  }

  #mvv .sp-br {
    display: block
  }

  #mvv .value .content {
    width: auto;
    max-width: 867px;
    margin: 0 auto
  }

  #mvv .value li {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    margin-bottom: 45px
  }

  #mvv .value li .keyword {
    height: 200px;
    font-size: 20px
  }

  #mvv .value li .value-description {
    font-size: 20px;
    line-height: 1.8;
    margin: 0;
    white-space: inherit;
  }
}

.js-parallax {
  background-color: var(--color_white);
  -webkit-transform: translateY(1px);
  transform: translateY(1px)
}

@media screen and (max-width:390px) {
  #mvv .sp-br {
    display: none
  }
}

#about-media {
  background-color: var(--color_white);
  border-radius: 30px 30px 0 0;
  padding: 65px 2% 91px
}

#about-media .inner {
  max-width: 1206px;
  margin: 0 auto
}

#about-media .section-title {
  font-size: 44px;
  margin-bottom: 81px
}

#about-media .about-media-content a {
  display: flex;
  color: var(--color_black);
  align-items: center;
  padding: 60px 0 59px;
  border-bottom: 1px solid #969696
}

#about-media .about-media-content li:first-child a {
  padding-top: 0
}

#about-media .about-media-content .img {
  max-width: 352px;
  aspect-ratio: 352/243;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0
}

#about-media .about-media-content .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .5s;
  will-change: transform
}

#about-media .about-media-content a:hover img {
  transform: scale(1.1)
}

#about-media .about-media-content .text {
  margin: 0 auto;
  max-width: 766px;
  line-height: 2.29;
  font-size: 14px
}

#about-media .about-media-content .about-media-title {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.5;
  margin: 0 auto 24px
}

#about-media .about-media-content p {
  margin: 0
}

#about-media .btn-more {
  margin-top: 59px;
  text-align: right;
  display: block
}

#about-media .btn-more .arrow {
  width: 40px;
  height: 40px
}

#about-media .btn-more .arrow::before {
  left: 17px
}

@media screen and (max-width:1024px) {
  #about-media .about-media-content .img {
    margin-right: 24px
  }
}

@media screen and (max-width:768px) {
  #about-media {
    padding: 41px 24px 101px;
    border-radius: 20px 20px 0 0
  }

  #about-media .section-title {
    font-size: 40px;
    margin-bottom: 41px
  }

  #about-media .about-media-content a {
    flex-direction: column;
    gap: 23px;
    padding: 40px 0 39px
  }

  #about-media .about-media-content .img {
    max-width: 100%;
    margin-right: 0
  }

  #about-media .about-media-content .text {
    line-height: 2
  }

  #about-media .about-media-content .about-media-title {
    margin-bottom: 13px;
    margin-top: 0
  }

  #about-media .btn-more {
    display: none
  }
}

#member {
  padding: 46px 2% 300px;
  background: var(--color_bg)
}

#member .inner {
  max-width: 1208px;
  margin: 0 auto;
  padding-right: 1px
}

#member .section-title {
  margin-bottom: 61px;
  font-size: 44px;
  line-height: 1.5
}

#member .member-card {
  font-family: var(--font_inter)
}

#member .member-card li .img img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

#member .member-card .comment {
  font-size: 14px;
  line-height: 2.215;
  margin: 0
}

#member .member-executive .flex {
  display: flex;
  justify-content: start;
  align-items: center;
  font-weight: 700;
  margin-bottom: 31px
}

#member .member-executive li {
  display: flex;
  align-items: center;
  gap: 4.1875em
}

#member .member-executive li:first-child {
  margin-bottom: 60px
}

#member .member-executive li .img {
  width: 285px;
  height: 387px;
  flex-shrink: 0;
  border-radius: 25px;
  overflow: hidden
}

#member .member-executive .name {
  font-size: 2em;
  padding: 5px 32px 5px 0;
  margin: 0;
  line-height: 1;
  position: relative
}

#member .member-executive .name::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 42px;
  background-color: var(--color_black);
  right: -1px;
  top: -1px
}

#member .member-executive .role {
  font-size: 20px;
  padding: 0 0 1px 31px;
  margin: 0;
  line-height: 1
}

#member .member-staff .comment {
  line-height: 2.215;
  word-break: break-all
}

#member .member-staff {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(286px, 1fr));
  gap: 60px 3.4em
}

#member .member-staff .img {
  width: 285px;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 25px;
  margin-bottom: 25px
}

#member .member-staff .img img {
  object-position: top
}

#member .member-staff .img-bottom img {
  object-position: bottom
}

#member .member-staff .name {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0
}

#member .member-staff .role {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 21px;
  margin-top: 2px
}

.readclose {
  display: none
}

.member-slider .swiper-button-next,
.member-slider .swiper-button-prev {
  display: none
}

@media screen and (max-width:1024px) {
  #member .member-executive li {
    display: flex;
    align-items: start;
    gap: 4.1875em
  }
}

@media screen and (max-width:768px) {
  .swiper {
    overflow: hidden
  }

  .swiper-wrapper {
    display: flex
  }

  .member-slider {
    position: relative
  }

  #member {
    padding: 0 0 76px
  }

  #member .pc-br {
    display: none
  }

  #member .section-title {
    margin: 18px 24px 41px;
    font-size: 40px
  }

  #member .member-staff {
    margin: 42px 0 34px 24px;
    gap: 0
  }

  #member .member-card .comment {
    line-height: 2
  }

  .member-executive {
    margin: 0 23px 0 24px;
    overflow: hidden
  }

  #member .member-executive .flex {
    display: flex;
    justify-content: start;
    align-items: center;
    font-weight: 700;
    margin-bottom: 24px
  }

  #member .member-executive li {
    flex-direction: column;
    gap: 28px;
    align-items: start
  }

  #member .member-executive li:first-child {
    margin-bottom: 55px
  }

  #member .member-executive .name {
    font-size: 28px;
    padding-right: 16px;
    line-height: 1;
    padding: 0 16px 0 0
  }

  #member .member-executive .name::after {
    height: 28px;
    right: -1px;
    top: 0
  }

  #member .member-executive .role {
    padding: 0 0 0 16px;
    margin: 0
  }

  #member .member-executive .comment {
    max-height: calc(1.65em * 21)
  }

  .comment {
    position: relative;
    overflow: hidden;
    max-height: calc(1.5em * 20);
    transition: max-height .4s ease
  }

  .js-more {
    cursor: pointer;
    margin-left: 4px;
    color: #ababab
  }

  #member .member-staff .name {
    margin-top: 22px;
    line-height: 1;
    margin-bottom: 2px
  }

  #member .member-staff .role {
    margin-top: 0;
    margin-bottom: 21px
  }

  #member .member-card.member-staff .comment {
    line-height: 1.5
  }

  .readclose {
    margin-top: 8px;
    font-size: 14px;
    color: #ababab;
    background: 0 0;
    border: none;
    cursor: pointer;
    text-decoration: underline
  }

  .member-slider::before {
    position: absolute;
    content: "";
    width: 6px;
    height: 100%;
    background-color: var(--color_white);
    left: 0;
    top: 0;
    z-index: 4
  }

  #member .member-staff.swiper-wrapper {
    display: flex;
    margin: 40px 0 13px 24px
  }

  #member .member-staff .swiper-slide {
    width: 285px;
    box-sizing: border-box;
    flex-shrink: 0
  }

  .member-slider .swiper-pagination {
    position: static !important;
    margin-top: 13px;
    margin-left: 24px;
    margin-bottom: 6px;
    height: 1px !important;
    background: rgba(0, 0, 0, .15)
  }

  .member-pagination .swiper-pagination-progressbar-fill {
    background: var(--color_blue)
  }

  .member-slider .swiper-pagination-progressbar-fill {
    top: -2px !important;
    height: 5px !important;
    background: var(--color_blue) !important;
    border-radius: 999px
  }

  .member-arrow {
    position: absolute;
    color: #000;
    z-index: 10;
    width: 10px;
    top: -20px
  }

  .member-slider .swiper-button-next,
  .member-slider .swiper-button-prev {
    display: block;
    top: 160px;
    margin-top: 0 !important
  }

  .member-slider .swiper-button-next::after,
  .member-slider .swiper-button-prev::after {
    position: absolute;
    font-size: 20px;
    font-weight: 900;
    color: var(--color_black);
    top: 55%;
    left: 18%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
  }

  .member-slider .swiper-button-prev::after {
    left: 22%
  }

  .member-arrow::before {
    position: absolute;
    content: "";
    width: 48px;
    height: 48px;
    background-color: var(--color_white);
    border-radius: 50%;
    top: 0;
    left: -19px;
    z-index: -1
  }

  .member-arrow.prev {
    left: 42px
  }

  .member-arrow.next {
    left: 314px
  }
}

@media screen and (max-width:390px) {
  #member .member-executive li .img {
    width: 100%;
    height: auto;
    aspect-ratio: 285/387
  }

  .member-arrow.next {
    left: 280px
  }
}

.service-page {
  padding: 0 2%;
  overflow: hidden
}

.service-page .page-title {
  max-width: 1206px;
  margin: 0 auto 122px
}

.service-page .page-title .ja {
  margin-top: 19px
}

.sp-br {
  display: none
}

@media screen and (max-width:768px) {
  .service-page {
    padding: 0
  }

  .service-page .page-title .ja {
    margin-top: 20px
  }

  .service-page .sp-br {
    display: block
  }

  .service-page .page-title {
    padding-top: 180px;
    margin-bottom: 61px;
    padding: 180px 24px 0
  }
}

#service-concept {
  position: relative
}

#service-concept::before {
  position: absolute;
  content: "";
  border-radius: 50%;
  filter: blur(180px);
  opacity: .5;
  z-index: -1;
  width: 400px;
  height: 600px;
  background: var(--color_blue);
  top: -20%;
  right: -100px
}

#service-concept .flex {
  max-width: 1325px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  padding-right: 5%
}

#service-concept .img {
  max-width: 526px;
  margin-left: 6px
}

#service-concept .img img {
  width: 100%
}

#service-concept .text {
  margin: 18.6% 0 0 7.5%;
  max-width: 531px;
  margin-bottom: 193px
}

.margin-1 {
  margin-left: 1px
}

.margin-4 {
  margin-left: 4px
}

.margin-8 {
  margin-left: 8px
}

#service-concept .text .margin-6 {
  margin-left: 6px
}

#service-concept .text .concept-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 44px
}

#service-concept .text p {
  font-size: 16px;
  font-weight: 500;
  line-height: 2.38;
  margin-bottom: 38px
}

#service-concept .text p:last-child {
  margin-bottom: 0
}

@media screen and (max-width:1024px) {
  #service-concept {
    padding: 0 24px
  }

  #service-concept::before {
    display: none
  }

  .service-page .pc-br {
    display: none
  }

  #service-concept .flex {
    flex-direction: column;
    padding-right: 0;
    margin-bottom: 101px
  }

  #service-concept .img {
    margin: 0 auto
  }

  #service-concept .text {
    margin: 58px auto 10px auto;
    max-width: 531px;
    margin-bottom: 0
  }

  #service-concept .text .concept-title {
    line-height: 1.2;
    margin-bottom: 32px
  }

  #service-concept .text p {
    line-height: 2;
    margin-bottom: 32px
  }

  #service-concept .text p:last-child {
    margin-bottom: 0
  }
}

#service-detail {
  position: relative;
  padding-bottom: 76px
}

#service-detail .bg-white {
  position: absolute;
  background-color: var(--color_white);
  width: 100vw;
  margin-left: -24px;
  height: clamp(670px, 85vw, 1025px);
  z-index: -1
}

#service-detail .inner {
  padding-top: 120px;
  max-width: 1210px;
  padding-right: 4px;
  margin: 0 auto
}

#flow .flow-title,
#service-detail .detail-title {
  font-weight: 700;
  font-size: 44px;
  line-height: 1.5
}

#service-detail .service-nav-flex {
  display: flex;
  justify-content: space-between
}

#service-detail .service-nav {
  margin-top: 37px;
  margin-left: 0
}

#service-detail .moviecreate-space {
  letter-spacing: 5px
}

#service-detail .service-nav a {
  position: relative;
  width: 352px;
  padding: 28px 0 22px;
  margin-bottom: 0;
  line-height: 1;
  border-bottom: 1px solid #969696;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between
}

#service-detail .sp-arrow {
  position: relative;
  width: 36px;
  height: 36px;
  margin-top: -4px;
  margin-bottom: 1px;
  border-radius: 50%;
  background-color: var(--color_blue)
}

#service-detail .sp-arrow::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 14px;
  background: var(--color_white);
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%)
}

#service-detail .sp-arrow::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--color_white);
  border-right: 2px solid var(--color_white);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -33%) rotate(135deg)
}

#service-detail .service-nav-img {
  margin: 127px 0 80px;
  width: 586px;
  aspect-ratio: 586/828;
  position: relative
}

#service-detail .visual-text {
  font-size: 8.75em;
  white-space: nowrap;
  color: #cde6e1;
  position: absolute;
  inset: 0;
  pointer-events: none;
  font-weight: 500
}

#service-detail .visual-text span {
  display: block;
  position: relative
}

#service-detail .visual-text .line-top {
  top: 52.8%;
  left: -468px
}

#service-detail .visual-text .line-bottom {
  top: 45.2%;
  right: -5.6%
}

#service-detail .content {
  max-width: 1208px;
  margin: 0 auto
}

#service-detail .service-item-content {
  padding: 119px 0 122px;
  position: relative;
  margin: 0 1px;
  z-index: 1
}

#service-detail #moviecreate.service-item-content {
  padding: 117px 0 120px;
  position: relative;
  margin: 0 2px 0 0;
  z-index: 1
}

#service-detail #moviecreate.service-item-content .margin-8 {
  margin-left: 8px
}

#service-detail #webcreate.service-item-content {
  padding: 119px 0 120px;
  position: relative;
  z-index: 1
}

#service-detail #moviecreate::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background-color: var(--color_white);
  z-index: -1
}

#service-detail .service-item-text {
  max-width: 660px;
  text-align: center;
  margin: 0 auto
}

#service-detail .service-item-number {
  font-size: 16px;
  font-weight: 500;
  display: block;
  color: var(--color_blue);
  margin-bottom: 12px;
  line-height: 1
}

#service-detail .service-item-title {
  font-size: 40px;
  font-weight: 700;
  display: block;
  position: relative;
  line-height: 1
}

#service-detail .service-item-title::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 60px;
  background-color: var(--color_black);
  -webkit-transform: translateX(-50%) rotate(-140deg);
  transform: translateX(-50%) rotate(-140deg);
  top: calc(100% + 18.4px);
  left: 50.2%
}

#service-detail .service-item-description {
  margin-top: 95px;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.31
}

#service-detail #moviecreate .service-item-description {
  line-height: 2.315
}

#service-detail .service-item-description p {
  margin-bottom: 37px
}

#service-detail .service-item-description p:last-child {
  margin-bottom: 0
}

#service-detail .service-item-img {
  width: 100%;
  height: 418px;
  margin-top: 60px
}

#service-detail #webcreate .service-item-img {
  margin-top: 60px
}

#service-detail .service-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center
}

#service-detail #webcreate .service-item-img img {
  object-position: top
}

#service-detail .feature-list {
  margin-top: 80px;
  display: grid;
  gap: 80px 32px;
  grid-template-columns: repeat(2, 1Fr)
}

#service-detail #webcreate .feature-list {
  gap: 80px 32px
}

#service-detail .service-item-feature {
  display: flex;
  gap: 24px;
  justify-content: space-between
}

#service-detail .feature-img {
  max-width: 160px;
  width: 27.8%;
  aspect-ratio: 1/1
}

#service-detail .feature-text {
  width: 70%;
  flex-wrap: wrap
}

#service-detail .feature-text .list-title {
  font-size: 24px;
  font-weight: 700;
  padding-left: 23px;
  position: relative;
  line-height: 1.2;
  white-space: nowrap
}

#service-detail .feature-text .list-title::before {
  position: absolute;
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: var(--color_blue);
  top: 9px;
  left: 0
}

#service-detail .feature-text p {
  margin-top: 16px;
  font-size: 14px;
  line-height: 2.218;
  max-width: 403px
}

#service-detail .sp-br {
  display: none
}

.margin-sp-br {
  margin-left: 7px
}

@media screen and (max-width:1024px) {
  #service-detail {
    padding: 0 23px
  }

  #service-detail .service-nav-img {
    margin: 100px 0 80px;
    width: 50%;
    aspect-ratio: 586/828;
    position: relative
  }

  #service-detail #moviecreate.service-item-content,
  #service-detail #webcreate.service-item-content,
  #service-detail .service-item-content {
    padding: 60px 0 60px
  }

  #service-detail .visual-text {
    font-size: 100px
  }

  #service-detail .visual-text .line-top {
    left: -300px
  }

  #service-detail .visual-text .line-bottom {
    right: 15%
  }

  #service-detail .feature-list {
    gap: 40px 32px
  }

  #service-detail #webcreate .feature-list {
    gap: 40px 32px
  }

  #service-detail .sp-arrow::before {
    right: 49%
  }

  #service-detail .service-item-feature {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 12px;
    align-items: center
  }

  #service-detail .feature-img {
    width: 100%;
    grid-column: 1;
    grid-row: 1
  }

  #service-detail .feature-text {
    display: contents
  }

  #service-detail .feature-text .list-title {
    grid-column: 2;
    grid-row: 1;
    padding-left: 0;
    white-space: wrap
  }

  #service-detail .feature-text .list-title::before {
    display: none
  }

  #service-detail .feature-text p {
    grid-column: 1/-1;
    grid-row: 2;
    height: 160px;
    margin-top: 0;
    max-width: 100%
  }

  #service-detail .feature-text p .pc-br {
    display: none
  }

  #service-detail .pc-br {
    display: block
  }
}

@media screen and (max-width:768px) {
  #service-detail .bg-white {
    height: clamp(810px, 180vw, 1100px);
    top: 150px
  }

  #service-detail .inner {
    padding: 0 1px;
    margin: 0 auto
  }

  #flow .flow-title,
  #service-detail .detail-title {
    font-size: 40px;
    text-align: center
  }

  #service-detail .service-nav-flex {
    flex-direction: column-reverse;
    padding-bottom: 78px
  }

  #service-detail .flex-left {
    margin: 0 auto;
    width: 100%
  }

  #service-detail .service-nav {
    margin-top: 30px;
    font-size: 20px;
    width: auto
  }

  #service-detail .moviecreate-space {
    letter-spacing: 4px
  }

  #service-detail .service-nav a {
    max-width: 345px;
    padding: 17px 0 14px;
    width: 100%;
    line-height: 32.6px;
    margin: 0 auto
  }

  #service-detail .service-nav li:first-child a {
    padding-top: 0
  }

  #service-detail .service-nav-img {
    margin: 0 0 91px;
    width: clamp(369.5px, 90vw, 586px);
    position: relative;
    margin-left: auto;
    right: 0
  }

  #service-detail .sp-arrow {
    position: relative;
    width: 32.6px;
    height: 32.6px;
    margin: -3px 0 0 0
  }

  #service-detail .sp-arrow::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 12px;
    background: var(--color_white);
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
  }

  #service-detail .sp-arrow::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--color_white);
    border-right: 2px solid var(--color_white);
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -35%) rotate(135deg);
    transform: translate(-50%, -35%) rotate(135deg)
  }

  #service-detail .visual-text {
    font-size: clamp(40px, 14.24936vw, 80px)
  }

  #service-detail .visual-text span {
    display: block;
    position: relative
  }

  #service-detail .visual-text .line-top {
    top: 81.8%;
    left: 46%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
  }

  #service-detail .visual-text .line-bottom {
    top: 77%;
    left: 80.8%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
  }

  #service-detail .service-item-content {
    padding: 122px 0 0;
    position: relative;
    z-index: 1;
    margin: 0
  }

  #service-detail #moviecreate.service-item-content {
    padding: 119px 0 0;
    margin: 0
  }

  #service-detail #webcreate.service-item-content {
    padding: 119px 0
  }

  #service-detail #moviecreate.service-item-content .margin-8 {
    margin-left: 8px
  }

  #service-detail #moviecreate::before {
    display: none
  }

  #service-detail .service-item-number {
    font-size: 24px;
    margin-bottom: 10px
  }

  #service-detail .service-item-title {
    font-size: 36px
  }

  #service-detail .service-item-title::after {
    height: 40px;
    left: 50%;
    top: calc(100% + 22px)
  }

  #service-detail .service-item-description {
    margin-top: 80px;
    font-size: 16px;
    line-height: 2
  }

  #service-detail #moviecreate .service-item-description {
    line-height: 2;
    margin-top: 79px
  }

  #service-detail #moviecreate .service-item-description .margin-8 {
    margin: 0
  }

  #service-detail .feature-text .list-title .sp {
    display: inline-block
  }

  #service-detail .service-item-description p {
    margin-bottom: 32px
  }

  #service-detail .service-item-description p:last-child {
    margin-bottom: 0
  }

  #service-detail .service-item-img {
    position: relative;
    width: 100vw;
    height: auto;
    aspect-ratio: 393/310;
    margin-top: 41px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    left: 50%
  }

  #service-detail #webcreate .service-item-img {
    margin-top: 40px
  }

  #service-detail .feature-list {
    margin-top: 40px;
    gap: 27px;
    grid-template-columns: repeat(1, 1Fr)
  }

  #service-detail #webcreate .feature-list {
    gap: 27px;
    margin-top: 40px
  }

  #moviecreate .margin-8 {
    margin-left: 8px
  }

  #service-detail .service-item-feature {
    grid-template-columns: clamp(62px, 14vw, 100px) 1fr;
    gap: 9px 16px
  }

  #service-detail .feature-img {
    width: clamp(62px, 14vw, 100px);
    aspect-ratio: 1/1
  }

  #service-detail .feature-text .list-title {
    font-size: 20px
  }

  #service-detail .feature-text p {
    margin-top: 0;
    line-height: 1.999;
    height: auto
  }

  #service-detail .sp-br {
    display: block
  }

  #service-detail .pc-br {
    display: none
  }

  .margin-sp-br {
    display: block
  }
}

@media screen and (max-width:425px) {

  #flow .flow-title,
  #service-detail .detail-title {
    text-align: left
  }
}

@media screen and (max-width:390px) {
  #service-detail .service-item-description {
    text-align-last: left
  }

  #service-detail .sp-br {
    display: none
  }
}

#flow {
  position: relative;
  max-width: 1440px;
  padding: 0 24px;
  margin: 0 auto
}

#flow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background-color: var(--color_white);
  z-index: -1
}

#flow .inner {
  max-width: 1206px;
  padding: 203px 0 201px;
  margin: 0 auto
}

#flow .lead-text {
  margin-top: 25px;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.2;
  padding-bottom: 60px;
  position: relative
}

#flow .lead-text::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #969696;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%)
}

#flow .flow-content {
  margin-top: 60px;
  max-width: 873px
}

#flow .flow-content .flow-list {
  display: flex;
  gap: 6.9%;
  align-items: flex-start;
  margin-bottom: 58px;
  position: relative
}

#flow .flow-content .flow-list:last-child {
  margin-bottom: 0
}

#flow .flow-content .flow-list::before {
  content: "";
  position: absolute;
  width: 3px;
  background-color: var(--color_blue);
  top: 156px;
  bottom: -58px;
  left: 79px
}

#flow .flow-content .flow-list:last-child::before {
  display: none
}

#flow .flow-content .flow-step {
  width: 156px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  border: 1px solid var(--color_blue);
  background-color: #4ec9B01A;
  color: var(--color_blue);
  font-family: var(--font_inter);
  font-size: 48px;
  line-height: 48px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0
}

#flow .flow-content .flow-step span {
  font-size: 20px;
  display: block;
  line-height: 1;
  margin-bottom: 4px
}

#flow .flow-content .flow-heading {
  font-size: 32px;
  padding-top: 62px;
  line-height: 1
}

#flow .flow-description {
  margin-top: 21px;
  font-weight: 500;
  line-height: 2.18;
  font-size: 16px
}

@media screen and (max-width:1024px) {
  #flow .inner {
    padding: 119px 0 171px
  }
}

@media screen and (max-width:768px) {
  #flow {
    padding: 0
  }

  #flow .flow-title {
    padding: 0 23.5px
  }

  #flow .lead-text {
    margin-top: 25px;
    line-height: 2.2;
    padding: 0 27px 32px 23.5px;
    border-bottom: none;
    position: relative
  }

  #flow .lead-text::after {
    width: 100vw
  }

  #flow .flow-content {
    margin-top: 32px;
    max-width: 873px;
    padding: 0 12px
  }

  #flow .flow-content .flow-list {
    gap: 12px;
    margin-bottom: 22px
  }

  #flow .flow-content .flow-list span {
    margin-bottom: 2px
  }

  #flow .flow-content .flow-list::before {
    content: "";
    position: absolute;
    width: 2px;
    background-color: var(--color_blue);
    top: 93px;
    bottom: -23px;
    left: 48.5px
  }

  #flow .flow-content .flow-list:nth-child(2)::before {
    top: 93px;
    bottom: -31px
  }

  #flow .flow-content .flow-list:nth-child(3)::before {
    top: 103px;
    bottom: -32px
  }

  #flow .flow-content .flow-step {
    width: 97.5px;
    aspect-ratio: 97.5/94;
    font-size: 31px;
    line-height: 31px
  }

  #flow .flow-content .flow-list:nth-child(3) .flow-step {
    margin-top: 8px;
    aspect-ratio: 97.5/95
  }

  #flow .flow-content .flow-list:nth-child(4) .flow-step {
    margin-top: 9px
  }

  #flow .flow-content .flow-list:nth-child(3) .flow-description {
    margin-top: 17px
  }

  #flow .flow-content .flow-list:nth-child(4) .flow-description {
    margin-top: 16px
  }

  #flow .flow-content .flow-step span {
    font-size: 13px
  }

  #flow .flow-content .flow-heading {
    font-size: 24px;
    padding-top: 32px;
    line-height: 1.2
  }

  #flow .flow-description {
    margin-top: 16px;
    line-height: 2;
    font-size: 12px
  }

  #flow .margin-1-sp {
    margin-left: 1px
  }
}

.works-page {
  max-width: 1440px;
  padding: 0 24px 0 23px;
  margin: 0 auto
}

.works-page .page-title {
  max-width: 1204px;
  margin: 0 auto;
  letter-spacing: 3.5px
}

.works-page .page-title .ja {
  margin-top: 19px
}

.works-page #our-works {
  max-width: 1204px;
  height: 228px;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.395;
  margin: 61px auto 60px
}

.works-page #our-works p:last-child {
  margin-top: 37px
}

@media screen and (max-width:768px) {
  .works-page .page-title {
    padding-top: 181px;
    padding-left: 2px;
    letter-spacing: 2.5px
  }

  .works-page #our-works {
    line-height: 2.2;
    margin: 61px auto;
    height: auto;
    padding-left: 1px
  }

  .works-page #our-works p:last-child {
    margin-top: 34px
  }

  .pc-br {
    display: none
  }

  #works-page-content .post-list.is-influencer-layout {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 12px
  }
}

#works-page-content {
  position: relative;
  background-color: var(--color_bg)
}

#works-page-content .content-tab {
  color: #b7b7b7
}

#works-page-content .content-tab.content-tab.is-active {
  color: var(--color_white)
}

#works-page-content::before {
  position: absolute;
  content: "";
  width: 100vw;
  height: 100%;
  background-color: var(--color_white);
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 0
}

#works-page-content .content-inner {
  padding: 61px 0 120px;
  max-width: 1377px;
  margin: 0 auto;
  position: relative;
  z-index: 2
}

#works-page-content .post-list[data-layout=influencer] {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 49px 28px;
  max-width: 1211px;
  margin: 0 auto 82px;
  padding-top: 65px;
  padding-left: 3px
}

#works-page-content .post-list[data-layout=influencer] .img {
  aspect-ratio: 384/677;
  margin-bottom: 24px
}

.works-page .post-list[data-layout=influencer] a {
  display: block
}

#works-page-content .content-inner[data-layout=influencer] {
  padding-bottom: 300px
}

#works-page-content .post-title[data-layout=influencer] {
  line-height: 1.2
}

#works-page-content .content-inner[data-layout=branding-movie] {
  padding-bottom: 120px;
  padding-left: 1px
}

#works-page-content .content-inner[data-layout=results] {
  padding-left: 1px;
  padding-bottom: 460px
}

#works-page-content .content-inner {
  padding: 61px 0 120px 0;
  max-width: 1379px;
  margin: 0 auto
}

#works-page-content .content-tab-scroll {
  position: relative;
  overflow-x: auto;
  border-bottom: 2px solid #b7b7b7
}

#works-page-content .post-list {
  padding-left: 0
}

#works-page-content .content-tab-list {
  padding: 0 0 18px 1px;
  font-size: 18px;
  line-height: 1;
  gap: 21px;
  margin: 0 auto;
  width: max-content;
  max-width: 100%;
  position: relative;
  border: none
}

#works-page-content .content-tab-list::-webkit-scrollbar {
  height: 8px
}

#works-page-content .content-tab-list::-webkit-scrollbar-track {
  margin: 0 2px;
  background: #f3f3f3;
  border-radius: 5px
}

#works-page-content .content-tab-list::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: #cdcdcd
}

#works-page-content .post-list {
  grid-template-columns: repeat(2, 1Fr);
  gap: 38px 32px;
  margin: 46px 1px 118px
}

#works-page-content .post-list[data-layout=branding-movie] {
  margin: 48px 0 119px 1px;
  gap: 38px 33px
}

#works-page-content .post-list .img {
  margin-bottom: 22px;
  aspect-ratio: 672/377.5
}

#works-page-content .post-list[data-layout=branding-movie] .img {
  aspect-ratio: 672/377
}

#works-page-content .content-tab {
  padding: 13px 20px 11px;
  margin: 0
}

#works-page-content .post-title {
  margin: 0;
  font-weight: 700;
  font-family: var(--font_noto);
  line-height: 1.18
}

.works-page .pagination {
  margin-top: 75px
}

@media screen and (max-width:1024px) {
  #works-page-content .content-tab .pc {
    display: none
  }

  #works-page-content .content-tab .sp {
    display: inline-block
  }
}

@media screen and (max-width:768px) {
  #works-page-content .content-inner {
    padding: 58px 0 120px
  }

  #works-page-content .content-tab-list {
    padding: 0 0 18px 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 4px
  }

  #works-page-content .content-tab {
    padding: 13px 18px 11px;
    border-radius: 30px;
    transition: all .5s;
    cursor: pointer;
    width: fit-content
  }

  #works-page-content .post-list {
    display: flex;
    flex-direction: column;
    gap: 31px;
    margin: 60px 0 59px
  }

  #works-page-content .content-inner[data-layout=results] {
    padding-bottom: 121px
  }

  #works-page-content .post-list[data-layout=influencer] {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 12px;
    margin: 0 auto 59px;
    padding: 60px 0 0 1px
  }

  #works-page-content .post-list[data-layout=influencer] .img {
    margin-bottom: 10px;
    border-radius: 5px
  }

  #works-page-content .content-inner[data-layout=influencer] {
    padding-bottom: 120px
  }

  #works-page-content .post-list[data-layout=branding-movie] {
    margin: 41px 0 61px;
    gap: 32px
  }

  #works-page-content .post-list a {
    flex-direction: column;
    gap: 11px
  }

  #works-page-content .post-list .img {
    width: 100%;
    height: 100%;
    margin-bottom: 0;
    border-radius: 8px;
    aspect-ratio: 345/194
  }

  #works-page-content .post-title {
    font-size: 14px;
    line-height: 1.255
  }

  #works-page-content .post-list[data-layout=branding-movie] .post-title {
    line-height: 1.21
  }

  #works-page-content .post-list[data-layout=influencer] .post-title {
    line-height: 1.23
  }

  #works-page-content .margin-16 {
    margin-left: 11px
  }

  #works-page-content .pagination {
    margin-top: 58px
  }
}

.works-detail-page {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2%
}

.works-detail-page .inner {
  max-width: 1206px;
  margin: 0 auto 273px
}

.works-detail-page.sns-sp .inner {
  max-width: 1210px;
  padding-right: 3px;
  margin-bottom: 195px
}

.works-detail-page.movie-sp .inner {
  margin: 0 auto 295px
}

.works-detail-page .page-title {
  padding-top: 228px
}

.works-detail-page .page-title .ja {
  margin-top: 19px
}

.works-detail-page.sns-sp .page-title {
  margin-left: 2px
}

.works-detail-page.sns-sp .btn-more {
  margin-top: 31px
}

.works-detail-page .works-movie {
  position: relative;
  width: 100%;
  aspect-ratio: 1206/677
}

.works-detail-page .video-wrap {
  display: block;
  margin-top: 62px;
  width: 100%;
  border-radius: 10px;
  aspect-ratio: 1206/677;
  overflow: hidden;
  position: relative;
  cursor: pointer
}

.works-detail-page .video-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 37.8px rgba(0, 0, 0, .27);
  pointer-events: none
}

.margin {
  margin-left: 7px
}

.works-detail-page .video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0
}

.works-detail-page .video-wrap img {
  height: 100%;
  object-fit: cover
}

.video-thumb {
  position: absolute;
  inset: 0;
  background: #ededed
}

.sns-sp .video-thumb img {
  height: 104.5%
}

.video-thumb.is-vertical {
  display: flex;
  align-items: center;
  justify-content: center
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.video-thumb.is-vertical img {
  object-fit: contain
}

.works-detail-page.sns-sp .video-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0)
}

.works-detail-page.sns-sp .video-thumb.is-vertical video {
  object-fit: contain
}

.play-button {
  position: absolute;
  left: 50.5%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 91px;
  height: 102px;
  pointer-events: none
}

.play-button svg {
  width: 100%;
  height: 100%;
  fill: #fff
}

.play-button path {
  stroke: #fff;
  stroke-width: 6;
  stroke-linejoin: round
}

.play-button-youtube {
  position: absolute;
  left: 50.1%;
  top: 50.4%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 195px;
  height: 173px;
  background-image: url(../img/top/youtube_red.webp);
  background-size: contain;
  background-repeat: no-repeat
}

.works-detail-page .works-detail-text {
  margin-top: 59px
}

.works-detail-page.sns-sp .works-detail-text {
  margin-top: 58px
}

.works-detail-page .works-detail-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1
}

.works-detail-page .works-detail-body {
  margin-top: 32px;
  font-weight: 500;
  font-size: 16px;
  line-height: 2
}

.works-detail-page .body-title {
  font-size: 20px;
  font-family: var(--font_inter);
  font-weight: 700;
  padding-bottom: 15px;
  border-bottom: 1px solid #969696;
  margin: 61px 1px 15px;
  line-height: 1
}

.works-detail-page.movie-sp .works-detail-body {
  line-height: 1.83;
  margin-top: 33px
}

.works-detail-page.movie-sp .works-detail-img {
  margin-bottom: 7px
}

.works-detail-page .works-detail-body p {
  margin-bottom: 32px
}

.works-detail-page.movie-sp .works-detail-body p {
  margin-bottom: 28px
}

.works-detail-page .works-detail-body p:last-child {
  margin-bottom: 0;
  margin-left: 1px
}

.works-detail-page.movie-sp .works-detail-body p:last-child,
.works-detail-page.sns-sp .works-detail-body p:last-child {
  margin-left: 0
}

.works-detail-page .pc-br {
  display: block
}

.works-detail-page .pc-break {
  display: block;
  margin-bottom: 34px
}

.works-detail-page .works-detail-img {
  margin: 59px 0 38px
}

.works-detail-page .works-detail-img.grid {
  display: grid;
  grid-template-columns: repeat(2, 1Fr);
  gap: 23px 32px
}

.works-detail-page .works-detail-img.flex {
  display: flex;
  gap: 39px;
  margin: 61px 0 6px
}

.works-detail-page.sns-sp .works-detail-img.flex {
  margin-bottom: 7px
}

.works-detail-page .works-detail-img .img-item {
  overflow: hidden;
  line-height: 1
}

.works-detail-page .works-detail-img.grid .img-item {
  aspect-ratio: 587/330;
  border-radius: 10px
}

.works-detail-page .works-detail-img.flex .img-item {
  aspect-ratio: 376/662
}

.works-detail-page.sns-sp .works-detail-img.flex .img-item {
  border-radius: 10px
}

.works-detail-page .works-detail-img .img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.works-detail-page .works-detail-img.flex img {
  object-position: center
}

.works-detail-page.movie-sp .img-item {
  position: relative
}

.works-detail-page.movie-sp .img-item img {
  display: block;
  width: 100%
}

.works-detail-page.movie-sp .img-item::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 37.8px rgba(0, 0, 0, .27);
  pointer-events: none
}

.margin-24 {
  margin-left: 24px
}

.works-detail-page .sp-br {
  display: none
}

.works-detail-page .btn-more {
  text-align: left;
  margin: 32px auto 0 28px;
  padding-left: 0
}

.works-detail-page.movie-sp .btn-more {
  margin-top: 31px
}

@media screen and (max-width:768px) {
  .works-detail-page {
    padding: 0 24px
  }

  .works-detail-page .page-title .ja {
    margin-top: 20px
  }

  .works-detail-page .inner {
    margin: 0 auto 117px
  }

  .works-detail-page .works-detail-body {
    margin-top: 31px;
    font-size: 16px;
    line-height: 2
  }

  .works-detail-page.movie-sp .works-detail-body {
    line-height: 1.82;
    margin-top: 32px
  }

  .works-detail-page .page-title {
    padding-top: 180px
  }

  .works-detail-page.sns-sp .page-title {
    margin-left: 0
  }

  .works-detail-page.sns-sp .video-thumb video {
    height: 105%;
  }

  .works-detail-page .video-wrap {
    margin-top: 41px;
    width: calc(100vw + 1px);
    border-radius: 0;
    aspect-ratio: 1206/677;
    overflow-x: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    position: relative;
    cursor: pointer
  }

  .works-detail-page.movie-sp .video-wrap {
    margin-top: 32px
  }

  .works-detail-page.sns-sp .video-wrap::after {
    display: none
  }

  .play-button-youtube {
    width: 62px;
    height: 55px;
    top: 50.5%;
    left: 50.1%
  }

  .works-detail-page .works-detail-body p {
    margin-bottom: 40px
  }

  .works-detail-page.movie-sp .works-detail-body p {
    margin-bottom: 29px
  }

  .works-detail-page.sns-sp .works-detail-body p {
    margin-bottom: 32px
  }

  .works-detail-page .works-movie {
    margin-top: 32px;
    width: 100%;
    aspect-ratio: 1206/677
  }

  .works-detail-page.movie-sp .works-movie {
    margin-top: 33px
  }

  .works-detail-page.sns-sp .inner {
    letter-spacing: 0;
    margin-bottom: 116px;
    padding-right: 0
  }

  .works-detail-page.sns-sp .works-detail-body {
    margin-top: 30px
  }

  .works-detail-page.sns-sp .works-detail-text {
    margin-top: 39px
  }

  .sns-sp .margin-24 {
    margin: 0
  }

  .works-detail-page .works-detail-text {
    margin-top: 39px;
    padding: 0 4px
  }

  .works-detail-page .works-detail-body p:last-child {
    margin-left: 0
  }

  .works-detail-page.movie-sp .works-detail-text {
    margin-top: 31px;
    padding: 0 5px
  }

  .works-detail-page .works-detail-intro {
    padding: 0 2px
  }

  .works-detail-page .works-detail-title {
    font-size: 24px;
    line-height: 1.22
  }

  .works-detail-page .pc-br {
    display: none
  }

  .works-detail-page .pc-break {
    display: block;
    margin-bottom: 0
  }

  .works-detail-page .sp-break {
    display: block;
    margin-bottom: 28px
  }

  .works-detail-page .sp-br {
    display: block
  }

  .works-detail-page .body-title {
    padding-bottom: 14px;
    border-bottom: 1px solid #969696;
    margin: 41px 0 15px;
    line-height: 1
  }

  .works-detail-page .body-title:last-child {
    margin-top: 44px
  }

  .works-detail-page .works-detail-img {
    margin: 40px 0
  }

  .works-detail-page .works-detail-img.grid {
    display: grid;
    grid-template-columns: repeat(1, 1Fr);
    gap: 14px
  }

  .works-detail-page .works-detail-img.flex {
    display: grid;
    grid-template-columns: repeat(2, 1Fr);
    gap: 12px 13px;
    margin: 40px auto 7px;
    width: 345px
  }

  .works-detail-page.sns-sp .works-detail-img.flex {
    gap: 13px
  }

  .works-detail-page .works-detail-img.flex .img-item {
    aspect-ratio: 166/292.5
  }

  .works-detail-page.sns-sp .works-detail-img.flex .img-item {
    border-radius: 0
  }

  .works-detail-page .btn-more {
    margin-top: 30px
  }

  .works-detail-page .video-wrap.video-sns {
    aspect-ratio: auto;
    width: 100%;
    height: auto;
    padding: 0 13px 0 14px;
    overflow: hidden;
    box-shadow: none;
    aspect-ratio: 318/513;
    margin-top: 42px
  }

  .works-detail-page.sns-sp .video-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    -webkit-transform: translate(-50%, -13px);
    transform: translate(-50%, -13px)
  }

  .works-detail-page .vimeo-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%
  }

  .works-detail-page.sns-sp .video-thumb {
    position: relative;
    background: 0 0;
    padding-right: 2px;
    overflow: hidden
  }

  .works-detail-page .video-wrap.video-sns .video-thumb img {
    object-fit: cover;
    aspect-ratio: 316/557
  }

  .play-button {
    left: 52%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 74px;
    height: 83px;
    clip-path: polygon(0 0, 100% 50%, 0 100%)
  }

  .works-detail-page .video-wrap.video-sns .play-button {
    top: 47.5%;
    left: 51%
  }

  .works-detail-page.sns-sp .works-detail-title {
    font-size: 32px
  }

  .works-detail-page.sns-sp .btn-more {
    margin-top: 31px
  }

  .works-detail-page.movie-sp .btn-more {
    margin-top: 29px
  }
}

@media screen and (max-width:390px) {
  .works-detail-page .works-detail-img.flex {
    width: 100%
  }
}

.news-page .wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px
}

.news-page .page-title {
  padding-top: 228px;
  margin-bottom: 63px
}

.news-page .content-inner {
  max-width: 1299px;
  padding: 0 8px 0 0;
  margin: 0 0 0 auto
}

.news-page .flex {
  display: flex;
  gap: 8.4%
}

.news-page .content-tab-list {
  flex-direction: column;
  width: 159px;
  gap: 32px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  overflow-y: none;
  border-bottom: none
}

.news-page .custom-scrollbar {
  display: none
}

.news-page .content-tab.is-active {
  padding: 12px 20px
}

.news-page .content-tab {
  padding: 12px 20px;
  transition: all .5s;
  margin-right: 0
}

.news-page .post-list {
  display: block;
  margin-bottom: 0
}

.news-page .post-list a {
  display: flex;
  align-items: center;
  gap: 5.6%;
  padding: 60px 0 59px;
  border-bottom: 1px solid #969696
}

.news-page .post-list li.is-first a {
  padding-top: 0 !important
}

.news-page .post-list .img {
  margin-bottom: 0;
  width: 31.167%;
  flex-shrink: 0;
  aspect-ratio: 319/221;
  overflow: hidden
}

.news-page .post-list .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .5s
}

.news-page .post-content-text .tab {
  padding: 6px 12px;
  border-radius: 30px;
  font-size: 12px;
  border: 1px solid var(--color_black);
  margin-right: 4px;
  line-height: 1;
  height: 28px
}

.news-page .post-content-text .post-title {
  max-width: 560px;
  font-family: var(--font_inter);
  font-weight: 500;
  font-size: 1.25em;
  margin: 16px 0 0
}

.news-page .post-content-text .date {
  font-size: 16px;
  margin-right: 13px;
  left: 28px;
  line-height: 28px;
  display: inline-block
}

.pagination {
  margin-top: 100px;
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5
}

.news-page .pagination {
  margin-bottom: 300px
}

.pagination .pagination__item {
  display: flex;
  width: 30px;
  aspect-ratio: 1/1;
  justify-content: center;
  align-items: center;
  color: var(--color_black);
  border-radius: 5px;
  border: none;
  background: 0 0;
  cursor: pointer
}

.pagination .pagination__item.is-active {
  background-color: var(--color_black);
  color: var(--color_white);
  font-family: var(--font_noto)
}

@media screen and (max-width:768px) {
  .news-page .page-title {
    padding-top: 170px;
    margin-left: 1px;
    margin-bottom: 47px
  }

  .news-page .page-title .ja {
    margin-top: 20px
  }

  .news-page .content-inner {
    padding: 0;
    margin: 0 0 0 auto
  }

  .news-page .flex {
    flex-direction: column;
    gap: 9%
  }

  .news-page .content-tab-list {
    flex-direction: unset;
    width: 100%;
    gap: 0;
    font-size: 16px;
    margin-bottom: 0;
    padding: 14px 24px 12px
  }

  .news-page .content-tab {
    padding: 10px 10px;
    color: #b7b7b7
  }

  .news-page .content-tab.is-active {
    padding: 10px 21px 10px 20px;
    margin-right: 8px;
    color: var(--color_white)
  }

  .news-page .custom-scrollbar {
    display: block
  }

  .custom-scrollbar {
    display: block;
    margin-bottom: 56px
  }

  .news-page .post-list {
    display: block;
    padding: 0
  }

  .news-page .post-list a {
    display: flex;
    gap: 16px;
    align-items: start;
    padding: 39px 0;
    width: 100%
  }

  .news-page .post-list .img {
    margin-bottom: 0;
    width: 102px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
    overflow: hidden
  }

  .news-page .post-list .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .5s
  }

  .news-page .post-content-text .tab {
    padding: 4px 12px;
    font-size: 10px;
    line-height: 1;
    margin-right: 0;
    white-space: nowrap;
    flex: 0 0 auto
  }

  .news-page .post-content-text .post-title {
    font-size: 16px;
    margin: 12px 0 0
  }

  .news-page .post-content-text {
    margin-top: 0
  }

  .news-page .post-content-text .date {
    font-size: 14px;
    margin-right: 6px;
    line-height: 22px
  }

  .pagination {
    margin-top: 60px
  }

  .news-page .pagination {
    margin-bottom: 200px
  }
}

.news-detail-page {
  padding: 0 2% 295px 8.125%;
  max-width: 1440px;
  margin: 0 auto
}

.news-detail {
  margin: 63px 0 28px;
  max-width: 855px
}

.news-detail-page .page-title {
  padding-top: 228px;
  margin-left: 3px
}

.news-detail .news-detail-meta {
  font-family: var(--font_inter);
  display: inline-block;
  display: flex;
  align-items: center;
  gap: 19px
}

.news-detail .news-detail-meta .date {
  letter-spacing: 6%;
  font-size: 20px
}

.news-detail .news-detail-meta .tab {
  font-size: 16px;
  padding: 2px 12px 4px;
  border-radius: 50px;
  border: 1px solid var(--color_black)
}

.news-detail .title {
  margin-top: 10px;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.6
}

.news-detail .news-detail-thumbnail {
  margin-top: 39px;
  width: 100%;
  aspect-ratio: 855/592;
  border-radius: 10px;
  overflow: hidden
}

.news-detail img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.news-detail .body {
  margin-top: 39px;
  max-width: 684px;
  font-weight: 500;
  font-size: 16px;
  line-height: 2
}

.news-detail .body p {
  margin-bottom: 32px
}

.news-detail .body p:last-child {
  margin-bottom: 0
}

.news-detail .news-detail-img {
  margin-top: 61px;
  display: flex;
  gap: 28px
}

.news-detail .news-detail-img img {
  width: calc((100% - 28px)/ 2);
  aspect-ratio: 413/230;
  object-fit: cover
}

.news-detail-page .btn-more {
  text-align: left;
  margin: 30px auto 0 28px;
  padding-left: 0
}

.news-detail-page .btn-more a,
.works-detail-page .btn-more a {
  font-size: 16px;
  font-weight: 500
}

.news-detail-page .btn-more a:hover span,
.works-detail-page .btn-more a:hover span {
  -webkit-transform: translateX(-8px) scale(1.1);
  transform: translateX(-8px) scale(1.1)
}

.news-detail .pc-break,
.works-detail-page .pc-break {
  display: block;
  margin-bottom: 32px
}

.sp-br {
  display: none
}

@media screen and (max-width:768px) {
  .news-detail-page {
    padding: 0 24px 116px
  }

  .works-detail-page.movie-sp .inner {
    margin: 0 auto 116px
  }

  .news-detail-page .page-title {
    padding-top: 170px;
    margin-left: 0
  }

  .news-detail-page .page-title .ja {
    margin-top: 20px
  }

  .news-detail {
    margin: 81px 0 7px
  }

  .news-detail .news-detail-meta {
    gap: 16px
  }

  .news-detail .news-detail-meta .date {
    font-size: 16px;
    letter-spacing: 5%
  }

  .news-detail .news-detail-meta .tab {
    font-size: 14px;
    padding: 3px 12px 5px 11px
  }

  .news-detail .title {
    margin-top: 15px;
    line-height: 1.2
  }

  .news-detail .news-detail-thumbnail {
    margin-top: 24px
  }

  .news-detail .pc-break,
  .works-detail-page .pc-break {
    margin: 0
  }

  .news-detail .pc-br {
    display: none
  }

  .news-detail .news-detail-img {
    margin-top: 41px;
    flex-direction: column;
    gap: 24px
  }

  .news-detail .news-detail-img img {
    width: 100%;
    aspect-ratio: 413/230
  }

  .news-detail-page .btn-more,
  .works-detail-page .btn-more {
    margin-left: 0;
    margin: 31px auto 0
  }

  .pc-br {
    display: none
  }

  .sp-br {
    display: block
  }

  .news-detail-page .btn-more .arrow,
  .works-detail-page .btn-more .arrow {
    margin-left: 0
  }
}

.form-error {
  color: #e60023;
  font-size: .85rem;
  margin-top: 6px;
  line-height: 1.4
}

.form-item.is-error input,
.form-item.is-error textarea {
  border: 2px solid #e60023;
  background-color: #fff5f6
}

.form-item.is-error .checkbox-mark,
.form-item.is-error .radio-mark {
  border-color: #e60023
}

.contact-thanks__section {
  padding: 120px 20px;
  background: #f8f9fb
}

.contact-thanks__container {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  padding: 60px 50px;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .06)
}

.contact-thanks__header {
  text-align: center;
  margin-bottom: 30px
}

.contact-thanks__title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: .05em
}

.contact-thanks__content {
  margin-top: 20px
}

.contact-thanks__text {
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 20px;
  color: #333
}

.contact-thanks__divider {
  margin: 40px 0;
  border: none;
  border-top: 1px solid #e5e5e5
}

.contact-thanks__list {
  margin: 20px 0 30px;
  padding-left: 20px
}

.contact-thanks__list-item {
  margin-bottom: 10px;
  line-height: 1.8;
  font-size: 14px
}

.contact-thanks__highlight {
  font-weight: 700;
  color: #111
}

.contact-thanks__domain {
  font-weight: 700
}

.contact-thanks__footer {
  margin-top: 40px;
  text-align: center
}

.contact-thanks__button {
  display: inline-block;
  padding: 14px 36px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: .08em;
  border-radius: 50px;
  transition: all .3s ease
}

.contact-thanks__button:hover {
  background: #333;
  transform: translateY(-2px)
}

@media (max-width:768px) {
  .contact-thanks__section {
    padding: 80px 16px
  }

  .contact-thanks__container {
    padding: 40px 24px
  }

  .contact-thanks__title {
    font-size: 22px
  }

  .contact-thanks__text {
    font-size: 14px
  }

  .contact-thanks__button {
    width: 100%;
    padding: 14px
  }
}

.cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #111;
  color: #fff;
  padding: clamp(16px, 2vw, 28px);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform .4s ease
}

.cookie-open {
  transform: translateY(0)
}

.cookie__inner {
  width: 100%;
  max-width: min(1200px, 94%);
  margin: 0 auto
}

.cookie__text {
  margin-bottom: 16px;
  font-size: clamp(13px, 1.1vw, 15px);
  line-height: 1.6
}

.cookie__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center
}

.cookie__btn {
  padding: 10px 18px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-size: clamp(13px, 1vw, 14px);
  min-width: 120px;
  flex: 1 1 auto;
  text-align: center;
  transition: .25s ease
}

.cookie__actions .cookie__btn {
  max-width: 220px
}

.cookie__btn--primary {
  background: #fff;
  color: #000
}

.cookie__btn--primary:hover {
  background: #e5e5e5
}

.cookie__btn--secondary {
  background: #333;
  color: #fff
}

.cookie__btn--secondary:hover {
  background: #444
}

.cookie__btn--link {
  background: 0 0;
  color: #ccc;
  text-decoration: underline;
  max-width: none;
  flex: 0 0 auto
}

.cookie__btn--large {
  padding: 14px 28px;
  font-size: clamp(13px, 1vw, 15px);
  border-radius: 6px
}

.cookie-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
  align-items: center;
  justify-content: center
}

.cookie-modal.is-open {
  display: flex
}

.cookie-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .5)
}

.cookie-modal__content {
  position: relative;
  width: min(90%, 640px);
  max-height: 85vh;
  padding: clamp(24px, 4vw, 56px) clamp(16px, 3vw, 32px);
  background: #fff;
  border-radius: 12px;
  overflow-y: auto;
  z-index: 2
}

.cookie-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  border: none;
  background: 0 0;
  font-size: 14px;
  cursor: pointer
}

.cookie-card__content {
  display: flex;
  justify-content: space-between;
  gap: 16px
}

@media (max-width:1024px) {
  .cookie-modal {
    align-items: flex-end
  }

  .cookie-modal__content {
    width: 100%;
    max-width: 720px;
    border-radius: 16px 16px 0 0;
    margin: 0 auto
  }
}

@media (max-width:768px) {
  .cookie-modal__content {
    max-width: none;
    padding: 40px 16px 32px
  }

  .cookie-card__content {
    flex-direction: column;
    align-items: flex-start
  }

  .cookie-card__toggle {
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }

  .cookie__btn--large {
    width: 100%;
    padding: 16px;
    font-size: 16px;
  }
}

@media (max-width:400px) {
  .cookie-modal__content {
    padding: 40px 12px 28px;
  }
}

body.modal-open {
  overflow: hidden;
}

.cookie-card {
  background: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: clamp(16px, 2vw, 22px);
  margin-bottom: 16px;
  transition: .25s ease;
}

.cookie-card:hover {
  border-color: #bbb;
}

.cookie-card--fixed {
  opacity: .9;
}

.cookie-card__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.cookie-card__text {
  flex: 1 1 auto;
  min-width: 0;
}

.cookie-card__title {
  font-size: clamp(14px, 1vw, 15px);
  font-weight: 600;
  margin-bottom: 8px;
}

.cookie-card__desc {
  font-size: clamp(12px, .95vw, 13px);
  line-height: 1.6;
  color: #333;
  word-break: break-word;
}

.cookie-card__toggle {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.cookie-switch {
  width: 44px;
  height: 24px;
  background: #444;
  border-radius: 24px;
  position: relative;
  border: none;
  cursor: pointer;
  transition: .25s ease;
}

.cookie-switch span {
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: .25s ease;
}

.cookie-switch--on {
  background: #00c853
}

.cookie-switch--on span {
  left: 23px
}

.cookie-switch--disabled {
  background: #999;
  pointer-events: none
}

.cookie__actions--panel {
  margin-top: 20px;
  justify-content: flex-end
}

@media (max-width:768px) {
  .cookie {
    padding: 16px
  }

  .cookie__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie__btn {
    width: 100%;
    max-width: none;
    flex: none;
  }

  .cookie-card__content {
    flex-direction: column;
    gap: 14px
  }

  .cookie-card__toggle {
    align-self: flex-end;
  }

  .cookie-card__title {
    font-size: 14px;
  }

  .cookie-card__desc {
    font-size: 12px;
  }
}

.policy {
  color: var(--color_black);
  line-height: 1.9;
  font-family: var(--font_inter);
}

.policy__container {
  width: min(92%, 980px);
  padding-top: 120px;
  margin: 0 auto;
}

.policy__title {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  margin-bottom: .5em;
  letter-spacing: .03em;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: .3em;
}

.policy__title span:last-child {
  font-size: clamp(13px, 1.4vw, 16px);
  font-weight: 400;
  color: #555;
  letter-spacing: .05em;
}

.policy__date {
  font-size: clamp(13px, 1.2vw, 14px);
  color: #777;
  text-align: right;
  margin-bottom: clamp(40px, 4vw, 60px);
}

.policy__section {
  margin-bottom: clamp(50px, 6vw, 70px);
}

.policy__heading {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 600;
  margin-bottom: 1em;
  padding-bottom: .4em;
  border-bottom: 2px solid var(--color_black);
}

.policy__subheading {
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 600;
  margin-bottom: .6em;
}

.policy__text {
  font-size: clamp(14px, 1.5vw, 16px);
  color: #333;
  margin-bottom: 1.2em;
}

.policy__block {
  margin-bottom: clamp(30px, 4vw, 40px);
}

.policy__list {
  margin: 1em 0 1.2em 0;
  padding-left: 0;
  list-style: none;
}

.policy__list li {
  font-size: clamp(14px, 1.5vw, 16px);
  margin-bottom: .5em;
  color: #333;
  display: flex;
  gap: .5em;
  list-style: none;
}

.policy__list-num {
  flex-shrink: 0;
  font-size: clamp(14px, 1.5vw, 16px);
  color: #333;
}

.policy__contact {
  background: #f8f8f8;
  border-left: 3px solid var(--color_black);
  padding: 1.2em 1.5em;
  border-radius: 0 4px 4px 0;
}

.policy__contact .policy__text {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .policy__container {
    width: 92%;
    padding: 100px 0;
    margin: 0 auto;
  }

  .policy__title {
    font-size: 22px;
  }

  .policy__heading {
    font-size: 17px;
  }

  .policy__subheading {
    font-size: 15px;
  }

  .policy__list li,
  .policy__list-num,
  .policy__text {
    font-size: 14px;
  }

  .policy__section {
    margin-bottom: 40px;
  }

  .policy__contact {
    padding: 1em 1.2em;
  }
}

@media (min-width: 1600px) {
  .policy__container {
    max-width: 1000px;
  }
}

.error-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #f5f7fa, #e4e7ec);
  box-sizing: border-box;
}

.error {
  width: 100%;
  padding-top: clamp(200px, 10vh, 120px);
  padding-left: clamp(16px, 3vw, 40px);
  padding-right: clamp(16px, 3vw, 40px);
  padding-bottom: clamp(60px, 3vw, 58px);
}

.error__container {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}

.error__card {
  background: #fff;
  padding: clamp(24px, 5vw, 56px) clamp(20px, 4vw, 40px);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
  text-align: center;
}

.error__title {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  margin-bottom: 16px;
  color: #111;
}

.error__message {
  font-size: clamp(13px, 1.5vw, 15px);
  line-height: 1.8;
  color: #555;
  margin-bottom: 32px;
}

.error__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.error__button {
  display: inline-block;
  padding: 12px 20px;
  font-size: clamp(13px, 1.2vw, 14px);
  border-radius: 6px;
  text-decoration: none;
  transition: all .2s ease;
  white-space: nowrap;
}

.error__button--primary {
  background: #000;
  color: #fff
}

.error__button--primary:hover {
  opacity: .85;
}

.error__button--secondary {
  background: #eee;
  color: #333;
}

.error__button--secondary:hover {
  background: #ddd;
}

@media (max-width:768px) {
  .error__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .error__button {
    width: 100%;
    text-align: center;
  }
}

@media (max-width:480px) {
  .error__card {
    border-radius: 8px;
  }

  .error__message {
    line-height: 1.6;
  }
}

/***********************************

company

*******************************************/

.company-page {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 24px;
}

.company-profile {
  max-width: 800px;
  margin: 60px auto;
}

.company__item:first-child {
  border-top: 1px solid var(--color_blue);

}

.company__item {
  display: flex;
  align-items: stretch;
  font-size: 16px;
  border-bottom: 1px solid var(--color_blue);
}

.company__item dt {
  display: flex;
  background: #F3F5FA;
  align-items: center;
  padding: 16px 20px;
  width: 250px;
  font-weight: bold;
}

.company__item dd {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 16px 20px;
  width: 100%;
}

@media (max-width: 768px) {

  .company__item {
    flex-direction: column;
    border-bottom: 1px solid var(--color_blue);
  }

  .company__item:first-child {
    border-top: 1px solid var(--color_blue);
  }

  .company__item dt {
    width: 100%;
    border: none;
    padding: 8px 20px;
    font-size: 14px;
    color: #888;
  }

  .company__item:first-child dt {
    border-top: none;
  }

  .company__item dd {
    width: 100%;
    border: none;
    padding: 12px 20px;
  }

  .company__item:first-child dd {
    border-top: none;
  }
}

@media (max-width: 375px) {
  .company-page .page-title {
    font-size: 50px;
  }
}