@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato&family=EB+Garamond&family=Noto+Sans+JP&display=swap");
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-auto {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-align-stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.flex-justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-justify-btw {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-dir-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.flex-dir-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.position-rel {
  position: relative !important;
}

.position-abs {
  position: absolute !important;
}

.position-fix {
  position: fixed !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-left {
  text-align: left !important;
}

.text-justify {
  text-align: justify !important;
}

@media (max-width: 600px) {
  .text-center.sp-left,
  .text-right.sp-left,
  .text-justify.sp-left {
    text-align: left !important;
  }
  .text-left.sp-center,
  .text-right.sp-center,
  .text-justify.sp-center {
    text-align: center !important;
  }
  .text-left.sp-right,
  .text-center.sp-right,
  .text-justify.sp-right {
    text-align: right !important;
  }
  .text-left.sp-justify,
  .text-center.sp-justify,
  .text-right.sp-justify {
    text-align: justify !important;
  }
}
.mg-left {
  margin-left: auto;
}

.mg-right {
  margin-right: auto;
}

.mg-center {
  margin-left: auto;
  margin-right: auto;
}

.display-bl {
  display: block;
}

.display-ib {
  display: inline-block;
}

.display-in {
  display: inline;
}

.fade-in {
  -webkit-transition: -webkit-transform 1.25s cubic-bezier(0.19, 1, 0.22, 1) 0s, opacity 0.75s linear 0s;
  -webkit-transition: opacity 0.75s linear 0s, -webkit-transform 1.25s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  transition: opacity 0.75s linear 0s, -webkit-transform 1.25s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  transition: transform 1.25s cubic-bezier(0.19, 1, 0.22, 1) 0s, opacity 0.75s linear 0s;
  transition: transform 1.25s cubic-bezier(0.19, 1, 0.22, 1) 0s, opacity 0.75s linear 0s, -webkit-transform 1.25s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  opacity: 0;
  -webkit-transform: translateY(80px);
  transform: translateY(80px);
}
.fade-in.show {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.fade-in.delay1 {
  -webkit-transition: -webkit-transform 1.25s cubic-bezier(0.19, 1, 0.22, 1) 0.075s, opacity 0.75s linear 0.075s;
  -webkit-transition: opacity 0.75s linear 0.075s, -webkit-transform 1.25s cubic-bezier(0.19, 1, 0.22, 1) 0.075s;
  transition: opacity 0.75s linear 0.075s, -webkit-transform 1.25s cubic-bezier(0.19, 1, 0.22, 1) 0.075s;
  transition: transform 1.25s cubic-bezier(0.19, 1, 0.22, 1) 0.075s, opacity 0.75s linear 0.075s;
  transition: transform 1.25s cubic-bezier(0.19, 1, 0.22, 1) 0.075s, opacity 0.75s linear 0.075s, -webkit-transform 1.25s cubic-bezier(0.19, 1, 0.22, 1) 0.075s;
}
.fade-in.delay2 {
  -webkit-transition: -webkit-transform 1.25s cubic-bezier(0.19, 1, 0.22, 1) 0.125s, opacity 0.75s linear 0.125s;
  -webkit-transition: opacity 0.75s linear 0.125s, -webkit-transform 1.25s cubic-bezier(0.19, 1, 0.22, 1) 0.125s;
  transition: opacity 0.75s linear 0.125s, -webkit-transform 1.25s cubic-bezier(0.19, 1, 0.22, 1) 0.125s;
  transition: transform 1.25s cubic-bezier(0.19, 1, 0.22, 1) 0.125s, opacity 0.75s linear 0.125s;
  transition: transform 1.25s cubic-bezier(0.19, 1, 0.22, 1) 0.125s, opacity 0.75s linear 0.125s, -webkit-transform 1.25s cubic-bezier(0.19, 1, 0.22, 1) 0.125s;
}
.fade-in.fixed {
  -webkit-transition: -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0s, opacity 0.75s linear 0s;
  -webkit-transition: opacity 0.75s linear 0s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  transition: opacity 0.75s linear 0s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  transition: transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0s, opacity 0.75s linear 0s;
  transition: transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0s, opacity 0.75s linear 0s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  opacity: 0;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
.fade-in.fixed.show {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.fade-in.fixed.delay1 {
  -webkit-transition: -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.075s, opacity 0.75s linear 0.075s;
  -webkit-transition: opacity 0.75s linear 0.075s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.075s;
  transition: opacity 0.75s linear 0.075s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.075s;
  transition: transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.075s, opacity 0.75s linear 0.075s;
  transition: transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.075s, opacity 0.75s linear 0.075s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.075s;
}
.fade-in.fixed.delay2 {
  -webkit-transition: -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.125s, opacity 0.75s linear 0.125s;
  -webkit-transition: opacity 0.75s linear 0.125s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.125s;
  transition: opacity 0.75s linear 0.125s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.125s;
  transition: transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.125s, opacity 0.75s linear 0.125s;
  transition: transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.125s, opacity 0.75s linear 0.125s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.125s;
}

section.space,
.container.space,
.container-fluid.space,
.content.space {
  padding-top: 160px;
  padding-bottom: 160px;
}
section.min-space,
.container.min-space,
.container-fluid.min-space,
.content.min-space {
  padding-top: 80px;
  padding-bottom: 80px;
}
section.top-space,
.container.top-space,
.container-fluid.top-space,
.content.top-space {
  padding-top: 160px;
}
section.bottom-space,
.container.bottom-space,
.container-fluid.bottom-space,
.content.bottom-space {
  padding-bottom: 160px;
}
section.min-top-space,
.container.min-top-space,
.container-fluid.min-top-space,
.content.min-top-space {
  padding-top: 80px;
}
section.min-bottom-space,
.container.min-bottom-space,
.container-fluid.min-bottom-space,
.content.min-bottom-space {
  padding-bottom: 80px;
}
section.large-top-space,
.container.large-top-space,
.container-fluid.large-top-space,
.content.large-top-space {
  padding-top: 200px;
}
section.large-bottom-space,
.container.large-bottom-space,
.container-fluid.large-bottom-space,
.content.large-bottom-space {
  padding-bottom: 200px;
}
@media (max-width: 600px) {
  section.space,
  .container.space,
  .container-fluid.space,
  .content.space {
    padding-top: 72px;
    padding-bottom: 72px;
  }
  section.min-space,
  .container.min-space,
  .container-fluid.min-space,
  .content.min-space {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  section.top-space,
  .container.top-space,
  .container-fluid.top-space,
  .content.top-space {
    padding-top: 72px;
  }
  section.bottom-space,
  .container.bottom-space,
  .container-fluid.bottom-space,
  .content.bottom-space {
    padding-bottom: 72px;
  }
  section.min-top-space,
  .container.min-top-space,
  .container-fluid.min-top-space,
  .content.min-top-space {
    padding-top: 40px;
  }
  section.min-bottom-space,
  .container.min-bottom-space,
  .container-fluid.min-bottom-space,
  .content.min-bottom-space {
    padding-bottom: 40px;
  }
  section.large-top-space,
  .container.large-top-space,
  .container-fluid.large-top-space,
  .content.large-top-space {
    padding-top: 100px;
  }
  section.large-bottom-space,
  .container.large-bottom-space,
  .container-fluid.large-bottom-space,
  .content.large-bottom-space {
    padding-bottom: 100px;
  }
}

.container {
  max-width: 1320px;
  padding-left: 2vw;
  padding-right: 2vw;
  margin-left: auto;
  margin-right: auto;
}
.container.narrow {
  max-width: 940px;
}
.container.wide {
  max-width: 1600px;
}
.container.no-padding {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 600px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .container.no-padding, .container.no-padding-sp {
    padding-left: 0;
    padding-right: 0;
  }
  .container.padding-sp {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.container-fluid {
  padding-left: 2vw;
  padding-right: 2vw;
  margin-left: auto;
  margin-right: auto;
}
.container-fluid.no-padding {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 600px) {
  .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }
  .container-fluid.no-padding, .container-fluid.no-padding-sp {
    padding-left: 0;
    padding-right: 0;
  }
}

.content {
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}
.content.wide {
  max-width: 1120px;
}
.content.narrow {
  max-width: 600px;
}
.content.minimum-space {
  padding-top: 40px;
  padding-bottom: 40px;
}
.content.minimum-top-space {
  padding-top: 40px;
}
.content.minimum-bottom-space {
  padding-bottom: 40px;
}
.content {
  padding-left: 2vw;
  padding-right: 2vw;
}
.content.no-padding {
  padding-left: 0;
  padding-right: 0;
}
.container .content, .container-fluid .content {
  padding-left: 0;
  padding-right: 0;
}
.container.no-padding .content, .container-fluid.no-padding .content {
  padding-left: 2vw;
  padding-right: 2vw;
}
@media (max-width: 600px) {
  .content {
    padding-left: 20px;
    padding-right: 20px;
  }
  .content.no-padding, .content.no-padding-sp {
    padding-left: 0px;
    padding-right: 0px;
  }
  .container .content, .container-fluid .content {
    padding-left: 0;
    padding-right: 0;
  }
  .container.no-padding .content, .container-fluid.no-padding .content {
    padding-left: 20px;
    padding-right: 20px;
  }
  .container.no-padding-sp .content, .container-fluid.no-padding-sp .content {
    padding-left: 0;
    padding-right: 0;
  }
}

.fs-1 {
  font-size: 3rem !important;
}

.fs-2 {
  font-size: 2rem !important;
}

.fs-3 {
  font-size: 1.75rem !important;
}

.fs-4 {
  font-size: 1.5rem !important;
}

.fs-5 {
  font-size: 1.25rem !important;
}

.fs-6 {
  font-size: 1.125rem !important;
}

.fs-sm {
  font-size: 0.875rem !important;
}

.fs-min {
  font-size: 0.75rem !important;
}

@media (max-width: 600px) {
  .fs-1.fs-1-sp,
  .fs-2.fs-1-sp,
  .fs-3.fs-1-sp,
  .fs-4.fs-1-sp,
  .fs-5.fs-1-sp,
  .fs-6.fs-1-sp,
  .fs-sm.fs-1-sp,
  .fs-min.fs-1-sp {
    font-size: 2rem !important;
  }
  .fs-1.fs-2-sp,
  .fs-2.fs-2-sp,
  .fs-3.fs-2-sp,
  .fs-4.fs-2-sp,
  .fs-5.fs-2-sp,
  .fs-6.fs-2-sp,
  .fs-sm.fs-2-sp,
  .fs-min.fs-2-sp {
    font-size: 1.75rem !important;
  }
  .fs-1.fs-3-sp,
  .fs-2.fs-3-sp,
  .fs-3.fs-3-sp,
  .fs-4.fs-3-sp,
  .fs-5.fs-3-sp,
  .fs-6.fs-3-sp,
  .fs-sm.fs-3-sp,
  .fs-min.fs-3-sp {
    font-size: 1.5rem !important;
  }
  .fs-1.fs-4-sp,
  .fs-2.fs-4-sp,
  .fs-3.fs-4-sp,
  .fs-4.fs-4-sp,
  .fs-5.fs-4-sp,
  .fs-6.fs-4-sp,
  .fs-sm.fs-4-sp,
  .fs-min.fs-4-sp {
    font-size: 1.25rem !important;
  }
  .fs-1.fs-5-sp,
  .fs-2.fs-5-sp,
  .fs-3.fs-5-sp,
  .fs-4.fs-5-sp,
  .fs-5.fs-5-sp,
  .fs-6.fs-5-sp,
  .fs-sm.fs-5-sp,
  .fs-min.fs-5-sp {
    font-size: 1.125rem !important;
  }
  .fs-1.fs-6-sp,
  .fs-2.fs-6-sp,
  .fs-3.fs-6-sp,
  .fs-4.fs-6-sp,
  .fs-5.fs-6-sp,
  .fs-6.fs-6-sp,
  .fs-sm.fs-6-sp,
  .fs-min.fs-6-sp {
    font-size: 1rem !important;
  }
  .fs-1.fs-rg-sp,
  .fs-2.fs-rg-sp,
  .fs-3.fs-rg-sp,
  .fs-4.fs-rg-sp,
  .fs-5.fs-rg-sp,
  .fs-6.fs-rg-sp,
  .fs-sm.fs-rg-sp,
  .fs-min.fs-rg-sp {
    font-size: 0.875rem !important;
  }
  .fs-1.fs-sm-sp,
  .fs-2.fs-sm-sp,
  .fs-3.fs-sm-sp,
  .fs-4.fs-sm-sp,
  .fs-5.fs-sm-sp,
  .fs-6.fs-sm-sp,
  .fs-sm.fs-sm-sp,
  .fs-min.fs-sm-sp {
    font-size: 0.875rem !important;
  }
  .fs-1.fs-min-sp,
  .fs-2.fs-min-sp,
  .fs-3.fs-min-sp,
  .fs-4.fs-min-sp,
  .fs-5.fs-min-sp,
  .fs-6.fs-min-sp,
  .fs-sm.fs-min-sp,
  .fs-min.fs-min-sp {
    font-size: 0.75rem !important;
  }
}
body {
  font-family: "Lato", "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", YuGothicMedium, "游ゴシック体", YuGothic, "Yu Gothic", "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro W3", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 1rem;
  letter-spacing: 0.5px;
}
@media (max-width: 600px) {
  body {
    font-size: 0.9375rem;
  }
}

.black {
  color: black !important;
}

.white {
  color: white !important;
}

.weight-normal {
  font-weight: 400 !important;
}

.weight-medium {
  font-weight: 500 !important;
}

.weight-bold {
  font-weight: 700 !important;
}

.weight-black {
  font-weight: 900 !important;
}

.l-height-100 {
  line-height: 100% !important;
}

.l-height-125 {
  line-height: 125% !important;
}

.l-height-150 {
  line-height: 150% !important;
}

.l-height-175 {
  line-height: 175% !important;
}

.l-height-200 {
  line-height: 200% !important;
}

h1, h2, h3, h4, h5, h6 {
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  margin: 0.25em 0px;
  font-weight: 700;
}
h1 > small, h2 > small, h3 > small, h4 > small, h5 > small, h6 > small {
  font-size: 60%;
  vertical-align: middle;
}
h1.min-space, h2.min-space, h3.min-space, h4.min-space, h5.min-space, h6.min-space {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}
h1.top-space, h2.top-space, h3.top-space, h4.top-space, h5.top-space, h6.top-space {
  margin-top: 1.85em;
  margin-bottom: 0px;
}
h1.bottom-space, h2.bottom-space, h3.bottom-space, h4.bottom-space, h5.bottom-space, h6.bottom-space {
  margin-top: 0px;
  margin-bottom: 1.85em;
}
h1, h2 {
  line-height: 125%;
}

h3, h4, h5, h6 {
  line-height: 145%;
}

h1 {
  font-size: 2.25rem;
}
@media (max-width: 600px) {
  h1 {
    font-size: 1.5rem;
  }
}

h2 {
  font-size: 2rem;
}
h2.large {
  font-size: 2.5rem;
}
@media (max-width: 600px) {
  h2 {
    font-size: 2rem;
  }
  h2.large {
    font-size: 2.5rem;
  }
}

h3 {
  font-size: 1.75rem;
}
h3.large {
  font-size: 2rem;
}
@media (max-width: 600px) {
  h3 {
    font-size: 1.5rem;
  }
  h3.large {
    font-size: 1.625rem;
  }
}

h4 {
  font-size: 1.5rem;
}
h4.large {
  font-size: 2rem;
}
@media (max-width: 600px) {
  h4 {
    font-size: 1.125rem;
  }
  h4.large {
    font-size: 1.75rem;
  }
}

h5 {
  font-size: 1.25rem;
}
h5.large {
  font-size: 1.5rem;
}
@media (max-width: 600px) {
  h5 {
    font-size: 1.125rem;
  }
  h5.large {
    font-size: 1.25rem;
  }
}

h6 {
  font-size: 1.125rem;
}
h6.large {
  font-size: 1.25rem;
}
@media (max-width: 600px) {
  h6 {
    font-size: 1.0625rem;
  }
  h6.large {
    font-size: 1.125rem;
  }
}

p {
  font-size: 1rem;
  line-height: 1.85em;
  margin-top: 1.85em;
  margin-bottom: 1.85em;
}
p.lead-text {
  font-size: 1.125rem;
  font-weight: 500;
}
p.sub-copy {
  font-size: 1.25rem;
  font-weight: 500;
}
p.large-space {
  margin-top: 3em;
  margin-bottom: 3em;
}
p.min-space {
  margin-top: 1.15em;
  margin-bottom: 1.15em;
}
p.top-space {
  margin-top: 1.85em;
  margin-bottom: 0px;
}
p.bottom-space {
  margin-top: 0px;
  margin-bottom: 1.85em;
}
p.no-space {
  margin: 0;
}
p.small {
  font-size: 0.875rem;
}
p.large {
  font-size: 1.25rem;
}
p.bold {
  font-weight: 700;
}
@media (max-width: 600px) {
  p {
    line-height: 1.85em;
    margin-top: 1.75em;
    margin-bottom: 1.75em;
    font-size: 0.875rem;
  }
  p.lead-text {
    font-size: 1rem;
    font-weight: 500;
  }
  p.smaller {
    font-size: 13px;
  }
  p.large {
    font-size: 1rem;
  }
}
@media (max-width: 350px) {
  p.large {
    font-size: 15px;
  }
}

span.underline {
  text-decoration: underline;
}

strong {
  font-weight: 700;
}

small {
  display: inline-block;
  font-size: 80%;
  line-height: 1.75;
}
sup, sub {
  font-size: 70%;
  letter-spacing: 0;
}
sub {
  vertical-align: baseline;
}

li, dt, dd {
  font-size: 1rem;
  word-wrap: break-word;
  word-break: break-all;
}
@media (max-width: 600px) {
  li, dt, dd {
    font-size: 15px;
  }
}

ul.list {
  margin-top: 2.15em;
  margin-bottom: 2.15em;
}
ul.list li, ul.list dt, ul.list dd {
  line-height: 1.65;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-left {
  text-align: left !important;
}

.text-justify {
  text-align: justify !important;
}

@media (max-width: 600px) {
  .text-center.sp-left,
  .text-right.sp-left,
  .text-justify.sp-left {
    text-align: left !important;
  }
  .text-left.sp-center,
  .text-right.sp-center,
  .text-justify.sp-center {
    text-align: center !important;
  }
  .text-left.sp-right,
  .text-center.sp-right,
  .text-justify.sp-right {
    text-align: right !important;
  }
  .text-left.sp-justify,
  .text-center.sp-justify,
  .text-right.sp-justify {
    text-align: justify !important;
  }
}
.button.btn-primary {
  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;
  width: 100%;
  max-width: 240px;
  min-width: 120px;
  height: 40px;
  color: white;
  font-size: 16px;
  border-radius: 20px;
  border: 1px solid currentColor;
  background-color: transparent;
  -webkit-transition: background-color 0.5s ease-out 0s, color 0.5s linear 0s;
  transition: background-color 0.5s ease-out 0s, color 0.5s linear 0s;
}
.button.btn-primary:hover {
  background-color: white;
  color: black;
}
a.ic-blank {
  display: inline-block;
  padding-right: 24px;
  background-image: url(../images/ic_new_tab.svg);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 12px 12px;
}
.m-0 {
  margin: 0;
}

.m-1 {
  margin: 0.25rem;
}

.m-2 {
  margin: 0.5rem;
}

.m-3 {
  margin: 1rem;
}

.m-4 {
  margin: 1.5rem;
}

.m-5 {
  margin: 3rem;
}

.m-6 {
  margin: 2.5rem;
}

.m-auto {
  margin: auto;
}

.mx-0 {
  margin-right: 0;
  margin-left: 0;
}

.mx-1 {
  margin-right: 0.25rem;
  margin-left: 0.25rem;
}

.mx-2 {
  margin-right: 0.5rem;
  margin-left: 0.5rem;
}

.mx-3 {
  margin-right: 1rem;
  margin-left: 1rem;
}

.mx-4 {
  margin-right: 1.5rem;
  margin-left: 1.5rem;
}

.mx-5 {
  margin-right: 2.5rem;
  margin-left: 2.5rem;
}

.mx-6 {
  margin-right: 3rem;
  margin-left: 3rem;
}

.mx-auto {
  margin-right: auto;
  margin-left: auto;
}

.my-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.my-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.my-3 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.my-4 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.my-5 {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.my-6 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mt-5 {
  margin-top: 2.5rem;
}

.mt-6 {
  margin-top: 3rem;
}

.mt-auto {
  margin-top: auto;
}

.me-0 {
  margin-right: 0;
}

.me-1 {
  margin-right: 0.25rem;
}

.me-2 {
  margin-right: 0.5rem;
}

.me-3 {
  margin-right: 1rem;
}

.me-4 {
  margin-right: 1.5rem;
}

.me-5 {
  margin-right: 2.5rem;
}

.me-6 {
  margin-right: 3rem;
}

.me-auto {
  margin-right: auto;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-5 {
  margin-bottom: 2.5rem;
}

.mb-6 {
  margin-bottom: 3rem;
}

.mb-auto {
  margin-bottom: auto;
}

.ms-0 {
  margin-left: 0;
}

.ms-1 {
  margin-left: 0.25rem;
}

.ms-2 {
  margin-left: 0.5rem;
}

.ms-3 {
  margin-left: 1rem;
}

.ms-4 {
  margin-left: 1.5rem;
}

.ms-5 {
  margin-left: 2.5rem;
}

.ms-6 {
  margin-left: 3rem;
}

.ms-auto {
  margin-left: auto;
}

.p-0 {
  padding: 0;
}

.p-1 {
  padding: 0.25rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-3 {
  padding: 1rem;
}

.p-4 {
  padding: 1.5rem;
}

.p-5 {
  padding: 2.5rem;
}

.p-6 {
  padding: 3rem;
}

.px-0 {
  padding-right: 0;
  padding-left: 0;
}

.px-1 {
  padding-right: 0.25rem;
  padding-left: 0.25rem;
}

.px-2 {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.px-3 {
  padding-right: 1rem;
  padding-left: 1rem;
}

.px-4 {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.px-5 {
  padding-right: 2.5rem;
  padding-left: 2.5rem;
}

.px-6 {
  padding-right: 3rem;
  padding-left: 3rem;
}

.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-4 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-5 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.py-6 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.pt-0 {
  padding-top: 0;
}

.pt-1 {
  padding-top: 0.25rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pt-3 {
  padding-top: 1rem;
}

.pt-4 {
  padding-top: 1.5rem;
}

.pt-5 {
  padding-top: 2.5rem;
}

.pt-6 {
  padding-top: 3rem;
}

.pe-0 {
  padding-right: 0;
}

.pe-1 {
  padding-right: 0.25rem;
}

.pe-2 {
  padding-right: 0.5rem;
}

.pe-3 {
  padding-right: 1rem;
}

.pe-4 {
  padding-right: 1.5rem;
}

.pe-5 {
  padding-right: 2.5rem;
}

.pe-6 {
  padding-right: 3rem;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-1 {
  padding-bottom: 0.25rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.pb-3 {
  padding-bottom: 1rem;
}

.pb-4 {
  padding-bottom: 1.5rem;
}

.pb-5 {
  padding-bottom: 2.5rem;
}

.pb-6 {
  padding-bottom: 3rem;
}

.ps-0 {
  padding-left: 0;
}

.ps-1 {
  padding-left: 0.25rem;
}

.ps-2 {
  padding-left: 0.5rem;
}

.ps-3 {
  padding-left: 1rem;
}

.ps-4 {
  padding-left: 1.5rem;
}

.ps-5 {
  padding-left: 2.5rem;
}

.ps-6 {
  padding-left: 3rem;
}

.gap-0 {
  gap: 0;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 1rem;
}

.gap-4 {
  gap: 1.5rem;
}

.gap-5 {
  gap: 2.5rem;
}

.gap-6 {
  gap: 3rem;
}

.row-gap-0 {
  row-gap: 0;
}

.row-gap-1 {
  row-gap: 0.25rem;
}

.row-gap-2 {
  row-gap: 0.5rem;
}

.row-gap-3 {
  row-gap: 1rem;
}

.row-gap-4 {
  row-gap: 1.5rem;
}

.row-gap-5 {
  row-gap: 2.5rem;
}

.row-gap-6 {
  row-gap: 3rem;
}

.column-gap-0 {
  -moz-column-gap: 0;
  -webkit-column-gap: 0;
          column-gap: 0;
}

.column-gap-1 {
  -moz-column-gap: 0.25rem;
  -webkit-column-gap: 0.25rem;
          column-gap: 0.25rem;
}

.column-gap-2 {
  -moz-column-gap: 0.5rem;
  -webkit-column-gap: 0.5rem;
          column-gap: 0.5rem;
}

.column-gap-3 {
  -moz-column-gap: 1rem;
  -webkit-column-gap: 1rem;
          column-gap: 1rem;
}

.column-gap-4 {
  -moz-column-gap: 1.5rem;
  -webkit-column-gap: 1.5rem;
          column-gap: 1.5rem;
}

.column-gap-5 {
  -moz-column-gap: 2.5rem;
  -webkit-column-gap: 2.5rem;
          column-gap: 2.5rem;
}

.column-gap-6 {
  -moz-column-gap: 3rem;
  -webkit-column-gap: 3rem;
          column-gap: 3rem;
}

.pc {
  display: block !important;
}

.pci {
  display: inline !important;
}

.sp {
  display: none !important;
}

.spi {
  display: none !important;
}

.lpc {
  display: block !important;
}

.lpci {
  display: inline !important;
}

.tb {
  display: none !important;
}

.tbi {
  display: none !important;
}

.ltb {
  display: block !important;
}

.ltbi {
  display: inline !important;
}

.smt {
  display: none !important;
}

.smti {
  display: none !important;
}

.xsp {
  display: none !important;
}

.xspi {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .lpc {
    display: none !important;
  }
  .lpci {
    display: none !important;
  }
  .tb {
    display: block !important;
  }
  .tbi {
    display: inline !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .pci {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .spi {
    display: inline !important;
  }
}
@media screen and (max-width: 480px) {
  .ltb {
    display: none !important;
  }
  .ltbi {
    display: none !important;
  }
  .smt {
    display: block !important;
  }
  .smti {
    display: inline !important;
  }
}
@media screen and (max-width: 320px) {
  .sp.ex-xp {
    display: none !important;
  }
  .spi.ex-xp {
    display: none !important;
  }
  .ex-xp {
    display: none !important;
  }
  .xsp {
    display: block !important;
  }
  .xspi {
    display: inline !important;
  }
}
html,
body {
  height: 100%;
  margin: 0px;
  padding: 0px;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

:focus {
  outline: 0;
}

a {
  text-decoration: none;
  outline: none;
  color: currentColor;
}

button, input[type=submit], input[type=reset] {
  cursor: pointer;
}

figure, picture {
  display: block;
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
  -webkit-margin-start: 0;
          margin-inline-start: 0;
  -webkit-margin-end: 0;
          margin-inline-end: 0;
  margin: 0;
}
figure img, picture img {
  width: 100%;
  height: auto;
}
figure img.auto-image, picture img.auto-image {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
figure figcaption, picture figcaption {
  margin-top: 0.5rem;
}
img {
  width: 100%;
  height: auto;
  vertical-align: top;
}
img.fit-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  font-family: "object-fit: cover;";
}
img.fit-image.contain {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  font-family: "object-fit: contain;";
}
img.auto-image {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

svg {
  display: block;
  width: 100%;
  height: auto;
}

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

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

header {
  width: 100vw;
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}
@media (max-width: 600px) {
  header {
    height: 40px;
    background-color: transparent;
  }
}
header .header-container {
  max-width: 1600px;
  padding-left: 2vw;
  padding-right: 2vw;
  margin-left: auto;
  margin-right: auto;
  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 (max-width: 600px) {
  header .header-container {
    height: 40px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
header .header-logo {
  position: absolute;
  z-index: 5;
}
header .header-logo img {
  width: 210px;
  height: auto;
}
@media (max-width: 600px) {
  header .header-logo img {
    width: 144px;
  }
}
header .header-navigation .header-menu {
  width: 60vh;
  margin-left: auto;
  padding: 7vh 0px;
}
header .header-navigation .header-menu li {
  font-size: 8vh;
  font-weight: 500;
  line-height: 100%;
  margin: 7vh 0px;
  -webkit-text-fill-color: white;
  -webkit-text-stroke: 1px black;
  transition: -webkit-text-fill-color 0.25s linear, -webkit-text-stroke 0.25s linear;
}
header .header-navigation .header-menu li:hover {
  -webkit-text-fill-color: black;
  -webkit-text-stroke: 1px white;
}
header .header-navigation .header-menu li a {
  display: block;
  padding: 0.25rem 0px;
  position: relative;
  padding-bottom: 4px;
}
header .header-navigation {
  position: relative;
}
header .header-navigation .header-menu-tagline {
  position: absolute;
  left: 20px;
  bottom: 32px;
}
header .header-navigation {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4;
  background-color: rgba(0, 0, 0, 0.88);
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  transition: opacity 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
}
header .header-navigation.init {
  display: block;
}
header .header-navigation.show {
  opacity: 1;
}
@media (max-width: 600px) {
  header .header-navigation .header-nav-name {
    text-align: center;
    padding-top: 64px;
  }
  header .header-navigation .header-nav-name h1, header .header-navigation .header-nav-name small {
    font-weight: 400;
    line-height: 1;
  }
  header .header-navigation .header-nav-name h1 {
    margin: 0;
    font-size: 37px;
  }
  header .header-navigation .header-nav-name small {
    display: block;
    font-size: 16px;
  }
  header .header-navigation .header-nav-logo {
    position: absolute;
    top: calc(88% - 22px);
    left: calc(50% - 60px);
  }
  header .header-navigation .header-nav-logo img {
    width: 120px;
  }
  header .header-navigation .header-menu {
    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: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 40px;
    width: 100%;
    height: 100%;
    margin-top: -8%;
    padding-right: 20px;
  }
  header .header-navigation .header-menu li {
    font-size: 4vh;
    margin: 0.75rem 0px;
  }
  header .header-navigation .header-menu li:hover {
    -webkit-text-fill-color: white;
    -webkit-text-stroke: 1px black;
  }
  header .header-navigation .header-menu li a {
    display: inline-block;
    padding: 0.25rem 0px;
  }
  header .header-navigation .header-menu li a.ic-blank {
    padding: 0.5rem 24px 0.5rem 0px;
  }
  header .header-navigation .header-menu li a:hover {
    opacity: 1;
  }
}
header .header-menu-button {
  margin-left: 40px;
  width: 40px;
  height: 40px;
  border: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: transparent;
  position: relative;
  z-index: 5;
  padding: 0;
  color: currentColor;
}
header .header-menu-button .btn-hamburger, header .header-menu-button .btn-hamburger:before, header .header-menu-button .btn-hamburger:after {
  width: 24px;
  height: 1px;
  position: absolute;
  background-color: currentColor;
}
header .header-menu-button .btn-hamburger {
  top: 50%;
  left: 50%;
  margin-top: -1px;
  margin-left: -10px;
  -webkit-transition: background-color 0.15s linear 0s;
  transition: background-color 0.15s linear 0s;
}
header .header-menu-button .btn-hamburger:before, header .header-menu-button .btn-hamburger:after {
  content: "";
  left: 0;
  display: block;
  border-radius: 1px;
  -webkit-transition: top 0.25s ease-out, transform 0.25s ease-out, background-color 0.25s ease-out, width 0.25s ease-out;
  -webkit-transition: top 0.25s ease-out, background-color 0.25s ease-out, width 0.25s ease-out, -webkit-transform 0.25s ease-out;
  transition: top 0.25s ease-out, background-color 0.25s ease-out, width 0.25s ease-out, -webkit-transform 0.25s ease-out;
  transition: top 0.25s ease-out, transform 0.25s ease-out, background-color 0.25s ease-out, width 0.25s ease-out;
  transition: top 0.25s ease-out, transform 0.25s ease-out, background-color 0.25s ease-out, width 0.25s ease-out, -webkit-transform 0.25s ease-out;
}
header .header-menu-button .btn-hamburger:before {
  top: -6px;
}
header .header-menu-button .btn-hamburger:after {
  top: 6px;
}
header .header-menu-button .btn-hamburger.active {
  background-color: transparent !important;
  -webkit-transition: background-color 0.25s linear 0.3s;
  transition: background-color 0.25s linear 0.3s;
}
header .header-menu-button .btn-hamburger.active:before, header .header-menu-button .btn-hamburger.active:after {
  width: 20px;
  top: 0px;
}
header .header-menu-button .btn-hamburger.active:before {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
header .header-menu-button .btn-hamburger.active:after {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
header .header-menu-button .btn-label {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}
@media (max-width: 600px) {
  header .header-menu-button {
    display: block;
    margin-left: 12px;
  }
}
header .lang-switcher {
  position: relative;
  margin-left: auto;
}
header .lang-switcher .lang-switcher__toggle {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 0;
  background: transparent;
  padding: 4px 4px;
  color: white;
  font: inherit;
  cursor: pointer;
}
header .lang-switcher .lang-switcher__menu {
  position: absolute;
  top: calc(100% + 0px);
  right: -16px;
  min-width: 100px;
  padding: 8px 16px 10px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(8px);
          transform: translateY(8px);
  -webkit-transition: opacity 0.25s ease, visibility 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, visibility 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, -webkit-transform 0.25s ease;
  z-index: 100;
}
@media (max-width: 600px) {
  header .lang-switcher .lang-switcher__menu {
    right: -8px;
    padding: 12px 12px 14px;
  }
}
header .lang-switcher .lang-switcher__list {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: right;
}
header .lang-switcher .lang-switcher__item + .lang-switcher__item {
  margin-top: 12px;
}
@media (max-width: 600px) {
  header .lang-switcher .lang-switcher__item + .lang-switcher__item {
    margin-top: 10px;
  }
}
header .lang-switcher .lang-switcher__item .lang-switcher__link {
  color: white;
  text-decoration: none;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
header .lang-switcher .lang-switcher__item .lang-switcher__link:hover {
  opacity: 0.6;
}
header .lang-switcher .lang-switcher__item .lang-switcher__link.is-current {
  opacity: 0.35;
  pointer-events: none;
}
header .lang-switcher .lang-switcher__item.is-current .lang-switcher__link {
  opacity: 0.35;
  pointer-events: none;
}
header .lang-switcher.is-open .lang-switcher__menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
  .lang-switcher:hover .lang-switcher__menu,
  .lang-switcher:focus-within .lang-switcher__menu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
footer .footer-contact {
  height: 35vw;
  min-height: 360px;
  max-height: 480px;
  background-image: url(../images/gradient_footer.jpg);
  background-position: center;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
footer .footer-contact .contact-heading {
  font-size: 72px;
  font-weight: 400;
}
footer .footer-contact .contact-button {
  width: 100%;
  margin-top: 1rem;
}
footer .footer-contact .contact-button .button {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 600px) {
  footer .footer-contact {
    height: 80vw;
    min-height: 0px;
    max-height: 100%;
  }
  footer .footer-contact .contact-heading {
    font-size: 10vw;
    font-weight: 400;
  }
  footer .footer-contact .contact-button {
    margin-top: 32px;
  }
}
footer .footer-nav {
  padding: 72px 20px 40px;
}
footer .footer-nav .nav-upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
footer .footer-nav .nav-upper .nav-logo {
  width: 100%;
  max-width: 205px;
}
footer .footer-nav .nav-upper .nav-links {
  margin-left: auto;
}
footer .footer-nav .nav-upper .nav-links ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}
footer .footer-nav .nav-info p {
  font-size: 14px;
  line-height: 140%;
  margin: 1.25rem 0px;
}
footer .footer-nav .nav-info ul.nav-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
}
footer .footer-nav .nav-info ul.nav-sns li a {
  display: block;
  width: 24px;
  height: 24px;
}
@media (max-width: 600px) {
  footer .footer-nav {
    padding: 32px 0px 24px;
  }
  footer .footer-nav .nav-upper {
    display: block;
  }
  footer .footer-nav .nav-upper .nav-logo {
    max-width: 60%;
    margin: 0px auto;
  }
  footer .footer-nav .nav-upper .nav-links {
    margin-left: auto;
  }
  footer .footer-nav .nav-upper .nav-links ul {
    display: block;
    padding: 32px 20px 0px;
  }
  footer .footer-nav .nav-upper .nav-links ul li {
    font-size: 20px;
    margin: 1rem 0px;
  }
  footer .footer-nav .nav-upper .nav-links ul li a {
    display: block;
  }
  footer .footer-nav .nav-info {
    padding: 8px 20px 0px;
  }
  footer .footer-nav .nav-info p {
    font-size: 14px;
    line-height: 180%;
    margin: 1.25rem 0px;
  }
  footer .footer-nav .nav-info ul.nav-sns {
    -webkit-column-gap: 32px;
       -moz-column-gap: 32px;
            column-gap: 32px;
  }
  footer .footer-nav .nav-info ul.nav-sns li a {
    width: 32px;
    height: 32px;
  }
}
footer .footer-bottom {
  padding: 0px 20px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .footer-bottom .footer-legal {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
}
footer .footer-bottom .footer-legal a {
  font-size: 14px;
  line-height: 110%;
}
footer .footer-bottom .footer-copyright {
  font-size: 14px;
  line-height: 110%;
}
@media (max-width: 600px) {
  footer .footer-bottom {
    display: block;
    padding: 8px 20px 24px;
  }
  footer .footer-bottom .footer-legal {
    margin-left: 0px;
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
  footer .footer-bottom .footer-copyright {
    margin-top: 24px;
  }
}

body .ukk-intro {
  display: none;
}

body:not(.develop) .ukk-intro {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: black;
  z-index: 9999;
  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;
  clip: rect(0px, 100vw, 100vh, 0vw);
}
body:not(.develop) .ukk-intro.init {
  -webkit-transition: all 1s cubic-bezier(0.79, 0, 0.2, 1) 0s;
  transition: all 1s cubic-bezier(0.79, 0, 0.2, 1) 0s;
}
body:not(.develop) .ukk-intro.end {
  clip: rect(0px, 0vw, 100vh, 0vw);
}
body:not(.develop) .ukk-intro .intro-message {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 6.5vw;
}
body:not(.develop) .ukk-intro .intro-message .first, body:not(.develop) .ukk-intro .intro-message .second, body:not(.develop) .ukk-intro .intro-message .third {
  font-size: 5.5vw;
  text-align: center;
  width: 100%;
  position: absolute;
  top: 0vw;
  visibility: hidden;
  -webkit-transform: translateY(6.5vw);
          transform: translateY(6.5vw);
}
body:not(.develop) .ukk-intro .intro-message .first.init, body:not(.develop) .ukk-intro .intro-message .second.init, body:not(.develop) .ukk-intro .intro-message .third.init {
  -webkit-transition: transform 1.25s cubic-bezier(0.79, 0, 0.2, 1) 0s;
  -webkit-transition: -webkit-transform 1.25s cubic-bezier(0.79, 0, 0.2, 1) 0s;
  transition: -webkit-transform 1.25s cubic-bezier(0.79, 0, 0.2, 1) 0s;
  transition: transform 1.25s cubic-bezier(0.79, 0, 0.2, 1) 0s;
  transition: transform 1.25s cubic-bezier(0.79, 0, 0.2, 1) 0s, -webkit-transform 1.25s cubic-bezier(0.79, 0, 0.2, 1) 0s;
}
body:not(.develop) .ukk-intro .intro-message .first.show, body:not(.develop) .ukk-intro .intro-message .second.show, body:not(.develop) .ukk-intro .intro-message .third.show {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  visibility: visible;
}
body:not(.develop) .ukk-intro .intro-message .first.hide, body:not(.develop) .ukk-intro .intro-message .second.hide, body:not(.develop) .ukk-intro .intro-message .third.hide {
  -webkit-transform: translateY(-7vw);
          transform: translateY(-7vw);
}

.top-hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.top-hero .hero-heading {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
  width: 100%;
  padding: 0px 2vw;
}
.top-hero .hero-heading h2 {
  font-size: min(104px, 7vw);
  font-weight: 400;
  line-height: 110%; /* 114.4px */
  margin: 0.5rem 0px;
}
.top-hero .hero-heading h2.slide-in {
  height: min(104px, 7vw);
}
.top-hero .hero-heading h2.slide-in span {
  -webkit-transform: translateY(7vw);
          transform: translateY(7vw);
}
.top-hero .hero-heading p {
  font-size: min(1.75vw, 24px);
  font-weight: 400;
  line-height: 110%;
  margin: 1rem 0px;
}
.top-hero .hero-heading p.slide-in {
  height: min(1.75vw, 24px);
}
.top-hero .hero-heading p.slide-in span {
  -webkit-transform: translateY(2vw);
          transform: translateY(2vw);
}
@media (max-width: 600px) {
  .top-hero .hero-heading h2 {
    font-size: 9vw;
  }
  .top-hero .hero-heading h2.slide-in {
    height: 19vw;
  }
  .top-hero .hero-heading h2.slide-in span {
    -webkit-transform: translateY(19.5vw);
            transform: translateY(19.5vw);
  }
  .top-hero .hero-heading p {
    font-size: 3.5vw;
  }
  .top-hero .hero-heading p.slide-in {
    height: 4vw;
  }
  .top-hero .hero-heading p.slide-in span {
    -webkit-transform: translateY(4.5vw);
            transform: translateY(4.5vw);
  }
}
.top-hero .hero-image {
  height: 100%;
}
.top-hero .hero-image figure {
  height: 100%;
}
.top-hero .hero-image figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  font-family: "object-fit: cover;";
}
.top-hero .hero-movie {
  position: absolute;
  inset: 0;
  z-index: 0;
  height: 100%;
}
.top-hero .hero-movie::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
.top-hero .hero-movie .hero-video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}

.top-message {
  font-size: min(2.75vw, 32px);
  line-height: 160%;
}
@media (max-width: 600px) {
  .top-message {
    font-size: 5vw;
  }
}

.top-service {
  overflow-x: hidden;
}
@media (max-width: 600px) {
  .top-service {
    overflow-x: visible;
  }
}

.top-service-list {
  width: 100%;
}
.top-service-list .service-item {
  font-size: min(5.75vw, 64px);
  font-weight: 400;
  padding: 20px 0px;
}
.top-service-list .service-item::before {
  content: "";
  position: absolute;
  left: 0px;
  margin-top: -20px;
  width: calc(100vw - 21.5%);
  border-top: 1px solid currentColor;
}
.top-service-list .service-item:last-child::after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: calc(100vw - 21.5%);
  border-bottom: 1px solid currentColor;
}
@media (max-width: 600px) {
  .top-service-list .service-item {
    font-size: 6.75vw;
    padding: 16px 0px;
  }
  .top-service-list .service-item::before {
    width: 100%;
  }
  .top-service-list .service-item:last-child::after {
    width: 100%;
  }
}

.works-scroller {
  overflow: hidden;
}

.works-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 64px;
  will-change: transform;
}
@media (max-width: 600px) {
  .works-track {
    gap: 32px;
  }
}

.work-card {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45%;
          flex: 0 0 45%;
  padding-bottom: 32px;
  position: relative;
}
.work-card .work-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  width: 85%;
  margin-left: auto;
}
.work-card .work-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.work-card .work-meta {
  position: absolute;
  bottom: 0;
}
.work-card .work-meta .work-name {
  font-size: 32px; /* 添付の大きい文字っぽく */
  font-weight: 400;
  line-height: 110%;
  margin: 0 0 10px;
}
.work-card .work-meta .work-client {
  color: #A5A5A5;
  font-size: 14px;
  margin: 0;
}
@media (max-width: 600px) {
  .work-card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 85%;
            flex: 0 0 85%;
  }
  .work-card .work-thumb {
    width: 90%;
  }
  .work-card .work-meta .work-name {
    font-size: 20px;
    margin: 0 0 10px;
  }
  .work-card .work-meta .work-client {
    color: #A5A5A5;
    font-size: 14px;
    margin: 0;
  }
}

.client-list {
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.client-list > li {
  margin-left: 3%;
  width: calc(100% / 6 - 2.5%);
}
.client-list > li:nth-child(6n+1) {
  margin-left: 0;
}
.client-list > li {
  margin-bottom: 2%;
}
@media (max-width: 600px) {
  .client-list {
    margin-top: 32px;
  }
  .client-list > li:nth-child(6n+1) {
    margin-left: 3%;
  }
  .client-list > li {
    margin-left: 3%;
    width: calc(100% / 4 - 2.25%);
  }
  .client-list > li:nth-child(4n+1) {
    margin-left: 0;
  }
  .client-list > li {
    margin-bottom: 2%;
  }
}

body {
  height: 100%;
  margin: 0;
  padding: 0;
  color: white;
  background-color: black;
}

main {
  padding-bottom: 200px;
}
@media (max-width: 600px) {
  main {
    padding-bottom: 80px;
  }
}

.gray {
  color: #A5A5A5;
}

.relative {
  position: relative;
}

a.text-link {
  text-decoration: underline;
}

.serif {
  font-family: "EB Garamond", serif;
}
a.line-link {
  display: block;
  position: relative;
  padding-bottom: 8px;
}
a.line-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor; /* 文字と同じ色 */
  -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;
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}
a.line-link:hover::after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
}
@media (max-width: 600px) {
  a.line-link::after {
    display: none;
  }
}

.pcf {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.spf {
  display: none !important;
}

@media (max-width: 600px) {
  .pcf {
    display: none !important;
  }
  .spf {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
.no-overflow {
  overflow: visible;
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  pointer-events: none;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  visibility: hidden;
  opacity: 0;
}
body.is-leaving .page-transition {
  visibility: visible;
  opacity: 1;
  -webkit-transform-origin: right center;
          transform-origin: right center;
  -webkit-animation: pageCover 0.75s cubic-bezier(0.77, 0, 0.175, 1) forwards;
          animation: pageCover 0.75s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}
body.is-entering .page-transition {
  visibility: visible;
  opacity: 1;
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-animation: pageReveal 0.75s cubic-bezier(0.77, 0, 0.175, 1) forwards;
          animation: pageReveal 0.75s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@-webkit-keyframes pageCover {
  from {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  to {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

@keyframes pageCover {
  from {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  to {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
@-webkit-keyframes pageReveal {
  from {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  to {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
@keyframes pageReveal {
  from {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  to {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
}
ul.list > li {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  margin-top: 0.35em;
  margin-bottom: 0.35em;
}
ul.list.space {
  margin-top: 30px;
  margin-bottom: 30px;
}
ul.list.min-space {
  margin-top: 20px;
  margin-bottom: 20px;
}
ul.list.top-space {
  margin-top: 40px;
}
ul.list.bottom-space {
  margin-bottom: 40px;
}
ul.list.no-li-space > li {
  margin-top: 0;
  margin-bottom: 0;
}
ul.list.normal > li {
  line-height: 1.625;
}
ul.list.lead > li {
  line-height: 1.75;
}
ul.list.small > li {
  font-size: 80%;
  line-height: 1.75;
  margin-top: 0.25em;
  margin-bottom: 0.25em;
}
ul.list.large > li {
  font-size: 115%;
  line-height: 1.625;
}
ul.list.labeling > li {
  position: relative;
  padding-left: 1.25em;
}
ul.list.labeling > li.head {
  padding-left: 0;
}
ul.list.labeling > li.double {
  padding-left: 2.15em;
}
ul.list.labeling > li > i {
  font-style: normal;
  position: absolute;
  left: 0;
}
ul.list.bullet > li {
  position: relative;
  padding-left: 1em;
}
ul.list.bullet > li:before {
  content: "・";
  color: currentColor;
  font-size: 70%;
  position: absolute;
  left: 0;
  top: 0.35em;
}
ul.list.bullet.large > li:before {
  top: 0.5em;
}
ul.list.large-bullet > li {
  position: relative;
  padding-left: 1.25em;
}
ul.list.large-bullet > li:before {
  content: "●";
  color: currentColor;
  font-size: 70%;
  position: absolute;
  left: 0;
  top: 0.35em;
}
ul.list.large-bullet.large > eli:before {
  top: 0.5em;
}
ul.list.numbering > li {
  counter-increment: counter;
  padding-left: 1.75em;
  position: relative;
}
ul.list.numbering > li:before {
  content: counter(counter) ".";
  display: block;
  position: absolute;
  left: 0;
  top: 3px;
}
@media (max-width: 600px) {
  ul.list.space {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  ul.list.top-space {
    margin-top: 20px;
  }
  ul.list.bottom-space {
    margin-bottom: 20px;
  }
  ul.list.bullet li {
    line-height: 1.5;
  }
  ul.list.bullet.large li {
    line-height: 1.625;
  }
}

.page-hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.page-hero.double {
  height: 250vh;
  overflow: visible;
}
.page-hero.double .first-slide,
.page-hero.double .second-slide {
  position: absolute;
  z-index: 2;
  width: 100vw;
  height: 100vh;
}
.page-hero.double .first-slide {
  top: 0;
}
.page-hero.double .second-slide {
  top: 100vh;
}
.page-hero .hero-image {
  height: 100%;
}
.page-hero .hero-image figure {
  height: 100%;
}
.page-hero .hero-image figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  font-family: "object-fit: cover;";
}
.page-hero.double .hero-image {
  height: 100vh;
  overflow: hidden;
  position: sticky;
  top: 0;
  z-index: -1;
}
.page-hero.double .hero-image figure {
  height: 100%;
}
.page-hero.double .hero-image figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  font-family: "object-fit: cover;";
}
.page-hero .hero-movie {
  position: absolute;
  inset: 0;
  z-index: 0;
  height: 100%;
}
.page-hero .hero-movie::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
.page-hero .hero-movie .hero-video {
  position: sticky;
  top: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}

.page-title {
  position: relative;
  width: 100vw;
  height: 480px;
  overflow: hidden;
}
@media (max-width: 600px) {
  .page-title {
    height: 320px;
  }
}

.hero-heading {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 2;
  width: 100%;
  padding: 0px 2vw;
}
.hero-heading h1 {
  font-size: min(1.5vw, 20px);
  font-weight: 400;
  line-height: 110%; /* 114.4px */
  margin: 0.5rem 0px;
}
.hero-heading h1.slide-in {
  height: min(1.5vw, 20px);
}
.hero-heading h1.slide-in span {
  -webkit-transform: translateY(1.75vw);
          transform: translateY(1.75vw);
}
.hero-heading h2 {
  font-size: min(104px, 7vw);
  font-weight: 400;
  line-height: 110%; /* 114.4px */
  margin: 0.5rem 0px;
}
.hero-heading h2.slide-in {
  height: min(104px, 7vw);
}
.hero-heading h2.slide-in span {
  -webkit-transform: translateY(7vw);
          transform: translateY(7vw);
}
.hero-heading p {
  font-size: min(1.75vw, 24px);
  font-weight: 400;
  line-height: 110%;
  margin: 1rem 0px;
}
.hero-heading p.slide-in {
  height: min(1.75vw, 24px);
}
.hero-heading p.slide-in span {
  -webkit-transform: translateY(2vw);
          transform: translateY(2vw);
}
.hero-heading.ja h2 {
  font-size: min(96px, 5.5vw);
  margin: 0.5rem 0px;
}
.hero-heading.ja h2.slide-in {
  height: min(96px, 5.5vw);
}
.hero-heading.ja h2.slide-in span {
  -webkit-transform: translateY(5.75vw);
          transform: translateY(5.75vw);
}
@media (max-width: 600px) {
  .hero-heading h1 {
    font-size: 3.5vw;
  }
  .hero-heading h1.slide-in {
    height: 4.5vw;
  }
  .hero-heading h1.slide-in span {
    -webkit-transform: translateY(4.5vw);
            transform: translateY(4.5vw);
  }
  .hero-heading h2 {
    font-size: 9vw;
    line-height: 120%;
  }
  .hero-heading h2.slide-in {
    height: 20vw;
  }
  .hero-heading h2.slide-in span {
    -webkit-transform: translateY(1209.5vw);
            transform: translateY(1209.5vw);
  }
  .hero-heading h2.slide-in.one-line-sp {
    height: 9vw;
  }
  .hero-heading h2.slide-in.one-line-sp span {
    -webkit-transform: translateY(9.5vw);
            transform: translateY(9.5vw);
  }
  .hero-heading p {
    font-size: 3.5vw;
  }
  .hero-heading p.slide-in {
    height: 4vw;
  }
  .hero-heading p.slide-in span {
    -webkit-transform: translateY(4.5vw);
            transform: translateY(4.5vw);
  }
  .hero-heading.ja h2 {
    font-size: 9vw;
    margin: 0.125rem 0px;
  }
  .hero-heading.ja h2.slide-in {
    height: 20vw;
  }
  .hero-heading.ja h2.slide-in span {
    -webkit-transform: translateY(20.5vw);
            transform: translateY(20.5vw);
  }
  .hero-heading.ja h2.slide-in.one-line-sp {
    height: 11vw;
  }
  .hero-heading.ja h2.slide-in.one-line-sp span {
    -webkit-transform: translateY(11.5vw);
            transform: translateY(11.5vw);
  }
}

.section-title {
  margin-bottom: 2rem;
}
.section-title h3 {
  font-size: 20px;
  font-weight: 400;
}
.section-title h3.resizable {
  font-size: min(1.75vw, 18px);
  color: #A5A5A5;
}
@media (max-width: 600px) {
  .section-title h3 {
    font-size: 4vw;
  }
  .section-title h3.resizable {
    font-size: 3.5vw;
  }
}
.section-title strong {
  font-size: min(40px, 4vw);
  font-weight: 400;
}
@media (max-width: 600px) {
  .section-title strong {
    font-size: 5.75vw;
  }
}
.section-title .tags {
  display: inline-block;
}
.section-title .tags span::after {
  content: ", ";
}
.section-title .tags span:last-child::after {
  content: "";
}
.section-title .tags a:hover {
  color: white;
}

.title-side {
  font-size: 20px;
  font-weight: 400;
  line-height: 145%;
  margin: 0.25em 0px;
}

.link-button {
  margin-top: 4rem;
}
.link-button .button {
  margin-left: auto;
  margin-right: auto;
}
.link-button.left .button {
  margin-left: 0;
}
@media (max-width: 600px) {
  .link-button {
    margin-top: 3rem;
  }
  .link-button.left.sp-center .button {
    margin-left: auto;
  }
}

.embed-movie {
  position: relative;
  padding-top: 56.26%;
}
.embed-movie > iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.section-description {
  font-size: 24px;
  line-height: 160%;
}
.section-description.ja {
  font-size: 20px;
}
@media (max-width: 600px) {
  .section-description {
    font-size: 20px;
  }
  .section-description.ja {
    font-size: 17px;
  }
}

.spread-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.spread-content .spread-left {
  width: 21.5%;
}
.spread-content .spread-right {
  width: 78.5%;
}
.spread-content .spread-right.has-space {
  padding-left: 3.5%;
}
@media (max-width: 600px) {
  .spread-content {
    display: block;
  }
  .spread-content .spread-left {
    width: 100%;
  }
  .spread-content .spread-right {
    width: 100%;
    margin-left: auto;
  }
  .spread-content .spread-right.has-space {
    padding-left: 0;
  }
}

.image-text-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
.image-text-block .block-item {
  width: 50%;
}
.image-text-block .block-item.text {
  padding: 0px 3%;
}
.image-text-block .block-item.text p:last-child {
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .image-text-block {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .image-text-block .block-item {
    width: 100%;
  }
  .image-text-block .block-item.text {
    padding: 0px 0;
  }
  .image-text-block .block-item.text p:last-child {
    margin-bottom: 1.75em;
  }
}

.column-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.column-block .col {
  width: 50%;
}
.column-block .col:nth-child(odd) {
  padding-right: 2%;
}
.column-block .col:nth-child(even) {
  padding-left: 2%;
}
@media (max-width: 600px) {
  .column-block .col {
    width: 100%;
  }
  .column-block .col:nth-child(odd) {
    padding-right: 0;
  }
  .column-block .col:nth-child(even) {
    padding-left: 0;
  }
}

.slide-in {
  position: relative;
  overflow: hidden;
}
.slide-in span {
  display: block;
}
.slide-in.init span {
  -webkit-transition: transform 1.25s cubic-bezier(0.79, 0, 0.2, 1) 0s;
  -webkit-transition: -webkit-transform 1.25s cubic-bezier(0.79, 0, 0.2, 1) 0s;
  transition: -webkit-transform 1.25s cubic-bezier(0.79, 0, 0.2, 1) 0s;
  transition: transform 1.25s cubic-bezier(0.79, 0, 0.2, 1) 0s;
  transition: transform 1.25s cubic-bezier(0.79, 0, 0.2, 1) 0s, -webkit-transform 1.25s cubic-bezier(0.79, 0, 0.2, 1) 0s;
}
.slide-in.init.delay1 span {
  -webkit-transition: transform 1.25s cubic-bezier(0.79, 0, 0.2, 1) 0.25s;
  -webkit-transition: -webkit-transform 1.25s cubic-bezier(0.79, 0, 0.2, 1) 0.25s;
  transition: -webkit-transform 1.25s cubic-bezier(0.79, 0, 0.2, 1) 0.25s;
  transition: transform 1.25s cubic-bezier(0.79, 0, 0.2, 1) 0.25s;
  transition: transform 1.25s cubic-bezier(0.79, 0, 0.2, 1) 0.25s, -webkit-transform 1.25s cubic-bezier(0.79, 0, 0.2, 1) 0.25s;
}
.slide-in.init.delay2 span {
  -webkit-transition: transform 1.25s cubic-bezier(0.79, 0, 0.2, 1) 0.5s;
  -webkit-transition: -webkit-transform 1.25s cubic-bezier(0.79, 0, 0.2, 1) 0.5s;
  transition: -webkit-transform 1.25s cubic-bezier(0.79, 0, 0.2, 1) 0.5s;
  transition: transform 1.25s cubic-bezier(0.79, 0, 0.2, 1) 0.5s;
  transition: transform 1.25s cubic-bezier(0.79, 0, 0.2, 1) 0.5s, -webkit-transform 1.25s cubic-bezier(0.79, 0, 0.2, 1) 0.5s;
}
.slide-in.show span {
  -webkit-transform: translateY(0) !important;
          transform: translateY(0) !important;
}
.slide-in.done {
  overflow: visible;
}

.fade-text.letters {
  white-space: pre-wrap; /* 文章ならnormalでOK。改行を保持したいなら pre-wrap */
}
.fade-text.letters span {
  display: inline-block; /* 文字アニメの定番（transform入れても破綻しにくい） */
}
.fade-text span {
  opacity: 0;
}
.fade-text.show span {
  -webkit-animation: fadeInText 0.15s linear forwards;
          animation: fadeInText 0.15s linear forwards;
}

@-webkit-keyframes fadeInText {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeInText {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.work-category-nav ul {
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  padding: 32px 0px;
  border-bottom: 1px solid white;
}
.work-category-nav ul li {
  margin: 8px 0px;
}
.work-category-nav 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;
  padding: 0px 16px;
  height: 36px;
  border-radius: 20px;
  border: 1px solid currentColor;
  color: #646464;
  font-size: 14px;
  line-height: 100%;
}
.work-category-nav ul li a:hover {
  color: white;
  border-color: currentColor;
}
.work-category-nav ul li a.current {
  color: white;
}
@media (max-width: 600px) {
  .work-category-nav ul {
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
    padding: 24px 0px;
  }
  .work-category-nav ul li {
    margin: 8px 0px;
  }
  .work-category-nav ul li a {
    padding: 0px 16px;
    height: 32px;
    font-size: 13px;
  }
}

.work-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.work-list .work-item {
  width: 48.5%;
  margin: 32px 0px;
}
.work-list .work-item:nth-child(even) {
  margin-left: auto;
}
.work-list .work-item figure {
  overflow: hidden;
  aspect-ratio: 16/9;
}
.work-list .work-item figure img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.35s ease-out;
  transition: -webkit-transform 0.35s ease-out;
  transition: transform 0.35s ease-out;
  transition: transform 0.35s ease-out, -webkit-transform 0.35s ease-out;
}
.work-list .work-item figure img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.work-list .work-item .work-meta {
  margin-top: 16px;
}
.work-list .work-item .work-meta h5 {
  font-size: 28px;
  font-weight: 400;
  line-height: 120%;
}
.work-list .work-item .work-meta .tags {
  color: #A5A5A5;
}
.work-list .work-item .work-meta .tags span::after {
  content: ", ";
}
.work-list .work-item .work-meta .tags span:last-child::after {
  content: "";
}
.work-list .work-item .work-meta .tags a:hover {
  color: white;
}
@media (max-width: 600px) {
  .work-list .work-item {
    width: 100%;
    margin: 24px 0px;
  }
  .work-list .work-item:nth-child(even) {
    margin-left: 0;
  }
  .work-list .work-item .work-meta {
    margin-top: 12px;
  }
  .work-list .work-item .work-meta h5 {
    font-size: 20px;
  }
}

.member-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 5%;
     -moz-column-gap: 5%;
          column-gap: 5%;
  margin-top: 48px;
}
.member-list .member-item {
  width: 30%;
  margin: 48px 0px;
}
.member-list .member-item figure {
  position: relative;
}
.member-list .member-item figure img {
  -webkit-transition: opacity 0.25s linear;
  transition: opacity 0.25s linear;
}
.member-list .member-item figure .hover-image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.member-list .member-item figure:hover img:first-child {
  opacity: 0;
}
.member-list .member-item .member-meta {
  margin-top: 16px;
}
.member-list .member-item .member-meta .name {
  font-size: 24px;
}
.member-list .member-item .member-meta .role {
  margin-top: 8px;
  color: #A5A5A5;
}
.member-list .member-item .member-sns {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid currentColor;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
}
.member-list .member-item .member-sns li {
  width: 24px;
}
@media (max-width: 600px) {
  .member-list {
    -webkit-column-gap: 5%;
       -moz-column-gap: 5%;
            column-gap: 5%;
    margin-top: 0px;
  }
  .member-list .member-item {
    width: 47.5%;
    margin: 24px 0px;
  }
  .member-list .member-item .member-meta {
    margin-top: 16px;
  }
  .member-list .member-item .member-meta .name {
    font-size: 20px;
  }
  .member-list .member-item .member-meta .role {
    margin-top: 8px;
    color: #A5A5A5;
  }
  .member-list .member-item .member-sns {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid currentColor;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
  }
  .member-list .member-item .member-sns li {
    width: 24px;
  }
}

.middle-images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
}
.middle-images .scroll-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  position: relative;
  will-change: transform;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.middle-images figure {
  margin: 0;
  padding: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 35vw;
}
.middle-images img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 600px) {
  .middle-images .scroll-wrapper {
    gap: 10px;
  }
  .middle-images figure {
    width: 65vw;
  }
}

.service-lineup {
  margin-bottom: 48px;
}
.service-lineup:nth-last-child(-n+2) {
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .service-lineup {
    margin-bottom: 24px;
  }
  .service-lineup:nth-last-child(-n+2) {
    margin-bottom: 24px;
  }
  .service-lineup:last-child {
    margin-bottom: 0;
  }
}

.middle-gradient {
  height: 35vw;
  min-height: 400px;
  max-height: 560px;
  overflow: hidden;
}
.middle-gradient img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 600px) {
  .middle-gradient {
    height: 75vw;
    min-height: 0px;
    max-height: 100%;
  }
  .middle-gradient picture {
    height: 100%;
  }
}

.middle-project-link {
  height: 35vw;
  min-height: 400px;
  max-height: 560px;
  overflow: hidden;
}
.middle-project-link img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.middle-project-link {
  position: relative;
}
.middle-project-link .project-link {
  position: absolute;
  top: 45%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  text-align: center;
}
.middle-project-link .project-link .project-link-heading {
  font-size: 40px;
  font-weight: 400;
}
.middle-project-link .project-link .project-link-button {
  width: 100%;
  margin-top: 40px;
}
.middle-project-link .project-link .project-link-button .button {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 600px) {
  .middle-project-link {
    height: 66.66667vw;
    min-height: 0px;
    max-height: 100%;
  }
  .middle-project-link .project-link .project-link-heading {
    font-size: 8.5vw;
  }
  .middle-project-link .project-link .project-link-button {
    margin-top: 32px;
  }
}

.career-list {
  margin-top: -16px;
}
@media (max-width: 600px) {
  .career-list {
    margin-top: 0;
  }
}

.career-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 24px 0px;
}
.career-item .item-name {
  width: 180px;
  position: relative;
}
.career-item .item-name::after {
  content: "|";
  font-size: 20px;
  position: absolute;
  right: 0;
  top: -4px;
}
.career-item .item-content {
  width: calc(100% - 180px);
  padding-left: 40px;
}
@media (max-width: 600px) {
  .career-item {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .career-item .item-name {
    width: 144px;
  }
  .career-item .item-content {
    width: calc(100% - 144px);
    padding-left: 24px;
    margin-top: -4px;
  }
}

.work-movie {
  position: relative;
  padding-top: 56.25%;
}
.work-movie iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.works-credit {
  margin: 1rem 0px;
}

.content-paging {
  margin-top: 4rem;
}
.content-paging > ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.content-paging > ol li {
  padding-left: 0.5em;
  padding-right: 0.5em;
  line-height: 1;
  margin: 0px 4px;
}
.content-paging > ol li a, .content-paging > ol li span {
  display: inline-block;
  width: 40px;
  height: 40px;
  color: white;
  border-radius: 20px;
  border: 1px solid white;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  line-height: 40px;
}
.content-paging > ol li a i, .content-paging > ol li span i {
  font-style: normal;
}
.content-paging > ol li a.prev, .content-paging > ol li a.next, .content-paging > ol li span.prev, .content-paging > ol li span.next {
  padding-top: 0;
  font-size: 24px;
  background-color: transparent;
  border-color: transparent;
}
.content-paging > ol li a.current, .content-paging > ol li span.current {
  color: black;
  background-color: white;
}
.content-paging > ol li.current a, .content-paging > ol li.current span {
  color: black;
  background-color: white;
}
.content-paging > ol li a:hover {
  opacity: 0.5;
  text-decoration: none;
}
.content-paging > ol li.no-prev, .content-paging > ol li.no-next {
  width: 0;
  padding: 0;
}
.content-paging > ol li.no-prev > i, .content-paging > ol li.no-next > i {
  display: block;
  width: 40px;
}
@media (max-width: 750px) {
  .content-paging {
    margin-top: 2.5rem;
  }
  .content-paging > ol li {
    padding-left: 0.25em;
    padding-right: 0.25em;
    line-height: 1;
  }
  .content-paging > ol li a, .content-paging > ol li span {
    width: 36px;
    height: 36px;
    line-height: 36px;
  }
  .content-paging > ol li a.prev, .content-paging > ol li a.next, .content-paging > ol li span.prev, .content-paging > ol li span.next {
    font-size: 20px;
  }
}

.sp-fluid {
  width: auto;
  margin-left: -20px !important;
  margin-right: -20px !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.contact-form {
  width: 600px;
}
@media (max-width: 600px) {
  .contact-form {
    width: 100%;
  }
}

.form-inner {
  padding-top: 32px;
  border-top: 1px solid white;
}
@media (max-width: 600px) {
  .form-inner {
    padding-top: 1.5rem;
  }
}
.form-inner .form-item {
  margin-bottom: 32px;
}
.form-inner .form-item.no-br br {
  display: none;
}
.form-inner .form-item.center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.form-inner .form-item p {
  width: 100%;
  font-weight: 700;
  margin: 0px 0px 0.5rem;
}
.form-inner .form-item p.note {
  margin-top: 0.75rem;
}
.form-inner .form-item span.required {
  color: #CE0000;
}
.form-inner .form-item .form-item-half {
  width: 48.5%;
}
.form-inner .form-item .form-item-half:nth-child(3n) {
  margin-left: auto;
}
.form-inner .form-item .select-type01 {
  width: 48.5%;
  position: relative;
}
.form-inner .form-item .select-type01::after {
  content: "";
  width: 8px;
  height: 6px;
  border: 6px solid transparent;
  border-top: 8px solid #000;
  position: absolute;
  top: calc(50% - 4px);
  right: 0.5rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.form-inner .form-item .radio-horizontal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-column-gap: 1.25rem;
     -moz-column-gap: 1.25rem;
          column-gap: 1.25rem;
}
.form-inner .form-item .checkbox-list li.vertical-item {
  margin: 0.5rem 0px;
}
.form-inner .form-item > label {
  display: block;
  width: 100%;
  margin-bottom: 16px;
  font-weight: 700;
}
.form-inner .form-item .form-item-half > label {
  display: block;
  width: 100%;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.form-inner .form-item .item-right {
  width: 100%;
}
.form-inner .form-item .item-right input[type=text],
.form-inner .form-item .item-right input[type=email],
.form-inner .form-item .item-right input[type=tel],
.form-inner .form-item .item-right select, .form-inner .form-item .item-right textarea {
  width: 100%;
}
.form-inner .form-item input[type=text],
.form-inner .form-item input[type=email],
.form-inner .form-item input[type=tel],
.form-inner .form-item select, .form-inner .form-item textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  background-color: #292929;
  border: none;
  padding: 6px 12px;
  color: white;
  font-size: 16px;
  line-height: 1.75;
}
.form-inner .form-item input[type=text].error,
.form-inner .form-item input[type=email].error,
.form-inner .form-item input[type=tel].error,
.form-inner .form-item select.error, .form-inner .form-item textarea.error {
  border-color: #EE0000;
}
.form-inner .form-item input[type=text]:-moz-placeholder, .form-inner .form-item input[type=email]:-moz-placeholder, .form-inner .form-item input[type=tel]:-moz-placeholder, .form-inner .form-item select:-moz-placeholder, .form-inner .form-item textarea:-moz-placeholder {
  color: #505050;
}
.form-inner .form-item input[type=text]:-ms-input-placeholder, .form-inner .form-item input[type=email]:-ms-input-placeholder, .form-inner .form-item input[type=tel]:-ms-input-placeholder, .form-inner .form-item select:-ms-input-placeholder, .form-inner .form-item textarea:-ms-input-placeholder {
  color: #505050;
}
.form-inner .form-item input[type=text]:placeholder-shown,
.form-inner .form-item input[type=email]:placeholder-shown,
.form-inner .form-item input[type=tel]:placeholder-shown,
.form-inner .form-item select:placeholder-shown, .form-inner .form-item textarea:placeholder-shown {
  color: #505050;
}
.form-inner .form-item input[type=text]::-webkit-input-placeholder,
.form-inner .form-item input[type=email]::-webkit-input-placeholder,
.form-inner .form-item input[type=tel]::-webkit-input-placeholder,
.form-inner .form-item select::-webkit-input-placeholder, .form-inner .form-item textarea::-webkit-input-placeholder {
  color: #505050;
}
.form-inner .form-item input[type=text]:-moz-placeholder,
.form-inner .form-item input[type=email]:-moz-placeholder,
.form-inner .form-item input[type=tel]:-moz-placeholder,
.form-inner .form-item select:-moz-placeholder, .form-inner .form-item textarea:-moz-placeholder {
  color: #505050;
}
.form-inner .form-item input[type=text]::-moz-placeholder,
.form-inner .form-item input[type=email]::-moz-placeholder,
.form-inner .form-item input[type=tel]::-moz-placeholder,
.form-inner .form-item select::-moz-placeholder, .form-inner .form-item textarea::-moz-placeholder {
  color: #505050;
}
.form-inner .form-item input[type=text]:-ms-input-placeholder,
.form-inner .form-item input[type=email]:-ms-input-placeholder,
.form-inner .form-item input[type=tel]:-ms-input-placeholder,
.form-inner .form-item select:-ms-input-placeholder, .form-inner .form-item textarea:-ms-input-placeholder {
  color: #505050;
}
.form-inner .form-item input[type=text]::-ms-input-placeholder,
.form-inner .form-item input[type=email]::-ms-input-placeholder,
.form-inner .form-item input[type=tel]::-ms-input-placeholder,
.form-inner .form-item select::-ms-input-placeholder, .form-inner .form-item textarea::-ms-input-placeholder {
  color: #505050;
}
.form-inner .form-item input[type=radio] {
  -webkit-appearance: none;
  position: relative;
  right: 0;
  bottom: 0;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  cursor: pointer;
  outline: none;
  margin-right: 0.25rem;
  vertical-align: -0.5rem;
  border: 2px solid #9B9B9B;
  border-radius: 50%;
}
.form-inner .form-item input[type=radio]:checked {
  background-color: white;
}
.form-inner .form-item input[type=checkbox] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  position: relative;
  right: 0;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 20px;
  vertical-align: -0.4rem;
  color: #FFFFFF;
  cursor: pointer;
  outline: none;
  margin-right: 4px;
  border: 2px solid #9B9B9B;
  background-color: black;
}
.form-inner .form-item input[type=checkbox]:checked {
  background-color: white;
}
@media (max-width: 600px) {
  .form-inner .form-item {
    margin: 1.5rem 0px;
  }
  .form-inner .form-item > label {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  .form-inner .form-item .item-right {
    width: 100%;
  }
  .form-inner .form-item input[type=text],
  .form-inner .form-item input[type=email],
  .form-inner .form-item input[type=tel],
  .form-inner .form-item select, .form-inner .form-item textarea {
    width: 100%;
  }
  .form-inner .form-item .select-type01 {
    width: 100%;
  }
  .form-inner .form-item .col {
    margin-top: 12px;
  }
  .form-inner .form-item .col:first-child {
    margin-top: 0;
  }
}
.form-inner .form-agreement {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.form-inner .form-agreement > label {
  display: block;
  width: 25%;
  margin-top: 0.5rem;
}
.form-inner .form-agreement .mwform-checkbox-field {
  width: 75%;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
@media (max-width: 600px) {
  .form-inner .form-agreement > label {
    width: 100%;
  }
  .form-inner .form-agreement .mwform-checkbox-field {
    width: 100%;
  }
}

.mw_wp_form .mwform-checkbox-field {
  display: inline-block;
  margin: 4px 24px 4px 0px;
}
.mw_wp_form .mwform-checkbox-field + .mwform-checkbox-field {
  margin-left: 0px;
}
.mw_wp_form .mwform-radio-field {
  display: inline-block;
  margin: 4px 24px 4px 0px;
}
.mw_wp_form .mwform-radio-field + .mwform-radio-field {
  margin-left: 0px;
}
.mw_wp_form .mw_wp_form_confirm p.description {
  display: none;
}
.mw_wp_form .button-link {
  margin-top: 64px;
}
@media (max-width: 600px) {
  .mw_wp_form .button-link {
    margin-top: 40px;
  }
}

.form-inner .mw_wp_form_confirm .form-item {
  border-bottom: 1px solid white;
  padding-bottom: 1rem;
}
.form-inner .mw_wp_form_confirm .form-item .select-type01::after {
  display: none;
}
.form-inner .mw_wp_form_confirm .form-item p.note {
  display: none;
}
.form-inner .mw_wp_form_confirm .form-item .item-right {
  padding: 6px 0px;
}
.form-inner .mw_wp_form_confirm .form-privacy {
  display: none;
}
.form-inner .mw_wp_form_confirm .form-agreement {
  display: none;
}
.form-inner .mw_wp_form_confirm .form-agreement .form-item.center {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
.form-inner .button-link .button {
  margin-left: auto;
  margin-right: auto;
}