.logo-fadein {
    display: inline-block;
    animation: slideInLeft 1.2s ease-out forwards;
    opacity: 0;
  }

  @keyframes slideInLeft {
    0% {
      transform: translateX(-50px);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }


/* 日本語テキスト：PCでは右寄せ、一行で英語と揃え、表示切れ防止のため幅制限を緩和 */
.fancy-text_ja {
    overflow-x: hidden; /* 横スクロール防止 */
    min-height: 1.5em; /* 高さ確保でテキストが切れないようにする */
    font-size: 1.2rem;
    font-weight: bold;
    text-align: right;
    margin: 0;
    white-space: nowrap;
    display: block;
    margin-right: 0;
    margin-left: auto;
    width: 100%; /* 幅を制限しない */
    max-width: none; /* 最大幅制限を解除 */
    overflow: hidden;
    text-overflow: ellipsis;
    box-sizing: border-box;
    line-height: 1.5;
    font-size: clamp(1rem, 1vw, 1.2rem);
  }
  
  @media (max-width: 767px) {
    .fancy-text_ja {
      font-size: 1.0rem;
      text-align: left;
      white-space: normal;
    }
  }
  
  .fancy-text_en {
    font-size: 4.8rem;
    font-weight: bold;
    text-align: right;
    margin: 0;
    white-space: nowrap;
  }
  
  
  
  /* ヘッダーにアニメーションを追加：初期状態で上に隠し、表示時に下から出す */
  /* header {
    transform: translateY(-100%);
    animation: slideDown 1.0s ease-out forwards;
  }
  
  @keyframes slideDown {
    to {
      transform: translateY(0);
    }
  } */

  



a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
/* header, */
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    line-height: 1
}

li,
ol,
ul {
    list-style: none
}

a {
    color: inherit;
    text-decoration: none
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400
}

button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0;
    border: none;
    background: transparent;
    outline: none
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
        display: none
    }

    1% {
        opacity: 0;
        display: block
    }

    to {
        opacity: 1;
        display: block
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        display: none
    }

    1% {
        opacity: 0;
        display: block
    }

    to {
        opacity: 1;
        display: block
    }
}

@-webkit-keyframes fadeInRightBottom {
    0% {
        opacity: 0;
        -webkit-transform: translate(10px, 10px);
        transform: translate(10px, 10px)
    }

    to {
        opacity: 1;
        -webkit-transform: translate(0);
        transform: translate(0)
    }
}

@keyframes fadeInRightBottom {
    0% {
        opacity: 0;
        -webkit-transform: translate(10px, 10px);
        transform: translate(10px, 10px)
    }

    to {
        opacity: 1;
        -webkit-transform: translate(0);
        transform: translate(0)
    }
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1
    }

    99% {
        opacity: 0
    }

    to {
        display: none;
        opacity: 0
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    99% {
        opacity: 0
    }

    to {
        display: none;
        opacity: 0
    }
}

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

    1% {
        z-index: 101
    }

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

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

    1% {
        z-index: 101
    }

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

@-webkit-keyframes strokeAnimation {
    80% {
        stroke-dashoffset: 1400;
        fill: transparent
    }

    99% {
        stroke: #111
    }

    to {
        fill: #111;
        stroke: transparent
    }
}

@keyframes strokeAnimation {
    80% {
        stroke-dashoffset: 1400;
        fill: transparent
    }

    99% {
        stroke: #111
    }

    to {
        fill: #111;
        stroke: transparent
    }
}

@-webkit-keyframes strokeAnimationWhite {
    80% {
        stroke-dashoffset: 1400;
        fill: transparent
    }

    99% {
        stroke: #fff
    }

    to {
        fill: #fff;
        stroke: transparent
    }
}

@keyframes strokeAnimationWhite {
    80% {
        stroke-dashoffset: 1400;
        fill: transparent
    }

    99% {
        stroke: #fff
    }

    to {
        fill: #fff;
        stroke: transparent
    }
}

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

    to {
        -webkit-transform: translateX(101%);
        transform: translateX(101%)
    }
}

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

    to {
        -webkit-transform: translateX(101%);
        transform: translateX(101%)
    }
}

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

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

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

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

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

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

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

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

body {
    font-size: 15px;
    font-family: "Noto Serif JP", YuMincho, Yu Mincho, serif;
    font-weight: 500;
    letter-spacing: .1em;
    color: #111
}

@media (max-width:767px) {
    body {
        font-size: 3.73333vw
    }
}

@media (max-width:767px) {
    .top-body {
        padding-top: 20vw
    }
}

img,
picture {
    width: 100%;
    height: 100%;
    display: block
}

video {
    -webkit-filter: drop-shadow(0 0 transparent);
    filter: drop-shadow(0 0 rgba(0, 0, 0, 0));
    outline: none;
    border: none;
    -o-object-fit: cover;
    object-fit: cover
}

.scroll[data-scroll=bottomRightIn] {
    opacity: 0;
    -webkit-transition: all .8s ease-in-out;
    transition: all .8s ease-in-out;
    -webkit-transform: translate(10px, 10px);
    transform: translate(10px, 10px)
}

.is-ScrollActive .scroll[data-scroll=bottomRightIn] {
    opacity: 1;
    -webkit-transform: translate(0);
    transform: translate(0)
}

.swiper-container-wrapper .swiper-button-next,
.swiper-container-wrapper .swiper-button-prev {
    color: #111;
    width: 48px;
    height: 48px;
    border: 1px solid #111;
    border-radius: 50%;
    -webkit-transition: all .4s;
    transition: all .4s
}

.swiper-container-wrapper .swiper-button-next:hover,
.swiper-container-wrapper .swiper-button-prev:hover {
    color: #fff;
    background-color: #111
}

.swiper-container-wrapper .swiper-button-next.white,
.swiper-container-wrapper .swiper-button-prev.white {
    color: #fff;
    border-color: #fff
}

.swiper-container-wrapper .swiper-button-next.white:hover,
.swiper-container-wrapper .swiper-button-prev.white:hover {
    background-color: #fff;
    color: #111
}

.swiper-container-wrapper .swiper-button-next-svg,
.swiper-container-wrapper .swiper-button-prev-svg {
    width: 17px;
    height: 100%
}

