@charset "UTF-8";
body {
  min-height: 100vh;
}
:root {
  --txt_main: #181113;
	--white: #FFFFFF;
  --red_01: #FF3B8E;
  --red_02: #E6339A;
	--pink: #FA80B8;
  --yellow: #facd32;
  --gray: #efefef;
}
.js-view {
  visibility: hidden;
}
.js-view.ac {
  visibility: visible;
}
.pc_only {
  display: block;
}
.sp_only {
  display: none;
}
@media screen and (max-width: 650px) {
.pc_only {
  display: none;
}
.sp_only {
  display: block;
}
}
/** メインコンテンツ **/
.ls_contents {
  background: var(--white);
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 100%;
  row-gap: 40px;
  padding-bottom: 150px;
  justify-content: center;
  align-items: center;
}
.pd_wrap {
  padding: 0 10px;
  width: 100%;
  max-width: 650px;
}
h1,h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: bold;
  color: var(--white);
  text-align: center;
  letter-spacing: 0.1em;
  position: relative; 
  padding-bottom: 20px;
}
h1 span.material-icons,
h2 span.material-icons {
  display: block;
  font-size: 36px;
  margin-bottom: 15px;
}
h1::after,
h2::after { 
  content: ""; 
  position: absolute; 
  left: 50%; 
  bottom: 0; 
  transform: translateX(-50%); 
  width: 60px; /* 下線の長さ（調整可） */ 
  height: 3px; /* 下線の太さ */ 
  background-color: var(--white); /* 色 */ 
  border-radius: 2px; /* 角丸（任意） */ 
}
/** //メインコンテンツ **/

