@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kiwi+Maru:wght@300;400;500&display=swap");
/* Reset CSS - 2021.09
---------------------------------------------------*/
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, ruby, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, form, fieldset, legend, label, header, footer, hgroup, menu, nav, main, article, section, aside, details, figure, figcaption, canvas, embed, output, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: bottom;
}

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

hr {
  display: none;
}

address, em {
  font-style: normal;
}

table {
  border-collapse: collapse;
}

img {
  vertical-align: bottom;
}

/* Fonts
---------------------------------------------------*/
body {
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
}

/* clearfix
---------------------------------------------------*/
.clearfix::after {
  content: "";
  display: block;
  clear: both;
  height: 0;
}

* {
  box-sizing: border-box;
}

html {
  overflow-y: scroll;
}

body {
  color: #000000;
  position: relative;
  line-height: 1.8;
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem); /*14-16*/
  font-feature-settings: "palt";
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  background-color: #FFF7EA;
}

a {
  transition: all 0.3s;
  position: relative;
  text-decoration: none;
}

a:hover {
  transition: all 0.3s;
  opacity: 0.6;
}

img {
  height: auto;
  width: 100%;
  vertical-align: bottom;
}

.sp-block {
  display: none;
}

.wrapper {
  width: min(100%, 1080px);
  padding: 0 40px;
  margin: 0 auto;
  position: relative;
}

.wrapper__large {
  position: relative;
  width: calc(100% - 80px);
  max-width: 1200px;
  margin: 0 auto;
}

.section__container {
  padding: 100px 0 150px;
  position: relative;
}

@keyframes bgscroll {
  0% {
    background-position: 50vw 0;
  }
  100% {
    background-position: 0 0;
  }
}
/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .sp-block {
    display: block;
  }
  .sp-none {
    display: none;
  }
  .wrapper {
    width: 100%;
    padding: 0 15px;
  }
  .section__container {
    padding: 80px 0;
  }
  .section__container:first-of-type {
    padding-top: 30px;
  }
  .section__container:last-of-type {
    padding-bottom: 120px;
  }
  .wrapper__large {
    width: 100%;
    max-width: initial;
  }
}
/* Module */
.header__container {
  background-color: #ffffff;
  border-top: 5px solid #18812C;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  z-index: 20;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
  min-height: 110px;
}

.header__logo {
  max-width: 70px;
}

.nav__list {
  display: flex;
  align-items: center;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
}
.nav__list .nav__item:not(:last-child) {
  margin-right: 2em;
}
.nav__list .nav__item .nav__link {
  text-decoration: none;
  color: #000000;
  font-size: 0.9375rem;
}
.nav__list .nav__item .nav__link:hover {
  color: #18812C;
}
.nav__list .nav__item .nav__link-online {
  background-color: #D87500;
  padding: 10px;
  display: flex;
  border-radius: 50%;
  height: 40px;
  width: 40px;
}

