@charset "UTF-8";
html {
	scrollbar-gutter: stable;
}
/*----------------------------------------
 Common
----------------------------------------*/
body {
	font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
	color: #003165;
	text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	animation: loadFinish 1.5s ease;
	overflow-y: scroll;
	overflow-x: hidden;
}
body#glossy {
	color: #005062;
}

@keyframes loadFinish {
	0% {
		opacity: 0
	}
	100% {
		opacity: 1
	}
}
img {
	width: 100%;
  max-width: 100%;
  height: auto;
	display: block;
}
.sup-ad {
	position: relative;
}
.sup-ad sup {
	position: absolute;
	right: calc(6vw / 8.28);
	font-size: calc(16vw / 8.28);
	font-weight: normal;
	letter-spacing: -.05em;
}
.heading {
	text-align: center;
	margin-bottom: calc(120vw / 8.28);
}
.section-title {
	position: relative;
	font-family: "MuseoModerno", sans-serif;
	font-weight: 600;
	font-size: calc(55vw / 8.28);
	display: inline-block;
}
.section-title::after {
	position: absolute;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background: #003165;
	bottom: -1px;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: transform 0.8s;
}
body#glossy .section-title::after {
	background: #005062;
}
.section-title.started::after {
	transform: scale(1, 1);
}

/* common-btn */
.common-btn .btn {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #003165;
	font-family: "Overpass", sans-serif;
	font-weight: 800;
	font-size: calc(32vw / 8.28);
	letter-spacing: 0.15em;
	line-height: 1;
	width: calc(540vw / 8.28);
	height: calc(110vw / 8.28);
	position: relative;
	background-color: #fff;
	border: solid 2px #003165;
	border-radius: 60px;
	margin: 0 auto;
}
body#glossy .common-btn .btn {
	color: #005062;
	border: solid 2px #005062;
}
.common-btn .btn .arrow {
	position: absolute;
	top: 50%;
	right: calc(40vw / 8.28);
	transform: translateY(-50%);
	width: calc(44vw / 8.28);
	height: calc(44vw / 8.28);
	transition: 500ms;
}
.common-btn .btn .arrow .path {
	fill: #003165;
	transition: 500ms;
}
.common-btn .btn:hover .arrow .path {
	fill: #ed7fa4;
}
body#glossy .common-btn .btn .arrow .path {
	fill: #005062;
	transition: 500ms;
}
body#glossy .common-btn .btn:hover .arrow .path {
	fill: #ef811e;
}
.common-btn .btn:hover .arrow {
	right: calc(20vw / 8.28);
}

/* click me! */
.top-char {
	display: none;
}
.other-char {
	display: block;
}
.top-page .top-char {
	display: block;
}
.top-page .other-char {
	display: none;
}

/* snsアイコン */
.js-hover-fade {
  position: relative;
  display: inline-block;
}
.js-hover-fade img {
  width: 100%;
  height: auto;
  transition: opacity 0.3s ease;
}
.img-off {
  position: static;
  opacity: 1;
  z-index: 10;
}
.img-on {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 20;
}

/* 1行テキストホバー */
.hover-line {
	position: relative;
	line-height: normal;
}
.hover-line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #003165;
  transition: width 0.4s ease;
}
body#glossy .hover-line::after {
	background-color: #005062;
}
.menu-txt:hover .hover-line::after,
button:hover .hover-line::after {
  width: 100%;
}

/* 2行テキストホバー */
.hover-multiline {
	display: inline;
	background-image: linear-gradient(90deg, rgba(255, 255, 255), rgba(255, 255, 255));
	background-repeat: no-repeat;
	background-position: left bottom;
	background-size: 0 1px;
	transition: background-size .4s;
}
a:hover .hover-multiline {
	background-size: 100% 1px;
}

/* cap */
.cap {
	font-size: calc(20vw / 8.28);
	font-weight: 300;
	line-height: 1.5;
	letter-spacing: 0.025em;
}

/* movie */
.movie-content {
	display: none;
}

main {
	background-color: #fff;
}

