@charset "utf-8";
/*==================================
SWITCH DOT LINE WCS-CSS
Ver.3s
Edit:2023 -
LastUpdate:20250703
==================================*/
/* FONTS */
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@500;800;900&display=swap");
/* font-family: 'M PLUS Rounded 1c', sans-serif; */

/*==================================
*** CORE ***
==================================*/
html {
  font-size: 15px;
  overflow-x: hidden;
  height: -webkit-fill-available;
}

body {
  min-height: 100vh;
  padding: 0;
  margin: 0;
  background-color: #fffdf6;
  line-height: 160%;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #6f6f6f;
  text-align: center;
  letter-spacing: 0 !important;
  font-feature-settings: "palt" 1;
  animation: fadeIn 1s ease 0s 1 normal forwards;
  -webkit-text-size-adjust: 100%;
  min-height: -webkit-fill-available;
}

a img {
  border: none;
}

article {
  display: block;
  padding: 0;
  margin: 0;
}

section {
  margin: 0;
}

.inner_block {
  display: block;
  padding: 30px 45px;
  margin: 15px 0;
  background-color: rgba(238, 229, 251, 0.3);
}

/*==================================
CSS ANIMATION
==================================*/
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn_up {
  0%,
  40% {
    opacity: 0;
    transform: translateY(4%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}

@keyframes fadeIn_down {
  0%,
  30% {
    opacity: 0;
    transform: translateY(-4%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}

/*==================================
INTRO ANIMATION
==================================*/
#intro_ani {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  padding: 0;
  background: linear-gradient(to bottom right, #eee5fb, #ffdcef);
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 9999;
  animation: fixed 0.6s ease 0s 1 forwards;
}

/* intro_ani */
@keyframes fixed {
  0%,
  60% {
    opacity: 1;
  }
  90% {
    z-index: 200;
  }
  100% {
    opacity: 0;
    z-index: -1;
  }
}

/*==================================
LAYOUT - EDIT
==================================*/
#content-area {
  position: relative;
  top: 0;
}

article {
  padding: 45px 0 0 0;
}

article#page-before {
  padding: 0;
}

section {
  padding: 10px 0 35px 0;
  margin: 0 8px 15px 8px;
  background-color: #eee5fb;
  background-image: url(../common/bg_pattern-dots.svg);
  background-position: center;
  background-repeat: repeat;
  background-size: 16px;
  border-radius: 10px;
  box-shadow: inset 3px 3px 0 rgba(0, 0, 0, 0.04);
  position: relative;
}

section:nth-child(2n) {
  background-color: #ffdcef;
  background-image: url(../common/bg_pattern-grid.svg);
  background-size: 45px;
}

section#top_banner {
  background-color: #f0f0f0;
  background-image: url(../common/bg_pattern-grid.svg);
  background-size: 45px;
}

section#mypage {
  background-color: #ffdcef;
  background-image: url(../common/bg_pattern-grid.svg);
  background-size: 45px;
}

/* SLIDE BTN BG */
section#top_banner:before,
section#index_memories .embed_slider:before,
section#index_profile .embed_slider:before,
section#index_snap .embed_slider:before {
  content: "";
  display: block;
  width: 38px;
  height: 40px;
  background-color: #fffdf6;
  border-radius: 0 50% 50% 0;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.04);
  position: absolute;
  left: 0;
  top: calc(50% - 20px);
  z-index: 10;
}

section#top_banner:after,
section#index_memories .embed_slider:after,
section#index_profile .embed_slider:after,
section#index_snap .embed_slider:after {
  content: "";
  display: block;
  width: 38px;
  height: 40px;
  background-color: #fffdf6;
  border-radius: 50% 0 0 50%;
  box-shadow: -2px 2px 0 rgba(0, 0, 0, 0.04);
  position: absolute;
  right: 0;
  top: calc(50% - 20px);
  z-index: 10;
}

section#index_memories .embed_slider:before,
section#index_profile .embed_slider:before,
section#index_snap .embed_slider:before {
  left: 0;
}

section#index_memories .embed_slider:after,
section#index_profile .embed_slider:after,
section#index_snap .embed_slider:after {
  right: 0;
}

.device_width {
  padding: 30px 15px 10px 15px;
  margin: 0 auto;
  text-align: left;
  position: relative;
  z-index: 1;
}

/*==================================
FIXED HEADER
==================================*/
header {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 45px;
  color: #fffdf6;
  border-bottom: 2px solid #fffdf6;
  background-color: rgba(170, 128, 234, 1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  transition: 0.4s;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 150;
}

header a {
  color: #fffdf6;
  transition: 0.4s;
}

/* HEAD LOGO */
header a#head_logo {
  display: block;
  width: 100px;
  height: 55px;
  padding: 0;
  border-radius: 0 0 5px 5px;
  background-color: #fffdf6;
  background-image: url(../common/logo-main_year2025.svg);
  background-position: center bottom 6px;
  background-repeat: no-repeat;
  background-size: 70px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  position: absolute;
  left: 5px;
  top: 0;
}

/* NAV */
header nav {
  display: none;
}

/* MENU ICON */
header a#menu_icon {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 43px;
  height: 43px;
  position: absolute;
  right: 5px;
  top: 0;
  color: #fff;
  background-image: url(../common/icon-menu.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 26px;
}

header #head_member_id {
  display: none;
}

/*==================================
FOOTER
==================================*/
footer {
  display: block;
  padding: 0;
  margin: 0;
  background-color: #fffdf6;
}

footer .footer_logo {
  display: block;
  width: 180px;
  height: 105px;
  padding: 0;
  margin: 45px auto 30px auto;
  background-image: url(../common/logo-main_year2025.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

footer .btn_area {
  margin: 0 0 40px 0;
}

footer .btn_area a.btn_border {
  width: 80%;
  padding: 15px 0;
  margin: 0 auto;
  border-radius: 0;
  border: none;
  border-top: 1px solid #eee5fb;
}

footer .btn_area a.btn_border:last-of-type {
  border-bottom: 1px solid #eee5fb;
}

footer .copyright {
  padding: 15px 0 10px 0;
  margin: 30px 10px 0 10px;
  background-color: #aa80ea;
  background-image: url(../common/bg_pattern-dots.svg);
  background-position: center;
  background-repeat: repeat;
  background-size: 16px;
  border-radius: 15px 15px 0 0;
  box-shadow: inset 5px 5px 0 rgba(0, 0, 0, 0.04);
  color: #fffdf6;
}

footer ul.link_text {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
}

footer ul.link_text li {
  padding: 5px 10px;
}

footer ul.link_text li:after {
  content: "";
  margin-left: 10px;
  /* border-right: 1px solid #c9c9c9; */
}

footer ul.link_text li:last-of-type:after {
  content: "";
  border-right: none;
}

footer ul.link_text li a {
  padding: 2px 0;
  color: #6f6f6f;
  border-bottom: 2px solid #fffdf6;
  transition: 0.4s;
}

footer ul.link_text li a:hover {
  text-decoration: none;
  border-bottom: 2px solid #aa80ea;
  color: #aa80ea;
}

/*==================================
ANCHOR LINK
==================================*/
.anchor {
  display: block !important;
  padding-top: 150px !important;
  margin-top: -150px !important;
  position: absolute;
}

/*==================================
MAINVISUAL
==================================*/
#mainvisual {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: auto;
  padding-top: 98.8%; /* W2560px H2530px */
  position: relative;
  overflow: hidden;
  background-image: url(../common/mainvisual-after202506_sp.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
/* #mainvisual {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: auto;
  padding-top: 50%;
  position: relative;
  overflow: hidden;
  background-image: url(../common/mainvisual-member_2025-sp.jpg);
  background-position: center 60%;
  background-repeat: no-repeat;
  background-size: 100%;
} */

/* ログイン後 */
#mainvisual:after {
  display: block;
  width: 100vw;
  /* height: 8%; */
  height: 15%;
  background-image: url(../common/mainvisual-bottom.svg);
  background-position: 0% bottom;
  background-repeat: repeat-x;
  background-size: cover;
  position: absolute;
  left: 0;
  bottom: -2px;
  filter: drop-shadow(0 -3px 10px rgba(0, 0, 0, 0.03));
  content: "";
}

/* ログイン前 */
#page-before #mainvisual:after {
  height: 20%;
}

/*==================================
PAGE TITLE AREA
==================================*/
#page_title_area {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 90px 0 30px 0;
  margin: 0;
  background-color: #fffef1;
}

/*==================================
IMG & MOV RATIO
==================================*/
/* EMBED VIDEO */
.embed_video,
.embed_img {
  margin: 0 auto;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.embed_video iframe,
.embed_img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
}

/*==================================
GALLERY 3列
==================================*/
.grid_gallery ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  align-items: stretch;
  padding: 0;
  margin: 0;
  list-style: none;
}

.grid_gallery ul li {
  padding: 0;
  margin: 0 6px 6px 0;
  text-align: center;
  color: #aa80ea;
  position: relative;
}

#photo_thm_list .grid_gallery ul li {
  width: calc((100% - 6px) / 2);
}

#photo_thm_list .grid_gallery ul li:nth-child(2n) {
  margin-right: 0;
}

