@charset "UTF-8";

/*===================
  Layout
===================*/
:root {
  --l_fontSize-xxl: 32px;
  --l_fontSize-xl: 24px;
  --l_fontSize-l: 20px;
  --l_fontSize-m: 18px;
  --l_fontSize-base: 16px;
  --l_fontSize-s: 14px;
  --l_fontSize-xs: 12px;

  --l_fontWeight-bold: 600;
  --l_fontWeight-regular: 400;
  --l_fontWeight-medium: 500;

  --l_margin-s: 20px;
  --l_margin-base: 30px;
  --l_margin-ms: 40px;
  --l_margin-m: 60px;
  --l_margin-ml: 80px;
  --l_margin-l: 120px;

  --l_color-black: #000;
  --l_color-pink: #FFB6C7;
  --l_color-white: #fff;
  --l_color-border: rgba(0,0,0,0.2);
  --l_color-link: #0000FF;
  --l_color-greenbg: rgba(55,255,44,0.8);
  --l_color-gradation: linear-gradient(to right, #FDFFDC, #F0FFD7);
}

.l-font_serif {
  font-family: "Noto Serif TC", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

/* body */
body {
  font-family: "Roboto",
    "Helvetica Neue",
    Arial,
    "Noto Sans HK",
    sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: 0.05em;
  line-height: 1.75em;
  color: var(--l_color-black);
  font-size: var(--l_fontSize-base);
  font-weight: var(--l_fontSize-regular);
}

img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}

/* button */
.c-btn__cv_area {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 3em;
}
.c-btn__cv {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  gap: .4em;
  width: 100%;
  max-width: 220px;
  padding: 0.4em 1em;
  color: var(--l_color-white);
  background-color: var(--l_color-black);
  border-radius: 999px;
  transition: .2s ease-out;
}
.c-btn__cv img {
  width: 1em;
  height: 1em;
}
.c-btn__cv img.c-btn__cv__arrow {
  margin-left: 0.8em;
  transition: .2s ease-out;
  width: 18px;
  height: 18px;
}
.c-btn__cv:hover {
  opacity: .8;
}
.c-btn__cv:hover .c-btn__cv__arrow {
  transform: translateX(6px);
}

/* link */
.c-link_text {
  color: var(--l_color-link);
}

/* text */
.c-text_center {
  text-align: center;
}

/* card */
.l-card {
  padding: var(--l_margin-m) var(--l_margin-ms);
  border-radius: 30px;
  background-color: var(--l_color-white);
  font-size: var(--l_fontSize-s);
}
.l-card.__gray {
  background-color: #F7F7F7;
}
.l-card__headline {
  margin-bottom: 2em;
  font-size: var(--l_fontSize-xxl);
  font-weight: var(--l_fontWeight-medium);
}
.l-card__headline img {
  height: 1em;
  width: auto;
}
.l-card__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-card__content {
  width: 40%;
}
.l-card__visual {
  width: 50%;
}
.l-card__visual img {
  width: 100%;
  height: auto;
}

/* section */
.l-section {
  position: relative;
  width: 100%;
  background-color: var(--l_color-white);
}
.l-section__inner {
  margin: 0 auto;
  width: 100%;
  max-width: 1280px;
  padding-left: var(--l_margin-base);
  padding-right: var(--l_margin-base);
}
.l-section.__card {
  border-radius: 40px 40px 0 0;
}
.l-section__h2 {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto 5em;
  padding: 0 var(--l_margin-base);
  font-size: var(--l_fontSize-xs);
  font-weight: var(--l_fontWeight-medium);
}
.l-section__h2 > div {
  display: block;
  padding: 1em 0;
  border-top: 1px solid var(--l_color-border);
}
.l-section__h3 {
  width: min(100%, 700px);
}
.l-section__h3 img {
  width: 100%;
  height: auto;
}
.l-section__h3_sub {
  margin-top: .6em;
}
.l-section__h4 {
  margin-bottom: 2em;
  font-size: var(--l_fontSize-xxl);
  font-weight: var(--l_fontWeight-medium);
}
.l-section__body {
  padding: 4em 0;
}

/* main */
.l-main {
  margin-top: 120px;
}

/* header */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  padding: 20px;
  z-index: 99;
  transition: .4s ease-out;
}
.l-header__container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: .6em;
  width: 100%;
  height: 100%;
}
.l-header__logo {
  display: block;
  height: 100%;
  flex-shrink: 0;
}
.l-header__logo img {
  height: 100%;
  width: auto;
}
.l-header__nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}
.l-header__nav ul li + li {
  margin-left: .5em;
}
.l-header__nav ul li a {
  display: block;
  padding: .3em .7em;
  font-size: var(--l_fontSize-s);
  line-height: 1.2;
  border-radius: 999px;
  border: 1px solid var(--l_color-black);
  backdrop-filter: blur(10px);
  transition: .2s ease-out;
}
.l-header__nav ul li a:hover {
  backdrop-filter: none;
  background-color: var(--l_color-black);
  color: #fff;
}
.l-header__right {
  position: relative;
  top: -5px;
  right: -5px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction:row-reverse;
  flex-wrap: wrap;
  gap: .5em;
}
.l-header__language {
  margin-right: .5em;
  font-size: var(--l_fontSize-s);
}
.l-header__language ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: .2em;
}
.l-header__language__icon {
  margin-right: .2em;
  width: 1em;
  height: 1em;
}
.l-header__language li.__selected {
  font-weight: var(--l_fontWeight-medium);
  text-decoration: underline;
}
.l-header__language li a {
  opacity: .6;
  transition: .2s ease-out;
}
.l-header__language li a:hover {
  opacity: 1;
}
.l-header .c-btn__cv {
  width: auto;
  font-size: var(--l_fontSize-s);
}