.swiper-container-wrapper .swiper-button-prev-svg {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.swiper-container-wrapper .swiper-button-next:after,
.swiper-container-wrapper .swiper-button-prev:after {
    content: ""
}

.button-arrow {
    font-size: 20px;
    position: relative
}

.button-arrow:before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: -1px;
    left: 0;
    background-color: #111;
    background-image: -webkit-gradient(linear, left top, right top, color-stop(33%, #000), color-stop(33%, #fff), color-stop(66%, #fff), color-stop(66%, #000), to(#000));
    background-image: linear-gradient(90deg, #000 33%, #fff 0, #fff 66%, #000 0, #000);
    background-position: 100%;
    background-origin: right;
    background-size: 300%
}

.button-arrow:hover:before {
    background-position: 0;
    -webkit-transition: background-position 1s;
    transition: background-position 1s
}

.button-arrow.white:before {
    background-image: -webkit-gradient(linear, left top, right top, color-stop(33%, #fff), color-stop(33%, #000), color-stop(66%, #000), color-stop(66%, #fff), to(#fff));
    background-image: linear-gradient(90deg, #fff 33%, #000 0, #000 66%, #fff 0, #fff)
}

@media (max-width:767px) {
    .button-arrow {
        font-size: 4.26667vw
    }
}

.button-arrow.white {
    color: #fff
}

.button-arrow.white:before {
    background-color: #fff
}

.button-arrow.white:after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2218.202%22%20height%3D%2213.989%22%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%23fff%22%3E%3Cpath%20d%3D%22M0%206.995h17.934%22%2F%3E%3Cpath%20d%3D%22M10.854.354l6.641%206.641-6.641%206.641%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E")
}

.button-arrow:after {
    content: "";
    display: block;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2218.202%22%20height%3D%2213.989%22%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22currentColor%22%3E%3Cpath%20d%3D%22M0%206.995h17.934%22%2F%3E%3Cpath%20d%3D%22M10.854.354l6.641%206.641-6.641%206.641%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    width: 18px;
    height: 15px;
    margin-left: 8px;
    position: absolute;
    right: -28px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-position: 50%
}

@media (max-width:767px) {
    .button-arrow:after {
        background-size: contain;
        width: 4vw;
        height: 2.93333vw;
        right: -5.06667vw
    }
}

.button-external-arrow {
    position: relative
}

/* .button-external-arrow.white:after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%229.862%22%20height%3D%229.862%22%20viewBox%3D%220%200%209.862%209.862%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_385%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%20385%22%20transform%3D%22translate(-999.217%20-132.498)%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_377%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%20377%22%20transform%3D%22translate(997.161%20139.596)%20rotate(-45)%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_424%22%20data-name%3D%22%E3%83%91%E3%82%B9%20424%22%20d%3D%22M0%2C0H9.2%22%20transform%3D%22translate(0%203.408)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%221%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_425%22%20data-name%3D%22%E3%83%91%E3%82%B9%20425%22%20d%3D%22M0%2C0%2C3.408%2C3.408%2C0%2C6.816%22%20transform%3D%22translate(5.57%200)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%221%22%2F%3E%20%3C%2Fg%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_426%22%20data-name%3D%22%E3%83%91%E3%82%B9%20426%22%20d%3D%22M1000.932%2C133.015h9V142%22%20transform%3D%22translate(-1.528%200.074)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-width%3D%221%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E")
} */

.button-external-arrow:after {
    content: "";
    display: block;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2215.212%22%20height%3D%2215.219%22%20viewBox%3D%220%200%2015.212%2015.219%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_491%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%20491%22%20transform%3D%22translate(-1000.69%20-132.588)%22%3E%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_377%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%20377%22%20transform%3D%22translate(997.161%20143.572)%20rotate(-45)%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_424%22%20data-name%3D%22%E3%83%91%E3%82%B9%20424%22%20d%3D%22M0%2C0H14.826%22%20transform%3D%22translate(0%205.49)%22%20fill%3D%22none%22%20stroke%3D%22%23111%22%20stroke-width%3D%221%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_425%22%20data-name%3D%22%E3%83%91%E3%82%B9%20425%22%20d%3D%22M0%2C0%2C5.49%2C5.49%2C0%2C10.98%22%20transform%3D%22translate(8.973%200)%22%20fill%3D%22none%22%20stroke%3D%22%23111%22%20stroke-width%3D%221%22%2F%3E%20%3C%2Fg%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_426%22%20data-name%3D%22%E3%83%91%E3%82%B9%20426%22%20d%3D%22M1000.932%2C133.015h14.5v14.479%22%20transform%3D%22translate(-0.157%200.074)%22%20fill%3D%22none%22%20stroke%3D%22%23111%22%20stroke-width%3D%221%22%2F%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
    width: 18px;
    height: 15px;
    margin-left: 8px;
    position: absolute;
    right: -28px;
    top: 3px;
    background-repeat: no-repeat;
    background-position: 50%
}

@media (max-width:767px) {
    .button-external-arrow:after {
        width: 3.73333vw;
        height: 2.93333vw;
        right: -5.86667vw;
        background-size: contain
    }
}

.button-circle {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    width: 320px;
    height: 61px;
    border: 1px solid #111;
    font-size: 20px;
    color: black;
    overflow: hidden;
    position: relative;
    -webkit-transition: color .5s;
    transition: color .5s
}

@media (max-width:767px) {
    .button-circle {
        width: 80vw;
        height: 14.66667vw;
        font-size: 4.8vw;
        padding-right: 6.66667vw
    }
}

.button-circle span {
    position: relative
}

.button-circle span:after {
    content: "";
    display: block;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2218.202%22%20height%3D%2213.989%22%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22currentColor%22%3E%3Cpath%20d%3D%22M0%206.995h17.934%22%2F%3E%3Cpath%20d%3D%22M10.854.354l6.641%206.641-6.641%206.641%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    width: 18px;
    height: 15px;
    margin-left: 8px;
    position: absolute;
    right: -24px;
    top: 3px;
    background-repeat: no-repeat;
    background-position: 50%
}

@media (max-width:767px) {
    .button-circle span:after {
        width: 4.53333vw;
        height: 3.46667vw;
        background-size: contain;
        margin-left: 2.13333vw;
        right: -7.46667vw;
        top: .8vw
    }
}

.button-circle:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: .5s;
    transition: .5s;
    position: absolute;
    top: 0;
    left: 0
}

.button-circle:hover:before {
    -webkit-animation: mouseShowCircle .6s ease forwards;
    animation: mouseShowCircle .6s ease forwards
}

.button-circle.is-mouse-leave:before {
    -webkit-animation: mouseLeaveCircle .6s ease;
    animation: mouseLeaveCircle .6s ease
}

.button-circle.white {
    border-color: black
}

/* .button-circle.white span:after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2218.202%22%20height%3D%2213.989%22%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22%23fff%22%3E%3Cpath%20d%3D%22M0%206.995h17.934%22%2F%3E%3Cpath%20d%3D%22M10.854.354l6.641%206.641-6.641%206.641%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E")
} */

.button-circle.white:before {
    background-color: #fff
}

.button-circle.white:hover {
    color: #111
}

.button-circle.white:hover span:after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2218.202%22%20height%3D%2213.989%22%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22currentColor%22%3E%3Cpath%20d%3D%22M0%206.995h17.934%22%2F%3E%3Cpath%20d%3D%22M10.854.354l6.641%206.641-6.641%206.641%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E")
}

.scroll-svg,
.scroll-svg path {
    stroke: #111;
    fill: transparent;
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    stroke-width: .5
}

.is-ScrollActive .scroll-svg,
.is-ScrollActive .scroll-svg path {
    -webkit-animation: strokeAnimation 1.5s cubic-bezier(.46, .35, .77, .71) .3s forwards;
    animation: strokeAnimation 1.5s cubic-bezier(.46, .35, .77, .71) .3s forwards
}

.scroll-svg.white {
    stroke: #fff
}

.is-ScrollActive .scroll-svg.white {
    -webkit-animation: strokeAnimationWhite 1.5s cubic-bezier(.46, .35, .77, .71) 1s forwards;
    animation: strokeAnimationWhite 1.5s cubic-bezier(.46, .35, .77, .71) 1s forwards
}

.scroll-image {
    position: relative;
    overflow: hidden
}

.scroll-image:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translateX(-102%);
    transform: translateX(-102%)
}

.scroll-image__parent.is-ScrollActive .scroll-image:after {
    -webkit-animation: scrollImage 1s ease-in-out forwards;
    animation: scrollImage 1s ease-in-out forwards
}

.scroll-image__inner {
    opacity: 0;
    -webkit-transition: opacity .2s .4s;
    transition: opacity .2s .4s
}

.scroll-image__parent.is-ScrollActive .scroll-image__inner {
    opacity: 1
}

.layout-main {
    width: 90.27778vw;
    margin: auto
}

@media (max-width:767px) {
    .layout-main {
        width: 100%;
        padding: 0 4.26667vw
    }
}

.mouse-pointer {
    position: fixed;
    z-index: 99999;
    pointer-events: none;
    top: 0;
    left: 0;
    -webkit-transition: -webkit-transform .1s ease;
    transition: -webkit-transform .1s ease;
    transition: transform .1s ease;
    transition: transform .1s ease, -webkit-transform .1s ease;
    display: none
}

@media (max-width:767px) {
    .mouse-pointer {
        display: none
    }
}

.mouse-pointer__follow {
    width: 14px;
    height: 14px;
    background-color: #111;
    border-radius: 50%;
    font-size: 14px;
    color: #fff;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    -webkit-transition: .4s;
    transition: .4s;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.is-hover .mouse-pointer__follow {
    opacity: .02;
    width: 72px;
    height: 72px
}

.is-click .mouse-pointer__follow {
    width: 72px;
    height: 72px;
    opacity: 1
}

.mouse-pointer__click {
    opacity: 0;
    -webkit-transition: opacity .4s;
    transition: opacity .4s
}

.is-click .mouse-pointer__click {
    opacity: 1
}

.header__inner {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-fadein {
    display: flex;
    justify-content: center;
    align-items: center;
  }
 
@media (min-width:1440px) {
    .header__logo {
        width: 110px
    }
}

@media (min-width:768px) {
    .header__menu {
        position: relative
    }

    .header__menu:hover:before {
        -webkit-transform-origin: left top;
        transform-origin: left top;
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    .header__menu:before {
        content: "";
        position: absolute;
        left: 0;
        bottom: -5px;
        width: 100%;
        background-color: #111;
        height: 1px;
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transform-origin: right top;
        transform-origin: right top;
        -webkit-transition: -webkit-transform .5s;
        transition: -webkit-transform .5s;
        transition: transform .5s;
        transition: transform .5s, -webkit-transform .5s
    }
}

.header__menu:after {
    width: 10px;
    right: -16px;
    height: 15px;
    top: 0;
    background-size: contain
}

.header__menu-top {
    display: -webkit-box;
    display: flex;
    width: 77.22222vw;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

.header__menu-bottom {
    color: hsla(0, 0%, 40%, .5);
    font-size: 12px;
    margin-top: 11px;
    letter-spacing: .09em;
    color: black;
}

.header__links {
    font-size: 1.04167vw;
    display: -webkit-box;
    display: flex;
    margin-top: 23px
}

@media (min-width:1440px) {
    .header__links {
        font-size: 15px
    }
}

@media (min-width:768px) and (max-width:1025px) {
    .header__links {
        font-size: 12px
    }
}

.header__link {
    position: relative
}

.header__link+.header__link {
    margin-left: 2.56944vw
}

@media (min-width:1440px) {
    .header__link+.header__link {
        margin-left: 39px
    }
}

.header__menu:hover+.header__open,
.header__open:hover {
    visibility: visible;
    opacity: 1
}

.header__open {
    position: absolute;
    padding: 13px 30px;
    background-color: #111;
    color: #fff;
    top: 30px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .4s;
    transition: all .4s
}

.header__open-link {
    display: inline-block;
    white-space: nowrap;
    line-height: 1.9;
    letter-spacing: .06em
}

@media (min-width:768px) {
    .header__open-link {
        position: relative
    }

    .header__open-link:hover:before {
        -webkit-transform-origin: left top;
        transform-origin: left top;
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    .header__open-link:before {
        content: "";
        position: absolute;
        left: 0;
        bottom: -5px;
        width: 100%;
        background-color: #fff;
        height: 1px;
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transform-origin: right top;
        transform-origin: right top;
        -webkit-transition: -webkit-transform .5s;
        transition: -webkit-transform .5s;
        transition: transform .5s;
        transition: transform .5s, -webkit-transform .5s;
        bottom: 4px
    }
}

.header__contact {
    margin-left: 2.77778vw;
    width: 12.5vw;
    height: 1.94444vw;
    color: #fff;
    font-size: 1.04167vw;
    margin-top: 17px;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    border: 1px solid #111;
    position: relative;
    overflow: hidden;
    -webkit-transition: color .4s;
    transition: color .4s
}

.header__contact:hover {
    color: #111
}

.header__contact:hover:after {
    -webkit-animation: mouseShowCircle .6s ease forwards;
    animation: mouseShowCircle .6s ease forwards
}

.header__contact:before {
    background-color: #111
}

.header__contact:after,
.header__contact:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1
}

.header__contact:after {
    background-color: #fff;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%)
}

.header__contact.is-mouse-leave:after {
    -webkit-animation: mouseLeaveCircle .6s ease;
    animation: mouseLeaveCircle .6s ease
}

@media (min-width:1440px) {
    .header__contact {
        width: 180px;
        height: 28px;
        font-size: 15px
    }
}

@media (min-width:768px) and (max-width:1025px) {
    .header__contact {
        width: 120px;
        height: 24px;
        font-size: 12px
    }
}

.header__contact-wrapper {
    display: -webkit-box;
    display: flex
}


.header__contact-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* 左寄せ */
    gap: 10px;
  }





.header__tel {
    margin-left: 2.08333vw
}

@media (min-width:1440px) {
    .header__tel {
        margin-left: 30px
    }
}

@media (min-width:768px) and (max-width:1025px) {
    .header__tel {
        display: none
    }
}

.header__tel-freecall {
    width: 7.43056vw;
    height: .69444vw;
    margin-left: auto
}

@media (min-width:1440px) {
    .header__tel-freecall {
        width: 107px;
        height: 10px
    }
}

.header__tel-num {
    width: 16vw;
    height: 1.73611vw;
    margin-top: 8px
}

@media (min-width:1440px) {
    .header__tel-num {
        width: 241px;
        height: 25px
    }
}

.header-open {
    width: 100%;
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    z-index: 130;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: -webkit-transform .4s ease;
    transition: -webkit-transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .4s ease
}

.header-open.is-fixed {
    -webkit-transform: translateY(0);
    transform: translateY(0)
}

.header-open.is-not-fixed {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%)
}

.header-open__inner {
    width: 100%;
    padding: 0 4.86111vw;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between
}

.header-open__inner,
.header-open__list {
    display: -webkit-box;
    display: flex
}

@media (min-width:768px) and (max-width:1025px) {
    .header-open__list .header__link {
        font-size: 15px
    }
}

.header-open__list .header__link+.header__link {
    margin-left: 2.77778vw
}

@media (min-width:768px) and (max-width:1330px) {
    .header-open__list .header__link+.header__link {
        margin-left: 40px
    }
}

@media (min-width:768px) and (max-width:1025px) {
    .header-open__list .header__link+.header__link {
        margin-left: 20px
    }
}

.header-open__tel {
    width: 307px;
    margin-left: 1.94444vw
}

@media (min-width:768px) and (max-width:1330px) {
    .header-open__tel {
        display: none
    }
}

.header-open__button {
    width: 180px;
    height: 28px;
    color: #fff;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    margin-left: 5.20833vw;
    border: 1px solid #111;
    position: relative;
    overflow: hidden;
    -webkit-transition: color .4s;
    transition: color .4s
}

.header-open__button:hover {
    color: #111
}

.header-open__button:hover:after {
    -webkit-animation: mouseShowCircle .6s ease forwards;
    animation: mouseShowCircle .6s ease forwards
}

.header-open__button:before {
    background-color: #111
}

.header-open__button:after,
.header-open__button:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1
}

.header-open__button:after {
    background-color: #fff;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%)
}

.header-open__button.is-mouse-leave:after {
    -webkit-animation: mouseLeaveCircle .6s ease;
    animation: mouseLeaveCircle .6s ease
}

.header-open__contact {
    display: -webkit-box;
    display: flex
}

.header-sns {


    display: flex;
    text-align: center;
    justify-content: space-between;



    width: 4.86111vw;
    /* position: fixed; */
    bottom: 1.04167vw;
    right: 0;
    z-index: 100;
    -webkit-transition: opacity .2s;
    transition: opacity .2s
}

.header-sns.is-hidden {
    opacity: 0
}

.header-sns__link {
    display: block;
    text-align: center;
    color: #aaa;
    -webkit-transition: color .2s;
    transition: color .2s
}

.header-sns__link:hover {
    color: #5d5d5d
}

.header-sns__link:hover.facebook {
    color: #1877f2
}

.header-sns__link:hover.youtube {
    color: #da1725
}

.header-sns__link:hover.line {
    color: #00b900
}

.header-sns__link:hover.instagram:before {
    opacity: 1
}

.header-sns__link:hover.instagram .header-sns__icon {
    opacity: 0
}

.header-sns__link.instagram {
    position: relative
}

.header-sns__link.instagram:before {
    -webkit-transition: opacity .4s;
    transition: opacity .4s;
    opacity: 0;
    content: "";
    display: block;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216.388%22%20height%3D%2216.388%22%20viewBox%3D%220%200%2016.388%2016.388%22%3E%20%3Cdefs%3E%20%3ClinearGradient%20id%3D%22linear-gradient%22%20x1%3D%220.084%22%20y1%3D%220.916%22%20x2%3D%220.916%22%20y2%3D%220.084%22%20gradientUnits%3D%22objectBoundingBox%22%3E%20%3Cstop%20offset%3D%220%22%20stop-color%3D%22%23ffd600%22%2F%3E%20%3Cstop%20offset%3D%220.5%22%20stop-color%3D%22%23ff0100%22%2F%3E%20%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23d800b9%22%2F%3E%20%3C%2FlinearGradient%3E%20%3ClinearGradient%20id%3D%22linear-gradient-2%22%20x1%3D%220.146%22%20y1%3D%220.854%22%20x2%3D%220.854%22%20y2%3D%220.146%22%20gradientUnits%3D%22objectBoundingBox%22%3E%20%3Cstop%20offset%3D%220%22%20stop-color%3D%22%23ff6400%22%2F%3E%20%3Cstop%20offset%3D%220.5%22%20stop-color%3D%22%23ff0100%22%2F%3E%20%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23fd0056%22%2F%3E%20%3C%2FlinearGradient%3E%20%3ClinearGradient%20id%3D%22linear-gradient-3%22%20x1%3D%220.146%22%20y1%3D%220.854%22%20x2%3D%220.854%22%20y2%3D%220.146%22%20gradientUnits%3D%22objectBoundingBox%22%3E%20%3Cstop%20offset%3D%220%22%20stop-color%3D%22%23f30072%22%2F%3E%20%3Cstop%20offset%3D%221%22%20stop-color%3D%22%23e50097%22%2F%3E%20%3C%2FlinearGradient%3E%20%3C%2Fdefs%3E%20%3Cg%20id%3D%22instagram%22%20transform%3D%22translate(256%20255.998)%22%3E%20%3Cg%20id%3D%22instagram-2%22%20data-name%3D%22instagram%22%20transform%3D%22translate(-256%20-255.998)%22%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_948%22%20data-name%3D%22%E3%83%91%E3%82%B9%20948%22%20d%3D%22M16.338%2C4.816a6.016%2C6.016%2C0%2C0%2C0-.381-1.989%2C4.016%2C4.016%2C0%2C0%2C0-.945-1.451A4.017%2C4.017%2C0%2C0%2C0%2C13.561.43%2C6.014%2C6.014%2C0%2C0%2C0%2C11.572.05C10.7.01%2C10.419%2C0%2C8.194%2C0s-2.5.01-3.378.049A6.016%2C6.016%2C0%2C0%2C0%2C2.827.43a4.016%2C4.016%2C0%2C0%2C0-1.451.945A4.017%2C4.017%2C0%2C0%2C0%2C.43%2C2.827%2C6.015%2C6.015%2C0%2C0%2C0%2C.05%2C4.815C.01%2C5.689%2C0%2C5.968%2C0%2C8.194s.01%2C2.5.05%2C3.378A6.014%2C6.014%2C0%2C0%2C0%2C.43%2C13.561a4.015%2C4.015%2C0%2C0%2C0%2C.945%2C1.451%2C4.015%2C4.015%2C0%2C0%2C0%2C1.451.945%2C6.012%2C6.012%2C0%2C0%2C0%2C1.989.381c.874.04%2C1.153.049%2C3.378.049s2.5-.009%2C3.378-.049a6.013%2C6.013%2C0%2C0%2C0%2C1.989-.381%2C4.189%2C4.189%2C0%2C0%2C0%2C2.4-2.4%2C6.014%2C6.014%2C0%2C0%2C0%2C.381-1.989c.04-.874.049-1.153.049-3.378S16.378%2C5.689%2C16.338%2C4.816ZM14.863%2C11.5a4.534%2C4.534%2C0%2C0%2C1-.282%2C1.521%2C2.713%2C2.713%2C0%2C0%2C1-1.555%2C1.555%2C4.534%2C4.534%2C0%2C0%2C1-1.521.282c-.864.04-1.123.048-3.311.048s-2.447-.008-3.311-.048a4.535%2C4.535%2C0%2C0%2C1-1.521-.282%2C2.539%2C2.539%2C0%2C0%2C1-.942-.613%2C2.538%2C2.538%2C0%2C0%2C1-.613-.942A4.534%2C4.534%2C0%2C0%2C1%2C1.524%2C11.5c-.039-.864-.048-1.123-.048-3.311s.008-2.447.048-3.311a4.537%2C4.537%2C0%2C0%2C1%2C.282-1.521%2C2.54%2C2.54%2C0%2C0%2C1%2C.613-.942%2C2.537%2C2.537%2C0%2C0%2C1%2C.942-.613%2C4.533%2C4.533%2C0%2C0%2C1%2C1.521-.282c.864-.039%2C1.123-.048%2C3.311-.048h0c2.188%2C0%2C2.447.008%2C3.311.048a4.534%2C4.534%2C0%2C0%2C1%2C1.521.282%2C2.541%2C2.541%2C0%2C0%2C1%2C.942.613%2C2.537%2C2.537%2C0%2C0%2C1%2C.613.942%2C4.529%2C4.529%2C0%2C0%2C1%2C.282%2C1.521c.039.864.048%2C1.123.048%2C3.311S14.9%2C10.641%2C14.863%2C11.5Zm0%2C0%22%20fill%3D%22url(%23linear-gradient)%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_949%22%20data-name%3D%22%E3%83%91%E3%82%B9%20949%22%20d%3D%22M128.747%2C124.539a4.208%2C4.208%2C0%2C1%2C0%2C4.208%2C4.208A4.208%2C4.208%2C0%2C0%2C0%2C128.747%2C124.539Zm0%2C6.939a2.731%2C2.731%2C0%2C1%2C1%2C2.731-2.731A2.731%2C2.731%2C0%2C0%2C1%2C128.747%2C131.478Zm0%2C0%22%20transform%3D%22translate(-120.553%20-120.553)%22%20fill%3D%22url(%23linear-gradient-2)%22%2F%3E%20%3Cpath%20id%3D%22%E3%83%91%E3%82%B9_950%22%20data-name%3D%22%E3%83%91%E3%82%B9%20950%22%20d%3D%22M363.9%2C89.608a.983.983%2C0%2C1%2C1-.983-.983A.983.983%2C0%2C0%2C1%2C363.9%2C89.608Zm0%2C0%22%20transform%3D%22translate(-350.345%20-85.788)%22%20fill%3D%22url(%23linear-gradient-3)%22%2F%3E%20%3C%2Fg%3E%20%3C%2Fg%3E%3C%2Fsvg%3E");
    width: 18px;
    height: 18px;
    background-size: cover;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    position: absolute
}

.header-sns__link+.header-sns__link {
    margin-top: 17px
}

.header-sns__icon {
    width: 18px;
    height: 18px;
    -webkit-transition: opacity .4s;
    transition: opacity .4s
}






.header-sns.is-show img {
    width: 32px;     /* 好みのサイズに調整 */
    height: 32px;    /* アスペクト比が合ってる場合は省略可 */
    margin: 5px;     /* アイコン同士の余白 */
    object-fit: contain;
    gap: 10px;
    
    
    width: 40px;
    height: 40px;
    vertical-align: middle;
    object-fit: contain;
    margin: 5px;
      
  }
  
  .header-sns.is-show li {
    display: inline-block;  /* 横並びにしたい場合 */
  }

  






.header-sp {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding: 5.33333vw 4.26667vw;
    -webkit-box-align: center;
    align-items: center;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 130;
    background-color: white;
}

.header-sp__logo {
    width: 14.66667vw;
    height: 18.26667vw
}

@media (max-width:767px) {
    .header-sp__logo {
        width: 30vw;
        height: 10vw
    }
}



.header-sp__menu {
    width: 16vw;
    margin-bottom: 3.73333vw;
    position: fixed;
    right: 4.53333vw
}

.header-sp__menu-border {
    width: 13.33333vw;
    height: 1px;
    background-color: #111;
    display: block
}

.header-sp__menu-border+.header-sp__menu-border {
    margin-top: 1.86667vw;
    margin-left: auto
}

.header-sp-open {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(17, 17, 17, .9);
    z-index: 130;
    color: #fff
}

.is-close .header-sp-open {
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    -webkit-transition: all .4s;
    transition: all .4s
}

.is-open .header-sp-open {
    opacity: 1;
    visibility: visible;
    z-index: 130;
    -webkit-transition: all .4s;
    transition: all .4s
}

.header-sp-open__top {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding: 5.33333vw 4.26667vw;
    -webkit-box-align: center;
    align-items: center
}

.header-sp-open__logo {
    width: 14.66667vw;
    height: 18.26667vw
}

.header-sp-open__menu {
    width: 16vw;
    margin-bottom: 3.73333vw
}

.header-sp-open__menu-border {
    height: 1px;
    background-color: #fff;
    display: block;
    width: 100%
}

.header-sp-open__menu-border:first-child {
    -webkit-transform: rotate(7deg) translateY(4px);
    transform: rotate(7deg) translateY(4px)
}

.header-sp-open__menu-border:nth-child(2) {
    -webkit-transform: rotate(-7deg) translateY(-4px);
    transform: rotate(-7deg) translateY(-4px)
}

.header-sp-open__menu-border+.header-sp-open__menu-border {
    margin-top: 1.86667vw;
    margin-left: auto
}

.header-sp__open-menu {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding: 6vh 9.33333vw 0
}

.header-sp__item {
    display: inline-block;
    width: 100%;
    font-size: 5.86667vw;
    letter-spacing: .1em
}

.header-sp__item+.header-sp__item {
    margin-top: 5.9vh
}

.header-sp__menu-sns {
    width: 6vw;
    height: 4.13333vw;
    display: block;
    margin: auto
}

.header-sp__menu-sns:first-child {
    width: 2.4vw;
    height: 4.66667vw
}

.header-sp__menu-sns:nth-child(2) {
    width: 5.06667vw;
    height: 5.06667vw
}

.header-sp__menu-sns:nth-child(3) {
    width: 5.86667vw;
    height: 5.6vw
}

.header-sp__menu-sns+.header-sp__menu-sns {
    margin-top: 10.66667vw
}

.header-sp__menu-sns-icon {
    width: 100%;
    height: 100%
}

.header-sp-sns {
    background-color: rgba(17, 17, 17, .9);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 130;
    -webkit-transition: opacity .4s;
    transition: opacity .4s
}

.sp.is-open .header-sp-sns {
    background-color: transparent
}

.header-sp-sns.is-hidden {
    opacity: 0;
    visibility: hidden
}

.sp.is-open .header-sp-sns.is-hidden {
    opacity: 1;
    visibility: visible
}

.header-sp-sns__open {
    color: #fff;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    height: 0
}

.sp.is-open .header-sp-sns__open {
    opacity: 1;
    visibility: visible;
    height: auto
}

.header-sp-sns__open-heading {
    font-size: 4.53333vw
}

.header-sp-sns__open-text {
    font-size: 3.73333vw;
    color: #aaa;
    margin-top: 2.13333vw
}

.header-sp-sns__inner {
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding: 0 4vw;
    font-size: 3.2vw;
    height: 18.66667vw
}

.header-sp-sns__button,
.header-sp-sns__inner {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center
}

.header-sp-sns__button {
    -webkit-box-pack: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 4px;
    height: 10.13333vw
}

.header-sp-sns__tel {
    width: 37.46667vw
}

.header-sp-sns__tel-svg {
    width: 31.2vw;
    height: 5.33333vw;
    overflow: visible
}

.header-sp-sns__button img {
    display: block;
    margin: auto;
    width: 85%;
}

.header-sp-sns__mail {
    width: 37.46667vw;
    letter-spacing: .06em
}

.header-sp-sns__mail-svg {
    width: 4vw;
    height: 2.66667vw;
    margin-right: 2.4vw;
    overflow: visible
}

.header-sp-sns__line {
    width: 12vw
}

.header-sp-sns__line-svg {
    width: 4.8vw;
    height: 4.53333vw;
    overflow: visible
}



.sns-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    vertical-align: middle;
  }
  











.footer-contact {
    color: #fff;
    background-image: url(../ARXIA_img/arxia_img/bg-gray.jpg);
    background-size: cover;
    padding: 112px 0 87px;
    text-align: center;
    /* background-color: rgba(0, 0, 0, 0.1); */
    background-blend-mode: darken;
}

@media (max-width:767px) {
    .footer-contact {
        padding: 16vw 0
    }
}

.footer-contact__title {
    font-size: 50px;
    letter-spacing: .07em
}

@media (max-width:767px) {
    .footer-contact__title svg {
        width: 52.53333vw;
        height: 9.33333vw
    }
}

.footer-contact__text {
    margin-top: 16px;
    line-height: 1.9;
    letter-spacing: .06em;
    color: black;
}

@media (max-width:767px) {
    .footer-contact__text {
        font-size: 3.73333vw;
        margin-top: 5.33333vw;
        line-height: 2;
        padding: 0 4.26667vw;
        text-align: left
    }
}

.footer-contact__button {
    border-color: #fff;
    margin: 33px auto 0
}

@media (max-width:767px) {
    .footer-contact__button {
        margin: 8.8vw auto 0
    }
}

.footer-tel {
    text-align: center;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    padding: 30px 0;
    display: -webkit-box;
    display: flex;
    flex-direction: column;
}

@media (max-width:767px) {
    .footer-tel {
        padding: 6.66667vw 0 8vw;
        flex-wrap: wrap
    }
}

.footer-tel__text {
    font-size: 17px;
    font-weight: bold;
    letter-spacing: .06em
}

@media (max-width:767px) {
    .footer-tel__text {
        font-size: 3.73333vw;
        margin-right: 0
    }
}

.footer-tel__image {
    position: relative;
    left: 40px;
    width: 300px;
}

@media (max-width:767px) {
    .footer-tel__image {
        width: 73.6vw;
        margin: 5.33333vw 0 0
    }
}

.footer {
    background-image: url(../ARXIA_img/arxia_img/bg-gray.jpg);
    color: #fff;
    /* background-color: rgba(0, 0, 0, 0.1); */
    background-blend-mode: darken;
}

.footer__inner {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding: 100px 0
}

@media (max-width:767px) {
    .footer__inner {
        /* flex-wrap: wrap; */
        padding: 17.33333vw 0 9.33333vw
    }
}











.footer__logo {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;

}

@media (max-width:767px) {
    .footer__logo {
        flex-wrap: wrap
    }
}

.footer__logo-image {
    width: 7.639vw;
    
}

@media (max-width:767px) {
    .footer__logo-image {
        width: 30.4vw;
        height: 11.2vw;
        margin: auto
    }
}

.footer__sns-list {
    margin-left: 40px
}

@media (max-width:767px) {
    .footer__sns-list {
        width: 100%;
        text-align: center;
        margin: 7.33333vw 0 0
    }
}

.footer__sns {
    border: 1px solid #efefef;
    border-radius: 50%;
    position: relative;
    width: 28px;
    height: 28px;
    display: -webkit-inline-box;
    display: inline-flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center
}

.footer__sns+.footer__sns {
    margin-left: 3px
}

@media (max-width:767px) {
    .footer__sns+.footer__sns {
        margin-left: 2.4vw
    }
}

.footer__sns-border {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    fill: none;
    stroke: #fff;
    stroke-width: .8;
    stroke-dasharray: 0 90;
    -webkit-transition: stroke-dasharray 2s cubic-bezier(.215, .61, .355, 1);
    transition: stroke-dasharray 2s cubic-bezier(.215, .61, .355, 1);
    position: absolute;
    top: -2px;
    left: -1px
}

.footer__sns-icon {
    width: 14px;
    height: 11px
}

.footer__menu {
    margin-top: 80px;
    display: -webkit-box;
    display: flex;
    color: black;
    font-size: 17px;
}

@media (min-width:768px) {
    .footer__menu-link {
        position: relative
    }

    .footer__menu-link:hover:before {
        -webkit-transform-origin: left top;
        transform-origin: left top;
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    .footer__menu-link:before {
        content: "";
        position: absolute;
        left: 0;
        bottom: -5px;
        width: 100%;
        background-color: #fff;
        height: 1px;
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transform-origin: right top;
        transform-origin: right top;
        -webkit-transition: -webkit-transform .5s;
        transition: -webkit-transform .5s;
        transition: transform .5s;
        transition: transform .5s, -webkit-transform .5s
    }
}

.footer__menu-link:after {
    right: -23px;
    top: 0
}

.footer__menu-link+.footer__menu-link {
    margin-left: 56px
}

@media (min-width:768px) and (max-width:1025px) {
    .footer__menu-link+.footer__menu-link {
        margin-left: 16px;
        font-size: 12px
    }
}

.footer__access {
    padding: 34px 62px 0 0
}

@media (min-width:768px) and (max-width:1025px) {
    .footer__access {
        padding: 34px 0 0
    }
}

.footer__access-title {
    color: black
}

.footer__access-text {
    margin-top: 16px;
    line-height: 1.8;
    font-size: 14px;
    color: black;
}

@media (max-width:767px) {
    .footer__access-text {
        width: 100%;
        text-align: center;
        font-size: 2.93333vw;
        margin-top: 7.2vw;
        line-height: 2;
        letter-spacing: .01em
    }
}

.footer__access-map {
    display: inline-block;
    margin-top: 10px;
    font-size: 13px;
    position: relative;
    color: black;
}

.footer__access-map:before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: -1px;
    left: 0;
    background-color: #111;
    background-image: -webkit-gradient(linear, left top, right top, color-stop(33%, #000), color-stop(33%, #fff), color-stop(66%, #fff), color-stop(66%, #000), to(#000));
    background-image: linear-gradient(90deg, #000 33%, #fff 0, #fff 66%, #000 0, #000);
    background-position: 100%;
    background-origin: right;
    background-size: 300%
}

.footer__access-map:hover:before {
    background-position: 0;
    -webkit-transition: background-position 1s;
    transition: background-position 1s
}

/* .footer__access-map.white:before {
    background-image: -webkit-gradient(linear, left top, right top, color-stop(33%, #fff), color-stop(33%, #000), color-stop(66%, #000), color-stop(66%, #fff), to(#fff));
    background-image: linear-gradient(90deg, #fff 33%, #000 0, #000 66%, #fff 0, #fff)
} */

.footer__access-map svg {
    width: 10px;
    height: 13px
}

@media (max-width:767px) {
    .footer__access-map {
        font-size: 3.2vw;
        margin: 1.6vw auto
    }
}

.footer__bottom {
    font-size: 12px;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    padding: 13px 70px
}

@media (max-width:767px) {
    .footer__bottom {
        padding: 4vw 0;
        -webkit-box-pack: center;
        justify-content: center
    }
}

.footer__bottom-copy {
    color: black;
    font-size: 12px
}

@media (max-width:767px) {
    .footer__bottom-copy {
        font-size: 2.66667vw
    }
}

.footer__bottom-policy {
    position: relative
}

.footer__bottom-policy:hover:before {
    -webkit-transform-origin: left top;
    transform-origin: left top;
    -webkit-transform: scale(1);
    transform: scale(1)
}

.footer__bottom-policy:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    background-color: #111;
    height: 1px;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: right top;
    transform-origin: right top;
    -webkit-transition: -webkit-transform .5s;
    transition: -webkit-transform .5s;
    transition: transform .5s;
    transition: transform .5s, -webkit-transform .5s
}

@media (max-width:767px) {
    .footer__bottom-policy {
        font-size: 2.66667vw;
        text-align: center;
        text-decoration: underline;
        margin: 7.73333vw auto 0
    }
}

.mv {
    padding: 50px 0 0
}

@media (max-width:767px) {
    .mv {
        padding: 3vw 0 0
    }
}

.mv__inner {
    text-align: right
}

.mv__title-ja {
    width: 38.68056vw;
    height: 1.66667vw;
    margin-left: auto
}

@media (max-width:767px) {
    .mv__title-ja {
        width: 60vw;
        height: 12.66667vw;
        margin-left: 0
    }
}

.mv__title-ja svg {
    width: 100%;
    height: 100%;
    overflow: inherit
}

.mv__title-en {
    width: 70.69444vw;
    height: 4.30556vw;
    margin-left: auto;
    margin-top: 24px
}

@media (max-width:767px) {
    .mv__title-en {
        width: 91.46667vw;
        height: 24.93333vw;
        margin-top: 6.66667vw;
        margin-left: 0
    }
}

.mv__title-en svg {
    width: 100%;
    height: 100%;
    overflow: inherit
}

@-webkit-keyframes zoomIn {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    to {
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }
}

@keyframes zoomIn {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    to {
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }
}

.mv__images {
    margin-top: 66px;
    /* display: none; */
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    align-items: flex-start;
    position: relative
}

@media (max-width:767px) {
    .mv__images {
        flex-wrap: wrap;
        margin-top: 6.66667vw
    }
}

.mv__images img {
    position: absolute;
    -webkit-transition: all 1.6s;
    transition: all 1.6s
}

.mv__images .zoomIn {
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

.mv__images[data-active="1"] [data-slider-image="1"].zoomIn {
    -webkit-animation: zoomIn 6s linear forwards;
    animation: zoomIn 6s linear forwards
}

.mv__images[data-active="1"] [data-slider-image="2"],
.mv__images[data-active="1"] [data-slider-image="3"],
.mv__images[data-active="2"] [data-slider-image="1"] {
    opacity: 0
}

.mv__images[data-active="2"] [data-slider-image="2"].zoomIn {
    -webkit-animation: zoomIn 6s linear forwards;
    animation: zoomIn 6s linear forwards
}

.mv__images[data-active="2"] [data-slider-image="3"],
.mv__images[data-active="3"] [data-slider-image="1"],
.mv__images[data-active="3"] [data-slider-image="2"] {
    opacity: 0
}

.mv__images[data-active="3"] [data-slider-image="3"].zoomIn {
    -webkit-animation: zoomIn 6s linear forwards;
    animation: zoomIn 6s linear forwards
}

@media (max-width:767px) {
    .mv__images-left {
        margin-bottom: .66667vw
    }
}

.mv__image-01 {
    width: 39.09722vw;
    height: 39.30556vw
}

@media (max-width:767px) {
    .mv__image-01 {
        width: 91.46667vw;
        height: 92vw
    }
}

.mv__image-02 {
    width: 24.375vw;
    height: 23.75vw
}

@media (max-width:767px) {
    .mv__image-02 {
        width: 44vw;
        height: 42.8vw
    }
}

.mv__image-03 {
    width: 24.375vw;
    height: 15.27778vw;
    margin-top: .27778vw
}

@media (max-width:767px) {
    .mv__image-03 {
        margin-top: .93333vw;
        width: 44vw;
        height: 27.06667vw
    }
}

.mv__image-04 {
    width: 25.83333vw;
    height: 39.30556vw
}

@media (max-width:767px) {
    .mv__image-04 {
        width: 46.53333vw;
        height: 70.93333vw
    }
}

.mv__link {
    margin: 28px 27px 0 0;
    display: inline-block
}

@media (max-width:767px) {
    .mv__link {
        margin: 6.4vw 5.06667vw 0 0
    }
}

.mv__image {
    position: relative;
    overflow: hidden
}

.mv__image:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translateX(-102%);
    transform: translateX(-102%)
}

.project {
    position: relative
}

@media (min-width:768px) {
    .project {
        margin-bottom: 40px
    }
}

.project__bg {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 50.13889vw;
    background-image: url(../images/bg-gray.jpg);
    z-index: -1
}

@media (min-width:768px) {
    .project__inner {
        padding: 96px 0 0;
        display: -webkit-box;
        display: flex;
        -webkit-box-pack: justify;
        justify-content: space-between
    }
}

@media (max-width:767px) {
    .project__inner {
        padding: 21.33333vw 4.26667vw 0
    }
}

.project__left {
    position: -webkit-sticky;
    position: sticky;
    top: 70px;
    height: 400px;
    z-index: 15
}

@media (max-width:767px) {
    .project__left {
        position: relative;
        top: auto;
        height: auto
    }
}

.project__right {
    padding-top: 130px
}

@media (max-width:767px) {
    .project__right {
        padding-top: 0
    }
}

.project__title-ja {
    display: block;
    font-size: 16px
}

@media (max-width:767px) {
    .project__title-ja {
        font-size: 3.46667vw
    }
}

.project__title-en {
    display: block;
    font-size: 66px;
    margin-top: 10px;
    letter-spacing: .08em
}

@media (max-width:767px) {
    .project__title-en {
        margin-top: -1.33333vw
    }
}

@media (min-width:768px) and (max-width:1025px) {
    .project__title-en svg {
        width: 19.44444vw;
        height: 4.86111vw
    }
}

@media (max-width:767px) {
    .project__title-en svg {
        width: 54.8vw;
        height: 11.73333vw
    }
}

.project__list {
    margin-top: 24px
}

@media (max-width:767px) {
    .project__list {
        display: -webkit-box;
        display: flex;
        flex-wrap: wrap;
        margin-top: 5.33333vw
    }
}

@media (max-width:767px) {
    .project__list-title {
        color: #ccc;
        font-size: 3.73333vw;
        margin: 6.4vw 0 0
    }
}

.project__item {
    letter-spacing: .05em
}

@media (max-width:767px) {
    .project__item {
        width: 65%;
        margin-bottom: 3vw;
        font-size: 3vw;
        text-align: left;
        padding: 0px 10px 0px 10px;
    }
}

@media (max-width:767px) {
    .project__item:nth-child(2n) {
        width: 35%
    }
}

@media (min-width:768px) {
    .project__item+.project__item {
        margin-top: 13px
    }
}

.project__item-all {
    margin-top: 34px
}

@media (max-width:767px) {
    .project__item-all {
        margin-top: 9.86667vw;
        text-align: center;
        padding-right: 6.66667vw
    }
}

.project__link-all {
    font-size: 20px
}

@media (max-width:767px) {
    .project__link-all {
        font-size: 4.26667vw
    }
}

.project__link {
    position: relative
}

.project__link:before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    bottom: -1px;
    left: 0;
    background-color: #111;
    background-image: -webkit-gradient(linear, left top, right top, color-stop(33%, #000), color-stop(33%, #fff), color-stop(66%, #fff), color-stop(66%, #000), to(#000));
    background-image: linear-gradient(90deg, #000 33%, #fff 0, #fff 66%, #000 0, #000);
    background-position: 100%;
    background-origin: right;
    background-size: 300%
}

.project__link:hover:before {
    background-position: 0;
    -webkit-transition: background-position 1s;
    transition: background-position 1s
}

.project__link.white:before {
    background-image: -webkit-gradient(linear, left top, right top, color-stop(33%, #fff), color-stop(33%, #000), color-stop(66%, #000), color-stop(66%, #fff), to(#fff));
    background-image: linear-gradient(90deg, #fff 33%, #000 0, #000 66%, #fff 0, #fff)
}

@media (max-width:767px) {
    .project__images {
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    .sp__01 {
        order: 1;
    }
    .sp__02 {
        order: 2;
    }
    .sp__03 {
        order: 3;
    }
    .sp__04 {
        order: 4;
    }
    .sp__05 {
        order: 5;
    }
    .sp__06 {
        order: 6;
    }
    .sp__07 {
        order: 7;
    }
    .sp__08 {
        order: 8;
    }
    .sp__09 {
        order: 9;
    }
}

@media (min-width:768px) {
    .project__images {
        width: 64.58333vw;
        display: -webkit-box;
        display: flex;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        justify-content: space-between
    }
}

@media (min-width:768px) {

    .project__image:first-child,
    .project__image:nth-child(2) {
        margin-top: 0
    }
}

@media (min-width:768px) {
    .project__image {
        width: 31.94444vw;
        height: auto;
        margin-bottom: 2.77778vw;
        position: relative;
        display: block
    }
}

@media (max-width:767px) {
    .project__image {
        width: 91.33333vw;
        margin: 0;
        display: none
    }
}

@media (max-width:767px) {
    .project__image.sp-show {
        display: block;
        margin-top: 6.93333vw
    }
}

.project__image picture,
.project__image video {
    width: 100%;
    height: 19.16667vw
}

@media (max-width:767px) {

    .project__image picture,
    .project__image video {
        height: 54.8vw
    }
}



.project__image-bg {
    position: absolute;
    width: 61.25vw !important;
    height: 36.18056vw !important;
    left: -10.90278vw;
    top: -6.18056vw;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    -webkit-transform: scale(.9);
    transform: scale(.9)
}

@media (max-width:767px) {
    .project__image-bg {
        display: none
    }
}

.project__image:nth-child(2n) .project__image-bg {
    left: auto;
    right: -20px
}

.project__image.is-hover .project__image-bg {
    opacity: 1;
    visibility: visible;
    z-index: 10;
    -webkit-transform: scale(1);
    transform: scale(1)
}

.project__image-thumbnail-image {
    overflow: hidden;
    position: relative
}

.project__image-thumbnail-image .image__inner {
    opacity: 0;
    -webkit-transition: opacity .1s .5s;
    transition: opacity .1s .5s
}

.project__image-thumbnail-image:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translateX(-102%);
    transform: translateX(-102%)
}

.project__image.is-ScrollActive .project__image-thumbnail-image .image__inner {
    opacity: 1
}

.project__image.is-ScrollActive .project__image-thumbnail-image:after {
    -webkit-animation: scrollImage 1s ease-in-out forwards;
    animation: scrollImage 1s ease-in-out forwards
}

.project__image-border {
    position: absolute;
    background-color: #fff;
    opacity: 0
}

.is-list-hover .project__image-border {
    opacity: 1
}

.project__image-border.top {
    width: 100%;
    height: 1px;
    top: 0;
    left: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%)
}

.is-list-hover .project__image-border.top {
    -webkit-transform: translate(0);
    transform: translate(0);
    -webkit-transition: .2s .2s;
    transition: .2s .2s
}

.project__image-border.right {
    height: 100%;
    width: 1px;
    top: 0;
    right: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%)
}

.is-list-hover .project__image-border.right {
    -webkit-transform: translate(0);
    transform: translate(0);
    -webkit-transition: .2s .4s;
    transition: .2s .4s
}

.project__image-border.bottom {
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%)
}

.is-list-hover .project__image-border.bottom {
    -webkit-transform: translate(0);
    transform: translate(0);
    -webkit-transition: .2s .6s;
    transition: .2s .6s
}

.project__image-border.left {
    height: 100%;
    width: 1px;
    top: 0;
    left: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%)
}

.is-list-hover .project__image-border.left {
    -webkit-transform: translate(0);
    transform: translate(0);
    -webkit-transition: .2s .8s;
    transition: .2s .8s
}

.project__image-thumbnail {
    position: relative;
    cursor: pointer;
    z-index: 30
}

.project__image-thumbnail img,
.project__image-thumbnail picture {
    -webkit-transition: opacity .4s;
    transition: opacity .4s
}

.is-list-hover .project__image-thumbnail img,
.is-list-hover .project__image-thumbnail picture {
    opacity: 0
}

.project__image-text {
    font-size: 20px;
    margin-top: 5px;
    position: relative;
    z-index: 10;
    line-height: 1.3;
    display: inline-block;
    overflow: hidden;
    -webkit-transition: padding .4s .3s, color .4s ease-in-out .3s;
    transition: padding .4s .3s, color .4s ease-in-out .3s;
    letter-spacing: .1em
}

.project__image.is-hover .project__image-text {
    color: #fff;
    padding: 0 5px
}

.project__image-text:before {
    content: "";
    display: block;
    width: 110%;
    height: 100%;
    background-color: #111;
    position: absolute;
    -webkit-transition: -webkit-transform .4s .3s;
    transition: -webkit-transform .4s .3s;
    transition: transform .4s .3s;
    transition: transform .4s .3s, -webkit-transform .4s .3s;
    -webkit-transform: translateX(-105%);
    transform: translateX(-105%);
    z-index: -1
}

.project__image.is-hover .project__image-text:before {
    -webkit-transform: translate(-10%, -10%);
    transform: translate(-10%, -10%)
}

@media (max-width:767px) {
    .project__image-text {
        font-size: 4.53333vw;
        margin-top: 0;
        line-height: 1.5;
        letter-spacing: .07em
    }
}

.project__image-category {
    font-size: 13px;
    margin-top: 14px;
    position: relative;
    z-index: 10;
    line-height: 1.3;
    display: inline-block;
    overflow: hidden;
    -webkit-transition: padding .4s .3s, color .4s ease-in-out .3s;
    transition: padding .4s .3s, color .4s ease-in-out .3s;
    letter-spacing: .08em
}

.project__image.is-hover .project__image-category {
    color: #fff;
    padding: 0 5px
}

.project__image-category:before {
    content: "";
    display: block;
    width: 110%;
    height: 100%;
    background-color: #111;
    position: absolute;
    -webkit-transition: -webkit-transform .4s .3s;
    transition: -webkit-transform .4s .3s;
    transition: transform .4s .3s;
    transition: transform .4s .3s, -webkit-transform .4s .3s;
    -webkit-transform: translateX(-105%);
    transform: translateX(-105%);
    z-index: -1
}

.project__image.is-hover .project__image-category:before {
    -webkit-transform: translate(-10%, -10%);
    transform: translate(-10%, -10%)
}

@media (max-width:767px) {
    .project__image-category {
        font-size: 3.2vw;
        margin-top: 1.86667vw;
        line-height: 1.5;
        letter-spacing: .07em
    }
}

.story {
    padding: 0 0 113px;
    position: relative;
    overflow: hidden
}

@media (max-width:767px) {
    .story {
        padding: 0 0 12vw
    }
}

.story__inner {
    margin: 37px 0 0 4.86111vw
}

@media (max-width:767px) {
    .story__inner {
        margin: 34.66667vw 0 0 4.26667vw
    }
}

@media (max-width:767px) {
    .story__bg {
        position: absolute;
        top: 9.33333vw
    }
}

.story__title-top {
    width: 54.51389vw
}

.story__title-top svg {
    width: 100%;
    height: 100%
}

@media (max-width:767px) {
    .story__title-top {
        width: 95%
    }
}

.story__title-bottom {
    font-size: 18px;
    margin-top: 30px;
    letter-spacing: .06em;
    width: 858px;
    line-height: 2
}

@media (max-width:767px) {
    .story__title-bottom {
        width: 100%;
        font-size: 3.73333vw;
        padding-right: 4.26667vw;
        margin-top: 9.06667vw
    }
}

.story__swiper {
    width: 78.47222vw
}

.story__swiper.swiper-container {
    padding: 72px 0 0;
    margin: 0
}

@media (max-width:767px) {
    .story__swiper.swiper-container {
        padding: 0
    }
}

@media (max-width:767px) {
    .story__swiper {
        width: 100%
    }
}

.story__body {
    position: relative;
    margin-top: 20px
}

@media (max-width:767px) {
    .story__body {
        margin-top: 16vw
    }
}

.story__body-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 24.65278vw;
    height: 125%;
    min-height: 660px;
    background-image: url(../images/bg-black.jpg);
    background-size: contain;
    background-repeat: repeat;
    overflow: hidden
}

@media (max-width:767px) {
    .story__body-bg {
        width: 81.33333vw;
        height: 48.26667vw;
        min-height: auto;
        top: -8vw
    }
}

.story__body-logo {
    width: 25.69444vw;
    height: 25.625vw;
    position: absolute;
    bottom: 0
}

.story__body-logo-text {
    font-size: 86px;
    color: hsla(0, 0%, 100%, .1);
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    position: absolute;
    right: 0;
    top: 0
}

.story__item {
    width: 37.77778vw;
    padding: 0 0 0 1px
}

.story__item:hover .story__item-image img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-filter: brightness(.8);
    filter: brightness(.8)
}

.story__item-name {
    font-size: 30px;
    display: inline-block;
    max-width: 27.77778vw;
    margin-top: 40px;
    letter-spacing: .07em;
    position: relative
}

@media (max-width:767px) {
    .story__item-name {
        max-width: 83%;
        font-size: 6.66667vw;
        margin-top: 9.33333vw
    }
}

.story__item-num {
    position: absolute;
    top: -10px;
    right: -30px;
    font-size: 18px
}

.story__item-text {
    font-size: 14px;
    width: 27.77778vw;
    margin-top: 10px;
    letter-spacing: .06em;
    line-height: 2
}

@media (max-width:767px) {
    .story__item-text {
        width: 94%;
        margin-top: 5.86667vw
    }
}

.story__item-image {
    width: 37.77778vw;
    height: 21.52778vw;
    overflow: hidden;
    position: relative
}

@media (max-width:767px) {
    .story__item-image {
        width: 85.6vw;
        height: 57vw
    }
}

.story__item-image img {
    -webkit-transition: all .4s;
    transition: all .4s
}

.story__item-image .image__inner {
    opacity: 0;
    -webkit-transition: opacity .1s .5s;
    transition: opacity .1s .5s
}

.story__item-image:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translateX(-102%);
    transform: translateX(-102%)
}

.story__body.is-ScrollActive .story__item-image .image__inner {
    opacity: 1
}

.story__body.is-ScrollActive .story__item-image:after {
    -webkit-animation: scrollImage 1s ease-in-out forwards;
    animation: scrollImage 1s ease-in-out forwards
}

.story__swiper-button {
    position: absolute;
    width: 128px;
    right: 98px;
    top: 65%
}

@media (max-width:767px) {
    .story__swiper-button {
        display: none
    }
}

@media (min-width:768px) and (max-width:1025px) {
    .story__swiper-button {
        right: 20px
    }
}

.story__link {
    position: absolute;
    bottom: 3px;
    right: 183px;
    z-index: 1
}

@media (max-width:767px) {
    .story__link {
        position: relative;
        display: inline-block !important;
        bottom: auto;
        right: auto;
        margin: 9.6vw 0 0 2.4vw
    }
}

@media (min-width:768px) and (max-width:1025px) {
    .story__link {
        right: 40px
    }
}

.column {
    margin: 0 0 5.27778vw;
    position: relative;
    z-index: 1
}

@media (max-width:767px) {
    .column {
        margin: 16vw 0 17.33333vw
    }
}

.column__bg {
    width: 100%;
    height: 40vw
}

.column__item:hover .column__item-image img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-filter: brightness(.8);
    filter: brightness(.8)
}

.column__item-image {
    width: 23.61111vw;
    height: 16vw;
    overflow: hidden;
    position: relative
}

@media (max-width:767px) {
    .column__item-image {
        width: 85.6vw;
        height: 51.33333vw
    }
}

.column__item-image .image__inner {
    opacity: 0;
    -webkit-transition: opacity .1s .5s;
    transition: opacity .1s .5s
}

.column__item-image:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: translateX(-102%);
    transform: translateX(-102%)
}