#movie_thm_list .grid_gallery ul li {
  width: 100%;
}

.grid_gallery ul li a,
.lity_slider-nav ul li span {
  display: block;
  margin: 0 auto;
  position: relative;
  /* padding-bottom: calc(100% - 4px); */
  height: 0;
  overflow: hidden;
  border: 2px solid #eee5fb;
  border-radius: 8px;
  transition: 0.2s;
}

#photo_thm_list .grid_gallery ul li a,
#photo_thm_list .lity_slider-nav ul li span {
  padding-bottom: calc(100% - 4px);
}

#memories #photo_thm_list .grid_gallery ul li a,
#memories #photo_thm_list .lity_slider-nav ul li span {
  padding-bottom: calc(56.25% - 4px);
}

#movie_thm_list .grid_gallery ul li a,
#movie_thm_list .lity_slider-nav ul li span {
  padding-bottom: calc(56.25% - 4px);
}

.grid_gallery ul li a:active,
.lity_slider-nav ul li span:active {
  text-decoration: none;
  transform: scale(1.04);
  z-index: 3;
}

#photo_thm_list .grid_gallery ul li a img,
#photo_thm_list .lity_slider-nav ul li span img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.grid_gallery li a.new:before,
.grid_gallery li > span.new:before {
  content: "";
  display: block;
  width: 45px;
  height: 45px;
  background-image: url(../common/corner_icon-new.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

#mycollection_list .grid_gallery li a.new:before {
  width: 40px;
  height: 40px;
}

.grid_gallery .grid_thm_caption {
  padding: 0 5px;
  margin: 7px 0 10px 0;
}

.grid_gallery .grid_thm_caption p {
  padding: 0;
  line-height: 150% !important;
  font-size: 0.9rem;
}

.grid_gallery .grid_thm_caption p.date {
  font-size: 1rem;
}

/* PROFILE THM */
#photo_thm_list.profile_thm .grid_gallery ul li img {
  border: 2px solid #f3f3f3;
  border-radius: 8px;
  cursor: default;
}

#photo_thm_list.profile_thm .grid_gallery ul li a img {
  filter: grayscale(0);
  border: none;
  width: 100%;
  border-radius: 6px;
  cursor: pointer;
}

#profile_entry #entry_title_area {
  margin: 0 0 15px 0;
  text-align: center;
}

/* SNAP */
#snap .grid_gallery ul li {
  margin-bottom: 5px;
}

/*==================================
GALLERY LITY MODAL
==================================*/
.lity_slider-nav li {
  cursor: pointer;
}

.lity_slider-modal {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  outline: none !important;
  overflow: auto;
  background-color: #ffdcef;
  animation: fadeIn 0.3s ease 0s 1 normal;
}

.lity_slider .slick-slide {
  position: fixed;
  height: 100vh;
  transform: scale(1);
}

.lity_slider {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}

.lity_slider li {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow-y: auto;
}

.lity_slider .slick-active {
  animation: fadeIn 1s ease 0s 1 normal;
}

.lity_slider .slick-prev {
  width: 26px;
  height: 40px;
  background-color: #ff89cb;
  background-image: url(../common/icon-left.svg);
  background-position: right center;
  background-size: 30px;
  border: none;
  border-radius: 0 10px 10px 0;
  animation: fadeIn 1s ease 0s 1 normal;
  left: 0;
  top: calc(50% - 20px);
}

.lity_slider .slick-prev:hover {
  background-image: url(../common/icon-left.svg);
}

.lity_slider .slick-next {
  width: 26px;
  height: 40px;
  background-color: #ff89cb;
  background-image: url(../common/icon-right.svg);
  background-position: left center;
  background-size: 30px;
  border: none;
  border-radius: 10px 0 0 10px;
  animation: fadeIn 1s ease 0s 1 normal;
  right: 0;
  top: calc(50% - 20px);
}

.lity_slider .slick-next:hover {
  background-image: url(../common/icon-right.svg);
}

.lity_slider-modal .lity-close {
  display: block;
  width: 60px;
  height: 60px;
  background-color: #ffdcef;
  background-image: url(../common/btn-close-pink.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-left: 1px solid #ff89cb;
  border-bottom: 1px solid #ff89cb;
  transition: 0.4s;
  animation: fadeIn 1s ease 0s 1 normal;
}

.lity_slider-modal .lity-close:hover {
  display: block;
  width: 60px;
  height: 60px;
  background-color: #aa80ea;
  background-image: url(../common/btn-close-white.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-left: 1px solid #aa80ea;
  border-bottom: 1px solid #aa80ea;
}

.modal_embed {
  margin: 0 30px;
  max-height: 90vh;
  text-align: center;
}

.modal_embed_media {
  display: inline-block;
  position: relative;
}

.modal_embed_media:before {
  content: "";
  display: block;
  width: 100%;
  height: 25px;
  margin: 0;
  background-color: #ff89cb;
  background-image: url(../common/window_bar_dot_pink.svg);
  background-position: 10px center;
  background-repeat: no-repeat;
  background-size: 46px;
  border-radius: 6px 6px 0 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}

.modal_embed_media img {
  width: auto;
  max-height: 80vh;
  padding: 35px 10px 10px 10px;
  margin: 0 auto;
  background-color: #fffdf6;
  border-radius: 8px;
  z-index: 1;
}

.modal_embed_media.type-movie {
  display: block;
  width: calc(100vw - 60px);
  padding: 35px 10px 10px 10px;
  margin: 0 auto;
  background-color: #fffdf6;
  border-radius: 6px 6px 10px 10px;
}

.modal_embed_media .embed_video,
.embed_window .embed_video {
  margin: 0;
}

.modal_embed p {
  display: block;
  padding: 15px 0;
  margin: 0 auto;
  color: #f660b4;
  text-shadow: 0 0 10px #fff;
}

#index_memories .slick-slide,
#index_profile .slick-slide,
#index_snap .slick-slide {
  pointer-events: none;
}

#index_memories .slick-current,
#index_profile .slick-current,
#index_snap .slick-current {
  pointer-events: auto;
}

/*==================================
ENTRY
==================================*/
/* ENTRY LIST */
.entry_list {
  display: block;
  padding: 0;
  margin: 0;
}

.entry_list .entry_panel {
  padding: 0;
  margin: 0;
  border-top: 1px solid #eee5fb;
  position: relative;
}

.entry_list .entry_panel a {
  display: block;
  padding: 15px 10px 40px 10px;
  color: #6f6f6f;
  transition: 0.4s;
}

.entry_list .entry_panel:last-of-type a {
  padding-bottom: 15px;
}

.entry_list .entry_panel a:active {
  text-decoration: none;
  transform: scale(1.02);
  z-index: 3;
}

/* ENTRY LABEL */
.entry_label {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 0;
  margin: 0;
  position: relative;
}

.entry_label .category_name {
  display: block;
  width: 100px;
  padding: 0;
  margin: 0;
  text-align: center;
  border-radius: 4px;
  color: #fffdf6;
  background-color: #aa80ea;
  position: absolute;
  right: -10px;
  top: -27px;
}

.entry_label .category_name.new:before {
  content: "NEW";
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 3px solid #fffdf6;
  box-shadow: 0 0 0 2px #aa80ea;
  background-color: #aa80ea;
  position: absolute;
  left: -25px;
  top: -7px;
}

.entry_label .category_name.memories {
  background-color: #2ec8da;
}

.entry_label .category_name.memories.new:before {
  box-shadow: 0 0 0 2px #2ec8da;
  background-color: #2ec8da;
}

/* .entry_label .category_name.movie {
  background-color: #da2e97;
}

.entry_label .category_name.movie.new:before {
  box-shadow: 0 0 0 2px #da2e97;
  background-color: #da2e97;
} */

.entry_label .category_name.other {
  background-color: #2eda6f;
}

.entry_label .category_name.other.new:before {
  box-shadow: 0 0 0 2px #2eda6f;
  background-color: #2eda6f;
}

.entry_label .category_name.profile {
  background-color: #3a5dd3;
}

.entry_label .category_name.profile.new:before {
  box-shadow: 0 0 0 2px #3a5dd3;
  background-color: #3a5dd3;
}

.entry_label .category_name.note {
  background-color: #b0ba00;
}

.entry_label .category_name.note.new:before {
  box-shadow: 0 0 0 2px #b0ba00;
  background-color: #b0ba00;
}

.entry_label .date {
  font-weight: 800;
}

.entry_text {
  width: 100%;
  padding: 0;
  margin: 0;
}

/* ENTRY PAGE */
#entry_title_area {
  display: block;
  padding: 0;
  margin: 0;
  color: #aa80ea;
  font-weight: 800;
}

#page-news #entry_title_area {
  padding: 0 0 20px 0;
  border-bottom: 1px solid #eee5fb;
}

#entry_title_area h1 {
  padding: 0;
  margin: 0;
}

#entry_title_area .entry_date {
  display: block;
  padding: 0;
  margin: 5px 0 0 0;
}

.entry_detail {
  display: block;
  padding: 20px 0 0 0;
  margin: 0;
  position: relative;
}

.entry_detail h2 {
  height: auto;
  padding: 0;
  margin: 30px 0 5px 0;
  color: #ff89cb;
}

