@charset "UTF-8";

body {
  font-family: "Noto Serif JP", serif;
  overflow-y: scroll !important;
  background: url(../ladias-orizin/common/img/pc-bg.webp);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}

strong {
  font-weight: bold;
}

main {
  max-width: 40rem;
  margin: auto;
  background-color: #fff;
}

/* fade */

/* 初期状態：下にずらして透明 */
.js-trg {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* 発火後：元の位置へ戻しながらフェードイン */
.js-trg.is-active {
  opacity: 1;
  transform: translateY(0);
}

section {
  padding: 8rem 0;
  position: relative;
  z-index: 2;
}

.bg {
  background: #fffbf4;
}


@media (max-width: 768px) {
  section {
    padding: 6rem 0;
  }

  body {
    background-size: cover;
    background-position: inherit;
  }
}

main {
  margin-top: 6rem;
}

@media (max-width: 768px) {
  main {
    margin-top: 4rem;
  }
}

html {
  font-size: 0.78125vw !important;
  /* ビューポート幅 1280px のとき 1rem = 10px */
  scroll-behavior: smooth;
  margin-top: 0 !important;
}

@media screen and (max-width: 768px) {
  html {
    font-size: 2.6666666667vw !important;
    /* 375px時に10px */
  }
}

li {
  list-style: none;
  line-height: 1.6;
}

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

h1,
h2,
h3 {
  line-height: 1.6;
  font-weight: bold;
  color: #333333;
}

p {
  line-height: 1.7;
  color: #333333;
}

a,
span {
  display: block;
}

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

.u-hidden-sp {
  display: block;
}

.u-hidden-pc {
  display: none;
}

@media (max-width: 768px) {
  .u-hidden-sp {
    display: none;
  }

  .u-hidden-pc {
    display: block;
  }
}

.l-inner {
  width: 100%;
  margin: auto;
  padding: 0 1.6rem;
}

.l-inner02 {
  max-width: 80rem;
  width: 100%;
  margin: auto;
  padding: 0 2rem;
}

.--center {
  text-align: center !important;
}

.--mt1 {
  margin-top: 1rem !important;
}

.--mt2 {
  margin-top: 2rem !important;
}

.--mb0 {
  margin-bottom: 0 !important;
}


.--mt4 {
  margin-top: 4rem !important;
}

@media (max-width: 768px) {
  .--mtsp2 {
    margin-top: 2rem !important;
  }
}

/* .p-fixed****************************************** */

.p-fixed {
  position: fixed;
  bottom: 3%;
  width: 34rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: 222;
}

.p-fixed-content {
  display: block;
  text-align: center;
  padding: 2rem 0;
  background: #000;
  color: #fff;
  border-radius: 3rem;
  border: 1px solid #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  font-size: 1.4rem;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
}

.p-fixed-content:hover {
  box-shadow: none;
}

/* p-top__header****************************************** */

.p-top__header {
  padding: 6rem 0;
  background-color: #fff;
}

.p-top__header-container {
  text-align: center;
}

.p-top__header-container-ttl {
  font-size: 2.8rem;
  font-family: "adobe-caslon-pro", serif;
  font-weight: 700;
  line-height: 1;
}

.p-top__header-container-text {
  font-size: 1.4rem;
}


/* p-top__header****************************************** */


/* header ************************************************/

.l-header {
  z-index: 999;
  width: 40rem;
  background: #fff;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.l-header.--pink {
  background-color: #E1B3BF;
}

.l-header__container {
  padding: 0 2rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 6rem;
}

.l-header__container-logo a {
  font-size: 1.8rem;
  font-weight: bold;
}

.l-header__container-list {
  display: flex;
  gap: 2rem;
}

.l-header__container-list-item a {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

.l-header__drawer {
  display: none;
}

.l-header__hamburger {
  z-index: 444;
  width: 3rem;
  height: 3rem;
  position: relative;
  cursor: pointer;
}

.l-header__hamburger span {
  position: absolute;
  width: 2.4rem;
  height: 2px;
  background-color: #333;
  transition: transform .3s, opacity .3s;
}

.l-header.--pink .l-header__hamburger span {
  background-color: #fff;
}

.l-header__hamburger span:nth-child(1) {
  top: 10%;
  width: 1.5rem;
  right: 0;
}

.l-header__hamburger span:nth-child(2) {
  top: 40%;
  right: 0;
}

.l-header__hamburger span:nth-child(3) {
  top: 70%;
  width: 1.5rem;
  right: 0;
}

/* 開いたときのアニメーション */
.l-header__hamburger.is-active span:nth-child(1) {
  top: 50%;
  transform: rotate(135deg);
  background-color: #fff;
}

.l-header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.l-header__hamburger.is-active span:nth-child(3) {
  top: 50%;
  transform: rotate(-135deg);
  background-color: #fff;
}

/* PC でもハンバーガーメニューを表示させる */
.l-header__container nav {
  display: none !important;
}

.l-header__hamburger {
  display: block !important;
}

/* PC でもドロワーが機能するように固定 */
.l-header__drawer {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 40rem;
  margin: auto;
  background-color: #333333;
  transition: opacity .3s, visibility .3s;
  display: block;
  z-index: 333;
}

.l-header__drawer.is-active {
  visibility: visible;
  opacity: 1;
}

.l-header__drawer-list {
  padding: 10rem 2rem;
}

.l-header__drawer-item:not(:first-of-type) {
  margin-top: 2.4rem;
}

.l-header__drawer-item.--padding {
  padding: 0 4rem;
}

.l-header__drawer-item.--ver02 {
  margin-top: 6rem;
}

.l-header__drawer-item a.c-btn {
	padding: 1rem 0;
  width: 88%;
  margin: 0 auto;
  display: block;
}

.l-header__drawer-link {
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
}

.l-header__drawer-link span {
  font-size: 1.3rem;
  font-weight: normal;
	padding-top: 0.4rem;
}

@media screen and (max-width: 768px) {
  .l-header {
    width: 100%;
  }

  .l-header__container {
    padding: 0 1.6rem;
  }
}

/* header ************************************************/

.l-footer {
  background: #fff;
  position: relative;
  z-index: 2;
  color: #000000;
  font-size: 1.3rem;
  padding: 3rem 0 9rem 0;
}

.l-footer.--pink {
  background: #E1B3BF;
}

.l-footer__logo {
  font-size: 2.4rem;
  margin-bottom: 1.6rem;
}

.l-footer__text {
  font-size: 1.2rem;
  /* color: #AAAAAA; */
  color: #000;
}

.l-footer.--pink .l-footer__text {
  font-size: 1.2rem;
  color: #fff;
}

.l-footer__list-item {
  font-size: 1.3rem;
  color: #000000;
  margin-top: 1.5rem;
}

.l-footer.--pink .l-footer__list-item a {
  color: #A4515E;
}

small {
  display: block;
  margin-top: 1.5rem;
  color: #AAAAAA;
  font-size: 1.3rem;
}

.l-footer.--pink small {
  display: block;
  margin-top: 1.5rem;
  color: #fff;
  font-size: 1.3rem;
}

/* footer ************************************************/

/* c-btn ************************************************/

.c-btn {
  display: inline-block;
  width: 100%;
  padding: 2rem 0;
  font-size: 1.6rem;
  background: #fff;
  color: #333;
  border: 0.3px solid #333;
  border-radius: 2.8rem;
  text-align: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  transition: .3s;
}

.c-btn.--ver02 {
  display: inline-block;
  width: 100%;
  padding: 1rem 0;
  font-size: 1.4rem;
  background: #fff;
  color: #333;
  border: 0.3px solid #333;
  border-radius: 2.8rem;
  text-align: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  transition: .3s;
}

.c-btn:hover {
  box-shadow: none;
}


/* c-btn **********************************************/

/* c-btn02 ************************************************/

.c-btn02 {
  display: inline-block;
  width: 100%;
  padding: 2rem 0;
  font-size: 1.4rem;
  background: #FFFFFF;
  border-radius: 3.2rem;
  color: #A4515E;
  border: 1px solid #A4515E;
  text-align: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  transition: .3s;
  position: relative;
}

.c-btn02::after {
  content: '';
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background: url(common/img/arrow-pink.png) no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  right: 3rem;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transition: .3s;
}

.c-btn02:hover::after {
  right: 2rem;
}

.c-btn02:hover {
  box-shadow: none;
}


/* c-btn02 **********************************************/

/* c-btn03 ************************************************/

.c-btn03 {
  display: inline-block;
  width: 100%;
  padding: 2rem 0;
  font-size: 1.4rem;
  background: #A4515E;
  border-radius: 3.2rem;
  color: #fff;
  border: 1px solid #A4515E;
  text-align: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  transition: .3s;
  position: relative;
}

.c-btn03::after {
  content: '';
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background: url(common/img/arrow-white.png) no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  right: 3rem;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transition: .3s;
}

.c-btn03:hover::after {
  right: 2rem;
}

.c-btn03:hover {
  box-shadow: none;
}


/* c-btn02 **********************************************/

/* c-ttl ************************************************/


.c-ttl {
  font-size: 3.2rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.8rem;
}

.c-ttl.--white {
  color: #fff;
}

.c-ttl-sub {
  font-size: 1.5rem;
  position: relative;
  margin-left: 2rem;
  color: #9778D1;
}

.c-ttl-sub.--white {
  color: #fff;
}

.c-ttl-sub.--white:before {
  content: '';
  display: inline-block;
  width: 3rem;
  height: 3rem;
  background: url(common/img/star.png) no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  left: -2.5rem;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.c-ttl-sub:before {
  content: '';
  display: inline-block;
  width: 3rem;
  height: 3rem;
  background: url(common/img/star02.svg) no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  left: -2.5rem;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

/* p-cta__01 ------------ */

.p-cta__01 {
  background-color: #333333;
  border-bottom: 1px solid #AAAAAA;
}

.p-cta__01-text {
  margin-top: 2.4rem;
  font-size: 1.4rem;
  color: #fff;
}

.p-cta__01-btn {
  margin-top: 4rem;
  text-align: center;
}


/* p-fan ------------ */

.p-fan {
  background-color: #F4F4F4;
  z-index: 3;
}

.p-fan__text {
  margin-top: 0.8rem;
  font-size: 1.4rem;
}

.p-fan__list-item {
  border-bottom: 1px solid #cdcdcd;
}

.p-fan__list-item-link {
  display: block;
  padding: 2.4rem 0;
  border-bottom: 1px solid #ccc;
  position: relative;
  transition: .3s;
  text-align: left;
  background: none;
  border: none;
  width: 100%;
  cursor: pointer;
}

.p-fan__list-item-link:after {
  transition: .3s;
  content: '';
  display: inline-block;
  width: 10px;
  height: 14px;
  background: url(../ladias-orizin/common/img/arrow.png) no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  right: 2%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.p-fan__list-item-link:hover:after {
  right: 0%;
}

.p-fan__list-item-link-eng {
  font-size: 2rem;
  font-family: "adobe-caslon-pro", serif;
  font-weight: 300;
  line-height: 1;
}

.p-fan__list-item-link-jap {
  font-size: 1.4rem;
  font-family: "Noto Serif JP", serif;
}

/* p-fan ------------ */

/* モーダル(js) */

.modal {
  display: none;
  position: fixed;
  z-index: 8887;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  transition: all 1s ease-in-out;
}

.modal-content {
  background: #fff;
  padding: 4rem 2rem;
  overflow-y: scroll;
  width: 85%;
  height: 75vh;
  max-width: 38rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: show 0.6s linear 0s;
  filter: drop-shadow(0px 2px 6px #777);
}

.modal-top {
  display: inline-block;
  position: absolute;
  top: 15%;
  left: 61%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  z-index: 999;
}

.modal-close {
  color: #fff;
  text-decoration: none;
  font-size: 2rem;
  display: inline-block;
  line-height: 1;
  background: #333333;
  padding: .5rem;
  border-radius: 50%;
}

.modal-close:hover,
.modal-close:focus {
  text-decoration: none;
  cursor: pointer;
}

.modal-container-ttl {
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
}

.modal-container-subttl {
  font-size: 1.4rem;
  text-align: center;
}

.modal-container-text {
  font-size: 1.4rem;
  margin-top: 4rem;
}

.modal-container-text02 {
  font-weight: bold;
  margin-top: 4rem;
  font-size: 1.4rem;
}

.modal-container-box {
  margin-top: 2.4rem;
}

.modal-container-box-ttl {
  font-size: 1.4rem;
}

.modal-container-box-text {
  font-size: 1.4rem;
  margin-top: .8rem;
}

@keyframes show {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* モーダル(js) */

@media screen and (max-width: 768px) {
  .modal-top {
    display: inline-block;
    position: absolute;
    top: 23%;
    left: auto;
    right: 6%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    z-index: 999;
  }

  .modal-content {
    top: 57%;
    height: 65vh;
  }
}


.fadein-target {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

.fadein-target.is-show {
  opacity: 1;
  transform: translateY(0);
}