.column__swiper-wrapper.is-ScrollActive .column__item-image .image__inner {
    opacity: 1
}

.column__swiper-wrapper.is-ScrollActive .column__item-image:after {
    -webkit-animation: scrollImage 1s ease-in-out forwards;
    animation: scrollImage 1s ease-in-out forwards
}

.column__item-image img.image__inner {
    -webkit-transition: opacity .1s .5s, -webkit-transform .4s, -webkit-filter .4s;
    transition: opacity .1s .5s, -webkit-transform .4s, -webkit-filter .4s;
    transition: transform .4s, filter .4s, opacity .1s .5s;
    transition: transform .4s, filter .4s, opacity .1s .5s, -webkit-transform .4s, -webkit-filter .4s
}

.column__item-text {
    margin-top: 14px;
    line-height: 2.1;
    letter-spacing: .14em
}

@media (max-width:767px) {
    .column__item-text {
        margin-top: 3.73333vw;
        width: 85.6vw;
        line-height: 2;
        letter-spacing: .06em
    }
}

.column__body {
    margin-top: -29.51389vw;
    margin-left: 10.83333vw;
    position: relative;
    padding: 5.83333vw 0 0 7.08333vw
}

@media (max-width:767px) {
    .column__body {
        margin: 0 0 0 4.26667vw;
        padding: 0
    }
}

