@charset "UTF-8";
/* Break point
---------------------------------------------------------- */
/* Font
---------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
/* Mixin
---------------------------------------------------------- */
/* Animation
---------------------------------------------------------- */
.a-fadeIn {
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.a-fadeIn.-start {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@-webkit-keyframes arrowAnime {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
    opacity: 0;
  }
  51% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes arrowAnime {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
    opacity: 0;
  }
  51% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes arrowAnime2 {
  0% {
    -webkit-transform: scaleX(var(--arrow-scale)) translateX(0);
            transform: scaleX(var(--arrow-scale)) translateX(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: scaleX(var(--arrow-scale)) translateX(10px);
            transform: scaleX(var(--arrow-scale)) translateX(10px);
    opacity: 0;
  }
  51% {
    -webkit-transform: scaleX(var(--arrow-scale)) translateX(-10px);
            transform: scaleX(var(--arrow-scale)) translateX(-10px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scaleX(var(--arrow-scale)) translateX(0);
            transform: scaleX(var(--arrow-scale)) translateX(0);
    opacity: 1;
  }
}
@keyframes arrowAnime2 {
  0% {
    -webkit-transform: scaleX(var(--arrow-scale)) translateX(0);
            transform: scaleX(var(--arrow-scale)) translateX(0);
    opacity: 1;
  }
  50% {
    -webkit-transform: scaleX(var(--arrow-scale)) translateX(10px);
            transform: scaleX(var(--arrow-scale)) translateX(10px);
    opacity: 0;
  }
  51% {
    -webkit-transform: scaleX(var(--arrow-scale)) translateX(-10px);
            transform: scaleX(var(--arrow-scale)) translateX(-10px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scaleX(var(--arrow-scale)) translateX(0);
            transform: scaleX(var(--arrow-scale)) translateX(0);
    opacity: 1;
  }
}
/* ==========================================================================//
//
//　変数
//
// ========================================================================== */
:root {
  /* Color
  ---------------------------------------------------------- */
  --color-main: #111987;
  --color-sub: #D1D3ED;
  --color-sub2: #767BB9;
  --color-sub3: #EFF5EA;
  --color-sub4: #E4EDF9;
  --color-sub5: #BFDBFF;
  --color-line: #D9D9D9;
  --color-font: #272727;
  --color-fontsub: #989898;
  --color-link: #111987;
  --color-red: #EB3939;
  --color-switching:#20BA87;
  --color-noise:#997BC4;
  --label-color-new: #0066C6;
  --label-color-new2: #C6E4FF;
  --label-color-recommend: #4EBCE4;
  --label-color-recommend2: #C4F2FF;
  --label-color-deprecated: #FFA550;
  --label-color-deprecated2: #FFD7B2;
  --label-color-discontinued: #EB3939;
  --label-color-discontinued2: #FFD7C2;
  --label-color-massProduced: #6FC56F;
  --label-color-massProduced2: #D5FDBE;
  --label-color-endOfLife: #989898;
  --label-color-endOfLife2: #D9D9D9;
  /* font
  ---------------------------------------------------------- */
  --font-jp: "Noto Sans JP", sans-serif;
  --font-en: "Figtree", sans-serif;
  --font-no: "Roboto", sans-serif;
  --font-l: 300;
  --font-r: 400;
  --font-m: 500;
  --font-b: 700;
  --font-bl: 900;
  --lhS: 1.2;
  --lhM: 1.5;
  --lhL: 1.8;
  --lhLL: 2.3;
  /* width
  ---------------------------------------------------------- */
  --maxWidth: 1240px;
  --maxWidth2: 1040px;
  --sidePadding: 20px;
  --marginTop: 20px;
  --header: 50px;
  --arrow-scale: 1;
}
@media screen and (min-width: 768px) {
  :root {
    --sidePadding: 40px;
  }
}
@media screen and (min-width: 960px) {
  :root {
    --sidePadding: 80px;
  }
}
@media screen and (min-width: 768px) {
  :root {
    --marginTop: 40px;
  }
}
@media screen and (min-width: 960px) {
  :root {
    --header: 90px;
  }
}

.c-link-1 {
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .c-link-1 {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.l-loading {
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999999;
}
.l-loading__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 50px;
  width: 100%;
  height: 100vh;
  background: #fff;
}
.l-loading__logo {
  width: 200px;
}
@media screen and (min-width: 960px) {
  .l-loading__logo {
    width: 250px;
  }
}
.l-loading__logo img {
  width: 100%;
}
.l-loading__dot {
  width: 60px;
  aspect-ratio: 2;
  --_g: no-repeat radial-gradient(circle closest-side,var(--color-sub2) 90%,#0000);
  background: var(--_g) 0% 50%, var(--_g) 50% 50%, var(--_g) 100% 50%;
  background-size: 33.3333333333% 50%;
  -webkit-animation: l3 1.2s infinite linear;
          animation: l3 1.2s infinite linear;
}
@-webkit-keyframes l3 {
  20% {
    background-position: 0% 0%, 50% 50%, 100% 50%;
  }
  40% {
    background-position: 0% 100%, 50% 0%, 100% 50%;
  }
  60% {
    background-position: 0% 50%, 50% 100%, 100% 0%;
  }
  80% {
    background-position: 0% 50%, 50% 50%, 100% 100%;
  }
}
@keyframes l3 {
  20% {
    background-position: 0% 0%, 50% 50%, 100% 50%;
  }
  40% {
    background-position: 0% 100%, 50% 0%, 100% 50%;
  }
  60% {
    background-position: 0% 50%, 50% 100%, 100% 0%;
  }
  80% {
    background-position: 0% 50%, 50% 50%, 100% 100%;
  }
}

body {
  position: relative;
}
@media screen and (min-width: 960px) {
  body::after {
    content: "";
    display: inline-block;
    width: 100%;
    height: var(--header);
    background: -webkit-gradient(linear, left top, left bottom, from(#5B5B5B), to(#fff));
    background: -webkit-linear-gradient(top, #5B5B5B 0%, #fff 100%);
    background: linear-gradient(180deg, #5B5B5B 0%, #fff 100%);
    mix-blend-mode: multiply;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1;
  }
}

@media screen and (min-width: 960px) {
  .l-header {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .l-header__inner {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .l-header__logo a {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}
@media screen and (min-width: 960px) {
  .l-header:not(.-active, .-white) {
    background: none;
  }
  .l-header:not(.-active, .-white) .l-header__inner {
    background: none;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .l-header:not(.-active, .-white) .l-header__logo a {
    background-image: url(/assets/img/logo_white.svg);
  }
  .l-header:not(.-active, .-white) .l-header__search, .l-header:not(.-active, .-white) .l-header__lang {
    color: #fff;
  }
  .l-header:not(.-active, .-white) .l-nav {
    background: none;
  }
  .l-header:not(.-active, .-white) .l-nav__list__item__btn, .l-header:not(.-active, .-white) .l-nav__list__item__link {
    color: #fff;
  }
  .l-header:not(.-active, .-white) .l-nav__list__item__btn .c-icon-svg, .l-header:not(.-active, .-white) .l-nav__list__item__link .c-icon-svg {
    color: #fff;
  }
  .l-header:not(.-active, .-white):hover {
    background: #fff;
  }
  .l-header:not(.-active, .-white):hover .l-header__inner {
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  .l-header:not(.-active, .-white):hover .l-header__logo a {
    background-image: url(/assets/img/logo_blue.svg);
  }
  .l-header:not(.-active, .-white):hover .l-header__search, .l-header:not(.-active, .-white):hover .l-header__lang {
    color: var(--color-main);
  }
  .l-header:not(.-active, .-white):hover .l-nav__list__item__btn, .l-header:not(.-active, .-white):hover .l-nav__list__item__link {
    color: var(--color-font);
  }
}
@media screen and (min-width: 960px) and (min-width: 960px) {
  .l-header:not(.-active, .-white):hover .l-nav__list__item__btn:hover, .l-header:not(.-active, .-white):hover .l-nav__list__item__link:hover {
    color: var(--color-main);
  }
  .l-header:not(.-active, .-white):hover .l-nav__list__item__btn.-active, .l-header:not(.-active, .-white):hover .l-nav__list__item__link.-active {
    color: var(--color-main);
  }
}
@media screen and (min-width: 960px) {
  .l-header:not(.-active, .-white):hover .l-nav__list__item__btn .c-icon-svg, .l-header:not(.-active, .-white):hover .l-nav__list__item__link .c-icon-svg {
    color: var(--color-main);
  }
}

.l-top-mv {
  position: relative;
  --btnWidth: 120px;
}
@media screen and (min-width: 960px) {
  .l-top-mv {
    margin-top: 0;
    padding-top: var(--header);
  }
}
.l-top-mv::before, .l-top-mv::after {
  content: "";
  display: inline-block;
  width: 100%;
  position: fixed;
  left: 0;
  z-index: -1;
}
.l-top-mv::before {
  height: calc(100vh - var(--header) - 25px);
  background: url(/images/img-mv.webp) no-repeat center center/cover;
  top: var(--header);
  left: 0;
  z-index: -2;
}
@media screen and (min-width: 768px) {
  .l-top-mv::before {
    height: calc(100vh - var(--header));
  }
}
@media screen and (min-width: 960px) {
  .l-top-mv::before {
    height: 100vh;
    top: 0;
  }
}
.l-top-mv::after {
  height: 80px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(50%, #000), to(#000));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #000 50%, #000 100%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 50%, #000 100%);
  bottom: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .l-top-mv::after {
    content: none;
  }
}
.l-top-mv__inner {
  position: relative;
}
.l-top-mv__inner::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: calc(100% - 50vh);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(4.24%, rgba(255, 255, 255, 0.6)), color-stop(60.87%, rgba(128, 128, 128, 0.6)));
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.6) 4.24%, rgba(128, 128, 128, 0.6) 60.87%);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6) 4.24%, rgba(128, 128, 128, 0.6) 60.87%);
  mix-blend-mode: multiply;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .l-top-mv__inner::before {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(5.62%, #FFF), color-stop(38.31%, #ADADAD), color-stop(65.93%, #828282));
    background: -webkit-linear-gradient(top, #FFF 5.62%, #ADADAD 38.31%, #828282 65.93%);
    background: linear-gradient(180deg, #FFF 5.62%, #ADADAD 38.31%, #828282 65.93%);
  }
}
.l-top-mv__fv {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: calc(100vh - var(--header));
}
@media screen and (min-width: 768px) {
  .l-top-mv__fv {
    min-height: calc(100vh - var(--header) + 100px);
  }
}
@media screen and (min-width: 960px) {
  .l-top-mv__fv {
    height: calc(100vh - var(--header) + 100px);
    max-width: calc(var(--maxWidth) + var(--sidePadding) * 2);
    margin: 0 auto;
    min-height: 680px;
  }
}
.l-top-mv__ttl {
  color: #fff;
  font-size: 19px;
  font-size: 1.1875rem;
  font-weight: var(--font-b);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  line-height: var(--lhL);
  padding: 40px 20px 0;
}
@media screen and (min-width: 768px) {
  .l-top-mv__ttl {
    font-size: 32px;
    font-size: 2rem;
    padding: 95px var(--sidePadding) 0;
    text-shadow: none;
  }
}
@media screen and (min-width: 960px) {
  .l-top-mv__ttl {
    font-size: clamp(1.813rem, 0.188rem + 2.71vw, 2.625rem);
  }
}
.l-top-mv__ttl .-main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.l-top-mv__ttl .-en {
  margin-top: 5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 10px;
  font-size: 0.625rem;
}
@media screen and (min-width: 768px) {
  .l-top-mv__ttl .-en {
    font-size: 16px;
    font-size: 1rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    margin-top: 10px;
  }
}
@media screen and (min-width: 960px) {
  .l-top-mv__ttl .-en {
    font-size: clamp(0.813rem, 0.188rem + 1.04vw, 1.125rem);
    margin-top: 25px;
  }
}
.l-top-mv__important {
  --color-important: #111987;
  border: 1px solid var(--color-important);
  background: #fff;
  margin: 20px;
}
@media screen and (min-width: 768px) {
  .l-top-mv__important {
    margin: 20px var(--sidePadding);
  }
}
@media screen and (min-width: 960px) {
  .l-top-mv__important {
    margin: 50px var(--sidePadding);
    display: grid;
    grid-template-columns: auto 1fr;
  }
}
.l-top-mv__important .-ttl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
  background: var(--color-important);
  color: #fff;
  font-weight: var(--font-b);
  padding: 10px 20px;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 960px) {
  .l-top-mv__important .-ttl {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.l-top-mv__important__list {
  padding: 10px 20px;
}
@media screen and (min-width: 960px) {
  .l-top-mv__important__list {
    padding: 20px 30px;
  }
}
.l-top-mv__important__list__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3px 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
}
.l-top-mv__important__list__item + .l-top-mv__important__list__item {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .l-top-mv__important__list__item {
    grid-template-columns: 80px 1fr;
  }
}
.l-top-mv__important__list__item .-data {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  color: #787878;
}
.l-top-mv__important__list__item .-data + * {
  margin-top: 3px;
}
@media screen and (min-width: 960px) {
  .l-top-mv__important__list__item .-data {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.l-top-mv__important__list__item .-txt {
  display: inline-block;
  font-size: 12px;
  font-size: 0.75rem;
  color: var(--color-font);
}
@media screen and (min-width: 960px) {
  .l-top-mv__important__list__item .-txt {
    font-size: 16px;
    font-size: 1rem;
  }
}
.l-top-mv__important__list__item a.-txt {
  text-decoration: underline;
}
@media screen and (min-width: 960px) {
  .l-top-mv__important__list__item a.-txt:hover {
    text-decoration: none;
  }
}
@media screen and (min-width: 768px) {
  .l-top-mv__banner {
    padding: 0 60px;
  }
}
@media screen and (min-width: 960px) {
  .l-top-mv__banner {
    padding: 0 calc(var(--sidePadding) - 7px);
  }
}
.l-top-mv__banner__list__item {
  padding: 0 5px;
}
@media screen and (min-width: 768px) {
  .l-top-mv__banner__list__item {
    padding: 0 7px;
  }
}
@media screen and (min-width: 960px) {
  .l-top-mv__banner__list__item a {
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }
  .l-top-mv__banner__list__item a:hover {
    opacity: 0.7;
  }
}
.l-top-mv__banner__list__item img {
  width: 100%;
  opacity: 0;
}
.l-top-mv__banner__list .slick-slide img {
  opacity: 1;
}
.l-top-mv__banner__list .slick-prev, .l-top-mv__banner__list .slick-next {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 35px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 9999px;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.2);
  z-index: 1;
}
.l-top-mv__banner__list .slick-prev::before, .l-top-mv__banner__list .slick-next::before {
  content: none;
}
.l-top-mv__banner__list .slick-prev .c-icon-svg, .l-top-mv__banner__list .slick-next .c-icon-svg {
  color: #fff;
  width: 11px;
  height: 11px;
  padding-left: 2px;
}
@media screen and (min-width: 960px) {
  .l-top-mv__banner__list .slick-prev, .l-top-mv__banner__list .slick-next {
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
  .l-top-mv__banner__list .slick-prev:hover, .l-top-mv__banner__list .slick-next:hover {
    background: rgba(255, 255, 255, 0.4);
  }
}
.l-top-mv__banner__list .slick-prev {
  left: -35px;
}
.l-top-mv__banner__list .slick-prev .c-icon-svg {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.l-top-mv__banner__list .slick-next {
  right: -35px;
}
.l-top-mv__banner__list__dots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(8px, 8px));
  gap: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 30px;
  position: absolute;
  bottom: -30px;
  left: 0;
}
@media screen and (min-width: 768px) {
  .l-top-mv__banner__list__dots {
    height: 40px;
    bottom: -40px;
  }
}
.l-top-mv__banner__list__dots li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 8px;
  height: 8px;
}
.l-top-mv__banner__list__dots li:only-child {
  display: none;
}
.l-top-mv__banner__list__dots li button {
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
  border-radius: 9999px;
  font-size: 0.1px;
}
@media screen and (min-width: 960px) {
  .l-top-mv__banner__list__dots li button {
    cursor: pointer;
  }
  .l-top-mv__banner__list__dots li button:hover {
    background: #fff;
  }
}
.l-top-mv__banner__list__dots li.slick-active button {
  background: #fff;
}
@media screen and (min-width: 768px) {
  .l-top-mv__banner .slick-slider {
    margin-bottom: 70px;
  }
}
.l-top-mv__linkArea {
  padding: 10px 15px 50px;
}
@media screen and (min-width: 768px) {
  .l-top-mv__linkArea {
    --slidePadding: 15px;
    padding: 0 var(--sidePadding) 110px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas: "switch noise" "sub sub";
    gap: 20px;
  }
}
@media screen and (min-width: 768px) and (min-width: 960px) {
  .l-top-mv__linkArea {
    grid-template-columns: minmax(0, 1fr) 25%;
  }
}
@media screen and (min-width: 768px) {
  .l-top-mv__linkArea .-switch {
    grid-area: switch;
  }
  .l-top-mv__linkArea .-noise {
    grid-area: noise;
  }
  .l-top-mv__linkArea .l-top-mv__linkArea__box__sub {
    grid-area: sub;
  }
}
@media screen and (min-width: 960px) {
  .l-top-mv__linkArea {
    max-width: calc(var(--maxWidth) + var(--sidePadding) * 2);
    margin: 0 auto;
  }
}
.l-top-mv__linkArea__box {
  background: #fff;
  border-radius: 10px;
}
.l-top-mv__linkArea__box.-switch {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  grid-template-columns: minmax(0, 1fr);
  position: relative;
  background: none;
}
.l-top-mv__linkArea__box.-switch .-ttlBox {
  background: var(--color-switching);
}
.l-top-mv__linkArea__box.-switch .l-top-mv__linkArea__box__list li a {
  height: 100%;
}
@media screen and (max-width: 767px) {
  .l-top-mv__linkArea__box.-switch .l-top-mv__linkArea__box__list li a {
    display: grid;
    grid-template-columns: 30% 1fr;
    gap: 10px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 10px 20px;
  }
}
@media screen and (min-width: 768px) {
  .l-top-mv__linkArea__box.-switch .l-top-mv__linkArea__box__list.-item3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
.l-top-mv__linkArea__box.-switch .l-top-mv__linkArea__box__list.-item2 {
  display: grid;
  grid-template-rows: repeat(2, 50%);
}
@media screen and (min-width: 768px) {
  .l-top-mv__linkArea__box.-switch .l-top-mv__linkArea__box__list.-item2 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
  }
}
.l-top-mv__linkArea__box.-switch .l-top-mv__linkArea__box__list.-item6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 50%);
}
@media screen and (min-width: 768px) {
  .l-top-mv__linkArea__box.-switch .l-top-mv__linkArea__box__list.-item6 {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 1fr;
  }
}
.l-top-mv__linkArea__box.-switch .l-top-mv__linkArea__box__list.-item6 a {
  grid-template-columns: 1fr;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 0;
  padding: 10px 5px 5px;
}
@media screen and (min-width: 960px) {
  .l-top-mv__linkArea__box.-switch .l-top-mv__linkArea__box__list.-item6 a {
    padding: 20px 5px 5px;
  }
}
@media screen and (min-width: 960px) {
  .l-top-mv__linkArea__box.-switch .l-top-mv__linkArea__box__list.-item6 a .-ttl span {
    min-height: 35px;
  }
}
.l-top-mv__linkArea__box.-switch .l-top-mv__linkArea__box__list.-item6 li {
  -webkit-box-align: start;
  -webkit-align-items: start;
      -ms-flex-align: start;
          align-items: start;
}
.l-top-mv__linkArea__box.-switch .l-top-mv__linkArea__box__list.-item6 li + li {
  border-top: none;
}
@media screen and (max-width: 767px) {
  .l-top-mv__linkArea__box.-switch .l-top-mv__linkArea__box__list.-item6 li:not(:nth-child(-n+3)) {
    border-top: 1px solid var(--color-line);
  }
  .l-top-mv__linkArea__box.-switch .l-top-mv__linkArea__box__list.-item6 li:not(:nth-child(3n+1)) {
    border-left: 1px solid var(--color-line);
  }
}
.l-top-mv__linkArea__box.-noise {
  margin: 20px 0 0;
}
@media screen and (min-width: 768px) {
  .l-top-mv__linkArea__box.-noise {
    margin: 0;
    display: grid;
    grid-template-rows: auto 1fr;
  }
}
.l-top-mv__linkArea__box.-noise .-ttlBox {
  background: var(--color-noise);
}
.l-top-mv__linkArea__box.-noise .l-top-mv__linkArea__box__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.l-top-mv__linkArea__box.-noise .l-top-mv__linkArea__box__list li + li {
  border-top: 0;
  border-left: 1px solid var(--color-line);
}
.l-top-mv__linkArea__box.-noise .l-top-mv__linkArea__box__list li a {
  height: 100%;
}
.l-top-mv__linkArea__box.-noise .l-top-mv__linkArea__box__list li a .-img {
  height: 55px;
}
@media screen and (min-width: 768px) {
  .l-top-mv__linkArea__box.-noise .l-top-mv__linkArea__box__list li a .-img {
    height: auto;
  }
}
.l-top-mv__linkArea__box.-noise .l-top-mv__linkArea__box__list li a .-img img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
}
@media screen and (min-width: 768px) {
  .l-top-mv__linkArea__box.-noise .l-top-mv__linkArea__box__list li a .-img img {
    width: 100%;
  }
}
.l-top-mv__linkArea__box .-ttlBox {
  padding: 6px 10px;
  border-radius: 10px 10px 0 0;
  color: #fff;
}
@media screen and (min-width: 960px) {
  .l-top-mv__linkArea__box .-ttlBox {
    padding: 12px 20px;
  }
}
.l-top-mv__linkArea__box .-ttlBox .-ttl {
  display: grid;
  font-size: 15px;
  font-size: 0.9375rem;
  grid-template-columns: 25px 1fr;
  gap: 6px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: var(--font-b);
}
@media screen and (min-width: 960px) {
  .l-top-mv__linkArea__box .-ttlBox .-ttl {
    grid-template-columns: 35px 1fr;
    gap: 7px;
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.l-top-mv__linkArea__box__list li + li {
  border-top: 1px solid var(--color-line);
}
@media screen and (min-width: 768px) {
  .l-top-mv__linkArea__box__list li + li {
    border-top: none;
    border-left: 1px solid var(--color-line);
  }
}
.l-top-mv__linkArea__box__list li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 20px;
}
@media screen and (min-width: 960px) {
  .l-top-mv__linkArea__box__list li a .-img {
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
  .l-top-mv__linkArea__box__list li a:hover .-img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@media screen and (min-width: 960px) {
  .l-top-mv__linkArea__box__list li a:hover > .c-icon-svg use {
    -webkit-animation: arrowAnime 0.7s forwards;
            animation: arrowAnime 0.7s forwards;
  }
}
.l-top-mv__linkArea__box__list li a .-ttl {
  display: grid;
  grid-template-rows: auto auto;
  gap: 5px;
  justify-items: center;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  font-size: 11px;
  font-size: 0.6875rem;
  color: var(--color-font);
  font-weight: var(--font-m);
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 960px) {
  .l-top-mv__linkArea__box__list li a .-ttl {
    font-size: 14px;
    font-size: 0.875rem;
    text-align: center;
  }
}
.l-top-mv__linkArea__box__list li a .-ttl .c-icon-svg {
  width: 16px;
  height: 16px;
  background: var(--color-main);
  color: #fff;
  border-radius: 9999px;
  padding: 4.5px 0 4.5px 2px;
}
.l-top-mv__linkArea__box__list li a .-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-top-mv__linkArea__box__sub {
  margin: 10px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .l-top-mv__linkArea__box__sub {
    margin: 0;
  }
}
@media screen and (min-width: 960px) {
  .l-top-mv__linkArea__box__sub {
    gap: 20px;
  }
}
.l-top-mv__linkArea__box__sub .l-top-mv__linkArea__box {
  position: relative;
}
.l-top-mv__linkArea__box__sub .l-top-mv__linkArea__box:nth-child(1) a .-ttl {
  background: #ffe139;
  border-radius: 10px 10px 0 0;
}
@media screen and (min-width: 768px) {
  .l-top-mv__linkArea__box__sub .l-top-mv__linkArea__box:nth-child(1) a .-ttl {
    border-radius: 0 10px 10px 0;
    grid-row-gap: 0;
  }
}
@media screen and (min-width: 960px) {
  .l-top-mv__linkArea__box__sub .l-top-mv__linkArea__box:nth-child(1) a .-ttl {
    grid-row-gap: 3px;
  }
}
@media screen and (min-width: 768px) {
  .l-top-mv__linkArea__box__sub .l-top-mv__linkArea__box:nth-child(1) a .-ttl .c-icon-svg {
    margin: 0 0 0 auto;
  }
}
.l-top-mv__linkArea__box__sub .l-top-mv__linkArea__box:nth-child(1) a .-ttl figure {
  max-width: 73px;
}
@media screen and (min-width: 768px) {
  .l-top-mv__linkArea__box__sub .l-top-mv__linkArea__box:nth-child(1) a .-ttl figure {
    margin: 0 auto 0 0;
    max-width: 120px;
    padding-bottom: 5px;
  }
}
.l-top-mv__linkArea__box__sub .l-top-mv__linkArea__box:nth-child(1) a .-ttl .-subTtl {
  font-size: 10px;
  font-size: 0.625rem;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .l-top-mv__linkArea__box__sub .l-top-mv__linkArea__box:nth-child(1) a .-ttl .-subTtl {
    grid-column: 1/3;
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.l-top-mv__linkArea__box__sub .l-top-mv__linkArea__box:nth-child(2) a .-img, .l-top-mv__linkArea__box__sub .l-top-mv__linkArea__box:nth-child(3) a .-img {
  padding: 0;
  height: 55px;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .l-top-mv__linkArea__box__sub .l-top-mv__linkArea__box:nth-child(2) a .-img, .l-top-mv__linkArea__box__sub .l-top-mv__linkArea__box:nth-child(3) a .-img {
    height: 100%;
    width: 100%;
    border-radius: 10px 0 0 10px;
  }
}
.l-top-mv__linkArea__box__sub .l-top-mv__linkArea__box:nth-child(2) a .-img img, .l-top-mv__linkArea__box__sub .l-top-mv__linkArea__box:nth-child(3) a .-img img {
  max-width: none;
  max-height: none;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-top-mv__linkArea__box__sub .l-top-mv__linkArea__box:nth-child(4) {
  background: #c7f3f6;
}
.l-top-mv__linkArea__box__sub .l-top-mv__linkArea__box:nth-child(4) a .-img {
  background: #fff;
  border-radius: 0 0 10px 10px;
  height: 55px;
}
@media screen and (min-width: 768px) {
  .l-top-mv__linkArea__box__sub .l-top-mv__linkArea__box:nth-child(4) a .-img {
    height: auto;
  }
}
.l-top-mv__linkArea__box__sub .l-top-mv__linkArea__box:nth-child(4) a .-img img {
  max-width: 177px;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .l-top-mv__linkArea__box__sub .l-top-mv__linkArea__box:nth-child(4) a .-img img {
    height: auto;
  }
}
@media screen and (min-width: 768px) {
  .l-top-mv__linkArea__box__sub .l-top-mv__linkArea__box:nth-child(4) a .-img {
    border-radius: 10px 0 0 10px;
  }
}
@media screen and (min-width: 768px) {
  .l-top-mv__linkArea__box__sub .l-top-mv__linkArea__box:nth-child(4) a .-ttl p {
    text-align: left;
  }
}
.l-top-mv__linkArea__box__sub .l-top-mv__linkArea__box a {
  display: block;
  padding-bottom: 55px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-top-mv__linkArea__box__sub .l-top-mv__linkArea__box a {
    display: grid;
    grid-template-columns: 45% 1fr;
    height: 100px;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 960px) {
  .l-top-mv__linkArea__box__sub .l-top-mv__linkArea__box a:hover > .c-icon-svg use {
    -webkit-animation: arrowAnime 0.7s forwards;
            animation: arrowAnime 0.7s forwards;
  }
}
@media screen and (min-width: 960px) {
  .l-top-mv__linkArea__box__sub .l-top-mv__linkArea__box a .-img {
    overflow: hidden;
  }
  .l-top-mv__linkArea__box__sub .l-top-mv__linkArea__box a .-img img {
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
  .l-top-mv__linkArea__box__sub .l-top-mv__linkArea__box a:hover .-img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.l-top-mv__linkArea__box__sub .l-top-mv__linkArea__box a .-img {
  max-width: none;
  width: 100%;
  padding: 10px 10px;
  position: absolute;
  bottom: 0;
  left: 0;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .l-top-mv__linkArea__box__sub .l-top-mv__linkArea__box a .-img {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 15px;
    position: relative;
  }
}
@media screen and (min-width: 960px) {
  .l-top-mv__linkArea__box__sub .l-top-mv__linkArea__box a .-img {
    padding: 0 35px;
  }
}
.l-top-mv__linkArea__box__sub .l-top-mv__linkArea__box a .-img img {
  max-height: 100%;
  max-width: 100px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-top-mv__linkArea__box__sub .l-top-mv__linkArea__box a .-img img {
    width: 100%;
    max-width: 190px;
  }
}
.l-top-mv__linkArea__box__sub .l-top-mv__linkArea__box a .-ttl {
  display: grid;
  grid-template-rows: auto auto;
  gap: 5px;
  justify-items: center;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  padding: 15px 20px;
  height: 100%;
  font-size: 11px;
  font-size: 0.6875rem;
  font-weight: var(--font-m);
  color: var(--color-font);
}
@media screen and (min-width: 768px) {
  .l-top-mv__linkArea__box__sub .l-top-mv__linkArea__box a .-ttl {
    grid-template-columns: auto auto;
    grid-template-rows: auto;
    gap: 10px;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0;
  }
  .l-top-mv__linkArea__box__sub .l-top-mv__linkArea__box a .-ttl p {
    padding-top: 3px;
  }
}
@media screen and (min-width: 960px) {
  .l-top-mv__linkArea__box__sub .l-top-mv__linkArea__box a .-ttl {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.l-top-mv__linkArea__box__sub .l-top-mv__linkArea__box a .-ttl .c-icon-svg {
  width: 16px;
  height: 16px;
  background: var(--color-main);
  color: #fff;
  border-radius: 9999px;
  padding: 4.5px 0 4.5px 2px;
}
.l-top-mv__linkArea__specialLink {
  margin-top: 50px;
  background: #fff;
  border-radius: 10px;
  padding: 15px 20px;
}
@media screen and (min-width: 768px) {
  .l-top-mv__linkArea__specialLink {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: auto auto;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    padding: 20px;
  }
}
@media screen and (min-width: 960px) {
  .l-top-mv__linkArea__specialLink {
    grid-template-columns: 210px auto;
  }
}
@media screen and (min-width: 1200px) {
  .l-top-mv__linkArea__specialLink {
    grid-template-columns: 250px auto;
  }
}
.l-top-mv__linkArea__specialLink .-ttl {
  font-family: var(--font-en);
  color: var(--color-main);
  font-weight: var(--font-b);
  font-size: 16px;
  font-size: 1rem;
  text-align: center;
  padding-bottom: 15px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-top-mv__linkArea__specialLink .-ttl {
    padding-bottom: 0;
    padding: 0 40px 0 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 18px;
    font-size: 1.125rem;
  }
}
.l-top-mv__linkArea__specialLink .-ttl::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  background: var(--color-line);
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .l-top-mv__linkArea__specialLink .-ttl::after {
    width: 1px;
    height: 100%;
    top: 50%;
    left: 100%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.l-top-mv__linkArea__specialLink .-linkList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 20px 40px;
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  .l-top-mv__linkArea__specialLink .-linkList {
    margin-top: 0;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 0 0 0 40px;
  }
}
@media screen and (min-width: 1200px) {
  .l-top-mv__linkArea__specialLink .-linkList {
    gap: 20px 70px;
    padding-left: 70px;
  }
}
.l-top-mv__linkArea__specialLink .-linkList .-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.l-top-mv__linkArea__specialLink .-linkList .-item a {
  display: inline-grid;
  grid-template-columns: auto auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.l-top-mv__linkArea__specialLink .-linkList .-item a .c-icon-svg {
  width: 16px;
  height: 16px;
  background: var(--color-main);
  color: #fff;
  border-radius: 9999px;
  padding: 4.5px 0 4.5px 2px;
}
.l-top-mv__linkArea__specialLink .-linkList .-item a .-txtBox {
  color: var(--color-font);
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: var(--font-m);
  display: grid;
  grid-template-rows: auto auto;
  gap: 5px;
}
@media screen and (min-width: 768px) {
  .l-top-mv__linkArea__specialLink .-linkList .-item a .-txtBox {
    grid-template-columns: auto auto;
    grid-template-rows: auto;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    line-height: var(--lhS);
  }
}
@media screen and (min-width: 960px) {
  .l-top-mv__linkArea__specialLink .-linkList .-item a:hover .c-icon-svg use {
    -webkit-animation: arrowAnime 0.7s forwards;
            animation: arrowAnime 0.7s forwards;
  }
}
.l-top-mv__linkArea__specialLink .-linkList .-item.-coselsync a figure {
  max-width: 140px;
}
.l-top-mv__linkArea__specialLink .-linkList .-item.-liteon a figure {
  max-width: 93px;
}
@media screen and (min-width: 1060px) {
  .l-top-mv {
    --btnWidth: 140px;
  }
}
.l-top-mv .js-switch-slide {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-areas: "slide slide" "prev next";
  gap: 10px 13px;
}
@media screen and (min-width: 960px) {
  .l-top-mv .js-switch-slide {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: none;
    gap: 0;
  }
}
.l-top-mv .js-switch-slide .slick-list {
  grid-area: slide;
  background: #fff;
  border-radius: 0 0 10px 10px;
}
.l-top-mv .js-switch-slide .slick-track {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.l-top-mv .js-switch-slide .slick-slide {
  height: auto;
}
.l-top-mv .l-swicthSlide__btn {
  display: grid;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: #fff;
  border-radius: 9999px;
  padding: 10px 15px 8px;
  border: 1px solid #fff;
  background: rgba(255, 255, 255, 0.15);
  -webkit-box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 2px 2px 10px 0 rgba(0, 0, 0, 0.2);
  font-size: 11px;
  font-size: 0.6875rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  font-weight: var(--font-b);
  text-align: center;
}
.l-top-mv .l-swicthSlide__btn.-prev {
  grid-area: prev;
  grid-template-columns: auto 1fr;
}
.l-top-mv .l-swicthSlide__btn.-next {
  grid-area: next;
  grid-template-columns: 1fr auto;
}
@media screen and (min-width: 960px) {
  .l-top-mv .l-swicthSlide__btn {
    background: none;
    font-size: 14px;
    font-size: 0.875rem;
    -webkit-box-shadow: none;
            box-shadow: none;
    text-shadow: none;
    width: var(--btnWidth);
    padding: 10px 5px 8px;
    position: absolute;
    bottom: calc(100% + 10px);
    right: 10px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }
  .l-top-mv .l-swicthSlide__btn.-prev {
    right: calc(var(--btnWidth) + 20px);
  }
  .l-top-mv .l-swicthSlide__btn:hover {
    background: rgba(255, 255, 255, 0.2);
  }
}
@media screen and (min-width: 1060px) {
  .l-top-mv .l-swicthSlide__btn {
    padding: 10px 15px 8px;
  }
}
.l-top-mv .l-swicthSlide__btn .c-icon-svg {
  width: 10px;
  height: 10px;
}
@media screen and (min-width: 960px) {
  .l-top-mv .l-swicthSlide__btn .c-icon-svg {
    width: 13px;
    height: 13px;
  }
}
.l-top-mv .l-swicthSlide__btn:first-child .c-icon-svg {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

.l-top-about {
  --bgHeight: 100px;
  padding: 50px var(--sidePadding) var(--bgHeight);
  position: relative;
  background: #fff;
}
@media screen and (min-width: 768px) {
  .l-top-about {
    --bgHeight: 150px;
  }
}
@media screen and (min-width: 960px) {
  .l-top-about {
    --bgHeight: 250px;
  }
}
@media screen and (min-width: 768px) {
  .l-top-about {
    padding: 90px var(--sidePadding) calc(var(--bgHeight) + 80px);
    overflow: hidden;
  }
}
.l-top-about > * {
  position: relative;
  z-index: 1;
}
.l-top-about__bg {
  width: 100%;
  height: calc(var(--bgHeight) + 30px);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .l-top-about__bg {
    height: var(--bgHeight);
  }
}
.l-top-about__bg figure {
  top: var(--header);
  width: 100%;
  max-height: calc(100vh - var(--header));
  height: 200%;
  position: absolute;
  top: 40%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.l-top-about__bg figure img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-top-about__bg::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background: #D1E6FB;
  mix-blend-mode: multiply;
  -webkit-backdrop-filter: blur(1.5px);
          backdrop-filter: blur(1.5px);
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .l-top-about__bg::after {
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }
}
@media screen and (min-width: 960px) {
  .l-top-about__inner {
    max-width: var(--maxWidth2);
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas: "ttl txt" "link txt" "movie btn";
    gap: 0 120px;
  }
}
.l-top-about .c-ttl-1 {
  color: var(--color-main);
}
.l-top-about .c-ttl-1 .-main {
  font-size: 24px;
  font-size: 1.5rem;
}
@media screen and (min-width: 960px) {
  .l-top-about .c-ttl-1 .-main {
    font-size: 32px;
    font-size: 2rem;
    grid-area: ttl;
  }
}
.l-top-about .-txt {
  margin-top: 20px;
}
@media screen and (min-width: 960px) {
  .l-top-about .-txt {
    grid-area: txt;
    line-height: var(--lhL);
  }
}
.l-top-about .c-link-1 {
  margin-top: 30px;
}
@media screen and (min-width: 960px) {
  .l-top-about .c-link-1 {
    grid-area: link;
  }
}
.l-top-about .c-btn-1 {
  margin-top: 30px;
  text-shadow: none;
}
@media screen and (min-width: 960px) {
  .l-top-about .c-btn-1 {
    grid-area: btn;
    margin-top: 0;
    text-align: left;
  }
}
.l-top-about .-movie {
  margin-top: 30px;
}
@media screen and (min-width: 960px) {
  .l-top-about .-movie {
    grid-area: movie;
  }
}
.l-top-about .-movie a {
  display: block;
  max-width: 252px;
  border-radius: 8px;
  margin: 0 auto;
  overflow: hidden;
}
@media screen and (min-width: 960px) {
  .l-top-about .-movie a {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .l-top-about .-movie a:hover {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
.l-top-about .-movie img {
  width: 100%;
}

.l-top-product, .l-top-company, .l-top-ir, .l-top-sustaina {
  padding: 50px 0 0;
}
.l-top-product .-img img, .l-top-company .-img img, .l-top-ir .-img img, .l-top-sustaina .-img img {
  width: 100%;
}
.l-top-product .-txtBox .c-ttl-1 + *, .l-top-company .-txtBox .c-ttl-1 + *, .l-top-ir .-txtBox .c-ttl-1 + *, .l-top-sustaina .-txtBox .c-ttl-1 + * {
  margin-top: 15px;
}
.l-top-product .-txtBox .-lead, .l-top-company .-txtBox .-lead, .l-top-ir .-txtBox .-lead, .l-top-sustaina .-txtBox .-lead {
  font-size: 16px;
  font-size: 1rem;
  font-weight: var(--font-m);
}
@media screen and (min-width: 768px) {
  .l-top-product .-txtBox .-lead, .l-top-company .-txtBox .-lead, .l-top-ir .-txtBox .-lead, .l-top-sustaina .-txtBox .-lead {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.l-top-product .-txtBox .-lead + *, .l-top-company .-txtBox .-lead + *, .l-top-ir .-txtBox .-lead + *, .l-top-sustaina .-txtBox .-lead + * {
  margin-top: 6px;
}
.l-top-product .-txtBox .-txt, .l-top-company .-txtBox .-txt, .l-top-ir .-txtBox .-txt, .l-top-sustaina .-txtBox .-txt {
  line-height: var(--lhL);
}
.l-top-product .-txtBox .-linkList, .l-top-company .-txtBox .-linkList, .l-top-ir .-txtBox .-linkList, .l-top-sustaina .-txtBox .-linkList {
  margin-top: 30px;
  display: inline-grid;
  grid-template-columns: repeat(2, auto);
  gap: 13px 40px;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
      -ms-flex-pack: start;
          justify-content: start;
}
.l-top-product .-txtBox .-linkList + .-linkList, .l-top-company .-txtBox .-linkList + .-linkList, .l-top-ir .-txtBox .-linkList + .-linkList, .l-top-sustaina .-txtBox .-linkList + .-linkList {
  margin-top: 13px;
}
.l-top-product .-txtBox .-linkList li, .l-top-company .-txtBox .-linkList li, .l-top-ir .-txtBox .-linkList li, .l-top-sustaina .-txtBox .-linkList li {
  position: relative;
}
.l-top-product .-txtBox .-linkList li:nth-child(2n)::before, .l-top-company .-txtBox .-linkList li:nth-child(2n)::before, .l-top-ir .-txtBox .-linkList li:nth-child(2n)::before, .l-top-sustaina .-txtBox .-linkList li:nth-child(2n)::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 17px;
  background: var(--color-line);
  position: absolute;
  top: 50%;
  left: -20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.l-top-product .-txtBox .-linkList li .c-link-1, .l-top-company .-txtBox .-linkList li .c-link-1, .l-top-ir .-txtBox .-linkList li .c-link-1, .l-top-sustaina .-txtBox .-linkList li .c-link-1 {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.l-top-product .-txtBox .c-btn-1, .l-top-company .-txtBox .c-btn-1, .l-top-ir .-txtBox .c-btn-1, .l-top-sustaina .-txtBox .c-btn-1 {
  margin-top: 30px;
}

.l-top-product, .l-top-company {
  background: #fff;
}
.l-top-product .-txtBox, .l-top-company .-txtBox {
  margin-top: 30px;
  padding: 0 20px;
}
.l-top-product .-txtBox .c-ttl-1, .l-top-company .-txtBox .c-ttl-1 {
  color: var(--color-main);
}
@media screen and (min-width: 768px) {
  .l-top-product .-txtBox .c-ttl-1 + *, .l-top-company .-txtBox .c-ttl-1 + * {
    margin-top: 40px;
  }
}
@media screen and (min-width: 768px) {
  .l-top-product__inner, .l-top-company__inner {
    display: grid;
    gap: 30px;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .l-top-product .c-btn-1, .l-top-company .c-btn-1 {
    text-align: left;
  }
}
@media screen and (min-width: 960px) {
  .l-top-product .-img, .l-top-company .-img {
    max-width: 765px;
  }
  .l-top-product .-txtBox, .l-top-company .-txtBox {
    padding: 0;
    max-width: 420px;
  }
  .l-top-product__inner, .l-top-company__inner {
    gap: 60px;
  }
}

@media screen and (min-width: 768px) {
  .l-top-product {
    padding-top: 100px;
  }
  .l-top-product__inner {
    grid-template-columns: 50% 1fr;
  }
  .l-top-product__inner .-img {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  .l-top-product__inner .-txtBox {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media screen and (min-width: 960px) {
  .l-top-product__inner {
    grid-template-columns: 45% 1fr;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .l-top-product .-img {
    margin: 0 auto 0 0;
  }
  .l-top-product .-txtBox {
    margin: 0 0 0 auto;
  }
}

.l-top-company {
  padding-bottom: 55px;
}
@media screen and (min-width: 768px) {
  .l-top-company {
    padding-bottom: 100px;
  }
  .l-top-company__inner {
    grid-template-columns: 1fr 50%;
  }
}
@media screen and (min-width: 960px) {
  .l-top-company {
    padding-top: 100px;
  }
  .l-top-company__inner {
    grid-template-columns: 1fr 45%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .l-top-company .-img {
    margin: 0 0 0 auto;
  }
  .l-top-company .-txtBox {
    margin: 0 auto 0 0;
  }
}

@media screen and (min-width: 768px) {
  .l-top-gridOuter {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

.l-top-ir, .l-top-sustaina {
  padding: 60px 20px;
  background: no-repeat center center/cover;
  color: #fff;
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 768px) {
  .l-top-ir, .l-top-sustaina {
    padding: 80px var(--sidePadding);
  }
}
@media screen and (min-width: 768px) {
  .l-top-ir .-txtBox, .l-top-sustaina .-txtBox {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
  }
}
@media screen and (min-width: 960px) {
  .l-top-ir .-txtBox, .l-top-sustaina .-txtBox {
    max-width: 520px;
  }
}
@media screen and (min-width: 768px) {
  .l-top-ir .c-ttl-1 + *, .l-top-sustaina .c-ttl-1 + * {
    margin-top: 20px !important;
  }
}
.l-top-ir .c-ttl-1 .-main, .l-top-sustaina .c-ttl-1 .-main {
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .l-top-ir .c-ttl-1 .-main, .l-top-sustaina .c-ttl-1 .-main {
    font-size: 26px;
    font-size: 1.625rem;
  }
}
@media screen and (min-width: 768px) {
  .l-top-ir .-linkList:last-of-type, .l-top-sustaina .-linkList:last-of-type {
    margin-bottom: 30px;
  }
}
.l-top-ir .c-btn-1, .l-top-sustaina .c-btn-1 {
  text-shadow: none;
}
@media screen and (min-width: 768px) {
  .l-top-ir .c-btn-1, .l-top-sustaina .c-btn-1 {
    margin-top: auto !important;
  }
}
@media screen and (min-width: 960px) {
  .l-top-ir .c-btn-1, .l-top-sustaina .c-btn-1 {
    text-align: left;
  }
}

.l-top-ir {
  background-image: url(/images/bg-ir.webp);
}
@media screen and (min-width: 960px) {
  .l-top-ir .-txtBox {
    margin: 0 0 0 auto;
    max-width: 420px;
  }
}

.l-top-sustaina {
  background-image: url(/images/bg-sustaina.webp);
}
@media screen and (min-width: 960px) {
  .l-top-sustaina .-txtBox {
    margin: 0 auto 0 0;
  }
}
@media screen and (min-width: 960px) {
  .l-top-sustaina .-txtBox .-linkList.-col3 {
    grid-template-columns: repeat(3, auto);
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .l-top-sustaina .-txtBox .-linkList.-col3 li:nth-child(3)::before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 17px;
    background: var(--color-line);
    position: absolute;
    top: 50%;
    left: -20px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.l-top-grayOuter {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  background: #EEEEEE;
  padding: 40px 20px;
}
@media screen and (min-width: 768px) {
  .l-top-grayOuter {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    padding: 120px var(--sidePadding);
  }
}
@media screen and (min-width: 960px) {
  .l-top-grayOuter {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    grid-template-columns: repeat(2, minmax(0, 620px));
  }
}

.l-top-contact, .l-top-recruit {
  background: #fff;
  position: relative;
}
.l-top-contact > *, .l-top-recruit > * {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .l-top-contact__inner, .l-top-recruit__inner {
    height: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.l-top-contact .c-ttl-1, .l-top-recruit .c-ttl-1 {
  padding: 40px 0;
  text-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  background: no-repeat center center/cover;
}
@media screen and (min-width: 768px) {
  .l-top-contact .c-ttl-1, .l-top-recruit .c-ttl-1 {
    padding: 60px 0;
  }
}
@media screen and (min-width: 960px) {
  .l-top-contact .c-ttl-1, .l-top-recruit .c-ttl-1 {
    padding: 80px 0 0;
    background: none;
    color: var(--color-main);
    text-shadow: none;
  }
}
.l-top-contact .c-ttl-1 .-main, .l-top-recruit .c-ttl-1 .-main {
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .l-top-contact .c-ttl-1 .-main, .l-top-recruit .c-ttl-1 .-main {
    font-size: 26px;
    font-size: 1.625rem;
  }
}
.l-top-contact .-txt, .l-top-recruit .-txt {
  margin: 20px 0 40px;
  padding: 0 20px;
  line-height: var(--lhL);
}
@media screen and (min-width: 768px) {
  .l-top-contact .-txt, .l-top-recruit .-txt {
    margin-top: 40px;
    padding: 0 40px;
  }
}
@media screen and (min-width: 960px) {
  .l-top-contact .-txt, .l-top-recruit .-txt {
    text-align: center;
    margin-top: 30px;
    padding: 0;
  }
}
.l-top-contact .c-btn-1, .l-top-recruit .c-btn-1 {
  margin: 20px 0 40px;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .l-top-contact .c-btn-1, .l-top-recruit .c-btn-1 {
    margin: auto 0 50px;
  }
}
@media screen and (min-width: 960px) {
  .l-top-contact .c-btn-1, .l-top-recruit .c-btn-1 {
    margin: auto 0 80px;
  }
}
@media screen and (min-width: 960px) {
  .l-top-contact, .l-top-recruit {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .l-top-contact::before, .l-top-recruit::before {
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    background: no-repeat center center/cover;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
  .l-top-contact .c-ttl-1 p, .l-top-recruit .c-ttl-1 p {
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }
  .l-top-contact .c-btn-1 a, .l-top-recruit .c-btn-1 a {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .l-top-contact.-hover, .l-top-recruit.-hover {
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
    color: #fff;
  }
  .l-top-contact.-hover::before, .l-top-recruit.-hover::before {
    opacity: 1;
  }
  .l-top-contact.-hover .c-ttl-1 p, .l-top-recruit.-hover .c-ttl-1 p {
    color: #fff;
  }
  .l-top-contact.-hover .c-btn-1 a, .l-top-recruit.-hover .c-btn-1 a {
    background: #fff;
    color: var(--color-main);
    text-shadow: none;
  }
}

.l-top-contact .c-ttl-1 {
  background-image: url(/images/bg-contact.webp);
}
@media screen and (min-width: 960px) {
  .l-top-contact .c-ttl-1 {
    background-image: none;
  }
}
@media screen and (min-width: 960px) {
  .l-top-contact::before {
    background-image: url(/images/bg-contact.webp);
  }
}

.l-top-recruit .c-ttl-1 {
  background-image: url(/images/bg-recruit.webp);
}
@media screen and (min-width: 960px) {
  .l-top-recruit .c-ttl-1 {
    background-image: none;
  }
}
.l-top-recruit .c-btn-1 a .c-icon-svg {
  width: 17px;
  height: 17px;
}
@media screen and (min-width: 960px) {
  .l-top-recruit::before {
    background-image: url(/images/bg-recruit.webp);
  }
}

@media screen and (min-width: 768px) {
  .l-news {
    padding: 110px var(--sidePadding) 0;
  }
}