@media screen and (max-width: 768px) {
  /*==============================================================================
  breadcrumb
  ============================================================================= */
  .breadcrumb__list {
    position: absolute;
    z-index: 5;
    top: 0.2rem;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .breadcrumb__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 0.2rem;
    color: #b2bac4;
  }
  .breadcrumb__item::after {
    content: "";
    display: block;
    width: 0.1rem;
    height: 1px;
    margin: 0 0.15rem;
    border: 1px solid #fff;
  }
  .breadcrumb__item .link {
    color: #fff;
  }
  .breadcrumb__item:last-child {
    color: #fff;
    border-bottom: 1px solid #fff;
  }
  .breadcrumb__item:last-child::after {
    content: none;
  }
}
@media screen and (min-width: 769px) {
  /*==============================================================================
  breadcrumb
  ============================================================================= */
  .breadcrumb__list {
    position: absolute;
    z-index: 5;
    top: 20px;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .breadcrumb__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 12px;
    color: #b2bac4;
  }
  .breadcrumb__item::after {
    content: "";
    display: block;
    width: 10px;
    height: 1px;
    margin: 0 8px;
    border: 1px solid #fff;
  }
  .breadcrumb__item .link {
    color: #fff;
  }
  .breadcrumb__item:last-child {
    color: #fff;
    border-bottom: 1px solid #fff;
  }
  .breadcrumb__item:last-child::after {
    content: none;
  }
}
@media screen and (max-width: 768px) {
  .page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: rgba(7, 18, 36, 0.82);
    pointer-events: none;
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.45s ease, visibility 0.45s ease;
    transition: opacity 0.45s ease, visibility 0.45s ease;
  }
  .page-loader__hex {
    width: 0.3rem;
    aspect-ratio: 1/1.15;
    background: linear-gradient(160deg, #ffffff, #9ad4f1);
    clip-path: polygon(25% 6.7%, 75% 6.7%, 100% 50%, 75% 93.3%, 25% 93.3%, 0% 50%);
    -webkit-transform: scale(0.2);
            transform: scale(0.2);
    opacity: 0;
    -webkit-animation: loader-hex-expand 1.05s cubic-bezier(0.18, 0.8, 0.3, 1) forwards;
            animation: loader-hex-expand 1.05s cubic-bezier(0.18, 0.8, 0.3, 1) forwards;
  }
  .page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .fv--bg {
    padding: 1.25rem 0 1.35rem;
    background: url(../images/tagline/fv_bg-sp.webp) bottom center/cover;
  }
  .fv__logo {
    width: 4rem;
    margin: 0 auto 0.45rem;
  }
  .fv__txt {
    margin: 0 0 1.59rem;
    color: #153665;
    font-size: 0.26rem;
    text-align: center;
    letter-spacing: 0.06em;
    line-height: 1.65;
  }
  .fv__line {
    position: relative;
    width: 1px;
    height: 1.97rem;
    margin: 0 auto 2rem;
    background: #ffffff;
  }
  .fv__line::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -0.1rem;
    width: 0.2rem;
    height: 0.23rem;
    background: url(../images/tagline/line.webp) center center/contain no-repeat;
    -webkit-animation: circlemove-sp 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
            animation: circlemove-sp 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
  }
  .fv-reveal,
  .tagline__item--reveal {
    opacity: 0;
    -webkit-transform: translate3d(0, 0.18rem, 0);
            transform: translate3d(0, 0.18rem, 0);
    -webkit-transition: opacity 0.65s ease, -webkit-transform 0.65s ease;
    transition: opacity 0.65s ease, -webkit-transform 0.65s ease;
    transition: opacity 0.65s ease, transform 0.65s ease;
    transition: opacity 0.65s ease, transform 0.65s ease, -webkit-transform 0.65s ease;
  }
  .tagline__item--reveal {
    -webkit-transition-duration: 0.85s;
            transition-duration: 0.85s;
    -webkit-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
            transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  .fv-reveal.is-inview,
  .tagline__item--reveal.is-inview {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  .fv-tagline-intro {
    width: 100%;
  }
  .tagline__subttl {
    margin: 0 0 0.4rem;
    font-weight: lighter;
    font-size: 0.68rem;
    color: #ffffff;
    letter-spacing: 0.04em;
    line-height: 1;
    text-align: center;
  }
  .tagline__ttl {
    width: 6.19rem;
    margin: 0 auto 0.5rem;
  }
  .tagline__txt {
    margin: 0 0 0.6rem;
    color: #ffffff;
    font-size: 0.26rem;
    text-align: center;
    letter-spacing: 0.06em;
    line-height: 1.65;
  }
  .tagline__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .tagline__item {
    width: 6.31rem;
    margin: 0 auto 0.45rem;
    padding: 0.45rem 0.58rem 0.5rem 0.5rem;
    background: #ffffff;
    border-radius: 0.1rem;
  }
  .tagline__item-num {
    position: relative;
    margin: 0 0 0.28rem;
    padding: 0 0 0 0.3rem;
    font-size: 0.24rem;
    color: #153665;
    letter-spacing: 0.1em;
    line-height: 1;
  }
  .tagline__item-num::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0.16rem;
    height: 0.19rem;
    background: url(../images/tagline/icon.webp) center center/contain no-repeat;
  }
  .tagline__item-ttl {
    margin: 0 0 0.3rem;
    font-weight: bold;
    font-size: 0.5rem;
    color: #153665;
    letter-spacing: 0.06em;
    line-height: 1.188;
  }
  .tagline__item-ttl span {
    margin: 0 0 0 -0.25rem;
  }
  .tagline__item-txt {
    font-size: 0.26rem;
    color: #153665;
    letter-spacing: 0.06em;
    line-height: 1.53;
  }
  .create--bg {
    padding: 1.6rem 0 2rem;
    background: url(../images/tagline/create_bg-sp.webp) center center/cover;
  }
  .create__line {
    position: absolute;
    top: -2.6rem;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 1px;
    height: 1.97rem;
    background: #ffffff;
  }
  .create__line::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -0.1rem;
    width: 0.2rem;
    height: 0.23rem;
    background: url(../images/tagline/line.webp) center center/contain no-repeat;
    -webkit-animation: circlemove-sp 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
            animation: circlemove-sp 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
  }
  .create h2 {
    width: 5.4rem;
    margin: 0 auto 0.45rem;
  }
  .create__txt {
    color: #153665;
    font-size: 0.26rem;
    text-align: center;
    letter-spacing: 0.04em;
    line-height: 1.65;
  }
  .create-reveal {
    opacity: 0;
    -webkit-transform: translate3d(0, 0.24rem, 0);
            transform: translate3d(0, 0.24rem, 0);
    -webkit-transition: opacity 0.7s ease, -webkit-transform 0.7s ease;
    transition: opacity 0.7s ease, -webkit-transform 0.7s ease;
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition: opacity 0.7s ease, transform 0.7s ease, -webkit-transform 0.7s ease;
  }
  .create-reveal.is-inview {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@media screen and (min-width: 769px) {
  .page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: rgba(7, 18, 36, 0.82);
    pointer-events: none;
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.45s ease, visibility 0.45s ease;
    transition: opacity 0.45s ease, visibility 0.45s ease;
  }
  .page-loader__hex {
    width: 36px;
    aspect-ratio: 1/1.15;
    background: linear-gradient(160deg, #ffffff, #9ad4f1);
    clip-path: polygon(25% 6.7%, 75% 6.7%, 100% 50%, 75% 93.3%, 25% 93.3%, 0% 50%);
    -webkit-transform: scale(0.2);
            transform: scale(0.2);
    opacity: 0;
    -webkit-animation: loader-hex-expand 1.05s cubic-bezier(0.18, 0.8, 0.3, 1) forwards;
            animation: loader-hex-expand 1.05s cubic-bezier(0.18, 0.8, 0.3, 1) forwards;
  }
  .page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .fv--bg {
    padding: 114px 0 160px;
    background: url(../images/tagline/fv_bg.webp) bottom center/cover;
  }
  .fv__logo {
    width: 402px;
    margin: 0 auto 33px;
  }
  .fv__txt {
    margin: 0 0 111px;
    color: #153665;
    font-size: 18px;
    text-align: center;
    letter-spacing: 0.06em;
    line-height: 1.888;
  }
  .fv__line {
    position: relative;
    width: 1px;
    height: 157px;
    background: #ffffff;
    margin: 0 auto 271px;
  }
  .fv__line::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -5.5px;
    width: 11px;
    height: 12px;
    background: url(../images/tagline/line.webp) center center/contain no-repeat;
    -webkit-animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
            animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
  }
  .fv-reveal,
  .tagline__item--reveal {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
            transform: translate3d(0, 30px, 0);
    -webkit-transition: opacity 0.65s ease, -webkit-transform 0.65s ease;
    transition: opacity 0.65s ease, -webkit-transform 0.65s ease;
    transition: opacity 0.65s ease, transform 0.65s ease;
    transition: opacity 0.65s ease, transform 0.65s ease, -webkit-transform 0.65s ease;
  }
  .tagline__item--reveal {
    -webkit-transition-duration: 0.85s;
            transition-duration: 0.85s;
    -webkit-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
            transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  .fv-reveal.is-inview,
  .tagline__item--reveal.is-inview {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  .fv-tagline-intro {
    width: 100%;
  }
  .tagline__subttl {
    margin: 0 0 56px;
    font-weight: lighter;
    font-size: 68px;
    color: #ffffff;
    letter-spacing: 0.04em;
    line-height: 1;
    text-align: center;
  }
  .tagline__ttl {
    width: 1093px;
    margin: 0 auto 40px;
  }
  .tagline__txt {
    margin: 0 0 47px;
    color: #ffffff;
    font-size: 18px;
    text-align: center;
    letter-spacing: 0.06em;
    line-height: 2.111;
  }
  .tagline__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .tagline__item {
    width: 385px;
    height: 375px;
    padding: 47px 38px 0;
    background: #ffffff;
    border-radius: 10px;
  }
  .tagline__item-num {
    position: relative;
    margin: 0 0 20px;
    padding: 0 0 0 20px;
    font-size: 14px;
    color: #153665;
    letter-spacing: 0.1em;
    line-height: 1;
  }
  .tagline__item-num::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 11px;
    height: 12px;
    background: url(../images/tagline/icon.webp) center center/contain no-repeat;
  }
  .tagline__item-ttl {
    height: 105px;
    font-weight: bold;
    font-size: 32px;
    color: #153665;
    letter-spacing: 0.06em;
    line-height: 1.35;
  }
  .tagline__item-ttl span {
    margin: 0 0 0 -18px;
  }
  .tagline__item-txt {
    font-size: 16px;
    color: #153665;
    letter-spacing: 0.06em;
    line-height: 1.81;
  }
  .create--bg {
    padding: 166px 0 177px;
    background: url(../images/tagline/create_bg.webp) center center/cover;
  }
  .create__line {
    position: absolute;
    top: -241px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 1px;
    height: 157px;
    background: #ffffff;
  }
  .create__line::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 11px;
    height: 12px;
    background: url(../images/tagline/line.webp) center center/contain no-repeat;
    -webkit-animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
            animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
  }
  .create h2 {
    width: 900px;
    margin: 0 auto 41px;
  }
  .create__txt {
    color: #153665;
    font-size: 18px;
    text-align: center;
    letter-spacing: 0.06em;
    line-height: 2.111;
  }
  .create-reveal {
    opacity: 0;
    -webkit-transform: translate3d(0, 24px, 0);
            transform: translate3d(0, 24px, 0);
    -webkit-transition: opacity 0.7s ease, -webkit-transform 0.7s ease;
    transition: opacity 0.7s ease, -webkit-transform 0.7s ease;
    transition: opacity 0.7s ease, transform 0.7s ease;
    transition: opacity 0.7s ease, transform 0.7s ease, -webkit-transform 0.7s ease;
  }
  .create-reveal.is-inview {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fv-line-scroll-hint {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}
@keyframes fv-line-scroll-hint {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}
@-webkit-keyframes fv-line-scroll-hint-sp {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(0.2rem);
            transform: translateY(0.2rem);
  }
}
@keyframes fv-line-scroll-hint-sp {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(0.2rem);
            transform: translateY(0.2rem);
  }
}
@media (prefers-reduced-motion: reduce) {
  .fv-reveal,
  .tagline__item--reveal,
  .create-reveal {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
  }
}
@-webkit-keyframes loader-hex-expand {
  0% {
    -webkit-transform: scale(0.2);
            transform: scale(0.2);
    opacity: 0;
  }
  35% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(64);
            transform: scale(64);
    opacity: 0.12;
  }
}
@keyframes loader-hex-expand {
  0% {
    -webkit-transform: scale(0.2);
            transform: scale(0.2);
    opacity: 0;
  }
  35% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(64);
            transform: scale(64);
    opacity: 0.12;
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-loader {
    display: none !important;
  }
}
@-webkit-keyframes circlemove {
  0% {
    bottom: 157px;
  }
  100% {
    bottom: 0px;
  }
}
@keyframes circlemove {
  0% {
    bottom: 157px;
  }
  100% {
    bottom: 0px;
  }
}
@-webkit-keyframes circlemove-sp {
  0% {
    bottom: 1.97rem;
  }
  100% {
    bottom: 0px;
  }
}
@keyframes circlemove-sp {
  0% {
    bottom: 1.97rem;
  }
  100% {
    bottom: 0px;
  }
}
@-webkit-keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}