.column__title-ja {
    display: block;
    font-size: 16px;
    color: black;
}

@media (max-width:767px) {
    .column__title-ja {
        font-size: 3.46667vw
    }
}

.column__title-en {
    display: block;
    font-size: 66px;
    margin: 12px 0 0 -2px;
    letter-spacing: .07em
}



@media (max-width:767px) {
    .column__title-en {
        position: relative;
        top: -10vw;
        margin: -15vw 0 0;
        height: 15.46667vw
    }
}

.column__button {
    display: inline-block;
    font-size: 20px;
    margin-top: 30px
}

@media (max-width:767px) {
    .column__button {
        font-size: 4.26667vw;
        margin: 16vw 9.06667vw 0 0
    }

    .column__button.sp {
        display: inline-block
    }
}

.column__button-wrapper {
    text-align: center
}

.column__swiper-wrapper {
    margin-left: 12.5vw;
    margin-top: -1.04167vw;
    position: relative
}

@media (max-width:767px) {
    .column__swiper-wrapper {
        margin: 6.66667vw 0 0
    }
}

@media (min-width:768px) and (max-width:1025px) {
    .column__swiper-wrapper {
        margin-top: 30px
    }
}

.column__swiper-button {
    position: absolute;
    right: 0;
    right: 58px;
    top: -59px;
    width: 130px
}