button {
  display: none;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .header__container {
    padding: 10px 20px;
    min-height: 70px;
  }
  .header__logo {
    max-width: 50px;
  }
  /*バーガーメニュー時背景固定用*/
  body.fixed {
    width: 100%;
    height: 100%;
    position: fixed;
  }
  .nav__container {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    padding-top: 20%;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #C4E597;
    transition: all 0.3s;
    z-index: -1;
  }
  .nav__container.sp_open {
    visibility: inherit;
    opacity: 1;
    transition: all 0.3s;
    height: 100vh;
  }
  .nav__list {
    flex-direction: column;
    margin-top: 30px;
  }
  .nav__list .nav__item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  .navSns__list {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
  }
  .navSns__list .sns__item {
    width: 40px;
  }
  /*spのメニュークリックしたら非表示にするクラス*/
  .none {
    opacity: 0;
  }
  #toggle {
    position: relative;
    display: block;
    width: 38px;
    height: 24px;
    border: none;
    background: transparent;
  }
  /*ボタン内側*/
  #toggle span {
    display: block;
    transition: all 0.4s;
    position: absolute;
    left: 0;
    height: 1px;
    background: #000000;
    width: 100%;
  }
  #toggle span:nth-of-type(1) {
    top: 0;
  }
  #toggle span:nth-of-type(2) {
    top: 11px;
  }
  #toggle span:nth-of-type(3) {
    top: 22px;
  }
  /*activeクラスが付与されると線が回転して×に*/
  #toggle.active {
    border-color: #ffffff;
  }
  #toggle.active span:nth-of-type(1) {
    top: 4px;
    transform: translateY(6px) rotate(-35deg);
  }
  #toggle.active span:nth-of-type(2) {
    opacity: 0;
  }
  #toggle.active span:nth-of-type(3) {
    top: 16px;
    transform: translateY(-6px) rotate(35deg);
  }
}
.footer__container {
  position: relative;
  background-color: #C2E2FF;
  padding-top: 80px;
}
.footer__container::before {
  content: "";
  background-image: url(../../img/common/wave.svg);
  background-position: bottom;
  background-repeat: repeat-x;
  width: 100%;
  padding-top: 70px;
  position: absolute;
  top: -70px;
  z-index: 1;
  animation: bgscroll 30s linear infinite;
}
.footer__container .footer__logo {
  max-width: 100px;
  margin: 0 auto;
}
.footer__container .nav__list {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 80px;
  font-size: 0.9375rem;
}

.footerCopy__text {
  font-size: 0.625rem;
  text-align: center;
  padding: 30px;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .footer__container {
    padding-top: 30px;
    padding-bottom: 60px;
  }
  .footer__container::before {
    padding-top: 30px;
    top: -28px;
    background-size: contain;
  }
  .footer__container .nav__list {
    display: none;
  }
}
.sec__title {
  text-align: center;
  color: #18812C;
}
.sec__title-en {
  display: block;
  font-weight: 500;
  font-size: 0.75rem;
}
.sec__title-ja {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  font-family: "Zen Maru Gothic", serif;
}

.sec__titleSmall {
  text-align: center;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 30px;
}
.sec__titleSmall-green {
  color: #18812C;
}
.sec__titleSmall-black {
  color: #000000;
}

.sec__titleLeft {
  color: #18812C;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 600;
  font-size: 1.5rem;
  border-left: 21px solid #18812C;
  padding-left: 15px;
  margin-bottom: 50px;
}

.sec__titleDesc {
  text-align: center;
  margin-bottom: 50px;
}

.title_opacity {
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-size: 1.5rem;
  position: relative;
  line-height: 120px;
  z-index: 1;
  width: 100%;
  text-align: center;
}
.title_opacity::after {
  content: "理 念";
  font-size: 4.6875rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #C4E597;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  opacity: 0.5;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .sec__title-ja {
    font-size: 1.5rem;
  }
  .sec__titleSmall {
    margin-bottom: 20px;
  }
  .sec__titleLeft {
    font-size: 1.25rem;
    border-width: 10px;
    padding-left: 10px;
    margin-bottom: 30px;
  }
  .title_opacity {
    font-size: 1.25rem;
    line-height: 300%;
  }
  .title_opacity::after {
    font-size: 3.125rem;
    width: 100%;
  }
}
.btn {
  background-color: #18812C;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  padding: 20px 30px;
  min-width: 320px;
  text-align: center;
  text-decoration: none;
  position: relative;
  border-radius: 100px;
}
.btn::after {
  content: "";
  width: 12px;
  height: 12px;
  display: block;
  background-image: url(../../img/common/icon-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.btn-orange {
  background-color: #D87500;
}

.btn__wrapper-center {
  text-align: center;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .btn__wrapper {
    padding: 0 5%;
  }
  .btn {
    min-width: initial;
    width: 100%;
  }
}
.text__link::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #18812C;
  bottom: -4px; /*アンダーラインがaタグの下端から現れる*/
  transform: scale(0, 1); /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
  transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
  transition: transform 0.3s; /*変形の時間*/
}
.text__link:hover::after {
  transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
}

.kv__container-2nd {
  background-image: url(../../img/common/sub-kv.webp);
  background-position: left -140px top;
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: 110px;
  min-height: 390px;
}

.page__title {
  color: #ffffff;
  font-family: "Zen Maru Gothic", serif;
  padding-left: 5%;
  padding-top: 100px;
}
.page__title-en {
  font-size: 0.8125rem;
  display: block;
}
.page__title-jp {
  font-size: 2rem;
  display: block;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .kv__container-2nd {
    background-position: left -20px top;
    margin-top: 70px;
    min-height: 180px;
  }
  .page__title {
    padding-left: 0;
    padding-top: 30px;
  }
  .page__title-en {
    padding-left: 20px;
  }
  .page__title-jp {
    padding-left: 20px;
    font-size: 1.5rem;
    line-height: 1.7;
  }
  .page__title.text__anim::after {
    bottom: -40px;
  }
}
.modal-open, .modal-open2 {
  cursor: pointer;
}

.modal-container,
.modal-container-2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  padding: 40px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-sizing: border-box;
  z-index: 999;
}

