@charset "UTF-8";
/* 点滅 */
/* ローディングアニメ */
/* スクロールアニメ */
/* ページトップボタン */
/*リセット
--------------------------------------------*/
html, body, 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 {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

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

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/*メディアクエリー
---------------------------------------------*/
/*変数
---------------------------------------------*/
/* 全体設定
---------------------------------------------*/
html {
  width: 100%;
  font-size: 62.5%;
}

body {
  width: 100%;
  overflow-x: hidden;
  color: #019845;
  font-family: yu-mincho-pr6n, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  line-height: 1.9;
  letter-spacing: 0.02rem;
  word-break: break-all;
  text-align: justify;
}
@media screen and (min-width: 769px) {
  body {
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: 0.05rem;
  }
}

/* font
--------------------------------------*/
.kp_r {
  font-family: "kepler-std", serif;
  font-weight: 400;
  font-style: normal;
}

/* common setting
--------------------------------------*/
img,
video {
  width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: #019845;
}

@media screen and (min-width: 769px) {
  .pcNone {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pcNone {
    display: block;
  }
}

@media screen and (min-width: 769px) {
  .spNone {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .spNone {
    display: none !important;
  }
}

/* mainArea
--------------------------------------*/
h1 {
  width: 31.4%;
  margin: auto;
  padding: 145px 0 50px;
}
@media screen and (max-width: 768px) {
  h1 {
    width: 69.8%;
    padding: 50px 0 45px;
  }
}

.img-wrapL {
  animation: img-opacity 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  overflow: hidden;
  position: relative;
}
.img-wrapL::before {
  animation: img-wrapL 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: #E5E5E5;
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

@keyframes img-opacity {
  100% {
    opacity: 1;
  }
}
@keyframes img-wrapL {
  100% {
    transform: translateX(100%);
  }
}
.lead {
  background-color: #E5E5E5;
  text-align: center;
}
.lead p {
  font-size: 11px;
  margin-bottom: 30px;
}
.lead p:last-child {
  margin-bottom: 0;
}
.lead.second {
  padding: 0 0 90px;
}
@media screen and (max-width: 768px) {
  .lead.second {
    padding: 0;
  }
}
.lead.second .video_bg {
  height: 100vh;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .lead.second .video_bg {
    height: 90vh;
  }
}
.lead.second .video_bg::before {
  content: "";
  display: inline-block;
  background: url(../images/video_bg.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .lead.second .video_bg::before {
    background-image: url(../images/video_bg_sp.svg);
    background-size: cover;
    background-repeat: no-repeat;
    top: -11%;
  }
}
.lead.second .video_bg .video_wrap {
  width: 27.11%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .lead.second .video_bg .video_wrap {
    width: 64.5%;
  }
}

.inviewfadeIn {
  opacity: 0;
  transition: 2s;
}

.fadeIn {
  opacity: 1;
}

/*===========
inview（左から）
===========*/
.fadeIn_left {
  opacity: 0;
  transform: translate(-50%, 0);
  transition: 2s;
}

.fadeIn_left.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

/*===========
inview（右から）
===========*/
.fadeIn_right {
  opacity: 0;
  transform: translate(50%, 0);
  transition: 2s;
}

.fadeIn_right.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.slick_wrap {
  padding: 80px 0 20px;
  background-color: #E5E5E5;
}
@media screen and (max-width: 768px) {
  .slick_wrap {
    padding: 70px 0 30px;
  }
}

.slick_content {
  opacity: 0;
  height: 65vh;
  overflow: hidden;
  margin: auto;
  transition: all 1.5s 1s;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .slick_content {
    height: 25vh;
  }
}
@media screen and (max-width: 768px) {
  .slick_content {
    height: 40vh;
  }
}
.slick_content.active {
  opacity: 1;
}
.slick_content .slick .slick-list {
  overflow: visible;
}
.slick_content .slick li {
  width: 20.3vw;
  margin: 0 20px;
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  .slick_content .slick li {
    width: 49.9vw;
    margin: 0 18px;
  }
}
.slick_content .slick li.left {
  margin-top: 5px;
  transform-origin: top right;
  transform: rotate(-5deg);
}
@media screen and (max-width: 768px) {
  .slick_content .slick li.left {
    margin-top: 7px;
    transform: rotate(-7deg);
  }
}
.slick_content .slick li.left2 {
  margin-top: 35px;
  margin-right: 20px;
  transform-origin: top right;
  transform: rotate(-10deg);
}
@media screen and (max-width: 768px) {
  .slick_content .slick li.left2 {
    margin-top: 10px;
    margin-right: 20px;
    transform: rotate(-8deg);
  }
}
.slick_content .slick li.right {
  margin-top: 5px;
  transform-origin: top left;
  transform: rotate(5deg);
}
@media screen and (max-width: 768px) {
  .slick_content .slick li.right {
    margin-top: 7px;
    transform: rotate(7deg);
  }
}
.slick_content .slick li.right2 {
  margin-top: 35px;
  margin-left: 20px;
  transform-origin: top left;
  transform: rotate(10deg);
}
@media screen and (max-width: 768px) {
  .slick_content .slick li.right2 {
    margin-top: 10px;
    margin-left: 20px;
    transform: rotate(8deg);
  }
}

.img_bg {
  width: 100vw;
  height: 100vh;
  position: sticky;
  top: 0;
  left: 0;
  z-index: -1;
  background-image: url("../images/day01_bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .img_bg {
    background-image: url("../images/day01_bg_sp.jpg");
  }
}
.img_bg.day02 {
  background-image: url("../images/day02_bg.jpg");
}
@media screen and (max-width: 768px) {
  .img_bg.day02 {
    background-image: url("../images/day02_bg_sp.jpg");
  }
}
.img_bg.night {
  background-image: url("../images/night_bg.jpg");
}
@media screen and (max-width: 768px) {
  .img_bg.night {
    background-image: url("../images/night_bg_sp.jpg");
  }
}

.sec_wrap {
  background-color: #E5E5E5;
  text-align: center;
}
.sec_wrap .sec__item.inner {
  position: relative;
  max-width: 1000px;
  width: 100%;
  margin: auto;
}
.sec_wrap .sec__item.inner::before {
  content: "";
  display: block;
}
.sec_wrap .sec__item.inner p {
  font-size: 12px;
  letter-spacing: 0.04em;
  text-align: left;
  padding-top: 8px;
}
.sec_wrap .sec__item.inner p a {
  border-bottom: 1.5px solid #019845;
  cursor: pointer;
}
.sec_wrap .sec__item .more {
  width: 100%;
  position: absolute;
  bottom: 11.3%;
  left: 45%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .sec_wrap .sec__item .more {
    bottom: 15%;
    left: 37%;
  }
}
.sec_wrap .sec__item .more .text {
  transition: all 0.3s ease;
  font-size: 22px;
  position: relative;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .sec_wrap .sec__item .more .text {
    font-size: 18px;
  }
}
.sec_wrap .sec__item .more .text::after {
  content: "";
  display: block;
  width: 14%;
  height: 12.5px;
  border-bottom: 1px solid #019845;
  border-right: 1px solid #019845;
  transform: skew(60deg);
  position: absolute;
  bottom: 30%;
  right: 30%;
}
@media screen and (max-width: 768px) {
  .sec_wrap .sec__item .more .text::after {
    width: 25%;
    height: 11px;
    right: 13%;
    bottom: 35%;
  }
}
.sec_wrap.day01 {
  height: 276.1%;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .sec_wrap.day01 {
    height: 452.3936170213%;
  }
}
.sec_wrap.day01::before {
  content: "";
  display: inline-block;
  background: url(../images/day01_bg.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 56%;
  position: absolute;
  top: 44%;
  right: 0;
}
@media screen and (max-width: 768px) {
  .sec_wrap.day01::before {
    background: url(../images/day01_bg_sp.svg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 40%;
    top: 52%;
  }
}
.sec_wrap.day01 .sec__item.inner::before {
  padding-top: 276.1%;
}
@media screen and (max-width: 768px) {
  .sec_wrap.day01 .sec__item.inner::before {
    padding-top: 452.3936170213%;
  }
}
.sec_wrap.day01 .sec__item.inner .shape01 {
  width: 7.5%;
  position: absolute;
  top: 2%;
  left: -5.9%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .sec_wrap.day01 .sec__item.inner .shape01 {
    width: 17.3%;
    top: 1.2%;
    left: 0;
  }
}
.sec_wrap.day01 .sec__item.inner .shape02 {
  width: 7.5%;
  position: absolute;
  top: 22.1%;
  left: 48.2%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .sec_wrap.day01 .sec__item.inner .shape02 {
    width: 13.6%;
    top: 25.5%;
    left: 84%;
  }
}
.sec_wrap.day01 .sec__item.inner .left {
  width: 50%;
  position: absolute;
  top: 3.62%;
  left: 0;
}
@media screen and (max-width: 768px) {
  .sec_wrap.day01 .sec__item.inner .left {
    width: 80%;
    top: 4.1%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
}
.sec_wrap.day01 .sec__item.inner .right {
  width: 35%;
  position: absolute;
  top: 21.2%;
  right: 4.5%;
}
@media screen and (max-width: 768px) {
  .sec_wrap.day01 .sec__item.inner .right {
    width: 58.1%;
    top: 31.6%;
    right: 0;
  }
}
.sec_wrap.day01 .sec__item.inner .right p {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .sec_wrap.day01 .sec__item.inner .right p {
    padding-right: 7px;
  }
}
.sec_wrap.day01 .sec__item.inner .right02 {
  width: 30%;
  position: absolute;
  top: 34%;
  right: 30%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .sec_wrap.day01 .sec__item.inner .right02 {
    width: 49.8%;
    top: 44.7%;
    right: 44.8%;
  }
}
.sec_wrap.day01 .sec__item.inner .shape03 {
  width: 1.118%;
  position: absolute;
  top: 39.9%;
  right: 27.9%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .sec_wrap.day01 .sec__item.inner .shape03 {
    width: 1.832%;
    top: 50.8%;
    left: 57%;
  }
}
.sec_wrap.day01 .sec__item.inner .shape04 {
  width: 9.537%;
  position: absolute;
  top: 43.3%;
  left: 33.9%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .sec_wrap.day01 .sec__item.inner .shape04 {
    width: 12.6%;
    top: 56.1%;
    left: 0;
  }
}
.sec_wrap.day01 .sec__item.inner .center {
  width: 60%;
  position: absolute;
  top: 50.5%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .sec_wrap.day01 .sec__item.inner .center {
    width: 70.1%;
    top: 60.1%;
    right: 14.6%;
  }
}
.sec_wrap.day01 .sec__item.inner .center p {
  text-align: left;
}
.sec_wrap.day01 .sec__item.inner .left02 {
  width: 38.7%;
  position: absolute;
  top: 69.5%;
  left: 7%;
}
@media screen and (max-width: 768px) {
  .sec_wrap.day01 .sec__item.inner .left02 {
    width: 41.6%;
    top: 74.8%;
    left: 8%;
  }
}
.sec_wrap.day01 .sec__item.inner .right03 {
  width: 35.5%;
  position: absolute;
  top: 83.2%;
  right: 10%;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .sec_wrap.day01 .sec__item.inner .right03 {
    width: 38.4%;
    top: 83.8%;
    right: 5.3%;
  }
}
.sec_wrap.day02 {
  height: 346.5%;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .sec_wrap.day02 {
    height: 502.9333333333%;
  }
}
.sec_wrap.day02::before {
  content: "";
  display: inline-block;
  background: url(../images/day02_bg.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 47%;
  position: absolute;
  top: 64%;
  left: 52%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .sec_wrap.day02::before {
    background: url(../images/day02_bg_sp.svg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 40%;
    top: 58%;
  }
}
.sec_wrap.day02 .sec__item.inner::before {
  padding-top: 346.5%;
}
@media screen and (max-width: 768px) {
  .sec_wrap.day02 .sec__item.inner::before {
    padding-top: 502.9333333333%;
  }
}
.sec_wrap.day02 .sec__item.inner .center {
  width: 55%;
  position: absolute;
  top: 2.8%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .sec_wrap.day02 .sec__item.inner .center {
    width: 80%;
    top: 3.7%;
  }
}
.sec_wrap.day02 .sec__item.inner .center02 {
  width: 28%;
  position: absolute;
  top: 26.8%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .sec_wrap.day02 .sec__item.inner .center02 {
    width: 36%;
    top: 28.6%;
    left: 54.1%;
    transform: none;
  }
}
.sec_wrap.day02 .sec__item.inner .shape05 {
  width: 7.131%;
  position: absolute;
  top: 36.9%;
  right: 30.2%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .sec_wrap.day02 .sec__item.inner .shape05 {
    width: 16.784%;
    top: 35.9%;
    left: 85%;
  }
}
.sec_wrap.day02 .sec__item.inner .shape06 {
  width: 2%;
  position: absolute;
  top: 46.5%;
  left: 28%;
}
@media screen and (max-width: 768px) {
  .sec_wrap.day02 .sec__item.inner .shape06 {
    width: 4.5%;
    top: 46.3%;
    left: 33.8%;
  }
}
.sec_wrap.day02 .sec__item.inner .shape07 {
  width: 4.947%;
  position: absolute;
  top: 49.5%;
  left: 51.7%;
}
@media screen and (max-width: 768px) {
  .sec_wrap.day02 .sec__item.inner .shape07 {
    width: 9.3%;
    top: 48.7%;
    left: 49.8%;
  }
}
.sec_wrap.day02 .sec__item.inner .left {
  width: 30%;
  position: absolute;
  top: 35.9%;
  left: 0;
}
@media screen and (max-width: 768px) {
  .sec_wrap.day02 .sec__item.inner .left {
    width: 38.6%;
    top: 36.7%;
  }
}
@media screen and (max-width: 768px) {
  .sec_wrap.day02 .sec__item.inner .left p {
    padding-left: 7px;
  }
}
.sec_wrap.day02 .sec__item.inner .right {
  width: 40%;
  position: absolute;
  top: 41.9%;
  right: 10%;
}
@media screen and (max-width: 768px) {
  .sec_wrap.day02 .sec__item.inner .right {
    width: 51.4%;
    top: 41.9%;
    right: 0;
  }
}
.sec_wrap.day02 .sec__item.inner .left02 {
  width: 42%;
  position: absolute;
  top: 52.4%;
  left: 14.7%;
}
@media screen and (max-width: 768px) {
  .sec_wrap.day02 .sec__item.inner .left02 {
    width: 53.3%;
    top: 53.5%;
    left: 5.3%;
  }
}
.sec_wrap.day02 .sec__item.inner .message {
  width: 27.5%;
  position: absolute;
  top: 62.2%;
  right: 12.8%;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .sec_wrap.day02 .sec__item.inner .message {
    width: auto;
    top: 61.7%;
    right: 14.9%;
  }
}
.sec_wrap.day02 .sec__item.inner .message p {
  text-align: left;
  font-size: 38px;
  line-height: 1.105;
  letter-spacing: 0.04em;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .sec_wrap.day02 .sec__item.inner .message p {
    font-size: 20px;
  }
}
.sec_wrap.day02 .sec__item.inner .right03 {
  width: 35%;
  position: absolute;
  top: 66.8%;
  right: 15.6%;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .sec_wrap.day02 .sec__item.inner .right03 {
    width: 45.6%;
    top: 66.1%;
    right: 3.7%;
  }
}
.sec_wrap.day02 .sec__item.inner .center03 {
  width: 28%;
  position: absolute;
  top: 82.4%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .sec_wrap.day02 .sec__item.inner .center03 {
    width: 41.6%;
    top: 80.1%;
  }
}
.sec_wrap.night {
  background-color: #D1D1D1;
  height: 326.8%;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .sec_wrap.night {
    height: 531.2%;
  }
}
.sec_wrap.night::before {
  content: "";
  display: inline-block;
  background: url(../images/night_bg.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 124%;
  height: 38%;
  position: absolute;
  top: 40%;
  left: -15%;
}
@media screen and (max-width: 768px) {
  .sec_wrap.night::before {
    background: url(../images/night_bg_sp.svg);
    background-size: cover;
    background-repeat: no-repeat;
    width: 120%;
    height: 8%;
    top: 56%;
    left: -20%;
  }
}
.sec_wrap.night .sec__item.inner::before {
  padding-top: 326.8%;
}
@media screen and (max-width: 768px) {
  .sec_wrap.night .sec__item.inner::before {
    padding-top: 531.2%;
  }
}
.sec_wrap.night .sec__item.inner .left {
  width: 50%;
  position: absolute;
  top: 3%;
  left: 0;
}
@media screen and (max-width: 768px) {
  .sec_wrap.night .sec__item.inner .left {
    width: 80%;
    top: 4.7%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
}
.sec_wrap.night .sec__item.inner .shape08 {
  width: 1.198%;
  position: absolute;
  top: 26.4%;
  right: 11.4%;
}
@media screen and (max-width: 768px) {
  .sec_wrap.night .sec__item.inner .shape08 {
    width: 2.298%;
    top: 28.4%;
    right: 4%;
  }
}
.sec_wrap.night .sec__item.inner .shape09 {
  width: 13.6%;
  position: absolute;
  top: 34.5%;
  right: 46%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .sec_wrap.night .sec__item.inner .shape09 {
    width: 15.2%;
    top: 36.6%;
    right: 61%;
  }
}
.sec_wrap.night .sec__item.inner .right {
  width: 40%;
  position: absolute;
  top: 26.4%;
  right: 13.1%;
}
@media screen and (max-width: 768px) {
  .sec_wrap.night .sec__item.inner .right {
    width: 61.3%;
    top: 28.4%;
    right: 8%;
  }
}
.sec_wrap.night .sec__item.inner .right02 {
  width: 35%;
  position: absolute;
  top: 39.9%;
  right: 16.9%;
}
@media screen and (max-width: 768px) {
  .sec_wrap.night .sec__item.inner .right02 {
    width: 52.8%;
    top: 41.7%;
    right: 9%;
  }
}
.sec_wrap.night .sec__item.inner .right02 p {
  text-align: right;
}
.sec_wrap.night .sec__item.inner .message {
  width: auto;
  position: absolute;
  top: 39.9%;
  right: 11%;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .sec_wrap.night .sec__item.inner .message {
    top: 41.7%;
    right: 2.6%;
  }
}
.sec_wrap.night .sec__item.inner .message p {
  text-align: left;
  font-size: 38px;
  line-height: 1.105;
  letter-spacing: 0.04em;
  writing-mode: vertical-rl;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .sec_wrap.night .sec__item.inner .message p {
    font-size: 20px;
  }
}
.sec_wrap.night .sec__item.inner .left02 {
  width: 32%;
  position: absolute;
  top: 53.3%;
  left: 25.5%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .sec_wrap.night .sec__item.inner .left02 {
    width: 45.3%;
    top: 54.1%;
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  .sec_wrap.night .sec__item.inner .left02 p {
    padding-left: 7px;
  }
}
.sec_wrap.night .sec__item.inner .center {
  width: 70%;
  position: absolute;
  top: 67.8%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .sec_wrap.night .sec__item.inner .center {
    width: 80%;
    top: 68.9%;
  }
}

footer.img_bg {
  width: 100%;
  height: 100vh;
  background: url("../images/footer_bg.jpg") no-repeat center center/cover;
  background-attachment: fixed;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  footer.img_bg {
    background: url("../images/footer_bg_sp.jpg") no-repeat center center/cover;
  }
}
footer .inner {
  max-width: 1000px;
  width: 100%;
  margin: auto;
  padding: 0 15px;
}
@media screen and (max-width: 768px) {
  footer .inner {
    width: 80%;
    padding: 0;
  }
}
footer .inner .sahir_logo {
  width: 21.5%;
  padding: 110px 0 30px;
}
@media screen and (max-width: 768px) {
  footer .inner .sahir_logo {
    width: 40%;
    padding: 75px 0 15px;
  }
}
footer .inner .instagram {
  position: relative;
  padding-left: 30px;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  footer .inner .instagram {
    font-size: 12px;
  }
}
footer .inner .instagram a {
  color: #ffffff;
}
footer .inner .instagram::before {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  background-image: url(../images/insta_icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}

/* endArea
--------------------------------------*//*# sourceMappingURL=style.css.map */