.entry_detail p a {
  display: inline-block;
  padding: 0 5px;
  margin: 2px 0;
  border-radius: 3px;
  background-color: #eee5fb;
  color: #aa80ea;
  word-break: break-all;
  line-height: 120%;
  transition: 0.4s;
}

.entry_detail p a:hover {
  text-decoration: none;
  background-color: #aa80ea;
  color: #fffdf6;
}
/*==================================
ENTRY PAGER
==================================*/
.pager {
  display: block;
  padding: 0;
  margin: 30px 0 0 0;
}

.pager ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pager ul li {
  padding: 0;
  margin: 0 5px;
}

.pager ul li a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  margin: 0;
  background-color: #f0f0f0;
  border: 2px solid #fffdf6;
  border-radius: 50%;
  box-shadow: 2px 2px 4px rgba(170, 128, 234, 0.1);
  color: #aa80ea;
  line-height: 100%;
  transition: 0.4s;
}

.pager ul li a.selected,
.pager ul li a:active {
  background-color: #aa80ea;
  color: #fffdf6;
  text-decoration: none;
}

.pager ul li a.pager-prev,
.pager ul li a.pager-next {
  background-color: #fffdf6;
  border: none;
  box-shadow: none;
  opacity: 0.5;
}

.pager ul li a:hover.pager-prev,
.pager ul li a:hover.pager-next {
  color: #aa80ea;
  opacity: 1;
}

.pager ul li a.selected {
  cursor: default;
}

/* MY PAGE PAGER */
#mycollection_list .pager ul li a {
  background-color: rgba(255, 137, 203, 0.1);
  color: #ff89cb;
}

#mycollection_list .pager ul li a.selected,
#mycollection_list .pager ul li a:hover,
#mycollection_list .pager ul li a:active {
  background: #ff89cb;
  color: #fffdf6;
}

#mycollection_list .pager ul li a.pager-prev,
#mycollection_list .pager ul li a.pager-next {
  background-color: rgba(0, 0, 0, 0);
}

#mycollection_list .pager ul li a:hover.pager-prev,
#mycollection_list .pager ul li a:hover.pager-next,
#mycollection_list .pager ul li a:active.pager-prev,
#mycollection_list .pager ul li a:active.pager-next {
  background-color: rgba(0, 0, 0, 0);
  color: #ff89cb;
  text-decoration: none;
}

/*==================================
BTN
==================================*/
/* BTN PAGETOP */
.fixed_pagetop {
  display: block;
  width: 40px;
  height: 40px;
  padding: 0;
  margin: 0;
  border: 2px solid #fffdf6;
  border-right: none;
  background-color: #6f6f6f;
  background-image: url(../common/icon-up.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30px;
  border-radius: 10px 0 0 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: fixed;
  right: 0;
  bottom: 15px;
  z-index: 100;
  transition: 0.4s;
}

.fixed_pagetop:active {
  background-color: #aa80ea;
}

/* BTN FIXED JOIN */
a.btn_fixed_join_sp {
  display: block;
  width: 100px;
  height: 100px;
  padding: 0;
  margin: 0;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.05));
  background-image: url(../common/btn_fixed_join-sp.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: fixed;
  right: 0;
  bottom: 30px;
  /* top: 5px; */
  z-index: 150;
}

/* BTN STYLE */
a.btn_border {
  display: inline-block;
  /* min-width: 200px; */
  padding: 10px 30px;
  margin: 10px;
  background: #fffdf6;
  color: #aa80ea;
  border: 2px solid #aa80ea;
  border-radius: 40px;
  transition: 0.4s;
}

.window_frame a.btn_border {
  min-width: 280px;
}

a.btn_border_block {
  display: block;
  width: 100%;
  padding: 10px 30px;
  margin: 0;
  background: #fffdf6;
  color: #aa80ea;
  border: 2px solid #aa80ea;
  border-radius: 40px;
  transition: 0.4s;
}

.window_frame a.btn_border,
.window_frame a.btn_border_block {
  /* background: linear-gradient(to right, #ffe6f4, #f3edfc); */
  background: #ffe6f4;
  border-color: #fffdf6;
  box-shadow: 2px 2px 4px rgba(170, 128, 234, 0.1);
}

a:active.btn_border,
a:active.btn_border_block {
  background: #aa80ea;
  color: #fffdf6;
  text-decoration: none;
}

/* BTN AREA */
.btn_area {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 30px 0 0 0;
  text-align: center;
}

.device_width + .btn_area {
  margin: 15px 0 0 0;
}

.embed_slider + .btn_area {
  margin: 0;
}

/*==================================
SLIDE
==================================*/
/* BANNER SLIDER */
.banner_slider {
  padding: 0;
  margin: 0;
  text-align: center;
}

.banner_slider img {
  display: inline-block;
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid #fffdf6;
  border-radius: 6px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
}

.banner_slider .slick-list {
  padding: 15px 0 !important;
  margin: 0 -68% !important;
}

.banner_slider .slick-slide {
  margin: 0;
}

/* EMBED SLIDER */
.embed_slider {
  padding: 0;
  margin: -55px -42px 0 -42px;
  text-align: center;
  overflow: hidden;
}

.embed_slider .embed_item {
  display: block;
  width: 100%;
  height: auto;
  padding: 30px;
  margin: 0;
}

.embed_slider .embed_media {
  display: block;
  width: 100%;
  height: auto;
  padding: 30px 10px 10px 10px;
  margin: 20px 0 10px 0;
  background-color: #fffdf6;
  border-radius: 6px 6px 10px 10px;
  box-shadow: 0 0 5px rgba(170, 128, 234, 0.1);
  position: relative;
  overflow: hidden;
}

.embed_slider .embed_media:before {
  content: "";
  display: block;
  width: 100%;
  height: 20px;
  background-color: #ffdcef;
  border-radius: 6px 6px 0 0;
  position: absolute;
  left: 0;
  top: 0;
}

.embed_slider .slick-current .embed_media {
  box-shadow: 0 0 5px rgba(170, 128, 234, 0.5);
}

.embed_slider .slick-current .embed_media:before {
  background-color: #ff89cb;
  background-image: url(../common/window_bar_dot_pink.svg);
  background-position: 10px center;
  background-repeat: no-repeat;
  background-size: 42px;
}

.embed_slider .embed_media img {
  opacity: 0.25;
  transition: 1s ease-out;
}

.embed_slider .slide-active img {
  opacity: 1;
  transition: 0.1s ease-in-out;
}

.embed_slider .embed_item .comment_frame {
  display: block;
  padding: 10px;
  margin: 0 0 10px 0;
  color: #ff89cb;
  background-color: #ffffbe;
  border: 2px solid #ff89cb;
  border-radius: 10px;
  position: relative;
  opacity: 0;
  font-weight: 800;
}

.embed_slider .slick-current .embed_item .comment_frame {
  opacity: 1;
}

.embed_slider .embed_item .comment_frame:after {
  content: "";
  display: block;
  width: 30px;
  height: 20px;
  padding: 0;
  margin: 0;
  background-image: url(../common/comment_frame_ar.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: calc(50% - 15px);
  bottom: -17px;
}

#index_memories .embed_slider .embed_item .embed_img,
#index_profile .embed_slider .embed_item .embed_img,
#index_snap .embed_slider .embed_item .embed_img {
  padding-bottom: 100%;
  position: relative;
}

#index_memories .embed_slider .embed_item .embed_img {
  padding-bottom: 56.25%;
}

#index_memories .embed_slider .embed_item .embed_img img,
#index_profile .embed_slider .embed_item .embed_img img,
#index_snap .embed_slider .embed_item .embed_img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

#index_memories .embed_slider .slick-list,
#index_profile .embed_slider .slick-list,
#index_snap .embed_slider .slick-list {
  padding: 0 !important;
  margin: 0 -150px !important;
}

#index_memories .embed_slider .slick-slide,
#index_profile .embed_slider .slick-slide,
#index_snap .embed_slider .slick-slide {
  margin: 0 -45px;
}

/* EMBED SINGLE SLIDER */
.embed_single_slider {
  display: block;
  padding: 0;
  margin: -30px 0 0 0;
  text-align: center;
  /* overflow: hidden; */
}

#index_memories .embed_single_slider {
  margin: -20px 0 0 0;
}

.embed_single_slider .embed_item {
  display: block;
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
}

.embed_single_slider .embed_media {
  display: block;
  width: 100%;
  height: auto;
  padding: 30px 10px 10px 10px;
  margin: 20px 0 10px 0;
  background-color: #fffdf6;
  border-radius: 6px 6px 10px 10px;
  box-shadow: 0 0 5px rgba(170, 128, 234, 0.1);
  position: relative;
  overflow: hidden;
}

.embed_single_slider .embed_media:before {
  content: "";
  display: block;
  width: 100%;
  height: 20px;
  background-color: #ffdcef;
  border-radius: 6px 6px 0 0;
  position: absolute;
  left: 0;
  top: 0;
}

.embed_single_slider .slick-current .embed_media {
  box-shadow: 0 0 5px rgba(170, 128, 234, 0.5);
}