.modal-container:before,
.modal-container-2:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

.modal-container.active,
.modal-container-2.active {
  opacity: 1;
  visibility: visible;
}

.modal-body,
.modal-body-2 {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 90%;
  max-width: 800px;
}

.modal-close,
.modal-close-2 {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 24px;
  color: #ffffff;
  cursor: pointer;
}

.modal-wrapper,
.modal-wrapper-2 {
  background-color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  text-align: left;
  padding: 30px;
  border-radius: 16px;
  overflow-y: auto;
  max-height: 90vh;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .modal-container,
  .modal-container-2 {
    padding: 40px 0;
  }
  .modal-wrapper,
  .modal-wrapper-2 {
    padding: 30px;
  }
}
.commonLink__list {
  position: fixed;
  right: 0;
  bottom: 50px;
  z-index: 100;
}
.commonLink__list .CommonLink__item {
  border-radius: 10px 0 0 10px;
  writing-mode: vertical-rl;
}
.commonLink__list .CommonLink__item:first-child {
  margin-bottom: 20px;
}
.commonLink__list .CommonLink__item-green {
  background-color: #18812C;
  border-top: 2px solid #18812C;
  border-bottom: 2px solid #18812C;
  border-left: 2px solid #18812C;
}
.commonLink__list .CommonLink__item-green a {
  color: #ffffff;
}
.commonLink__list .CommonLink__item-green a::before {
  background-image: url(../../img/common/icon-member.svg);
}
.commonLink__list .CommonLink__item-green .CommonLink__text-small {
  border-top: 1px solid #ffffff;
}
.commonLink__list .CommonLink__item-green .CommonLink__text-large {
  border-top: 1px solid #ffffff;
}
.commonLink__list .CommonLink__item-white {
  background-color: #ffffff;
  border-top: 2px solid #18812C;
  border-bottom: 2px solid #18812C;
  border-left: 2px solid #18812C;
}
.commonLink__list .CommonLink__item-white a {
  color: #18812C;
}
.commonLink__list .CommonLink__item-white a::before {
  background-image: url(../../img/common/icon-contact.svg);
}
.commonLink__list .CommonLink__item-white .CommonLink__text-small {
  border-top: 1px solid #18812C;
}
.commonLink__list .CommonLink__item-white .CommonLink__text-large {
  border-top: 1px solid #18812C;
}
.commonLink__list .CommonLink__item a {
  display: block;
  text-decoration: none;
  position: relative;
  padding: 50px 10px 30px;
}
.commonLink__list .CommonLink__item a::before {
  content: "";
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}
.commonLink__list .CommonLink__item .CommonLink__text-small {
  display: block;
  font-size: 13px;
  line-height: 1;
  padding-top: 10px;
}
.commonLink__list .CommonLink__item .CommonLink__text-large {
  display: block;
  font-size: 20px;
  padding-top: 10px;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .commonLink__list {
    right: 50%;
    bottom: 0;
    transform: translateX(50%);
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 10px;
  }
  .commonLink__list .CommonLink__item {
    border-radius: 10px 10px 0 0;
    writing-mode: horizontal-tb;
    width: 45%;
  }
  .commonLink__list .CommonLink__item:first-child {
    margin-bottom: 0;
  }
  .commonLink__list .CommonLink__item-green {
    border-bottom: none;
    border-right: 2px solid #18812C;
  }
  .commonLink__list .CommonLink__item-green .CommonLink__text-small {
    border-top: none;
    border-right: 2px solid #ffffff;
  }
  .commonLink__list .CommonLink__item-green .CommonLink__text-large {
    border-top: none;
    border-right: 2px solid #ffffff;
  }
  .commonLink__list .CommonLink__item-white {
    border-bottom: none;
    border-right: 2px solid #18812C;
  }
  .commonLink__list .CommonLink__item-white .CommonLink__text-small {
    border-top: none;
    border-right: 2px solid #18812C;
  }
  .commonLink__list .CommonLink__item-white .CommonLink__text-large {
    border-top: none;
    border-right: 2px solid #18812C;
  }
  .commonLink__list .CommonLink__item a {
    padding: 10px 10px 5px;
  }
  .commonLink__list .CommonLink__item a::before {
    top: 50%;
    left: initial;
    right: 10px;
    transform: translate(0, -50%);
  }
  .commonLink__list .CommonLink__item .CommonLink__text {
    margin-right: 40px;
    padding-left: 10px;
  }
  .commonLink__list .CommonLink__item .CommonLink__text-small {
    padding-top: 0;
  }
  .commonLink__list .CommonLink__item .CommonLink__text-large {
    padding-top: 0;
    font-weight: 600;
  }
}
.sns__list {
  position: fixed;
  left: 20px;
  bottom: 50px;
  z-index: 100;
}
.sns__list .sns__item:not(:last-child) {
  margin-bottom: 10px;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .sns__list {
    display: none;
  }
}
.whatMoringa__wrapper {
  position: relative;
  width: calc(100% - 80px);
  max-width: 1200px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 100px;
  border-radius: 50px;
  border: 5px solid #18812C;
  z-index: 10;
}
.whatMoringa__wrapper::before, .whatMoringa__wrapper::after {
  content: "WHAT IS MORINGA?";
  font-family: "Zen Maru Gothic", serif;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.25em;
  display: inline-block;
  color: #18812C;
  position: absolute;
  top: 47%;
}
.whatMoringa__wrapper::before {
  left: -90px;
  transform: rotate(90deg);
}
.whatMoringa__wrapper::after {
  right: -90px;
  transform: rotate(-90deg);
}
.whatMoringa__wrapper-inner {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}
.whatMoringa__wrapper-inner .object-line {
  width: 150px;
  height: 2px;
  border-top: 2px dotted #18812C;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
}
.whatMoringa__wrapper-inner .object-line:last-child {
  top: initial;
  bottom: -50px;
}
.whatMoringa__wrapper-inner .object-line::before, .whatMoringa__wrapper-inner .object-line::after {
  content: "●";
  color: #18812C;
  position: absolute;
  line-height: 1;
  font-size: 14px;
  position: absolute;
  top: -9px;
}
.whatMoringa__wrapper-inner .object-line::before {
  left: -4px;
}
.whatMoringa__wrapper-inner .object-line::after {
  right: -4px;
}
.whatMoringa__wrapper .title {
  color: #18812C;
  font-family: "Zen Maru Gothic", serif;
  position: absolute;
  top: 0;
  left: 0;
}
.whatMoringa__wrapper .title-small {
  font-size: 1.25rem;
  font-weight: 500;
  display: block;
}
.whatMoringa__wrapper .title-large {
  font-size: 2.375rem;
  line-height: 1.4;
  font-weight: 700;
  display: block;
}
.whatMoringa__wrapper .title__common {
  font-size: 2.375rem;
  line-height: 1.4;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}