/*-- PC --------*/
@media screen and (min-width: 769px) {
	.sup-ad sup {
		font-size: calc(12vw / 19.2);
		right: calc(4vw / 19.2);
	}
	.container {
		display: flex;
		justify-content: center;
	}
	main {
		margin-left: calc(100% / 3);
  	margin-right: calc(100% / 3);
		position: relative;
	}
	.movie-content {
		display: block;
		position: fixed;
		top: 0;
		right: 0;
		width: calc(100% / 3);
		height: 100vh;
	}
	.top-movie {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.section-title {
		font-size: calc(44vw /19.2);
	}
	.common-btn .btn {
		font-size: calc(21vw /19.2);
		width: calc(420vw / 19.2);
		height: calc(82vw / 19.2);
	}
	.common-btn .btn .arrow {
		width: calc(35vw / 19.2);
    height: calc(35vw / 19.2);
		right: calc(30vw / 19.2);
	}
	.common-btn .btn:hover .arrow {
		right: calc(20vw / 19.2);
	}
	.heading {
		margin-bottom: calc(80vw / 19.2);
	}
	.cap {
		font-size: calc(14vw / 19.2);
	}
}

/*----------------------------------------
 Header
----------------------------------------*/
.header {
	position: fixed;
	width: 100%;
	height: calc(166vw / 8.28);
	z-index: 30;
	overflow: hidden;
}
body.open .header {
	height: 100%;
}
.header-logo {
	position: relative;
	width: calc(149vw / 8.28);
	margin: calc(42vw / 8.28) 0 0 calc(50vw / 8.28);
	z-index: 30;
}
.header-sp-toggle {
	position: fixed;
	top: calc(35vw / 8.28);
	right: calc(26vw / 8.28);
	z-index: 40;
	width: calc(109vw / 8.28);
	height: calc(130vw / 8.28);
}
.header-character .character {
	width: calc(109vw / 8.28);
}
.header-character.animate__bounceOutLeft {
	opacity: 1 !important;
}
.header-character .slide-tremble {
	animation: slide-tremble 0.1s 20 linear alternate;
}
@keyframes slide-tremble {
	0% {transform:translate(0, 0) rotate(-3deg);}
	50% {transform:translate(0, -1px) rotate(0deg);}
	100% {transform:translate(0, 0)rotate(3deg);}
}
.click-tremble.on {
	animation: click-tremble 0.1s 20 linear alternate;
}
@keyframes click-tremble {
	0% {transform:translate(0, 0) rotate(-3deg);}
	50% {transform:translate(0, -1px) rotate(0deg);}
	100% {transform:translate(0, 0)rotate(3deg);}
}
.header-character.off {
	display: none;
}
.header-sp-toggle .cross-mark span {
	content: "";
	position: absolute;
	top: calc(65vw / 8.28);
	right: calc(26vw / 8.28);
	width: calc(70vw / 8.28);
	height: 1px;
	transition: transform .6s ease-in-out;
	background: #003165;
	visibility: hidden;
	opacity: 0;
	transition: opacity .6s ease, visibility .6s ease;
}
#glossy .header-sp-toggle .cross-mark span {
	background: #005062;
}
.header-sp-toggle .cross-mark span:nth-of-type(1) {
	transform: rotate(45deg);
}
.header-sp-toggle .cross-mark span:nth-of-type(2) {
	transform: rotate(-45deg);
}
body.open .header-sp-modal,
body.open .cross-mark span {
	visibility: visible;
	opacity: 1;
}
body.open .cross-mark.animate__bounceInRight {
	animation-delay: .4s;
}
main::-webkit-scrollbar,
.header-sp-modal::-webkit-scrollbar {
	display: none;
}
.header-sp-modal {
	background-color: #fff;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 20;
	width: 100%;
	height: 100vh;
	height: 100dvh;
	opacity: 0;
	visibility: hidden;
	transition: opacity .6s ease, visibility .6s ease;
	overscroll-behavior: contain;
	overflow-y: scroll;
}
@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.header-sp-modal.animate__bounceInRight {
	animation-delay: .3s;
	opacity: 1 !important;
}
@-webkit-keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 1;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 1;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.header-menu {
	margin: calc(220vw / 8.28) 0 calc(30vw / 8.28);
	text-align: center;
}
.header-menu li:not(:nth-of-type(1)) {
	margin-top: calc(60vw / 8.28);
}
.header-menu .menu-txt {
	font-family: "Overpass", sans-serif;
	font-weight: 600;
	font-size: calc(70vw / 8.28);
	letter-spacing: 0.1em;
	text-align: center;
	color: #fff;
	-webkit-text-stroke: 1px #003165;
}
.header-menu li:nth-child(even) .menu-txt {
	-webkit-text-stroke: 1px #ed7fa4;
}
.header-menu li:nth-child(even) .menu-txt .hover-line::after {
	background-color: #ed7fa4;
}
body .nav-character .character-blue {
	display: none;
}
body.open .nav-character .character-blue.play {
	display: block;
	position: absolute;
	right: calc(40vw / 8.28);
	z-index: 30;
	width: calc(85vw / 8.28);
}
body.open .nav-character {
	position: relative;
	height: 100vh;
}
.pc-character {
	display: none;
}
.header-menu li:not(:nth-of-type(1)) div {
	margin-bottom: calc(60vw / 8.28);
}
#glossy .header-menu .glossy .menu-txt {
	border: solid 2px #f5b377;
}
#glossy.top-page .header-menu li .menu-txt .hover-line::after {
	background-color: #00999a;
}
#glossy.top-page .header-menu li:nth-child(even) .menu-txt .hover-line::after {
	background-color: #ef811e;
}

