@charset "UTF-8";
/* Reset.css */
body {
  color: #333333;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "a-otf-ud-shin-go-pr6n", "meiryo", sans-serif;
  -webkit-text-size-adjust: 100%;
}

.clearfix:after {
  clear: both;
  content: "";
  display: block;
}

/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, main, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

body {
  line-height: 1.6;
}

ol, ul {
  list-style: none;
}

a {
  text-decoration: none;
}

blockquote, q {
  quotes: none;
}

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

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

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

:root {
  --color-black: #000;
  --color-blue: #34e0ff;
  --color-gray: #aaa;
  --color-white: #fff;
  --ff-ls-b: "LINESeedJPStd Bold";
  --ff-ls-eb: "LINESeedJPStd ExtraBold";
  --ff-ls-m: "LINESeedJPStd Regular";
  --ff-ls-t: "LINESeedJPStd Thin";
  --hover-duration: .3s;
  --hover-opacity-ratio: .6;
}

body {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "a-otf-ud-shin-go-pr6n", "meiryo", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

img {
  height: auto;
  max-width: 100%;
  width: auto;
}

/* ---------------------------------------------
*  body
--------------------------------------------- */
.l-body {
  background: var(--color-black);
  overflow-x: hidden;
  position: relative;
}
.l-body:before {
  animation: gradient 35s ease-in-out infinite;
  background-image: linear-gradient(40deg, rgb(232, 116, 39) 10%, rgb(0, 0, 0) 50%, rgb(50, 215, 244) 90%);
  background-position: 50% 50%;
  background-size: 240% 240%;
  content: "";
  inset: 0;
  opacity: 0.45;
  pointer-events: none;
  position: fixed;
  z-index: -2;
}
.l-body:after {
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.5) 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
  background-size: 80px 80px;
  content: "";
  inset: 0;
  mix-blend-mode: soft-light;
  opacity: 0.15;
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

@keyframes gradient {
  0% {
    background-position: 0 40%;
  }
  50% {
    background-position: 100% 60%;
  }
  100% {
    background-position: 0 40%;
  }
}
/* ---------------------------------------------
*  l-h2title
--------------------------------------------- */
.l-h2title {
  color: var(--color-white);
  font-family: var(--ff-ls-b);
  font-size: 1.375rem;
  font-weight: 600;
  padding-left: 37px;
  position: relative;
  text-align: left;
}
@media (max-width: 1023px) {
  .l-h2title {
    font-size: 1.125rem;
    padding-left: 32px;
  }
}
.l-h2title-blue::before {
  background: url(/sites/default/files/media/jp/brand/the-highlight/img/icon_h2title.svg) center center no-repeat;
  content: "";
  height: 22px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
}
@media (max-width: 1023px) {
  .l-h2title-blue::before {
    background: url(/sites/default/files/media/jp/brand/the-highlight/img/icon_h2title_sp.svg) center center no-repeat;
    height: 20px;
    width: 20px;
  }
}
.l-h2title-orange::before {
  background: url(/sites/default/files/media/jp/brand/the-highlight/img/icon_h2title_orange.svg) center center no-repeat;
  content: "";
  height: 22px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
}
@media (max-width: 1023px) {
  .l-h2title-orange::before {
    background: url(/sites/default/files/media/jp/brand/the-highlight/img/icon_h2title_orange_sp.svg) center center no-repeat;
    height: 20px;
    width: 20px;
  }
}

/* ---------------------------------------------
*  header
--------------------------------------------- */
.l-header {
  height: 84px;
  left: 50%;
  overflow: hidden;
  position: fixed;
  top: 0;
  transform: translateX(-50%);
  transition: background-color 0.2s ease-out, transform 0.2s ease-out;
  width: 100%;
  z-index: 9;
}
@media (max-width: 1023px) {
  .l-header {
    border-radius: 0;
    box-shadow: none;
    height: 65px;
    left: 0;
    overflow: visible;
    top: 0;
    transform: none;
    width: 100%;
  }
}
.l-header.bgWhite {
  background: var(--color-black);
}
.l-header__logo {
  line-height: 1;
}
@media (max-width: 1023px) {
  .l-header__logo img {
    max-width: 61px;
    width: 100%;
  }
}
.l-header-container {
  align-items: center;
  display: flex;
  height: 84px;
  padding-inline: 2.7777777778%;
}
@media (max-width: 1023px) {
  .l-header-container {
    height: 65px;
    padding-inline: 4.2666666667%;
  }
}
.l-header-menu {
  margin-left: auto;
}
@media (max-width: 1023px) {
  .l-header-menu {
    inset: 50px 0 calc(100% - 50px);
    overflow-y: auto;
    overscroll-behavior-y: none;
    position: fixed;
    scrollbar-width: none;
    transition: bottom 0.3s, visibility 0.3s;
    visibility: hidden;
  }
}
.l-header-nav__item {
  position: relative;
}
@media (max-width: 1023px) {
  .l-header-nav__item:after {
    border-right: 1px solid var(--color-white);
    border-top: 1px solid var(--color-white);
    content: "";
    display: inline-block;
    height: 4px;
    position: absolute;
    right: 32px;
    top: 46%;
    transform: rotate(45deg) translateY(-50%);
    width: 4px;
  }
}
.l-header-nav__list {
  display: flex;
  gap: 24px;
}
@media (max-width: 1023px) {
  .l-header-nav__list {
    flex-direction: column;
    gap: 0;
  }
}
.l-header-nav__link {
  color: var(--color-white);
  display: block;
  font-family: var(--ff-ls-m);
  font-size: 0.8125rem;
  font-weight: 500;
  position: relative;
}
@media (max-width: 1023px) {
  .l-header-nav__link {
    padding: 14px 20px 13px 44px;
  }
}
.l-header-nav__link:hover {
  color: var(--color-blue);
  text-decoration: none;
}

@media screen and (max-width: 1023px) {
  .l-header-menu::-webkit-scrollbar {
    display: none;
  }
}
/*  l-header-menu
--------------------------------------------- */
@media screen and (min-width: 1025px) {
  .l-header-menu {
    display: block !important;
  }
}
@media screen and (max-width: 1023px) {
  .l-header-menu {
    inset: 65px 0 calc(100% - 50px);
    overflow-y: auto;
    overscroll-behavior-y: none;
    position: fixed;
    scrollbar-width: none;
    transition: bottom 0.3s, visibility 0.3s;
    visibility: hidden;
  }
  .l-header-menu::-webkit-scrollbar {
    display: none;
  }
  .is-menu-opened .l-header {
    background: var(--color-black);
  }
  .is-menu-opened .l-header-menu {
    bottom: 0;
    top: 65px;
    visibility: visible;
  }
}
@media screen and (max-width: 1023px) {
  .l-header-menu__container {
    background-color: var(--color-black);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    box-sizing: border-box;
    height: auto;
    overflow-y: auto;
    padding: 0 0 45px;
  }
  .is-animating .l-header-menu__container {
    scrollbar-width: none;
    top: 0;
  }
  .is-animating .l-header-menu__container::-webkit-scrollbar {
    display: none;
  }
}
/*  l-header-menu-button
--------------------------------------------- */
.l-header-menu-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  display: none;
  margin: 2px 10px 0 11px;
  outline: none;
  padding: 0 9px 15px;
  position: relative;
  touch-action: manipulation;
}

