/*====================
common
====================*/
html {
	scroll-behavior: smooth;
}

body {
	font-family: "Zen Maru Gothic", "Noto-Sans", sans-serif;
}

.container {
	overflow: hidden;
	}

:root {
  --main: #6A1A00;
  --pink: #F8D8DC;
  --yellow: #FFE8AA;
}

h2, h3, h4, p, a, span {
  color: var(--main);
}

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

@media all and (min-width: 500px) {
	.sp {
		display: none!important;
	}

}

.pageTop {
    display: block;
    position: fixed;
    bottom: 1%;
    right: 30%;
    width: 90px;
    -webkit-transition: .3s;
    transition: .3s;
    z-index: 10;
    -webkit-transform: translateY(15.625vw);
    transform: translateY(15.625vw)
}
@media only screen and (max-width: 767px) {
    .pageTop {
        bottom:2.6666666667vw;
        right: 2.6666666667vw;
        width: 19.7333333333vw;
        -webkit-transform: translateY(53.3333333333vw);
        transform: translateY(53.3333333333vw)
    }
    .pageTop.--teaser {
    bottom: 1.766667vw;
    }
}
.pageTop.is-active {
    -webkit-transform: translateY(0);
    transform: translateY(0)
}


/*====================
 header
====================*/
.header {
  background: #fff;
  width: 100%;
  height: 50px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.header__inner {
  margin: auto;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  box-sizing: border-box;
  align-items: center;
}
.header__l {
  display: flex;
  align-items: center;
}
.header__ciscoLogo {
  border-right: solid 1px #888888;
  width: 52px;
  padding-right: 16px;
  margin-right: 16px;
}
.header__sableLogo {width: 110px;}
.header__r {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header__sns-logo02 {width: 26px;}

@media all and (max-width: 501px) {
  .header__inner {
    width: 93.07vw;
    padding: 1.749vw 0vw;
  }
  .header__ciscoLogo {
    width: 12.73vw;
    padding-right: 2vw;
    margin-right: 2.2vw;
  }
  .header__sableLogo {
    width: 26.73vw;
  }
  .header__r {
    gap: 2.5vw;
  }
  .header__sns-logo01 {
    width: 8.73vw;
  }
  .header__sns-logo02 {
    width: 6.73vw;
  }
}


/*====================
PC layout
====================*/
.fixed-l {
    z-index: 1;
    flex: 1 1;
    width: 100%;
    height: 100vh;
    margin-right: min(970px, 67.4%);
}
.fixed-l__box {
    position: absolute;
    inset: 0px;
    width: 37vw;
}
.fixed-l__box-image {
    position: absolute;
    inset: 0;
    margin: 0;
    top: 96px;
    max-height: calc(100vh - 96px - 24px);
    max-height: calc(100vh - 96px - 24px);
    width: auto !important;
    max-width: 373px;
    left: 70px;
}
.fixed-r {
    position: relative;
    z-index: 9;
    width: 470px;
    height: 100vh;
    margin: auto auto auto auto;
}
.fixed-r__box-bg {
  position: absolute;
  height: auto;
}
.fixed-r__menu {
  z-index: 1;
  position: absolute;
  left: 0;
  right: 0;
  top: 70px;
  display: block;
  margin: 0 auto 0;
  width: 270px;
}
.fixed-r__item {
    background-image: repeating-linear-gradient(90deg, #952500, #952500 6px, transparent 6px, transparent 10px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 100% 2px;
    padding-bottom: 25px;
    margin-bottom: 22px;
}
.fixed-r__item:last-child {
	background-image: unset;
}
.fixed-r__item-link {
  font-size: 18px;
  font-weight: bold;
  opacity: 0.4;
}
.fixed-r__item-link:hover {
	opacity: 1.0;
}
.fixed-r__bottom {
  margin-top: 375px;
}
.fixed-r__bottom-products {
  display: block;
  width: 278px;
  height: auto;
  margin: 0 auto 15px;
  position: relative;
  left: -3px;
}
.fixed-r__bottom-deco {
	position: relative;
}
.fixed-r__bottom-deco01 {
	position: absolute;
	width: 45px;
	top: 64%;
	right: 2%;
}
.fixed-r__bottom-deco02 {
	position: absolute;
	width: 45px;
	top: 32%;
	left: 6%;
}
.fixed-r__btn {
  display: block;
}
.fixed-r__btn-image {
  height: auto;
  display: block;
}
.fixed-bg {
	position: fixed;
	inset: 0;
	z-index: 1;
	background-color: #FFE8AA;
	background-image: url(../images/bg_dotted_fv.png);
	background-repeat: repeat;
	background-size: 20px;
	background-position: -12px 136px;
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: space-between;
}
.fixed-l,
.fixed-r {
    pointer-events: auto;
}
.fixed-r__box {
    position: absolute;
    right: 85px;
    top: 50%;
    transform: translateY(-50%);
    width: 331px;
    margin: auto auto auto auto;
}

@media all and (min-width: 1440px) {
	.fixed-l__box-image {
	left: 70px;
	top: 50%;
	transform: translateY(-50%);
	max-height: calc(100vh - 24px);
	width: auto !important;
	max-width: 373px;
	margin: 0 auto 0;
	}
	.fixed-r {
		width: 37vw;
	}
	.fixed-r__box {
		right: 0;
		left: 0;
	}
}

@media (max-width: 930px) and (min-width: 500px) {
	.fixed-l, .fixed-r {
		display: none !important;
	}

	.scroll_content {
		margin-right: auto !important;
	}

	.pageTop {
		right: 3%;
	}

}

@media all and (max-width: 1650px) {
	.fixed-r__box-bg, .fixed-r__menu {
		display: none;
	}
	.fixed-r__bottom {
		margin-top: 0px;
	}
}

@media all and (max-width: 1380px) {
	.fixed-l__box {
		display: none;
	}
}


@media all and (max-width: 501px) {
	.fixed-bg {
		display: none;
	}
	.pageTop {
	bottom: 15.766667vw;
	right: 2.6666666667vw;
	width: 10.4vw;
	}
	.fixed-l__scroll {
		display: none;
	}
}

.fixed-r__side{
  position: fixed;
  top: 0;
  right: 20px;
  height: 100vh;
  width: 30px;
  z-index: 9999;
  background-image: url("../images/fv_slides.png");
  background-repeat: repeat-y;
  background-position: 0 0;
  background-size: 30px 399px;
  pointer-events: none;
  animation: sideScroll01 18s linear infinite;
  will-change: background-position;
}

@keyframes sideScroll01 {
  from { background-position: 0 -399px; }
  to   { background-position: 0 0; }
}

.fixed-l__scroll {
	position: fixed;
	bottom: 2.8%;
	left: 30.2%;
	width: 12px;
	z-index: 1;
}
.fixed-l__scroll-logo{
  animation: scrollPico 1.6s ease-in-out infinite;
  will-change: transform;
}

@keyframes scrollPico{
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

.fixed-l__side{
  position: fixed;
  top: 0;
  left: 20px;
  height: 100vh;
  width: 30px;
  z-index: 9999;
  background-image: url("../images/fv_slides02.png");
  background-repeat: repeat-y;
  background-position: 0 0;
  background-size: 30px 399px;
  pointer-events: none;
  animation: sideScroll02 18s linear infinite;
  will-change: background-position;
}

@keyframes sideScroll02{
  from { background-position: 0 0; }
  to   { background-position: 0 -399px; }
}

@media all and (min-width: 1441px) {
	.scroll_content {
		margin-right: auto !important;
	}
}

@media all and (min-width: 500px) {
	.scroll_content {
		position: relative;
		width: 100%;
		max-width: 500px;
		margin: auto;
		margin-right: min(470px, 50%);
		background-color: #fff;
		z-index: 10;
		border-left: 2px solid var(--main);
		border-right: 2px solid var(--main);
	}
}
.scroll_content {
  height: 2000px;
  height: unset;
  background: #fff;
  overflow: hidden;
}

@media all and (max-width: 501px) {
	.scroll_content  {
		  overflow: hidden;
	}
}

.contents__bg {
	position: relative;
	z-index: 1;
}
.contents__bg:after {
	content: "";
	position: absolute;
	background-image: url(../images/bg_dotted_contents.png);
	background-repeat: repeat;
	background-size: 20px;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	z-index: -2;
}
.intro > .contents__bg:after {
	height: calc(100% + 87px);
	top: -2%;
}
.product-limited > .contents__bg:after {
	height: 111%;
}
.goods > .contents__bg:after {
	height: 103.1%;
	top: -2.5%;
}
.apply > .contents__bg:after {
	height: 106%;
}
.comic > .contents__bg:after {
	height: 109%;
	top: -5%;
}

@media all and (max-width: 501px) {
	.comic > .contents__bg:after {
		height: 108%;
		top: -3.5%;
	}
	.apply > .contents__bg:after {
		top: -2%;
	}
	.goods > .contents__bg:after {
		height: 101.1%;
	}
}

/*====================
FV
====================*/

.fv {
	position: relative;
	height: 718px;
	background: url(../images/bg_dotted_fv.png) repeat;
	background-color: #FFE8AA;
	background-size: 20px;
}
.fv:after {
	content: "";
	background: url(../images/fv_pc.png) no-repeat;
	background-size: cover;
	position: absolute;
	width: 100%;
	height: 718px;
	top: 0;
	display: block;
	z-index: 0;
}

.fv__title {
  position: relative;
  z-index: 1;
  top: 75px;
}
.fv__title img {
	margin: auto;
	width: 94%;
}
.anchor {
  position: absolute;
  z-index: 1;
}
.anchor__inner {
  display: flex;
  justify-content: space-between;
  margin: auto;
}

@media all and (max-width: 501px) {
  .fv {
    width: 100vw;
    height: 166.4vw;
  }
  .fv:after {
    width: 100vw;
    height: 166.4vw;
    background: url(../images/fv.png) no-repeat;
    background-size: cover;
  }
  .fv__title {
    top: 12.6vw;
  }
  .fv__title img {
    width: 94vw;
  }
  .anchor {
    margin: 75vw auto 0;
    width: 100vw;
  }
  .anchor__inner {
    width: 93vw;
  }
  .anchor__btn {
    width: 29vw;
  }
}

/*====================
cp
====================*/
.cp {
	background: #6A1A00;
	color: #fff;
	padding: 8px 15px 8px 29px;
	display: grid;
	grid-template-columns: auto 1fr;
	gap: 0.7em 0.4em;
	align-items: center;
	justify-content: start;
	align-content: center;
	justify-items: stretch;
	width: auto;
	margin: auto;
	line-height: 1.2;
	font-weight: 500;
	position: relative;
	z-index: 11;
}
.cp__label {
	border: solid 1px #fff;
	text-align: center;
	vertical-align: middle;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 4px;
	padding: 2px 5px 5px;
	font-size: 9.33px;
}
.cp__value {font-size: 16px;position: relative;bottom: 1px;width: 100%;}
.cp span {
	color: #fff;
	font-size: 23px;
}

@media all and (max-width: 501px) {
	.cp {
    padding: 2.2vw 3.2vw 2.2vw 5.2vw;
    gap: 1.9vw 2.1vw;
    line-height: 1;
 }
	.cp__label {
    font-size: 2vw;
    padding: 1vw 0.5vw;
 }
	.cp__value {
    font-size: 3.3vw;
    bottom: 0.7vw;
 }
	.cp .big {
	font-size: 4.6vw;
	}
}


/*====================
intro
====================*/

.intro {
    background: #F9D7DB;
    padding: 31px 0 78px 0;
    position: relative;
}
.intro__title {
  position: relative;
  z-index: 3;
  margin: 6px 0 0 0;
}
.intro__title-image {
  width: 61%;
  margin: auto;
  position: relative;
  z-index: 3;
  left: 1%;
}
.intro__text {
  text-align: center;
  font-size: 21px;
  margin: 16px 0 0px 0;
  line-height: 1.85;
  color: var(--main);
  font-weight: bold;
  position: relative;
  z-index: 99;
}
.intro__image-bottom {
  margin: 17px auto 0;
  width: 80%;
}
.intro__deco-item {
  position: absolute;
}
.intro__deco-item01 {
  width: 83px;
  left: 5%;
  top: 26.5%;
}
.intro__deco-item02 {
  width: 90px;
  top: 28%;
  right: 0%;
  z-index: 1;
}
.intro__deco-item03 {
  width: 80px;
  left: 0%;
  top: 37.3%;
}
.intro__deco-item04 {
  width: 46px;
  top: 42%;
  right: 0.1%;
}
.intro__deco-item05 {
  width: 91px;
  left: 4%;
  top: 63.5%;
}
.intro__deco-item06 {
  width: 75px;
  top: 66%;
  right: 0.5%;
}


@media all and (max-width: 501px) {

  .intro {
    padding: 6.6vw 0 0 0;
  }
  .intro__title-image {
    width: 60vw;
  }
  .intro__text {
    font-size: 4.2vw;
    margin: 2vw auto 0vw;
    padding: 0 0 4vw;
  }
  .intro__image-bottom {
    margin: 2vw auto 0;
  }
	.intro__deco-item01 {
    width: 17vw;
    top: 26.4%;
  }
	.intro__deco-item02 {
	width: 18vw;
	top: 29%;
	}
	.intro__deco-item03 {
	width: 17vw;
	top: 43%;
	}
	.intro__deco-item04 {
	width: 9vw;
	top: 46%;
	}
	.intro__deco-item05 {
	width: 18vw;
	top: 64.5%;
	}
	.intro__deco-item06 {
	width: 15vw;
	top: 67%;
	}
}


/*====================
product-limited
====================*/

.product-limited {
  background: #F9D7DB;
  position: relative;
  z-index: 1;
  padding: 0 0 186px 0;
  scroll-margin-top: 70px;
}
.product-limited__inner {
	position: relative;
	width: 490px;
	height: auto;
	margin: 0 auto 0 auto;
	padding: 0 0 40px 0;
}
.product-limited__inner:after {
	content: "";
	background: url(../images/limited_bg.png) no-repeat;
	background-size: contain;
	display: block;
	margin: auto;
	width: 100%;
	height: 110%;
	position: absolute;
	top: 0px;
	left: 2px;
	right: 0;
	z-index: -1;
}
.product-limited__title {
  position: relative;
  z-index: 1;
  margin: 0 0 0;
  transform: translate(1%, -51%);
}
.product-limited__title-image {
  width: 450px;
  margin: auto;
}
.product-limited__logo-image {
  position: absolute;
  width: 84px;
  right: 11%;
}
.product-limited__title02 {
  margin: -45px 0 0 0;
}
.product-limited__title02-image {
  width: 48%;
  margin: auto;
  position: relative;
  left: 3px;
}
.product-limited__image {
  width: 90%;
  margin: 15px auto 0 auto;
  position: relative;
  left: 2%;
}
.product-limited__text {
  text-align: center;
  font-size: 19px;
  margin: 3px auto 0;
  width: 88.2%;
  line-height: 1.5;
  background-image: repeating-linear-gradient(90deg, #952500, #952500 12px, transparent 12px, transparent 16px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% 2px;
  padding: 0 0 46px 0;
  font-weight: bold;
}
.product-limited__title03 {
  margin: 43px auto 0;
}
.product-limited__title03-image {
  width: 60%;
  margin: auto;
  position: relative;
  left: -2%;
}
.product-limited__text02 {
  text-align: center;
  font-size: 18px;
  margin: 14px 0 66px 0;
  line-height: 1.7;
  font-weight: bold;
}
.product-limited__deco-item {
  position: absolute;
}
.product-limited__deco-item01 {
  width: 108px;
  top: 9%;
  left: 2.6%;
}
.product-limited__deco-item02 {
  width: 70px;
  top: 8.5%;
  right: 6.3%;
}
.product-limited__deco-item03 {
  width: 157px;
  top: 46.8%;
  left: -1.1%;
}
.product-limited__deco-item04 {
  width: 68px;
  top: 51.6%;
  right: 10.2%;
}
.product-limited__deco-item05 {
  width: 74px;
  top: 61.1%;
  left: 4.6%;
}
.product-limited__deco-item06 {
  width: 67.1px;
  top: 61.2%;
  right: 4.5%;
}


@media all and (max-width: 501px) {
  .product-limited {
    padding: 0 0 32vw 0;
  }
  .product-limited__inner {
    width: 98%;
    margin: 0 auto 0 auto;
    padding: 0 0 20vw 0;
  }
	.product-limited__inner:after {
		width: 100%;
		top: 11vw;
	}
  .product-limited__title {
    transform: translate(-1%, 4%);
  }
  .product-limited__title-image {
    width: 90%;
  }
  .product-limited__logo-image {
  width: 17.2%;
  right: 9.7%;
  }
  .product-limited__title02 {
    margin: 5vw 0 0 0;
  }
  .product-limited__image {
    margin: 2.5vw auto 0 auto;
  }
  .product-limited__text {
    font-size: 3.8vw;
    background-image: repeating-linear-gradient(90deg, #952500, #952500 6px, transparent 6px, transparent 10px);
    padding: 0 0 10vw 0;
  }
  .product-limited__title03 {
    margin: 7vw auto 0;
  }
  .product-limited__text02 {
    font-size: 3.8vw;
    line-height: 1.5;
    margin: 3.7vw 0 9vw 0;
  }
  .product-limited__deco-item01 {
    width: 20.3vw;
    top: 13.1%;
    left: 3.2%;
  }
  .product-limited__deco-item02 {
    width: 14.2vw;
    top: 12.6%;
    right: 7.6%;
  }
  .product-limited__deco-item03 {
    width: 30.5vw;
    top: 48.2%;
    left: -0.3%;
  }
  .product-limited__deco-item04 {
    width: 14.4vw;
    top: 52.4%;
  }
  .product-limited__deco-item05 {
    width: 14.4vw;
    top: 61.1%;
  }
  .product-limited__deco-item06 {
    width: 13vw;
    top: 61%;
    right: 5.2%;
  }
}

/*====================
goods
====================*/

.goods {
  padding: 98px 0 40px 0;
}
.goods{
  position: relative;
  z-index: 1;
  background: #FFE8AA;
  padding: 0px 0 0px;
  overflow: visible;
}
.goods__title {
    margin: -209px 0 0 0;
    padding-top: 4.7%;
}
.goods__title-cap {
	text-align: center;
	font-weight: bold;
	margin: 5px 0 0 0;
}
.goods__title img {
	width: 86%;
	margin: auto;
	position: relative;
	left: -1%;
}
.goods__text {
  margin: -12px 0 0 0;
  text-align: center;
  font-size: 19px;
  font-weight: bold;
}
.goods__text .big {
	font-size: 33px;
}
.goods__image {
  margin: auto;
}
.goods__image01 {
  width: 72%;
  position: relative;
  left: -40px;
  top: 7px;
}
.goods__image02 {
  width: 68%;
  position: relative;
  top: -49px;
  right: -85px;
}
.goods__image03 {
  width: 75%;
  position: relative;
  left: 2.1%;
  top: -42px;
}
.goods__notes {
  color: #000;
  width: 92%;
  margin: -49px auto 0;
  line-height: 1.18;
}
.goods-app {
  position: relative;
  z-index: 0;
}
.goods-app__inner {
	position: relative;
	width: 100%;
	margin: auto;
	padding: 49px 0 23px 0;
	display: flex;
	flex-wrap: wrap;
}
.goods-app__inner:after {
	content: "";
	background: url(../images/goods_frame.png) no-repeat;
	background-size: contain;
	display: block;
	margin: auto;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 25px;
	left: 4px;
	right: 0;
	z-index: -1;
}
.goods-app__title {
  width: 100%;
}
.goods-app__title__image {
	width: 45%;
	margin: 22px auto 16px;
	position: relative;
	left: 1%;
}
.goods-app__item {
  text-align: center;
  width: calc(50% - 10px);
}
.goods-app__item:nth-child(4) {
	position: relative;
    left: 4%;
}
.goods-app__item:nth-child(6) {
	position: relative;
    left: 4%;
}
.goods-app__inner > .goods-app__item:first-of-type {
  width: 100%;
}
.goods-app__item_100 {
	width: 100%;
}
.app__text {
	font-size: 13.5px;
	margin: 5px 0 16px 0;
	font-weight: bold;
}
.app__image {
  width: 84%;
  margin: auto;
}
.app__image01 {
  width: 48%;
}
.app__btn {
  font-weight: bold;
  border: solid 1px var(--main);
  display: flex;
  width: 55%;
  border-radius: 40px;
  padding: 2px 0;
  margin: auto;
  align-items: center;
  justify-content: center;
}
.goods__notes-bottom {
  width: 94%;
  margin: 24px auto 0;
  line-height: 1.2;
  color: #000;
  padding-bottom: 10%;
}
.goods__deco01 {position: absolute;width: 130px;top: 14.5%;right: 3.4%;}
.goods__deco02 {position: absolute;width: 68px;top: 19%;right: 7.5%;}
.goods__deco03 {position: absolute;width: 166px;top: 34.8%;left: 0.4%;}
.goods__deco04 {position: absolute;width: 150px;top: 25.1%;left: 0%;}
.goods__deco05 {position: absolute;width: 118px;top: 37.7%;right: 0%;}
.goods-app__deco01 {position: absolute;width: 80px;left: 9.6%;top: 8.9%;}
.goods-app__deco02 {position: absolute;width: 80px;right: 7.2%;top: 9.1%;}

@media all and (max-width: 501px) {
  .goods {padding: 2vw 0 0vw;}
  .goods__text {font-size: 3.8vw;margin: -2vw 0 0 0;}
  .goods__text .big {
    font-size: 6.4vw;
  }
  .goods__image {left: -8vw;top: 1vw;}
	.goods__image02 {
		left: 17.5vw;
		top: -10vw;
	}
	.goods__image03 {
		left: 2.5vw;
		top: -8.1vw;
	}
  .goods__notes {font-size: 3.15vw;margin: -9.4vw auto -1.9vw;}
	.goods__title-cap {
		font-size: 3.2vw;
		margin: 2px 0 0 0;
	}

  .goods__notes-bottom {font-size: 3.2vw;margin: 2.7vw auto 0;}

  .goods__deco01 {width: 26vw;right: 3%;top: 13.7%;}
  .goods__deco02 {width: 14vw;top: 18.3%;right: 6.9%;}
  .goods__deco03 {width: 33vw;top: 34%;left: 0.9%;}
  .goods__deco04 {width: 31vw;top: 24.4%;}
  .goods__deco05 {width: 24vw;top: 36.9%;}
  .goods-app__deco01 {width: 17vw;left: 7.3%;top: 10.3%;}
  .goods-app__deco02 {
    width: 17vw;
    top: 10.3%;
    right: 6.6%;
  }
	.goods-app__inner {
		padding: 16.6vw 0 6vw 0;
		gap: 2.4vw 2vw;
		width: 97vw;
	}
	.app__text {
		font-size: 2.7vw;
		margin: 1.2vw 0 2vw 0;
	}

	.goods::before {
		top: calc(var(--curve) * -1.1);
		height: calc(var(--curve) * 1.66);
	}
	.goods::after {
	bottom: calc(var(--curve) * -0.6);
	height: calc(var(--curve) * 1.4);
	}
	.goods__title {
		margin: -47.4vw 0 0 0;
		padding-top: 6.7%;
	}
	.goods-app__title__image {
		margin: -4vw auto 3.9vw;
	}
}

.bg_round_top01 {
  position: absolute;
  z-index: -2;
}
.bg_round_bottom01 {
  position: absolute;
  bottom: 0%;
  z-index: -2;
}

@media all and (max-width: 501px) {
	.bg_round_top01 {
	top: -18.9vw;
	}
	.bg_round_bottom01 {
	bottom: 0;
	}
}



/*====================
apply
====================*/
.apply {background: #F9D7DB;padding: 30px 0 160px 0;position: relative;}
.apply__title {margin: 0px 0 18px 0;}
.apply__title-image {margin: auto;width: 42%;position: relative;left: 3px;}
.apply__image {margin: auto;width: 95%;}
.apply__bottom {margin: 0 0 58px 0;position: relative;}
.apply__arrow {margin: 26px auto 0;width: 10%;}
.apply__bottom-text {text-align: center;font-size: 22px;font-weight: bold;margin: 12px auto 0;}
.apply__bottom-text-image {
	margin: 20px auto 21px;
	width: 60%;
}
.apply__btn {margin: 8px auto 0;display: block;width: 66%;}
.receipt {width: 93%;margin: auto;}
.box-scroll {margin: 90px 0 0 0;position: relative;}
.box-scroll__title {position: absolute;display: block;margin: auto;left: 0;right: 0;top: -23px;}
.box-scroll__title-image {
  width: 45%;
  margin: auto;
}

.scroll__deco01 {
	position: absolute;
	width: 64px;
	top: -11.5%;
	left: 11.3%;
}

img.scroll__deco01.shake01 {}
.scroll__deco02 {
	position: absolute;
	width: 70px;
	top: -5.5%;
	right: 8.3%;
}


.box-scroll__cont {width: 92%;height: 370px;margin: auto;background: #fff;border: 2px solid #6A1A00;border-radius: 30px;padding: 50px 0 0 0;}
.box-scroll__text {width: 84%;height: 294px;overflow: auto;padding: 0 15px 40px 0;margin: auto;color: #000;line-height: 1.6;}
.box-scroll__text-title {
	color: #000;
	font-weight: bold;
	font-size: 20px;
}
.box-scroll__indent {
	color: #000;
	display: block;
	text-indent: -1rem;
	padding-left: 1rem;
}
.box-scroll__indent.number1 {
  text-indent: -1.1rem;
	padding-left: 1.1rem;
}
.box-scroll__indent.number2 {
  text-indent: -1.5rem;
	padding-left: 1.5rem;
}


.apply__bottom-deco01 {
  position: absolute;
  position: absolute;
  width: 55px;
  right: 4%;
  top: 72%;
}
.apply__bottom-deco02 {position: absolute;width: 55px;left: 7%;top: 33%;}

.apply__deco01 {
  position: absolute;
  width: 75px;
  top: -1.3%;
  left: 9%;
}
.apply__deco02 {
  position: absolute;
  width: 80px;
  top: -1.6%;
  right: 7.5%;
}

@media all and (max-width: 501px) {
  .apply {padding: 6vw 0 28vw 0;}
  .apply__title {margin: 0px 0 13px 0;}
  .apply__image {width: 95%;}
  .apply__bottom {margin: 0 0 12vw 0;}
  .apply__arrow {margin: 4.7vw auto 0;}
  .apply__bottom-text {font-size: 4.3vw;margin: 2vw auto 0;}
  .apply__btn {margin: 8px auto 0;}

  .box-scroll {
    margin: 16vw 0 0 0;
}
  .box-scroll__cont {padding: 10vw 0 0 0;height: 88vw;border-radius: 20px;}
  .box-scroll__text {
    font-size: 3.2vw;
    height: 70vw;
  }

	.apply__bottom-deco01 {
		width: 41px;
		top: 22vw;
		right: 5vw;
	}
	.apply__bottom-deco02 {
		width: 41px;
		top: 10vw;
		right: 5vw;
	}

  .apply__deco01 {
  top: -1.3%;
  left: 9.8%;
  width: 14.7vw;
  }
  .apply__deco02 {
    top: -1.6%;
    right: 7.2%;
    width: 16vw;
  }

	.apply__bottom-text-image {
		margin: 13px auto 15px;
	}

	.scroll__deco01 {
	width: 13vw;
	top: -10.9%;
	left: 11.3%;
	}

	.scroll__deco02 {
		width: 13vw;
		top: -4.7%;
		right: 9.2%;
	}
	.box-scroll__text-title {
	
	}
  .box-scroll__indent.number1 {
    text-indent: -1rem;
    padding-left: 1rem;
  }
  .box-scroll__indent.number2 {
    text-indent: -1.2rem;
    padding-left: 1.2rem;
  }
}

/*====================
comic
====================*/

.comic{  
  position: relative;
  z-index: 1;
  background: #28A2F4;
  padding: 0px 0 0px;
  overflow: visible;
  scroll-margin-top: 100px;
}
.comic__inner {margin: -139px auto 0;padding: 0px 0 40px 0;}
.comic__title-image {width: 70%;margin: auto;}
.comic__image {width: 69%;margin: 50px auto 0;}

@media all and (max-width: 501px) {
	.comic::before {
		top: calc(var(--curve) * -0.6);
		height: calc(var(--curve) * 1.55);
	}
	.comic::after {
		bottom: calc(var(--curve) * -1);
		height: calc(var(--curve) * 2);
	}
  .comic__inner {padding: 0vw 0 7vw 0;margin: -28vw 0 0 0;}
  .comic__image {
    margin: 12vw auto 0;
  } 
}

.bg_round_top02 {
  position: absolute;
  z-index: -2;
}
.bg_round_bottom02 {
  position: absolute;
  z-index: -2;
}

@media all and (max-width: 501px) {
	.bg_round_top02 {
	top: -7.7vw;
	}
	.bg_round_bottom02 {
	bottom: -8vw;
	}
}

/*====================
about
====================*/
.about {background: #FFE8AA;padding: 36px 0 0 0;}
.about__inner {padding: 40px 0 50px 0;}
.about__title {margin: 0 0 20px 0;}
.about__title-image {margin: auto;width: 87%;}

@media (max-width: 501px) {
  .about__inner {padding: 6vw 0 9vw 0;}
  .about__title {margin: 0 0 14px 0;}
}


/*====================
contact
====================*/
.contact {background: #fff;}
.contact__inner {padding: 52px 0 0 0;}
.contact__title {width: 63%;margin: 0 auto 15px;}
.contact__heading {font-weight: bold;width: 90%;margin: auto;text-align: center;}
.contact__text {width: 93%;margin: 14px auto 40px;line-height: 1.4;}

@media all and (max-width: 501px) {
  .contact {

  }
  .contact__inner {padding: 9vw 0 0 0;}
  .contact__title {margin: 0 auto 2vw;}
  .contact__heading {font-size: 3.2vw;}
  .contact__text {margin: 2.7vw auto 8vw;font-size: 3.2vw;}
}

.sns__cont {margin: 37px 0 0 0;}
.sns__text {text-align: center;font-weight: bold;font-size: 24px;margin: 0 0 15px 0;}
.sns__text-image {
	width: 79%;
	margin: auto;
}
.sns__links {display: flex;flex-wrap: wrap;justify-content: center;gap: 20px 20px;}
.sns__btn {display: block;width: 45%;}

.contact__banner {display: block;width: 94%;margin: auto;}



@media all and (max-width: 501px) {
  .sns__cont {margin: 6.8vw 0 0 0;}
  .sns__text {font-size: 5vw;}
}


/*====================
footer
====================*/
.footer {margin: 0 0 0 0;padding: 0 0 40px 0;}
.footer__copyright {display: block;width: 92%;margin: 30px auto 0;line-height: 1.3;font-size: 14px;}

@media all and (max-width: 501px) {
  .footer {padding: 0vw 0 20vw 0;}
  .footer__copyright {font-size: 2.8vw;}
}

.floating {position: fixed;bottom: 0;z-index: 999;width: 100%;}
.floating__btn {display: block;width: 93.33333vw;margin: auto;}
.floating__btn-image {

}
.floating.--teaser {
  display: none!important;
}


/*====================
Slider
====================*/
.mySwiper{
  opacity: 0;
  transition: opacity .15s ease;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 20px;
  overflow: hidden;
  position: relative;
  z-index: 11;
  perspective: 1200px;
}

.mySwiper.is-ready{
  opacity: 1;
}

.mySwiper .swiper-slide{
  width: 380px;
  left: 14px;
}

.mySwiper .swiper-slide img{
  width: 100%;
  height: auto;
  display: block;
}

.mySwiper .swiper-slide-prev,
.mySwiper .swiper-slide-next{
  opacity: .55;
  z-index: 1;
}

.mySwiper .swiper-slide-active{
  opacity: 1;
  z-index: 3;
}

.mySwiper-nav{
  width: 100%;
  max-width: 440px;
  margin: 20px auto 0;
  display: flex;
  justify-content: center;
  gap: 62px;
  position: relative;
  z-index: 12;
}

.mySwiper-prev,
.mySwiper-next{
  width: 40px;
  cursor: pointer;
}

.swiper-button-next, .swiper-button-prev {
	content: unset;
}

.swiper__outer {
	position: relative;
	z-index: 3;
}
.swiper__deco-box {
}
.swiper-deco01 {
	position: absolute;
	width: 50px;
	top: -25%;
	left: 7%;
	z-index: 12;
}
.swiper-deco02 {
	position: absolute;
	width: 50px;
	top: 105%;
	right: 7%;
	z-index: 12;
}

.slider__contents{
  width: 100%;
  overflow: hidden;
  position: relative;
  transform: translateY(-76%);
}
.goods__slider {
  transform: translateY(-63%);
}
.comic__slider {
	transform: translateY(-58%);
  padding-top: 6%;
}

.slider__track{
  display: flex;
  align-items: center;
  width: max-content;
  animation: sliderMarquee 30s linear infinite;
  will-change: transform;
}

.comic__slider-image{
  width: 815px;
  height: auto;
  flex-shrink: 0;
}

@keyframes sliderMarquee{
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}




@media all and (max-width: 501px) {
	.mySwiper {
		max-width: 88vw;
		padding: 0 4vw;
	}
	.mySwiper-nav {
		gap: 12vw;
	}
	.mySwiper-prev, .mySwiper-next {
		width: 9vw;
	}
	.mySwiper .swiper-slide {
		width: 74vw;
		left: 2.6vw;
	}

	.slider__contents {
		transform: translateY(-76%);
	}
	.comic__slider {
		transform: translateY(-55%);
	}

	.comic__slider-image {
		width: 158vw;
	}
}



/*====================
other animation
====================*/
.flow_img01 {
    animation: Float 4s ease-in-out infinite;
}

.flow_img02 {
    animation: Float 6s ease-in-out infinite;
}

.flow_img03 {
  animation: Float 3s ease-in-out infinite;
}

@keyframes Float {
    0%, 100% {
        transform: translateY(-25px);
    }

    50% {
        transform: translateY(0);
    }
}

.shake01 {
  animation: shake .4s step-end .2s infinite;
}
.shake02 {
  animation: shake .4s step-end .1s infinite;
}

@keyframes shake {
    0% {
        rotate: -1deg
    }

    50% {
        rotate: 1deg
    }

    to {
        rotate: -1deg
    }
}

.btn__anime01 {
	position: relative;
	filter: drop-shadow(0px 6px 0px rgba(0, 0, 0, 0.25));
}

.btn__anime01:hover {
	filter: none;
	top: 6px;
}

.fixed-r__btn-image {
  filter: drop-shadow(0px 6px 0px rgba(0, 0, 0, 0.25));
}

.apply__btn-image {
  filter: drop-shadow(0px 4px 0px rgba(0, 0, 0, 0.25));
}


.btn__anime02 {
	position: relative;
	filter: drop-shadow(0px 4px 0px rgba(0, 0, 0, 0.25));
}

.btn__anime02:hover {
	filter: none;
	top: 4px;
}

.kirakira {
  animation-name: kirakira;
  animation-iteration-count: infinite;
  animation-timing-function: steps(1, end);
}

@keyframes kirakira {
  0%, 49%   { opacity: 1; }
  50%, 100% { opacity: 0; }
}

.kirakira01 {
  animation-duration: 1.6s;
  animation-delay: 0.0s;
}

.kirakira02 {
  animation-duration: 1.4s;
  animation-delay: 0.25s;
}

.fv::after,
.fv__title,
.anchor {
  opacity: 0;
}

.fv.is-loaded::after {
  animation: fvBgFadeIn 1s ease-out forwards;
}

.fv.is-loaded .fv__title {
  animation: fadeIn 0.8s ease-out forwards;
  animation-delay: 2.2s;
}

.fv.is-loaded .anchor {
  animation: fadeIn 0.8s ease-out forwards;
  animation-delay: 3.2s;
}

@keyframes fvBgFadeIn {
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}





:root{
  --sc-left: 0px;
  --sc-left-offset: -18px;
}

.fixed-l__scroll{
  position: fixed;
  bottom: 2.8%;
  left: calc(var(--sc-left) + var(--sc-left-offset));
  width: 12px;
  z-index: 20;
}

:root{
  --sc-right: 0px;
  --pt-gap: 16px;
}

@media (min-width: 501px){
  .pageTop{
    right: auto;
    left: calc(var(--sc-right) + var(--pt-gap));
    bottom: 1%;
    width: 90px;
    transform: translateY(15.625vw);
    z-index: 9999;
  }

  .pageTop.is-active{
    transform: translateY(0);
  }
}