/* series-btn */
#glossy .header-menu li:not(.series-btn) .menu-txt {
	-webkit-text-stroke: 1px #00999a;
}
#glossy .header-menu li:not(.series-btn):nth-child(even) .menu-txt {
	-webkit-text-stroke: 1px #ef811e;
}
.series-btn .srs {
	font-size: calc(34vw / 8.28);
	-webkit-text-stroke: 0;
	letter-spacing: 0.075em;
}
.series-btn .menu-txt {
	display: block;
	width: calc(623vw / 8.28);
	border-radius: 30px;
	margin: 0 auto;
	padding: calc(21vw / 8.28) 0 calc(8vw / 8.28);
}
.header-menu li.series-btn .straight .srs {
	color: #ed7fa4;
}
.header-menu li.series-btn .glossy .srs {
	color: #ef811e;
}
.header-menu li.series-btn .straight .menu-txt {
	border: solid 2px #f3b2c8;
	-webkit-text-stroke: 1px #ed7fa4;
}
.header-menu li.series-btn .straight .menu-txt .sub-color {
	-webkit-text-stroke: 1px #00559e;
}
.header-menu li.series-btn .glossy .menu-txt .sub-color {
	-webkit-text-stroke: 1px #00999a;
}
.top-page .header-menu li.series-btn .glossy .menu-txt,
#news-page .header-menu li.series-btn .glossy .menu-txt,
#shoplist-page .header-menu li.series-btn .glossy .menu-txt {
	border: solid 2px #f5b377;
	-webkit-text-stroke: 1px #ef811e;
}
.top-page .header-menu li.series-btn .glossy .menu-txt .sub-color,
#news-page .header-menu li.series-btn .glossy .menu-txt .sub-color,
#shoplist-page .header-menu li.series-btn .glossy .menu-txt .sub-color {
	-webkit-text-stroke: 1px #00999a;
}
#news-page .series-btn .straight,
#news-page .series-btn .glossy,
#shoplist-page .series-btn .straight,
#shoplist-page .series-btn .glossy {
	display: block;
}
.header-menu li.series-btn {
	display: flex;
	justify-content: center;
}
.header-menu li.series-btn div:first-child {
	margin-right: calc(15vw / 8.28);
}
.header-menu li.series-btn .srs {
	display: block;
}
.header-menu .series-btn .menu-txt {
	width: calc(373vw / 8.28);
	border-radius: 40px;
	font-size: calc(50vw / 8.28);
}
#glossy .header-menu li.series-btn .glossy .srs {
	color: #ef811e;
}
#straight .header-menu li.series-btn .straight .menu-txt .sub-color {
	-webkit-text-stroke: 1px #0c508b;
}
#news-page .header-menu li.series-btn .straight .menu-txt .sub-color,
#shoplist-page .header-menu li.series-btn .straight .menu-txt .sub-color {
	-webkit-text-stroke: 1px #0c508b;
}