.whatMoringa__wrapper .title__common-small {
  font-size: 1rem;
  color: #18812C;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  position: absolute;
  top: 4rem;
  left: 0;
}
.whatMoringa__wrapper .whatMoringa__text {
  padding-top: 120px;
}
.whatMoringa__wrapper .whatMoringa__text-desc {
  margin-bottom: 30px;
}
.whatMoringa__wrapper .whatMoringa__image {
  border-radius: 30px;
  overflow: hidden;
  min-width: 310px;
  width: 30%;
}

.whatMoringa__commonWrapper {
  width: min(100%, 1080px);
  position: relative;
  border-width: 3px;
  margin-top: -120px;
  margin-bottom: 100px;
}

.whatMoringa__wrapperLink {
  position: absolute;
  bottom: -100px;
  right: 50px;
  display: inline-block;
  background-color: #C4E597;
  border: 3px solid #18812C;
  border-radius: 0 0 30px 30px;
  padding: 10px 20px;
  min-height: 100px;
  text-align: center;
}
.whatMoringa__wrapperLink a {
  text-decoration: none;
}
.whatMoringa__wrapperLink-title {
  color: #18812C;
  font-family: "Zen Maru Gothic", serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.whatMoringa__wrapperLink-desc {
  font-size: 0.75rem;
  color: #000000;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .whatMoringa__wrapper {
    width: calc(100% - 30px);
    margin: 0 auto;
    padding: 60px 35px 70px;
    border: 2px solid #18812C;
  }
  .whatMoringa__wrapper::before, .whatMoringa__wrapper::after {
    font-size: 10px;
  }
  .whatMoringa__wrapper::before {
    left: -50px;
  }
  .whatMoringa__wrapper::after {
    right: -50px;
  }
  .whatMoringa__wrapper-inner {
    gap: 20px;
    flex-direction: column;
  }
  .whatMoringa__wrapper-inner .object-line {
    top: -30px;
  }
  .whatMoringa__wrapper-inner .object-line:last-child {
    bottom: -30px;
  }
  .whatMoringa__wrapper .title {
    position: initial;
  }
  .whatMoringa__wrapper .title-small {
    margin-bottom: 0;
    font-size: 14px;
  }
  .whatMoringa__wrapper .title-large {
    font-size: 1.5rem;
  }
  .whatMoringa__wrapper .title__common {
    font-size: 1.5rem;
    margin-bottom: 10px;
    position: initial;
  }
  .whatMoringa__wrapper .title__common-small {
    font-size: 14px;
    position: initial;
  }
  .whatMoringa__wrapper .whatMoringa__text {
    padding-top: 0;
  }
  .whatMoringa__wrapper .whatMoringa__text .btn__wrapper {
    padding: 0;
  }
  .whatMoringa__wrapper .whatMoringa__image {
    width: 90%;
    min-width: initial;
  }
  .whatMoringa__commonWrapper {
    margin-top: 20px;
    margin-bottom: 120px;
    border-width: 2px;
  }
  .whatMoringa__wrapperLink {
    right: 50%;
    transform: translateX(50%);
    border-width: 2px;
    bottom: -80px;
    width: 70%;
    min-height: 80px;
    line-height: 1.5;
  }
  .whatMoringa__wrapperLink-title {
    font-size: 1.125rem;
    margin-bottom: 0;
  }
  .whatMoringa__wrapperLink-desc {
    display: none;
  }
}
.text__anim {
  position: relative;
}
.text__anim::after {
  content: "";
  position: relative;
  background-image: url(../../img/common/anim-text.png);
  background-repeat: repeat-x;
  width: 100%;
  padding-top: 80px;
  display: block;
  z-index: -1;
  margin-top: -2%;
  animation: bgscroll 30s linear infinite;
}
.text__anim-full::after {
  width: 100vw;
  margin: 0 calc(49% - 50vw);
  margin-top: 0;
  position: absolute;
  top: 0;
  left: 0;
}

/*===========================
sp
===========================*/
@media screen and (max-width: 767px) {
  .text__anim::after {
    padding-top: 30px;
    background-size: cover;
  }
}/*# sourceMappingURL=style.css.map */