.embed_single_slider .slick-current .embed_media:before {
  background-color: #ff89cb;
  background-image: url(../common/window_bar_dot_pink.svg);
  background-position: 10px center;
  background-repeat: no-repeat;
  background-size: 42px;
}

.embed_single_slider .embed_item .comment_frame {
  display: block;
  padding: 10px;
  margin: 0 0 10px 0;
  color: #ff89cb;
  background-color: #ffffbe;
  border: 2px solid #ff89cb;
  border-radius: 10px;
  position: relative;
  font-weight: 800;
}

.embed_single_slider .embed_item .comment_frame:after {
  content: "";
  display: block;
  width: 30px;
  height: 20px;
  padding: 0;
  margin: 0;
  background-image: url(../common/comment_frame_ar.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: calc(50% - 15px);
  bottom: -17px;
}

#index_memories .embed_single_slider .embed_item .embed_img,
#index_profile .embed_single_slider .embed_item .embed_img,
#index_snap .embed_single_slider .embed_item .embed_img {
  padding-bottom: 100%;
  position: relative;
}

#index_memories .embed_single_slider .embed_item .embed_img {
  padding-bottom: 56.25%;
}

#index_memories .embed_single_slider .embed_item .embed_img img,
#index_profile .embed_single_slider .embed_item .embed_img img,
#index_snap .embed_single_slider .embed_item .embed_img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

#index_memories .embed_single_slider .slick-list,
#index_profile .embed_single_slider .slick-list,
#index_snap .embed_single_slider .slick-list {
  padding: 0 !important;
  margin: 0 -15px !important;
}

#index_memories .embed_single_slider .slick-slide,
#index_profile .embed_single_slider .slick-slide,
#index_snap .embed_single_slider .slick-slide {
  margin: -20px 0 0 0;
}

#index_memories .embed_single_slider .slick-dots {
  margin: -15px 0 0 0;
}

#index_memories .btn_area,
#index_profile .btn_area,
#index_snap .btn_area {
  margin-top: 0;
}

.embed_single_slider .embed_item .item_caption {
  display: block;
  padding: 5px;
  margin: 10px 0 0 0;
  background-color: #fff3f4;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.02) inset;
  border-radius: 6px;
  color: #ff89cb;
  font-size: 1rem;
}

.embed_single_slider .embed_item .item_caption .date {
  padding: 0;
  margin: 0 10px 0 0;
}

/* SLICK COMMON */
.slick-slide {
  position: relative;
  padding: 0;
  margin: 0;
  transition: 0.2s ease-out;
  transform: scale(0.85);
}

.slick-current {
  transition: 0.3s ease-in;
}

.slide-active {
  z-index: 10;
  transform: scale(1);
}

button.slick-arrow {
  width: 45px;
  height: 90px;
  z-index: 100;
}

/* Dots */
.slick-dots {
  display: block;
  width: 100%;
  padding: 0;
  margin: -20px 0 0 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 6px;
  padding: 0;
  border: 1px solid #aa80ea;
  border-radius: 50%;
  cursor: pointer;
}

.slick-dots li.slick-active {
  background-color: #aa80ea;
}

.slick-dots li button {
  display: block;
  width: 10px;
  height: 10px;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-prev {
  width: 34px;
  height: 34px;
  border: 2px solid #fffdf6;
  background-color: #ff89cb;
  background-image: url(../common/icon-left.svg);
  background-position: 2px center;
  background-repeat: no-repeat;
  background-size: 24px;
  position: absolute;
  top: calc(50% - 22px);
  left: 1px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  border-radius: 50%;
  z-index: 20;
  transition: 0.4s;
  opacity: 0.7;
}

.slick-next {
  width: 34px;
  height: 34px;
  border: 2px solid #fffdf6;
  background-color: #ff89cb;
  background-image: url(../common/icon-right.svg);
  background-position: 4px center;
  background-repeat: no-repeat;
  background-size: 24px;
  position: absolute;
  top: calc(50% - 22px);
  right: 1px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  border-radius: 50%;
  z-index: 20;
  transition: 0.4s;
  opacity: 0.7;
}

#index_memories .slick-prev,
#index_memories .slick-next,
#index_profile .slick-prev,
#index_profile .slick-next,
#index_snap .slick-prev,
#index_snap .slick-next {
  top: calc(50% - 17px);
}

.slick-prev:active,
.slick-next:active {
  background-color: #aa80ea;
  opacity: 1;
}

/*==================================
  lity.css
  ==================================*/
/*! Lity - v2.4.1 - 2020-04-26
* http://sorgalla.com/lity/
* Copyright (c) 2015-2020 Jan Sorgalla; Licensed MIT */
.lity {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  background-color: #ffdcef;
  /* background-image: url(../common/bg_pattern-grid.svg);
  background-position: center;
  background-repeat: repeat;
  background-size: 30px; */
  outline: none !important;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.lity.lity-opened {
  opacity: 1;
}
.lity.lity-closed {
  opacity: 0;
}
.lity * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.lity-wrap {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  outline: none !important;
}
.lity-wrap:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}
.lity-loader {
  z-index: 9991;
  color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -0.8em;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.lity-loading .lity-loader {
  opacity: 1;
}
.lity-container {
  z-index: 9992;
  position: relative;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  white-space: normal;
  max-width: 100%;
  max-height: 100%;
  outline: none !important;
}
.lity-content {
  z-index: 9993;
  width: 100%;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: -o-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease, -o-transform 0.3s ease;
}
.lity-loading .lity-content,
.lity-closed .lity-content {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
}
.lity-content:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  /* -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6); */
}
.lity-close {
  z-index: 9994;
  width: 35px;
  height: 35px;
  position: fixed;
  right: 0;
  top: 0;
  /* -webkit-appearance: none; */
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.lity-close::-moz-focus-inner {
  border: 0;
  padding: 0;
}
.lity-close:active,
.lity-close:focus,
.lity-close:active,
.lity-close:visited {
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.lity-close:active {
  top: 1px;
}
/* Image */
.lity-image img {
  max-width: 100%;
  max-height: calc(100vh - 120px) !important;
  display: block;
  line-height: 0;
  border: 0;
}
/* iFrame */
.lity-iframe .lity-container,
.lity-youtube .lity-container,
.lity-vimeo .lity-container,
.lity-facebookvideo .lity-container,
.lity-googlemaps .lity-container {
  width: 100%;
  max-width: 964px;
}
.lity-iframe-container {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: auto;
  pointer-events: auto;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-overflow-scrolling: touch;
}
.lity-iframe-container iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6); */
  background: #000;
}
.lity-hide {
  display: none;
}

/* CUSTOMIZE */
.modal_content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 15px 30px;
  background-color: #fff;
}

#window_menu .modal_content {
  width: calc(100vw + 2px);
  height: 100vh;
  margin: 0;
  background-color: #ffdcef;
}