@media (max-width:767px) {
    .column__swiper-button {
        display: none
    }
}

.news__inner {
    padding: 6.94444vw 17.70833vw
}

@media (max-width:767px) {
    .news__inner {
        padding: 10.13333vw 4.26667vw 12.53333vw
    }
}

.news__title {
    text-align: center;
    font-size: 56px
}

@media (max-width:767px) {
    .news__title svg {
        width: 30.13333vw;
        height: 9.33333vw
    }
}

.news__list {
    border-bottom: 1px solid rgba(17, 17, 17, .15);
    margin-top: 40px
}

@media (max-width:767px) {
    .news__list {
        margin-top: 7.73333vw
    }
}

.news__item {
    border-top: 1px solid rgba(17, 17, 17, .15)
}

.news__link {
    display: block;
    padding: 30px 0;
    font-size: 16px;
    position: relative;
    overflow: hidden
}

.news__link:hover:before {
    -webkit-animation: mouseShowCircle .6s ease forwards;
    animation: mouseShowCircle .6s ease forwards
}

.news__link.is-mouse-leave:before {
    -webkit-animation: mouseLeaveCircle .6s ease;
    animation: mouseLeaveCircle .6s ease
}

.news__link:before {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(../images/bg-gray.jpg);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: -webkit-transform .6s ease;
    transition: -webkit-transform .6s ease;
    transition: transform .6s ease;
    transition: transform .6s ease, -webkit-transform .6s ease;
    z-index: -1
}

