@charset "UTF-8";
.js-fade {
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
  opacity: 0;
}

.js-fade.active {
  opacity: 1;
}

.js-fade-Vr {
  -webkit-transition-duration: .8s;
          transition-duration: .8s;
  opacity: 0;
  -webkit-transform: translateY(3rem);
          transform: translateY(3rem);
}

.js-fade-Vr.active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.js-fade-Scale {
  -webkit-transition-duration: .5s;
          transition-duration: .5s;
  opacity: 0;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  -webkit-transform-origin: left;
          transform-origin: left;
}

.js-fade-Scale.active {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}

/*===================== ▼ typing animation ▼ == */
.js-texttyping {
  opacity: 0;
}

.js-texttyping.onView,
.js-border::before.onView {
  opacity: 1;
}

.js-texttyping span,
.js-border::before {
  opacity: 0;
}

.js-texttyping span.js-typing_on {
  -webkit-animation: text_anime_on 1s ease-out forwards;
          animation: text_anime_on 1s ease-out forwards;
}

@-webkit-keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*===================== ▲ typing animation ▲ == */
/*===================== ▼ border animation ▼ == */
@-webkit-keyframes border_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes border_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.js-border::before.onView {
  -webkit-animation: border_anime_on 1s ease-out forwards;
          animation: border_anime_on 1s ease-out forwards;
}