/* EDIT LITY */
.lity-close {
  font-size: 0;
  display: block;
  width: 45px;
  height: 45px;
  background-color: #ffdcef;
  background-image: url(../common/btn-close-pink.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-left: 1px solid #ff89cb;
  border-bottom: 1px solid #ff89cb;
  transition: 0.4s;
  animation: fadeIn 1s ease 0s 1 normal;
}

.lity-close:active,
.lity-close:focus,
.lity-close:active,
.lity-close:visited {
  display: block;
  width: 45px;
  height: 45px;
  background-color: #aa80ea;
  background-image: url(../common/btn-close-white.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-left: 1px solid #aa80ea;
  border-bottom: 1px solid #aa80ea;
  font-size: 0;
}

/* .lity-container {
  max-width: calc(100% - 60px);
  max-height: calc(100% - 60px);
} */

.menu_elements {
  width: 80vw;
  padding: 45px 0 90px 0;
  margin: 0 auto;
  background-image: url(../common/logo-main_horizontal.svg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 200px;
  text-align: center;
}

ul.nav_main {
  width: 200px;
  padding: 0;
  margin: 0 auto 45px auto;
  list-style: none;
}

ul.nav_main li a {
  display: block;
  height: 24px;
  padding: 0;
  margin: 20px 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  filter: drop-shadow(2px 2px 0px rgba(0, 0, 0, 0.05));
}

ul.nav_main li a.sp_menu-top {
  background-image: url(../common/sp_menu-top.svg);
}

ul.nav_main li a.sp_menu-news {
  background-image: url(../common/sp_menu-news.svg);
}

ul.nav_main li a.sp_menu-mypage {
  margin-top: 45px;
  background-image: url(../common/sp_menu-mypage.svg);
}

ul.nav_main li a.sp_menu-shop {
  background-image: url(../common/sp_menu-shop.svg);
}

ul.nav_main li a.sp_menu-memories {
  background-image: url(../common/sp_menu-memories.svg);
}

ul.nav_main li a.sp_menu-snap {
  background-image: url(../common/sp_menu-snap.svg);
}

ul.nav_main li a.sp_menu-profile {
  background-image: url(../common/sp_menu-profile.svg);
}

ul.nav_main li a.sp_menu-mekuliella {
  background-image: url(../common/sp_menu-mekuliella.svg);
}

a.sp_menu-logout {
  padding: 10px 45px;
  margin: 0;
  background-color: #6f6f6f;
  border-radius: 30px;
  color: #fffdf6;
}

/*==================================
PARTS
==================================*/
/* WINDOW FRAME */
.window_frame {
  padding: 60px 25px 45px 25px;
  background-color: #fffdf6;
  border: 2px solid #aa80ea;
  border-radius: 10px 10px 20px 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: auto;
}

.window_frame .window_bar {
  content: "";
  display: block;
  width: 100%;
  height: 25px;
  margin: 0;
  background-color: #aa80ea;
  background-image: url(../common/window_bar_dot.svg);
  background-position: 10px center;
  background-repeat: no-repeat;
  background-size: 46px;
  border-radius: 10px 10px 0 0;
  position: absolute;
  left: 0;
  top: -2px;
}

.window_frame:before {
  content: "";
  display: block;
  width: 80px;
  height: 90px;
  padding: 0;
  margin: 0;
  background-image: url(../common/parts_star-right.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: -38px;
  top: -30px;
  z-index: -1;
}

.window_frame:after {
  content: "";
  display: block;
  width: 80px;
  height: 90px;
  padding: 0;
  margin: 0;
  background-image: url(../common/parts_star-left.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: -40px;
  bottom: -10px;
  z-index: 2;
}

/* INNER WINDOW */
.inner_window {
  display: block;
  padding: 60px 20px 20px 20px;
  margin: 15px 0;
  border-radius: 8px;
  background-color: rgba(255, 220, 239, 0.3);
  position: relative;
}

h3 + .inner_window {
  margin-top: 25px;
}

.inner_window .inner_title {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 30px;
  padding: 0 20px;
  margin: 0;
  border-radius: 4px 4px 0 0;
  background-color: #ff89cb;
  color: #fffdf6;
  position: absolute;
  left: 0;
  top: 0;
}

/* COMMON ELEMENTS */
ul.text_list {
  padding: 0 0 0 1rem;
  list-style-type: disc;
}

ul.text_list li {
  padding: 0;
  margin: 0 0 0.3rem 0;
}

.window_frame div.caption p {
  padding: 0;
  margin: 4px 0;
}

/* EMBED WINDOW */
.embed_window {
  padding: 35px 10px 10px 10px;
  margin: 0;
  border-radius: 6px 6px 10px 10px;
  box-shadow: 0 0 15px rgba(170, 128, 234, 0.4);
  position: relative;
}

.embed_window:before {
  content: "";
  display: block;
  width: 100%;
  height: 25px;
  background-color: #ff89cb;
  background-image: url(../common/window_bar_dot_pink.svg);
  background-position: 10px center;
  background-repeat: no-repeat;
  background-size: 46px;
  border-radius: 6px 6px 0 0;
  position: absolute;
  left: 0;
  top: 0;
}

/*==================================
TOP PAGE
==================================*/
/* PICKUP AREA */
#index_pickup {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0;
  background: linear-gradient(to right, #ffe6f4, #f3edfc);
}

/* PICKUP AREA - NEWS */
#pickup_news {
  width: 100%;
  padding: 0;
  overflow: hidden;
}

#pickup_news .entry_list {
  border-bottom: none;
  margin: 5px 15px 0 15px;
}

#pickup_news .entry_list .entry_panel {
  border-top: none;
}

#pickup_news .entry_label .category_name {
  width: 110px;
  right: -52px;
  top: -2px;
  transform: rotate(45deg);
  border-radius: 0;
}

#pickup_news .entry_text {
  text-align: left;
}

/* PICKUP AREA - mekuliella */
#pickup_mekuliella {
  width: 100%;
  height: 100px;
  padding: 0;
  position: relative;
}

#pickup_mekuliella:before {
  content: "";
  width: 100%;
  height: 3px;
  background-color: #fffdf6;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.02);
  position: absolute;
  top: 0;
  left: 0;
}

#pickup_mekuliella a.btn-mekuliella {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100px;
  background-color: #eee5fb;
  background-image: url(../common/top_mekuliella_2025.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  border-radius: 0 0 10px 10px;
  transition: 0.4s;
}

#pickup_mekuliella a:hover.btn-mekuliella {
  background-color: #ffdcef;
  background-size: 85%;
}

/* TOP BANNER AREA */
#top_banner {
  padding: 15px 0 5px 0;
}

#top_banner #banner_area {
  display: block;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

/* TOP READ AREA */
#page-index #read_area {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0 0 30px 0;
  background-color: #fffdf6;
}

#page-index #read_area .device_width {
  width: 100%;
  padding: 0 10% 30px 10%;
}

#page-index #read_area .logo {
  display: block;
  width: 90%;
  height: auto;
  padding: 57.3% 0 0 0;
  margin: 10px auto 40px auto;
  background-image: url(../common/logo-main_year2025.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

/* MESSAGE LABEL */
ul.message_namelist {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

ul.message_namelist li {
  display: block;
  width: 100%;
  padding: 5px 0;
  margin: 0;
  text-align: center;
  position: relative;
}

ul.message_namelist li a {
  display: block;
  height: 70px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: 0.4s;
}

ul.message_namelist li a:active {
  filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.05));
  transform: scale(1.02);
}

ul.message_namelist li a.name_label-date_sayuri {
  background-image: url(../common/name_label-date_sayuri.svg);
}

ul.message_namelist li a:active.name_label-date_sayuri {
  background-image: url(../common/name_label-date_sayuri-hover.svg);
}

ul.message_namelist li a.name_label-liyuu {
  background-image: url(../common/name_label-liyuu.svg);
}

ul.message_namelist li a:active.name_label-liyuu {
  background-image: url(../common/name_label-liyuu-hover.svg);
}

ul.message_namelist li a.name_label-misaki_nako {
  background-image: url(../common/name_label-misaki_nako.svg);
}

ul.message_namelist li a:active.name_label-misaki_nako {
  background-image: url(../common/name_label-misaki_nako-hover.svg);
}

ul.message_namelist li a.name_label-payton_naomi {
  background-image: url(../common/name_label-payton_naomi.svg);
}

ul.message_namelist li a:active.name_label-payton_naomi {
  background-image: url(../common/name_label-payton_naomi-hover.svg);
}

ul.message_namelist li a.name_label-aoyama_nagisa {
  background-image: url(../common/name_label-aoyama_nagisa.svg);
}

ul.message_namelist li a:active.name_label-aoyama_nagisa {
  background-image: url(../common/name_label-aoyama_nagisa-hover.svg);
}

ul.message_namelist li a.name_label-suzuhara_nozomi {
  background-image: url(../common/name_label-suzuhara_nozomi.svg);
}

ul.message_namelist li a:active.name_label-suzuhara_nozomi {
  background-image: url(../common/name_label-suzuhara_nozomi-hover.svg);
}

ul.message_namelist li a.name_label-yabushima_akane {
  background-image: url(../common/name_label-yabushima_akane.svg);
}

ul.message_namelist li a:active.name_label-yabushima_akane {
  background-image: url(../common/name_label-yabushima_akane-hover.svg);
}

ul.message_namelist li a.name_label-ookuma_wakana {
  background-image: url(../common/name_label-ookuma_wakana.svg);
}

ul.message_namelist li a:active.name_label-ookuma_wakana {
  background-image: url(../common/name_label-ookuma_wakana-hover.svg);
}

ul.message_namelist li a.name_label-emori_aya {
  background-image: url(../common/name_label-emori_aya.svg);
}

ul.message_namelist li a:active.name_label-emori_aya {
  background-image: url(../common/name_label-emori_aya-hover.svg);
}

ul.message_namelist li a.name_label-yuina {
  background-image: url(../common/name_label-yuina.svg);
}

ul.message_namelist li a:active.name_label-yuina {
  background-image: url(../common/name_label-yuina-hover.svg);
}

ul.message_namelist li a.name_label-sakakura_sakura {
  background-image: url(../common/name_label-sakakura_sakura.svg);
}

ul.message_namelist li a:active.name_label-sakakura_sakura {
  background-image: url(../common/name_label-sakakura_sakura-hover.svg);
}

/*==================================
MESSAGE
==================================*/
#message_card {
  width: 100%;
  padding: 70px 15px 30px 15px;
  margin: 0;
  background-color: #fffdf6;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

#message_card:before {
  content: "";
  display: block;
  width: 100%;
  height: 45px;
  border-radius: 10px 10px 0 0;
  background-color: #000;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 200px;
  position: absolute;
  left: 0;
  top: 0;
  filter: drop-shadow(4px 4px 0 rgba(0, 0, 0, 0.05));
}

#message_card .sender_area {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 10px 0;
  margin: 0;
  background-color: #fffdf6;
  border: 2px solid #aa80ea;
  border-radius: 10px;
  color: #aa80ea;
  font-weight: 800;
}

#message_card.check .sender_area {
  background-color: #faf6ff;
  border: none;
}

#message_card .sender_area p {
  width: 100%;
  padding: 0;
  margin: 0 15px;
}

#message_card .message_comment {
  margin: 40px 0 0 0;
  position: relative;
}

#message_card .message_comment label {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 40px;
  padding: 0 15px;
  margin: 0;
  background-color: #fffdf6;
  color: #aa80ea;
  border: 2px solid #aa80ea;
  border-radius: 10px;
  position: absolute;
  left: calc(50% - 60px);
  top: -18px;
  font-weight: 800;
}