.news__link:after,
.news__link:before {
    content: "";
    display: block;
    position: absolute
}

.news__link:after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2218.202%22%20height%3D%2213.989%22%3E%3Cg%20fill%3D%22none%22%20stroke%3D%22currentColor%22%3E%3Cpath%20d%3D%22M0%206.995h17.934%22%2F%3E%3Cpath%20d%3D%22M10.854.354l6.641%206.641-6.641%206.641%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    width: 18px;
    height: 14px;
    background-repeat: no-repeat;
    right: 2px;
    top: 44%
}

@media (max-width:767px) {
    .news__link:after {
        display: none
    }
}

@media (max-width:767px) {
    .news__link {
        font-size: 3.73333vw;
        padding: 6.13333vw 0 5.06667vw
    }
}

@media (max-width:767px) {
    .news__link-date {
        font-size: 3.46667vw
    }
}

.news__link-text {
    margin-top: 10px
}

@media (max-width:767px) {
    .news__link-text {
        margin-top: 2.66667vw;
        line-height: 1.9;
        letter-spacing: .06em
    }
}

@media (min-width:768px) and (max-width:1025px) {
    .news__link-text {
        line-height: 2;
        padding-right: 21px
    }
}

.news__button {
    margin-top: 40px;
    text-align: center
}

@media (max-width:767px) {
    .news__button {
        margin: 11.46667vw 3.46667vw 0 0
    }
}

.bg {
    position: fixed;
    z-index: -1
}

.bg-border {
    width: 1px;
    height: 100vh;
    background-color: #f2f2f2;
    top: 0;
    position: fixed
}

.bg-border:first-child {
    left: 4.89583vw
}

@media (max-width:767px) {
    .bg-border:first-child {
        left: 4.26667vw
    }
}

.bg-border:nth-child(2) {
    left: 17.70833vw
}

@media (max-width:767px) {
    .bg-border:nth-child(2) {
        left: 27.06667vw
    }
}

.bg-border:nth-child(3) {
    left: 30.55556vw
}

@media (max-width:767px) {
    .bg-border:nth-child(3) {
        left: 50vw
    }
}

.bg-border:nth-child(4) {
    left: 43.40278vw
}

@media (max-width:767px) {
    .bg-border:nth-child(4) {
        right: 27.06667vw;
        left: auto
    }
}

.bg-border:nth-child(5) {
    right: 43.40278vw
}

@media (max-width:767px) {
    .bg-border:nth-child(5) {
        right: 4.26667vw
    }
}

.bg-border:nth-child(6) {
    right: 30.55556vw
}

.bg-border:nth-child(7) {
    right: 17.70833vw
}

.bg-border:nth-child(8) {
    right: 4.89583vw
}

.recruit {
    position: relative;
    padding: 3.47222vw 0 8.33333vw
}

@media (max-width:767px) {
    .recruit {
        padding: 18.66667vw 0
    }
}

@media (min-width:768px) {
    .recruit {
        background-image: url(../images/bg-gray.jpg);
        background-size: 20% 62%;
        background-repeat: repeat-x;
        background-position: bottom
    }
}

@media (min-width:768px) {
    .recruit__inner {
        display: -webkit-box;
        display: flex
    }
}

@media (min-width:768px) {
    .recruit__link {
        width: 50%
    }
}

@media (max-width:767px) {
    .recruit__link {
        width: 100%
    }
}

@media (max-width:767px) {
    .recruit__link+.recruit__link {
        margin-top: 8.26667vw;
        display: block
    }
}

.recruit__link:hover .recruit__link-img img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-filter: brightness(.8);
    filter: brightness(.8);
}

.recruit__link-img {
    height: 18.54167vw;
    overflow: hidden
}

@media (max-width:767px) {
    .recruit__link-img {
        height: 37.46667vw
    }
}

.recruit__link-img img {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all .4s;
    transition: all .4s;
    object-fit: cover;
}

.recruit__link-text {
    font-size: 26px;
    margin-top: 24px;
    display: inline-block
}

@media (max-width:767px) {
    .recruit__link-text {
        font-size: 4.26667vw;
        margin-top: 4vw
    }
}

.recruit__link-text:before {
    display: none
}

body {
    opacity: 0
}

body.is-loaded {
    opacity: 1
}

.header {
    opacity: 0;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    -webkit-transition: .7s;
    transition: .7s
}

.is-loaded .header {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0)
}

.bg-border {
    height: 0;
    -webkit-transition: 1.5s;
    transition: 1.5s
}

.is-loaded .bg-border {
    height: 100vh
}

.is-loaded .mv__image {
    opacity: 1
}

.is-loaded .mv__image:after {
    -webkit-animation: scrollImage 1s ease-in-out 2s forwards;
    animation: scrollImage 1s ease-in-out 2s forwards
}

.mv__image-inner {
    opacity: 0;
    -webkit-transition-delay: .5s;
    transition-delay: .5s
}

.is-loaded .mv__image-inner {
    opacity: 1;
    -webkit-transition: opacity .1s 2.5s;
    transition: opacity .1s 2.5s
}

.svg-main-copy path,
.svg-sub-copy path {
    stroke: #111;
    fill: transparent;
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    stroke-width: .5
}

.is-loaded .svg-main-copy path,
.is-loaded .svg-sub-copy path {
    -webkit-animation: strokeAnimation 1.5s cubic-bezier(.46, .35, .77, .71) .8s forwards;
    animation: strokeAnimation 1.5s cubic-bezier(.46, .35, .77, .71) .8s forwards
}

body>.svg-sprite {
    display: none
}

@media (max-width:767px) {
    .pc {
        display: none
    }
}

.sp {
    display: none
}

@media (max-width:767px) {
    .sp {
        display: block
    }
}







/* === アニメーション定義 === */
@keyframes fadeInOutline {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes toBlackText {
    0% {
      color: white;
      text-shadow:
        -1px -1px 0 black,
        1px -1px 0 black,
        -1px 1px 0 black,
        1px 1px 0 black;
    }
    100% {
      color: black;
      text-shadow: none;
    }
  }
  
  /* === ラッパー全体の中央寄せ設定 === */
  .center-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    height: 100vh;
    width: 100%;
    padding: 0 1rem;
  }
  
  /* === テキスト共通スタイル（アニメーション付き） === */
  .fancy-text_en,
  .fancy-text_ja,
  .scroll-svg {
    font-weight: bold;
    color: white;
    text-align: center;
    text-shadow:
      -1px -1px 0 black,
      1px -1px 0 black,
      -1px 1px 0 black,
      1px 1px 0 black;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInOutline 1.5s ease-out forwards,
               toBlackText 1s ease-in forwards;
    animation-delay: 0s, 1.5s;
  
    /* はみ出し防止＆改行対応 */
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    max-width: 90%;
    margin: 0 auto;
  }
 
/* 日本語テキスト：PCでは右寄せ、一行で英語と揃えつつはみ出さないよう調整 */
/* 日本語テキスト：PCでは右寄せ、一行で英語と揃えつつはみ出さず折り返せるように調整 */
/* 日本語テキスト：PCでは右寄せ、一行で英語と揃えつつはみ出さないように調整（折り返しなし） */
/* 日本語テキスト：PCでは右寄せ、一行で英語と揃え、表示切れ防止のため縮小表示を許可 */
/* 日本語テキスト：PCでは右寄せ、一行で英語と揃え、表示切れ防止のため幅制限を緩和 */
.fancy-text_ja {
    overflow-x: hidden; /* 横スクロール防止 */
    min-height: 1.5em; /* 高さ確保でテキストが切れないようにする */
    font-size: 1.2rem;
    font-weight: bold;
    text-align: right;
    margin: 0;
    white-space: nowrap;
    display: block;
    margin-right: 0;
    margin-left: auto;
    width: 100%; /* 幅を制限しない */
    max-width: none; /* 最大幅制限を解除 */
    overflow: hidden;
    text-overflow: ellipsis;
    box-sizing: border-box;
    line-height: 1.5;
    font-size: clamp(1rem, 1vw, 1.2rem);
  }
  
  @media (max-width: 767px) {
    .fancy-text_ja {
      font-size: 1.0rem;
      text-align: left;
      white-space: normal;
    }
  }
  
  .fancy-text_en {
    font-size: 4.8rem;
    font-weight: bold;
    text-align: right;
    margin: 0;
    white-space: nowrap;
  }
  
  @media (max-width: 767px) {
    .fancy-text_en {
      font-size: 2rem;
      text-align: left;
    }
  }
  
  



   /* 最初は透明＆ちょっと下にスタンバイ */