/* common-list-sns */
.common-list-sns {
	display: flex;
	justify-content: center;
	margin-bottom: calc(80vw / 8.28);
}
.common-list-sns .sns-icon:not(:last-of-type) {
	margin-right: calc(74vw / 8.28);
}
.common-list-sns .instagram img,
.common-list-sns .pinterest img {
	width: calc(43vw / 8.28);
}
.common-list-sns .x img {
	width: calc(42vw / 8.28);
}
.common-list-sns .tiktok img,
.common-list-sns .threads img {
	width: calc(38vw / 8.28);
}

/* common-list-shop */
body.open .common-list-shop {
	display: block;
}
body.open .footer .common-list-shop,
.footer .common-list-shop {
	display: none;
}
.common-list-shop {
	text-align: left;
	margin: 0 calc(49vw / 8.28) calc(149vw / 8.28);
}
.common-list-shop li {
	border-bottom: solid 1px #003165;
	padding: calc(44vw / 8.28) calc(164vw / 8.28) calc(34vw / 8.28);
}
body#glossy .common-list-shop li {
	border-bottom: solid 1px #005062;
}
.common-list-shop li:nth-of-type(1) {
	border-top: solid 1px #003165;
}
body#glossy .common-list-shop li:nth-of-type(1) {
	border-top: solid 1px #005062;
}
.common-list-shop .shop-link {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}
.common-list-shop li a {
	display: block;
	font-size: calc(34vw / 8.28);
	letter-spacing: 0.075em;
	color: #003165;
	font-weight: 700;
}
body#glossy .common-list-shop li a {
	color: #005062;
}
.common-list-shop .arrow {
	width: calc(44vw / 8.28);
	height: calc(44vw / 8.28);
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	transition: 500ms;
}
.common-list-shop .arrow .path {
	fill: #003165;
	transition: 500ms;
}
body#glossy .common-list-shop .arrow .path {
	fill: #005062;
}
.common-list-shop li a:hover .arrow {
	right: calc(-20vw / 8.28);
}
.common-list-shop li a:hover .arrow .path {
	fill: #ed7fa4;
}
body#glossy .common-list-shop li a:hover .arrow .path {
	fill: #ef811e;
}
#glossy .header .pc-character .char-01,
#glossy .header .pc-character .char-02,
#glossy .header .pc-character .char-03,
#glossy .header .pc-character .char-04,
#glossy .header .pc-character .char-05,
#glossy .header .glossy-mogura .image-1,
#glossy .header .glossy-mogura .image-2,
#glossy .header .glossy-mogura .image-3,
#glossy .header .glossy-mogura .image-4,
#glossy .header .glossy-mogura .image-5,
#news-page .header .glossy-mogura,
#shoplist-page .header .glossy-mogura {
	display: none;
}

