@charset "UTF-8";
* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  font-size: 16px;
}
#wrapper {
  background-color: #fff;
  font-size: 16px;
  word-break: normal;
  overflow-wrap: normal;
  white-space: normal;
}
:root {
  --txt_main: #181113;
	--white: #FFFFFF;
  --red_01: #FF3B8E;
  --red_02: #E6339A;
	--pink: #FA80B8;
  --yellow: #facd32;
  --gray: #F8FAFC;
}
body {
  color: var(--txt_main);
}
.main_ttl {
  display: block;
}
@media screen and (max-width: 975px) {
  #wrapper, #header, #footer {
    min-width: inherit;
  }
}
#LS_HEADER, #LS_MAIN, #LS_FOOTER {
  font-family: "Plus Jakarta Sans",'M PLUS Rounded 1c', sans-serif;
}
@media screen and (max-width: 639px) {
    #wrapper {
        overflow: inherit;
    }
}
/** SEOヘッダー **/
.seoheader {
	text-align: center;
	padding: 6px;
	font-size: 1.30px;
	background-color: #fff;
}
.seoheader h1,
.seoheader p{
	display: inline;
	color: #F7008C;
}
.seoheader h1{
	font-weight: bold;
}
.seoheader br.sponly {
	display: none;
}
@media screen and (max-width: 767px) {
.seoheader br.sponly {
	display: block;
}
.seoheader h1,
.seoheader p{
	font-size: 11px;
}
}
/** //SEOヘッダー **/
/** #wrapper内の汎用定義 **/
a {
  color: #333;
}
a:hover {
  color: #FF3B8E;
  text-decoration: none;
}
/** //#wrapper内の汎用定義 **/
/* ロード画面 */
.loading {
	position: fixed;
	width: 100%;
	height: 100dvh;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #FF3B8E;
	background-image: url("../images/rogo.png");
	background-position: center;
	background-repeat: no-repeat;
	z-index: 600;
}
.loading .bar {
	background-color: #fff;
	height: 1px;
	width: 0%;
	position: absolute;
  top: 60%;
  left: 0px;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);	
	color: #fff;
	z-index: 601;
}
.loading .p {
	position: absolute;
	top: 5px;
	right: 0px;
	z-index: 601;
}
/* ロード画面 ここまで*/
/** フッター **/
#LS_FOOTER {
  background: var(--white);
  padding: 25px 0;
}
#LS_FOOTER .ls_inner {
  background: transparent;
  box-shadow: none;
  color: var(--red_01);
  font-size: clamp(12px, 3vw, 14px);
  border-top: 1px solid var(--red_02);
  padding-top: 30px;
  margin: auto;
}
#LS_FOOTER .footer_txt {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 10px;
}
#LS_FOOTER .footer_txt span {
    margin: 0;
    padding: 0;
    text-align: left;
    display: inline-block;
    white-space: nowrap;
}
#LS_FOOTER .footer_txt span.sanrio {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}
#LS_FOOTER .footer_txt span.sanrio img {
  margin-top: 3px;
}
@media screen and (max-width: 650px) {
#LS_FOOTER .ls_inner {
  padding: 10px 0;
}
}
/** //フッター **/
/** HEADER **/
#LS_HEADER {
  position: absolute;
  width: 100%;
  max-width: 650px;
  left: 50%; 
  transform: translateX(-50%) translateY(0);
	z-index: 100;
	display: block;
}
#LS_HEADER .ls_inner {
  overflow-y: auto;
  height:100%;
  display: none;
  padding: 0;
}
#LS_HEADER.open .menubar {
  background-image: url("../images/icon_close.svg");
  background-size: 32px auto;
}
#LS_HEADER.open .ls_inner {
  display: block;
  background: transparent;
  box-shadow: none;
}
.ls_glonav {
  position: relative;
}
.ls_glonav > ul {
    margin: 0;
    padding: 0 20px;
    list-style: none;
    display: flex;
    align-items: center;
    height: 100%;
    font-weight: bold;
    justify-content: space-between;
    flex-direction: column;
}
#LS_HEADER.open .ls_inner {
		display: block;
	}
#LS_HEADER.is-fixed {
	padding-top: 0px;
  transform: translateX(-50%) translateY(0);
  background-color: transparent;
  position: fixed;
	z-index: 110;
	top: 0;
	transition: transform 0.2s ease-out;
  /* visibility: visible; */
}
#LS_HEADER.hide {
    transform: translateX(-50%) translateY(-100%);
    /* visibility: hidden; */
}
#LS_HEADER.is-fixed.hide { 
  transform: translateX(-50%) translateY(-100%); 
}
#LS_HEADER nav {
  display: flex;
  justify-content: space-between;
}
#LS_HEADER .menubar {
  display: block;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 55px;
  height: 55px;
  margin: 0 0 0 auto;
  background-color: var(--red_02);
  background-image: url("../images/icon_bar.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 25px auto;
  border-radius: 15px 15px 0px;
  border: 2px solid var(--white);
  z-index: 10;
}
#LS_HEADER.is-fixed .menubar {
  transform: translateX(-50%) translateY(0);
  transition: transform 0.2s ease-out;
  right: -10px;
}
#LS_HEADER.is-fixed.hide .menubar {
  transform: translateX(-50%) translateY(-150%);
}
#LS_HEADER .menubar_wrap {
  display: block;
  position: absolute;
  top: 10px;
  right: 10px;
  width: calc(100% - 20px);
  background-color: #fff;
  border-radius: 15px 15px 0;
  -webkit-box-shadow: 0px 1px 4px rgba(0,0,0,0.15);
  box-shadow: 0px 1px 4px rgba(0,0,0,0.15);
  /*
  border: 1px solid #FF3B8E;
  */
}
#LS_HEADER h1::after {
  content: none;
}
/** //HEADER **/
/** PC-left **/
.left {
  display: none;
}