/** メインビジュアル **/
.ls_mv {
	width: 100%;
  max-width: 650px;
  margin: 10px auto 20px;
	position: relative;
	background-color: var(--white);
}
.ls_mv figure {
  width: 100%;
  margin: 0;
}
.ls_mv figure img {
  width: 100%;
  border-radius: 0 40px;
}
/* .ls_mv figure img.ac {
	-webkit-animation: fade-in-fwd 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: fade-in-fwd 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
} */
.ls_mv p {
  margin: 20px auto;
  padding: 10px;
  font-weight: 500;
  font-size: clamp(16px, 3vw, 18px);
  color: var(--red_01);
  line-height: 1.7;
  text-align: center;
}
/* .ls_mv p.ac {
	-webkit-animation: puff-in-center 0.7s cubic-bezier(0.470, 0.000, 0.745, 0.715) both;
	        animation: puff-in-center 0.7s cubic-bezier(0.470, 0.000, 0.745, 0.715) both;
} */
/** //メインビジュアル **/
/* インナー */
.ls_inner {
  background: var(--white);
  box-shadow: 0px 5.973px 20.907px 0px rgba(0, 0, 0, 0.15);
  max-width: 650px;
}
@media screen and (max-width: 650px) {
.ls_inner {
  padding: 60px 10px;
}
}
/* インナー end */
/* PRODUCT LINEUP */
.lineup .ls_inner {
  background: var(--red_01);
  padding: 60px 20px;
  border-radius: 0 20px;
}
.product_wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  row-gap: 60px;
  margin: 40px 0;
}
.product_wrap .margin-child {
  width: 47%;
}
.product_wrap .margin-child .img_box {
  width: 100%;
  padding: 3px;
  background-color: var(--white);
  border: 4px solid var(--white);
  overflow: hidden;
  border-radius: 0 16px;
  margin-bottom: 5px;
  display: block;
  transition: 0.1s;
  aspect-ratio: 1 / 1;
}
.card {
  display: flex;
  flex-wrap: wrap;
  row-gap: 30px;
  justify-content: center;
}
.product_wrap .margin-child .card a {
  text-decoration: none;
  text-align: center;
}
.product_wrap .margin-child .card img {
  width: 100%;
  height: auto;
  border-radius: 0 10px;
}
.product_wrap .margin-child .card a:hover .img_box {
  border-color: var(--pink);
  transition: 0.1s;
}
.product_wrap .margin-child .card a:hover img {
  filter: brightness(105%);
  transition: 0.1s;
}
.product_wrap .productsname {
  font-weight: bold;
  color: var(--white);
  margin-top: 1em;
  text-decoration: none;
  font-size: 18px;
  height: 2em;
}
#wrapper .card a.btn {
  display: flex;
  justify-content: center;
  background: var(--white);
  padding: 10px 40px;
  color: var(--red_02);
  font-size: 16px;
  border-radius: 50px;
  font-weight: bold;
}
#wrapper .card a.btn:hover {
  background: var(--pink);
  color: var(--white);
  transition: 0.1s;
}
#wrapper .product_wrap .al_center {
  width: 100%;
  display: flex;
  justify-content: center;
}
#wrapper .product_wrap .al_center a.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 55%;
  background: var(--white);
  padding: 10px 50px;
  color: var(--red_02);
  font-size: 18px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
}
#wrapper .product_wrap .al_center a.btn span {
  font-size: 26px;
  padding-right: 10px;
}
#wrapper .product_wrap .al_center a.btn:hover {
  background: var(--yellow);
  color: var(--txt_main);
  transition: 0.1s;
}
@media screen and (max-width: 650px) {
.lineup .ls_inner {
  padding: 60px 10px;
}
.product_wrap {
  row-gap: 80px;
}
.product_wrap .productsname {
  font-size: 16px;
}
#wrapper .card a.btn {
  padding: 10px 20px;
}
#wrapper .product_wrap .al_center a.btn {
  width: 80%;
}
.product_wrap .margin-child .img_box {
  border: 2px solid var(--white);
}
}
/* PRODUCT LINEUP end */
/* ABOUT LICCA */
.about .ls_inner {
  background: var(--pink);
  padding: 60px 20px;
  border-radius: 0 20px;
}
/* .about .js-view.ac {
	-webkit-animation: fade-in-fwd 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: fade-in-fwd 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
} */
.about_wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  row-gap: 30px;
  margin: 40px 0;
  overflow: hidden;
}
.about_wrap p {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.7;
}
.aboutSlider {
  width: 100%;
  padding: 60px 10px;
} 
.aboutSlider .item {
	position: relative;
}
.aboutSlider img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0 20px;
  border: 4px solid #FFF;
}
.aboutSlider {
   visibility: hidden; 
} 
.aboutSlider.slick-initialized {
   visibility: visible;
}
.aboutSlider .item { width: 100%; }
.aboutSlider .slick-slide {
  transition: transform 0.3s ease;
  opacity: 1; /* 周囲を少し薄くする場合（任意） */
  margin: 0 20px;
}
.aboutSlider .slick-slide {
  transition: transform 0.3s ease;
  overflow: visible;
}
.aboutSlider .slick-list {
  overflow: visible; /* はみ出しを許可 */
}
.aboutSlider figure {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.aboutSlider figcaption {
  color: var(--white);
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  margin: 10px auto 0;
  width: 50%;
  border-bottom: 2px solid var(--white);
}
.aboutSlider figcaption:nth-of-type(2) {
  width: 100%;
  border-bottom: none;
  font-weight: normal;
}
/* ABOUT LICCA end */
/* MOVIE */
.movie .ls_inner {
  background: var(--white);
  padding: 60px 0;
  border-radius: 0 20px 20px 20px;
  box-shadow: none;
}
.movie h2 {
  color: var(--red_02);
}
.movie h2::after {
  background-color: var(--red_02); /* 色 */ 
}
.youtube {
  position: relative;
  width: 100%;
  padding-top: 54.25%;
	border-radius: 20px;
	overflow: hidden;
	background-color: #fff;
	border: 10px solid #fff;
	margin-bottom: 5px;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
/* MOVIE end */
/* SNS */
.sns {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 650px;
  margin: auto;
}
.sns .ls_inner {
  background: var(--red_01);
  padding: 60px 20px;
  border-radius: 0;
  box-shadow: none;
  margin-top: -5px;
  margin-bottom: -5px;
}
.sns svg {
  width: 100%;
  max-width: 650px;
}
.sns_wrap {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    margin: 40px 0;
}
.sns_wrap i {
  font-size: 35px;
  padding: 10px;
  color: var(--white);
  border-radius: 50px;
  background: var(--pink);
}
.sns_wrap a:hover {
  filter: brightness(110%);
  transition: 0.1s;
}
/* SNS end */
/* カテゴリー */
.categoryBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.categoryBox .ls_button {
  display: flex;
  width: 48%;
  align-items: center;
  margin-bottom: 10px;
  font-weight: bold;
  padding: 10px 10px;
  line-height: 1;
  border-radius: 0px 12px 12px;
}
@media screen and (max-width: 900px) {
.categoryBox .ls_button {
  padding: 10px 5px 10px 10px;
	font-size:1.40px;
	}
}
.categoryBox .ls_button::before {
  content: '';
  display: block;
  width: 30px;
  height: 30px;
  margin-right: 8px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.categoryBox .ls_button.licca::before {
  background-image: url("../images/icon_licca.svg");
}
.categoryBox .ls_button.licca:hover::before {
  background-image: url("../images/icon_licca_ov.svg");
}
.categoryBox .ls_button.friend::before {
  background-image: url("../images/icon_friend.svg");
}
.categoryBox .ls_button.friend:hover::before {
  background-image: url("../images/icon_friend_ov.svg");
}
.categoryBox .ls_button.dress::before {
  background-image: url("../images/icon_dress.svg");
}
.categoryBox .ls_button.dress:hover::before {
  background-image: url("../images/icon_dress_ov.svg");
}
.categoryBox .ls_button.house::before {
  background-image: url("../images/icon_house.svg");
}
.categoryBox .ls_button.house:hover::before {
  background-image: url("../images/icon_house_ov.svg");
}
.categoryBox .ls_button.shop::before {
  background-image: url("../images/icon_shop.svg");
}
.categoryBox .ls_button.shop:hover::before {
  background-image: url("../images/icon_shop_ov.svg");
}
.categoryBox .ls_button.vehicle::before {
  background-image: url("../images/icon_vehicle.svg");
}
.categoryBox .ls_button.vehicle:hover::before {
  background-image: url("../images/icon_vehicle_ov.svg");
}
.categoryBox .ls_button.goods::before {
  background-image: url("../images/icon_goods.svg");
}
.categoryBox .ls_button.goods:hover::before {
  background-image: url("../images/icon_goods_ov.svg");
}
.categoryBox .ls_button.other::before {
  background-image: url("../images/icon_other.svg");
}
.categoryBox .ls_button.other:hover::before {
  background-image: url("../images/icon_other_ov.svg");
}
/* カテゴリー end */

/* PRODUCTS */
.products .ls_inner {
  box-shadow: none;
  padding: 30px 10px;
}
.products h1 {
  color: var(--red_02);
}
.products h1::after {
  background-color: var(--red_02);
}
.products h2 {
  font-size: clamp(20px,2vw, 22px);
  color: var(--pink);
  margin: 20px 0;
  font-weight: 600;
  text-align: inherit;
  letter-spacing: inherit;
}
.products p {
  margin: 20px 0;
  line-height: 1.7;
}
.products p.note {
  margin: 0;
  text-align: right;
  font-size: 14px;
}
.thumb_wrap {
  width: 100%;
  max-width: 650px;
  overflow: hidden;
  margin-top: 30px;
  padding: 10px;
  background: var(--gray);
  border-radius: 0 30px;
}
.thumbs-flex {
  display: flex;
  flex-wrap: wrap;       /* 折り返しを許可 */
  justify-content: flex-start;
  gap: 10px;              /* サムネイル間の余白 */
  padding: 20px 0;
}

.thumbs-flex img {
  flex: 0 0 calc(20% - 8px); /* ★ 5列（100% ÷ 5） */
  max-width: calc(20% - 8px);
  height: auto;
  cursor: pointer;
  object-fit: cover;
  border-radius: 0 10px;
}
.thumbs-flex img.active {
  border: 3px solid var(--pink);
}

.swiper-sub-main {
	width: 100%;
	aspect-ratio: 1 / 1;   /* 正方形に固定 */
	border-radius: 5px;
}

.swiper-sub-main .swiper-slide img {
	height: 100%;    /* 枠に収める */
	aspect-ratio: 1 / 1;   /* 正方形に固定 */
  object-fit: cover;
  border-radius: 0 30px 0 30px;
}

.price {
  width: 50%;
  border-bottom: 2px solid var(--gray);
  margin: 30px 0 30px auto;
}
@media screen and (max-width: 650px) {
.price {
  width: 70%;
}
}
.price dl {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-end;
}
.price dl dt {
  font-size: 16px
}
.price dl dd {
  font-size: clamp(20px,2vw, 22px);
  font-weight: 500;
}
.onlineshop {
  text-align: center;
}
.onlineshop a {
  padding: 20px;
  background: var(--red_01);
  color: var(--white);
  border-radius: 50px;
  display: inline-flex;
  width: 50%;
  height: 60px;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-weight: bold;
  margin: 40px 0;
  gap: 10px;
}
@media screen and (max-width: 650px) {
.onlineshop a {
  width: 80%;
}
}
.onlineshop a:hover {
  background: var(--pink);
  transition: 0.2s;
}
.specsheet {
    border-collapse: collapse;
    width: 100%;
    margin-top: 2em;
}
.specsheet th {
    white-space: nowrap;
    font-weight: bold;
    background-color: #FDF0F6;
}
.specsheet th, .specsheet td {
    padding: 12px 15px;
    border: 2px solid var(--gray);
}
.copyright {
  margin: 20px 0;
  font-size: 14px;
  text-align: center;
}
.copyright span {
  display: block;
}
.copyright span.sanrio {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
.copyright span.sanrio img {
  margin-top: 3px;
}
/* other products */
.others {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 650px;
  margin: auto;
}
.others .ls_inner {
  background: var(--red_01);
  padding: 30px 10px;
  border-radius: 0;
  box-shadow: none;
  margin-top: -5px;
  margin-bottom: -5px;
}
.others svg {
  width: 100%;
  max-width: 650px;
}

.swiper-sub-main2 {
	width: 100%;
  padding: 30px 0 60px;
  position: relative;
}
.swiper-sub-main2 .swiper-slide img {
	width: 100%;    /* 枠に収める */
	aspect-ratio: 1 / 1;   /* 正方形に固定 */
  object-fit: cover;
  border-radius: 0 10px;
  border: 3px solid var(--white);
}
.swiper-sub-main2 .swiper-pagination {
  bottom: 15px;
}
.swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background: var(--white);
  opacity: inherit;
}
.swiper-pagination-bullet-active {
  background: var(--pink);
}
.others .swiper-button-prev {
    left: 5%;
}
.others .swiper-button-prev {
    right: 5%;
}
.others .swiper-button-next, 
.others .swiper-button-prev {
    width: 30px;
    height: 30px;
    background: var(--pink);
    border-radius: 50%;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    top: 93%;
}
.swiper-button-prev:after, 
.swiper-button-next:after {
    font-size: 15px;
    font-weight: bold;
}
.others .swiper-button-next:hover, 
.others .swiper-button-prev:hover {
  filter: brightness(110%);
  transition: 0.2s;
}
/* other products end */
/* STORE LIST */
.storelist .ls_inner {
  padding: 30px 10px;
  box-shadow: none;
}
.storelist h1 {
    color: var(--red_02);
}
.storelist h1::after {
  background: var(--red_02);
}
.store_wrap {
  padding: 60px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 30px 20px;
}

/* 2カラム（PC・タブレット） */
.store {
  flex: 1 1 100%;
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: transform .3s ease, box-shadow .3s ease;
}

/* ホバーで少し浮く */
.store:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}
.store h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(20px, 2vw, 22px);
  color: var(--red_01);
  margin-bottom: 12px;
  font-weight: 600;
  position: relative;
  padding-bottom: 8px; /* 下線との距離 */ 
  border-bottom: 2px dotted var(--gray);
  text-align: inherit;
  letter-spacing: inherit;
}
/* アイコン */
.store h2::before {
  font-family: 'Material Icons';
  content: "store";
  font-size: 22px;
  color: var(--red_01);
  opacity: 0.9;
  flex-shrink: 0;
}
/* PC（デフォルト） */
.store p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
}

