@charset "UTF-8";
:root {
  --pri: #003037;
  --pri-dark: #00262B;
  --pri-gray: #627882;
  --white: #FFF;
  --white30: rgba(255,255,255,0.3);
  --black: #000;
}

/*-------------------------------------
リセットCSS
--------------------------------------*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, a, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video, button {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

a:hover {
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

ins {
  color: var(--black);
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  font-style: normal;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

input[type=submit],
input[type=button],
input[type=radio] select {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration,
input[type=radio]::-webkit-search-decoration select::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus,
input[type=radio]::focus select::focus {
  outline-offset: -2px;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 10px;
  font-size: 1rem;
  line-height: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: var(--white);
  background: var(--pri);
  font-weight: 400;
  width: 100%;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-family: "Zen Kaku Gothic New", Roboto, "Helvetica Neue", HelveticaNeue, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
}

body.is--fixed {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}

html,
body {
  height: auto;
  margin: 0;
  padding: 0;
  word-wrap: break-word;
  -webkit-overflow-scrolling: touch;
  -webkit-text-size-adjust: 100%;
}

img,
video,
object,
picture {
  max-width: 100%;
  height: auto;
  border: none;
  display: block;
  vertical-align: bottom;
}

a, button {
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  color: var(--white);
  text-decoration: none;
}

input,
button,
select,
textarea {
  background: transparent;
  border: none;
  border-radius: 0;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
ul, ol, li,
dl, dt, dd,
table, tr, th, td,
small,
time,
a,
span,
div {
  line-height: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

pre {
  color: var(--black);
}

@-webkit-keyframes draw-reverse {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes draw-reverse {
  to {
    stroke-dashoffset: 0;
  }
}
@-webkit-keyframes scrollLineDown {
  0% {
    top: -100%;
  }
  100% {
    top: 100%;
  }
}
@keyframes scrollLineDown {
  0% {
    top: -100%;
  }
  100% {
    top: 100%;
  }
}
@-webkit-keyframes flow-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes flow-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes rotateInfinitely {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotateInfinitely {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes nanameLogo {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(38deg);
            transform: rotate(38deg);
  }
  30% {
    -webkit-transform: rotate(38deg);
            transform: rotate(38deg);
  }
  33% {
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
  }
  33.5% {
    -webkit-transform: rotate(1deg);
            transform: rotate(1deg);
  }
  34% {
    -webkit-transform: rotate(-1deg);
            transform: rotate(-1deg);
  }
  34.5% {
    -webkit-transform: rotate(0.5deg);
            transform: rotate(0.5deg);
  }
  35% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@keyframes nanameLogo {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(38deg);
            transform: rotate(38deg);
  }
  30% {
    -webkit-transform: rotate(38deg);
            transform: rotate(38deg);
  }
  33% {
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
  }
  33.5% {
    -webkit-transform: rotate(1deg);
            transform: rotate(1deg);
  }
  34% {
    -webkit-transform: rotate(-1deg);
            transform: rotate(-1deg);
  }
  34.5% {
    -webkit-transform: rotate(0.5deg);
            transform: rotate(0.5deg);
  }
  35% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
.icon-plus {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 11px;
  height: 11px;
}
@media (min-width: 1024px) {
  .icon-plus {
    width: 21px;
    height: 21px;
  }
}
.icon-plus.icon-plus--left {
  left: -6px;
}
@media (min-width: 1024px) {
  .icon-plus.icon-plus--left {
    left: -11px;
  }
}
.icon-plus.icon-plus--right {
  right: -6px;
}
@media (min-width: 1024px) {
  .icon-plus.icon-plus--right {
    right: -11px;
  }
}
.icon-plus.icon-plus--top {
  top: -6px;
}
@media (min-width: 1024px) {
  .icon-plus.icon-plus--top {
    top: -11px;
  }
}
.icon-plus.icon-plus--bottom {
  bottom: -6px;
}
@media (min-width: 1024px) {
  .icon-plus.icon-plus--bottom {
    bottom: -11px;
  }
}
.icon-plus.icon-plus--center {
  left: calc(50% - 6px);
}
@media (min-width: 1024px) {
  .icon-plus.icon-plus--center {
    left: calc(50% - 11px);
  }
}
.icon-plus .plus-mark {
  width: 11px;
  height: 11px;
  position: relative;
  z-index: 2;
}
@media (min-width: 1024px) {
  .icon-plus .plus-mark {
    width: 21px;
    height: 21px;
  }
}
.icon-plus .plus-mark:before, .icon-plus .plus-mark:after {
  position: absolute;
  background-color: var(--white);
  content: "";
  display: block;
}
.icon-plus .plus-mark:before {
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.icon-plus .plus-mark:after {
  width: 1px;
  height: 100%;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.line-grow {
  position: absolute;
  background-color: var(--pri-gray);
  -webkit-transition: all 0.85s cubic-bezier(0.95, 0.13, 0.48, 0.99);
  transition: all 0.85s cubic-bezier(0.95, 0.13, 0.48, 0.99);
  z-index: 1;
}
.line-grow.line-grow--top {
  width: 1px;
  height: 0;
}
.line-grow.line-grow--right {
  height: 1px;
  width: 0;
}
.line-grow.line-grow--bottom {
  width: 1px;
  height: 0;
}
.line-grow.line-grow--left {
  height: 1px;
  width: 0;
}
.line-grow.white30 {
  background-color: var(--white30);
}

.js--parallax {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  opacity: 0;
  -webkit-transition: opacity 0.6s ease-out;
  transition: opacity 0.6s ease-out;
}
.js--parallax.is--view {
  opacity: 1;
}
.js--parallax .bg {
  width: 100%;
  height: 110%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  top: -5%;
  left: 0px;
  will-change: transform;
}

.js--scale {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  -webkit-transition: opacity 0.6s ease-out;
  transition: opacity 0.6s ease-out;
}
.js--scale .bg {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  will-change: transform;
}

.js--text-reveal {
  opacity: 0;
}
.js--text-reveal.is--ready {
  opacity: 1;
}
.js--text-reveal .js--text-reveal-add-wrap {
  overflow: hidden;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-indent: -0.03em;
}
.js--text-reveal .js--text-reveal-add-text {
  display: block;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), -webkit-transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.js--text-reveal .js--text-reveal-add-text[data-char=" "] {
  width: 0.35em;
  height: 1em;
  display: block;
}
.js--text-reveal .js--text-reveal-add-text.is--view {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.ttl__layout {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.ttl__layout .num {
  font-size: 2.4vw;
  letter-spacing: 0.18em;
}
@media (min-width: 1024px) {
  .ttl__layout .num {
    margin-bottom: -0.5em;
    font-size: 0.9722222222vw;
  }
}
.ttl__layout .text {
  font-size: 18.6666666667vw;
  letter-spacing: -0.02em;
}
@media (min-width: 1024px) {
  .ttl__layout .text {
    font-size: 9.8611111111vw;
  }
}
.ttl__layout.leftnum .num {
  margin-left: 0.5em;
}
.ttl__layout.rightnum .num {
  margin-left: auto;
  margin-right: 0.5em;
}
.ttl__layout.small .text {
  font-size: 16vw;
}
@media (min-width: 1024px) {
  .ttl__layout.small .text {
    font-size: 9.8611111111vw;
  }
}
.ttl__layout.small.leftnum .num {
  margin-left: 0.35em;
}

.js--fadein {
  opacity: 0;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, -webkit-transform 0.8s ease-out;
  will-change: opacity, transform;
}
.js--fadein.is--view {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.fadein-up {
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
}

.fadein-down {
  -webkit-transform: translateY(-15px);
          transform: translateY(-15px);
}

.fadein-left {
  -webkit-transform: translateX(-15px);
          transform: translateX(-15px);
}

.fadein-right {
  -webkit-transform: translateX(15px);
          transform: translateX(15px);
}

.fadein-scale {
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 1.4s cubic-bezier(0.05, 0.84, 0.85, 0.3);
  transition: opacity 0.8s ease-out, -webkit-transform 1.4s cubic-bezier(0.05, 0.84, 0.85, 0.3);
  transition: opacity 0.8s ease-out, transform 1.4s cubic-bezier(0.05, 0.84, 0.85, 0.3);
  transition: opacity 0.8s ease-out, transform 1.4s cubic-bezier(0.05, 0.84, 0.85, 0.3), -webkit-transform 1.4s cubic-bezier(0.05, 0.84, 0.85, 0.3);
}

.fadein-scale.is--view {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.fadein-delay.is--view {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.fadein-up-delay {
  -webkit-transform: translateY(30px) scale(0.5);
          transform: translateY(30px) scale(0.5);
  opacity: 0;
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 1.4s cubic-bezier(0.01, 0.57, 0.86, 0.23);
  transition: opacity 0.8s ease-out, -webkit-transform 1.4s cubic-bezier(0.01, 0.57, 0.86, 0.23);
  transition: opacity 0.8s ease-out, transform 1.4s cubic-bezier(0.01, 0.57, 0.86, 0.23);
  transition: opacity 0.8s ease-out, transform 1.4s cubic-bezier(0.01, 0.57, 0.86, 0.23), -webkit-transform 1.4s cubic-bezier(0.01, 0.57, 0.86, 0.23);
}
.fadein-up-delay.is--view {
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
  opacity: 1;
}

.fadein-up-delay-2 {
  -webkit-transform: translateY(30px) scale(0.9);
          transform: translateY(30px) scale(0.9);
  opacity: 0;
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s cubic-bezier(0.8, 0.32, 0.85, 1);
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s cubic-bezier(0.8, 0.32, 0.85, 1);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.8, 0.32, 0.85, 1);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.8, 0.32, 0.85, 1), -webkit-transform 0.8s cubic-bezier(0.8, 0.32, 0.85, 1);
}
.fadein-up-delay-2.is--view {
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
  opacity: 1;
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.btn__normal {
  width: 58.6666666667vw;
  border: solid 1px var(--pri-gray);
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 3.6vw;
  padding: 0.8em 0;
  border-radius: 100px;
  text-align: center;
  position: relative;
  display: block;
  -webkit-transition: background 0.7s cubic-bezier(1, 0.18, 0.33, 0.97), opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: background 0.7s cubic-bezier(1, 0.18, 0.33, 0.97), opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: background 0.7s cubic-bezier(1, 0.18, 0.33, 0.97), opacity 0.8s ease-out, transform 0.8s ease-out;
  transition: background 0.7s cubic-bezier(1, 0.18, 0.33, 0.97), opacity 0.8s ease-out, transform 0.8s ease-out, -webkit-transform 0.8s ease-out;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .btn__normal {
    width: 17.2222222222vw;
    font-size: 0.9722222222vw;
  }
}
.btn__normal .text {
  letter-spacing: 0.08em;
}
.btn__normal .btn-icon-plus {
  position: absolute;
  top: calc(50% - 1.8vw);
  right: 4.2666666667vw;
  width: 3.6vw;
  height: 3.6vw;
  -webkit-transition: -webkit-transform 0.7s cubic-bezier(1, 0.18, 0.33, 0.97);
  transition: -webkit-transform 0.7s cubic-bezier(1, 0.18, 0.33, 0.97);
  transition: transform 0.7s cubic-bezier(1, 0.18, 0.33, 0.97);
  transition: transform 0.7s cubic-bezier(1, 0.18, 0.33, 0.97), -webkit-transform 0.7s cubic-bezier(1, 0.18, 0.33, 0.97);
}
@media (min-width: 1024px) {
  .btn__normal .btn-icon-plus {
    top: calc(50% - 0.4861111111vw);
    right: 1.1805555556vw;
    width: 0.9722222222vw;
    height: 0.9722222222vw;
  }
}
.btn__normal .btn-icon-plus .btn-plus-mark {
  width: 100%;
  height: 100%;
  position: relative;
}
.btn__normal .btn-icon-plus .btn-plus-mark:before, .btn__normal .btn-icon-plus .btn-plus-mark:after {
  position: absolute;
  background-color: var(--white);
  content: "";
  display: block;
}
.btn__normal .btn-icon-plus .btn-plus-mark:before {
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.btn__normal .btn-icon-plus .btn-plus-mark:after {
  width: 1px;
  height: 100%;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.btn__normal.border-white {
  border: solid 1px var(--white);
}
.btn__normal:hover {
  background: rgba(0, 0, 0, 0.5);
}
.btn__normal:hover .btn-icon-plus {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.none__spnone {
  display: none;
}
@media (min-width: 1024px) {
  .none__spnone {
    display: block;
  }
}

@media (min-width: 1024px) {
  .none__pcnone {
    display: none;
  }
}

.fv__common {
  width: calc(100% - 5.0666666667vw);
  height: 54.9333333333vw;
  margin-left: auto;
  position: relative;
}
@media (min-width: 1024px) {
  .fv__common {
    width: calc(100% - min(6.8055555556vw, 98px) * 2);
    height: min(39.7916666667vw, 57.3rem);
    margin-left: 0;
    margin-inline: auto;
  }
}
.fv__common .ttl {
  position: absolute;
  top: 0.75em;
  font-size: 9.3333333333vw;
  width: 100%;
  text-align: center;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  margin-left: -2.5333333333vw;
  z-index: 2;
}
@media (min-width: 1024px) {
  .fv__common .ttl {
    top: 0.6em;
    font-size: min(7.1527777778vw, 10.3rem);
    margin-left: 0;
  }
}
.fv__common .bglayout {
  width: 100%;
  aspect-ratio: 712/322;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
@media (min-width: 1024px) {
  .fv__common .bglayout {
    aspect-ratio: inherit;
    height: min(31.8055555556vw, 45.8rem);
  }
}
.fv__common .fv-bg-wrap {
  width: 100%;
  height: 100%;
}
.fv__common .line-grow-fv-01 {
  left: -1px;
  bottom: 0;
}
.fv__common .line-grow-fv-01.is--grow {
  height: 100%;
}
.fv__common .line-grow-fv-02 {
  right: 100%;
  bottom: -1px;
}
.fv__common .line-grow-fv-02.is--grow {
  width: 5.0666666667vw;
}
@media (min-width: 1024px) {
  .fv__common .line-grow-fv-02.is--grow {
    width: min(6.8055555556vw, 98px);
  }
}
.fv__common .line-grow-fv-03 {
  left: 0;
  bottom: -1px;
}
.fv__common .line-grow-fv-03.is--grow {
  width: 100%;
}
@media (min-width: 1024px) {
  .fv__common .line-grow-fv-03.is--grow {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .fv__common .line-grow-fv-04 {
    left: 100%;
    bottom: -1px;
  }
}
@media (min-width: 1024px) {
  .fv__common .line-grow-fv-04.is--grow {
    width: min(6.8055555556vw, 98px);
  }
}
@media (min-width: 1024px) {
  .fv__common .line-grow-fv-05 {
    left: 100%;
    bottom: 0;
  }
}
@media (min-width: 1024px) {
  .fv__common .line-grow-fv-05.is--grow {
    height: 50%;
  }
}
@media (min-width: 1024px) {
  .fv__common .line-grow-fv-06 {
    left: 100%;
    top: 0;
  }
}
@media (min-width: 1024px) {
  .fv__common .line-grow-fv-06.is--grow {
    height: 50%;
  }
}
@media (min-width: 1024px) {
  .fv__common .line-grow-fv-07 {
    right: 0;
    bottom: -1px;
    height: 1px;
  }
}
@media (min-width: 1024px) {
  .fv__common .line-grow-fv-07.is--grow {
    width: 50%;
  }
}

.fv__ttlonly {
  width: calc(100% - 15.4666666667vw);
  height: 38.9333333333vw;
  margin-inline: auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 1024px) {
  .fv__ttlonly {
    width: calc(100% - min(6.8055555556vw, 98px) * 2);
    height: min(20.8333333333vw, 30rem);
    margin-left: 0;
    margin-inline: auto;
  }
}
.fv__ttlonly .ttl {
  font-size: 9.3333333333vw;
  width: 100%;
  text-align: center;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  z-index: 2;
}
@media (min-width: 1024px) {
  .fv__ttlonly .ttl {
    top: 0.6em;
    font-size: min(7.1527777778vw, 10.3rem);
  }
}
.fv__ttlonly .line-grow-fv-01 {
  left: -1px;
  bottom: 0;
}
.fv__ttlonly .line-grow-fv-01.is--grow {
  height: 100%;
}
.fv__ttlonly .line-grow-fv-02 {
  right: 100%;
  bottom: -1px;
}
.fv__ttlonly .line-grow-fv-02.is--grow {
  width: 7.7333333333vw;
}
@media (min-width: 1024px) {
  .fv__ttlonly .line-grow-fv-02.is--grow {
    width: min(6.8055555556vw, 98px);
  }
}
.fv__ttlonly .line-grow-fv-03 {
  left: 0;
  bottom: -1px;
}
.fv__ttlonly .line-grow-fv-03.is--grow {
  width: 50%;
}
.fv__ttlonly .line-grow-fv-04 {
  left: 100%;
  bottom: -1px;
}
.fv__ttlonly .line-grow-fv-04.is--grow {
  width: 7.7333333333vw;
}
@media (min-width: 1024px) {
  .fv__ttlonly .line-grow-fv-04.is--grow {
    width: min(6.8055555556vw, 98px);
  }
}
.fv__ttlonly .line-grow-fv-05 {
  left: 100%;
  bottom: 0;
}
.fv__ttlonly .line-grow-fv-05.is--grow {
  height: 100%;
}
@media (min-width: 1024px) {
  .fv__ttlonly .line-grow-fv-05.is--grow {
    height: 50%;
  }
}
@media (min-width: 1024px) {
  .fv__ttlonly .line-grow-fv-06 {
    left: 100%;
    top: 0;
  }
}
@media (min-width: 1024px) {
  .fv__ttlonly .line-grow-fv-06.is--grow {
    height: 50%;
  }
}
.fv__ttlonly .line-grow-fv-07 {
  right: 0;
  bottom: -1px;
}
.fv__ttlonly .line-grow-fv-07.is--grow {
  width: 50%;
}

.contact__common {
  position: relative;
  margin-bottom: 24.6666666667vw;
  padding-top: 23.0666666667vw;
}
@media (min-width: 1024px) {
  .contact__common {
    margin-bottom: min(15.9722222222vw, 23rem);
    padding-top: min(10.4166666667vw, 15rem);
  }
}
.contact__common .ttl {
  text-align: center;
  font-weight: 500;
  font-size: 3.7333333333vw;
  letter-spacing: -0.05em;
  white-space: nowrap;
  line-height: 1.964;
  margin-bottom: 2.5em;
}
@media (min-width: 1024px) {
  .contact__common .ttl {
    font-size: min(1.1111111111vw, 1.6rem);
  }
}
@media (min-width: 1024px) {
  .contact__common .ttl br {
    display: none;
  }
}
.contact__common .btn__normal {
  margin-inline: auto;
}
.contact__common .line-grow-contact-01 {
  left: 50%;
  top: 0;
}
.contact__common .line-grow-contact-01.is--grow {
  width: 50vw;
}
.contact__common .line-grow-contact-02 {
  right: 50%;
  top: 0;
}
.contact__common .line-grow-contact-02.is--grow {
  width: 50vw;
}

.gnav__modal {
  width: 100%;
  height: 52px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  background: rgba(0, 48, 55, 0.85);
}
@media (min-width: 1024px) {
  .gnav__modal {
    height: min(6.8055555556vw, 98px);
  }
}
.gnav__modal.is--hide {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
.gnav__modal .inner-layout {
  padding: 0 3.5%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width: 1024px) {
  .gnav__modal .inner-layout {
    margin-inline: auto;
    padding: 0 0 0 30px;
    height: 100%;
  }
}
.gnav__modal .inner-layout .line-grow-header-01 {
  width: 0;
  right: 0;
  top: calc(100% - 1px);
}
@media (min-width: 1024px) {
  .gnav__modal .inner-layout .line-grow-header-01 {
    right: min(6.8055555556vw, 98px);
  }
}
.gnav__modal .inner-layout .line-grow-header-01.is--grow {
  width: 100vw;
}
@media (min-width: 1024px) {
  .gnav__modal .inner-layout .line-grow-header-01.is--grow {
    width: calc(100vw - min(6.8055555556vw, 98px));
  }
}

.gnav__logo {
  width: 64px;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 5;
}
@media (min-width: 1024px) {
  .gnav__logo {
    width: min(6.9444444444vw, 100px);
  }
}
.gnav__logo img {
  width: 100%;
}

.gnav__hamburger {
  width: 52px;
  height: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
  gap: 9px 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media (min-width: 1024px) {
  .gnav__hamburger {
    display: none;
  }
}
.gnav__hamburger:before {
  content: "";
  display: block;
  width: 70%;
  height: 1px;
  background: var(--white);
  -webkit-transition: 0.45s cubic-bezier(0.97, 0.08, 0.75, 0.96);
  transition: 0.45s cubic-bezier(0.97, 0.08, 0.75, 0.96);
  border-radius: 3px;
}
.gnav__hamburger:after {
  content: "";
  display: block;
  width: 70%;
  height: 1px;
  background: var(--white);
  -webkit-transition: 0.45s cubic-bezier(0.97, 0.08, 0.75, 0.96);
  transition: 0.45s cubic-bezier(0.97, 0.08, 0.75, 0.96);
  border-radius: 3px;
}
.gnav__hamburger .border {
  width: 70%;
  height: 1px;
  background: var(--white);
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  border-radius: 3px;
}

.gnav__nav.top {
  position: fixed;
  z-index: 3;
  top: -100dvh;
  left: 0;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background: var(--black);
  -webkit-transition: 0.5s cubic-bezier(0.68, 0, 0.59, 0.99);
  transition: 0.5s cubic-bezier(0.68, 0, 0.59, 0.99);
}
@media (min-width: 1024px) {
  .gnav__nav.top {
    display: block;
    position: relative;
    -webkit-transform: none;
            transform: none;
    height: auto;
    background: none;
    overflow: inherit;
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content;
    top: 0;
    left: auto;
    right: auto;
    padding-bottom: 0;
    height: 100%;
    margin-left: auto;
  }
}
.gnav__nav.top ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px;
  text-align: center;
  margin-top: 0;
  background: var(--pri);
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
@media (min-width: 1024px) {
  .gnav__nav.top ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    height: 100%;
    background: none;
    font-size: min(1.1111111111vw, 16px);
    gap: 0 2.5em;
  }
}
.gnav__nav.top ul li {
  line-height: 1;
  height: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-bottom: solid 1px var(--pri-gray);
  width: 100%;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.06em;
}
@media (min-width: 1024px) {
  .gnav__nav.top ul li {
    height: auto;
    border-bottom: none;
  }
}
.gnav__nav.top ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  white-space: nowrap;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  letter-spacing: 0.1em;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .gnav__nav.top ul li a {
    padding-bottom: 5px;
  }
}
@media (min-width: 1024px) {
  .gnav__nav.top ul li a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%) scaleX(0);
            transform: translateX(-50%) scaleX(0);
    -webkit-transform-origin: center;
            transform-origin: center;
    width: 100%;
    height: 1px;
    background-color: var(--white);
    -webkit-transition: -webkit-transform 0.3s ease-out;
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  }
}
@media (min-width: 1024px) {
  .gnav__nav.top ul li a:hover:after {
    -webkit-transform: translateX(-50%) scaleX(1);
            transform: translateX(-50%) scaleX(1);
  }
}
@media (min-width: 1024px) {
  .gnav__nav.top ul li:nth-of-type(1) {
    display: none;
  }
}
@media (min-width: 1024px) {
  .gnav__nav.top ul li.btn-contact {
    background: var(--pri);
    height: 100%;
    aspect-ratio: 1/1;
    position: relative;
    font-size: min(0.8333333333vw, 12px);
    letter-spacing: 0.02em;
  }
}
@media (min-width: 1024px) {
  .gnav__nav.top ul li.btn-contact a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-bottom: 0;
  }
}
@media (min-width: 1024px) {
  .gnav__nav.top ul li.btn-contact a:after {
    content: none;
  }
}
.gnav__nav.top ul li.btn-contact a:hover {
  background: var(--pri-dark);
}
@media (min-width: 1024px) {
  .gnav__nav.top ul li.btn-contact a:before {
    content: "";
    display: block;
    width: 2em;
    height: 2em;
    background-image: url(../img/common/icon-mail.svg);
    background-repeat: no-repeat;
    background-size: contain;
    margin-top: -1em;
    margin-bottom: 0.3em;
  }
}
.gnav__nav.top ul li.btn-contact .icon-plus {
  display: none;
}
@media (min-width: 1024px) {
  .gnav__nav.top ul li.btn-contact .icon-plus {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    bottom: -10px;
    left: -10px;
  }
}
.gnav__nav.top ul li.btn-contact .line-grow-btn-contact-01 {
  display: none;
}
@media (min-width: 1024px) {
  .gnav__nav.top ul li.btn-contact .line-grow-btn-contact-01 {
    display: initial;
    left: 0;
    bottom: 0;
  }
}
.gnav__nav.top ul li.btn-contact .line-grow-btn-contact-01.is--grow {
  height: 100%;
}
.gnav__nav.top ul li.btn-contact .line-grow-btn-contact-02 {
  display: none;
}
@media (min-width: 1024px) {
  .gnav__nav.top ul li.btn-contact .line-grow-btn-contact-02 {
    display: initial;
    left: 0;
    bottom: 0;
  }
}
.gnav__nav.top ul li.btn-contact .line-grow-btn-contact-02.is--grow {
  width: 100%;
}

.gnav__bg {
  position: fixed;
  top: 52px;
  left: 0;
  width: 100%;
  height: calc(100vh - 52px);
  height: calc(100dvh - 52px);
  z-index: 2;
  background: rgba(0, 50, 64, 0.32);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media (min-width: 1024px) {
  .gnav__bg {
    display: none;
  }
}
.gnav__bg.is--visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.gnav__modal.is--open {
  background: var(--pri);
}
.gnav__modal.is--open .gnav__hamburger:before {
  width: 70%;
  -webkit-transform: rotate(330deg) translateX(-6px) translateY(8px);
          transform: rotate(330deg) translateX(-6px) translateY(8px);
}
.gnav__modal.is--open .gnav__hamburger:after {
  width: 70%;
  -webkit-transform: rotate(-330deg) translateX(-6px) translateY(-8px);
          transform: rotate(-330deg) translateX(-6px) translateY(-8px);
}
.gnav__modal.is--open .gnav__hamburger .border {
  opacity: 0;
}
.gnav__modal.is--open .gnav__nav.top {
  top: 52px;
}
.gnav__modal.is--open .gnav__nav.right {
  right: 0;
}
.gnav__modal.is--open .gnav__nav.fade {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.main__common {
  min-height: 100vh;
  min-height: 100dvh;
  margin-top: 52px;
  width: 100%;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .main__common {
    min-height: auto;
    margin-top: min(6.8055555556vw, 98px);
  }
}

.footer__global {
  background-color: var(--pri);
  color: var(--white);
  width: 100%;
}
.footer__global .footer-nav {
  border-top: 1px solid var(--pri-gray);
  border-bottom: 1px solid var(--pri-gray);
  width: 100%;
}
.footer__global .footer-nav .footer-navlist {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 3.7333333333vw;
  letter-spacing: 0.08em;
  position: relative;
}
@media (min-width: 1024px) {
  .footer__global .footer-nav .footer-navlist {
    gap: 0 5.6em;
    font-size: min(0.9722222222vw, 14px);
  }
}
.footer__global .footer-nav .footer-navlist:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--pri-gray);
  position: absolute;
  top: 50%;
  left: 0;
}
@media (min-width: 1024px) {
  .footer__global .footer-nav .footer-navlist:after {
    content: none;
  }
}
.footer__global .footer-nav .footer-navitem {
  display: block;
  padding: 0.65em 0;
}
@media (min-width: 1024px) {
  .footer__global .footer-nav .footer-navitem {
    padding: 1.65em 0;
  }
}
.footer__global .footer-nav .footer-navitem:nth-of-type(1) {
  width: calc(50% - 5em);
  text-align: right;
}
@media (min-width: 1024px) {
  .footer__global .footer-nav .footer-navitem:nth-of-type(1) {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-align: left;
  }
}
.footer__global .footer-nav .footer-navitem:nth-of-type(2) {
  width: 10em;
  text-align: center;
}
@media (min-width: 1024px) {
  .footer__global .footer-nav .footer-navitem:nth-of-type(2) {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    text-align: left;
  }
}
.footer__global .footer-nav .footer-navitem:nth-of-type(3) {
  width: calc(50% - 5em);
  text-align: left;
}
@media (min-width: 1024px) {
  .footer__global .footer-nav .footer-navitem:nth-of-type(3) {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.footer__global .footer-nav .footer-navitem:nth-of-type(4) {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 1.2em;
}
@media (min-width: 1024px) {
  .footer__global .footer-nav .footer-navitem:nth-of-type(4) {
    margin-right: 0;
  }
}
.footer__global .footer-nav .footer-navitem:nth-of-type(5) {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 1.2em;
}
@media (min-width: 1024px) {
  .footer__global .footer-nav .footer-navitem:nth-of-type(5) {
    margin-left: 0;
  }
}
.footer__global .footer-nav .footer-navitem a {
  color: var(--white);
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  display: inline-block;
  position: relative;
}
@media (min-width: 1024px) {
  .footer__global .footer-nav .footer-navitem a {
    padding-bottom: 5px;
    position: relative;
    top: 2px;
  }
}
@media (min-width: 1024px) {
  .footer__global .footer-nav .footer-navitem a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%) scaleX(0);
            transform: translateX(-50%) scaleX(0);
    -webkit-transform-origin: center;
            transform-origin: center;
    width: 100%;
    height: 1px;
    background-color: var(--white);
    -webkit-transition: -webkit-transform 0.3s ease-out;
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  }
}
@media (min-width: 1024px) {
  .footer__global .footer-nav .footer-navitem a:hover:after {
    -webkit-transform: translateX(-50%) scaleX(1);
            transform: translateX(-50%) scaleX(1);
  }
}
.footer__global .footer-info .inner-layout {
  width: 88%;
  margin-inline: auto;
}
@media (min-width: 1024px) {
  .footer__global .footer-info .inner-layout {
    width: calc(100% - min(2.7777777778vw, 40px));
    margin-left: min(2.7777777778vw, 40px);
  }
}
.footer__global .footer-info .collayout {
  padding-top: 10.1333333333vw;
}
@media (min-width: 1024px) {
  .footer__global .footer-info .collayout {
    padding-top: min(5.2083333333vw, 75px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer__global .footer-info .col-logo .logo {
  display: block;
  width: 25.7333333333vw;
}
@media (min-width: 1024px) {
  .footer__global .footer-info .col-logo .logo {
    width: min(8.3333333333vw, 120px);
  }
}
.footer__global .footer-info .col-info {
  padding-top: 8.6666666667vw;
  padding-bottom: 12.2666666667vw;
}
@media (min-width: 1024px) {
  .footer__global .footer-info .col-info {
    padding-top: 0;
    padding-bottom: 0;
  }
}
.footer__global .footer-info .col-info .ttlmideum {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 3.2vw;
  font-weight: 400;
  letter-spacing: 0.075em;
  margin-bottom: 1.85em;
}
@media (min-width: 1024px) {
  .footer__global .footer-info .col-info .ttlmideum {
    font-size: min(0.9722222222vw, 14px);
    margin-left: min(3.4722222222vw, 50px);
  }
}
.footer__global .footer-info .col-info .ttlmideum .ttl {
  display: block;
}
.footer__global .footer-info .col-info .ttlmideum .bar {
  display: block;
  width: 1px;
  height: 0.8em;
  background: var(--pri-gray);
  margin: 0 0.4em;
}
.footer__global .footer-info .col-address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 8vw;
}
@media (min-width: 1024px) {
  .footer__global .footer-info .col-address {
    gap: 0;
  }
}
.footer__global .footer-info .address {
  font-size: 2.6666666667vw;
  font-weight: 400;
  letter-spacing: 0.075em;
  font-style: normal;
}
@media (min-width: 1024px) {
  .footer__global .footer-info .address {
    font-size: min(0.9722222222vw, 14px);
    margin-left: min(3.4722222222vw, 50px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.footer__global .footer-info .address .ttlsmall {
  margin-bottom: 0.65em;
}
@media (min-width: 1024px) {
  .footer__global .footer-info .address .ttlsmall {
    padding-right: 1.25em;
    margin-bottom: 0;
  }
}
.footer__global .footer-info .address .text {
  line-height: 1.6;
}
@media (min-width: 1024px) {
  .footer__global .footer-info .address .text {
    border-left: solid 1px var(--pri-gray);
    padding-left: 1.25em;
  }
}
.footer__global .copyright {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2.1333333333vw;
  margin-left: auto;
  margin-right: 1em;
  margin-bottom: 1em;
}
@media (min-width: 1024px) {
  .footer__global .copyright {
    font-size: min(1.6vw, 12px);
    margin-right: 1.25em;
    margin-bottom: 1.25em;
  }
}

.home .fv {
  position: relative;
}
.home .fv .fv-video-wrap {
  width: calc(100% - 20vw);
  height: calc(var(--vh2, 1vh) * 100 - 52px);
  padding-bottom: 20vw;
  margin-inline: auto;
  position: relative;
}
@media screen and (orientation: landscape) {
  .home .fv .fv-video-wrap {
    height: calc(1.7777777778 * (100% - 20vw));
  }
}
@media (min-width: 1024px) {
  .home .fv .fv-video-wrap {
    width: calc(100% - min(6.8055555556vw, 98px) * 2);
    height: calc(100vh - min(6.8055555556vw, 98px));
    padding-bottom: min(6.8055555556vw, 98px);
  }
}
.home .fv .fv-ttl-view {
  position: absolute;
  bottom: 35.2vw;
  left: 0;
  width: 100%;
  z-index: 3;
}
@media (min-width: 1024px) {
  .home .fv .fv-ttl-view {
    bottom: min(6.8055555556vw, 98px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4vh 0;
  }
}
.home .fv .fv-ttl-view .fv-ttl-view-content {
  display: block;
  overflow: hidden;
  position: relative;
  -webkit-transition: -webkit-transform 0.7s cubic-bezier(1, 0.18, 0.33, 0.97);
  transition: -webkit-transform 0.7s cubic-bezier(1, 0.18, 0.33, 0.97);
  transition: transform 0.7s cubic-bezier(1, 0.18, 0.33, 0.97);
  transition: transform 0.7s cubic-bezier(1, 0.18, 0.33, 0.97), -webkit-transform 0.7s cubic-bezier(1, 0.18, 0.33, 0.97);
}
.home .fv .fv-ttl-view .fv-ttl-view-content img {
  display: block;
  width: 100%;
  position: relative;
  left: 0;
  -webkit-transition: -webkit-transform 0.9s cubic-bezier(0, 0.4, 0, 1);
  transition: -webkit-transform 0.9s cubic-bezier(0, 0.4, 0, 1);
  transition: transform 0.9s cubic-bezier(0, 0.4, 0, 1);
  transition: transform 0.9s cubic-bezier(0, 0.4, 0, 1), -webkit-transform 0.9s cubic-bezier(0, 0.4, 0, 1);
}
.home .fv .fv-ttl-view .fv-ttl-view-content.nth-1 {
  width: 70.9333333333vw;
  margin-bottom: 5.0666666667vw;
  -webkit-transform: translateX(16vw);
          transform: translateX(16vw);
}
@media (min-width: 1024px) {
  .home .fv .fv-ttl-view .fv-ttl-view-content.nth-1 {
    width: 61.8923611111vmin;
    margin-bottom: 0;
    -webkit-transform: translateX(calc(100vw - min(13.6111111111vw, 196px) - 100% + min(3.125vw, 45px)));
            transform: translateX(calc(100vw - min(13.6111111111vw, 196px) - 100% + min(3.125vw, 45px)));
  }
}
.home .fv .fv-ttl-view .fv-ttl-view-content.nth-1.is--view img {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.home .fv .fv-ttl-view .fv-ttl-view-content.nth-1.is--done {
  -webkit-transform: translateX(-6.6666666667vw);
          transform: translateX(-6.6666666667vw);
}
@media (min-width: 1024px) {
  .home .fv .fv-ttl-view .fv-ttl-view-content.nth-1.is--done {
    -webkit-transform: translateX(min(-3.125vw, 45px));
            transform: translateX(min(-3.125vw, 45px));
  }
}
.home .fv .fv-ttl-view .fv-ttl-view-content.nth-1 img {
  -webkit-transform: translateY(calc(100% + 3px));
          transform: translateY(calc(100% + 3px));
}
.home .fv .fv-ttl-view .fv-ttl-view-content.nth-2 {
  width: 31.0666666667vw;
  margin-bottom: 5.0666666667vw;
  -webkit-transform: translateX(-6.6666666667vw);
          transform: translateX(-6.6666666667vw);
}
@media (min-width: 1024px) {
  .home .fv .fv-ttl-view .fv-ttl-view-content.nth-2 {
    width: 27.0173611111vmin;
    margin-bottom: 0;
    -webkit-transform: translateX(min(-3.125vw, -45px));
            transform: translateX(min(-3.125vw, -45px));
  }
}
.home .fv .fv-ttl-view .fv-ttl-view-content.nth-2.is--view img {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.home .fv .fv-ttl-view .fv-ttl-view-content.nth-2.is--done {
  -webkit-transform: translateX(56vw);
          transform: translateX(56vw);
}
@media (min-width: 1024px) {
  .home .fv .fv-ttl-view .fv-ttl-view-content.nth-2.is--done {
    -webkit-transform: translateX(calc(100vw - min(13.6111111111vw, 196px) - 100% + min(3.125vw, 45px)));
            transform: translateX(calc(100vw - min(13.6111111111vw, 196px) - 100% + min(3.125vw, 45px)));
  }
}
.home .fv .fv-ttl-view .fv-ttl-view-content.nth-2 img {
  -webkit-transform: translateY(calc(100% + 3px));
          transform: translateY(calc(100% + 3px));
}
.home .fv .fv-ttl-view .fv-ttl-view-content.nth-3 {
  width: 81.8666666667vw;
  -webkit-transform: translateX(-6.6666666667vw);
          transform: translateX(-6.6666666667vw);
}
@media (min-width: 1024px) {
  .home .fv .fv-ttl-view .fv-ttl-view-content.nth-3 {
    width: 71.5798611111vmin;
    -webkit-transform: translateX(36%);
            transform: translateX(36%);
  }
}
.home .fv .fv-ttl-view .fv-ttl-view-content.nth-3.is--view img {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.home .fv .fv-ttl-view .fv-ttl-view-content.nth-3.is--done {
  -webkit-transform: translateX(5.3333333333vw);
          transform: translateX(5.3333333333vw);
}
@media (min-width: 1024px) {
  .home .fv .fv-ttl-view .fv-ttl-view-content.nth-3.is--done {
    -webkit-transform: translateX(calc(100vw - min(13.6111111111vw, 196px) - 100% + min(3.125vw, 45px) - 13vw));
            transform: translateX(calc(100vw - min(13.6111111111vw, 196px) - 100% + min(3.125vw, 45px) - 13vw));
  }
}
.home .fv .fv-ttl-view .fv-ttl-view-content.nth-3 img {
  -webkit-transform: translateY(calc(100% + 3px));
          transform: translateY(calc(100% + 3px));
}
.home .fv .fv-ttl-view.is--mix-blend-mode {
  mix-blend-mode: overlay;
}
.home .fv .fv-img-view {
  width: 100%;
  height: calc(100% - 20vw);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  z-index: 1;
}
@media (min-width: 1024px) {
  .home .fv .fv-img-view {
    height: calc(100% - min(6.8055555556vw, 98px));
  }
}
.home .fv .fv-img-view.is--hidden {
  opacity: 0;
}
.home .fv .fv-img-view .fv-img-view-inner {
  width: 0;
  height: 0;
  -webkit-transition: width 0.9s ease, height 0.9s ease;
  transition: width 0.9s ease, height 0.9s ease;
}
.home .fv .fv-img-view picture {
  display: block;
  width: 100%;
  height: 100%;
}
.home .fv .fv-img-view img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home .fv .fv-img-view.is--view .fv-img-view-inner {
  width: calc(100% - 25vw);
  height: calc(100% - 25vw);
}
@media (min-width: 1024px) {
  .home .fv .fv-img-view.is--view .fv-img-view-inner {
    width: calc(100% - 15vmin);
    height: calc(100% - 15vmin);
  }
}
.home .fv .fv-img-view.is--done .fv-img-view-inner {
  -webkit-transition: width 0.7s cubic-bezier(1, 0.18, 0.33, 0.97), height 0.7s cubic-bezier(1, 0.18, 0.33, 0.97);
  transition: width 0.7s cubic-bezier(1, 0.18, 0.33, 0.97), height 0.7s cubic-bezier(1, 0.18, 0.33, 0.97);
  width: 100%;
  height: 100%;
}
.home .fv .fv-overlaymask-view {
  content: "";
  background: var(--black);
  display: block;
  width: 100%;
  height: calc(100% - 20vw);
  opacity: 0.3;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.3;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  z-index: 2;
}
@media (min-width: 1024px) {
  .home .fv .fv-overlaymask-view {
    height: calc(100% - min(6.8055555556vw, 98px));
  }
}
.home .fv .fv-line-view {
  position: absolute;
  width: 40.9333333333vw;
  bottom: 48vw;
  left: 9.0666666667vw;
  z-index: 3;
}
@media (min-width: 1024px) {
  .home .fv .fv-line-view {
    width: 257px;
    bottom: calc(min(6.8055555556vw, 98px) + 10.9791666667vmin + 4vh + (11.0868055556vmin - 58px) / 2);
    left: calc(100% - 257px - 21px - 27.0173611111vmin + min(3.125vw, 45px) - 5.0590277778vmin);
  }
}
.home .fv .fv-line-view.is--view .step-line {
  -webkit-animation: draw-reverse 5s ease-out forwards;
          animation: draw-reverse 5s ease-out forwards;
}
@media (min-width: 1024px) {
  .home .fv .fv-line-view.is--view .step-line {
    -webkit-animation: draw-reverse 3s ease-out forwards;
            animation: draw-reverse 3s ease-out forwards;
  }
}
.home .fv .fv-line-view .step-line {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
}
.home .fv .fv-line-view .fv-line-view-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.home .fv .fv-line-view .fv-line-view-inner .icon-plus {
  left: 40.9333333333vw;
  top: -1.3333333333vw;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 1024px) {
  .home .fv .fv-line-view .fv-line-view-inner .icon-plus {
    left: 257px;
    top: -10px;
  }
}
.home .fv .fv-line-view .fv-line-view-inner .icon-plus.is--view {
  opacity: 1;
}
.home .fv .fv-line-view .fv-line-view-inner .fv-line-view-content {
  display: block;
  position: absolute;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.7s cubic-bezier(1, 0.18, 0.33, 0.97);
  transition: -webkit-transform 0.7s cubic-bezier(1, 0.18, 0.33, 0.97);
  transition: transform 0.7s cubic-bezier(1, 0.18, 0.33, 0.97);
  transition: transform 0.7s cubic-bezier(1, 0.18, 0.33, 0.97), -webkit-transform 0.7s cubic-bezier(1, 0.18, 0.33, 0.97);
}
.home .fv .fv-line-view .fv-line-view-inner .fv-line-view-content.is--view img {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.home .fv .fv-line-view .fv-line-view-inner .fv-line-view-content img {
  display: block;
  width: 100%;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0, 0.4, 0, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0, 0.4, 0, 1);
  transition: transform 0.4s cubic-bezier(0, 0.4, 0, 1);
  transition: transform 0.4s cubic-bezier(0, 0.4, 0, 1), -webkit-transform 0.4s cubic-bezier(0, 0.4, 0, 1);
  -webkit-transform: translateY(calc(100% + 3px));
          transform: translateY(calc(100% + 3px));
}
.home .fv .fv-line-view .fv-line-view-inner .fv-line-view-content.nth-1 {
  width: 9.3333333333vw;
  top: 2.6666666667vw;
  left: 0;
}
@media (min-width: 1024px) {
  .home .fv .fv-line-view .fv-line-view-inner .fv-line-view-content.nth-1 {
    width: 58px;
    top: 16px;
  }
}
.home .fv .fv-line-view .fv-line-view-inner .fv-line-view-content.nth-2 {
  width: 8.5333333333vw;
  top: 0;
  left: 14.1333333333vw;
}
@media (min-width: 1024px) {
  .home .fv .fv-line-view .fv-line-view-inner .fv-line-view-content.nth-2 {
    width: 54px;
    left: 88px;
  }
}
.home .fv .fv-line-view .fv-line-view-inner .fv-line-view-content.nth-3 {
  width: 11.4666666667vw;
  top: -2.6666666667vw;
  left: 28vw;
}
@media (min-width: 1024px) {
  .home .fv .fv-line-view .fv-line-view-inner .fv-line-view-content.nth-3 {
    width: 72px;
    top: -17px;
    left: 176px;
  }
}
.home .fv .fv-video-view {
  width: 100%;
  height: 100%;
  position: relative;
}
.home .fv .fv-video-view .fv-video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  opacity: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  position: relative;
}
.home .fv .fv-video-view.is--play .fv-video {
  opacity: 1;
}
.home .fv .icon-plus-fv-01 {
  bottom: calc(20vw - 6px);
}
@media (min-width: 1024px) {
  .home .fv .icon-plus-fv-01 {
    bottom: calc(min(6.8055555556vw, 98px) - 11px);
  }
}
.home .fv .line-grow-fv-01 {
  left: -1px;
  top: calc(100% - 20vw);
}
@media (min-width: 1024px) {
  .home .fv .line-grow-fv-01 {
    display: none;
  }
}
.home .fv .line-grow-fv-01.is--grow {
  height: 40vw;
}
.home .fv .line-grow-fv-02 {
  width: 0;
  right: 100%;
  bottom: calc(20vw - 1px);
}
@media (min-width: 1024px) {
  .home .fv .line-grow-fv-02 {
    bottom: calc(min(6.8055555556vw, 98px) - 1px);
  }
}
.home .fv .line-grow-fv-02.is--grow {
  width: 10vw;
}
@media (min-width: 1024px) {
  .home .fv .line-grow-fv-02.is--grow {
    width: min(6.8055555556vw, 98px);
  }
}
.home .fv .line-grow-fv-03 {
  left: -1px;
  bottom: 20vw;
}
@media (min-width: 1024px) {
  .home .fv .line-grow-fv-03 {
    bottom: min(6.8055555556vw, 98px);
  }
}
.home .fv .line-grow-fv-03.is--grow {
  height: calc(100% - 20vw);
}
@media (min-width: 1024px) {
  .home .fv .line-grow-fv-03.is--grow {
    height: calc(100% - min(6.8055555556vw, 98px));
  }
}
.home .fv .line-grow-fv-04 {
  left: 0;
  bottom: calc(20vw - 1px);
}
@media (min-width: 1024px) {
  .home .fv .line-grow-fv-04 {
    bottom: calc(min(6.8055555556vw, 98px) - 1px);
  }
}
.home .fv .line-grow-fv-04.is--grow {
  width: calc(100% + 10vw);
}
@media (min-width: 1024px) {
  .home .fv .line-grow-fv-04.is--grow {
    width: calc(100% + min(6.8055555556vw, 98px));
  }
}
.home .fv .line-grow-fv-05 {
  right: -1px;
  top: 0;
}
.home .fv .line-grow-fv-05.is--grow {
  height: calc(100% + 20vw);
}
@media (min-width: 1024px) {
  .home .fv .line-grow-fv-05.is--grow {
    height: calc(100% - min(6.8055555556vw, 98px));
  }
}
.home .fv .scroll-layout {
  position: absolute;
  bottom: -20vw;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 40vw;
}
@media (min-width: 1024px) {
  .home .fv .scroll-layout {
    bottom: max(-15.625vw, -22.5rem);
    height: calc(min(6.8055555556vw, 98px) + min(15.625vw, 22.5rem));
  }
}
.home .fv .scroll-layout .btn {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1.8666666667vw;
  height: 30px;
  line-height: 30px;
  padding: 0 10px;
  margin-top: calc(10vw - 15px);
}
@media (min-width: 1024px) {
  .home .fv .scroll-layout .btn {
    font-size: 0.8333333333vw;
    margin-top: min(3.4027777778vw - 15px, 34px);
  }
}
.home .fv .scroll-layout .scroll-line {
  width: 1px;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.home .fv .scroll-layout .scroll-line:before {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--pri-gray);
  -webkit-animation: scrollLineDown 2s linear infinite;
          animation: scrollLineDown 2s linear infinite;
}
.home .fv .naname {
  width: 26.6666666667vw;
  height: 26.6666666667vw;
  background: var(--pri);
  border: solid 1px var(--pri-gray);
  position: fixed;
  bottom: 3.3333333333vw;
  right: 3.3333333333vw;
  z-index: 3;
  border-radius: 100%;
  overflow: hidden;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: -webkit-transform 0.7s cubic-bezier(1, 0.18, 0.33, 0.97);
  transition: -webkit-transform 0.7s cubic-bezier(1, 0.18, 0.33, 0.97);
  transition: transform 0.7s cubic-bezier(1, 0.18, 0.33, 0.97);
  transition: transform 0.7s cubic-bezier(1, 0.18, 0.33, 0.97), -webkit-transform 0.7s cubic-bezier(1, 0.18, 0.33, 0.97);
}
@media (min-width: 1024px) {
  .home .fv .naname {
    width: min(11.1111111111vw, 16rem);
    height: min(11.1111111111vw, 16rem);
    bottom: min(2.3611111111vw, 3.4rem);
    right: min(2.3611111111vw, 3.4rem);
  }
}
.home .fv .naname .inner {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.home .fv .naname .naname-logo {
  position: absolute;
  top: 0;
  left: 0;
}
.home .fv .naname .naname-logo.is--anime {
  -webkit-animation: nanameLogo 8s ease-in-out infinite;
          animation: nanameLogo 8s ease-in-out infinite;
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
.home .fv .naname .naname-text {
  position: absolute;
  top: 0;
  left: 0;
}
.home .fv .naname .naname-text.is--anime {
  -webkit-animation: rotateInfinitely 20s linear infinite;
          animation: rotateInfinitely 20s linear infinite;
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
.home .fv .naname.is--view {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.home .aboutus {
  margin-top: 20vw;
  width: 100%;
  aspect-ratio: 750/1334;
  position: relative;
  padding-top: 15.7333333333vw;
}
@media (min-width: 1024px) {
  .home .aboutus {
    margin-top: min(15.625vw, 22.5rem);
    aspect-ratio: 1440/900;
    padding-top: 8.3333333333vw;
  }
}
.home .aboutus .inner-layout {
  position: relative;
  z-index: 2;
}
@media (min-width: 1024px) {
  .home .aboutus .inner-layout {
    width: calc(100% - 120px);
    margin-inline: auto;
  }
}
.home .aboutus .ttl {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 3.4666666667vw;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1;
  margin-top: 0.38em;
}
@media (min-width: 1024px) {
  .home .aboutus .ttl {
    font-size: 1.6666666667vw;
    text-align: left;
  }
}
.home .aboutus .collayout {
  text-align: center;
}
@media (min-width: 1024px) {
  .home .aboutus .collayout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: left;
  }
}
@media (min-width: 1024px) {
  .home .aboutus .col-jp {
    width: 50%;
  }
}
.home .aboutus .col-jp .ttlmiddle {
  font-weight: 700;
  font-size: 5.6vw;
  letter-spacing: 0.1em;
  line-height: 1.666;
  margin-top: 1.15em;
  margin-bottom: 1.15em;
}
@media (min-width: 1024px) {
  .home .aboutus .col-jp .ttlmiddle {
    font-size: 1.7361111111vw;
    line-height: 2;
  }
}
.home .aboutus .col-jp .text {
  font-weight: 500;
  font-size: 3.7333333333vw;
  letter-spacing: 0;
  line-height: 1.928;
  margin-bottom: 1.725em;
}
@media (min-width: 1024px) {
  .home .aboutus .col-jp .text {
    font-size: 1.25vw;
    line-height: 2.444;
  }
}
.home .aboutus .col-jp .text em {
  font-weight: 700;
}
@media (min-width: 1024px) {
  .home .aboutus .col-en {
    width: 50%;
  }
}
.home .aboutus .col-en .text {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-weight: 300;
  font-size: 2.6666666667vw;
  letter-spacing: 0.06em;
  line-height: 2.05;
}
@media (min-width: 1024px) {
  .home .aboutus .col-en .text {
    font-size: 1.0416666667vw;
    margin-top: 2em;
    margin-left: 3.2em;
    line-height: 2.266;
  }
}
.home .aboutus .col-en .text em {
  font-weight: 700;
}
.home .aboutus .aboutus-bg-wrap .bg {
  background-image: url(../img/page/home/aboutus-bg--sp.jpg);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .home .aboutus .aboutus-bg-wrap .bg {
    background-image: url(../img/page/home/aboutus-bg--sp@2x.jpg);
  }
}
@media (min-width: 1024px) {
  .home .aboutus .aboutus-bg-wrap .bg {
    background-image: url(../img/page/home/aboutus-bg--pc.jpg);
  }
}
@media only screen and (min-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) and (min-width: 1024px), only screen and (min-width: 1024px) and (min-device-pixel-ratio: 2) and (min-width: 1024px), only screen and (min-width: 1024px) and (min-resolution: 192dpi) and (min-width: 1024px), only screen and (min-width: 1024px) and (min-resolution: 2dppx) and (min-width: 1024px) {
  .home .aboutus .aboutus-bg-wrap .bg {
    background-image: url(../img/page/home/aboutus-bg--pc@2x.jpg);
  }
}
.home .aboutus .line-grow-aboutus-01 {
  left: 50%;
  top: 0;
}
.home .aboutus .line-grow-aboutus-01.is--grow {
  width: 50vw;
}
.home .aboutus .line-grow-aboutus-02 {
  right: 50%;
  top: 0;
}
.home .aboutus .line-grow-aboutus-02.is--grow {
  width: 50vw;
}
.home .aboutus .line-grow-aboutus-03 {
  left: calc(50% - 1px);
  top: 0;
}
.home .aboutus .line-grow-aboutus-03.is--grow {
  height: 15.7333333333vw;
}
@media (min-width: 1024px) {
  .home .aboutus .line-grow-aboutus-03.is--grow {
    height: 100%;
  }
}
.home .aboutus .line-grow-aboutus-04 {
  left: 50%;
  bottom: 0;
}
.home .aboutus .line-grow-aboutus-04.is--grow {
  width: 50vw;
}
.home .aboutus .line-grow-aboutus-05 {
  right: 50%;
  bottom: 0;
}
.home .aboutus .line-grow-aboutus-05.is--grow {
  width: 50vw;
}
.home .aboutus .line-grow-aboutus-06 {
  left: calc(50% - 1px);
  top: 177.8666666667vw;
}
@media (min-width: 1024px) {
  .home .aboutus .line-grow-aboutus-06 {
    top: 62.5vw;
  }
}
.home .aboutus .line-grow-aboutus-06.is--grow {
  height: 40vw;
}
@media (min-width: 1024px) {
  .home .aboutus .line-grow-aboutus-06.is--grow {
    height: calc(10.2571111111vw - 1px);
  }
}
.home .service {
  margin-top: calc(33.9333333333vw - 1px);
}
@media (min-width: 1024px) {
  .home .service {
    margin-top: calc(11.6011111111vw - 1px);
  }
}
.home .service .ttlsec {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 3.4666666667vw;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-top: 0.38em;
  margin-left: 2.9333333333vw;
  margin-bottom: 0.75em;
}
@media (min-width: 1024px) {
  .home .service .ttlsec {
    text-align: center;
    font-size: 1.6666666667vw;
    margin-top: 0.42em;
    margin-bottom: 1.8em;
    margin-left: 0;
    margin-inline: auto;
  }
}
.home .service .service01 {
  position: relative;
  padding-top: 8vw;
  aspect-ratio: 750/1228;
}
@media (min-width: 1024px) {
  .home .service .service01 {
    padding-top: 7.2916666667vw;
    aspect-ratio: 1440/900;
  }
}
.home .service .service01 .ttl__layout {
  position: relative;
  z-index: 2;
  margin-left: 2.9333333333vw;
}
@media (min-width: 1024px) {
  .home .service .service01 .ttl__layout {
    margin-left: 5.5555555556vw;
  }
}
.home .service .service01 .textlayout {
  position: relative;
  z-index: 2;
  width: 85.333%;
  margin-inline: auto;
  margin-top: 20.5333333333vw;
}
@media (min-width: 1024px) {
  .home .service .service01 .textlayout {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 6.8055555556vw;
    margin-inline: initial;
    margin-left: 38.3333333333vw;
  }
}
.home .service .service01 .textlayout .jp {
  font-weight: 500;
  font-size: 3.7333333333vw;
  letter-spacing: -0.02em;
  line-height: 1.964;
  margin-bottom: 1em;
}
@media (min-width: 1024px) {
  .home .service .service01 .textlayout .jp {
    font-size: 1.1111111111vw;
    line-height: 2.375;
  }
}
.home .service .service01 .textlayout .jp br {
  display: none;
}
@media (min-width: 1024px) {
  .home .service .service01 .textlayout .jp br {
    display: initial;
  }
}
.home .service .service01 .textlayout .en {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-weight: 300;
  font-size: 2.6666666667vw;
  letter-spacing: -0.005em;
  line-height: 2.05;
  text-align: justify;
}
@media (min-width: 1024px) {
  .home .service .service01 .textlayout .en {
    font-size: 0.9722222222vw;
    line-height: 2;
    opacity: 0.7;
  }
}
.home .service .service01 .textlayout .en br {
  display: none;
}
@media (min-width: 1024px) {
  .home .service .service01 .textlayout .en br {
    display: initial;
  }
}
.home .service .service01 .btn__normal {
  margin-top: 8.5333333333vw;
  margin-inline: auto;
}
@media (min-width: 1024px) {
  .home .service .service01 .btn__normal {
    margin-top: 4.0277777778vw;
    margin-inline: initial;
  }
}
.home .service .service01 .bglayout {
  width: 50vw;
  aspect-ratio: 373/788;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media (min-width: 1024px) {
  .home .service .service01 .bglayout {
    width: 33.333%;
    aspect-ratio: 480/900;
  }
}
.home .service .service01 .service01-bg-wrap {
  width: 100%;
  height: 100%;
}
.home .service .service01 .service01-bg-wrap .bg {
  background-image: url(../img/page/home/service01-bg--sp.jpg);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .home .service .service01 .service01-bg-wrap .bg {
    background-image: url(../img/page/home/service01-bg--sp@2x.jpg);
  }
}
@media (min-width: 1024px) {
  .home .service .service01 .service01-bg-wrap .bg {
    background-image: url(../img/page/home/service01-bg--pc.jpg);
  }
}
@media only screen and (min-width: 1024px) and (-webkit-min-device-pixel-ratio: 2), only screen and (min-width: 1024px) and (min-device-pixel-ratio: 2), only screen and (min-width: 1024px) and (min-resolution: 192dpi), only screen and (min-width: 1024px) and (min-resolution: 2dppx) {
  .home .service .service01 .service01-bg-wrap .bg {
    background-image: url(../img/page/home/service01-bg--pc@2x.jpg);
  }
}
@media (min-width: 1024px) {
  .home .service .service01 .icon-plus-service01-01 {
    left: calc(33.333% - 11px);
  }
}
@media (min-width: 1024px) {
  .home .service .service01 .icon-plus-service01-02 {
    left: calc(33.333% - 11px);
  }
}
.home .service .service01 .line-grow-service01-01 {
  left: 50%;
  top: 0;
}
.home .service .service01 .line-grow-service01-01.is--grow {
  width: 50vw;
}
.home .service .service01 .line-grow-service01-02 {
  right: 50%;
  top: 0;
}
.home .service .service01 .line-grow-service01-02.is--grow {
  width: 50vw;
}
@media (min-width: 1024px) {
  .home .service .service01 .line-grow-service01-03 {
    left: 33.333%;
    bottom: 0;
  }
}
@media (min-width: 1024px) {
  .home .service .service01 .line-grow-service01-03.is--grow {
    height: 50%;
  }
}
@media (min-width: 1024px) {
  .home .service .service01 .line-grow-service01-04 {
    left: 33.333%;
    top: 0;
  }
}
@media (min-width: 1024px) {
  .home .service .service01 .line-grow-service01-04.is--grow {
    height: 50%;
  }
}
.home .service .service02 {
  position: relative;
  padding-top: 8vw;
  aspect-ratio: 750/1334;
}
@media (min-width: 1024px) {
  .home .service .service02 {
    padding-top: 7.2916666667vw;
    aspect-ratio: 1440/900;
  }
}
.home .service .service02 .ttl__layout {
  position: relative;
  z-index: 2;
  margin-left: auto;
  margin-right: 2.9333333333vw;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 1024px) {
  .home .service .service02 .ttl__layout {
    margin-right: 4.7222222222vw;
  }
}
.home .service .service02 .bglayout {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.home .service .service02 .service02-bg-wrap {
  width: 100%;
  height: 100%;
}
.home .service .service02 .service02-bg-wrap .bg {
  background-image: url(../img/page/home/service02-bg--sp.jpg);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .home .service .service02 .service02-bg-wrap .bg {
    background-image: url(../img/page/home/service02-bg--sp@2x.jpg);
  }
}
@media (min-width: 1024px) {
  .home .service .service02 .service02-bg-wrap .bg {
    background-image: url(../img/page/home/service02-bg--pc.jpg);
  }
}
@media only screen and (min-width: 1024px) and (-webkit-min-device-pixel-ratio: 2), only screen and (min-width: 1024px) and (min-device-pixel-ratio: 2), only screen and (min-width: 1024px) and (min-resolution: 192dpi), only screen and (min-width: 1024px) and (min-resolution: 2dppx) {
  .home .service .service02 .service02-bg-wrap .bg {
    background-image: url(../img/page/home/service02-bg--pc@2x.jpg);
  }
}
.home .service .service02 .textlayout {
  position: relative;
  z-index: 2;
  width: 85.333%;
  margin-inline: auto;
  margin-top: 20.5333333333vw;
}
@media (min-width: 1024px) {
  .home .service .service02 .textlayout {
    margin-top: 4.4444444444vw;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: initial;
    margin-left: auto;
    margin-right: 10.6944444444vw;
    text-align: right;
  }
}
.home .service .service02 .textlayout .jp {
  font-weight: 500;
  font-size: 3.7333333333vw;
  letter-spacing: -0.02em;
  line-height: 1.964;
  margin-bottom: 1em;
}
@media (min-width: 1024px) {
  .home .service .service02 .textlayout .jp {
    font-size: 1.1111111111vw;
    line-height: 2.375;
  }
}
.home .service .service02 .textlayout .jp br {
  display: none;
}
@media (min-width: 1024px) {
  .home .service .service02 .textlayout .jp br {
    display: initial;
  }
}
.home .service .service02 .textlayout .en {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-weight: 300;
  font-size: 2.6666666667vw;
  letter-spacing: -0.005em;
  line-height: 2.05;
  text-align: justify;
}
@media (min-width: 1024px) {
  .home .service .service02 .textlayout .en {
    font-size: 0.9722222222vw;
    line-height: 2;
    text-align: inherit;
  }
}
.home .service .service02 .textlayout .en br {
  display: none;
}
@media (min-width: 1024px) {
  .home .service .service02 .textlayout .en br {
    display: initial;
  }
}
.home .service .service02 .line-grow-service02-01 {
  left: 50%;
  top: 0;
}
@media (min-width: 1024px) {
  .home .service .service02 .line-grow-service02-01 {
    left: 33.333%;
  }
}
.home .service .service02 .line-grow-service02-01.is--grow {
  width: 50vw;
}
@media (min-width: 1024px) {
  .home .service .service02 .line-grow-service02-01.is--grow {
    width: 66.667%;
  }
}
.home .service .service02 .line-grow-service02-02 {
  right: 50%;
  top: 0;
}
@media (min-width: 1024px) {
  .home .service .service02 .line-grow-service02-02 {
    right: 66.667%;
  }
}
.home .service .service02 .line-grow-service02-02.is--grow {
  width: 50vw;
}
@media (min-width: 1024px) {
  .home .service .service02 .line-grow-service02-02.is--grow {
    width: 33.333%;
  }
}
.home .service .service03 {
  position: relative;
  padding-top: 19.2vw;
  aspect-ratio: 750/1228;
}
@media (min-width: 1024px) {
  .home .service .service03 {
    padding-top: 7.2916666667vw;
    padding-top: 10vw;
    aspect-ratio: 1440/900;
  }
}
.home .service .service03 .ttl__layout {
  position: relative;
  z-index: 2;
  margin-left: 2.9333333333vw;
}
@media (min-width: 1024px) {
  .home .service .service03 .ttl__layout {
    margin-left: 5.5555555556vw;
  }
}
.home .service .service03 .textlayout {
  position: relative;
  z-index: 2;
  width: 85.333%;
  margin-inline: auto;
  margin-top: 20.5333333333vw;
  margin-bottom: 17.8666666667vw;
}
@media (min-width: 1024px) {
  .home .service .service03 .textlayout {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: initial;
    margin-top: 5.9722222222vw;
    margin-bottom: 0;
    margin-left: 11.25vw;
  }
}
.home .service .service03 .textlayout .jp {
  font-weight: 500;
  font-size: 3.7333333333vw;
  letter-spacing: -0.02em;
  line-height: 1.964;
  margin-bottom: 1em;
}
@media (min-width: 1024px) {
  .home .service .service03 .textlayout .jp {
    font-size: 1.1111111111vw;
    line-height: 2.375;
  }
}
.home .service .service03 .textlayout .jp br {
  display: none;
}
@media (min-width: 1024px) {
  .home .service .service03 .textlayout .jp br {
    display: initial;
  }
}
.home .service .service03 .textlayout .en {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-weight: 300;
  font-size: 2.6666666667vw;
  letter-spacing: -0.005em;
  line-height: 2.05;
  text-align: justify;
}
@media (min-width: 1024px) {
  .home .service .service03 .textlayout .en {
    font-size: 0.9722222222vw;
    line-height: 2;
    opacity: 0.7;
  }
}
.home .service .service03 .textlayout .en br {
  display: none;
}
@media (min-width: 1024px) {
  .home .service .service03 .textlayout .en br {
    display: initial;
  }
}
.home .service .service03 .slider-col-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100vw;
  gap: 1.2vw;
  aspect-ratio: 750/600;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .home .service .service03 .slider-col-wrap {
    width: 32vw;
    height: 100%;
    aspect-ratio: initial;
    position: absolute;
    top: 0;
    right: 2.5vw;
    gap: 0.6944444444vw;
  }
}
.home .service .service03 .js--slider.slider-col-left {
  height: 100%;
  width: 60%;
}
@media (min-width: 1024px) {
  .home .service .service03 .js--slider.slider-col-left {
    width: 50%;
  }
}
.home .service .service03 .js--slider.slider-col-right {
  height: 100%;
  width: 40%;
}
@media (min-width: 1024px) {
  .home .service .service03 .js--slider.slider-col-right {
    width: 50%;
  }
}
.home .service .service03 .js--slider ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  list-style: none;
}
.home .service .service03 .js--slider li {
  margin-bottom: 1.2vw;
}
@media (min-width: 1024px) {
  .home .service .service03 .js--slider li {
    margin-bottom: 0.6944444444vw;
  }
}
.home .service .service03 .js--slider img,
.home .service .service03 .js--slider video {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.home .service .service03 .line-grow-service03-01 {
  left: 50%;
  top: 0;
}
.home .service .service03 .line-grow-service03-01.is--grow {
  width: 50vw;
}
.home .service .service03 .line-grow-service03-02 {
  right: 50%;
  top: 0;
}
.home .service .service03 .line-grow-service03-02.is--grow {
  width: 50vw;
}
.home .service .service03 .line-grow-service03-03 {
  left: 50%;
  bottom: 0;
}
.home .service .service03 .line-grow-service03-03.is--grow {
  width: 50vw;
}
.home .service .service03 .line-grow-service03-04 {
  right: 50%;
  bottom: 0;
}
.home .service .service03 .line-grow-service03-04.is--grow {
  width: 50vw;
}
.home .works {
  margin-top: 40vw;
  margin-bottom: 40vw;
  position: relative;
}
@media (min-width: 1024px) {
  .home .works {
    margin-top: 9.375vw;
    margin-bottom: 9.375vw;
  }
}
.home .works .height-layer {
  width: 80vw;
  aspect-ratio: 586/1160;
  position: relative;
  z-index: 1;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
@media (min-width: 1024px) {
  .home .works .height-layer {
    width: 76vw;
    aspect-ratio: 1090/628;
  }
}
.home .works .textlayout {
  width: 100vw;
  position: relative;
  z-index: 2;
}
@media (min-width: 1024px) {
  .home .works .textlayout {
    width: calc(100vw - var(--scrollbar-w));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: -1.25vw;
  }
}
.home .works .textlayout .ttl {
  font-size: 12vw;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
@media (min-width: 1024px) {
  .home .works .textlayout .ttl {
    font-size: 6.25vw;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin: 0 3.4722222222vw 0 2.7777777778vw;
  }
}
.home .works .textlayout .jp {
  text-align: center;
  font-weight: 500;
  font-size: 3.7333333333vw;
  letter-spacing: -0.05em;
  white-space: nowrap;
  line-height: 1.964;
  margin-bottom: 1em;
  margin-top: 0.85em;
  margin-left: 0.5em;
}
@media (min-width: 1024px) {
  .home .works .textlayout .jp {
    font-size: 1.1111111111vw;
    text-align: left;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0;
    line-height: 2.375;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.home .works .textlayout .en {
  text-align: center;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-weight: 300;
  font-size: 2.6666666667vw;
  letter-spacing: -0.005em;
  line-height: 2.05;
}
@media (min-width: 1024px) {
  .home .works .textlayout .en {
    font-size: 0.9722222222vw;
    text-align: left;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    letter-spacing: 0.02em;
  }
}
.home .works .btn__normal {
  margin-top: 9.3333333333vw;
  z-index: 2;
}
@media (min-width: 1024px) {
  .home .works .btn__normal {
    margin-top: 3.1944444444vw;
  }
}
.home .works .bglayout {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.home .works .bglayout.is--view .works-bg-wrap:before {
  opacity: 0;
}
.home .works .bglayout.is--view .works-bg-wrap .bg {
  opacity: 1;
}
.home .works .works-bg-wrap {
  width: 100%;
  height: 100%;
}
.home .works .works-bg-wrap:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--black);
  opacity: 0.3;
  z-index: 1;
  position: relative;
  -webkit-transition: opacity 1.2s cubic-bezier(0.8, 0.32, 0.94, 0.68);
  transition: opacity 1.2s cubic-bezier(0.8, 0.32, 0.94, 0.68);
}
.home .works .works-bg-wrap .bg {
  background-image: url(../img/page/home/works-bg--sp.jpg);
  opacity: 0;
  -webkit-transition: opacity 1.2s cubic-bezier(0.8, 0.32, 0.94, 0.68);
  transition: opacity 1.2s cubic-bezier(0.8, 0.32, 0.94, 0.68);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .home .works .works-bg-wrap .bg {
    background-image: url(../img/page/home/works-bg--sp@2x.jpg);
  }
}
@media (min-width: 1024px) {
  .home .works .works-bg-wrap .bg {
    background-image: url(../img/page/home/works-bg--pc.jpg);
  }
}
@media only screen and (min-width: 1024px) and (-webkit-min-device-pixel-ratio: 2), only screen and (min-width: 1024px) and (min-device-pixel-ratio: 2), only screen and (min-width: 1024px) and (min-resolution: 192dpi), only screen and (min-width: 1024px) and (min-resolution: 2dppx) {
  .home .works .works-bg-wrap .bg {
    background-image: url(../img/page/home/works-bg--pc@2x.jpg);
  }
}
.home .works .line-grow-wrap-topleft-works {
  z-index: 2;
}
.home .works .line-grow-wrap-topleft-works-01 {
  top: 0;
  left: -1px;
}
.home .works .line-grow-wrap-topleft-works-01.is--grow {
  height: 50%;
}
.home .works .line-grow-wrap-topleft-works-02 {
  bottom: 100%;
  left: -1px;
}
.home .works .line-grow-wrap-topleft-works-02.is--grow {
  height: 40vw;
}
@media (min-width: 1024px) {
  .home .works .line-grow-wrap-topleft-works-02.is--grow {
    height: 9.375vw;
  }
}
.home .works .line-grow-wrap-topleft-works-03 {
  top: -1px;
  left: 0;
}
.home .works .line-grow-wrap-topleft-works-03.is--grow {
  width: 50%;
}
.home .works .line-grow-wrap-topleft-works-04 {
  top: -1px;
  right: 100%;
}
.home .works .line-grow-wrap-topleft-works-04.is--grow {
  width: 10vw;
}
@media (min-width: 1024px) {
  .home .works .line-grow-wrap-topleft-works-04.is--grow {
    width: 12vw;
  }
}
.home .works .line-grow-wrap-topright-works {
  z-index: 2;
}
.home .works .line-grow-wrap-topright-works-01 {
  top: 0;
  left: 100%;
}
.home .works .line-grow-wrap-topright-works-01.is--grow {
  height: 50%;
}
.home .works .line-grow-wrap-topright-works-02 {
  bottom: 100%;
  left: 100%;
}
.home .works .line-grow-wrap-topright-works-02.is--grow {
  height: 40vw;
}
@media (min-width: 1024px) {
  .home .works .line-grow-wrap-topright-works-02.is--grow {
    height: 9.375vw;
  }
}
.home .works .line-grow-wrap-topright-works-03 {
  top: -1px;
  left: 100%;
}
.home .works .line-grow-wrap-topright-works-03.is--grow {
  width: 10vw;
}
@media (min-width: 1024px) {
  .home .works .line-grow-wrap-topright-works-03.is--grow {
    width: 12vw;
  }
}
.home .works .line-grow-wrap-topright-works-04 {
  top: -1px;
  right: 0;
}
.home .works .line-grow-wrap-topright-works-04.is--grow {
  width: 50%;
}
.home .works .line-grow-wrap-bottomleft-works {
  z-index: 2;
}
.home .works .line-grow-wrap-bottomleft-works-01 {
  top: 100%;
  left: -1px;
}
.home .works .line-grow-wrap-bottomleft-works-01.is--grow {
  height: 40vw;
}
@media (min-width: 1024px) {
  .home .works .line-grow-wrap-bottomleft-works-01.is--grow {
    height: 9.375vw;
  }
}
.home .works .line-grow-wrap-bottomleft-works-02 {
  bottom: 0;
  left: -1px;
}
.home .works .line-grow-wrap-bottomleft-works-02.is--grow {
  height: 50%;
}
.home .works .line-grow-wrap-bottomleft-works-03 {
  top: 100%;
  left: 0;
}
.home .works .line-grow-wrap-bottomleft-works-03.is--grow {
  width: 50%;
}
.home .works .line-grow-wrap-bottomleft-works-04 {
  top: 100%;
  right: 100%;
}
.home .works .line-grow-wrap-bottomleft-works-04.is--grow {
  width: 10vw;
}
@media (min-width: 1024px) {
  .home .works .line-grow-wrap-bottomleft-works-04.is--grow {
    width: 12vw;
  }
}
.home .works .line-grow-wrap-bottomright-works {
  z-index: 2;
}
.home .works .line-grow-wrap-bottomright-works-01 {
  top: 100%;
  left: 100%;
}
.home .works .line-grow-wrap-bottomright-works-01.is--grow {
  height: 40vw;
}
@media (min-width: 1024px) {
  .home .works .line-grow-wrap-bottomright-works-01.is--grow {
    height: 9.375vw;
  }
}
.home .works .line-grow-wrap-bottomright-works-02 {
  bottom: 0;
  left: 100%;
}
.home .works .line-grow-wrap-bottomright-works-02.is--grow {
  height: 50%;
}
.home .works .line-grow-wrap-bottomright-works-03 {
  top: 100%;
  left: 100%;
}
.home .works .line-grow-wrap-bottomright-works-03.is--grow {
  width: 10vw;
}
@media (min-width: 1024px) {
  .home .works .line-grow-wrap-bottomright-works-03.is--grow {
    width: 12vw;
  }
}
.home .works .line-grow-wrap-bottomright-works-04 {
  top: 100%;
  right: 0;
}
.home .works .line-grow-wrap-bottomright-works-04.is--grow {
  width: 50%;
}
.home .contact {
  position: relative;
  margin-bottom: 24.6666666667vw;
}
@media (min-width: 1024px) {
  .home .contact {
    margin-bottom: 15.9722222222vw;
  }
}
.home .contact .flowbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  position: relative;
  top: 0;
  height: 16.8vw;
  width: 100%;
}
@media (min-width: 1024px) {
  .home .contact .flowbox {
    height: 8.75vw;
  }
}
.home .contact .flowbox img {
  width: 273.0666666667vw;
  aspect-ratio: 2048/126;
  max-width: none;
  will-change: transform;
}
@media (min-width: 1024px) {
  .home .contact .flowbox img {
    width: 142.2222222222vw;
  }
}
.home .contact .flowbox.is--animated img {
  -webkit-animation: flow-left 20s linear infinite;
          animation: flow-left 20s linear infinite;
}
.home .contact .ttl {
  text-align: center;
  font-weight: 500;
  font-size: 3.7333333333vw;
  letter-spacing: -0.05em;
  white-space: nowrap;
  line-height: 1.964;
  margin-bottom: 2.5em;
  margin-top: 24.6666666667vw;
}
@media (min-width: 1024px) {
  .home .contact .ttl {
    font-size: 1.1111111111vw;
    margin-top: 11.9444444444vw;
  }
}
@media (min-width: 1024px) {
  .home .contact .ttl br {
    display: none;
  }
}
.home .contact .btn__normal {
  margin-inline: auto;
}
.home .contact .line-grow-contact-01 {
  left: 50%;
  top: 0;
}
.home .contact .line-grow-contact-01.is--grow {
  width: 50vw;
}
.home .contact .line-grow-contact-02 {
  right: 50%;
  top: 0;
}
.home .contact .line-grow-contact-02.is--grow {
  width: 50vw;
}

.archive .fv__common .fv-bg-wrap .bg {
  background-image: url(../img/page/works/fv--sp.jpg);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .archive .fv__common .fv-bg-wrap .bg {
    background-image: url(../img/page/works/fv--sp@2x.jpg);
  }
}
@media (min-width: 1024px) {
  .archive .fv__common .fv-bg-wrap .bg {
    background-image: url(../img/page/works/fv--pc.jpg);
  }
}
@media only screen and (min-width: 1024px) and (-webkit-min-device-pixel-ratio: 2), only screen and (min-width: 1024px) and (min-device-pixel-ratio: 2), only screen and (min-width: 1024px) and (min-resolution: 192dpi), only screen and (min-width: 1024px) and (min-resolution: 2dppx) {
  .archive .fv__common .fv-bg-wrap .bg {
    background-image: url(../img/page/works/fv--pc@2x.jpg);
  }
}
.archive .local-nav {
  width: 100%;
  margin-inline: auto;
  padding-top: 8.2666666667vw;
  padding-bottom: 6.9333333333vw;
  padding-left: 5.0666666667vw;
  padding-right: 5.0666666667vw;
}
@media (min-width: 1024px) {
  .archive .local-nav {
    width: calc(100% - min(6.8055555556vw, 98px) * 2);
    padding: min(6.6666666667vw, 9.6rem) 0;
  }
}
.archive .local-nav .filter-list {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 3.4666666667vw;
  gap: 0.385em;
}
@media (min-width: 1024px) {
  .archive .local-nav .filter-list {
    width: min(63.0555555556vw, 90.8rem);
    font-size: min(1.1111111111vw, 1.6rem);
    gap: 1em;
    margin-inline: auto;
  }
}
.archive .local-nav li {
  width: calc(50% - 0.1925em);
}
@media (min-width: 1024px) {
  .archive .local-nav li {
    width: calc(25% - 0.75em);
  }
}
.archive .local-nav li a {
  color: var(--pri-gray);
  border: solid 1px var(--pri-gray);
  border-radius: 100px;
  padding: 0.4em 0 0.55em;
  text-align: center;
  width: 100%;
  display: block;
}
.archive .local-nav li a.is--active {
  color: var(--white);
  border: solid 1px var(--white);
}
@media (min-width: 1024px) {
  .archive .local-nav .line-grow-local-nav-01 {
    left: -1px;
    top: 0;
  }
}
@media (min-width: 1024px) {
  .archive .local-nav .line-grow-local-nav-01.is--grow {
    height: 50%;
  }
}
@media (min-width: 1024px) {
  .archive .local-nav .line-grow-local-nav-02 {
    left: -1px;
    bottom: 0;
  }
}
@media (min-width: 1024px) {
  .archive .local-nav .line-grow-local-nav-02.is--grow {
    height: 50%;
  }
}
@media (min-width: 1024px) {
  .archive .local-nav .line-grow-local-nav-03 {
    left: 0;
    bottom: -1px;
  }
}
@media (min-width: 1024px) {
  .archive .local-nav .line-grow-local-nav-03.is--grow {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .archive .local-nav .line-grow-local-nav-04 {
    right: 100%;
    bottom: -1px;
  }
}
@media (min-width: 1024px) {
  .archive .local-nav .line-grow-local-nav-04.is--grow {
    width: min(6.8055555556vw, 98px);
  }
}
@media (min-width: 1024px) {
  .archive .local-nav .line-grow-local-nav-05 {
    left: 100%;
    top: 0;
  }
}
@media (min-width: 1024px) {
  .archive .local-nav .line-grow-local-nav-05.is--grow {
    height: 50%;
  }
}
@media (min-width: 1024px) {
  .archive .local-nav .line-grow-local-nav-06 {
    left: 100%;
    bottom: 0;
  }
}
@media (min-width: 1024px) {
  .archive .local-nav .line-grow-local-nav-06.is--grow {
    height: 50%;
  }
}
@media (min-width: 1024px) {
  .archive .local-nav .line-grow-local-nav-07 {
    right: 0;
    bottom: -1px;
  }
}
@media (min-width: 1024px) {
  .archive .local-nav .line-grow-local-nav-07.is--grow {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .archive .local-nav .line-grow-local-nav-08 {
    left: 100%;
    bottom: -1px;
  }
}
@media (min-width: 1024px) {
  .archive .local-nav .line-grow-local-nav-08.is--grow {
    width: min(6.8055555556vw, 98px);
  }
}
.archive .card-list {
  width: 100%;
}
.archive .card-list .inner-layout {
  width: calc(100% - 10.1333333333vw + 22px);
  margin-inline: auto;
  position: relative;
}
@media (min-width: 1024px) {
  .archive .card-list .inner-layout {
    width: calc(100% - min(6.8055555556vw, 98px) * 2);
    padding: min(4.4444444444vw, 6.4rem);
  }
}
.archive .card-list .p-main-container {
  width: 100%;
  min-height: 100vh;
}
.archive .card-list .p-main-container .line-grow-p-main-container-01 {
  left: -1px;
  top: 0;
}
.archive .card-list .p-main-container .line-grow-p-main-container-01.is--grow {
  height: 100%;
}
.archive .card-list .p-main-container .line-grow-p-main-container-02 {
  left: 100%;
  top: 0;
}
.archive .card-list .p-main-container .line-grow-p-main-container-02.is--grow {
  height: 100%;
}
.archive .card-list .p-cards-render {
  position: relative;
  width: min(100%, 128rem);
  margin-inline: auto;
}
.archive .card-list .p-cards-render .c-card-container {
  position: absolute;
  width: 50%;
  display: block;
  padding: 0 11px;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .archive .card-list .p-cards-render .c-card-container {
    padding: 0 20px;
  }
}
.archive .card-list .p-cards-render .c-card-container:hover .tmb-layout .tmb {
  opacity: 0.6;
}
.archive .card-list .p-cards-render .c-card-container.is--view .inner {
  opacity: 1;
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
}
.archive .card-list .p-cards-render .c-card-container .inner {
  -webkit-transform: translateY(10px) scale(0.95);
          transform: translateY(10px) scale(0.95);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
  opacity: 0;
}
.archive .card-list .p-cards-render .c-card-container .tmb-layout {
  width: 100%;
  height: 100%;
}
.archive .card-list .p-cards-render .c-card-container .tmb-layout .tmb {
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}
.archive .card-list .p-cards-render .c-card-container .tmb-layout .cat {
  font-size: 2.6666666667vw;
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  border-radius: 100px;
  border: solid 1px var(--pri-gray);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.35em 2em;
  margin: 1em 0 0.75em;
}
@media (min-width: 1024px) {
  .archive .card-list .p-cards-render .c-card-container .tmb-layout .cat {
    font-size: min(0.8333333333vw, 1.2rem);
  }
}
.archive .card-list .p-cards-render .c-card-container .tmb-layout .client {
  font-size: 2.9333333333vw;
  color: var(--pri-gray);
  line-height: 1.35;
  letter-spacing: -0.05em;
  margin-bottom: 0.35em;
}
@media (min-width: 1024px) {
  .archive .card-list .p-cards-render .c-card-container .tmb-layout .client {
    font-size: min(1.1111111111vw, 1.6rem);
  }
}
.archive .card-list .p-cards-render .c-card-container .tmb-layout .ttl {
  font-size: 3.4666666667vw;
  line-height: 1.4;
  letter-spacing: -0.05em;
  font-weight: 400;
}
@media (min-width: 1024px) {
  .archive .card-list .p-cards-render .c-card-container .tmb-layout .ttl {
    font-size: min(1.25vw, 1.8rem);
  }
}
.archive .card-list .p-cards-render .c-card-container .modal-layout {
  display: none;
}
.archive .modal-backdrop {
  position: fixed;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 999;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.archive .modal-backdrop.is--open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.archive .modal-backdrop .modal-content {
  width: 100%;
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 0 40px;
}
.archive .modal-backdrop .modal-close-wrap {
  margin-inline: auto;
}
.archive .modal-backdrop .modal-close {
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  margin-left: auto;
  display: block;
  z-index: 1;
  margin-bottom: 5px;
  overflow: hidden;
}
.archive .modal-backdrop .modal-close::before, .archive .modal-backdrop .modal-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 1px;
  background-color: var(--white);
  -webkit-transform-origin: center;
          transform-origin: center;
}
@media (min-width: 1024px) {
  .archive .modal-backdrop .modal-close::before, .archive .modal-backdrop .modal-close::after {
    width: 36px;
  }
}
.archive .modal-backdrop .modal-close::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.archive .modal-backdrop .modal-close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}
.archive .modal-backdrop .add-modal-content {
  max-height: 75dvh;
}
.archive .modal-backdrop .modal-youtube {
  max-height: 60vh;
  margin-inline: auto;
}
.archive .modal-backdrop .modal-youtube iframe {
  display: block;
  height: 100% !important;
}
.archive .modal-backdrop .modal-info {
  margin-inline: auto;
}
.archive .modal-backdrop .modal-info .cat {
  font-size: min(2.6666666667vw, 12px);
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  border-radius: 100px;
  border: solid 1px var(--pri-gray);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.35em 2em;
  margin: 1em 0 0.75em;
}
@media (min-width: 1024px) {
  .archive .modal-backdrop .modal-info .cat {
    font-size: min(0.8333333333vw, 12px);
  }
}
.archive .modal-backdrop .modal-info .client {
  font-size: min(2.9333333333vw, 13.2px);
  color: var(--pri-gray);
  line-height: 1.2;
  letter-spacing: -0.05em;
  margin-bottom: 0.35em;
}
@media (min-width: 1024px) {
  .archive .modal-backdrop .modal-info .client {
    font-size: min(1.1111111111vw, 16px);
  }
}
.archive .modal-backdrop .modal-info .ttl {
  font-size: min(3.4666666667vw, 15.6px);
  line-height: 1.4;
  letter-spacing: -0.05em;
  font-weight: 400;
}
@media (min-width: 1024px) {
  .archive .modal-backdrop .modal-info .ttl {
    font-size: min(1.25vw, 18px);
  }
}
.archive .modal-backdrop .modal-bg {
  background: rgba(0, 48, 55, 0.95);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.archive .gallery-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.archive .gallery-slide {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.archive .gallery-slide:hover {
  cursor: -webkit-grab;
  cursor: grab;
}
.archive .gallery-slide.is--active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.archive .gallery-slide img {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-height: min(50vh, 500px);
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 1024px) {
  .archive .gallery-slide img {
    max-height: calc(100vh - 30px - 5px - min(1.1111111111vw, 16px) - 100px - 160px);
    max-width: calc(100vw - 220px);
  }
}
.archive .gallery-prev,
.archive .gallery-next {
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
  position: relative;
}
.archive .gallery-prev::before,
.archive .gallery-next::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border-top: 1px solid var(--white);
  border-right: 1px solid var(--white);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin: auto;
}
.archive .gallery-prev {
  position: absolute;
  top: 50%;
  left: -30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (min-width: 1024px) {
  .archive .gallery-prev {
    left: 0;
  }
}
.archive .gallery-prev::before {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.archive .gallery-next {
  position: absolute;
  top: 50%;
  right: -30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (min-width: 1024px) {
  .archive .gallery-next {
    right: 0;
  }
}
.archive .gallery-next::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.archive .gallery-pagination {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: min(2.6666666667vw, 12px);
  margin-top: 0.75em;
  text-align: right;
  margin-inline: auto;
}
@media (min-width: 1024px) {
  .archive .gallery-pagination {
    font-size: min(1.1111111111vw, 16px);
  }
}
.archive .btn-viewmore-wrap {
  width: 100vw;
  background: var(--pri);
  padding-top: 10.1333333333vw;
  padding-bottom: 29.3333333333vw;
  position: absolute;
  bottom: 0;
  left: calc((-10.1333333333vw + 22px) / 2);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
@media (min-width: 1024px) {
  .archive .btn-viewmore-wrap {
    padding-top: min(5.9027777778vw, 8.5rem);
    padding-bottom: min(17.9166666667vw, 25.8rem);
  }
}
.archive .btn-viewmore-wrap .btn__normal {
  margin-inline: auto;
}
.archive .btn-viewmore-wrap.is--active {
  opacity: 1;
  pointer-events: auto;
}
.archive .btn-viewmore-wrap .line-grow-viewmore-wrap {
  left: 0;
  top: 0;
}
.archive .btn-viewmore-wrap .line-grow-viewmore-wrap.is--grow {
  width: 100%;
}

.bodyclass__creative .fv__common .fv-bg-wrap {
  width: 100%;
  height: 100%;
}
.bodyclass__creative .fv__common .fv-bg-wrap .bg {
  background-image: url(../img/page/creative/fv--sp.jpg);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .bodyclass__creative .fv__common .fv-bg-wrap .bg {
    background-image: url(../img/page/creative/fv--sp@2x.jpg);
  }
}
@media (min-width: 1024px) {
  .bodyclass__creative .fv__common .fv-bg-wrap .bg {
    background-image: url(../img/page/creative/fv--pc.jpg);
  }
}
@media only screen and (min-width: 1024px) and (-webkit-min-device-pixel-ratio: 2), only screen and (min-width: 1024px) and (min-device-pixel-ratio: 2), only screen and (min-width: 1024px) and (min-resolution: 192dpi), only screen and (min-width: 1024px) and (min-resolution: 2dppx) {
  .bodyclass__creative .fv__common .fv-bg-wrap .bg {
    background-image: url(../img/page/creative/fv--pc@2x.jpg);
  }
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec01 {
    width: calc(100% - min(6.8055555556vw, 98px) * 2);
    margin-inline: auto;
  }
}
.bodyclass__creative .sec01 .inner-layout {
  padding-top: 8.6666666667vw;
  padding-bottom: 36vw;
  width: calc(100% - 5.0666666667vw);
  margin-left: auto;
  position: relative;
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec01 .inner-layout {
    padding-top: min(6.8055555556vw, 9.8rem);
    padding-bottom: min(15.9722222222vw, 23rem);
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec01 .collayout {
    width: min(70.8333333333vw, 109rem);
    margin-inline: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.bodyclass__creative .sec01 .ttl {
  font-size: 10.2666666667vw;
  line-height: 1.06;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.01em;
  text-align: center;
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec01 .ttl {
    font-size: min(4.4444444444vw, 6.4rem);
    text-align: left;
  }
}
.bodyclass__creative .sec01 .textlayout {
  position: relative;
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec01 .textlayout {
    margin-top: min(5.9722222222vw, 8.6rem);
  }
}
.bodyclass__creative .sec01 .ttlmiddle {
  font-size: 5.3333333333vw;
  text-align: center;
  line-height: 1.75;
  margin-bottom: 0.75em;
  margin-top: 25.0666666667vw;
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec01 .ttlmiddle {
    font-size: min(2.2222222222vw, 3.2rem);
    margin-top: 0;
    text-align: left;
  }
}
.bodyclass__creative .sec01 .text {
  font-size: 3.7333333333vw;
  text-align: center;
  line-height: 1.928;
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec01 .text {
    font-size: min(1.25vw, 1.8rem);
    line-height: 2.444;
    text-align: left;
  }
}
.bodyclass__creative .sec01 .line-grow-sec01-ttl {
  left: 50%;
  top: -20.8vw;
  width: 1px;
  height: 0;
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec01 .line-grow-sec01-ttl {
    top: min(2.0833333333vw, 3rem);
    width: 0;
    height: 1px;
    left: max(-18.75vw, -27rem);
  }
}
.bodyclass__creative .sec01 .line-grow-sec01-ttl.is--grow {
  height: 18.2666666667vw;
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec01 .line-grow-sec01-ttl.is--grow {
    height: 1px;
    width: min(14.7222222222vw, 21.2rem);
  }
}
.bodyclass__creative .sec01 .line-grow-sec01-01 {
  left: -1px;
  top: 0;
}
.bodyclass__creative .sec01 .line-grow-sec01-01.is--grow {
  height: 100%;
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec01 .line-grow-sec01-01.is--grow {
    height: 50%;
  }
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec01 .line-grow-sec01-02 {
    left: 100%;
    top: 0;
  }
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec01 .line-grow-sec01-02.is--grow {
    height: 50%;
  }
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec01 .line-grow-sec01-03 {
    left: -1px;
    bottom: 0;
  }
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec01 .line-grow-sec01-03.is--grow {
    height: 50%;
  }
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec01 .line-grow-sec01-04 {
    left: 100%;
    bottom: 0;
  }
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec01 .line-grow-sec01-04.is--grow {
    height: 50%;
  }
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec02 {
    width: calc(100% - min(6.8055555556vw, 98px) * 2);
    margin-inline: auto;
  }
}
.bodyclass__creative .sec02 .inner-layout {
  padding-top: 28vw;
  padding-bottom: 21.6vw;
  width: calc(100% - 5.0666666667vw);
  margin-left: auto;
  position: relative;
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec02 .inner-layout {
    padding-top: min(6.8055555556vw, 9.8rem);
    padding-bottom: min(15.9722222222vw, 23rem);
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec02 .inner-content {
    margin-inline: auto;
    width: min(100% - min(4.3055555556vw, 62px) * 2, 124rem);
    position: relative;
  }
}
.bodyclass__creative .sec02 .ttl {
  font-size: 17.0666666667vw;
  line-height: 1.06;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.01em;
  margin-left: 5.3333333333vw;
  position: relative;
  z-index: 3;
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec02 .ttl {
    font-size: min(6.8055555556vw, 9.8rem);
    margin-left: -0.9em;
  }
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec02 .ttl .spnone {
    display: none;
  }
}
.bodyclass__creative .sec02 .textlayout {
  position: relative;
}
.bodyclass__creative .sec02 .ttlmiddle {
  font-size: 5.3333333333vw;
  line-height: 1.75;
  margin-bottom: 0.75em;
  margin-top: 1.25em;
  margin-left: 5.3333333333vw;
  margin-right: 5.3333333333vw;
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec02 .ttlmiddle {
    font-size: min(1.7361111111vw, 2.5rem);
    margin-left: 0;
    margin-right: 0;
    margin-top: 2em;
  }
}
.bodyclass__creative .sec02 .text {
  font-size: 3.7333333333vw;
  line-height: 2;
  margin-left: 5.3333333333vw;
  margin-right: 5.3333333333vw;
  letter-spacing: -0.025em;
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec02 .text {
    font-size: min(1.1111111111vw, 1.6rem);
    line-height: 2.375;
    width: min(42.2222222222vw, 60.8rem);
    margin-left: 0;
    margin-right: 0;
    letter-spacing: 0;
  }
}
.bodyclass__creative .sec02 .bglayout {
  width: 72vw;
  height: 63.2vw;
  position: absolute;
  top: -9.0666666667vw;
  right: 0;
  z-index: 2;
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec02 .bglayout {
    top: min(9.0277777778vw, 13rem);
    width: min(41.4583333333vw, 59.7rem);
    height: min(36.3888888889vw, 52.4rem);
    left: calc(100% + min(6.8055555556vw, 98px) - min(41.4583333333vw, 59.7rem) + min(4.3055555556vw, 62px));
  }
}
.bodyclass__creative .sec02 .sec02-bg-wrap {
  width: 100%;
  height: 100%;
}
.bodyclass__creative .sec02 .sec02-bg-wrap .bg {
  background-image: url(../img/page/creative/sec02.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .bodyclass__creative .sec02 .sec02-bg-wrap .bg {
    background-image: url(../img/page/creative/sec02@2x.png);
  }
}
.bodyclass__creative .sec02 .line-grow-sec02-01 {
  left: -1px;
  top: 0;
}
.bodyclass__creative .sec02 .line-grow-sec02-01.is--grow {
  height: 100%;
}
.bodyclass__creative .sec02 .line-grow-sec02-02 {
  left: -1px;
  top: 0;
}
.bodyclass__creative .sec02 .line-grow-sec02-02.is--grow {
  width: 100%;
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec02 .line-grow-sec02-02.is--grow {
    width: 50%;
  }
}
.bodyclass__creative .sec02 .line-grow-sec02-03 {
  right: 100%;
  top: 0;
}
.bodyclass__creative .sec02 .line-grow-sec02-03.is--grow {
  width: 5.0666666667vw;
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec02 .line-grow-sec02-03.is--grow {
    width: min(6.8055555556vw, 98px);
  }
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec02 .line-grow-sec02-04 {
    left: 100%;
    top: 0;
  }
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec02 .line-grow-sec02-04.is--grow {
    height: 50%;
  }
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec02 .line-grow-sec02-05 {
    left: 100%;
    bottom: 0;
  }
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec02 .line-grow-sec02-05.is--grow {
    height: 50%;
  }
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec02 .line-grow-sec02-06 {
    left: 100%;
    top: 0;
    height: 1px;
  }
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec02 .line-grow-sec02-06.is--grow {
    height: 1px;
    width: min(6.8055555556vw, 98px);
  }
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec02 .line-grow-sec02-07 {
    right: 0;
    top: 0;
    height: 1px;
  }
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec02 .line-grow-sec02-07.is--grow {
    height: 1px;
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec03 {
    width: calc(100% - min(6.8055555556vw, 98px) * 2);
    margin-inline: auto;
    height: min(48.3333333333vw, 69.6rem);
  }
}
.bodyclass__creative .sec03 .inner-layout {
  padding-top: 45.6vw;
  padding-bottom: 21.6vw;
  width: calc(100% - 5.0666666667vw);
  margin-left: auto;
  position: relative;
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec03 .inner-layout {
    padding-top: min(6.8055555556vw, 9.8rem);
    padding-bottom: min(15.9722222222vw, 23rem);
    width: 100%;
    height: min(48.3333333333vw, 69.6rem);
  }
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec03 .inner-content {
    margin-inline: auto;
    width: min(100% - min(4.3055555556vw, 62px) * 2, 124rem);
  }
}
.bodyclass__creative .sec03 .ttl {
  font-size: 17.0666666667vw;
  line-height: 1.06;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.01em;
  margin-left: 35.7333333333vw;
  position: relative;
  z-index: 3;
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec03 .ttl {
    font-size: min(6.9444444444vw, 10rem);
    margin-left: 0;
    text-align: right;
    margin-right: -0.95em;
    margin-top: min(15.9722222222vw, 23rem);
  }
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec03 .ttl .spnone {
    display: none;
  }
}
.bodyclass__creative .sec03 .textlayout {
  position: relative;
  z-index: 2;
}
.bodyclass__creative .sec03 .ttlmiddle {
  font-size: 5.3333333333vw;
  line-height: 1.75;
  margin-bottom: 0.75em;
  margin-top: 1.25em;
  margin-left: 5.3333333333vw;
  margin-right: 5.3333333333vw;
  text-align: right;
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec03 .ttlmiddle {
    font-size: min(1.7361111111vw, 2.5rem);
    margin-left: 0;
    margin-right: 0;
  }
}
.bodyclass__creative .sec03 .text {
  font-size: 3.7333333333vw;
  line-height: 2;
  margin-left: 5.3333333333vw;
  margin-right: 5.3333333333vw;
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec03 .text {
    font-size: min(1.1111111111vw, 1.6rem);
    line-height: 2.375;
    text-align: right;
    margin-left: 0;
    margin-right: 0;
  }
}
.bodyclass__creative .sec03 .text br {
  display: none;
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec03 .text br {
    display: initial;
  }
}
.bodyclass__creative .sec03 .bglayout {
  width: 100vw;
  height: 56vw;
  position: absolute;
  top: 1px;
  left: -5.0666666667vw;
  z-index: 1;
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec03 .bglayout {
    width: 100%;
    height: min(48.3333333333vw, 69.6rem);
    left: 0;
  }
}
.bodyclass__creative .sec03 .sec03-bg-wrap {
  width: 100%;
  height: 100%;
}
.bodyclass__creative .sec03 .sec03-bg-wrap .bg {
  background-position: center left;
  background-image: url(../img/page/creative/sec03--sp.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .bodyclass__creative .sec03 .sec03-bg-wrap .bg {
    background-image: url(../img/page/creative/sec03--sp@2x.png);
  }
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec03 .sec03-bg-wrap .bg {
    background-image: url(../img/page/creative/sec03--pc.png);
  }
}
@media only screen and (min-width: 1024px) and (-webkit-min-device-pixel-ratio: 2), only screen and (min-width: 1024px) and (min-device-pixel-ratio: 2), only screen and (min-width: 1024px) and (min-resolution: 192dpi), only screen and (min-width: 1024px) and (min-resolution: 2dppx) {
  .bodyclass__creative .sec03 .sec03-bg-wrap .bg {
    background-image: url(../img/page/creative/sec03--pc@2x.png);
  }
}
.bodyclass__creative .sec03 .line-grow-sec03-01 {
  left: -1px;
  top: 0;
}
.bodyclass__creative .sec03 .line-grow-sec03-01.is--grow {
  height: 100%;
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec03 .line-grow-sec03-01.is--grow {
    height: 50%;
  }
}
.bodyclass__creative .sec03 .line-grow-sec03-02 {
  left: -1px;
  top: 0;
}
.bodyclass__creative .sec03 .line-grow-sec03-02.is--grow {
  width: 100%;
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec03 .line-grow-sec03-02.is--grow {
    width: 50%;
  }
}
.bodyclass__creative .sec03 .line-grow-sec03-03 {
  right: 100%;
  top: 0;
}
.bodyclass__creative .sec03 .line-grow-sec03-03.is--grow {
  width: 5.0666666667vw;
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec03 .line-grow-sec03-03.is--grow {
    width: min(6.8055555556vw, 98px);
  }
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec03 .line-grow-sec03-04 {
    left: 100%;
    top: 0;
  }
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec03 .line-grow-sec03-04.is--grow {
    height: 50%;
  }
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec03 .line-grow-sec03-05 {
    left: 100%;
    bottom: 0;
  }
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec03 .line-grow-sec03-05.is--grow {
    height: 50%;
  }
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec03 .line-grow-sec03-06 {
    left: 100%;
    top: 0;
    height: 1px;
  }
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec03 .line-grow-sec03-06.is--grow {
    height: 1px;
    width: min(6.8055555556vw, 98px);
  }
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec03 .line-grow-sec03-07 {
    right: 0;
    top: 0;
    height: 1px;
  }
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec03 .line-grow-sec03-07.is--grow {
    height: 1px;
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec03 .line-grow-sec03-08 {
    left: -1px;
    bottom: 0;
  }
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec03 .line-grow-sec03-08.is--grow {
    height: 50%;
  }
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec04 {
    width: calc(100% - min(6.8055555556vw, 98px) * 2);
    margin-inline: auto;
  }
}
.bodyclass__creative .sec04 .inner-layout {
  padding-top: 53.0666666667vw;
  padding-bottom: 21.6vw;
  width: calc(100% - 5.0666666667vw);
  margin-left: auto;
  position: relative;
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec04 .inner-layout {
    padding-top: min(6.8055555556vw, 9.8rem);
    padding-bottom: min(24.3055555556vw, 35rem);
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec04 .inner-content {
    margin-inline: auto;
    width: min(100% - min(4.3055555556vw, 62px) * 2, 124rem);
    position: relative;
  }
}
.bodyclass__creative .sec04 .ttl {
  font-size: 11.7333333333vw;
  line-height: 1.06;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  letter-spacing: -0.01em;
  margin-left: 5.3333333333vw;
  position: relative;
  z-index: 3;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec04 .ttl {
    font-size: min(6.25vw, 9rem);
    margin-left: -1em;
  }
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec04 .ttl .pcnone {
    display: none;
  }
}
.bodyclass__creative .sec04 .ttl-under-text {
  display: none;
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec04 .ttl-under-text {
    display: block;
    font-size: min(1.5277777778vw, 2.2rem);
    margin-top: 1em;
    margin-left: -4em;
    font-weight: 500;
  }
}
.bodyclass__creative .sec04 .textlayout {
  position: relative;
  z-index: 2;
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec04 .textlayout {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
  }
}
.bodyclass__creative .sec04 .ttlmiddle {
  font-size: 5.3333333333vw;
  line-height: 1.75;
  margin-bottom: 0.75em;
  margin-top: 1.25em;
  margin-left: 5.3333333333vw;
  margin-right: 5.3333333333vw;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec04 .ttlmiddle {
    margin-top: 6em;
    font-size: min(1.7361111111vw, 2.5rem);
    margin-left: 0;
    margin-right: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.bodyclass__creative .sec04 .text {
  font-size: 3.7333333333vw;
  line-height: 2;
  margin-left: 5.3333333333vw;
  margin-right: 5.3333333333vw;
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec04 .text {
    font-size: min(1.1111111111vw, 1.6rem);
    line-height: 2.375;
    margin-left: 0;
    margin-right: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.bodyclass__creative .sec04 .text .spnone {
  display: none;
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec04 .text .spnone {
    display: block;
  }
}
.bodyclass__creative .sec04 .bglayout {
  width: 100vw;
  height: 58.6666666667vw;
  position: absolute;
  top: 1px;
  left: -5.0666666667vw;
  z-index: 1;
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec04 .bglayout {
    width: min(62.5vw, 90rem);
    height: min(36.5277777778vw, 52.6rem);
    left: calc(max(-6.8055555556vw, -98px) + max(-4.3055555556vw, -62px));
    top: min(20.8333333333vw, 30rem);
  }
}
.bodyclass__creative .sec04 .sec04-bg-wrap {
  width: 100%;
  height: 100%;
}
.bodyclass__creative .sec04 .sec04-bg-wrap .bg {
  background-image: url(../img/page/creative/sec04.png);
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  .bodyclass__creative .sec04 .sec04-bg-wrap .bg {
    background-image: url(../img/page/creative/sec04@2x.png);
  }
}
.bodyclass__creative .sec04 .line-grow-sec04-01 {
  left: -1px;
  top: 0;
}
.bodyclass__creative .sec04 .line-grow-sec04-01.is--grow {
  height: 100%;
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec04 .line-grow-sec04-02 {
    left: -1px;
    top: 0;
  }
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec04 .line-grow-sec04-02.is--grow {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec04 .line-grow-sec04-03 {
    right: 100%;
    top: 0;
  }
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec04 .line-grow-sec04-03.is--grow {
    width: min(6.8055555556vw, 98px);
  }
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec04 .line-grow-sec04-04 {
    left: 100%;
    top: 0;
  }
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec04 .line-grow-sec04-04.is--grow {
    height: 100%;
  }
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec04 .line-grow-sec04-06 {
    left: 100%;
    top: 0;
    height: 1px;
  }
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec04 .line-grow-sec04-06.is--grow {
    height: 1px;
    width: min(6.8055555556vw, 98px);
  }
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec04 .line-grow-sec04-07 {
    right: 0;
    top: 0;
    height: 1px;
  }
}
@media (min-width: 1024px) {
  .bodyclass__creative .sec04 .line-grow-sec04-07.is--grow {
    height: 1px;
    width: 50%;
  }
}

.bodyclass__contact .sec01,
.bodyclass__thanks .sec01 {
  position: relative;
}
.bodyclass__contact .sec01 .inner-layout,
.bodyclass__thanks .sec01 .inner-layout {
  width: calc(100% - 15.4666666667vw);
  margin-inline: auto;
  padding-top: 8.6666666667vw;
  padding-bottom: 32.8vw;
}
@media (min-width: 1024px) {
  .bodyclass__contact .sec01 .inner-layout,
  .bodyclass__thanks .sec01 .inner-layout {
    width: 746px;
    padding-top: 120px;
    padding-bottom: 210px;
  }
}
.bodyclass__contact .sec01 .ttlmiddle,
.bodyclass__thanks .sec01 .ttlmiddle {
  font-size: 16px;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 2em;
}
@media (min-width: 1024px) {
  .bodyclass__contact .sec01 .ttlmiddle,
  .bodyclass__thanks .sec01 .ttlmiddle {
    font-size: 25px;
  }
}
.bodyclass__contact .sec01 .read,
.bodyclass__thanks .sec01 .read {
  font-size: 13px;
  line-height: 2;
  margin-bottom: 3.5em;
  text-align: left;
}
@media (min-width: 1024px) {
  .bodyclass__contact .sec01 .read,
  .bodyclass__thanks .sec01 .read {
    text-align: center;
    font-size: 18px;
    line-height: 2.444;
  }
}
.bodyclass__contact .sec01 .read + p,
.bodyclass__thanks .sec01 .read + p {
  font-size: 11px;
  margin-bottom: 1em;
}
@media (min-width: 1024px) {
  .bodyclass__contact .sec01 .read + p,
  .bodyclass__thanks .sec01 .read + p {
    font-size: 14px;
    margin-bottom: 2.6em;
  }
}
.bodyclass__contact .sec01 .read br,
.bodyclass__thanks .sec01 .read br {
  display: none;
}
@media (min-width: 1024px) {
  .bodyclass__contact .sec01 .read br,
  .bodyclass__thanks .sec01 .read br {
    display: initial;
  }
}
@media (min-width: 1024px) {
  .bodyclass__contact .sec01 .read .pcnone,
  .bodyclass__thanks .sec01 .read .pcnone {
    display: none;
  }
}
.bodyclass__contact .sec01 .box,
.bodyclass__thanks .sec01 .box {
  width: 100%;
  border: solid 1px var(--pri-gray);
  padding: 2.5em;
  margin-inline: auto;
}
@media (min-width: 1024px) {
  .bodyclass__contact .sec01 .box,
  .bodyclass__thanks .sec01 .box {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 2.5em 4.2em;
  }
}
.bodyclass__contact .sec01 .box .text,
.bodyclass__thanks .sec01 .box .text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 13px;
  line-height: 2;
}
@media (min-width: 1024px) {
  .bodyclass__contact .sec01 .box .text,
  .bodyclass__thanks .sec01 .box .text {
    font-size: 18px;
    line-height: 2.444;
    text-align: center;
  }
}
.bodyclass__contact .sec01 .box .text br,
.bodyclass__thanks .sec01 .box .text br {
  display: none;
}
@media (min-width: 1024px) {
  .bodyclass__contact .sec01 .box .text br,
  .bodyclass__thanks .sec01 .box .text br {
    display: initial;
  }
}
.bodyclass__contact .sec01 .btn__normal,
.bodyclass__thanks .sec01 .btn__normal {
  margin-top: 4em;
  margin-inline: auto;
}
.bodyclass__contact .mw_wp_form,
.bodyclass__thanks .mw_wp_form {
  width: 100%;
  max-width: 746px;
  margin: 0 auto;
}
.bodyclass__contact .mw_wp_form .form-content,
.bodyclass__thanks .mw_wp_form .form-content {
  margin-bottom: 3rem;
}
@media (min-width: 1024px) {
  .bodyclass__contact .mw_wp_form .form-content,
  .bodyclass__thanks .mw_wp_form .form-content {
    margin-bottom: 3.6rem;
  }
}
.bodyclass__contact .mw_wp_form .form-content .form-text,
.bodyclass__thanks .mw_wp_form .form-content .form-text {
  font-size: 13px;
  margin-bottom: 0.8rem;
  color: #fff;
}
@media (min-width: 1024px) {
  .bodyclass__contact .mw_wp_form .form-content .form-text,
  .bodyclass__thanks .mw_wp_form .form-content .form-text {
    font-size: 16px;
  }
}
.bodyclass__contact .mw_wp_form .form-content .form-text .required,
.bodyclass__thanks .mw_wp_form .form-content .form-text .required {
  color: #FF3366;
  font-size: 11px;
  margin-left: 0.4rem;
}
@media (min-width: 1024px) {
  .bodyclass__contact .mw_wp_form .form-content .form-text .required,
  .bodyclass__thanks .mw_wp_form .form-content .form-text .required {
    font-size: 14px;
  }
}
.bodyclass__contact .mw_wp_form .form-content input[type=text],
.bodyclass__contact .mw_wp_form .form-content input[type=email],
.bodyclass__contact .mw_wp_form .form-content textarea,
.bodyclass__thanks .mw_wp_form .form-content input[type=text],
.bodyclass__thanks .mw_wp_form .form-content input[type=email],
.bodyclass__thanks .mw_wp_form .form-content textarea {
  width: 100%;
  padding: 0.75em;
  border-radius: 5px;
  border: none;
  font-size: 14px;
  background: #fff;
  color: var(--black);
  -webkit-box-shadow: 0 0 0 1px var(--pri-gray) inset;
          box-shadow: 0 0 0 1px var(--pri-gray) inset;
}
@media (min-width: 1024px) {
  .bodyclass__contact .mw_wp_form .form-content input[type=text],
  .bodyclass__contact .mw_wp_form .form-content input[type=email],
  .bodyclass__contact .mw_wp_form .form-content textarea,
  .bodyclass__thanks .mw_wp_form .form-content input[type=text],
  .bodyclass__thanks .mw_wp_form .form-content input[type=email],
  .bodyclass__thanks .mw_wp_form .form-content textarea {
    font-size: 16px;
  }
}
.bodyclass__contact .mw_wp_form .form-content input[type=text]::-webkit-input-placeholder, .bodyclass__contact .mw_wp_form .form-content input[type=email]::-webkit-input-placeholder, .bodyclass__contact .mw_wp_form .form-content textarea::-webkit-input-placeholder, .bodyclass__thanks .mw_wp_form .form-content input[type=text]::-webkit-input-placeholder, .bodyclass__thanks .mw_wp_form .form-content input[type=email]::-webkit-input-placeholder, .bodyclass__thanks .mw_wp_form .form-content textarea::-webkit-input-placeholder {
  color: #B0BCC0;
}
.bodyclass__contact .mw_wp_form .form-content input[type=text]::-moz-placeholder, .bodyclass__contact .mw_wp_form .form-content input[type=email]::-moz-placeholder, .bodyclass__contact .mw_wp_form .form-content textarea::-moz-placeholder, .bodyclass__thanks .mw_wp_form .form-content input[type=text]::-moz-placeholder, .bodyclass__thanks .mw_wp_form .form-content input[type=email]::-moz-placeholder, .bodyclass__thanks .mw_wp_form .form-content textarea::-moz-placeholder {
  color: #B0BCC0;
}
.bodyclass__contact .mw_wp_form .form-content input[type=text]:-ms-input-placeholder, .bodyclass__contact .mw_wp_form .form-content input[type=email]:-ms-input-placeholder, .bodyclass__contact .mw_wp_form .form-content textarea:-ms-input-placeholder, .bodyclass__thanks .mw_wp_form .form-content input[type=text]:-ms-input-placeholder, .bodyclass__thanks .mw_wp_form .form-content input[type=email]:-ms-input-placeholder, .bodyclass__thanks .mw_wp_form .form-content textarea:-ms-input-placeholder {
  color: #B0BCC0;
}
.bodyclass__contact .mw_wp_form .form-content input[type=text]::-ms-input-placeholder, .bodyclass__contact .mw_wp_form .form-content input[type=email]::-ms-input-placeholder, .bodyclass__contact .mw_wp_form .form-content textarea::-ms-input-placeholder, .bodyclass__thanks .mw_wp_form .form-content input[type=text]::-ms-input-placeholder, .bodyclass__thanks .mw_wp_form .form-content input[type=email]::-ms-input-placeholder, .bodyclass__thanks .mw_wp_form .form-content textarea::-ms-input-placeholder {
  color: #B0BCC0;
}
.bodyclass__contact .mw_wp_form .form-content input[type=text]::placeholder,
.bodyclass__contact .mw_wp_form .form-content input[type=email]::placeholder,
.bodyclass__contact .mw_wp_form .form-content textarea::placeholder,
.bodyclass__thanks .mw_wp_form .form-content input[type=text]::placeholder,
.bodyclass__thanks .mw_wp_form .form-content input[type=email]::placeholder,
.bodyclass__thanks .mw_wp_form .form-content textarea::placeholder {
  color: #B0BCC0;
}
.bodyclass__contact .mw_wp_form .form-content textarea,
.bodyclass__thanks .mw_wp_form .form-content textarea {
  min-height: 200px;
  resize: vertical;
}
.bodyclass__contact .mw_wp_form .form_submit,
.bodyclass__thanks .mw_wp_form .form_submit {
  display: block;
  margin: 3rem auto 0;
  background: transparent;
  border: 1px solid var(--pri-gray);
  color: #fff;
  padding: 1.2rem 4rem;
  border-radius: 100px;
  font-size: 1.6rem;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
  width: min(70%, 328px);
}
@media (min-width: 1024px) {
  .bodyclass__contact .mw_wp_form .form_submit,
  .bodyclass__thanks .mw_wp_form .form_submit {
    margin: 8rem auto 0;
  }
}
.bodyclass__contact .mw_wp_form .form_submit:hover,
.bodyclass__thanks .mw_wp_form .form_submit:hover {
  cursor: pointer;
  background: var(--pri-dark);
}
.bodyclass__contact .mw_wp_form .error,
.bodyclass__thanks .mw_wp_form .error {
  color: #FF3366;
  font-size: 12px;
  margin-top: 0.5em;
}
@media (min-width: 1024px) {
  .bodyclass__contact .mw_wp_form .error,
  .bodyclass__thanks .mw_wp_form .error {
    font-size: 14px;
  }
}
@media (min-width: 1024px) {
  .bodyclass__contact .line-grow-sec01-01,
  .bodyclass__thanks .line-grow-sec01-01 {
    left: min(6.8055555556vw - 1px, 97px);
    top: 0;
  }
}
@media (min-width: 1024px) {
  .bodyclass__contact .line-grow-sec01-01.is--grow,
  .bodyclass__thanks .line-grow-sec01-01.is--grow {
    height: 100%;
  }
}
@media (min-width: 1024px) {
  .bodyclass__contact .line-grow-sec01-02,
  .bodyclass__thanks .line-grow-sec01-02 {
    left: calc(100% - min(6.8055555556vw, 98px));
    top: 0;
  }
}
@media (min-width: 1024px) {
  .bodyclass__contact .line-grow-sec01-02.is--grow,
  .bodyclass__thanks .line-grow-sec01-02.is--grow {
    height: 100%;
  }
}

.short-drama-pr {
  margin-top: -52px;
  background-color: var(--white);
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #424242;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1024px) {
  .short-drama-pr {
    margin-top: min(-6.8055555556vw, -98px);
  }
}
.short-drama-pr a,
.short-drama-pr input[type=submit],
.short-drama-pr button {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.short-drama-pr a:hover,
.short-drama-pr input[type=submit]:hover,
.short-drama-pr button:hover {
  opacity: 0.8;
}
.short-drama-pr .main__common {
  min-height: auto;
}
.short-drama-pr.is-confirm, .short-drama-pr.is-complete {
  margin-top: 0;
}
.short-drama-pr.is-confirm .header, .short-drama-pr.is-complete .header {
  position: relative;
  top: auto;
  left: auto;
  -webkit-transform: none;
          transform: none;
  padding-top: 5.8666666667vw;
  padding-bottom: 5.8666666667vw;
}
@media (min-width: 1024px) {
  .short-drama-pr.is-confirm .header, .short-drama-pr.is-complete .header {
    padding-top: 1.5277777778vw;
    padding-bottom: 1.5277777778vw;
  }
}
.short-drama-pr.is-confirm .main__common, .short-drama-pr.is-complete .main__common {
  margin-top: 0;
}
.short-drama-pr.is-confirm .main__common > *:not(.contact), .short-drama-pr.is-complete .main__common > *:not(.contact) {
  display: none;
}
.short-drama-pr .spnone {
  display: none;
}
@media (min-width: 1024px) {
  .short-drama-pr .spnone {
    display: block;
  }
}
@media (min-width: 1024px) {
  .short-drama-pr .pcnone {
    display: none;
  }
}
.short-drama-pr .inner {
  width: 100%;
  margin: 0 auto;
  padding: 0 4.2666666667vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .inner {
    padding: 0 1.1111111111vw;
  }
}
.short-drama-pr .ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.short-drama-pr .ttl__en {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(193, 19, 5, 0.8)), color-stop(57%, #e66a02), to(#f08301));
  background-image: linear-gradient(to right, rgba(193, 19, 5, 0.8) 0%, #e66a02 57%, #f08301 100%);
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 14.9333333333vw;
  font-weight: 500;
  opacity: 0.1;
  line-height: 1.5;
  white-space: nowrap;
}
@supports (-webkit-background-clip: text) {
  .short-drama-pr .ttl__en {
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}
@media (min-width: 1024px) {
  .short-drama-pr .ttl__en {
    font-size: 9.3055555556vw;
  }
}
.short-drama-pr .ttl__ja {
  margin-top: -13.3333333333vw;
  font-size: 7.2vw;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  .short-drama-pr .ttl__ja {
    margin-top: -6.9444444444vw;
    font-size: 2.9166666667vw;
  }
}
.short-drama-pr .ttl__sub {
  margin-top: 2.6666666667vw;
  font-size: 3.2vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .ttl__sub {
    margin-top: 0.8333333333vw;
    font-size: 1.1111111111vw;
  }
}
.short-drama-pr .btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 74.6666666667vw;
  height: 16vw;
  margin: 0 auto;
  border-radius: 1.6vw;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(193, 19, 5, 0.8)), color-stop(57%, #e66a02), to(#f08301));
  background-image: linear-gradient(to right, rgba(193, 19, 5, 0.8) 0%, #e66a02 57%, #f08301 100%);
  font-size: 4.2666666667vw;
  font-weight: 700;
  color: #d13a04;
}
@media (min-width: 1024px) {
  .short-drama-pr .btn {
    width: 22.5vw;
    height: 5.6944444444vw;
    border-radius: 0.5555555556vw;
  }
}
.short-drama-pr .btn:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background-color: var(--white);
  border-radius: 1.3333333333vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .btn:before {
    border-radius: 0.4861111111vw;
  }
}
.short-drama-pr .btn span {
  position: relative;
  z-index: 1;
  background-color: var(--white);
  border-radius: 1.6vw;
  font-size: 4.2666666667vw;
  font-weight: 700;
  color: #d13a04;
}
@media (min-width: 1024px) {
  .short-drama-pr .btn span {
    border-radius: 0.6944444444vw;
    font-size: 1.6666666667vw;
  }
}
.short-drama-pr .header {
  position: absolute;
  top: 5.3333333333vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  padding: 0 4vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .header {
    top: 1.5277777778vw;
    padding: 0 4.8vw 0 6.4vw;
  }
}
.short-drama-pr .header__logo {
  display: block;
  width: 18.1333333333vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .header__logo {
    width: 8.5416666667vw;
  }
}
.short-drama-pr .header__cta {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 48vw;
  height: 10.6666666667vw;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(193, 19, 5, 0.8)), color-stop(57%, #e66a02), to(#f08301));
  background-image: linear-gradient(to right, rgba(193, 19, 5, 0.8) 0%, #e66a02 57%, #f08301 100%);
  border-radius: 0.8vw;
  font-size: 4.2666666667vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .header__cta {
    width: 15.5555555556vw;
    height: 3.8888888889vw;
    border-radius: 0.2083333333vw;
  }
}
.short-drama-pr .header__cta:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background-color: var(--white);
  border-radius: 0.5333333333vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .header__cta:before {
    border-radius: 0.1388888889vw;
  }
}
.short-drama-pr .header__cta span {
  position: relative;
  z-index: 1;
  font-size: 3.7333333333vw;
  font-weight: 700;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(193, 19, 5, 0.8)), color-stop(57%, #e66a02), to(#f08301));
  background-image: linear-gradient(to right, rgba(193, 19, 5, 0.8) 0%, #e66a02 57%, #f08301 100%);
}
@supports (-webkit-background-clip: text) {
  .short-drama-pr .header__cta span {
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}
@media (min-width: 1024px) {
  .short-drama-pr .header__cta span {
    font-size: 1.1111111111vw;
  }
}
.short-drama-pr .mv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 9.3333333333vw 0;
  height: 212.5333333333vw;
  padding: 24.5333333333vw 6.4vw 9.6vw;
  background-image: url("../img/page/short-drama-pr/mv-bg-sp.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (min-width: 1024px) {
  .short-drama-pr .mv {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 0 4.375vw;
    height: 54.8611111111vw;
    padding: 10.9722222222vw 5.5555555556vw 5.5555555556vw;
    background-image: url("../img/page/short-drama-pr/mv-bg-pc.png");
  }
}
.short-drama-pr .mv__imgs {
  position: relative;
  left: 2.6666666667vw;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (min-width: 1024px) {
  .short-drama-pr .mv__imgs {
    left: auto;
  }
}
.short-drama-pr .mv__img {
  position: relative;
  width: 28vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .mv__img {
    width: 12.3611111111vw;
  }
}
.short-drama-pr .mv__img:first-child {
  left: 2.9333333333vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .mv__img:first-child {
    left: 0.2777777778vw;
  }
}
.short-drama-pr .mv__img:nth-child(3) {
  right: 2.9333333333vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .mv__img:nth-child(3) {
    right: 0.2777777778vw;
  }
}
.short-drama-pr .mv__img:nth-child(4) {
  left: 0.5333333333vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .mv__img:nth-child(4) {
    left: -0.6944444444vw;
  }
}
.short-drama-pr .mv__img:nth-child(5) {
  left: -2.1333333333vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .mv__img:nth-child(5) {
    left: -0.9375vw;
  }
}
.short-drama-pr .mv__img:nth-child(6) {
  right: 5.0666666667vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .mv__img:nth-child(6) {
    right: 1.1805555556vw;
  }
}
.short-drama-pr .mv__img:nth-child(n+4) {
  margin-top: -5.3333333333vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .mv__img:nth-child(n+4) {
    margin-top: -2.3611111111vw;
  }
}
.short-drama-pr .mv__img img {
  width: 100%;
}
.short-drama-pr .mv__label {
  margin-bottom: 2.6666666667vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .mv__label {
    margin-bottom: 1.7361111111vw;
  }
}
.short-drama-pr .mv__label span {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2.1333333333vw;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(193, 19, 5, 0.8)), color-stop(57%, #e66a02), to(#f08301));
  background-image: linear-gradient(to right, rgba(193, 19, 5, 0.8) 0%, #e66a02 57%, #f08301 100%);
  font-size: 4.2666666667vw;
  font-weight: 700;
  color: var(--white);
  -webkit-transform: skewX(-10deg);
          transform: skewX(-10deg);
}
@media (min-width: 1024px) {
  .short-drama-pr .mv__label span {
    padding: 0.5555555556vw;
    font-size: 2.2222222222vw;
  }
}
.short-drama-pr .mv__label span:last-child {
  position: relative;
  left: -1.3333333333vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .mv__label span:last-child {
    left: -0.5555555556vw;
  }
}
.short-drama-pr .mv__ttl {
  margin-bottom: 2.6666666667vw;
  -webkit-transform: skewX(-10deg);
          transform: skewX(-10deg);
  font-size: 10.6666666667vw;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .short-drama-pr .mv__ttl {
    margin-bottom: 0.9722222222vw;
    font-size: 5.5555555556vw;
  }
}
.short-drama-pr .mv__hashtag {
  margin-bottom: 6.4vw;
  font-size: 2.9333333333vw;
  font-weight: 500;
}
@media (min-width: 1024px) {
  .short-drama-pr .mv__hashtag {
    margin-bottom: 3.125vw;
    font-size: 1.25vw;
  }
}
.short-drama-pr .mv__works {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 3.2vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .mv__works {
    gap: 0 3.9583333333vw;
  }
}
.short-drama-pr .mv__works__label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.3333333333vw 0;
  width: 30.1333333333vw;
  height: 28vw;
  border-radius: 2666.4vw;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(193, 19, 5, 0.8)), color-stop(57%, #e66a02), to(#f08301));
  background-image: linear-gradient(to right, rgba(193, 19, 5, 0.8) 0%, #e66a02 57%, #f08301 100%);
  color: var(--white);
}
@media (min-width: 1024px) {
  .short-drama-pr .mv__works__label {
    gap: 0.8333333333vw 0;
    width: 13.9583333333vw;
    height: 12.9166666667vw;
    border-radius: 694.375vw;
  }
}
.short-drama-pr .mv__works__label .works-label__ttl {
  font-size: 3.7333333333vw;
  font-weight: 700;
  text-decoration: underline;
  text-align: center;
}
@media (min-width: 1024px) {
  .short-drama-pr .mv__works__label .works-label__ttl {
    font-size: 1.8055555556vw;
  }
}
.short-drama-pr .mv__works__label .works-label__num {
  position: relative;
  left: -1.3333333333vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-size: 3.7333333333vw;
  font-weight: 700;
}
@media (min-width: 1024px) {
  .short-drama-pr .mv__works__label .works-label__num {
    left: -0.3472222222vw;
    font-size: 1.6666666667vw;
  }
}
.short-drama-pr .mv__works__label .works-label__num strong {
  position: relative;
  top: 1.3333333333vw;
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 9.8666666667vw;
  font-weight: 500;
}
@media (min-width: 1024px) {
  .short-drama-pr .mv__works__label .works-label__num strong {
    top: 0.3472222222vw;
    font-size: 4.5833333333vw;
  }
}
.short-drama-pr .mv__works__label span {
  position: absolute;
  right: 1.6vw;
  bottom: 8vw;
  font-size: 8vw;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
}
@media (min-width: 1024px) {
  .short-drama-pr .mv__works__label span {
    right: 0.4166666667vw;
    bottom: 3.6111111111vw;
    font-size: 3.75vw;
  }
}
.short-drama-pr .mv__works__list {
  list-style: none;
}
.short-drama-pr .mv__works__item {
  padding-left: 6.9333333333vw;
  background-image: url("../img/page/short-drama-pr/icon-check.svg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 4.8vw;
  font-size: 3.7333333333vw;
  line-height: 1.8;
  font-weight: 700;
}
@media (min-width: 1024px) {
  .short-drama-pr .mv__works__item {
    padding-left: 3.5416666667vw;
    background-size: 2.2916666667vw;
    font-size: 1.7361111111vw;
  }
}
.short-drama-pr .cta01 {
  position: relative;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(193, 19, 5, 0.8)), color-stop(57%, #e66a02), to(#f08301));
  background-image: linear-gradient(to right, rgba(193, 19, 5, 0.8) 0%, #e66a02 57%, #f08301 100%);
  padding: 8.8vw 7.2vw;
  color: var(--white);
  font-weight: 700;
  text-align: center;
}
@media (min-width: 1024px) {
  .short-drama-pr .cta01 {
    padding: 4.4444444444vw 1.6666666667vw 4.0277777778vw;
  }
}
.short-drama-pr .cta01__body {
  position: relative;
  z-index: 1;
}
.short-drama-pr .cta01__txt {
  margin-bottom: 1.6vw;
  font-size: 3.2vw;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  .short-drama-pr .cta01__txt {
    margin-bottom: 0.3472222222vw;
    font-size: 1.6666666667vw;
  }
}
.short-drama-pr .cta01__ttl {
  font-size: 5.3333333333vw;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  .short-drama-pr .cta01__ttl {
    font-size: 2.9166666667vw;
  }
}
.short-drama-pr .cta01__bg {
  position: absolute;
  top: 8vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 12.2666666667vw;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.1);
  white-space: nowrap;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  .short-drama-pr .cta01__bg {
    top: 0.3472222222vw;
    font-size: 9.3055555556vw;
  }
}
.short-drama-pr .about__main {
  background-image: url("../img/page/short-drama-pr/about-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 10.6666666667vw 6.4vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .about__main {
    padding: 6.5972222222vw 0vw 7.7083333333vw;
  }
}
.short-drama-pr .about__main__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5.3333333333vw 0;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .short-drama-pr .about__main__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0 3.1944444444vw;
    width: 62.5vw;
  }
}
.short-drama-pr .about__main__img {
  width: 100%;
}
@media (min-width: 1024px) {
  .short-drama-pr .about__main__img {
    width: 28.6805555556vw;
  }
}
@media (min-width: 1024px) {
  .short-drama-pr .about__main__body {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.short-drama-pr .about__main__ttl {
  margin-bottom: 4.8vw;
  font-size: 6.9333333333vw;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  .short-drama-pr .about__main__ttl {
    margin-bottom: 1.25vw;
    font-size: 2.7777777778vw;
  }
}
.short-drama-pr .about__main__txt {
  font-size: 4.2666666667vw;
  font-weight: 500;
  line-height: 2;
}
@media (min-width: 1024px) {
  .short-drama-pr .about__main__txt {
    font-size: 1.0416666667vw;
  }
}
.short-drama-pr .about__appeal {
  padding: 0 6.4vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .about__appeal {
    padding: 0 1.6666666667vw;
  }
}
.short-drama-pr .about__appeal__label {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 5.3333333333vw;
  padding: 2.1333333333vw;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(193, 19, 5, 0.8)), color-stop(57%, #e66a02), to(#f08301));
  background-image: linear-gradient(to right, rgba(193, 19, 5, 0.8) 0%, #e66a02 57%, #f08301 100%);
  font-size: 6.4vw;
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
}
@media (min-width: 1024px) {
  .short-drama-pr .about__appeal__label {
    margin-bottom: 1.3888888889vw;
    padding: 0.5555555556vw;
    font-size: 2.3611111111vw;
  }
}
.short-drama-pr .about__appeal__ttl {
  margin-bottom: 4.5333333333vw;
  font-size: 5.0666666667vw;
  line-height: 1.5;
  text-align: center;
}
@media (min-width: 1024px) {
  .short-drama-pr .about__appeal__ttl {
    margin-bottom: 1.1805555556vw;
    font-size: 2.3611111111vw;
  }
}
.short-drama-pr .about__appeal__ttl strong {
  font-size: 6.9333333333vw;
  font-weight: 700;
}
@media (min-width: 1024px) {
  .short-drama-pr .about__appeal__ttl strong {
    font-size: 3.3333333333vw;
  }
}
.short-drama-pr .about__appeal__txt {
  margin-bottom: 8.5333333333vw;
  font-size: 4.2666666667vw;
  font-weight: 700;
  line-height: 2.4;
  text-align: center;
}
@media (min-width: 1024px) {
  .short-drama-pr .about__appeal__txt {
    margin-bottom: 4.4444444444vw;
    font-size: 1.3888888889vw;
  }
}
.short-drama-pr .about__appeal__txt strong {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(193, 19, 5, 0.8)), color-stop(57%, #e66a02), to(#f08301));
  background-image: linear-gradient(to right, rgba(193, 19, 5, 0.8) 0%, #e66a02 57%, #f08301 100%);
  font-size: 5.8666666667vw;
}
@supports (-webkit-background-clip: text) {
  .short-drama-pr .about__appeal__txt strong {
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}
@media (min-width: 1024px) {
  .short-drama-pr .about__appeal__txt strong {
    font-size: 2.3611111111vw;
    font-weight: 700;
  }
}
.short-drama-pr .about__appeal__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5.3333333333vw 0;
  margin: 0 auto 8.8vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .about__appeal__list {
    gap: 2.2222222222vw 0;
    width: 75vw;
    margin-bottom: 4.5833333333vw;
  }
}
.short-drama-pr .about__appeal__item {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(193, 19, 5, 0.8)), color-stop(57%, #e66a02), to(#f08301));
  background-image: linear-gradient(to right, rgba(193, 19, 5, 0.8) 0%, #e66a02 57%, #f08301 100%);
  padding: 1px;
  border-radius: 1.6vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .about__appeal__item {
    border-radius: 0.4166666667vw;
    height: 12.5694444444vw;
  }
}
.short-drama-pr .about__appeal__item .appeal-item__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.7333333333vw 0;
  height: 100%;
  background-color: var(--white);
  border-radius: 1.6vw;
  padding: 5.3333333333vw 4.2666666667vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .about__appeal__item .appeal-item__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.3888888889vw 0;
    padding: 0;
    border-radius: 0.4166666667vw;
  }
}
.short-drama-pr .about__appeal__item .appeal-item__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 5.3333333333vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .about__appeal__item .appeal-item__head {
    gap: 0 2.9166666667vw;
    width: 31.5277777778vw;
  }
}
.short-drama-pr .about__appeal__item .appeal-item__img--01 {
  width: 17.0666666667vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .about__appeal__item .appeal-item__img--01 {
    width: 7.5vw;
  }
}
.short-drama-pr .about__appeal__item .appeal-item__img--02 {
  width: 11.2vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .about__appeal__item .appeal-item__img--02 {
    width: 5.9722222222vw;
  }
}
.short-drama-pr .about__appeal__item .appeal-item__img--03 {
  width: 13.0666666667vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .about__appeal__item .appeal-item__img--03 {
    width: 6.8055555556vw;
  }
}
.short-drama-pr .about__appeal__item .appeal-item__ttl {
  font-size: 6.4vw;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  .short-drama-pr .about__appeal__item .appeal-item__ttl {
    font-size: 2.2222222222vw;
  }
}
.short-drama-pr .about__appeal__item .appeal-item__txt {
  font-size: 4.2666666667vw;
  font-weight: 500;
  line-height: 2;
}
@media (min-width: 1024px) {
  .short-drama-pr .about__appeal__item .appeal-item__txt {
    width: 32.7083333333vw;
    font-size: 1.0416666667vw;
  }
}
.short-drama-pr .about__summary {
  padding-bottom: 8vw;
  text-align: center;
  font-size: 4.8vw;
  font-weight: 700;
  line-height: 1.8;
}
@media (min-width: 1024px) {
  .short-drama-pr .about__summary {
    padding-bottom: 4.3055555556vw;
    font-size: 2.2222222222vw;
  }
}
.short-drama-pr .about__summary strong {
  font-size: 8vw;
  font-weight: 700;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(193, 19, 5, 0.8)), color-stop(57%, #e66a02), to(#f08301));
  background-image: linear-gradient(to right, rgba(193, 19, 5, 0.8) 0%, #e66a02 57%, #f08301 100%);
}
@supports (-webkit-background-clip: text) {
  .short-drama-pr .about__summary strong {
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}
@media (min-width: 1024px) {
  .short-drama-pr .about__summary strong {
    font-size: 3.3333333333vw;
  }
}
.short-drama-pr .diff {
  padding: 11.2vw 0;
  background-color: #fef6ed;
}
@media (min-width: 1024px) {
  .short-drama-pr .diff {
    padding: 5.8333333333vw 0;
  }
}
.short-drama-pr .diff .ttl {
  margin-bottom: 10.6666666667vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .diff .ttl {
    margin-bottom: 5.5555555556vw;
  }
}
@media (min-width: 1024px) {
  .short-drama-pr .diff__inner {
    width: 71.6666666667vw;
  }
}
.short-drama-pr .diff__ttls {
  display: none;
}
@media (min-width: 1024px) {
  .short-drama-pr .diff__ttls {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 6.8055555556vw;
    margin-bottom: 1.25vw;
  }
}
.short-drama-pr .diff__ttl {
  font-size: 5.3333333333vw;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media (min-width: 1024px) {
  .short-drama-pr .diff__ttl {
    font-size: 2.2222222222vw;
  }
}
.short-drama-pr .diff__ttl--short-drama {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(193, 19, 5, 0.8)), color-stop(57%, #e66a02), to(#f08301));
  background-image: linear-gradient(to right, rgba(193, 19, 5, 0.8) 0%, #e66a02 57%, #f08301 100%);
}
@supports (-webkit-background-clip: text) {
  .short-drama-pr .diff__ttl--short-drama {
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}
.short-drama-pr .diff__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 7.2vw 0;
  margin-bottom: 8.8vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .diff__list {
    gap: 1.875vw 0;
    margin-bottom: 4.5833333333vw;
  }
}
.short-drama-pr .diff__items {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16vw 0;
}
@media (min-width: 1024px) {
  .short-drama-pr .diff__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 6.8055555556vw;
  }
}
.short-drama-pr .diff__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
.short-drama-pr .diff__item:first-child:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -11.2vw;
  -webkit-transform: translateX(-50%) rotate(90deg);
          transform: translateX(-50%) rotate(90deg);
  background-image: url("../img/page/short-drama-pr/diff-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 12.4vw;
  height: 7.3333333333vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .diff__item:first-child:after {
    top: 50%;
    left: auto;
    right: -6.4583333333vw;
    bottom: auto;
    -webkit-transform: translateY(-50%) rotate(0);
            transform: translateY(-50%) rotate(0);
    width: 6.4583333333vw;
    height: 3.8194444444vw;
  }
}
.short-drama-pr .diff__item .diff__ttl {
  margin-bottom: 3.2vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .diff__item .diff__ttl {
    display: none;
  }
}
.short-drama-pr .diff__item__box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 8vw 5.3333333333vw 9.3333333333vw;
  background-color: var(--white);
  border-radius: 1.6vw;
  border: 0.2666666667vw solid #dadada;
}
@media (min-width: 1024px) {
  .short-drama-pr .diff__item__box {
    padding: 2.9861111111vw 2.0833333333vw 2.4305555556vw;
    border-radius: 0.4166666667vw;
    border-width: 0.0694444444vw;
  }
}
.short-drama-pr .diff__item__ttl {
  margin-bottom: 4.2666666667vw;
  font-size: 5.6vw;
  text-align: center;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  .short-drama-pr .diff__item__ttl {
    margin-bottom: 1.1111111111vw;
    font-size: 1.9444444444vw;
  }
}
.short-drama-pr .diff__item__txt {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 4.2666666667vw;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  .short-drama-pr .diff__item__txt {
    font-size: 1.1111111111vw;
  }
}
.short-drama-pr .diff__item--short-drama .diff__item__box {
  border-color: #d13a04;
}
.short-drama-pr .diff__item--short-drama .diff__item__ttl {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(193, 19, 5, 0.8)), color-stop(57%, #e66a02), to(#f08301));
  background-image: linear-gradient(to right, rgba(193, 19, 5, 0.8) 0%, #e66a02 57%, #f08301 100%);
}
@supports (-webkit-background-clip: text) {
  .short-drama-pr .diff__item--short-drama .diff__item__ttl {
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}
.short-drama-pr .diff__copy {
  font-size: 5.8666666667vw;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}
@media (min-width: 1024px) {
  .short-drama-pr .diff__copy {
    font-size: 2.2222222222vw;
  }
}
.short-drama-pr .diff__copy strong.spnone {
  display: none;
}
@media (min-width: 1024px) {
  .short-drama-pr .diff__copy strong.spnone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.short-drama-pr .diff__copy strong.pcnone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 1024px) {
  .short-drama-pr .diff__copy strong.pcnone {
    display: none;
  }
}
.short-drama-pr .diff__copy strong span {
  position: relative;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(193, 19, 5, 0.8)), color-stop(57%, #e66a02), to(#f08301));
  background-image: linear-gradient(to right, rgba(193, 19, 5, 0.8) 0%, #e66a02 57%, #f08301 100%);
  font-size: 8vw;
  font-weight: 700;
  line-height: 1.8;
}
@supports (-webkit-background-clip: text) {
  .short-drama-pr .diff__copy strong span {
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}
@media (min-width: 1024px) {
  .short-drama-pr .diff__copy strong span {
    font-size: 2.7777777778vw;
  }
}
.short-drama-pr .diff__copy strong span:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.5333333333vw;
  width: 100%;
  height: 1.0666666667vw;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(193, 19, 5, 0.8)), color-stop(57%, #e66a02), to(#f08301));
  background-image: linear-gradient(to right, rgba(193, 19, 5, 0.8) 0%, #e66a02 57%, #f08301 100%);
}
@media (min-width: 1024px) {
  .short-drama-pr .diff__copy strong span:before {
    bottom: -0.6944444444vw;
    height: 0.4166666667vw;
  }
}
.short-drama-pr .cta02 {
  position: relative;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(193, 19, 5, 0.8)), color-stop(57%, #e66a02), to(#f08301));
  background-image: linear-gradient(to right, rgba(193, 19, 5, 0.8) 0%, #e66a02 57%, #f08301 100%);
  padding: 8.8vw 7.2vw;
  color: var(--white);
  text-align: center;
}
@media (min-width: 1024px) {
  .short-drama-pr .cta02 {
    padding: 4.4444444444vw 1.6666666667vw 4.0277777778vw;
  }
}
.short-drama-pr .cta02__body {
  position: relative;
  z-index: 1;
}
.short-drama-pr .cta02__txt {
  margin-bottom: 3.2vw;
  font-size: 3.7333333333vw;
  font-weight: 500;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  .short-drama-pr .cta02__txt {
    margin-bottom: 1.5972222222vw;
    font-size: 1.5277777778vw;
  }
}
.short-drama-pr .cta02__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 80vw;
  height: 16vw;
  margin: 0 auto;
  background-color: var(--white);
  border-radius: 2.6666666667vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .cta02__btn {
    width: 38.4722222222vw;
    height: 6.9444444444vw;
    border-radius: 0.6944444444vw;
  }
}
.short-drama-pr .cta02__btn span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(193, 19, 5, 0.8)), color-stop(57%, #e66a02), to(#f08301));
  background-image: linear-gradient(to right, rgba(193, 19, 5, 0.8) 0%, #e66a02 57%, #f08301 100%);
  font-size: 5.3333333333vw;
  font-weight: 700;
}
@supports (-webkit-background-clip: text) {
  .short-drama-pr .cta02__btn span {
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}
@media (min-width: 1024px) {
  .short-drama-pr .cta02__btn span {
    font-size: 1.9444444444vw;
  }
}
.short-drama-pr .cta02__bg {
  position: absolute;
  top: 3.7333333333vw;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 12.2666666667vw;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.1);
  white-space: nowrap;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  .short-drama-pr .cta02__bg {
    top: 0.3472222222vw;
    font-size: 9.3055555556vw;
  }
}
.short-drama-pr .marketing {
  padding: 12vw 0 10.1333333333vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .marketing {
    padding: 6.0416666667vw 0 5.1388888889vw;
  }
}
@media (min-width: 1024px) {
  .short-drama-pr .marketing__inner {
    width: 89.7222222222vw;
  }
}
.short-drama-pr .marketing__ttl {
  margin-bottom: 8vw;
  font-size: 6.4vw;
  line-height: 1.5;
  text-align: center;
}
@media (min-width: 1024px) {
  .short-drama-pr .marketing__ttl {
    margin-bottom: 4.3055555556vw;
    font-size: 2.9166666667vw;
  }
}
.short-drama-pr .marketing__ttl strong {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(193, 19, 5, 0.8)), color-stop(57%, #e66a02), to(#f08301));
  background-image: linear-gradient(to right, rgba(193, 19, 5, 0.8) 0%, #e66a02 57%, #f08301 100%);
  font-size: 8vw;
  font-weight: 700;
}
@supports (-webkit-background-clip: text) {
  .short-drama-pr .marketing__ttl strong {
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}
@media (min-width: 1024px) {
  .short-drama-pr .marketing__ttl strong {
    font-size: 3.3333333333vw;
  }
}
.short-drama-pr .marketing__menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 3.2vw;
  width: 96%;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .short-drama-pr .marketing__menu {
    gap: 0 1.6666666667vw;
    width: 84.3055555556vw;
  }
}
.short-drama-pr .marketing__menu__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.3333333333vw 0;
  padding: 2.6666666667vw 1.6vw;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(193, 19, 5, 0.8)), color-stop(57%, #e66a02), to(#f08301));
  background-image: linear-gradient(to right, rgba(193, 19, 5, 0.8) 0%, #e66a02 57%, #f08301 100%);
  border-radius: 1.6vw 1.6vw 0 0;
  text-align: center;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .short-drama-pr .marketing__menu__item {
    gap: 0.3472222222vw 0;
    border-radius: 0.6944444444vw 0.6944444444vw 0 0;
  }
}
.short-drama-pr .marketing__menu__item:hover .menu-item__ttl,
.short-drama-pr .marketing__menu__item:hover .menu-item__txt {
  opacity: 0.8;
}
.short-drama-pr .marketing__menu__item .menu-item__ttl {
  font-size: 4.2666666667vw;
  line-height: 1.5;
  font-weight: 700;
  color: var(--white);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media (min-width: 1024px) {
  .short-drama-pr .marketing__menu__item .menu-item__ttl {
    font-size: 2.3611111111vw;
  }
}
.short-drama-pr .marketing__menu__item .menu-item__txt {
  font-size: 2.9333333333vw;
  line-height: 1.5;
  font-weight: 700;
  color: var(--white);
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media (min-width: 1024px) {
  .short-drama-pr .marketing__menu__item .menu-item__txt {
    font-size: 1.1111111111vw;
  }
}
.short-drama-pr .marketing__menu__item.is-active {
  background: none;
  background-color: var(--white);
  border: 2px solid #d13a04;
  border-bottom: none;
}
@media (min-width: 1024px) {
  .short-drama-pr .marketing__menu__item.is-active {
    gap: 0.3472222222vw 0;
    border-radius: 0.6944444444vw 0.6944444444vw 0 0;
  }
}
.short-drama-pr .marketing__menu__item.is-active .menu-item__ttl {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(193, 19, 5, 0.8)), color-stop(57%, #e66a02), to(#f08301));
  background-image: linear-gradient(to right, rgba(193, 19, 5, 0.8) 0%, #e66a02 57%, #f08301 100%);
}
@supports (-webkit-background-clip: text) {
  .short-drama-pr .marketing__menu__item.is-active .menu-item__ttl {
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}
.short-drama-pr .marketing__menu__item.is-active .menu-item__txt {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(193, 19, 5, 0.8)), color-stop(57%, #e66a02), to(#f08301));
  background-image: linear-gradient(to right, rgba(193, 19, 5, 0.8) 0%, #e66a02 57%, #f08301 100%);
}
@supports (-webkit-background-clip: text) {
  .short-drama-pr .marketing__menu__item.is-active .menu-item__txt {
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}
.short-drama-pr .marketing__body {
  margin-top: -2px;
  padding: 7.4666666667vw 4.2666666667vw 8.5333333333vw;
  border: 2px solid #d13a04;
}
@media (min-width: 1024px) {
  .short-drama-pr .marketing__body {
    padding: 6.1805555556vw 3.4722222222vw 7.2222222222vw;
  }
}
.short-drama-pr .marketing__item {
  display: none;
}
.short-drama-pr .marketing__item.is-active {
  display: block;
}
.short-drama-pr .marketing__item__ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 8.5333333333vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .marketing__item__ttl {
    margin-bottom: 4.375vw;
  }
}
.short-drama-pr .marketing__item__ttl span {
  font-size: 5.3333333333vw;
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  .short-drama-pr .marketing__item__ttl span {
    font-size: 2.9166666667vw;
  }
}
.short-drama-pr .marketing__item--recruit .marketing__item__ttl img {
  width: 35.7333333333vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .marketing__item--recruit .marketing__item__ttl img {
    width: 19.2361111111vw;
  }
}
.short-drama-pr .marketing__item--product .marketing__item__ttl img {
  width: 34.1333333333vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .marketing__item--product .marketing__item__ttl img {
    width: 17.6388888889vw;
  }
}
.short-drama-pr .marketing__worry {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 5.3333333333vw 0;
  margin-bottom: 13.3333333333vw;
  list-style: none;
}
@media (min-width: 1024px) {
  .short-drama-pr .marketing__worry {
    grid-template-columns: repeat(3, 1fr);
    gap: 0 2.2222222222vw;
    margin-bottom: 7.7083333333vw;
  }
}
.short-drama-pr .marketing__worry__item {
  position: relative;
  height: 49.0666666667vw;
  padding: 10.1333333333vw;
  background-color: #fef6ed;
  border-radius: 1.6vw;
  font-size: 5.3333333333vw;
  font-weight: 700;
  line-height: 1.8;
}
@media (min-width: 1024px) {
  .short-drama-pr .marketing__worry__item {
    height: 16.6666666667vw;
    padding: 2.6388888889vw;
    border-radius: 0.4166666667vw;
    font-size: 1.8055555556vw;
  }
}
.short-drama-pr .marketing__worry__item:before {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.short-drama-pr .marketing__worry__item:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10.6666666667vw;
  width: 8vw;
  height: 8vw;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-image: url("../img/page/short-drama-pr/marketing-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (min-width: 1024px) {
  .short-drama-pr .marketing__worry__item:after {
    bottom: -4.2361111111vw;
    width: 4.5138888889vw;
    height: 3.8194444444vw;
  }
}
.short-drama-pr .marketing__worry__item:nth-child(odd):before {
  top: -2.1333333333vw;
  right: 1.0666666667vw;
  background-image: url("../img/page/short-drama-pr/marketing-deco-01.svg");
  width: 8vw;
  height: 9.6vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .marketing__worry__item:nth-child(odd):before {
    top: -0.5555555556vw;
    right: 0.2777777778vw;
    width: 2.5vw;
    height: 3.0555555556vw;
  }
}
.short-drama-pr .marketing__worry__item:nth-child(even):before {
  top: -2.1333333333vw;
  right: 0;
  background-image: url("../img/page/short-drama-pr/marketing-deco-02.svg");
  width: 10.6666666667vw;
  height: 11.2vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .marketing__worry__item:nth-child(even):before {
    top: -0.5555555556vw;
    width: 3.0555555556vw;
    height: 3.0555555556vw;
  }
}
.short-drama-pr .marketing__worry__item:not(:last-child):after {
  display: none;
}
@media (min-width: 1024px) {
  .short-drama-pr .marketing__worry__item:not(:last-child):after {
    display: block;
  }
}
.short-drama-pr .marketing__solution.pcnone {
  position: relative;
  margin-bottom: 13.3333333333vw;
  text-align: center;
}
.short-drama-pr .marketing__solution.pcnone span {
  font-size: 6.4vw;
  font-weight: 700;
  line-height: 1.8;
}
.short-drama-pr .marketing__solution.pcnone p {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(193, 19, 5, 0.8)), color-stop(57%, #e66a02), to(#f08301));
  background-image: linear-gradient(to right, rgba(193, 19, 5, 0.8) 0%, #e66a02 57%, #f08301 100%);
  line-height: 1.8;
  font-size: 4.8vw;
  font-weight: 700;
}
@supports (-webkit-background-clip: text) {
  .short-drama-pr .marketing__solution.pcnone p {
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}
@media (min-width: 1024px) {
  .short-drama-pr .marketing__solution.pcnone p {
    font-size: 2.0833333333vw;
  }
}
.short-drama-pr .marketing__solution.pcnone p strong {
  font-size: 8vw;
  font-weight: 700;
}
@media (min-width: 1024px) {
  .short-drama-pr .marketing__solution.pcnone p strong {
    font-size: 3.3333333333vw;
  }
}
.short-drama-pr .marketing__solution.pcnone .gradient-line {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.short-drama-pr .marketing__solution.pcnone .gradient-line:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(193, 19, 5, 0.8)), color-stop(57%, #e66a02), to(#f08301));
  background-image: linear-gradient(to right, rgba(193, 19, 5, 0.8) 0%, #e66a02 57%, #f08301 100%);
  width: 100%;
  height: 1.6vw;
}
.short-drama-pr .marketing__solution.spnone {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 6.5277777778vw;
  font-size: 2.6388888889vw;
  font-weight: 700;
  line-height: 1.8;
}
.short-drama-pr .marketing__solution.spnone:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(193, 19, 5, 0.8)), color-stop(57%, #e66a02), to(#f08301));
  background-image: linear-gradient(to right, rgba(193, 19, 5, 0.8) 0%, #e66a02 57%, #f08301 100%);
  width: 100%;
  height: 0.4166666667vw;
}
.short-drama-pr .marketing__solution.spnone span {
  display: inline-block;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(193, 19, 5, 0.8)), color-stop(57%, #e66a02), to(#f08301));
  background-image: linear-gradient(to right, rgba(193, 19, 5, 0.8) 0%, #e66a02 57%, #f08301 100%);
  line-height: 1.8;
  font-weight: 700;
  font-size: 2.0833333333vw;
}
@supports (-webkit-background-clip: text) {
  .short-drama-pr .marketing__solution.spnone span {
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}
.short-drama-pr .marketing__solution.spnone span strong {
  font-size: 3.3333333333vw;
  font-weight: 700;
}
.short-drama-pr .marketing__charm .ttl {
  margin-bottom: 8.5333333333vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .marketing__charm .ttl {
    margin-bottom: 6.1111111111vw;
  }
}
.short-drama-pr .marketing__charm .ttl__ja {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(193, 19, 5, 0.8)), color-stop(57%, #e66a02), to(#f08301));
  background-image: linear-gradient(to right, rgba(193, 19, 5, 0.8) 0%, #e66a02 57%, #f08301 100%);
}
@supports (-webkit-background-clip: text) {
  .short-drama-pr .marketing__charm .ttl__ja {
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}
.short-drama-pr .marketing__charm__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5.3333333333vw 0;
  margin-bottom: 9.6vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .marketing__charm__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0 9.0277777778vw;
    margin-bottom: 5vw;
  }
}
.short-drama-pr .marketing__charm__item:last-of-type {
  margin-bottom: 0;
}
.short-drama-pr .marketing__charm__item .charm-item__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6.4vw 0;
}
@media (min-width: 1024px) {
  .short-drama-pr .marketing__charm__item .charm-item__body {
    gap: 2.3611111111vw 0;
    width: 40.1388888889vw;
  }
}
.short-drama-pr .marketing__charm__item .charm-item__num {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(193, 19, 5, 0.8)), color-stop(57%, #e66a02), to(#f08301));
  background-image: linear-gradient(to right, rgba(193, 19, 5, 0.8) 0%, #e66a02 57%, #f08301 100%);
  font-family: "Roboto Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 13.3333333333vw;
  font-weight: 700;
}
@supports (-webkit-background-clip: text) {
  .short-drama-pr .marketing__charm__item .charm-item__num {
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}
@media (min-width: 1024px) {
  .short-drama-pr .marketing__charm__item .charm-item__num {
    font-size: 5.9722222222vw;
  }
}
.short-drama-pr .marketing__charm__item .charm-item__ttl {
  font-size: 5.8666666667vw;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  .short-drama-pr .marketing__charm__item .charm-item__ttl {
    font-size: 2.2222222222vw;
  }
}
.short-drama-pr .marketing__charm__item .charm-item__txt {
  font-size: 4.2666666667vw;
  line-height: 1.8;
}
@media (min-width: 1024px) {
  .short-drama-pr .marketing__charm__item .charm-item__txt {
    font-size: 1.25vw;
  }
}
.short-drama-pr .marketing__charm__item .charm-item__img {
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .short-drama-pr .marketing__charm__item--01 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.short-drama-pr .marketing__charm__item--01 .charm-item__img {
  width: 47.2vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .marketing__charm__item--01 .charm-item__img {
    width: 12.2916666667vw;
    margin: 1.3888888889vw 0 0;
  }
}
.short-drama-pr .marketing__charm__item--02 .charm-item__img {
  width: 48.8vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .marketing__charm__item--02 .charm-item__img {
    width: 12.7083333333vw;
    margin: 2.0833333333vw 0 0;
  }
}
@media (min-width: 1024px) {
  .short-drama-pr .marketing__charm__item--03 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
.short-drama-pr .marketing__charm__item--03 .charm-item__img {
  width: 44.8vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .marketing__charm__item--03 .charm-item__img {
    width: 11.6666666667vw;
    margin: 2.7777777778vw 0 0;
  }
}
.short-drama-pr .marketing__charm__expansion .charm-expansion__ttl {
  margin-bottom: 5.3333333333vw;
  font-size: 5.8666666667vw;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media (min-width: 1024px) {
  .short-drama-pr .marketing__charm__expansion .charm-expansion__ttl {
    margin-bottom: 2.0138888889vw;
    font-size: 2.2222222222vw;
  }
}
.short-drama-pr .marketing__charm__expansion .charm-expansion__ttl strong {
  font-size: 8vw;
  font-weight: 700;
  color: #ed7c01;
}
@media (min-width: 1024px) {
  .short-drama-pr .marketing__charm__expansion .charm-expansion__ttl strong {
    font-size: 2.9166666667vw;
  }
}
.short-drama-pr .marketing__charm__expansion .charm-expansion__fig {
  margin: 0 auto 13.3333333333vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .marketing__charm__expansion .charm-expansion__fig {
    width: 69.6527777778vw;
    margin-bottom: 5.5555555556vw;
  }
}
.short-drama-pr .marketing__charm__expansion .charm-expansion__fig__imgs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 9.8666666667vw 0;
  margin-bottom: 3.2vw;
  padding: 8vw 6.4vw 8vw;
  background-color: #fef6ed;
  border-radius: 1.6vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .marketing__charm__expansion .charm-expansion__fig__imgs {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: flergb(30, 26, 22);
        -ms-flex-align: flergb(30, 26, 22);
            align-items: flergb(30, 26, 22);
    gap: 0 5.1388888889vw;
    margin-bottom: 0.8333333333vw;
    border-radius: 0.4166666667vw;
    padding: 3.4722222222vw 4.8611111111vw 2.7777777778vw;
  }
}
.short-drama-pr .marketing__charm__expansion .charm-expansion__fig__imgs img {
  width: 48vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .marketing__charm__expansion .charm-expansion__fig__imgs img {
    width: 16.25vw;
  }
}
.short-drama-pr .marketing__charm__expansion .charm-expansion__fig__note {
  font-size: 3.2vw;
  font-weight: 700;
  text-align: right;
}
@media (min-width: 1024px) {
  .short-drama-pr .marketing__charm__expansion .charm-expansion__fig__note {
    font-size: 0.8333333333vw;
  }
}
.short-drama-pr .marketing__charm__compare {
  margin-bottom: 10.6666666667vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .marketing__charm__compare {
    margin-bottom: 2.7777777778vw;
  }
}
.short-drama-pr .marketing__charm__compare .charm-compare__ttl {
  margin-bottom: 8.5333333333vw;
  font-size: 5.8666666667vw;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}
@media (min-width: 1024px) {
  .short-drama-pr .marketing__charm__compare .charm-compare__ttl {
    margin-bottom: 2.2222222222vw;
    font-size: 2.2222222222vw;
  }
}
.short-drama-pr .marketing__charm__compare .charm-compare__ttl strong {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(193, 19, 5, 0.8)), color-stop(57%, #e66a02), to(#f08301));
  background-image: linear-gradient(to right, rgba(193, 19, 5, 0.8) 0%, #e66a02 57%, #f08301 100%);
  font-size: 9.0666666667vw;
  font-weight: 700;
}
@supports (-webkit-background-clip: text) {
  .short-drama-pr .marketing__charm__compare .charm-compare__ttl strong {
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}
@media (min-width: 1024px) {
  .short-drama-pr .marketing__charm__compare .charm-compare__ttl strong {
    font-size: 3.2638888889vw;
  }
}
.short-drama-pr .marketing__charm__compare .charm-compare__ttl span {
  font-size: 7.4666666667vw;
  color: #ed7c01;
}
@media (min-width: 1024px) {
  .short-drama-pr .marketing__charm__compare .charm-compare__ttl span {
    font-size: 2.9166666667vw;
  }
}
.short-drama-pr .marketing__charm__compare .charm-compare__table-wrapper {
  overflow-x: auto;
}
.short-drama-pr .marketing__charm__compare .charm-compare__table {
  table-layout: fixed;
  width: 770px;
  margin: 0 auto;
  border: 1px solid #d13a04;
}
@media (min-width: 1024px) {
  .short-drama-pr .marketing__charm__compare .charm-compare__table {
    width: 995px;
  }
}
.short-drama-pr .marketing__charm__compare .charm-compare__table tr th,
.short-drama-pr .marketing__charm__compare .charm-compare__table tr td {
  padding: 20px;
  vertical-align: middle;
  background-color: #fffcfa;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
}
@media (min-width: 1024px) {
  .short-drama-pr .marketing__charm__compare .charm-compare__table tr th,
  .short-drama-pr .marketing__charm__compare .charm-compare__table tr td {
    padding: 20px 40px;
  }
}
.short-drama-pr .marketing__charm__compare .charm-compare__table tr th:nth-child(even),
.short-drama-pr .marketing__charm__compare .charm-compare__table tr td:nth-child(even) {
  background-color: #fff6ed;
}
.short-drama-pr .marketing__charm__compare .charm-compare__table tr th {
  text-align: left;
}
.short-drama-pr .marketing__charm__compare .charm-compare__table thead th {
  text-align: center;
}
.short-drama-pr .marketing__charm__compare .charm-compare__table tbody th {
  height: 136px;
}
.short-drama-pr .marketing__charm__compare .charm-compare__table tbody tr {
  border-top: 1px solid #f6d5c9;
}
.short-drama-pr .marketing__charm__compare .charm-compare__table .reach td {
  font-weight: 700;
  text-align: center;
}
.short-drama-pr .marketing__charm__compare .charm-compare__table .reach td strong {
  display: block;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  font-weight: 700;
}
.short-drama-pr .marketing__charm__compare .charm-compare__table .service img {
  display: block;
  margin: 0 auto;
}
.short-drama-pr .marketing__charm__compare .charm-compare__table .target td {
  text-align: center;
}
@media (min-width: 1024px) {
  .short-drama-pr .marketing__charm__compare .charm-compare__table .feature td {
    padding-right: 50px;
    padding-left: 50px;
  }
}
.short-drama-pr .marketing__charm__compare .charm-compare__table .tiktok img {
  width: 82px;
}
@media (min-width: 1024px) {
  .short-drama-pr .marketing__charm__compare .charm-compare__table .tiktok img {
    width: 163px;
  }
}
.short-drama-pr .marketing__charm__compare .charm-compare__table .instagram img {
  width: 35px;
}
@media (min-width: 1024px) {
  .short-drama-pr .marketing__charm__compare .charm-compare__table .instagram img {
    width: 70px;
  }
}
.short-drama-pr .marketing__charm__compare .charm-compare__table .youtube img {
  width: 100px;
}
@media (min-width: 1024px) {
  .short-drama-pr .marketing__charm__compare .charm-compare__table .youtube img {
    width: 198px;
  }
}
.short-drama-pr .marketing__charm__reach {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 8.8vw;
  font-size: 5.3333333333vw;
  font-weight: 700;
  color: #000;
  line-height: 1.8;
  text-align: center;
}
@media (min-width: 1024px) {
  .short-drama-pr .marketing__charm__reach {
    margin-bottom: 4.6527777778vw;
    font-size: 2.2222222222vw;
  }
}
.short-drama-pr .marketing__charm__reach strong {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(193, 19, 5, 0.8)), color-stop(57%, #e66a02), to(#f08301));
  background-image: linear-gradient(to right, rgba(193, 19, 5, 0.8) 0%, #e66a02 57%, #f08301 100%);
  font-size: 7.4666666667vw;
  font-weight: 700;
}
@supports (-webkit-background-clip: text) {
  .short-drama-pr .marketing__charm__reach strong {
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}
@media (min-width: 1024px) {
  .short-drama-pr .marketing__charm__reach strong {
    font-size: 2.9166666667vw;
  }
}
.short-drama-pr .strengths {
  padding: 12.2666666667vw 0 11.2vw;
  background-image: url("../img/page/short-drama-pr/about-bg.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}
@media (min-width: 1024px) {
  .short-drama-pr .strengths {
    padding: 6.3888888889vw 0 5.8333333333vw;
  }
}
@media (min-width: 1024px) {
  .short-drama-pr .strengths__inner {
    width: 75.2777777778vw;
  }
}
.short-drama-pr .strengths__copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.6666666667vw 0;
  margin-bottom: 8.5333333333vw;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  .short-drama-pr .strengths__copy {
    gap: 0.6944444444vw 0;
    margin-bottom: 2.2222222222vw;
  }
}
.short-drama-pr .strengths__copy span {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2.1333333333vw;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(193, 19, 5, 0.8)), color-stop(57%, #e66a02), to(#f08301));
  background-image: linear-gradient(to right, rgba(193, 19, 5, 0.8) 0%, #e66a02 57%, #f08301 100%);
  font-weight: 700;
  color: var(--white);
  font-size: 6.4vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .strengths__copy span {
    padding: 0.5555555556vw;
    font-size: 3.3333333333vw;
  }
}
.short-drama-pr .strengths__txt {
  margin-bottom: 13.3333333333vw;
  font-size: 4.2666666667vw;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
}
@media (min-width: 1024px) {
  .short-drama-pr .strengths__txt {
    margin-bottom: 6.9444444444vw;
    font-size: 1.3888888889vw;
  }
}
.short-drama-pr .strengths .ttl {
  margin-bottom: 10.6666666667vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .strengths .ttl {
    margin-bottom: 5.5555555556vw;
  }
}
.short-drama-pr .strengths__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 9.6vw 0;
}
@media (min-width: 1024px) {
  .short-drama-pr .strengths__list {
    gap: 5vw 0;
  }
}
.short-drama-pr .strengths__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5.3333333333vw 0;
}
@media (min-width: 1024px) {
  .short-drama-pr .strengths__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0 4.5138888889vw;
  }
}
.short-drama-pr .strengths__item__img {
  width: 100%;
  border-radius: 1.6vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .strengths__item__img {
    width: 33.75vw;
    border-radius: 0.4166666667vw;
  }
}
.short-drama-pr .strengths__item__ttl {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 2.6666666667vw;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(193, 19, 5, 0.8)), color-stop(57%, #e66a02), to(#f08301));
  background-image: linear-gradient(to right, rgba(193, 19, 5, 0.8) 0%, #e66a02 57%, #f08301 100%);
  font-size: 5.3333333333vw;
  line-height: 1.5;
}
@supports (-webkit-background-clip: text) {
  .short-drama-pr .strengths__item__ttl {
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}
@media (min-width: 1024px) {
  .short-drama-pr .strengths__item__ttl {
    margin-bottom: 1.6666666667vw;
    font-size: 2.2222222222vw;
  }
}
.short-drama-pr .strengths__item__txt {
  font-size: 4.2666666667vw;
  line-height: 1.8;
}
@media (min-width: 1024px) {
  .short-drama-pr .strengths__item__txt {
    font-size: 1.1111111111vw;
  }
}
.short-drama-pr .agency {
  margin-bottom: 16vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .agency {
    margin-bottom: 5.8333333333vw;
  }
}
.short-drama-pr .agency__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 1024px) {
  .short-drama-pr .agency__inner {
    width: 91.9444444444vw;
  }
}
.short-drama-pr .agency__box {
  padding: 16vw 4.2666666667vw;
  background-image: url("../img/page/short-drama-pr/agency-bg.png");
  border-radius: 1.6vw;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  text-align: center;
}
@media (min-width: 1024px) {
  .short-drama-pr .agency__box {
    padding: 10.6944444444vw 1.6666666667vw;
  }
}
.short-drama-pr .agency__ttl {
  margin-bottom: 3.2vw;
  font-size: 6.9333333333vw;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  .short-drama-pr .agency__ttl {
    margin-bottom: 1.6666666667vw;
    font-size: 2.9166666667vw;
  }
}
.short-drama-pr .agency__txt {
  font-size: 4.2666666667vw;
  font-weight: 700;
  line-height: 1.8;
}
@media (min-width: 1024px) {
  .short-drama-pr .agency__txt {
    font-size: 1.3888888889vw;
  }
}
.short-drama-pr .works {
  padding: 16vw 0;
  background-image: url("../img/page/short-drama-pr/works-bg.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
@media (min-width: 1024px) {
  .short-drama-pr .works {
    padding: 4.1666666667vw 0 8.3333333333vw;
  }
}
.short-drama-pr .works .ttl {
  margin-bottom: 8.5333333333vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .works .ttl {
    margin-bottom: 2.2222222222vw;
  }
}
.short-drama-pr .works__txt {
  margin-bottom: 12.2666666667vw;
  font-size: 4.2666666667vw;
  line-height: 1.8;
  text-align: center;
}
@media (min-width: 1024px) {
  .short-drama-pr .works__txt {
    margin-bottom: 3.1944444444vw;
    font-size: 1.1111111111vw;
  }
}
.short-drama-pr .works__video {
  position: relative;
  overflow: hidden;
  margin-bottom: 90px;
}
@media (min-width: 1024px) {
  .short-drama-pr .works__video {
    margin-bottom: 90px;
  }
}
.short-drama-pr .works__video__item {
  max-width: 328px;
  margin: 0 auto;
}
.short-drama-pr .works__video__item iframe {
  overflow: hidden;
}
@media (min-width: 1024px) {
  .short-drama-pr .works__video:not(.swiper) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (min-width: 1024px) {
  .short-drama-pr .works__video .swiper-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0 45px;
  }
}
@media (min-width: 1024px) {
  .short-drama-pr .works__video .swiper-slide {
    width: auto !important;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .short-drama-pr .works__video .swiper-slide:nth-child(2) {
    margin-top: 45px;
  }
}
.short-drama-pr .works__video .swiper-pagination {
  position: relative;
  margin-top: 5.3333333333vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .works__video .swiper-pagination {
    display: none;
  }
}
.short-drama-pr .works__video .swiper-pagination .swiper-pagination-bullet {
  width: 2.1333333333vw;
  height: 2.1333333333vw;
  background-color: #d9d9d9;
  opacity: 1;
}
.short-drama-pr .works__video .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(193, 19, 5, 0.8)), color-stop(57%, #e66a02), to(#f08301));
  background-image: linear-gradient(to right, rgba(193, 19, 5, 0.8) 0%, #e66a02 57%, #f08301 100%);
}
@media (min-width: 1024px) {
  .short-drama-pr .works__video .swiper-button-prev,
  .short-drama-pr .works__video .swiper-button-next {
    display: none;
  }
}
.short-drama-pr .works__video .swiper-button-prev::after,
.short-drama-pr .works__video .swiper-button-next::after {
  font-size: 7.4666666667vw;
  font-weight: 700;
  color: #d13a04;
}
.short-drama-pr .works__video .swiper-button-prev.swiper-button-disabled,
.short-drama-pr .works__video .swiper-button-next.swiper-button-disabled {
  opacity: 0.3;
}
.short-drama-pr .works__video .swiper-button-prev {
  top: auto;
  bottom: 0;
  left: 2.6666666667vw;
}
.short-drama-pr .works__video .swiper-button-next {
  top: auto;
  bottom: 0;
  right: 2.6666666667vw;
}
.short-drama-pr .works__casestudy__ttl {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 4.2666666667vw;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(193, 19, 5, 0.8)), color-stop(57%, #e66a02), to(#f08301));
  background-image: linear-gradient(to right, rgba(193, 19, 5, 0.8) 0%, #e66a02 57%, #f08301 100%);
  font-size: 8vw;
  text-align: center;
  line-height: 1.5;
}
@supports (-webkit-background-clip: text) {
  .short-drama-pr .works__casestudy__ttl {
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}
@media (min-width: 1024px) {
  .short-drama-pr .works__casestudy__ttl {
    margin-bottom: 1.1111111111vw;
    font-size: 2.9166666667vw;
  }
}
.short-drama-pr .works__casestudy__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(193, 19, 5, 0.8)), color-stop(57%, #e66a02), to(#f08301));
  background-image: linear-gradient(to right, rgba(193, 19, 5, 0.8) 0%, #e66a02 57%, #f08301 100%);
  border-radius: 6px;
}
@media (min-width: 1024px) {
  .short-drama-pr .works__casestudy__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 954px;
    margin: 0 auto;
  }
}
.short-drama-pr .works__casestudy__video {
  width: calc(100% - 4px);
  margin: 2px;
  padding: 0;
  background-color: var(--white);
  border-radius: 6px 6px 0 0;
}
@media (min-width: 1024px) {
  .short-drama-pr .works__casestudy__video {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 22px 42px;
    border-radius: 6px 0 0 6px;
  }
}
.short-drama-pr .works__casestudy__video .casestudy-video__item {
  width: 328px;
  margin: 0 auto;
}
.short-drama-pr .works__casestudy__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 1024px) {
  .short-drama-pr .works__casestudy__body {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
.short-drama-pr .works__casestudy__overview {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 2px 2px 2px;
  background-color: var(--white);
  border-radius: 0;
  padding: 8.5333333333vw 4.2666666667vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .works__casestudy__overview {
    margin: 2px 2px 2px 0;
    border-radius: 0 6px 0 0;
    padding: 70px;
  }
}
.short-drama-pr .works__casestudy__overview .casestudy-overview__ttl {
  margin-bottom: 4.2666666667vw;
  font-size: 5.3333333333vw;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  .short-drama-pr .works__casestudy__overview .casestudy-overview__ttl {
    margin-bottom: 32px;
    font-size: 30px;
  }
}
.short-drama-pr .works__casestudy__overview .casestudy-overview__txt {
  font-size: 4.2666666667vw;
  line-height: 1.8;
}
@media (min-width: 1024px) {
  .short-drama-pr .works__casestudy__overview .casestudy-overview__txt {
    font-size: 18px;
  }
}
.short-drama-pr .works__casestudy__follower {
  margin: 0 2px 2px;
  padding: 6.4vw 4.2666666667vw;
  background-color: var(--white);
  text-align: center;
}
@media (min-width: 1024px) {
  .short-drama-pr .works__casestudy__follower {
    margin: 0 2px 2px 0;
    padding: 40px 30px;
  }
}
.short-drama-pr .works__casestudy__follower .casestudy-follower__ttl {
  font-size: 5.8666666667vw;
  margin-bottom: 4.2666666667vw;
  font-weight: 700;
}
@media (min-width: 1024px) {
  .short-drama-pr .works__casestudy__follower .casestudy-follower__ttl {
    margin-bottom: 24px;
    font-size: 27px;
  }
}
.short-drama-pr .works__casestudy__follower .casestudy-follower__txt {
  font-weight: 700;
  font-size: 6.4vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .works__casestudy__follower .casestudy-follower__txt {
    font-size: 32px;
  }
}
.short-drama-pr .works__casestudy__follower .casestudy-follower__txt strong {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(193, 19, 5, 0.8)), color-stop(57%, #e66a02), to(#f08301));
  background-image: linear-gradient(to right, rgba(193, 19, 5, 0.8) 0%, #e66a02 57%, #f08301 100%);
  font-size: 10.6666666667vw;
  font-weight: 700;
}
@supports (-webkit-background-clip: text) {
  .short-drama-pr .works__casestudy__follower .casestudy-follower__txt strong {
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}
@media (min-width: 1024px) {
  .short-drama-pr .works__casestudy__follower .casestudy-follower__txt strong {
    font-size: 52px;
  }
}
.short-drama-pr .works__casestudy__follower .casestudy-follower__txt strong.num {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-weight: 700;
}
.short-drama-pr .works__casestudy__engage {
  margin: 0 2px 2px;
  padding: 6.4vw 4.2666666667vw;
  background-color: var(--white);
  border-radius: 0 0 6px 0;
  text-align: center;
}
@media (min-width: 1024px) {
  .short-drama-pr .works__casestudy__engage {
    margin: 0 2px 2px 0;
    padding: 40px 30px;
  }
}
.short-drama-pr .works__casestudy__engage .casestudy-engage__ttl {
  font-size: 5.8666666667vw;
  margin-bottom: 4.2666666667vw;
  font-weight: 700;
}
@media (min-width: 1024px) {
  .short-drama-pr .works__casestudy__engage .casestudy-engage__ttl {
    margin-bottom: 24px;
    font-size: 27px;
  }
}
.short-drama-pr .works__casestudy__engage .casestudy-engage__txt {
  font-weight: 700;
  font-size: 6.4vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .works__casestudy__engage .casestudy-engage__txt {
    font-size: 32px;
  }
}
.short-drama-pr .works__casestudy__engage .casestudy-engage__txt strong {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(193, 19, 5, 0.8)), color-stop(57%, #e66a02), to(#f08301));
  background-image: linear-gradient(to right, rgba(193, 19, 5, 0.8) 0%, #e66a02 57%, #f08301 100%);
  font-size: 13.3333333333vw;
  font-weight: 700;
}
@supports (-webkit-background-clip: text) {
  .short-drama-pr .works__casestudy__engage .casestudy-engage__txt strong {
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}
@media (min-width: 1024px) {
  .short-drama-pr .works__casestudy__engage .casestudy-engage__txt strong {
    font-size: 62px;
  }
}
.short-drama-pr .works__casestudy__engage .casestudy-engage__txt strong.num {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-weight: 700;
}
.short-drama-pr .flow {
  padding: 16vw 0 13.3333333333vw;
  background-image: url("../img/page/short-drama-pr/about-bg.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100%;
}
@media (min-width: 1024px) {
  .short-drama-pr .flow {
    padding: 8.3333333333vw 0 6.9444444444vw;
  }
}
@media (min-width: 1024px) {
  .short-drama-pr .flow__inner {
    width: 83.8888888889vw;
  }
}
.short-drama-pr .flow__ttl {
  margin-bottom: 4.2666666667vw;
  font-size: 6.9333333333vw;
  line-height: 1.5;
  text-align: center;
}
@media (min-width: 1024px) {
  .short-drama-pr .flow__ttl {
    margin-bottom: 1.6666666667vw;
    font-size: 2.9166666667vw;
  }
}
.short-drama-pr .flow__txt {
  margin-bottom: 16vw;
  font-size: 4.2666666667vw;
  line-height: 1.8;
  text-align: center;
}
@media (min-width: 1024px) {
  .short-drama-pr .flow__txt {
    margin-bottom: 6.5972222222vw;
    font-size: 1.1111111111vw;
  }
}
.short-drama-pr .flow__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 18.6666666667vw 0;
}
@media (min-width: 1024px) {
  .short-drama-pr .flow__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 0 5.8333333333vw;
  }
}
.short-drama-pr .flow__item {
  position: relative;
  width: 53.3333333333vw;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .short-drama-pr .flow__item {
    width: 11.6666666667vw;
    margin: 0;
  }
}
.short-drama-pr .flow__item:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -13.3333333333vw;
  width: 9.3333333333vw;
  height: 8.5333333333vw;
  -webkit-transform: translateX(-50%) rotate(90deg);
          transform: translateX(-50%) rotate(90deg);
  background-image: url("../img/page/short-drama-pr/flow-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (min-width: 1024px) {
  .short-drama-pr .flow__item:after {
    top: 50%;
    left: auto;
    right: -2.7777777778vw;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 3.0555555556vw;
    height: 2.5694444444vw;
  }
}
.short-drama-pr .flow__item:last-child:after {
  display: none;
}
.short-drama-pr .flow__item__step {
  margin-bottom: 4.8vw;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 5.3333333333vw;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 1024px) {
  .short-drama-pr .flow__item__step {
    text-align: left;
    margin-bottom: 1.875vw;
    font-size: 1.6666666667vw;
  }
}
.short-drama-pr .flow__item__step span {
  font-size: 8vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .flow__item__step span {
    font-size: 2.9166666667vw;
  }
}
.short-drama-pr .flow__item__img {
  margin: 0 auto 2.9333333333vw;
  width: 32vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .flow__item__img {
    margin: 0 0 0.7638888889vw;
    width: 8.3333333333vw;
  }
}
.short-drama-pr .flow__item__ttl {
  margin-bottom: 3.7333333333vw;
  font-size: 5.8666666667vw;
  line-height: 1.5;
  text-align: center;
}
@media (min-width: 1024px) {
  .short-drama-pr .flow__item__ttl {
    margin-bottom: 0.9722222222vw;
    font-size: 2.0833333333vw;
    text-align: left;
  }
}
.short-drama-pr .flow__item__txt {
  font-size: 3.7333333333vw;
  line-height: 1.8;
}
@media (min-width: 1024px) {
  .short-drama-pr .flow__item__txt {
    font-size: 0.9722222222vw;
  }
}
.short-drama-pr .faq {
  padding: 10.6666666667vw 0 16vw;
  background-color: #fef6ed;
}
@media (min-width: 1024px) {
  .short-drama-pr .faq {
    padding: 4.1666666667vw 0 8.3333333333vw;
  }
}
@media (min-width: 1024px) {
  .short-drama-pr .faq__inner {
    width: 75vw;
    margin: 0 auto;
  }
}
.short-drama-pr .faq .ttl {
  margin-bottom: 8.5333333333vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .faq .ttl {
    margin-bottom: 4.4444444444vw;
  }
}
.short-drama-pr .faq__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6.4vw;
  width: 100%;
}
@media (min-width: 1024px) {
  .short-drama-pr .faq__list {
    gap: 1.6666666667vw;
  }
}
.short-drama-pr .faq__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8.5333333333vw 0;
  padding: 6.4vw 6.4vw 8vw;
  background-color: var(--white);
  border-radius: 1.6vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .faq__item {
    gap: 1.3888888889vw 0;
    padding: 1.6666666667vw 2.2222222222vw 2.7777777778vw;
    border-radius: 0.4166666667vw;
  }
}
.short-drama-pr .faq__item__label {
  font-size: 5.3333333333vw;
  font-weight: 700;
}
@media (min-width: 1024px) {
  .short-drama-pr .faq__item__label {
    font-size: 2.3611111111vw;
  }
}
.short-drama-pr .faq__item__q {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0 3.7333333333vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .faq__item__q {
    gap: 0 0.9722222222vw;
  }
}
.short-drama-pr .faq__item .q-txt {
  font-size: 5.3333333333vw;
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  .short-drama-pr .faq__item .q-txt {
    font-size: 1.6666666667vw;
  }
}
.short-drama-pr .faq__item__a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0 3.7333333333vw;
  font-size: 4.2666666667vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .faq__item__a {
    gap: 0 0.9722222222vw;
    font-size: 1.0416666667vw;
  }
}
.short-drama-pr .faq__item__a .faq__item__label {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(193, 19, 5, 0.8)), color-stop(57%, #e66a02), to(#f08301));
  background-image: linear-gradient(to right, rgba(193, 19, 5, 0.8) 0%, #e66a02 57%, #f08301 100%);
  font-size: 5.3333333333vw;
}
@supports (-webkit-background-clip: text) {
  .short-drama-pr .faq__item__a .faq__item__label {
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}
@media (min-width: 1024px) {
  .short-drama-pr .faq__item__a .faq__item__label {
    font-size: 2.3611111111vw;
  }
}
.short-drama-pr .faq__item .a-txt {
  font-size: 4.2666666667vw;
  line-height: 1.8;
}
@media (min-width: 1024px) {
  .short-drama-pr .faq__item .a-txt {
    font-size: 1.1111111111vw;
  }
}
.short-drama-pr .contact {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(193, 19, 5, 0.8)), color-stop(57%, #e66a02), to(#f08301));
  background-image: linear-gradient(to right, rgba(193, 19, 5, 0.8) 0%, #e66a02 57%, #f08301 100%);
  padding: 13.3333333333vw 0;
}
@media (min-width: 1024px) {
  .short-drama-pr .contact {
    padding: 6.9444444444vw 0;
  }
}
.short-drama-pr .contact .ttl {
  margin-bottom: 6.4vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .contact .ttl {
    margin-bottom: 1.6666666667vw;
  }
}
.short-drama-pr .contact .ttl__en {
  background: none;
  color: var(--white);
}
.short-drama-pr .contact .ttl__ja {
  color: var(--white);
}
.short-drama-pr .contact__txt {
  margin-bottom: 7.4666666667vw;
  font-size: 4.2666666667vw;
  line-height: 1.8;
  color: var(--white);
  text-align: center;
}
@media (min-width: 1024px) {
  .short-drama-pr .contact__txt {
    margin-bottom: 3.8888888889vw;
    font-size: 1.1111111111vw;
  }
}
.short-drama-pr .contact__box {
  padding: 8.5333333333vw 6.4vw;
  background-color: var(--white);
  border-radius: 1.6vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .contact__box {
    width: 68.0555555556vw;
    margin: 0 auto;
    border-radius: 0.4166666667vw;
  }
}
.short-drama-pr .contact__box form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6.4vw 0;
}
@media (min-width: 1024px) {
  .short-drama-pr .contact__box form {
    gap: 2.5vw 0;
  }
}
.short-drama-pr .contact .form-content .error {
  margin-top: 2.6666666667vw;
  font-size: 3.7333333333vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .contact .form-content .error {
    margin-top: 0.6944444444vw;
    font-size: 0.9722222222vw;
  }
}
.short-drama-pr .contact .form-content--acceptance .error {
  text-align: center;
}
.short-drama-pr .contact .form-text {
  margin-bottom: 2.1333333333vw;
  font-size: 4.2666666667vw;
  font-weight: 700;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  .short-drama-pr .contact .form-text {
    margin-bottom: 1.0416666667vw;
    font-size: 1.25vw;
  }
}
.short-drama-pr .contact .form-text .required {
  font-size: 3.7333333333vw;
  color: #d13a04;
}
@media (min-width: 1024px) {
  .short-drama-pr .contact .form-text .required {
    font-size: 0.9722222222vw;
  }
}
.short-drama-pr .contact .input {
  background-color: #f7f5f3;
  border-radius: 1.6vw;
  border: 0.2666666667vw solid #e0e0e0;
  width: 100%;
  padding: 2.6666666667vw;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4.2666666667vw;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  .short-drama-pr .contact .input {
    padding: 0.6944444444vw;
    border-width: 0.0694444444vw;
    border-radius: 0.4166666667vw;
    font-size: 1.1111111111vw;
  }
}
.short-drama-pr .contact .input:focus {
  outline: none;
}
.short-drama-pr .contact .textarea {
  background-color: #f7f5f3;
  border-radius: 1.6vw;
  border: 0.2666666667vw solid #e0e0e0;
  width: 100%;
  padding: 2.6666666667vw;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4.2666666667vw;
  line-height: 1.5;
  height: 64vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .contact .textarea {
    height: 23.5416666667vw;
    padding: 0.6944444444vw;
    border-width: 0.0694444444vw;
    border-radius: 0.4166666667vw;
    font-size: 1.1111111111vw;
  }
}
.short-drama-pr .contact .textarea:focus {
  outline: none;
}
.short-drama-pr .contact .mwform-radio-field {
  margin-left: 0;
  margin-right: 8vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .contact .mwform-radio-field {
    margin-right: 5.4861111111vw;
  }
}
.short-drama-pr .contact .mwform-radio-field.horizontal-item label {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  padding-left: 7.4666666667vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .contact .mwform-radio-field.horizontal-item label {
    padding-left: 1.9444444444vw;
  }
}
.short-drama-pr .contact .mwform-radio-field.horizontal-item label input[type=radio].radio {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.short-drama-pr .contact .mwform-radio-field.horizontal-item label input[type=radio].radio + .mwform-radio-field-text::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  background-color: #f7f5f3;
}
.short-drama-pr .contact .mwform-radio-field.horizontal-item label input[type=radio].radio:checked + .mwform-radio-field-text::before {
  border-color: #d13a04;
  background-color: var(--white);
}
.short-drama-pr .contact .mwform-radio-field.horizontal-item label input[type=radio].radio:checked + .mwform-radio-field-text::after {
  content: "";
  position: absolute;
  left: -22px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #d13a04;
}
.short-drama-pr .contact .mwform-radio-field.horizontal-item label .mwform-radio-field-text {
  position: relative;
  font-size: 4.2666666667vw;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  .short-drama-pr .contact .mwform-radio-field.horizontal-item label .mwform-radio-field-text {
    font-size: 1.1111111111vw;
  }
}
.short-drama-pr .contact .mwform-checkbox-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.short-drama-pr .contact .mwform-checkbox-field.horizontal-item label {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  padding-left: 8.5333333333vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .contact .mwform-checkbox-field.horizontal-item label {
    padding-left: 2.2222222222vw;
  }
}
.short-drama-pr .contact .mwform-checkbox-field.horizontal-item label input[type=checkbox] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.short-drama-pr .contact .mwform-checkbox-field.horizontal-item label input[type=checkbox] + .mwform-checkbox-field-text::before {
  content: "";
  position: absolute;
  left: -8.5333333333vw;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 5.3333333333vw;
  height: 5.3333333333vw;
  border: 0.2666666667vw solid #e0e0e0;
  border-radius: 0.8vw;
  background-color: #f7f5f3;
}
@media (min-width: 1024px) {
  .short-drama-pr .contact .mwform-checkbox-field.horizontal-item label input[type=checkbox] + .mwform-checkbox-field-text::before {
    left: -2.2222222222vw;
    width: 1.3888888889vw;
    height: 1.3888888889vw;
    border-width: 0.0694444444vw;
    border-radius: 0.2083333333vw;
  }
}
.short-drama-pr .contact .mwform-checkbox-field.horizontal-item label input[type=checkbox]:checked + .mwform-checkbox-field-text::before {
  border-color: #d13a04;
  background-color: #d13a04;
}
.short-drama-pr .contact .mwform-checkbox-field.horizontal-item label input[type=checkbox]:checked + .mwform-checkbox-field-text::after {
  content: "";
  position: absolute;
  left: -6.6666666667vw;
  top: 46%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  width: 1.6vw;
  height: 2.6666666667vw;
  border: solid var(--white);
  border-width: 0 0.5333333333vw 0.5333333333vw 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 1024px) {
  .short-drama-pr .contact .mwform-checkbox-field.horizontal-item label input[type=checkbox]:checked + .mwform-checkbox-field-text::after {
    left: -1.7361111111vw;
    width: 0.4166666667vw;
    height: 0.6944444444vw;
    border-width: 0 0.1388888889vw 0.1388888889vw 0;
  }
}
.short-drama-pr .contact .mwform-checkbox-field.horizontal-item label input[type=checkbox]:hover:not(:checked) + .mwform-checkbox-field-text::before {
  border-color: #d13a04;
}
.short-drama-pr .contact .mwform-checkbox-field.horizontal-item label .mwform-checkbox-field-text {
  position: relative;
  font-size: 4.2666666667vw;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  .short-drama-pr .contact .mwform-checkbox-field.horizontal-item label .mwform-checkbox-field-text {
    font-size: 1.1111111111vw;
  }
}
.short-drama-pr .contact .form-privacy {
  margin-bottom: 6.4vw;
  font-size: 3.7333333333vw;
  text-align: center;
}
@media (min-width: 1024px) {
  .short-drama-pr .contact .form-privacy {
    margin-bottom: 2.2222222222vw;
    font-size: 0.9722222222vw;
  }
}
.short-drama-pr .contact .form-privacy a {
  line-height: 1.8;
  color: #424242;
  text-decoration: underline;
}
.short-drama-pr .contact__confirm {
  display: none;
  margin-bottom: 2.6666666667vw;
  font-size: 4.2666666667vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .contact__confirm {
    margin-bottom: 1.3888888889vw;
    font-size: 1.1111111111vw;
  }
}
.short-drama-pr .contact__complete {
  margin-bottom: 12.8vw;
  font-size: 4.2666666667vw;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  .short-drama-pr .contact__complete {
    margin-bottom: 6.6666666667vw;
    font-size: 1.1111111111vw;
  }
}
.short-drama-pr .contact__complete strong {
  display: block;
  margin-bottom: 8vw;
  font-size: 4.8vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .contact__complete strong {
    margin-bottom: 2.0833333333vw;
    font-size: 1.25vw;
  }
}
.short-drama-pr .contact .mw_wp_form_confirm .form-content p {
  padding-left: 4.2666666667vw;
  font-size: 4.2666666667vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .contact .mw_wp_form_confirm .form-content p {
    padding-left: 1.1111111111vw;
    font-size: 1.1111111111vw;
  }
}
.short-drama-pr .contact .mw_wp_form_confirm .form-content--acceptance {
  display: none;
}
.short-drama-pr .contact .mw_wp_form_confirm .contact__confirm {
  display: block;
}
.short-drama-pr .contact [name=submitBack] {
  display: block;
  width: 74.6666666667vw;
  height: 16vw;
  margin: 0 auto 2.6666666667vw;
  background-color: var(--white);
  border: 0.5333333333vw solid #424242;
  border-radius: 1.6vw;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4.2666666667vw;
  color: #424242;
  font-weight: 700;
}
@media (min-width: 1024px) {
  .short-drama-pr .contact [name=submitBack] {
    width: 22.5vw;
    height: 5.6944444444vw;
    margin-bottom: 0.6944444444vw;
    border-width: 0.1388888889vw;
    border-radius: 0.6944444444vw;
    font-size: 1.6666666667vw;
    display: block;
  }
}
.short-drama-pr .contact [name=submitConfirm],
.short-drama-pr .contact [name=mwform_submit] {
  display: block;
  width: 74.6666666667vw;
  height: 16vw;
  margin: 0 auto;
  background-color: var(--white);
  border: 0.5333333333vw solid #d13a04;
  border-radius: 1.6vw;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4.2666666667vw;
  font-weight: 700;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(193, 19, 5, 0.8)), color-stop(57%, #e66a02), to(#f08301));
  background-image: linear-gradient(to right, rgba(193, 19, 5, 0.8) 0%, #e66a02 57%, #f08301 100%);
}
@supports (-webkit-background-clip: text) {
  .short-drama-pr .contact [name=submitConfirm],
  .short-drama-pr .contact [name=mwform_submit] {
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}
@media (min-width: 1024px) {
  .short-drama-pr .contact [name=submitConfirm],
  .short-drama-pr .contact [name=mwform_submit] {
    width: 22.5vw;
    height: 5.6944444444vw;
    border: 0.1388888889vw solid #d13a04;
    border-radius: 0.6944444444vw;
    font-size: 1.6666666667vw;
  }
}
.short-drama-pr .footer {
  background-color: var(--white);
}
.short-drama-pr .footer__top {
  padding: 10.6666666667vw 4vw 6.4vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .footer__top {
    padding: 2.7777777778vw 1.0416666667vw 1.6666666667vw;
  }
}
.short-drama-pr .footer__logo {
  display: block;
  width: 18.1333333333vw;
  margin: 0 auto 11.2vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .footer__logo {
    width: 8.5416666667vw;
    margin-bottom: 2.9166666667vw;
  }
}
.short-drama-pr .footer__nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 5.3333333333vw;
}
@media (min-width: 1024px) {
  .short-drama-pr .footer__nav__list {
    gap: 0 1.3888888889vw;
  }
}
.short-drama-pr .footer__nav__item a {
  font-size: 3.7333333333vw;
  color: #424242;
}
@media (min-width: 1024px) {
  .short-drama-pr .footer__nav__item a {
    font-size: 0.9722222222vw;
  }
}
.short-drama-pr .footer__copyright {
  padding: 3.2vw;
  background-color: #f4f4f4;
  font-size: 3.2vw;
  font-weight: 500;
  line-height: 1.8;
  color: #8d8d8d;
  text-align: center;
}
@media (min-width: 1024px) {
  .short-drama-pr .footer__copyright {
    padding: 0.8333333333vw;
    font-size: 0.8333333333vw;
  }
}/*# sourceMappingURL=style.css.map */