#message_card.check .message_comment label {
  background-color: #eee5fb;
  border: 2px solid #fffdf6;
}

#message_card .message_comment textarea {
  display: block;
  width: 100%;
  min-height: 200px;
  padding: 30px 10px 10px 10px;
  margin: 15px 0;
  background-color: #faf6ff;
  border: 2px solid #aa80ea;
  border-radius: 10px;
  color: #aa80ea;
}

#message_card .message_comment textarea:focus {
  background-color: #ffffbe;
}

#message_card .message_comment textarea::placeholder {
  color: #ccc1db;
}

#message_card .message_comment textarea:focus::placeholder {
  color: transparent;
}

#message_card.check .textarea_preview {
  display: block;
  width: 100%;
  min-height: 200px;
  padding: 30px 10px 10px 10px;
  margin: 15px 0;
  background-color: #faf6ff;
  /* border: 2px solid #aa80ea; */
  border-radius: 10px;
  color: #aa80ea;
}

#message_card .btn_area {
  margin: 15px 0 0 0;
}

#message_card .btn_area a {
  background: #fffdf6;
  border: 2px solid #aa80ea;
}

#message_card .btn_area a:active {
  background-color: #aa80ea;
}

/* LABEL */
#message_card.for-date_sayuri:before {
  background-image: url(../common/name_label-date_sayuri-hover.svg);
  background-color: #ffa800;
}

#message_card.for-liyuu:before {
  background-image: url(../common/name_label-liyuu-hover.svg);
  background-color: #58c5e9;
}

#message_card.for-misaki_nako:before {
  background-image: url(../common/name_label-misaki_nako-hover.svg);
  background-color: #ff618e;
}

#message_card.for-payton_naomi:before {
  background-image: url(../common/name_label-payton_naomi-hover.svg);
  background-color: #69e180;
}

#message_card.for-aoyama_nagisa:before {
  background-image: url(../common/name_label-aoyama_nagisa-hover.svg);
  background-color: #256ab1;
}

#message_card.for-suzuhara_nozomi:before {
  background-image: url(../common/name_label-suzuhara_nozomi-hover.svg);
  background-color: #e4cf42;
}

#message_card.for-yabushima_akane:before {
  background-image: url(../common/name_label-yabushima_akane-hover.svg);
  background-color: #ff726d;
}

#message_card.for-ookuma_wakana:before {
  background-image: url(../common/name_label-ookuma_wakana-hover.svg);
  background-color: #7ae0bc;
}

#message_card.for-emori_aya:before {
  background-image: url(../common/name_label-emori_aya-hover.svg);
  background-color: #f85bce;
}

#message_card.for-yuina:before {
  background-image: url(../common/name_label-yuina-hover.svg);
  background-color: #e49dfd;
}

#message_card.for-sakakura_sakura:before {
  background-image: url(../common/name_label-sakakura_sakura-hover.svg);
  background-color: #4cd2e2;
}

/* THANKS PAGE */
#send_thanks {
  width: 100%;
  padding: 15px;
  margin: 0;
  background-color: #ffffbe;
  border: 2px solid #fff;
  border-radius: 10px;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  text-align: center;
}

#send_thanks h3 {
  padding: 0;
  margin: 0;
  font-size: 1.2rem;
  color: #ff89cb;
}

/*==================================
めくりえら
==================================*/
#mekuliella_content {
  padding: 0;
}

#mekuliella_content .mekuliella_read {
  color: #aa80ea;
  font-size: 1.2rem;
}

#mekuliella_content .mekuliella_caption {
  font-size: 0.9rem;
  text-align: right;
}

#mekuliella_content .mekuliella_caption p {
  padding: 2px 0;
}

#mekuliella_main {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 15px 0;
}

.mekuliella_flipcard {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 100%;
  perspective: 150vw;
}

.mekuliella_flipcard:hover {
  animation: shake 1.2s ease 0s 1 normal forwards;
}

.mekuliella_flipcard div {
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.8s;
  backface-visibility: hidden;
  cursor: pointer;
}

.mekuliella_flipcard img {
  width: 100%;
  border-radius: 10px;
}

.mekuliella_flipcard .card_back {
  transform: rotateY(-180deg);
}

.mekuliella_flipcard.clicked .card_front {
  transform: rotateY(180deg);
}

.mekuliella_flipcard.clicked .card_back {
  transform: rotateY(0);
}

/*==================================
MEDIA TYPE ICON
==================================*/
.embed_slider .embed_item.type-movie:after,
.embed_single_slider .embed_item.type-movie:after,
.grid_gallery a.type-movie:after {
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  background-image: url(../common/corner_type-movie.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 40px;
  bottom: 50px;
}

.embed_slider .embed_item.type-photo:after,
.embed_single_slider .embed_item.type-photo:after,
.grid_gallery a.type-photo:after {
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  background-image: url(../common/corner_type-photo.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 40px;
  bottom: 50px;
}

.embed_single_slider .embed_item.type-movie:after,
.embed_single_slider .embed_item.type-photo:after {
  left: 9px;
  bottom: 25px;
}

.grid_gallery a.type-movie:after,
.grid_gallery a.type-photo:after {
  width: 45px;
  height: 45px;
  left: 0;
  bottom: 0;
}

/*==================================
MY PAGE
==================================*/
#mypage .window_frame {
  border: 3px solid #ff89cb;
}

#mypage .window_frame .window_bar {
  background-color: #ff89cb;
  background-image: url(../common/window_bar_dot_pink.svg);
}

#mypage .btn_area {
  margin: 15px 0 0 0;
}

#mypage a.btn_border {
  background: #fffdf6;
  color: #ff89cb;
  border: 2px solid #ff89cb;
}

#mypage a:active.btn_border {
  background-color: #ff89cb;
  color: #fffdf6;
}

#mypage_overview {
  display: block;
  width: 100%;
  padding: 20px 0 0 0;
  margin: 0;
}

#member_career {
  display: block;
  margin: 30px 0 0 0;
  font-weight: 800;
}

#member_career .career_read {
  display: block;
  width: 100%;
  padding: 45px 0 0 0;
  background-image: url(../common/logo-main_horizontal.svg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 200px;
  text-align: center;
}

#member_career .career_time {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: first baseline;
  padding: 0;
  margin: 40px 0 0 0;
  text-align: center;
  color: #aa80ea;
}

#member_career .career_time span.count_year {
  display: inline-block;
  padding: 0 5px 0 0;
  color: #ff89cb;
  text-shadow: 3px 3px 0 #ffdcef;
}

#member_career .career_time span.count_mm {
  display: inline-block;
}

#membership_detail {
  display: block;
  margin-top: 45px;
}

#membership_detail h5 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  height: 60px;
  padding: 0 15px;
  margin: 0;
  background-color: #aa80ea;
  color: #fffdf6;
  position: relative;
}

/* QR CODE
#membership_detail h5:before {
  content: "";
  display: block;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 4px solid #aa80ea;
  background-color: #fffdf6;
  background-image: url(../common/membership_qr.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 40px;
  position: absolute;
  right: -30px;
  top: -6px;
} */

#membership_detail_list {
  display: block;
}

#membership_detail_list dl {
  width: 100%;
  padding: 0;
  margin: 2px 0 0 0;
  background-color: #ffe8f0;
}

#membership_detail_list dl dt {
  width: 100%;
  padding: 10px 15px 0 15px;
  color: #ff89cb;
}

#membership_detail_list dl dd {
  width: 100%;
  padding: 0 15px 5px 15px;
}

#membership_detail_list dl dd p {
  padding: 0 0 5px 0;
}

#mycollection_list .grid_gallery ul li {
  width: calc((100% - 20px) / 3);
  margin: 0 10px 10px 0;
}

#mycollection_list .grid_gallery ul li:nth-child(3n) {
  margin-right: 0;
}

#mycollection_list .grid_gallery ul li a,
#mycollection_list .lity_slider-nav ul li span {
  padding-bottom: calc(100% - 2px);
  border: 1px solid #ff89cb;
}

#mycollection_list .grid_gallery ul li a img,
#mycollection_list .lity_slider-nav ul li span img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

#mycollection_list .grid_gallery ul li:empty {
  padding-bottom: calc((100% - 20px) / 3);
  pointer-events: none;
  background-color: #ffdcef;
  border-radius: 8px;
}

/*==================================
MYCOLLECTION SORT
==================================*/
#mycollection_list .btn_area {
  margin: 15px 0 0 0;
}

#mycollection_nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0;
  margin: -10px 0 20px 0;
}

#mycollection_nav a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 30px;
  padding: 0 15px 0 35px;
  margin: 5px;
  background-color: rgba(255, 255, 255, 0.05);
  background-position: 10px center;
  background-repeat: no-repeat;
  background-size: 18px;
  border: 1px solid #ff89cb;
  border-radius: 15px;
  color: #ff89cb;
  box-shadow: none;
  cursor: pointer;
  transition: 0.4s;

  font-size: 0.9rem;
}

#mycollection_nav a:hover,
#mycollection_nav a:active {
  background-color: #ff89cb;
  color: #fffdf6;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

#mycollection_nav a.mc_btn-filter {
  background-image: url(../common/btn-filter-pink.svg);
}