.poject-svg {
    opacity: 0;
    transform: translateY(20px);
    font-size: 4.8rem;
    font-weight: bold;
    color: white;
    text-shadow:
      -1px -1px 0 black,
      1px -1px 0 black,
      -1px 1px 0 black,
      1px 1px 0 black;
  }

  @media (max-width: 767px) {
    .poject-svg {
      font-size: 2.4rem;
    }
  }

  /* activeが付いたらアニメーションする */
  .poject-svg.active {
    animation: fadeInOutline 1.5s ease-out forwards, toBlackText 1s ease-in forwards;
    animation-delay: 0s, 1.5s;
  }
  
  /* 出現アニメーション */
  @keyframes fadeInOutline {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* 色変化アニメーション */
  @keyframes toBlackText {
    0% {
      color: white;
      text-shadow:
        -1px -1px 0 black,
        1px -1px 0 black,
        -1px 1px 0 black,
        1px 1px 0 black;
    }
    100% {
      color: black;
      text-shadow: none;
    }
  }

  .column__bg {
    width: 100%; /* ブラウザの幅ぴったりに強制！ */
    /* height: 100vh; */
    position: relative;
    overflow: hidden;
    background-image: url('../ARXIA_img/sutudio_maruto/line_album_studio_maruto_250413_3_1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

   /* 最初は透明＆ちょっと下にスタンバイ */
.column-svg {
    opacity: 0;
    transform: translateY(20px);
    font-size: 4.8rem;
    font-weight: bold;
    color: white;
    text-shadow:
      -1px -1px 0 black,
      1px -1px 0 black,
      -1px 1px 0 black,
      1px 1px 0 black;
  }
  
  /* activeが付いたらアニメーションする */
  .column-svg.active {
    animation: fadeInOutline 1.5s ease-out forwards, toBlackText 1s ease-in forwards;
    animation-delay: 0s, 1.5s;
  }
  
  /* 出現アニメーション */
  @keyframes fadeInOutline {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* 色変化アニメーション */
  @keyframes toBlackText {
    0% {
      color: white;
      text-shadow:
        -1px -1px 0 black,
        1px -1px 0 black,
        -1px 1px 0 black,
        1px 1px 0 black;
    }
    100% {
      color: black;
      text-shadow: none;
    }
  }


  @media (max-width: 767px) {
    .column-svg {
      font-size: 2.4rem;
      text-align: center;
      white-space: normal;
    }
  }

  
 
  /* 最初は透明＆ちょっと下にスタンバイ */
.news-svg {
    opacity: 0;
    transform: translateY(20px);
    font-size: 4.8rem;
    font-weight: bold;
    color: white;
    text-shadow:
      -1px -1px 0 black,
      1px -1px 0 black,
      -1px 1px 0 black,
      1px 1px 0 black;
  }
  
  /* activeが付いたらアニメーションする */
  .news-svg.active {
    animation: fadeInOutline 1.5s ease-out forwards, toBlackText 1s ease-in forwards;
    animation-delay: 0s, 1.5s;
  }
  
  /* 出現アニメーション */
  @keyframes fadeInOutline {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* 色変化アニメーション */
  @keyframes toBlackText {
    0% {
      color: white;
      text-shadow:
        -1px -1px 0 black,
        1px -1px 0 black,
        -1px 1px 0 black,
        1px 1px 0 black;
    }
    100% {
      color: black;
      text-shadow: none;
    }
  }


  @media (max-width: 767px) {
    .news-svg {
      font-size: 2.4rem;
      text-align: center;
      white-space: normal;
    }
  }

   /* 最初は透明＆ちょっと下にスタンバイ */
.contact-svg {
    opacity: 0;
    transform: translateY(20px);
    font-size: 4.8rem;
    font-weight: bold;
    color: white;
    text-shadow:
      -1px -1px 0 black,
      1px -1px 0 black,
      -1px 1px 0 black,
      1px 1px 0 black;
  }
  
  /* activeが付いたらアニメーションする */
  .contact-svg.active {
    animation: fadeInOutline 1.5s ease-out forwards, toBlackText 1s ease-in forwards;
    animation-delay: 0s, 1.5s;
  }
  
  /* 出現アニメーション */
  @keyframes fadeInOutline {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* 色変化アニメーション */
  @keyframes toBlackText {
    0% {
      color: white;
      text-shadow:
        -1px -1px 0 black,
        1px -1px 0 black,
        -1px 1px 0 black,
        1px 1px 0 black;
    }
    100% {
      color: black;
      text-shadow: none;
    }
  }

  @media (max-width: 767px) {
    .contact-svg {
      font-size: 2.4rem;
      text-align: center;
      white-space: normal;
    }
  }

.center-wrapper,
.mv__heading,
.fancy-text_en,
.fancy-text_ja {
  max-width: 100%;
  box-sizing: border-box;
}

@media (max-width: 767px) {
    .contact-svg {
      font-size: 2.4rem;
    }
  }

/* === 共通アニメーション定義 === */
@keyframes fadeInOutline {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes toBlackText {
    0% {
      color: white;
      text-shadow:
        -1px -1px 0 black,
        1px -1px 0 black,
        -1px 1px 0 black,
        1px 1px 0 black;
    }
    100% {
      color: black;
      text-shadow: none;
    }
  }
  
  /* === 共通スタイル（初期状態） === */
  .fancy-text_en,
  .fancy-text_ja,
  .scroll-svg {
    font-weight: bold;
    color: white;
    text-shadow:
      -1px -1px 0 black,
      1px -1px 0 black,
      -1px 1px 0 black,
      1px 1px 0 black;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInOutline 1.5s ease-out forwards,
               toBlackText 1s ease-in forwards;
    animation-delay: 0s, 1.5s;
  }
  
  /* === 個別のフォントサイズ設定 === */
  .fancy-text_en {
    font-size: 4.8rem;
  }
  
  .fancy-text_ja {
    font-size: 1.5rem;
  }
  
  .scroll-svg {
    font-size: 4.8rem;
  }
  
  /* アクティブ時のアニメーション発火（scroll-svgのみ必要なら分ける） */
  
  
  /* === スマホ表示対応 === */
  @media (max-width: 767px) {
    .fancy-text_en,
    .scroll-svg {
      font-size: 2rem;
    }
  
    .fancy-text_ja {
        margin-top: 5px;
      font-size: 1.18rem;
    }
  }




  @media (max-width: 767px) {
    .mv__inner {
      padding-top: 20px;
    }
  }

  
  header.sp {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    z-index: 9999;
    background-color: #fff; /* 必ず背景色を設定 */
  }





  @media (max-width: 767px) {
    .footer__logo-image {
        width: 30.4vw;
        height: 11.2vw;
        margin: auto;
    }
}





@media (max-width: 767px) {
    .footer__logo {
      text-align: center;
    }
  
    .footer__logo .logo-fadein {
      display: inline-block;
      margin: 0 auto;
    }
  
    .footer__logo-image {
      display: inline-block;
      margin: 0 auto;
    }
  }


  .header__wrapper {
    margin-left: 20px;
  }
  
  
  
  .sns.clearfix ul {
    display: flex;
    flex-direction: row; /* 横並びにする（なくてもOK） */
    gap: 10px; /* アイコン同士の間隔（調整可） */
    list-style: none; /* リストの「・」を消す */
    padding: 5px;
    margin: 0;
    align-items: center; /* 縦位置を揃える */
  }

  

  

  
  header {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    width: 100%;
    background-color: #fff;
    opacity: 0.85;
  }














  *,*:before,*:after{box-sizing:border-box}body{line-height:1.5;margin:0;padding:0;/*font-family:'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;*/font-size:13px;color:#000}article,aside,figure,footer,header,hgroup,nav,section{display:block}h1,h2,h3,h4,h5,h6,p,th,td,address,small,i{margin:0;padding:0;font-size:100%;font-weight:normal;font-style:normal}ol,ul,dl,dt,dd{list-style-type:none;margin:0;padding:0}img,object,embed{border:0;vertical-align:bottom}img{max-width:100%}table{border-spacing:0;border-collapse:collapse}th{text-align:left}em{font-style:normal;font-weight:bold}a{color:#000;text-decoration:none}a:hover{color:#000}.clearfix{zoom:1}.clearfix:after{content:'';display:block;clear:both}.container{max-width:990px;margin-left:auto;margin-right:auto;padding-left:15px;padding-right:15px}.text-center{text-align:center}.text-right{text-align:right}.display-inline{display:inline}.display-inline-block{display:inline-block}.display-block{display:block}.display-table{display:table}.display-table-cell{display:table-cell}.bg-cover{background-repeat:no-repeat;background-position:center center;background-size:cover;height:0;padding-top:71.42%}

@media (max-width: 767px){.pc{display:none}.container{padding-left:20px;padding-right:20px}}

@media (min-width: 768px){.sp{display:none}.over{transition:opacity 0.3s}.over:hover{opacity:0.7;filter:alpha(opacity=70);-ms-filter:'alpha( opacity=70 )'}}
.footer-inner{position:relative;max-width:1100px;margin:0 auto;padding:0 15px;min-height:180px}.footer .logo{position:relative;z-index:2;float:left;padding-top:35px}.footer .gnav{position:absolute;left:230px;z-index:1;top:48px}.footer .gnav li{display:inline-block}.footer .gnav a{display:inline-block;padding:10px 6px;/*font-family:'Barlow Condensed';*/font-size:14px;color:#fff;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased}.footer .sns{position:relative;z-index:2;float:right;padding-top:120px}.footer .sns li{float:left;margin-left:19px}.footer .sns li a{display:inline-block}.footer .sns li.contact{position:relative;top:-5px;margin-left:32px}.footer .sns li.contact a{padding:0 22px;/*font-family:'Barlow Condensed';*/font-size:20px;background-color:#fff}.footer .sns li.privacy{position:absolute;right:5px;bottom:-30px}.footer .sns li.privacy a{line-height:1;padding:0 9px;border-left:1px solid #fff;border-right:1px solid #fff;/*font-family:'Barlow Condensed';*/font-size:15px;color:#fff;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased}.footer .copyright{clear:both;padding-top:35px;padding-bottom:10px;text-align:center;font-size:14px;/*font-family:'Barlow Condensed';*/color:#fff;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased}
@media (max-width: 930px){.footer .sns li.privacy{bottom:-30px}}

@media (max-width: 767px){

body { word-break: break-all; }

.page-project { overflow-x: hidden; }

.footer-inner{height:370px;padding:0 20px}.footer .logo{position:absolute;left:20px;bottom:34px;float:none;padding:0}.footer .gnav{position:relative;left:auto;top:auto;text-align:left;padding:22px 0 0 7px}.footer .gnav li{display:block;float:left;width:50%}.footer .gnav a{display:block;padding:10px 6px;font-size:15px}.footer .sns{float:none;padding-top:15px;padding-left:12px;padding-bottom:20px;border-bottom:1px solid #fff}.footer .sns li{margin-left:0;margin-right:15px}.footer .sns li.contact{position:relative;float:right;top:-5px;width:50%;margin:0}.footer .sns li.contact a{padding:0 45px 0 10px;font-size:18px}.footer .sns li.privacy{right:5px;bottom:-97px;margin:0}.footer .sns li.privacy a{padding:0 5px;font-size:12px}.footer .copyright{position:absolute;left:20px;bottom:10px;font-size:8px;/*font-family:'Barlow Condensed';*/color:#fff}}

.totop{text-align:center;margin-top:100px}.totop a{display:inline-block;/*font-family:'Barlow Condensed';*/font-size:18px;text-decoration:none}.totop a:before{content:'';display:block;width:1px;height:80px;background-color:#000000;margin-left:auto;margin-right:auto}.header-wrap{height:100px}.header{position:fixed;left:0;top:0;z-index:999;width:100%;background-color:#fff;opacity:0.85}.header-inner{position:relative;padding:0 0 0 10px;height:100px}.header-inner h1{display:block;width:400px;position:absolute;top:21px;left:22.5%;color:#555}
@media (max-width: 767px){.header-inner h1{display:block;width:100%;top:55px;left:0;color:#fff;font-size:0.7em;text-align:center;background-color:#111}}

.header .logo{position:relative;z-index:2;float:left;padding-top:7px;padding-left: 10px;}.header .gnav{position:absolute;left:0;z-index:1;top:50px;width:100%;text-align:center;letter-spacing:-0.4em}.header .gnav li{display:inline-block;letter-spacing:normal;width:12.5%}

@media (min-width: 768px) {
  .header .gnav li.sp {
    display: none
  }
}
.header .gnav a {
  position: relative;
  display: inline-block;
  padding: 10px 0; /*font-family:'Barlow Condensed';*/ font-size: 17px
}
.header .sns {
  position: relative;
  right: 0;
  z-index: 2;
  float: right;
  padding-top: 15px;
  margin-top: 40px;
  margin-right: 5vw;
}
.header .sns li {
  float: left;
  margin-left: 10px!important
}
.header .sns li.ico_facebook {
  margin-top: -1px
 }
.header .sns li.ico_instagram {
  margin-left: 9px!important
}
.header .sns li a {
  display: block
}
.header .icon-tel {
  position: absolute;
  top: -33px;
  right: 10px;
  width: 205px;
  height: 22px;
  z-index: 3;
}
.header .icon-tel .icon-tel-link { 
 	display: block;
	padding: 0;
 }
 .header .icon-tel .icon-tel-link::after { content: none; }
 @media (hover: hover) {
 	.header .icon-tel .icon-tel-link {
		pointer-events: none;
	}
 }
 
.header .icon-tel img {
  width: 205px;
  height: auto
}
.header .logo img.pc {
  width: 130px;
  height: auto;
}

@media (min-width: 768px){body.admin-bar .header{top:32px}.header .gnav a:after{content:'';display:block;position:absolute;transition:all 0.3s;-webkit-transition:all 0.3s}.header .gnav a:hover:after{left:0;width:100%}.header .gnav a.current:after{left:0;width:100%}}

@media (max-width: 850px){.header .gnav{padding-left:0}}

@media (max-width: 767px) {
  .header-wrap {
    height: 0;
  }
  body.admin-bar .header-wrap {
    height: 0
  }
  .header-inner {
    height: 55px
  }
  .header .logo {
    padding-top: 10px
  }
  .header .gnav {
    display: none;
    top: 0;
    left: auto;
    right: 0;
    width: 250px;
    padding-left: 0;
    background-color: #000
  }
  .header .gnav ul {
    padding: 60px 0 20px
  }
  .header .gnav li {
    display: block;
    color: #fff;
    width: inherit
  }
  .header .gnav a {
    display: block;
    /* padding: 8px 20px; */
    color: #fff;
    font-size: 45px;
    /* text-align: left; */
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased
  }
 
  .header .gnav li.contact a span {
    display: block;
    background-color: #fff;
    text-align: center
  }
  .header .gnav li.lang {
    text-align: center
  }
  .header .gnav li.lang a {
    display: inline-block;
    position: relative
  }
  .header .gnav li.lang a.jp {
    padding: 10px 8px 10px 10px
  }
  .header .gnav li.lang a.jp:after {
    content: '';
    position: absolute;
    right: 0;
    top: 15px;
    display: block;
    width: 1px;
    height: 17px;
    background-color: #fff
  }
  .header .gnav li.lang a.en {
    padding: 10px 10px 10px 5px
  }
  .header .sns {
  	margin-top: 0;
    padding: 20px 30px 0 0
  }
  .header .sns li {
    margin-left: 13px
  }
  .header .sns li a {
    position: relative
  }
  .header .sns li a .close {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s
  }
  body.is-sp-nav-open .header .sns li a .close {
    opacity: 1
  }
  .header .sp-menu {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2
  }
  .header .sp-menu a {
    display: block;
    width: 55px;
    height: 55px
  }
  .header .sp-menu span, .header .sp-menu span:before, .header .sp-menu span:after {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: block;
    margin: 0 auto;
    width: 20px;
    height: 2px;
    margin-top: -1px;
    background: #000;
    -webkit-transition: 0.3s;
    transition: 0.3s
  }
  .header .sp-menu span:before {
    content: '';
    margin-top: -8px
  }
  .header .sp-menu span:after {
    content: '';
    margin-top: 6px
  }
  body.is-sp-nav-open .header .sp-menu span {
    background: transparent
  }
  body.is-sp-nav-open .header .sp-menu span:before {
    margin-top: -2px;
    margin-left: -2px;
    height: 2px;
    width: 26px;
    background: #fff;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg)
  }
  body.is-sp-nav-open .header .sp-menu span:after {
    margin-top: -2px;
    margin-left: -2px;
    height: 2px;
    width: 26px;
    background: #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
  }
}
.page-service .content-inner {
  padding: 0 0 40px;
  overflow: hidden
}
.page-service .page-title { /*font-family:'Barlow Condensed';*/ font-size: 120px;
  line-height: 1;
  text-align: center;
  margin: 30px 0 80px;
  text-transform: uppercase
}
.page-service .page-title--sub {
  display: block;
  padding: 16px 0 0;
  font-size: 20px
}

@media (max-width: 767px){
  .page-service .page-title{margin:40px 0;font-size:45px}
}
.page-service .container{
  max-width:1500px;
  margin:0 auto
}



.page-service .ServiceNav__item{
  width:100%;
  height:auto;
  margin-bottom:20px
}
  .page-service .ServiceNav__link{
    display:flex;
    flex-direction:column;
    width:100%;
    height:auto;
    background-color: #F5F5F5;
  }
  .page-service .ServiceNav__link:hover .ServiceNav__image::before{visibility:visible;opacity:1}
  .page-service .ServiceNav__image{
    display:block;
    width:100%;
    height:200px;
    object-fit: cover;
    background-color:#999;background-size:cover;background-position:center;margin:0;padding:0}
  .page-service .ServiceNav__image::before{content:'View Detail';display:flex;justify-content:center;align-items:center;width:100%;height:100%;color:#fff;/*font-family:'Barlow Condensed';*/font-size:18px;font-weight:300;letter-spacing:0.1em;background:rgba(0,0,0,0.4);visibility:hidden;opacity:0;transition:all 0.3s ease-out}
  .page-service .ServiceNav__title{
    display:inline-block;
    font-size:20px;
    padding:10px 30px 0;
  }
  .page-service .ServiceNav__txt{
    display:inline-block;
    font-size:12px;
    font-weight: normal;
    padding:0 30px 20px;
  }
  .page-service.isChild .page-service-image{display:block;width:100%;height:400px;background-color:#999;background-size:cover;background-position:center;margin:0;padding:0}.page-service.isChild .content-inner{max-width:1000px;margin:0 auto}.page-service.isChild .content-inner p{display:flex;justify-content:flex-start;align-items:flex-start;margin:24px 0;line-height:1.75;font-size:14px}.page-service.isChild .content-inner img{width:100%;height:auto}.page-service.isChild .content-inner h2,.page-service.isChild .content-inner h3,.page-service.isChild .content-inner h4,.page-service.isChild .content-inner h5,.page-service.isChild .content-inner h6{font-weight:600}.page-service.isChild .content-inner h2{font-size:32px;margin:48px 0 16px}.page-service.isChild .content-inner h3{font-size:24px;margin:32px 0 16px}.page-service.isChild .content-inner h4{font-size:18px;margin:24px 0 10px}.page-service.isChild .content-inner h5{font-size:16px;margin:20px 0 8px}.page-service.isChild .content-inner h6{font-size:14px;margin:10px 0}.page-service.isChild .content-inner ul li,.page-service.isChild .content-inner ol li{font-size:14px;line-height:1.75;letter-spacing:0.1em}.page-service.isChild .content-inner ol{padding-left:24px;list-style:decimal}.page-service.isChild .content-inner ul li{display:flex;justify-content:flex-start;align-items:center}.page-service.isChild .content-inner ul li::before{content:'';display:inline-block;width:12px;height:1px;background:#aaa;margin-right:12px}.amp-nav{z-index:100}.sp-menu .hamburger{display:block;width:55px;height:55px}amp-sidebar{position:relative;background-color:rgba(0,0,0,0.8);width:200px}amp-sidebar .hamburger{display:block;width:55px;height:55px}amp-sidebar ul{padding:60px 0 20px}amp-sidebar ul li a{display:block;padding:8px 20px;color:#fff;font-size:18px;text-align:left;font-family:'Barlow Condensed'}amp-sidebar ul li.contact a{padding-top:10px;color:#000}amp-sidebar ul li.contact a span{display:block;background-color:#fff;text-align:center}

@media (min-width: 768px){
  .page-service .ServiceNav__list{display:flex;justify-content:space-between;flex-wrap:wrap}
  .page-service .ServiceNav__item{
    width:calc((100% / 2) - 8px);
    height:520px;
    margin-bottom:40px
  }
  .page-service .ServiceNav__link{
    display:flex;
    flex-direction:column;
    width:100%;
    height:auto;
    background-color: #F5F5F5;
  }
  .page-service .ServiceNav__link:hover .ServiceNav__image::before{visibility:visible;opacity:1}
  .page-service .ServiceNav__image{
    display:block;
    width:100%;
    height:400px;
    object-fit: cover;
    background-color:#999;background-size:cover;background-position:center;margin:0;padding:0}
  .page-service .ServiceNav__image::before{content:'View Detail';display:flex;justify-content:center;align-items:center;width:100%;height:100%;color:#fff;/*font-family:'Barlow Condensed';*/font-size:18px;font-weight:300;letter-spacing:0.1em;background:rgba(0,0,0,0.4);visibility:hidden;opacity:0;transition:all 0.3s ease-out}
  .page-service .ServiceNav__title{
    display:inline-block;
    font-size:24px;
    padding:10px 30px 0;
  }
  .page-service .ServiceNav__txt{
    display:inline-block;
    font-size:12px;
    font-weight: normal;
    padding:0 30px 20px;
  }
  .page-service.isChild .page-service-image{display:block;width:100%;height:400px;background-color:#999;background-size:cover;background-position:center;margin:0;padding:0}.page-service.isChild .content-inner{max-width:1000px;margin:0 auto}
  .page-service.isChild .content-inner p{
    display:flex;justify-content:flex-start;align-items:flex-start;
    margin:24px 0;line-height:1.75;
    font-size:1em;
    }
  .page-service.isChild .content-inner img{width:100%;height:auto}.page-service.isChild .content-inner h2,.page-service.isChild .content-inner h3,.page-service.isChild .content-inner h4,.page-service.isChild .content-inner h5,.page-service.isChild .content-inner h6{font-weight:600}.page-service.isChild .content-inner h2{font-size:32px;margin:48px 0 16px}.page-service.isChild .content-inner h3{font-size:24px;margin:32px 0 16px}.page-service.isChild .content-inner h4{font-size:18px;margin:24px 0 10px}.page-service.isChild .content-inner h5{font-size:16px;margin:20px 0 8px}.page-service.isChild .content-inner h6{font-size:14px;margin:10px 0}.page-service.isChild .content-inner ul li,.page-service.isChild .content-inner ol li{font-size:14px;line-height:1.75;letter-spacing:0.1em}.page-service.isChild .content-inner ol{padding-left:24px;list-style:decimal}.page-service.isChild .content-inner ul li{display:flex;justify-content:flex-start;align-items:center}.page-service.isChild .content-inner ul li::before{content:'';display:inline-block;width:12px;height:1px;background:#aaa;margin-right:12px}.amp-nav{z-index:100}.sp-menu .hamburger{display:block;width:55px;height:55px}amp-sidebar{position:relative;background-color:rgba(0,0,0,0.8);width:200px}amp-sidebar .hamburger{display:block;width:55px;height:55px}amp-sidebar ul{padding:60px 0 20px}amp-sidebar ul li a{display:block;padding:8px 20px;color:#fff;font-size:18px;text-align:left;font-family:'Barlow Condensed'}amp-sidebar ul li.contact a{padding-top:10px;color:#000}amp-sidebar ul li.contact a span{display:block;background-color:#fff;text-align:center}
}





@media (max-width: 767px) {
    .poject-svg .column-svg .news-svg .contact-svg {
      font-size: 56px;
    }
}



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


@media screen and (max-width: 767px) {
    .layout-main {
         display: flex;
         flex-direction: column;
         align-items: center;
         text-align: center;
       }
}








/* PC用は非表示にする */
#sp-menu-btn,
#sp-menu-close {
  display: none;
}

@media screen and (max-width: 767px) {
  /* ハンバーガーボタン（☰） */
  #sp-menu-btn {
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    z-index: 1001;
  }

  /* 閉じるボタン（×） */
  #sp-menu-close {
    display: none;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    z-index: 1001;
  }

  /* メニュー本体 */
  #sp-nav {
    position: fixed;
    top: 69px;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(17, 17, 17, .9);
    z-index: 130;
    color: #fff;
  }

  #sp-nav.open {
    display: block;
  }

  .gnav li {
    display: block;
    width: 100%;
    padding: 10px 0;
  }
}





/* 初期は見せない */
.mv__images img { 
    opacity: 0; 
    visibility: hidden; 
  }
  
  /* アニメ開始時に見せる（クラス付与後） */
  .mv__images.is-active img {
    visibility: visible;
    opacity: 1;
    transition: opacity .5s ease; /* ふわっと出したい場合 */
  }




 

  .swiper-button-prev,
.swiper-button-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: #111;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  z-index: 5;
  cursor: pointer;
  transition: background .2s, color .2s, transform .05s;
}

/* 矢印（フォント使わず border で描画） */
.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
  width: 12px;
  height: 12px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  display: block;
}
.swiper-button-next::after { transform: rotate(-45deg); }
.swiper-button-prev::after { transform: rotate(135deg); }

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: #111;
  color: #fff;
}
.swiper-button-prev:active,
.swiper-button-next:active {
  transform: scale(0.96);
}

/* 位置 */
.swiper-button-prev { left: 10px; }
.swiper-button-next { right: 10px; }

/* 念のため方向固定 */
.swiper-wrapper { direction: ltr; }

  