/*-- PC --------*/
@media screen and (min-width: 769px) {
	#straight .header,
	#straight .header.is-mv {
		background-color: #f3a5bf;
	}
	.header {
		top: 0;
		left: 0;
		height: 100vh;
		background-repeat: no-repeat;
		background-size: cover;
		width: calc(100% / 3);
		transition: background-color 500ms;
	}
	#straight .header.is-products {
		background-color: #3277b2;
	}
	#straight .header.is-features {
		background-color: #cadff4;
	}
	#straight .header.is-concept,
	#straight .header.is-instagram,
	#straight .header.is-topics,
	#straight .header.is-news,
	#straight .header.is-shoplist {
		background-color: #fff;
	}
	.header-logo {
		width: 100%;
		max-width: calc(139vw / 19.2);
		height: calc(44vw / 19.2);
		margin: calc(58vw / 19.2) 0 0 calc(60vw / 19.2);
	}
	.pc-character {
		display: block;
		width: calc(78vw / 19.2);
		position: absolute;
		top: calc(40vw / 19.2);
		right: calc(58vw / 19.2);
	}
	#glossy .header.is-products .pc-character {
		width: calc(115vw / 19.2);
		top: calc(80vw / 19.2);
		right: calc(50vw / 19.2);
	}
	#glossy .header.is-concept .pc-character,
	#glossy .header.is-features .pc-character {
		width: calc(68vw / 19.2);
		right: calc(63vw / 19.2);
	}
	.header-sp-toggle,
	.header-sp-modal,
	.nav-character {
		display: none;
	}
	.header-sp-modal {
		opacity: 1;
		visibility: visible;
		display: block;
		background-color: unset;
		height: auto;
	}
	.header-common {
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		width: 100%;
	}
	.header-common nav {
		position: static;
		transition: opacity .6s ease, visibility .6s ease;
		overscroll-behavior: contain;
		overflow-y: hidden;
	}
	.header-common nav::-webkit-scrollbar {
		display: none;
	}
	.header-menu {
		margin: 0 0 calc(35vw / 19.2);
		text-align: center;
	}
	.header-menu .menu-txt {
		font-size: calc(26vw / 19.2);
	}
	.header-menu .menu-txt:hover {
		cursor: pointer;
	}
	#straight .is-mv .header-menu .menu-txt {
		color: #f3a5bf;
	}
	.is-products .header-menu .menu-txt {
		color: #3277b2;
	}
	.is-features .header-menu .menu-txt {
		color: #cadff4;
	}
	.is-mv .header-menu .menu-txt,
	.is-products .header-menu .menu-txt,
	.is-mv .header-menu li:nth-child(even) .menu-txt,
	.is-products .header-menu li:nth-child(even) .menu-txt {
    -webkit-text-stroke: 1px #fff;
	}
	.is-mv .header-menu li .menu-txt .hover-line::after,
	.is-products .header-menu li .menu-txt .hover-line::after,
	#glossy .header.is-products .header-menu li .menu-txt .hover-line::after {
		background-color: #fff;
	}
	.header-menu li:not(:nth-of-type(1)) div {
		margin-bottom: 0;
	}
	#glossy .header,
	#glossy .header.is-mv {
		background-color: #fad9bc;
	}
	#glossy .header.is-products {
		background-color: #33adae;
	}
	#glossy .header.is-features {
		background-color: #b5e1e2;
	}
	#glossy .header.is-concept,
	#glossy .header.is-instagram,
	#glossy .header.is-topics,
	#glossy .header.is-news,
	#glossy .header.is-shoplist {
		background-color: #fff;
	}
	#glossy .is-mv .header-menu .menu-txt {
		color: #fad9bc;
	}
	#news-page .header-menu li:not(:nth-of-type(1)),
	#shoplist-page .header-menu li:not(:nth-of-type(1)) {
		margin-top: calc(25vw / 19.2);
	}
	#news-page .common-list-sns,
	#shoplist-page .common-list-sns {
		margin-bottom: calc(30vw / 19.2);
  }
	#news-page .header-menu,
	#shoplist-page  .header-menu {
		margin: 0 0 calc(35vw / 19.2);
		text-align: center;
	}
	.header-menu li:not(:nth-of-type(1)) {
		margin-top: calc(20vw / 19.2);
	}
	.header.is-mv .header-menu .glossy .menu-txt {
		border: solid 2px #00999a;
	}
	.header.is-mv .header-menu .straight .menu-txt,
	#news-page .header .header-menu .straight .menu-txt {
		border: solid 2px #00559e;
	}
	#glossy .header.is-concept .header-menu .glossy .menu-txt {
		border: solid 2px #f5b377;
	}
	#glossy .is-products .header-menu .menu-txt {
		color: #33adae;
	}
	#glossy .header-menu .menu-txt {
		color: #fad9bc;
	}
	#glossy .is-features .header-menu .menu-txt {
		color: #b5e1e2;
	}
	#glossy .is-mv .header-menu .glossy .menu-txt {
		border: solid 2px #00999a;
	}

	/* series-btn */
	.header.is-mv .header-menu li.series-btn .glossy .srs,
	#news-page .header .header-menu li.series-btn .glossy .srs {
		color: #00999a;
	}
	.header.is-mv .header-menu li.series-btn .straight .srs,
	#news-page .header .header-menu li.series-btn .straight .srs {
		color: #00559e;
	}
	.header.is-mv .header-menu li.series-btn .glossy .menu-txt,
	#news-page .header .header-menu li.series-btn .glossy .menu-txt {
		border: solid 2px #00999a;
		-webkit-text-stroke: 1px #f85800;
	}
	.header.is-mv .header-menu li.series-btn .straight .menu-txt,
	#news-page .header .header-menu li.series-btn .straight .menu-txt {
		-webkit-text-stroke: 1px #e5467c;
	}
	.series-btn .menu-txt {
		width: calc(300vw / 19.2);
		padding: calc(13vw / 19.2) 0 calc(8vw / 19.2);
	}
	.series-btn .srs {
		font-size: calc(15vw / 19.2);
	}
	.header-menu li.series-btn div:first-child {
		margin-right: calc(10vw / 19.2);
	}
	.header-menu .series-btn .menu-txt {
		width: calc(166vw / 19.2);
		border-radius: 40px;
		font-size: calc(23vw / 19.2);
		transition: 200ms;
	}
	.header-menu .series-btn .menu-txt:hover {
		opacity: .6;
	}
	#straight .is-features .header-menu li.series-btn .straight .menu-txt .sub-color {
		color: #cadff4;
	}
	#straight .header-menu li.series-btn .straight .menu-txt .sub-color {
    -webkit-text-stroke: 1px #0c508b;
	}
	#glossy .is-products .header-menu li:not(.series-btn) .menu-txt {
		-webkit-text-stroke: 1px #fff;
	}
	#glossy .is-products .header-menu li:not(.series-btn):nth-child(even) .menu-txt {
		-webkit-text-stroke: 1px #fff;
	}
	#glossy .is-products .header-menu li.series-btn .straight .srs {
		color: #f6bfd1;
	}
	#glossy .is-products .header-menu li.series-btn .straight .menu-txt {
		border: solid 2px #f6bfd1;
		-webkit-text-stroke: 1px #f6bfd1;
	}
	#glossy .is-products .header-menu li.series-btn .straight .menu-txt .sub-color {
		-webkit-text-stroke: 1px #f6bfd1;
	}
	#glossy .is-products .header-menu li.series-btn .glossy .srs {
		color: #f8c69a;
	}
	#glossy .is-products .header-menu li.series-btn .glossy .menu-txt {
		border: solid 2px #f8c69a;
		-webkit-text-stroke: 1px #f8c69a;
	}
	#glossy .is-products .header-menu li.series-btn .glossy .menu-txt .sub-color {
		-webkit-text-stroke: 1px #f8c69a;
	}
	#straight .is-products .header-menu li.series-btn .straight .srs {
		color: #ed7fa4;
	}
	#straight .is-products .header-menu li.series-btn .straight .menu-txt,
	#shoplist-page .header-menu li.series-btn .straight .menu-txt {
		border: solid 2px #ed7fa4;
		-webkit-text-stroke: 1px #ed7fa4;
	}
	#straight .is-products .header-menu li.series-btn .straight .menu-txt .sub-color,
	#shoplist-page .header-menu li.series-btn .straight .menu-txt .sub-color {
		-webkit-text-stroke: 1px #ed7fa4;
	}
	#straight .is-products .header-menu li.series-btn .glossy .srs,
	#shoplist-page .header-menu li.series-btn .glossy .srs {
		color: #8cd1d1;
	}
	#straight .is-products .header-menu li.series-btn .glossy .menu-txt,
	#shoplist-page .header-menu li.series-btn .glossy .menu-txt {
		border: solid 2px #8cd1d1;
		-webkit-text-stroke: 1px #8cd1d1;
	}
	#straight .is-products .header-menu li.series-btn .glossy .menu-txt .sub-color,
	#shoplist-page .header-menu li.series-btn .glossy .menu-txt .sub-color {
		-webkit-text-stroke: 1px #8cd1d1;
	}
	#glossy .is-features .header-menu li.series-btn .straight .srs {
		color: #00559e;
	}
	#glossy .is-features .header-menu li.series-btn .straight .menu-txt {
		border: solid 2px #00559e;
		-webkit-text-stroke: 1px #e5467c;
	}
	#glossy .is-features .header-menu li.series-btn .glossy .srs {
		color: #00999a;
	}
	#glossy .is-features .header-menu li.series-btn .glossy .menu-txt {
		border: solid 2px #00999a;
		-webkit-text-stroke: 1px #f85800;
	}
	#glossy .is-features .header-menu li.series-btn .glossy .menu-txt .sub-color {
		-webkit-text-stroke: 1px #00999a;
	}
	#glossy .is-mv .header-menu li.series-btn .glossy .srs {
    color: #00999a;
	}
	.header-bottom-list {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}

	/* common-list-sns */
	.common-list-sns {
		margin-bottom: calc(30vw / 19.2);
  }
	.common-list-sns .sns-icon:not(:last-of-type) {
		margin-right: calc(40vw / 19.2);
	}
	.common-list-sns .instagram img,
	.common-list-sns .pinterest img {
		width: calc(24vw / 19.2);
	}
	.common-list-sns .x img {
		width: calc(23vw / 19.2);
	}
	.common-list-sns .tiktok img,
	.common-list-sns .threads img {
		width: calc(21vw / 19.2);
	}

	/* common-list-shop */
	.common-list-shop {
		width: 100%;
		margin: 0 calc(123vw / 19.2);
		border-top: solid 1px #003165;
	}
	.common-list-shop li:nth-of-type(1) {
		border-top: none;
	}
	.common-list-shop li {
		padding: calc(20vw / 19.2) calc(89vw / 19.2);
	}
	.common-list-shop li a {
		font-size: calc(18vw / 19.2);
	}

	.common-list-shop .arrow {
		width: calc(24vw / 19.2);
    height: calc(24vw / 19.2);
	}
	.common-list-shop li a:hover .arrow {
		right: calc(-10vw / 19.2);
	}

	/* gloosy */
	body#glossy .common-list-shop li:nth-of-type(5) {
		border-bottom: none;
	}
	body#glossy .common-list-shop li:nth-of-type(1) {
		border-top: none;
	}
	body#glossy .common-list-shop li {
		padding: calc(18vw / 19.2) 0 calc(18vw / 19.2) calc(30vw / 19.2);
	}
	body#glossy .common-list-shop li {
		padding: calc(18vw / 19.2) 0;
	}
	body#glossy .common-list-shop li:nth-of-type(2),
	body#glossy .common-list-shop li:nth-of-type(4) {
		padding-left: calc(40vw / 19.2);
		padding-right: calc(30vw / 19.2);
	}
	body#glossy .common-list-shop li:nth-of-type(1),
	body#glossy .common-list-shop li:nth-of-type(3),
	body#glossy .common-list-shop li:nth-of-type(5) {
		padding-left: calc(30vw / 19.2);
		padding-right: calc(15vw / 19.2);
	}
	body#glossy .common-list-sns {
		margin: calc(40vw / 19.2) calc(110vw / 19.2) 0 0;
		justify-content: flex-end;
		flex-wrap: wrap;
  }
	body#glossy footer .common-list-shop {
		display: none;
	}
	body#glossy .common-list-shop {
		width: calc(455vw / 19.2);
		display: flex;
		flex-wrap: wrap;
		border-top: solid 1px #005062;
		border-bottom: solid 1px #005062;
		margin: 0 auto;
	}
	body#glossy	.common-list-shop > * {
		width: 50%;
	}
	body#glossy .header-bottom-list {
		flex-direction: column-reverse;
	}
	body#glossy .glossy-mogura {
		position: absolute;
		bottom: 0;
		left: calc(90vw / 19.2);
		width: 50%;
		/* min-width: 260px; */
		z-index: -1;
	}
	body#glossy .common-list-sns .sns-icon {
		width: 100%;
		text-align: right;
	}
	body#glossy .common-list-sns .sns-icon:nth-of-type(1) {
		margin-right: calc(100vw / 19.2);
	}
	body#glossy .common-list-sns .sns-icon:nth-of-type(2) {
		margin-right: calc(50vw / 19.2);
		margin-top: calc(-8vw / 19.2);
	}
	body#glossy .common-list-sns .sns-icon:nth-of-type(3) {
		margin-right: calc(15vw / 19.2);
		margin-top: calc(15vw / 19.2);
	}

	#glossy .header.is-mv .glossy-mogura .image-1,
	#glossy .header.is-mv .pc-character .char-01 {
		display: block;
	}
	#glossy .header.is-concept .glossy-mogura .image-2,
	#glossy .header.is-concept .pc-character .char-02 {
		display: block;
	}
	#glossy .header.is-products .glossy-mogura .image-3,
	#glossy .header.is-products .pc-character .char-03 {
		display: block;
	}
	#glossy .header.is-features .glossy-mogura .image-4,
	#glossy .header.is-features .pc-character .char-04 {
		display: block;
	}

	#glossy .header.is-instagram .pc-character .char-05,
	#glossy .header.is-topics .pc-character .char-05,
	#glossy .header.is-news .pc-character .char-05,
	#glossy .header.is-shoplist .pc-character .char-05,
	#glossy .header.is-instagram .glossy-mogura .image-5,
	#glossy .header.is-topics .glossy-mogura .image-5,
	#glossy .header.is-news .glossy-mogura .image-5,
	#glossy .header.is-shoplist .glossy-mogura .image-5 {
		display: block;
	}
}