#mycollection_nav a.mc_btn-filter:hover,
#mycollection_nav a.mc_btn-filter:active {
  background-image: url(../common/btn-filter-white.svg);
}

#mycollection_nav a.mc_btn-sort {
  background-image: url(../common/btn-sort-pink.svg);
}

#mycollection_nav a.mc_btn-sort:hover,
#mycollection_nav a.mc_btn-sort:active {
  background-image: url(../common/btn-sort-white.svg);
}

#mycollection_window-inner {
  padding: 50px 20px 20px 20px;
  margin: 0 30px;
  background-color: #fffdf6;
  border-radius: 8px;
  text-align: left;
  position: relative;
}

#mycollection_window-inner:before {
  content: "";
  display: block;
  width: 100%;
  height: 25px;
  margin: 0;
  background-color: #ff89cb;
  background-image: url(../common/window_bar_dot_pink.svg);
  background-position: 10px center;
  background-repeat: no-repeat;
  background-size: 46px;
  border-radius: 6px 6px 0 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}

#mycollection_window-inner form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
}

#mycollection_window-inner div.mc_block {
  width: 100%;
  margin: 0 15px;
}

#mycollection_window-inner strong {
  display: block;
  width: 100%;
  padding: 0;
  margin: 5px 0;
  color: #ff89cb;

  font-size: 1.2rem;
}

#mycollection_window-inner .mc_form-select {
  background-color: #ffffbe;
  border: 1px solid #ffdcef;
  border-radius: 5px;
  position: relative;
}

#mycollection_window-inner select {
  width: 100%;
  padding: 5px 10px;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  color: #ff89cb;
}

#mycollection_window-inner select::-ms-expand {
  display: none;
}

#mycollection_window-inner .mc_form-select::before {
  position: absolute;
  top: 1rem;
  right: 0.8rem;
  width: 0;
  height: 0;
  padding: 0;
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #ff89cb;
  pointer-events: none;
}

#mycollection_window-inner div.mc-btn_area {
  display: block;
  width: 100%;
  margin: 30px 0 15px 0;
  text-align: center;
}

#mycollection_window-inner .mc-btn_area .btn_border,
#mycollection_window-inner .mc-btn_area button {
  display: inline-block;
  min-width: 200px;
  padding: 10px 30px;
  margin: 0 15px;
  background: #fffdf6;
  color: #ff89cb;
  border: 2px solid #ff89cb;
  border-radius: 40px;
  transition: all 0.4s ease-out;
  font-weight: 600;
}

#mycollection_window-inner .mc-btn_area .btn_border:hover,
#mycollection_window-inner .mc-btn_area button:hover {
  background-color: #ff89cb;
  color: #fffdf6;
}

/*==================================
SYSTEM MESSAGE
==================================*/
#system_message {
  padding: 45px 20px 15px 20px;
  background: linear-gradient(to right, #ffe6f4, #f3edfc);
  border: 3px solid #fffdf6;
}

#system_message a {
  text-decoration: none;
  color: #6f6f6f;
  transition: 0.4s;
}

#system_message a:active {
  text-decoration: none;
  color: #3c3c3c;
}

#system_message .s_message_text {
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid #fffdf6;
}

#system_message .s_message_text:first-of-type {
  padding: 0;
  margin: 0;
  border-top: none;
}

#system_message h4.inner_title {
  background: linear-gradient(to right, #aa80ea 25%, #ff89cb 75%);
}

/*==================================
CARD
==================================*/
/* MEMBERS CARD */
#members_card {
  /* width: 240px;
  height: 150px; */
  width: 100%;
  height: 62.5%;
  background: linear-gradient(to bottom right, #aa80ea 25%, #ff89cb 75%);
  border-radius: 10px;
  transform: rotate(5deg);
}

#members_card div {
  display: block;
  width: 100%;
  height: 62.5%;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  transform: rotate(-5deg);
}

#members_card div img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

#members_card div .members_card_num {
  position: absolute;
  width: 70%;
  padding: 4px 0;
  left: 15%;
  bottom: 18%;
  text-align: center;
  color: #fff;
  background-color: #a6a2cd;
  box-shadow: 1px 1px 3px inset rgba(0, 0, 0, 0.1), 1px 1px 1px rgba(255, 255, 255, 0.1);
  border-radius: 30px;
}

#members_card div .members_card_num:before {
  content: "Liella! CLUB ID：";
  display: inline-block;
  padding: 0;
  margin: 0 5px 0 0;
}

#mypage_overview #members_card div .members_card_num {
  bottom: 18%;
}

/* CARD CHANGE */
#mypage_card_change {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

#mypage_card_change form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

#mypage_card_change .card_face {
  display: block;
  width: 100%;
  padding: 0;
  margin: 5px 0;
  text-align: center;
}

#mypage_card_change .card_face img {
  width: 100%;
  height: auto;
  margin: 0 0 10px 0;
  border-radius: 4px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

#mypage_card_change .card_face label {
  display: block;
  padding: 20px 20px 10px 20px;
  margin: 0;
  transition: 0.4s;
}

#mypage_card_change input[type="radio"] {
  display: none;
}

#mypage_card_change input[type="radio"] + label {
  border: 2px solid rgba(0, 0, 0, 0);
  border-radius: 6px;
}

#mypage_card_change input[type="radio"]:checked + label,
#mypage_card_change input[type="radio"].switch:checked + input + label {
  background-color: #eee5fb;
  border: 2px solid #fffdf6;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.03);
}

/*==================================
BEFORE PAGE
==================================*/
#page-before #mainvisual {
  padding-top: 46.9%;
  background-image: url(../common/mainvisual_short_20230919.jpg);
}

/* READ AREA */
#page-before #read_area .device_width {
  padding: 10px;
}

#page-before #read_area #login_window_area .logo {
  display: none;
}

#page-before #read_area h1 {
  display: block;
  width: 100%;
  height: 140px;
  padding: 0;
  margin: 15px 0 0 0;
  background-image: url(../common/special-read_area-sp_2024.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  filter: drop-shadow(2px 2px 2px #ffdcef);
  position: relative;
}

#page-before #read_area h1:before {
  content: "";
  display: block;
  width: 55px;
  height: 70px;
  padding: 0;
  margin: 0;
  background-image: url(../common/parts_star-left.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 20px;
  top: 40px;
  z-index: -1;
}

#page-before #read_area h1:after {
  content: "";
  display: block;
  width: 55px;
  height: 70px;
  padding: 0;
  margin: 0;
  background-image: url(../common/parts_star-right.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: 20px;
  top: 40px;
  z-index: -1;
}

#page-before #read_area .btn_area {
  margin: 15px auto 30px auto;
}

/* PAGE OVERVIEW */
#page-before.page_overview #read_area .device_width {
  padding: 5px 8% 10px 8%;
}

#page-before.page_overview #read_area .logo {
  display: block;
  width: 84%;
  height: auto;
  padding: 57.3% 0 0 0;
  margin: 0 auto 20px auto;
  background-image: url(../common/logo-main_year2025.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

#page-before #movie .movie_read {
  display: block;
  width: 100%;
  height: 30px;
  padding: 0;
  margin: 0 auto 20px auto;
  background-image: url(../common/movie_area-free.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  filter: drop-shadow(2px 2px 2px #ffdcef);
  position: relative;
}

#page-before #whats h3 {
  padding: 0 0 5px 0;
  margin: 45px 0 15px 0;
  color: #aa80ea;
  border-bottom: 1px solid #eee5fb;
}

#page-before .window_frame ul {
  padding: 0 0 0 1rem;
  list-style-type: disc;
}

#page-before .window_frame ul li {
  padding: 0;
  margin: 0 0 0.3rem 0;
}

#page-before .window_frame div.caption p {
  padding: 0;
  margin: 4px 0;
}

/*==================================
LOGIN
==================================*/
.page_login #mainvisual:after {
  display: none;
}

#login_window_area {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  padding: 10px;
  margin: -30px 0 30px 0;
}

#login_window_area .login_window.form_area {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 100px 30px 45px 30px;
  margin: 0 -10px;
  background: linear-gradient(to top left, #ffe6f4, #f3edfc);
  border-top: 2px solid #fff;
  border-radius: 0;
  box-shadow: 0 -10px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

#login_window_area .login_window.form_area:after {
  content: "";
  display: block;
  width: 100%;
  height: 100px;
  background-image: url(../common/logo-main_horizontal.svg);
  background-position: center 40px;
  background-repeat: no-repeat;
  background-size: 250px;
  position: absolute;
  left: 0;
  top: 0;
}

#login_window_area .login_window form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
}

#login_window_area .login_window .form_element {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
}

#login_window_area .login_window .form_element label {
  display: block;
  padding: 0;
  margin: 20px 0 5px 0;
  color: #aa80ea;
  text-align: center;
}

#login_window_area .login_window .form_element input {
  width: 100%;
  padding: 10px 15px;
  margin: 0;
  text-align: center;
  color: #aa80ea;
  background-color: #fffdf6;
  border: 2px solid #aa80ea;
  transition: 0.4s;
}

#login_window_area .login_window .form_element input:focus {
  color: #aa80ea;
  background-color: #ffffbe;
  outline: none;
}