@media screen and (max-width: 1023px) {
  .l-header-menu-button {
    animation: fadeAnim 0.3s forwards;
    display: block;
    margin: 2px 8px 0 11px;
    margin-left: auto;
    opacity: 0;
    padding: 0;
  }
}
.l-header-menu-button::after {
  bottom: 0;
  color: #00003e;
  content: normal;
  font-size: 10px;
  font-weight: 700;
  left: 50%;
  line-height: 1;
  position: absolute;
  text-align: center;
  transform: translateX(-50%);
  white-space: nowrap;
  width: 100%;
}

@media screen and (max-width: 1023px) {
  .l-header-menu-button::after {
    animation: rotateAnim1 0.3s forwards;
  }
}
@media screen and (max-width: 1023px) {
  .is-menu-opened .l-header-menu-button::after {
    animation: rotateAnim2 0.3s forwards;
  }
}
@keyframes fadeAnim {
  0% {
    opacity: 0;
  }
  99% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes rotateAnim1 {
  0% {
    transform: translateX(-70%) rotate(30deg);
  }
  100% {
    transform: translateX(-50%) rotate(0deg);
  }
}
@keyframes rotateAnim2 {
  0% {
    transform: translateX(-30%) rotate(-30deg);
  }
  100% {
    transform: translateX(-50%) rotate(0deg);
  }
}
.l-header-menu-button__lines {
  display: block;
  height: 12px;
  position: relative;
  width: 17px;
}

.l-header-menu-button__line {
  background-color: var(--color-white);
  border-radius: 9999px;
  display: block;
  height: 0;
  left: 0;
  padding-top: 1px;
  position: absolute;
  transition: 0.3s;
  width: 100%;
}

.l-header-menu-button__line--top {
  top: 0;
}

.is-menu-opened .l-header-menu-button__line--top {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.l-header-menu-button__line--center {
  margin-top: -1px;
  top: 50%;
}

.is-menu-opened .l-header-menu-button__line--center {
  background-color: rgba(0, 0, 0, 0);
}

.l-header-menu-button__line--bottom {
  bottom: 0;
}

.is-menu-opened .l-header-menu-button__line--bottom {
  bottom: 50%;
  transform: translateY(50%) rotate(45deg);
}

/* ---------------------------------------------
*  kv
--------------------------------------------- */
.c-kv {
  height: 541px;
  overflow: hidden;
  padding-inline: 2.7777777778%;
  padding-top: 84px;
  position: relative;
}
@media (max-width: 1023px) {
  .c-kv {
    height: 469px;
    padding-inline: 0;
    padding-top: 0;
  }
}
.c-kv__container {
  bottom: 63px;
  left: 8.3333333333%;
  max-width: 1200px;
  position: absolute;
  width: 100%;
  z-index: 5;
}
@media (max-width: 1023px) {
  .c-kv__container {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.c-kv__txtBlock {
  max-width: 486px;
  position: relative;
}
@media (max-width: 1023px) {
  .c-kv__txtBlock {
    left: 50%;
    padding-inline: 10.4%;
    transform: translateX(-50%);
  }
}
.c-kv__list {
  align-items: center;
  display: flex;
  gap: 19px;
}
@media (max-width: 1023px) {
  .c-kv__list {
    gap: 11px;
    justify-content: center;
  }
}
@media screen and (min-width: 1024px) {
  .c-kv__list {
    padding-left: 0.6944444444%;
  }
}
.c-kv__item {
  line-height: 1;
}
.c-kv__h1title {
  margin-top: 30px;
}
@media (max-width: 1023px) {
  .c-kv__h1title {
    margin-top: 22px;
    text-align: center;
  }
}
.c-kv__video {
  border-radius: 17px;
  height: 541px;
  margin-inline: auto;
  position: relative;
  transition: background-color 0.3s ease-out, transform 0.3s ease-out;
  width: 100%;
}
@media (max-width: 1023px) {
  .c-kv__video {
    border-radius: 0;
    height: 469px;
  }
}
.c-kv__video--btn {
  background: none;
  border: none;
  position: absolute;
  right: 2.0833333333%;
  top: 4.4747081712%;
  z-index: 5;
}
@media (max-width: 1023px) {
  .c-kv__video--btn {
    display: none !important;
  }
}
.c-kv__video--playBtn {
  cursor: pointer;
  max-width: 24px;
  width: 100%;
}
.c-kv__video:after {
  background: linear-gradient(90deg, rgb(0, 0, 0), rgba(0, 0, 0, 0.6) 50%, rgb(0, 0, 0));
  border-radius: 17px;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
@media (max-width: 1023px) {
  .c-kv__video:after {
    background: linear-gradient(0deg, rgb(0, 0, 0), rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.9));
    border-radius: 0;
  }
}
.c-kv__video video {
  border-radius: 17px;
  height: 541px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
@media (max-width: 1023px) {
  .c-kv__video video {
    border-radius: 0;
    height: 469px;
  }
}
.c-kv__txt {
  color: var(--color-white);
  font-family: var(--ff-ls-m);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6428571429;
  margin-top: 23px;
  text-align: left;
}
@media (max-width: 1023px) {
  .c-kv__txt {
    font-size: 0.6875rem;
    margin-top: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .c-kv__txt {
    margin-left: -5px;
  }
}
.c-kv__img {
  align-items: center;
  display: flex;
  justify-content: flex-end;
}
.c-kv__img img {
  max-width: 580px;
  width: 100%;
}

/* ---------------------------------------------
*  新着
--------------------------------------------- */
.c-new {
  margin-inline: auto;
  max-width: 1200px;
  padding-inline: 1.3888888889%;
  padding-top: 40px;
}
@media (max-width: 1023px) {
  .c-new {
    padding-inline: 0;
    padding-top: 25px;
  }
}
@media (max-width: 1023px) and (max-width: 1023px) {
  .c-new .l-h2title {
    margin-left: 5.3333333333%;
  }
}
.c-new__list {
  display: flex;
  gap: 1.25%;
  justify-content: flex-start;
  margin-top: 13px;
}
@media (max-width: 1023px) {
  .c-new__list {
    gap: 4.2666666667%;
    justify-content: center;
    padding-inline: 5.3333333333%;
  }
}
.c-new__item {
  flex: 1;
  max-width: 388px;
}
@media (max-width: 768px) {
  .c-new__item {
    flex: none;
    max-width: 335px;
    width: 100%;
  }
}
.c-new__inner {
  aspect-ratio: 16/9;
  position: relative;
}
.c-new__inner:hover .c-new__thumbnail {
  opacity: 0;
}
@media (max-width: 1023px) {
  .c-new__inner:hover .c-new__thumbnail {
    opacity: 1;
  }
}
.c-new__thumbnail {
  inset: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 0.4s ease;
  z-index: 2;
}
.c-new__txt {
  margin-top: 13px;
}
.c-new__h3title {
  color: var(--color-white);
  font-family: var(--ff-ls-b);
  font-size: 1.0625rem;
  font-weight: 600;
}
@media (max-width: 1023px) {
  .c-new__h3title {
    font-size: 0.875rem;
  }
}
.c-new__date {
  align-items: center;
  color: var(--color-gray);
  display: flex;
  font-family: var(--ff-ls-m);
  font-size: 0.75rem;
  font-weight: 500;
  gap: 11px;
  margin-top: 8px;
}
@media (max-width: 1023px) {
  .c-new__date {
    font-size: 0.625rem;
  }
}
.c-new__date span {
  background: var(--color-white);
  color: var(--color-black);
  font-family: var(--ff-ls-m);
  font-size: 0.8125rem;
  font-weight: 500;
  height: 21px;
  line-height: 21px;
  padding-inline: 7px;
}
@media (max-width: 1023px) {
  .c-new__date span {
    font-size: 0.625rem;
  }
}
.c-new .youtube-item {
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}
.c-new .youtube-preview {
  border-radius: 10px;
  height: 100%;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.c-new .youtube-preview iframe {
  border: 0;
  height: 100%;
  width: 100%;
}
.c-new .js-modal-btn {
  background: none;
  border: none;
  cursor: pointer;
  inset: 0;
  position: absolute;
}

.c-new__embed {
  align-items: center;
  background: var(--color-black);
  color: var(--color-white);
  display: flex;
  font-family: var(--ff-ls-m);
  font-size: 0.8125rem;
  font-weight: 500;
  height: 21px;
  justify-content: center;
  line-height: 1;
  padding-inline: 8px;
  position: absolute;
  right: 9px;
  top: 9px;
  z-index: 5;
}

/* ---------------------------------------------
*  contents
--------------------------------------------- */
.c-contents {
  padding-inline: 1.3888888889%;
  position: relative;
  z-index: 5;
}
@media (max-width: 1023px) {
  .c-contents {
    padding-inline: 5.3333333333%;
  }
}
.c-contents__inner {
  margin-inline: auto;
  max-width: 1200px;
}

/* ---------------------------------------------
*  エピソード
--------------------------------------------- */
.c-episode {
  padding-top: 56px;
}
@media (max-width: 1023px) {
  .c-episode {
    padding-top: 64px;
  }
}
.c-episode__inner {
  position: relative;
  text-align: center;
}
.c-episode__link {
  background: url(/sites/default/files/media/jp/brand/the-highlight/img/img_episode.png) center center no-repeat;
  background-size: contain;
  border: none;
  cursor: pointer;
  height: 464px;
  transition: opacity 0.15s ease-out;
  width: 100%;
}
@media (max-width: 1023px) {
  .c-episode__link {
    background: none;
    height: auto;
    padding: 0;
  }
}
.c-episode__link:hover:after {
  opacity: 1;
}
.c-episode__link::after {
  background: url(/sites/default/files/media/jp/brand/the-highlight/img/img_episode_hover.png) center center no-repeat;
  background-size: contain;
  content: "";
  height: 464px;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 0.15s ease-out;
  width: 100%;
}
@media (max-width: 1023px) {
  .c-episode__link::after {
    display: none;
  }
}
.c-episode__img {
  display: none;
}
@media (max-width: 1023px) {
  .c-episode__img {
    display: block;
    margin-inline: auto;
  }
}

/* ---------------------------------------------
*  ナビゲーター
--------------------------------------------- */
.c-navigator {
  padding-top: 100px;
}
@media (max-width: 1023px) {
  .c-navigator {
    padding-top: 64px;
  }
}
.c-navigator__list {
  display: flex;
  gap: 1.6666666667%;
  justify-content: center;
  margin-top: 13px;
}
@media (max-width: 1023px) {
  .c-navigator__list {
    flex-direction: column;
    gap: 33px;
  }
}
.c-navigator__item {
  flex: 1;
}
.c-navigator__img {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 7px;
  height: 399px;
  position: relative;
}
@media (max-width: 1023px) {
  .c-navigator__img {
    height: 190px;
  }
}
.c-navigator__img img {
  bottom: 0;
  left: 50%;
  max-width: 254px;
  position: absolute;
  transform: translateX(-50%);
  width: 100%;
}
@media (max-width: 1023px) {
  .c-navigator__img img {
    max-width: 143px;
  }
}
.c-navigator__profile {
  color: #fff;
  margin-top: 13px;
}
.c-navigator__profile--name {
  font-family: var(--ff-ls-b);
  font-size: 1.375rem;
}
@media (max-width: 1023px) {
  .c-navigator__profile--name {
    font-size: 1.125rem;
  }
}
.c-navigator__profile--name-1 {
  font-size: 0.9375rem;
}
.c-navigator__profile--name-2 {
  font-family: var(--ff-ls-m);
  font-size: 0.6875rem;
  margin-left: 10px;
  opacity: 0.6;
  padding-bottom: 4px;
}
@media (max-width: 1023px) {
  .c-navigator__profile--name-2 {
    font-size: 0.625rem;
  }
}
.c-navigator__profile--txt {
  font-family: var(--ff-ls-m);
  font-size: 0.875rem;
  line-height: 1.7142857143;
  margin-top: 5px;
}
@media (max-width: 1023px) {
  .c-navigator__profile--txt {
    font-size: 0.625rem;
  }
}

/* ---------------------------------------------
*  サービス
--------------------------------------------- */
.c-service {
  height: 349px;
  padding-top: 100px;
  position: relative;
}
@media (max-width: 1023px) {
  .c-service {
    padding-top: 64px;
  }
}
.c-service__bg {
  aspect-ratio: 1/1;
  height: 349px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.c-service__bg img {
  aspect-ratio: 1/1;
  height: 349px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.c-service__left {
  bottom: 88px;
  left: 10.1666666667%;
  position: absolute;
}
@media (max-width: 1023px) {
  .c-service__left {
    bottom: 187px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }
}
.c-service__h2title {
  color: var(--color-white);
  font-family: var(--ff-ls-b);
  font-size: 1.6875rem;
  line-height: 1.5925925926;
  text-align: left;
}
@media (max-width: 1023px) {
  .c-service__h2title {
    font-size: 1.25rem;
    text-align: center;
  }
}
.c-service__btn {
  margin-top: 32px;
}
@media (max-width: 1023px) {
  .c-service__btn {
    margin-top: 20px;
    text-align: center;
  }
}
.c-service__link {
  align-items: center;
  background: var(--color-blue);
  border-radius: 30px;
  color: var(--color-black);
  display: flex;
  font-family: var(--ff-ls-b);
  font-size: 1.125rem;
  font-weight: 600;
  height: 59px;
  justify-content: center;
  transition: background-color 0.3s ease-out, transform 0.3s ease-out;
  width: 258px;
}
@media (max-width: 1023px) {
  .c-service__link {
    font-size: 0.875rem;
    height: 38px;
    margin-inline: auto;
    width: 124px;
  }
}
.c-service__link:hover {
  background: var(--color-white);
}

/* ---------------------------------------------
*  メッセージ
--------------------------------------------- */
.c-message {
  margin-top: 100px;
  text-align: center;
}
@media (max-width: 1023px) {
  .c-message {
    margin-top: 80px;
  }
}
.c-message img {
  max-width: 610px;
  width: 100%;
}
@media (max-width: 1023px) {
  .c-message img {
    max-width: 335px;
  }
}

/* ---------------------------------------------
*  メッセージ-2
--------------------------------------------- */
.c-message-2 {
  margin-top: 58px;
  text-align: center;
}
@media (max-width: 1023px) {
  .c-message-2 {
    margin-top: 40px;
  }
}
.c-message-2 img {
  max-width: 677px;
  width: 100%;
}
@media (max-width: 1023px) {
  .c-message-2 img {
    max-width: 335px;
  }
}

/* ---------------------------------------------
*  logo
--------------------------------------------- */
.c-logo {
  margin-top: 140px;
  text-align: left;
}
@media (max-width: 1023px) {
  .c-logo {
    margin-top: 128px;
    text-align: center;
  }
}
.c-logo__img {
  max-width: 142px;
  width: 100%;
}
@media screen and (min-width: 1441px) {
  .c-logo__img {
    margin-left: -30px;
  }
}

/* ---------------------------------------------
*  fotter
--------------------------------------------- */
.l-footer {
  padding-block: 56px 48px;
}
@media (max-width: 1023px) {
  .l-footer {
    padding-block: 48px 56px;
  }
}
.l-footer__list {
  align-items: center;
  display: flex;
  margin-inline: auto;
  max-width: 1200px;
  padding-inline: 1.3888888889%;
}
@media (max-width: 1023px) {
  .l-footer__list {
    align-items: flex-start;
    flex-direction: column;
    gap: 32px;
    padding-inline: 8%;
  }
}
.l-footer__link {
  display: flex;
  font-family: var(--ff-ls-b);
  font-weight: 600;
  gap: 34px;
}
@media (max-width: 1023px) {
  .l-footer__link {
    flex-direction: column;
    gap: 10px;
  }
}
.l-footer__link a {
  color: var(--color-white);
  font-size: 0.75rem;
}
@media (max-width: 1023px) {
  .l-footer__link a {
    font-size: 0.625rem;
  }
}
.l-footer__link a:hover {
  text-decoration: underline;
}
.l-footer__copyright {
  color: var(--color-white);
  font-family: var(--ff-ls-m);
  font-size: 0.75rem;
  font-weight: 500;
  margin-left: auto;
}
@media (max-width: 1023px) {
  .l-footer__copyright {
    font-size: 0.625rem;
    margin-left: 0;
  }
}

/* ---------------------------------------------
*  汎用
--------------------------------------------- */
.scrollUp {
  opacity: 0;
  transform: translateY(1px);
  transition: opacity 1s, transform 1s;
}

.scrollUp.is-show {
  opacity: 1;
  transform: translateY(0px);
}

.pc_only {
  display: block !important;
}

@media (max-width: 1023px) {
  .pc_only {
    display: none !important;
  }
}
.sp_only {
  display: none !important;
}

@media (max-width: 1023px) {
  .sp_only {
    display: block !important;
  }
}/*# sourceMappingURL=style.css.map */