/* footer */
.l-footer {
  position: relative;
  background-color: var(--l_color-white);
}
.l-footer__visual {
  position: relative;
  width: 100%;
  height: 300px;
  z-index: 1;
}
.l-footer__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.l-footer__visual::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5) 70%, rgba(0,0,0,1));
}
.l-footer__contents__copyright {
  font-size: var(--l_fontSize-xs);
  padding: 3em 1em;
  background-color: var(--l_color-black);
  color: #fff;
}

@media screen and (max-width: 767px) {
  :root {
    --l_fontSize-xxl: 24px;
    --l_fontSize-xl: 22px;
    --l_fontSize-l: 18px;
    --l_fontSize-m: 16px;
    --l_fontSize-base: 14px;
    --l_fontSize-s: 12px;

    --l_margin-s: 15px;
    --l_margin-base: 20px;
    --l_margin-ms: 20px;
    --l_margin-m: 40px;
    --l_margin-ml: 48px;
    --l_margin-l: 60px;
  }
  .__pc {
    display: none;
  }

  .l-card {
    border-radius: 20px;
  }
  .l-card__headline {
    margin-bottom: 1.6em;
  }

  .l-section.__card {
    border-radius: 20px 20px 0 0;
    margin-top: -30px;
  }
  .l-section__h2 {
    margin-bottom: 3em;
  }
  .l-section__body {
    padding: 3em 0;
  }
  .l-header {
    height: 60px;
    padding: 15px;
  }

  .c-btn__cv img.c-btn__cv__arrow {
    width: 16px;
    height: 16px;
  }
}

@media screen and (min-width: 768px) {
  .__sp {
    display: none;
  }
}

@media screen and (max-width: 949px) {
  .l-card__container {
    flex-wrap: wrap;
  }
  .l-card__content {
    width: 100%;
  }
  .l-card__visual {
    margin-top: 3em;
    width: 100%;
  }

  .l-header__nav {
    display: none;
  }
}



/*===================
  Page - Top
===================*/

/* common */
.p-anchor {
  margin-top: -90px;
  padding-top: 90px;
}

/* mv */
.p-top__mv {
  margin-bottom: -40px;
}
.p-top__mv__info {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 3em auto 1em;
  font-weight: var(--l_fontWeight-medium);
}
.p-top__mv__info > * {
  margin: 0 1em;
}
.p-top__mv__date {
  display: flex;
  align-items: center;
  font-size: var(--l_fontSize-l);
}
.p-top__mv__date::after {
  content: '';
  position: relative;
  display: block;
  margin: 0 .1em 0.4em .4em;
  width: 2.5em;
  height: 1em;
  border-bottom: 1.5px solid var(--l_color-black);
  order: 2;
}
.p-top__mv__date_block:first-of-type {
  order: 1;
}
.p-top__mv__date_block:nth-of-type(2) {
  order: 3;
}
.p-top__mv__date_block > span {
  font-size: var(--l_fontSize-xl);
  padding: 0 .2em;
}
.p-top__mv__date_block > small {
  font-size: var(--l_fontSize-xs);
}
.p-top__mv__place {
  font-size: var(--l_fontSize-base);
}
.p-top__mv__visual {
  width: 100%;
  height: min(90vh, 800px);
  border-radius: 40px 40px 0 0;
  overflow: hidden;
}
.p-top__mv__visual img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.p-top__mv__banner {
  position: fixed;
  bottom: 10px;
  left: 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: calc(100% - 20px);
  max-width: 520px;
  font-weight: var(--l_fontWeight-medium);
  line-height: 1.6;
  background-color: var(--l_color-greenbg);
  border-radius: 20px;
  overflow: hidden;
}
.p-top__mv__banner .c-btn__cv {
  margin-top: 1em;
  font-size: var(--l_fontSize-s);
}
.p-top__mv__banner__body {
  width: 100%;
  padding: 1em 0 1em 1.5em;
}
.p-top__mv__banner__visual {
  width: 20%;
  flex-shrink: 0;
}
.p-top__mv__banner__visual img {
  width: 100%;
  height: 100%;
}