#login_window_area .login_window .form_element input::placeholder {
  color: #ccc1db;
}

#login_window_area .login_window .form_element input:focus::placeholder {
  color: transparent;
}

#login_window_area .login_window .btn_login_area {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 0;
  margin: 25px 0 0 0;
}

#login_window_area .login_window button {
  width: 100%;
  padding: 15px;
  margin: 0;
  color: #fffdf6;
  background-color: #ff89cb;
  border: none;
  transition: 0.4s;
}

#login_window_area .login_window button:active {
  background-color: #aa80ea;
}

#login_window_area .login_window p.caption {
  width: 100%;
  margin: 2px 0 0 0;
  text-align: center;
}

#login_window_area .login_window p a {
  color: #aa80ea;
}

#login_window_area .login_window a.btn_join {
  display: block;
  width: 100%;
  padding: 15px;
  margin: 20px 0 0 0;
  background-color: rgba(0, 0, 0, 0.02);
  border: 1px dashed #aa80ea;
  color: #aa80ea;
  text-align: center;
  transition: 0.4s;
}

#login_window_area .login_window a:active.btn_join {
  text-decoration: none;
  background-color: #aa80ea;
  color: #fffdf6;
}

/*==================================
SECTION TITLE
==================================*/
section h2 {
  display: block;
  height: 50px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 400px;
  position: relative;
}

section#news h2 {
  background-image: url(../common/section_title_s-news.svg);
}

section#index_memories h2,
section#memories h2 {
  background-image: url(../common/section_title_s-memories.svg);
}

section#index_movie h2,
section#movie h2 {
  background-image: url(../common/section_title_s-movie.svg);
}

section#message h2 {
  background-image: url(../common/section_title_s-message.svg);
}

section#mypage h2 {
  background-image: url(../common/section_title_s-mypage.svg);
}

section#whats h2 {
  height: 80px;
  background-image: url(../common/section_title_s-whats-sp.svg);
}

section#index_profile h2,
section#profile h2,
section#profile_entry h2 {
  background-image: url(../common/section_title_s-profile.svg);
}

section#index_snap h2,
section#snap h2 {
  background-image: url(../common/section_title_s-snap.svg);
}

section#mekuliella h2 {
  background-image: url(../common/section_title_s-mekuliella.svg);
}

/*==================================
BD
==================================*/
#mainvisual.birthday_content {
  padding-top: 100%;
  background-image: url(../bd_content/mainvisual_bd.jpg);
  /* background-image: url(../bd_content/bd-atari.jpg); */
  background-position: center bottom;
  background-size: 100%;
}

#mainvisual.birthday_content:after {
  height: 12%;
}

#mainvisual.birthday_content .bd_name {
  display: block;
  width: 30%;
  height: 15%;
  background-image: url(../bd_content/mainvisual_bd-name.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: 9.3%;
  top: 27.2%;
  animation: fadeIn_down 2s ease 0.5s 1 normal forwards;
  opacity: 0;
}

#mainvisual.birthday_content .open_bd_gacha {
  display: block;
  width: 28%;
  height: 45%;
  position: absolute;
  right: 9.4%;
  bottom: 4.5%;
  animation: fadeIn_up 1.4s ease 1s 1 normal forwards;
  opacity: 0;
}

#mainvisual.birthday_content .open_bd_gacha a {
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../bd_content/mainvisual_bd-gacha.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: 0.4s;
}

#mainvisual.birthday_content .open_bd_gacha a:active {
  transform: scale(1.05);
}

#mainvisual.birthday_content .bd_link_btn a {
  display: block;
  width: 19.4%;
  height: 11%;
  background-image: url(../bd_content/mainvisual_bd-btn.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: 4.3%;
  top: 42.5%;
  animation: fadeIn_up 2.4s ease 1s 1 normal forwards;
  opacity: 0;
  transition: 0.4s;
}

#mainvisual.birthday_content .bd_link_btn a:active {
  background-image: url(../bd_content/mainvisual_bd-btn_hover.png);
  transform: scale(1.05);
}

/* BD MODAL */
.bd_page .lity-container {
  max-height: 100%;
  overflow-y: auto;
}

#window_gacha .modal_content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 90vw;
  padding-top: calc(90vw * 1.47);
  /* padding-top: 150%; */
  border-radius: 30px;
  position: relative;
  border: 1px solid rgba(255, 137, 203, 0.5);
}

#window_gacha .read_text {
  display: block;
  width: 100%;
  padding: 0 10px;
  text-align: center;
  color: #6f6f6f;
  position: absolute;
  left: 0;
  bottom: 15px;
  z-index: 10;
  font-size: 0.9rem;
}

/* CANVAS */
#bd_ani {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 4;
  overflow: auto;
}

#bd_ani #animation_container {
  width: 100% !important;
  height: 100% !important;
  padding: 0;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

#bd_ani #animation_container canvas {
  position: absolute;
  width: 100% !important;
  height: 100% !important;
  border-radius: 30px;
}

/* INVALID */
#window_gacha .modal_content.invalid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 90vw;
  padding: 30px 0;
  border-radius: 30px;
  text-align: center;
  background-color: #fffdf6;
}

/* #window_gacha .invalid {
  width: 100%;
  height: 100%;
  text-align: center;

  background-color: #d00;
} */

#window_gacha .invalid .gacha_illust {
  display: block;
  width: 100%;
  height: auto;
  padding-top: 85%;
  background-image: url(../bd_content/mainvisual_bd-gacha.png);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 50%;
  filter: grayscale(90%);
  opacity: 0.8;
}

#window_gacha .invalid .btn_area {
  margin: 15px 0;
}

#window_gacha .invalid .text_area {
  padding: 0 30px;
}

#window_gacha .invalid .text_area strong {
  color: #aa80ea;
  font-size: 1.8rem;
}

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

h1,
h2,
h3,
h4 {
  padding: 0;
  margin: 0;
  line-height: 140%;
}

p {
  line-height: 160% !important;
  padding: 5px 0;
  margin: 0;
}

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

a:active {
  text-decoration: underline;
}

.marker {
  padding-left: 5px;
  padding-right: 5px;
  margin-left: 2px;
  margin-right: 2px;
  background-color: #ff89cb;
  color: #fffdf6;
  border-radius: 3px;
}

/* .marker:active {
  background-color: #ff015e;
  color: #fff;
  text-decoration: none;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
} */

.caption {
  display: block;
  font-size: 0.8rem !important;
}

.inline_caption {
  display: inline;
  font-size: 0.8rem !important;
}

h1 {
  font-size: 3rem;
}

h2 {
  padding: 0;
  margin: 0 0 20px 0;
}

h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 30px 0 0.5rem 0;
}

footer .copyright {
  font-size: 0.8rem;
}

a.btn_border,
a.btn_border_block {
  font-weight: 600;
}

.accordion_ttl {
  font-size: 1.1rem;
}

.btn_area {
  font-size: 1.1rem;
}

.inner_window h4.inner_title {
  font-size: 1.1rem;
}

.window_frame .sub_title {
  display: block;
  padding: 0;
  margin: 0 0 0.5rem 0;
  font-size: 1.2rem;
  font-weight: 800;
}
.window_frame .imp {
  font-size: 1.02rem;
  font-weight: 800;
}

footer .btn_area a.btn_border {
  font-size: 1rem;
}

footer ul.link_text {
  font-size: 0.9rem;
}

.grid_gallery ul li {
  font-size: 1.1rem;
}

.modal_embed p {
  font-size: 1rem;
}

.entry_label .category_name {
  font-size: 0.74rem;
  font-weight: 800;
}

.entry_label .category_name.new:before {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: -0.04rem;
}

#entry_title_area h1 {
  font-size: 1.4rem;
}

.entry_detail h2 {
  font-size: 1.25rem;
  line-height: 130%;
}

.pager ul li a {
  font-size: 1rem;
  font-weight: 800;
}

a.sp_menu-logout {
  font-size: 1.1rem;
  font-weight: 800;
}

#mypage a.btn_border {
  font-size: 0.9rem;
}

#member_career .career_read {
  font-size: 1.1rem;
}

#member_career .career_time {
  font-size: 1.34rem;
}

#member_career .career_time span.count_year {
  font-size: 7rem;
}

#membership_detail h5 {
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 120%;
}

#membership_detail_list dl dt {
  font-size: 1rem;
  font-weight: 800;
}

#members_card div .members_card_num {
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 100%;
}

#mypage_overview #members_card div .members_card_num {
  font-size: 0.7rem;
}

#login_window_area .login_window .form_element label {
  font-size: 1.1rem;
  font-weight: 800;
}

#login_window_area .login_window .form_element input {
  font-size: 1.1rem;
}

#login_window_area .login_window .form_element input::placeholder {
  font-size: 1rem;
}

#login_window_area .login_window button {
  font-size: 1.2rem;
  font-weight: 800;
}

#login_window_area .login_window a.btn_join {
  font-size: 0.94rem;
  font-weight: 800;
}

/*==========================================*/
.fix {
  overflow: hidden;
  zoom: 1;
}

.none {
  display: none;
}

.display_sp {
  display: block !important;
}

.display_pc {
  display: none !important;
}