/*----------------------------------------
 Footer
----------------------------------------*/
.footer,
.common-list-shop {
	font-family: "Overpass", sans-serif;
	font-weight: 700;
	letter-spacing: 0.075em;
}
.footer-logo {
	width: calc(201vw / 8.28);
	margin: 0 auto calc(113vw / 8.28);
}
.footer-bg-block {
	background-color: #003165;
	color: #fff;
	padding: calc(78vw / 8.28) 0;
}
body#glossy .footer-bg-block {
	background-color: #005062;
}
.footer-list-nav a {
	position: relative;
	display: block;
}
.footer-list-nav .hover-line::after {
	background-color: #fff;
}
.footer-list-nav {
	display: flex;
	justify-content: center;
	margin-bottom: calc(74vw / 8.28);
	font-size: calc(22vw / 8.28);
	letter-spacing: 0.1em;
}
.footer-list-nav li:not(:last-of-type) {
	padding-right: calc(65vw / 8.28);
}
.footer-copy {
	font-size: calc(20vw / 8.28);
	letter-spacing: 0.1em;
	text-align: center;
}

/*-- PC --------*/
@media screen and (min-width: 769px) {
	.header-sp-toggle,
	footer .footer-logo,
	footer .common-list-sns,
	footer .common-list-shop {
		display: none;
	}
	.footer-bg-block {
		padding: calc(40vw / 19.2) 0;
	}
	.footer-list-nav {
		font-size: calc(14vw / 19.2);
		margin-bottom: calc(20vw / 19.2);
	}
	.footer-list-nav li:not(:last-of-type) {
    padding-right: calc(65vw / 19.2);
	}
	.footer-copy {
		font-size: calc(12vw / 19.2);
	}
}

#straight .glossy-image,
#glossy .straight-image,
#news-page .glossy-image,
#shoplist-page .glossy-image {
	display: none;
}
#glossy .is-concept .header-menu .menu-txt,
#glossy .is-instagram .header-menu .menu-txt,
#glossy .is-topics .header-menu .menu-txt,
#glossy .is-news .header-menu .menu-txt,
#glossy .is-shoplist .header-menu .menu-txt {
	color: #fff;
}