/* pv */
.p-top__pv {
  padding: min(20%, 200px) 0 var(--l_margin-l);
  background-color: var(--l_color-pink);
  overflow: hidden;
}
.p-top__pv__headline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin: 0 auto;
}
.p-top__pv__headline img {
  margin: 0 auto;
  width: min(100%, 1000px);
  height: auto;
}
.p-top__pv__inner {
  position: relative;
}
.p-top__pv__video {
  width: 100%;
  height: min(80vh, 500px);
  background-color: var(--l_color-black);
  display: flex;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.p-top__pv__video video {
  max-width: 100%;
  max-height: 100%;
}

/* who we are */
.p-top__whoweare {
  padding-top: 3em;
  padding-bottom: 3em;
}
.p-top__whoweare__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.p-top__whoweare__body {
  width: 44%;
}
.p-top__whoweare__visual {
  width: 50%;
}
.p-top__whoweare__visual img {
  width: 100%;
  height: auto;
}

/* information */
.p-top__information {
  padding-top: 3em;
  padding-bottom: var(--l_margin-l);
}
.p-top__information__card .l-card__container {
  align-items: stretch;
}
.p-top__information__card .l-card__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3em;
  border-radius: 20px;
  background-color: var(--l_color-white);
}
.p-top__information__card .l-card__visual img {
  width: 80%;
  height: auto;
}
.p-top__information__card__table {
  margin-top: 2em;
}
.p-top__information__card__table li {
  display: flex;
}
.p-top__information__card__table__th {
  width: 6em;
  flex-shrink: 0;
  color: #666666;
}
.p-top__information__card__table li {
  display: flex;
  padding: 1.2em 0 .4em;
  border-bottom: 1px solid var(--l_color-border);
}

/* campaign */
.p-top__campaign {
  margin-top: -40px;
  padding-bottom: var(--l_margin-ml);
  background: var(--l_color-gradation);
}
.p-top__campaign__h2 > div {
  border-top: none;
}
.p-top__campaign__h3 {
  margin: 0 auto;
  width: min(100%, 820px);
  text-align: center;
}
.p-top__campaign__h3 img {
  width: 100%;
  height: auto;
}
.p-top__campaign__h3_sub {
  text-align: center;
}
.p-top__campaign__content + .p-top__campaign__content {
  margin-top: var(--l_margin-m);
}
.p-top__campaign__body {
  padding-bottom: 2em;
}
.p-top__campaign__qr {
  margin: 0 auto;
  width: 132px;
}
.p-top__campaign__qr img {
  width: 100%;
  height: auto;
}
.p-top__campaign__content .c-btn__cv {
  width: auto;
  max-width: none;
}
.p-top__campaign__howtoget .p-top__campaign__body {
  width: min(100%, 800px);
  margin: 0 auto;
}
.p-top__campaign__list {
  padding: 2em 1.4em;
  background-color: rgba(255,255,255,0.8);
  border: 1px solid var(--l_color-black);
}
.p-top__campaign__list .l-section__h4 {
  margin-bottom: 1.6em;
}
.p-top__campaign__list li {
  display: flex;
  align-items: flex-start;
}
.p-top__campaign__list li + li {
  margin-top: .6em;
}
.p-top__campaign__list__no {
  display: block;
  padding: .4em 1em;
  font-size: var(--l_fontSize-xs);
  line-height: 1.2;
  border-radius: 999px;
  border: 1px solid var(--l_color-black);
  background-color: var(--l_color-pink);
  flex-shrink: 0;
}
.p-top__campaign__list__content {
  text-align: left;
  margin-left: 1em;
}
.p-top__campaign__howtoget .p-top__campaign__visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  width: min(100%, 700px);
  margin: 3em auto 0;
}
.p-top__campaign__visual__visual {
  width: 65%;
  height: auto;
}
.p-top__campaign__visual__balm {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: auto;
  max-height: none;
}

/* end */
.p-top__end__message {
  font-size: min(5vw, 65px);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.p-top__end__inner {
  position: relative;
  padding-top: var(--l_margin-ml);
  padding-bottom: var(--l_margin-l);
}
.p-top__end__visual__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--l_margin-m);
}
.p-top__end__visual__container > img {
  width: 49%;
  height: auto;
}
.p-top__end__illust {
  position: absolute;
  bottom: 0;
  right: 0;
  width: calc(var(--l_margin-l) + 10%);
}
.p-top__end__illust img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .p-top__mv {
    margin-bottom: -20px;
  }
  .p-top__mv__visual {
    border-radius: 20px 20px 0 0;
  }
  .p-top__pv__video {
    height: auto;
  }
  .p-top__campaign__container {
    flex-wrap: wrap;
  }
  .p-top__campaign__container .p-top__campaign__body {
    width: 1005;
  }
  .p-top__campaign__container .p-top__campaign__visual {
    width: 1005;
  }
  .p-top__campaign__howtoget .p-top__campaign__visual {
    margin-top: 15%;
  }
  .p-top__campaign__visual__balm {
    top: -38%;
    left: -6%;
  }
  .p-top__campaign__visual__visual {
    width: 80%;
  }
}

@media screen and (max-width: 949px) {
  .p-top__whoweare__body {
    width: 100%;
  }
  .p-top__whoweare__container {
    flex-wrap: wrap;
    justify-content: center;
  }
  .p-top__whoweare__visual {
    width: min(100%, 500px);
  }
}