/* strong は PC では inline */
.store p strong {
  display: inline;
}

/* スマホ（650px以下） */
@media (max-width: 650px) {
  .store p {
    display: flex;
    flex-direction: row; /* ← アイコン左・テキスト右 */
    align-items: flex-start;
  }

  /* テキスト部分を縦並びにする */
  .store p strong,
  .store p span {
    display: block;
  }

  /* strong を上に、住所や電話番号を下に */
  .store p strong {
    margin-bottom: 4px;
  }
}

.store p:nth-of-type(1) {
  margin-bottom: 1.20px; /* Address の下だけ広げる */
}
.store p:nth-of-type(2) {
  margin-bottom: 0; /* 最後は余白なしでもOK */
}
/* 住所のアイコン */
.store p:nth-of-type(1)::before {
  font-family: 'Material Icons';
  content: "location_on";
  font-size: 20px;
  color: var(--red_01);
  opacity: 0.9;
  flex-shrink: 0;
}
/* 電話番号のアイコン */
.store p:nth-of-type(2)::before {
  font-family: 'Material Icons';
  content: "call";
  font-size: 20px;
  color: var(--red_01);
  opacity: 0.9;
  flex-shrink: 0;
}

/* スマホだけ改行する */
@media (max-width: 650px) {
  .store p strong {
    display: block;
    margin-bottom: 4px;
  }
}

/* SHOP LIST end */
/* back to top */
#wrapper a.back {
  display: flex;
  text-decoration: none;
  color: var(--red_02);
  padding: 10px;
  font-size: 16px;
  border-radius: 50px;
  border: 1px solid var(--red_02);
  width: 100%;
  max-width: 270px;
  gap: 10px;
  align-items: center;
  font-weight: 600;
  justify-content: center;
  margin-top: 40px;
}
#wrapper a.back:hover {
  background: var(--pink);
  color: var(--white);
  transition: 0.2s;
  border: 1px solid var(--pink);
}