@media screen and (min-width:1100px) {
.left {
  display: block;
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: calc((100vw - 650px) / 2);
}
.left .wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 10px;
  align-items: center;
}
.left h1,
.left .main_ttl {
  width: 100%;
  text-align: center;
}
.left h1 img,
.left .main_ttl img {
  width: 100%;
  max-width: 300px;
}
.left p {
  width: 100%;
  max-width: 350px;
  color: var(--red_02);
  padding-top: 10px;
  border-top: 1px solid var(--red_02);
}
.left h1,
.left .main_ttl {
  position: relative;
  overflow: hidden;
}

.left h1::before,
.left .main_ttl::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: shine 10s ease-in-out infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  40% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}

}
/** PC-left end **/
/** PC-right **/
.right {
  display: none;
}
@media screen and (min-width:1100px) {
.right {
  display: block;
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: calc((100vw - 650px) / 2);
}
.right .wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 10px;
  align-items: center;
}
.right ul {
  width: 100%;
  max-width: 350px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.right ul li {
  list-style: none;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 0;
}
#wrapper .right ul li a {
  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;
}
#wrapper .right ul li a:hover {
  background: var(--pink);
  color: var(--white);
  transition: 0.2s;
  border: 1px solid var(--pink);
}
#wrapper .right ul li:before {
  content: none;
}
}
/** PC-right end **/
/** グロナビ **/
.ls_glonav {
  width: 100%;
  max-width: 650px;
  height: auto;
  background-color: transparent;
  -webkit-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.20);
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.20);
  border-radius: 0 20px 0 20px;
	flex: 1;
  position: relative;
}
.ls_glonav a {
  text-decoration: none;
  color: #333;
}
.ls_glonav h1,
.ls_glonav .main_ttl {
  position: absolute;
  top: 20px;
  left: 20px;
  width: auto;
  height: auto;
}
.ls_glonav h1 img,
.ls_glonav .main_ttl img {
  width: 100%;
  max-width: 150px;
  height: auto;
}
.ls_glonav a br {
	display: none;
}
.ls_glonav > ul {
  margin: 0;
  padding: 80px 20px 40px;
  list-style: none;
  display: flex;
  align-items: center;
  height: 100%;
  font-weight: bold;
  justify-content: space-between;
  background: var(--pink);
  border-radius: 0 20px 0 20px;
  gap: 10px;
  border-top: 3px solid var(--white);
  border-bottom: 3px solid var(--white);
}
#LS_HEADER .ls_glonav > ul > li {
  padding: 0;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  cursor: pointer;
  width: 70%;
	min-width: 16%;
	justify-content: center;
  border-bottom: 1px dotted var(--white);
  margin-top: 0;
}
#LS_HEADER .ls_glonav > ul > li:before {
  content: none;
}
#LS_HEADER .ls_glonav > ul > li a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px 30px;
  color: var(--white);
  font-size: 16px;
}
@media screen and (max-width: 650px) {
#LS_HEADER .ls_glonav > ul > li {
  width: 100%;
}
}
.ls_glonav > ul > li.rogo img {
	max-width: 100%;
	height: auto;
}
@media screen and (max-width: 900px) and (orientation: landscape) { 
  /* スマホ横向きのときだけ適用されるCSS */
  #LS_HEADER.open .ls_inner {
    max-height: 100vh;
  }
  .ls_glonav > ul {
    max-height: 100vh;
  }
  #LS_HEADER .ls_glonav > ul > li a {
    padding: 0;
  }
}
@media screen and (min-width: 1100px) {
  #LS_HEADER .menubar {
    display: none;
  }
  .ls_glonav {
    display: none;
  }
}
/** //グロナビ **/
/** パンくずリスト **/
#LS_BREADCRUMBS {
	width: 100%;
  margin-top: 10px;
  margin-bottom: -30px;
}
#LS_BREADCRUMBS br {
	display: none;
}
#LS_BREADCRUMBS .inner {
	margin: 0 auto;
	max-width: 1200px;
	background-color: #fff;
	border-radius: 99px;
}
@media screen and (max-width: 650px) {
#LS_BREADCRUMBS .inner {
	overflow-x: scroll;
}
}
#LS_BREADCRUMBS ul {
	display: flex;
  margin: 0;
  line-height: 1;
  font-size: 14px;
	padding: 8px;
}
#LS_BREADCRUMBS ul li {
	display: block;
	padding: 0 17px 0 10px;
	background-image: url("../images/icon_arrow_right.svg");
	background-repeat: no-repeat;
	background-position: right center;
	background-size: contain;
	white-space: nowrap;
  margin-top: 0;
}
#LS_BREADCRUMBS ul li:nth-of-type(1) {
  padding-left: 0;
}
#LS_BREADCRUMBS ul li:last-child {
	padding-right: 8px;
	background-image: none;
}
#LS_BREADCRUMBS ul li:before {
  content: none;
}
/** //パンくずリスト **/
/** cookie再取得ボタン **/
.pd_wrap.cookie {
  margin: auto;
  text-align: center;
  padding: 1rem 10px;
  background: var(--gray);
}

/** //cookie再取得ボタン **/