@charset "UTF-8";
/* =========================================================
colors
========================================================= */
/* ===== common.scss ===== */
/*
    変数
*/
/* font */
/* color */
/* switching */
/*
    共通style
*/
/* -- btn --*/
/* -- crm -- */
/* -- 中央配置 -- */
/* -- 画像をトリミング -- */
/* -- アニメーション -- */
/* -- 'inview' フェードプラグイン -- */
@import url("https://fonts.googleapis.com/css?family=Roboto+Condensed:700&display=swap");
.js {
  /* フェードアップ */
}
.js-fadeup {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, transform 0.8s;
  transition: opacity 0.8s, transform 0.8s, -webkit-transform 0.8s;
}
.js-fadeup.on {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

@-webkit-keyframes btn_hover {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes btn_hover {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
/* =========================================================
body
========================================================= */
html {
  font-size: 62.5%;
  letter-spacing: 0.03em;
  line-height: 1.3rem;
}

body {
  font: 14px/1.5 "dnp-shuei-gothic-kin-std", sans-serif;
  color: #000;
  background: #FFF;
  -webkit-overflow-scrolling: touch;
}

a {
  color: #000;
  text-decoration: none;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
@media screen and (min-width: 901px) {
  a:hover {
    opacity: 0.6;
  }
}

img {
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 900px) {
  img {
    max-width: none;
    width: 100%;
  }
}

/* -- hide -- */
@media screen and (min-width: 901px) {
  .hide-pc {
    display: none !important;
  }
}
@media screen and (max-width: 900px) {
  .hide-sp {
    display: none !important;
  }
}

/* -- inner -- */
.inner {
  margin: 0 27px;
  padding: 0 82px;
}
@media screen and (max-width: 900px) {
  .inner {
    margin: 0;
    padding: 0 34px;
  }
}

/* -- h2 -- */
h2 {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 50px;
  line-height: 1.36;
  letter-spacing: 0.04em;
  margin-left: -82px;
}
@media screen and (max-width: 900px) {
  h2 {
    font-size: 32px;
    line-height: 1.25;
    margin: 0 -14px;
  }
}

/* -- btn -- */
.btn {
  margin: 31px 0 0 auto;
  min-width: 157px;
}
.btn a {
  font-family: "Outfit", "dnp-shuei-gothic-kin-std", sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.04em;
  display: block;
  position: relative;
  padding: 0 40px 10px 0;
}
.btn a::before {
  position: absolute;
  top: 6px;
  right: 11px;
  width: 16px;
  height: 18px;
  background-image: url(../images/arrow.svg);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100% auto;
  content: "";
}
.btn a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #000;
  content: "";
}
.btn a:hover {
  opacity: 1;
}
.btn a:hover::after {
  -webkit-animation: btn_hover 0.3s;
          animation: btn_hover 0.3s;
}
@media screen and (max-width: 900px) {
  .btn {
    margin-top: 21px;
  }
}

/* -- modal -- */
.modal {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  display: none;
  position: fixed;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
}
.modal-outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}
.modal-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  z-index: 100;
  background: #000;
}
.modal-close a {
  display: block;
  position: relative;
  width: 100%;
  padding-top: 100%;
}
.modal-close a span {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 20px;
  height: 2px;
  background: #FFF;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.modal-close a span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.modal-inner {
  position: relative;
  overflow-y: scroll;
  margin: 0 auto;
  padding: 73px 82px 81px;
  width: 100%;
  max-width: 984px;
  max-height: 100%;
  background: #FFF;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.modal-inner::-webkit-scrollbar {
  display: none;
}
.modal-inner-cnt {
  zoom: 1;
}
.modal-inner-cnt::after {
  content: "";
  display: block;
  clear: both;
}
.modal-img {
  float: left;
  margin: 7px 40px 8px 0;
}
.modal-txt {
  line-height: 2;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 900px) {
  .modal {
    padding: 56px 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .modal-outer {
    display: block;
  }
  .modal-close {
    position: fixed;
    top: auto;
    bottom: 56px;
    right: 20px;
    left: 20px;
    width: auto;
    height: 40px;
  }
  .modal-close a {
    padding-top: 40px;
  }
  .modal-close a span {
    width: 18px;
  }
  .modal-inner {
    padding: 0 0 40px;
    height: 100%;
  }
  .modal-img {
    float: none;
    margin: 0;
  }
  .modal-txt {
    margin: 23px 30px;
  }
}

@media print {
  html, body {
    _zoom: 70% !important;
  }
}
main {
  display: block; /*IE*/
}

/* =========================================================
layout
========================================================= */
/* =========================================================
colors
========================================================= */
/* ===== common.scss ===== */
/*
    変数
*/
/* font */
/* color */
/* switching */
/*
    共通style
*/
/* -- btn --*/
/* -- crm -- */
/* -- 中央配置 -- */
/* -- 画像をトリミング -- */
/* -- アニメーション -- */
/* -- 'inview' フェードプラグイン -- */
.js {
  /* フェードアップ */
}
.js-fadeup {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, transform 0.8s;
  transition: opacity 0.8s, transform 0.8s, -webkit-transform 0.8s;
}
.js-fadeup.on {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

@keyframes btn_hover {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
/*
    load
*/
.load {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  position: fixed;
  background: #2299C9;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
  z-index: 1000;
}
.load a {
  display: block;
  position: relative;
  height: 100dvh;
  padding-right: 56%;
  -webkit-transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, transform 0.6s;
  transition: opacity 0.6s, transform 0.6s, -webkit-transform 0.6s;
}
.load a:hover {
  opacity: 1;
}
.load-tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 28.5%;
  height: calc(100% - 172px);
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, transform 0.6s;
  transition: opacity 0.6s, transform 0.6s, -webkit-transform 0.6s;
}
.load-tit.js-load {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.load-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  right: 1.45%;
  left: auto;
  width: 56.003%;
  height: 93.3%;
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
.load-img.js-load {
  opacity: 1;
}
.load-img img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: none;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.load-scroll {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  color: #FCFFEA;
  margin-left: 2px;
}
.load-scroll-line {
  display: block;
  margin: 13px auto 0;
  width: 2px;
  height: 60px;
  background: #FCFFEA;
  -webkit-transform: translateX(-1px);
          transform: translateX(-1px);
}
.load-scroll {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, transform 0.6s;
  transition: opacity 0.6s, transform 0.6s, -webkit-transform 0.6s;
}
.load-scroll.js-load {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.load.hide {
  opacity: 0;
  z-index: -1;
}
.load.hide a {
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
}
@media screen and (max-width: 900px) {
  .load a {
    padding: 12.3dvh 0 0 0;
  }
  .load-tit {
    display: block;
    padding-top: 0;
    height: auto;
  }
  .load-tit img {
    width: auto;
    height: 20.2dvh;
  }
  .load-img {
    text-align: center;
    display: block;
    position: static;
    margin: 2.8dvh auto 0;
    width: auto;
    height: auto;
  }
  .load-img img {
    display: inline-block;
    position: static;
    width: auto;
    height: 43.262dvh;
    -o-object-fit: fill;
       object-fit: fill;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .load-scroll {
    font-size: 16px;
    margin: 4.5dvh 0 0;
  }
  .load-scroll-line {
    margin: 0.7dvh auto 0;
    width: 1px;
    height: 5dvh;
  }
}

/*
    contents
*/
.contents {
  padding: 25vh 0 0 328px;
  -webkit-transition: opacity 0.8s;
  transition: opacity 0.8s;
}
.contents.hide {
  opacity: 0;
}
@media screen and (max-width: 900px) {
  .contents {
    padding-left: 0;
  }
}

/* -- nav -- */
.nav {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  position: fixed;
  right: auto;
  padding: 66px 0 26px;
  width: 328px;
  background: #FFF;
}
.nav > * {
  width: 100%;
}
.nav-tit {
  padding: 0 15.2%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.nav-list {
  margin-top: 34px;
  padding: 0 27px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.nav-list li {
  position: relative;
}
.nav-list li:not(:last-child) {
  margin-bottom: 24px;
}
.nav-list li::before {
  position: absolute;
  top: 0;
  left: -10px;
  width: 4px;
  height: 0;
  background: #000;
  content: "";
  -webkit-transition: height 0.2s;
  transition: height 0.2s;
}
.nav-list li.act::before {
  height: calc(100% - 4px);
}
.nav-list li a {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3333333333;
  letter-spacing: 0.04em;
  display: inline-block;
}
.nav-logo {
  margin-top: auto;
  padding: 0 24px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 900px) {
  .nav {
    right: 0;
    overflow-y: scroll;
    padding: 80px 36px 24px 34px;
    width: auto;
    height: 100dvh;
    z-index: 1050;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.6s;
    transition: -webkit-transform 0.6s;
    transition: transform 0.6s;
    transition: transform 0.6s, -webkit-transform 0.6s;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .nav::-webkit-scrollbar {
    display: none;
  }
  .nav.open {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .nav-tit {
    padding: 0 19px;
  }
  .nav-list {
    margin-top: 39px;
    padding: 0;
  }
  .nav-list li {
    position: relative;
  }
  .nav-list li:not(:last-child) {
    margin-bottom: 27px;
  }
  .nav-list li::before {
    display: none;
  }
  .nav-list li:nth-child(1) a {
    max-width: 215px;
  }
  .nav-list li:nth-child(2) a {
    max-width: 306px;
  }
  .nav-list li:nth-child(3) a {
    max-width: 198px;
  }
  .nav-list li:nth-child(4) a {
    max-width: 251px;
  }
  .nav-list li:nth-child(5) a {
    max-width: 243px;
  }
  .nav-list li:nth-child(6) a {
    max-width: 106px;
  }
  .nav-list li a {
    font-size: 20px;
    line-height: 1.4;
    padding-left: 0;
    width: 100%;
  }
  .nav-logo {
    padding: 100px 0 0;
    max-width: 153px;
  }
  .nav-btn {
    position: fixed;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: #000;
    z-index: 1100;
  }
  .nav-btn a {
    display: block;
    position: relative;
    width: 100%;
    padding-top: 100%;
  }
  .nav-btn a span {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: 20px;
    height: 2px;
    background: #FFF;
    -webkit-transition: width 0.6s, -webkit-transform 0.15s;
    transition: width 0.6s, -webkit-transform 0.15s;
    transition: width 0.6s, transform 0.15s;
    transition: width 0.6s, transform 0.15s, -webkit-transform 0.15s;
  }
  .nav-btn a span:nth-child(1) {
    top: 21px;
    bottom: auto;
  }
  .nav-btn a span:nth-child(3) {
    top: auto;
    bottom: 21px;
  }
  .nav-btn.open a span:nth-child(1), .nav-btn.open a span:nth-child(2) {
    top: 0;
    bottom: 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .nav-btn.open a span:nth-child(3) {
    top: 0;
    bottom: 0;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}
@media screen and (min-width: 901px) {
  .nav {
    -webkit-transition: opacity 0.8s;
    transition: opacity 0.8s;
  }
}
@media screen and (max-width: 900px) {
  .nav {
    right: 0;
    overflow-y: scroll;
  }
}

@media screen and (min-width: 901px) {
  main:has(#contents.hide) .nav {
    opacity: 0;
  }
}
/* -- catch -- */
.catch {
  padding-top: 174px;
}
.catch h1 {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 50px;
  line-height: 1.36;
  letter-spacing: 0.04em;
  text-align: center;
}
.catch-day {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 1.1333333333;
  letter-spacing: 0.04em;
  margin-top: 30px;
  text-align: center;
}
.catch-txt {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.875;
  letter-spacing: 0.04em;
  text-align: center;
  margin: 67px auto 0;
  max-width: 745px;
}
@media screen and (max-width: 900px) {
  .catch {
    padding-top: 60px;
  }
  .catch h1 {
    font-size: 40px;
    line-height: 1.25;
  }
  .catch-day {
    font-size: 25px;
    line-height: 1.36;
    margin: 30px auto 0;
    max-width: 255px;
  }
  .catch-txt {
    margin-top: 25px;
    max-width: none;
    text-align: left;
  }
}

/* -- section -- */
.section {
  margin-top: 307px;
}
.section .inner > *:not(:last-child) {
  margin-bottom: 199px;
}
.section-cnt {
  margin-top: 57px;
}
.section-cnt > *:not(.modal) {
  display: grid;
  grid-template-columns: 46% auto;
  grid-template-rows: minmax(50px, auto);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.section-cnt > *:not(.modal):not(:last-child) {
  margin-bottom: 92px;
}
.section-cnt-tit {
  font-weight: 600;
  font-size: 22px;
  line-height: 1.6363636364;
  letter-spacing: 0.04em;
  grid-column-start: 2;
  grid-row-start: 1;
}
.section-cnt-slider {
  grid-row: span 4/span 4;
  grid-column-start: 1;
  grid-row-start: 1;
  margin: 7px 13.306% 0 0;
}
.section-cnt-slider .splide__pagination {
  position: static;
  margin: 20px 0 0;
  padding: 0;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.section-cnt-slider .splide__pagination li {
  position: relative;
  width: 30px;
  height: 4px;
}
.section-cnt-slider .splide__pagination li:not(:last-child) {
  margin-right: 8px;
}
.section-cnt-slider .splide__pagination button {
  display: block;
  margin: 0;
  width: 30px;
  height: 4px;
  background: #C1C1C1;
  border: none;
  border-radius: 0;
}
.section-cnt-slider .splide__pagination button.is-active {
  background: #000;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.section-cnt-table {
  grid-column-start: 2;
  margin-top: 23px;
}
.section-cnt-table th {
  vertical-align: text-top;
  padding-bottom: 20px;
  width: 116px;
}
.section-cnt-table th span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
  background: #EAEAEA;
  width: 90px;
  height: 30px;
}
.section-cnt-table td {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  vertical-align: text-top;
}
.section-cnt-txt {
  grid-column-start: 2;
  grid-row-start: 3;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.04em;
  margin-top: 19px;
}
.section-cnt .btn {
  grid-column-start: 2;
  grid-row-start: 4;
}
@media screen and (max-width: 900px) {
  .section {
    margin-top: 113px;
  }
  .section .inner > *:not(:last-child) {
    margin-bottom: 99px;
  }
  .section-cnt {
    margin-top: 34px;
  }
  .section-cnt > *:not(.modal) {
    display: block;
  }
  .section-cnt > *:not(.modal):not(:last-child) {
    margin-bottom: 53px;
  }
  .section-cnt-tit {
    font-size: 20px;
    line-height: 1.6;
  }
  .section-cnt-slider {
    margin: 14px 0 0;
  }
  .section-cnt-slider .splide__pagination {
    margin: 15px 0 0;
  }
  .section-cnt-table {
    display: block;
    margin-top: 40px;
  }
  .section-cnt-table tr:not(:last-child) {
    display: block;
    margin-bottom: 15px;
  }
  .section-cnt-table th {
    display: block;
    padding-bottom: 7px;
    width: 100%;
  }
  .section-cnt-table th span {
    font-size: 14px;
    width: 78px;
  }
  .section-cnt-table td {
    font-size: 14px;
    line-height: 1.7142857143;
    display: block;
    width: 100%;
  }
  .section-cnt-txt {
    margin-top: 18px;
  }
}

/* -- sale -- */
.sale {
  margin-top: 199px;
  background: #F5F5F5;
}
.sale .inner {
  padding-top: 121px;
  padding-bottom: 119px;
}
.sale h2 {
  margin-left: 0;
}
.sale .btn {
  margin-top: 29px;
  width: 328px;
}
.sale .btn a {
  font-family: "dnp-shuei-gothic-kin-std", sans-serif;
  font-weight: 600;
  font-size: 22px;
  padding-bottom: 11px;
}
.sale .btn a::before {
  top: 8px;
  right: 9px;
}
@media screen and (max-width: 900px) {
  .sale {
    margin-top: 99px;
  }
  .sale .inner {
    padding-top: 80px;
    padding-bottom: 79px;
  }
  .sale h2 {
    margin: 0;
  }
  .sale .btn {
    margin: 25px 0 0;
    width: 100%;
    max-width: 306px;
  }
  .sale .btn a {
    font-size: 20px;
    padding-bottom: 26px;
  }
  .sale .btn a::before {
    top: 6px;
    right: 0;
  }
}

/* -- info -- */
.info {
  margin-top: 200px;
}
.info h2 {
  max-width: 820px;
}
.info .copyright {
  display: block;
  font-size: 14px;
  text-align: right;
  margin-top: 5px;
}
.info-cnt {
  margin-top: 64px;
}
@media screen and (min-width: 901px) {
  .info-cnt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .info-cnt > * {
    margin-right: 10%;
    padding-bottom: 0;
    width: 40%;
    max-width: 327px;
  }
}
.info-cnt a {
  display: block;
  position: relative;
  padding-bottom: 17px;
}
.info-cnt a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #000;
  content: "";
}
.info-cnt a:hover {
  opacity: 1;
}
.info-cnt a:hover::after {
  -webkit-animation: btn_hover 0.3s;
          animation: btn_hover 0.3s;
}
.info-cnt-txt {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  position: relative;
  margin-top: 11px;
  padding-right: 30px;
}
.info-cnt-txt::before {
  position: absolute;
  top: 2px;
  right: 0;
  width: 16px;
  height: 18px;
  background-image: url(../images/arrow.svg);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 100% auto;
  content: "";
}
@media screen and (max-width: 900px) {
  .info {
    margin-top: 100px;
  }
  .info-cnt {
    margin-top: 42px;
  }
  .info-cnt > *:not(:last-child) {
    margin-bottom: 49px;
  }
  .info-cnt a {
    padding-bottom: 13px;
  }
  .info-cnt-txt {
    font-size: 20px;
    line-height: 1.8;
    margin-top: 5px;
  }
  .info-cnt-txt::before {
    top: 0;
    bottom: 0;
    right: 1px;
    margin: auto;
  }
}

/* -- creative -- */
.creative {
  color: #FFF;
  margin-top: 199px;
  padding: 82px 0 185px;
  background: #262626;
}
.creative-scroll {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.creative-sticky {
  position: sticky;
  top: 98px;
  padding-bottom: 85px;
  width: 30%;
}
.creative h2 {
  margin-left: 0;
  width: 300%;
}
.creative-img {
  margin-top: 94px;
}
.creative-cnt {
  margin-top: 197px;
  width: 60%;
  height: 200vh;
}
.creative-cnt > * {
  position: sticky;
  top: 295px;
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, -webkit-transform 0.6s;
  transition: opacity 0.6s, transform 0.6s;
  transition: opacity 0.6s, transform 0.6s, -webkit-transform 0.6s;
}
.creative-cnt > *.show {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}
.creative-cnt-name {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 32px;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}
.creative-cnt-tit {
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 26px;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}
.creative-cnt-txt {
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.04em;
}
.creative-cnt-txt > *:not(:last-child) {
  margin-bottom: 29px;
}
.creative-txt {
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.04em;
  text-align: center;
  margin: 34px auto 0;
}
.creative-txt span {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 19px;
}
@media screen and (max-width: 900px) {
  .creative {
    margin-top: 99px;
    padding: 80px 0 129px;
  }
  .creative-scroll {
    display: block;
  }
  .creative-sticky {
    position: static;
    padding-bottom: 0;
    width: auto;
  }
  .creative h2 {
    margin: 0;
    width: auto;
  }
  .creative-img {
    margin-top: 32px;
  }
  .creative-cnt {
    margin-top: 28px;
    width: auto;
    height: auto;
  }
  .creative-cnt > * {
    position: static;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  .creative-cnt > *:not(:last-child) {
    margin-bottom: 56px;
  }
  .creative-cnt-name {
    font-size: 24px;
    line-height: 1.6666666667;
    margin-bottom: 19px;
  }
  .creative-cnt-tit {
    font-size: 21px;
    line-height: 1.9047619048;
    margin-bottom: 16px;
  }
  .creative-cnt-txt > *:not(:last-child) {
    margin-bottom: 27px;
  }
  .creative-txt {
    font-size: 20px;
    line-height: 1.8;
    margin: 45px auto 0;
  }
  .creative-txt span {
    text-decoration: none;
    display: inline-block;
    position: relative;
    padding-bottom: 13px;
  }
  .creative-txt span::after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    top: auto;
    height: 2px;
    background: #FFF;
    content: "";
  }
}

/* -- footer -- */
.footer {
  color: #FFF;
  margin-top: -5px;
  padding: 46px 27px 37px;
  background: #262626;
}
.footer-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.footer-list > *:not(:last-child) {
  margin-right: 12px;
}
.footer .copy {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.075em;
  text-align: right;
  margin-top: 12px;
}
@media screen and (max-width: 900px) {
  .footer {
    padding: 46px 27px 39px;
  }
  .footer-logo {
    margin: 0 auto;
    max-width: 206px;
  }
  .footer-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 34px;
  }
  .footer .copy {
    font-size: 10px;
    text-align: center;
    margin-top: 23px;
  }
}

/* -- responsiv tag -- */
.lp-pc {
  display: block;
}
@media screen and (max-width: 900px) {
  .lp-pc {
    display: none;
  }
}

.lp-sp {
  display: none;
}
@media screen and (max-width: 900px) {
  .lp-sp {
    display: block;
  }
}/*# sourceMappingURL=style.css.map */