/*===================== ▲ border animation ▲ == */
/*===================== ▼ circle animation ▼ == */
@-webkit-keyframes circle_anime_on {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes circle_anime_on {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.js-circle {
  -webkit-animation: circle_anime_on 8s linear infinite;
          animation: circle_anime_on 8s linear infinite;
}

/*===================== ▲ circle animation ▲ == */
@-webkit-keyframes loop {
  0% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes loop {
  0% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

:root {
  --color-common: #000000;
  --color-bg: rgba(187,194,222,0.5);
  --color-light: #fff;
  --color-text-01: #4D4D4D;
  --color-text-02: #808080;
  --color-text-03: #595757;
  --color-text-04: #717071;
  --font-primary: kozuka-mincho-pro, serif;
  --font-text: a-otf-ryumin-pr6n,serif;
  --font-decolation:adobe-garamond-pro, serif;
  --font-button: freight-display-pro, serif;
}

html {
  font-size: 62.5%;
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  html {
    font-size: calc(10* (100vw / 1200));
  }
}

@media screen and (max-width: 767px) {
  html {
    font-size: calc(10* (100vw / 750));
  }
}

.main-container__landing-page img,
.main-container__landing-page video,
.main-container__landing-page svg {
  width: 100%;
  height: auto;
}

.main-container__landing-page * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.main-container__landing-page a,
.main-container__landing-page picture {
  display: block;
}

@media screen and (min-width: 768px) {
  .main-container__landing-page .hidden_desktop {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .main-container__landing-page .hidden_mobile {
    display: none !important;
  }
  .main-container__landing-page .order_1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .main-container__landing-page .order_2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

/*//////////////////////////////////////////////////

Title : _layout.css
For   : 美人百花6月号 掲載洗練されたフェミニン感はそのままに、ほんのり爽やかさを注入♡ NOELAの〝すっきり甘口〟サマーレディ

Created       : 2022-05-02
Last Modified : 2022-05-06ß

==========================================

Content

    main

//////////////////////////////////////////////////*/
/* ==============================================================================================
                                            main
============================================================================================== */
.main-container__landing-page {
  width: 100%;
  margin: 0 auto;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  font-family: var(--font-primary);
  line-height: 1;
  letter-spacing: 0;
  color: var(--color-common);
  overflow: hidden;
}

.main-container__landing-page #breadcrumb {
  font-family: 'ヒラギノ角ゴ ProN W3', Hiragino Kaku Gothic ProN, "メイリオ", Meiryo, sans-serif;
  line-height: 1;
  color: #1C1C1C;
}

.scrTop__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  font-family: 'ヒラギノ角ゴ ProN W3', Hiragino Kaku Gothic ProN, "メイリオ", Meiryo, sans-serif;
}

/* //////////////////////////////////////////////////////////////////////////////////////////////
                                          for deksktop
////////////////////////////////////////////////////////////////////////////////////////////// */
@media screen and (min-width: 768px) {
  .main-container__landing-page {
    padding-top: 80px;
    padding-bottom: 278px;
  }
  .main-container__landing-page #breadcrumb {
    max-width: 1280px;
    margin: 0 auto 20px;
    padding: 0 40px;
    font-size: 10px;
  }
  .scrTop__btn {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    max-width: 1280px;
    padding: 0 40px;
    font-size: 12px;
  }
}

/* //////////////////////////////////////////////////////////////////////////////////////////////
                                          for mobile
////////////////////////////////////////////////////////////////////////////////////////////// */
@media screen and (max-width: 767px) {
  .main-container__landing-page {
    padding-top: 8rem;
    padding-bottom: 10rem;
  }
  .main-container__landing-page #breadcrumb {
    width: 100%;
    margin-bottom: 3rem;
    padding: 0 2.6rem;
    font-size: 2.4rem;
  }
  .scrTop__btn {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    font-size: 2.6rem;
  }
}

/*//////////////////////////////////////////////////

Title : _content.css
For   : 美人百花6月号 掲載洗練されたフェミニン感はそのままに、ほんのり爽やかさを注入♡ NOELAの〝すっきり甘口〟サマーレディ

Created       : 2022-05-02
Last Modified : 2022-05-06

==========================================

Content

    contents

//////////////////////////////////////////////////*/
/* ==============================================================================================
									contents
============================================================================================== */
.main-container__landing-page .l-content__wrapper {
  margin: 0 auto;
  position: relative;
}

.main-container__landing-page .l-content__wrapper--sec01::before {
  background-image: url(../img/svg/title_01.svg);
}

.main-container__landing-page .l-content__wrapper--sec02::before {
  background-image: url(../img/svg/title_02.svg);
}

.main-container__landing-page .l-content__wrapper--sec03::before {
  background-image: url(../img/svg/title_03.svg);
}

.main-container__landing-page .l-content__wrapper::before {
  display: block;
  content: "";
  background-repeat: no-repeat;
  background-size: 100%;
  width: var(--desktop-w, var(--mobile-w));
  height: var(--desktop-h, var(--mobile-h));
  position: absolute;
  top: 0;
}

.main-container__landing-page .l-content__block {
  position: relative;
}

.main-container__landing-page .l-content__block--sec02-1::before, .main-container__landing-page .l-content__block--sec03-1::before {
  display: block;
  width: var(--desktop-w, var(--mobile-w));
  height: var(--desktop-h, var(--mobile-h));
  position: absolute;
  background: var(--color-bg);
  z-index: -1;
  content: "";
}

.main-container__landing-page .l-content__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.main-container__landing-page .l-content__unit {
  position: relative;
}

.main-container__landing-page .l-content__unit--sec01-1 {
  z-index: 2;
}

.main-container__landing-page .l-content__unit--sec01-1::before {
  display: block;
  position: absolute;
  color: var(--color-light);
  -webkit-transform: rotate(-8deg);
          transform: rotate(-8deg);
  content: "＼ベストを脱ぐとノースリワンピに／";
  z-index: 5;
  pointer-events: none;
}

.main-container__landing-page .l-content__unit--sec01-4 {
  background: var(--color-bg);
}

.main-container__landing-page .l-content__unit--sec02-2::before {
  display: block;
  background-repeat: no-repeat;
  background-size: 100%;
  width: var(--desktop-w, 9.5rem);
  height: var(--desktop-h, 22.5rem);
  position: absolute;
  content: "";
}

.main-container__landing-page .l-content__unit--sec01-2::before, .main-container__landing-page .l-content__unit--sec02-1::before, .main-container__landing-page .l-content__unit--sec03-1::before {
  display: block;
  background-repeat: no-repeat;
  background-size: 100%;
  width: var(--desktop-w, var(--mobile-w));
  height: var(--desktop-h, var(--mobile-h));
  position: absolute;
  content: "";
}

.main-container__landing-page .l-content__title {
  color: var(--color-text-03);
}

.main-container__landing-page .l-content__color {
  color: var(--color-text-04);
}

.main-container__landing-page .l-content__title, .main-container__landing-page .l-content__color {
  text-align: center;
  letter-spacing: 0;
}

.main-container__landing-page .l-credit {
  color: var(--color-text-01);
  font-weight: 500;
}

.main-container__landing-page .l-credit__list {
  letter-spacing: 0;
}

.main-container__landing-page .l-credit span {
  display: inline-block;
  white-space: nowrap;
}

.main-container__landing-page .l-button {
  width: var(--btn-w, 36.2rem);
  height: var(--btn-h, 6.8rem);
  border: 0.5px solid var(--color-common);
  font-family: var(--font-button);
  font-weight: 600;
  color: var(--color-text-02);
  letter-spacing: 0;
}

.main-container__landing-page .l-button a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* //////////////////////////////////////////////////////////////////////////////////////////////
                                    for desktop
////////////////////////////////////////////////////////////////////////////////////////////// */
@media screen and (min-width: 768px) {
  .main-container__landing-page .l-content__wrapper {
    max-width: 700px;
  }
  .main-container__landing-page .l-content__wrapper--sec01 {
    padding-top: 80px;
  }
  .main-container__landing-page .l-content__wrapper--sec01::before {
    --desktop-w: 235px;
    --desktop-h: 105px;
    right: 5px;
  }
  .main-container__landing-page .l-content__wrapper--sec02 {
    margin-top: 27px;
    padding-top: 105px;
  }
  .main-container__landing-page .l-content__wrapper--sec02::before {
    --desktop-w: 195px;
    --desktop-h: 85px;
    left: 18px;
  }
  .main-container__landing-page .l-content__wrapper--sec03 {
    margin-top: 68px;
    padding-top: 72px;
  }
  .main-container__landing-page .l-content__wrapper--sec03::before {
    --desktop-w: 195px;
    --desktop-h: 90px;
    right: -8px;
  }
  .main-container__landing-page .l-content__block {
    position: relative;
  }
  .main-container__landing-page .l-content__block--sec01-1 {
    padding-right: 40px;
  }
  .main-container__landing-page .l-content__block--sec01-2 {
    margin-top: 48px;
    padding-left: 50px;
  }
  .main-container__landing-page .l-content__block--sec02-1 {
    padding-left: 30px;
  }
  .main-container__landing-page .l-content__block--sec02-1::before {
    --desktop-w: 143px;
    --desktop-h: 945px;
    top: -45px;
    left: 0;
  }
  .main-container__landing-page .l-content__block--sec02-2 {
    margin-top: 15px;
    padding-right: 30px;
  }
  .main-container__landing-page .l-content__block--sec03-1 {
    padding-left: 155px;
    padding-right: 40px;
  }
  .main-container__landing-page .l-content__block--sec03-1::before {
    --desktop-w: 142px;
    --desktop-h: 943px;
    top: -20px;
    right: 0;
  }
  .main-container__landing-page .l-content__block--sec03-2 {
    margin-top: 20px;
    padding-right: 65px;
  }
  .main-container__landing-page .l-content__unit--sec01-1 {
    width: 255px;
    margin-top: 33.5px;
  }
  .main-container__landing-page .l-content__unit--sec01-1::before {
    top: 22px;
    left: 15px;
    font-size: 10px;
    letter-spacing: 0.17em;
  }
  .main-container__landing-page .l-content__unit--sec01-2 {
    width: 510px;
    margin-left: -110px;
    padding-right: 50px;
  }
  .main-container__landing-page .l-content__unit--sec01-2::before {
    --desktop-w: 17.5px;
    --desktop-h: 410px;
    top: 35px;
    right: 0;
    background-image: url(../img/svg/desc_01.svg);
  }
  .main-container__landing-page .l-content__unit--sec01-3 {
    margin-top: 10px;
  }
  .main-container__landing-page .l-content__unit--sec01-3 .l-credit a span:first-child {
    width: 245px;
  }
  .main-container__landing-page .l-content__unit--sec01-3 .l-button {
    margin-top: 55px;
    margin-left: 10px;
  }
  .main-container__landing-page .l-content__unit--sec01-4 {
    width: 277px;
    height: 333px;
    margin-left: 40px;
  }
  .main-container__landing-page .l-content__unit--sec01-4 .l-content__unit {
    margin-top: 20px;
  }
  .main-container__landing-page .l-content__unit--sec01-4 .l-content__unit--01 {
    width: 118px;
  }
  .main-container__landing-page .l-content__unit--sec01-4 .l-content__unit--02 {
    margin-left: 6.5px;
    width: 110px;
  }
  .main-container__landing-page .l-content__unit--sec02-1 {
    width: 490px;
    padding-left: 55px;
  }
  .main-container__landing-page .l-content__unit--sec02-1::before {
    --desktop-w: 18px;
    --desktop-h: 410px;
    top: 10px;
    left: 0;
    background-image: url(../img/svg/desc_02.svg);
  }
  .main-container__landing-page .l-content__unit--sec02-2 {
    width: 145px;
    margin-top: 505px;
    margin-left: 10px;
  }
  .main-container__landing-page .l-content__unit--sec02-2::before {
    --desktop-w: 60px;
    --desktop-h: 65px;
    top: -65px;
    left: -28px;
    background-image: url(../img/svg/arrow.svg);
  }
  .main-container__landing-page .l-content__unit--sec02-3 .l-credit a span:first-child {
    width: 270px;
  }
  .main-container__landing-page .l-content__unit--sec02-3 .l-button {
    margin-top: 30px;
    margin-left: 25px;
  }
  .main-container__landing-page .l-content__unit--sec03-1 {
    width: 500px;
    padding-right: 65px;
  }
  .main-container__landing-page .l-content__unit--sec03-1::before {
    --desktop-w: 17px;
    --desktop-h: 440px;
    top: 25px;
    right: 0;
    background-image: url(../img/svg/desc_03.svg);
  }
  .main-container__landing-page .l-content__unit--sec03-2 .l-credit a span:first-child {
    width: 225px;
  }
  .main-container__landing-page .l-content__unit--sec03-2 .l-button {
    margin-top: 35px;
    margin-left: 5px;
  }
  .main-container__landing-page .l-content__title {
    margin-top: 14px;
    font-size: 17px;
    letter-spacing: 0.02em;
  }
  .main-container__landing-page .l-content__color {
    margin-top: 6px;
    font-size: 18px;
  }
  .main-container__landing-page .l-credit {
    font-size: 17px;
  }
  .main-container__landing-page .l-credit__list:not(:first-child) {
    margin-top: 4px;
  }
  .main-container__landing-page .l-credit__list a span:first-child {
    letter-spacing: 0.08em;
  }
  .main-container__landing-page .l-credit__list a span:last-child {
    line-height: 1.5;
  }
  .main-container__landing-page .l-button {
    --btn-w: 310px;
    --btn-h: 60px;
    font-size: 26px;
  }
}

/* //////////////////////////////////////////////////////////////////////////////////////////////
                                    for mobile
////////////////////////////////////////////////////////////////////////////////////////////// */
@media screen and (max-width: 767px) {
  .main-container__landing-page {
    background-size: 100%;
    top: 110px;
    background-position: center 102px;
    background-repeat: no-repeat;
  }
  .main-container__landing-page .l-content__wrapper--sec01 {
    padding-top: 11.5rem;
  }
  .main-container__landing-page .l-content__wrapper--sec01::before {
    --mobile-w: 22.8rem;
    --mobile-h: 10.5rem;
    right: 2.5rem;
  }
  .main-container__landing-page .l-content__wrapper--sec02 {
    margin-top: 8rem;
    padding-top: 12.5rem;
  }
  .main-container__landing-page .l-content__wrapper--sec02::before {
    --mobile-w: 23.5rem;
    --mobile-h: 9.5rem;
    left: 6rem;
  }
  .main-container__landing-page .l-content__wrapper--sec03 {
    margin-top: 11.5rem;
    padding-top: 15rem;
  }
  .main-container__landing-page .l-content__wrapper--sec03::before {
    --mobile-w: 23.8rem;
    --mobile-h: 10.8rem;
    right: 3.2rem;
  }
  .main-container__landing-page .l-content__block {
    position: relative;
  }
  .main-container__landing-page .l-content__block--sec01-1 {
    padding-right: 4.3rem;
  }
  .main-container__landing-page .l-content__block--sec01-2 {
    margin-top: 3.8rem;
  }
  .main-container__landing-page .l-content__block--sec02-1 {
    padding-left: 3.5rem;
  }
  .main-container__landing-page .l-content__block--sec02-1::before {
    --mobile-w: 12rem;
    --mobile-h: 128.5rem;
    top: -4.5rem;
    left: 0;
  }
  .main-container__landing-page .l-content__block--sec02-1 .l-content__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .main-container__landing-page .l-content__block--sec02-2 {
    margin-top: 3.3rem;
    padding-right: 6.2rem;
  }
  .main-container__landing-page .l-content__block--sec03-1 {
    padding-right: 2rem;
  }
  .main-container__landing-page .l-content__block--sec03-1::before {
    --mobile-w: 13.5rem;
    --mobile-h: 127rem;
    top: -5rem;
    right: 0;
  }
  .main-container__landing-page .l-content__block--sec03-2 {
    margin-top: 3.5rem;
    padding-right: 29rem;
  }
  .main-container__landing-page .l-content__unit--sec01-1 {
    width: 25.4rem;
    margin-top: 4rem;
  }
  .main-container__landing-page .l-content__unit--sec01-1::before {
    top: 2.2rem;
    left: 1.5rem;
    font-size: 1rem;
    letter-spacing: 0.17em;
  }
  .main-container__landing-page .l-content__unit--sec01-2 {
    width: 64.5rem;
    margin-left: -21rem;
  }
  .main-container__landing-page .l-content__unit--sec01-2::before {
    --mobile-w: 1.78rem;
    --mobile-h: 41.5rem;
    top: 5.1rem;
    right: 3.6rem;
    background-image: url(../img/svg/desc_01_sp.svg);
    z-index: 2;
    pointer-events: none;
  }
  .main-container__landing-page .l-content__unit--sec01-3 {
    margin-top: 1rem;
  }
  .main-container__landing-page .l-content__unit--sec01-3 .l-credit a span:first-child {
    width: 27rem;
  }
  .main-container__landing-page .l-content__unit--sec01-3 .l-button {
    margin-top: 5.55rem;
  }
  .main-container__landing-page .l-content__unit--sec01-4 {
    width: 26.5rem;
    height: 31.5rem;
    margin-left: 3.8rem;
  }
  .main-container__landing-page .l-content__unit--sec01-4 .l-content__unit {
    margin-top: 1.5rem;
  }
  .main-container__landing-page .l-content__unit--sec01-4 .l-content__unit--01 {
    width: 11.8rem;
  }
  .main-container__landing-page .l-content__unit--sec01-4 .l-content__unit--02 {
    margin-left: .6rem;
    width: 11rem;
  }
  .main-container__landing-page .l-content__unit--sec02-1 {
    width: 69.5rem;
    padding-left: 5rem;
  }
  .main-container__landing-page .l-content__unit--sec02-1::before {
    --mobile-w: 1.82rem;
    --mobile-h: 41rem;
    top: 1.5rem;
    left: 0;
    background-image: url(../img/svg/desc_02_sp.svg);
  }
  .main-container__landing-page .l-content__unit--sec02-2 {
    width: 13.7rem;
    position: absolute;
    bottom: -19rem;
    right: 2.5rem;
  }
  .main-container__landing-page .l-content__unit--sec02-2::before {
    top: -23.5rem;
    left: -2.3rem;
    background-image: url(../img/svg/arrow_sp.svg);
  }
  .main-container__landing-page .l-content__unit--sec02-3 .l-credit a span:first-child {
    width: 30.5rem;
  }
  .main-container__landing-page .l-content__unit--sec02-3 .l-button {
    margin-top: 3.95rem;
    margin-left: 1.8rem;
    --btn-w: 33.5rem;
    --btn-h: 5.5rem;
  }
  .main-container__landing-page .l-content__unit--sec03-1 {
    width: 67.6rem;
    padding-right: 3rem;
  }
  .main-container__landing-page .l-content__unit--sec03-1::before {
    --mobile-w: 1.71rem;
    --mobile-h: 44.5rem;
    top: .5rem;
    right: 0;
    background-image: url(../img/svg/desc_03_sp.svg);
  }
  .main-container__landing-page .l-content__unit--sec03-2 .l-credit a span:first-child {
    width: 25.5rem;
  }
  .main-container__landing-page .l-content__unit--sec03-2 .l-button {
    margin-top: 3.8rem;
    margin-left: .3rem;
    --btn-w: 33.5rem;
    --btn-h: 6.3rem;
    font-size: 2.8rem;
  }
  .main-container__landing-page .l-content__title {
    margin-top: 1rem;
    font-size: 1.7rem;
  }
  .main-container__landing-page .l-content__color {
    margin-top: .5rem;
    font-size: 1.7rem;
  }
  .main-container__landing-page .l-credit {
    font-size: 1.8rem;
  }
  .main-container__landing-page .l-credit__list:not(:first-child) {
    margin-top: 0.3rem;
  }
  .main-container__landing-page .l-credit__list a span:first-child {
    letter-spacing: 0.1em;
  }
  .main-container__landing-page .l-credit__list a span:last-child {
    line-height: 1.5;
  }
  .main-container__landing-page .l-button {
    font-size: 3.1rem;
  }
}

/*//////////////////////////////////////////////////

Title : _firstview.css
For   : 美人百花6月号 掲載洗練されたフェミニン感はそのままに、ほんのり爽やかさを注入♡ NOELAの〝すっきり甘口〟サマーレディ

Created       : 2022-05-02
Last Modified : 2022-05-06

==========================================

Content

    first view

//////////////////////////////////////////////////*/
/* ==============================================================================================
                                    firstview
============================================================================================== */
.main-container__landing-page .l-firstview__title {
  margin: 0 auto;
  width: var(--w, 100%);
}

/* //////////////////////////////////////////////////////////////////////////////////////////////
                                    for desktop
////////////////////////////////////////////////////////////////////////////////////////////// */
@media screen and (min-width: 768px) {
  .main-container__landing-page .l-firstview {
    margin-top: 50px;
    margin-bottom: 75px;
  }
  .main-container__landing-page .l-firstview__title {
    --w: 785px;
  }
}

/* //////////////////////////////////////////////////////////////////////////////////////////////
                                    for mobile
////////////////////////////////////////////////////////////////////////////////////////////// */
@media screen and (max-width: 767px) {
  .main-container__landing-page .l-firstview {
    margin-top: 10rem;
    margin-bottom: 6.5rem;
  }
}

/*//////////////////////////////////////////////////

Title : _foot.css
For   : 美人百花6月号 掲載洗練されたフェミニン感はそのままに、ほんのり爽やかさを注入♡ NOELAの〝すっきり甘口〟サマーレディ

Created       : 2022-05-02
Last Modified : 2022-05-06

==========================================

Content

    foot

//////////////////////////////////////////////////*/
/* ==============================================================================================
										foot
============================================================================================== */
.main-container__landing-page .l-footer {
  margin: 0 auto;
}

.main-container__landing-page .l-footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.main-container__landing-page .l-footer__unit {
  width: var(--w, 41.5rem);
}

/* //////////////////////////////////////////////////////////////////////////////////////////////
                                    for desktop
////////////////////////////////////////////////////////////////////////////////////////////// */
@media screen and (min-width: 768px) {
  .main-container__landing-page .l-footer {
    margin-top: 250px;
  }
  .main-container__landing-page .l-footer__unit {
    --w: 297px;
  }
  .main-container__landing-page .l-footer__unit:last-of-type {
    margin-left: 36px;
  }
}

/* //////////////////////////////////////////////////////////////////////////////////////////////
                                    for mobile
////////////////////////////////////////////////////////////////////////////////////////////// */
@media screen and (max-width: 767px) {
  .main-container__landing-page .l-footer {
    margin-top: 21.5rem;
  }
  .main-container__landing-page .l-footer__inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .main-container__landing-page .l-footer__unit:last-of-type {
    margin-top: 4rem;
  }
}
/*# sourceMappingURL=layout.css.map */