@charset "UTF-8";
/*-------------------------------------------------------------------
	template reset
-------------------------------------------------------------------*/
.page a:hover {
  opacity: unset;
}
@media screen and (min-width: 768px) {
  .page a:hover {
    opacity: 0.7;
  }  
}

.page p,
.page span,
.page a,
.page h2,
.page h3,
.page h4,
.page dl {
  font-size: 1.8rem;
  line-height: 1.4;
  letter-spacing: unset;
  color: #333;
  overflow: unset;
  vertical-align: unset;
  font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", "YuGothic", "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", "sans-serif";
}
.page__inner{
  width: 980px;
  max-width: 90%;
}
.page .item--name,
.page .preset_price_area,
.page .preset_price_area{
  text-align: left;
}
.bg_cellImg{
  background: url(/ec/img/usr/pg/campaign/control_alpha_item/bg_img.jpg);
}
.Orange{
  --SearchColor:#ff8849;
  --colorText:#ff8849;
}
.Blue{
  --SearchColor:#00a5e3;
  --colorText:#00a5e3;
}
@media screen and (max-width: 768px) {
  .page p,
  .page span,
  .page a,
  .page h2,
  .page h3 
  .page h4,
  .page dl {
      font-size: 1.6rem;
  }
}

.relaWrap {
	position: relative;
}

.absLink {
	position: absolute;
	top: -50px;
	left: 0;
	width: 0;
	height: 0;
	pointer-events: none;
}
/*-------------------------------------------------------------------
	format
--------------------------------------------------------------------*/
.page .pc {
	display:block;
}
.page .pcIn {
	display:inline;
}
.page .sp,
.page .spIn {
	display:none;
}
.indText {
	display: inline-block;
    text-indent: -1.1em;
    padding-left: 1.1em;
}
.noWrap,
.noWrapPC{
	display: inline-block;
	white-space: nowrap;
  vertical-align: baseline;
}
.section_bg{
  padding-top: 100px;
  background: url(/ec/img/usr/pg/campaign/control_alpha_item/section_bg.jpg) no-repeat top center;
}
.gradationBorder{
  padding: 3px;
  background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(70,186,255,1) 0%, rgba(88,228,209,1) 30%, rgba(125,228,130,1) 50%, rgba(255,194,54,1) 70%, rgba(255,136,73,1) 100%);
}
.imgCenter{
  width: fit-content;
  margin: 0 auto;
}
.alignLeft {
	text-align: left;
}
.alignCenter {
	text-align: center;
}
.alignRight {
	text-align: right;
}

@media screen and (max-width: 768px){
	.page .pc,
  .page .pcIn {
		display:none;
	}
	.page .sp {
		display:block;
	}
	.page .spIn {
		display:inline;
	}
  .noWrapPC{
    white-space: unset;
    vertical-align: unset;
  }  
	.noWrapSP{
    display: inline-block;
		white-space: nowrap;
		vertical-align: baseline;
	}
}
/*-------------------------------------------------------------------
	btn
--------------------------------------------------------------------*/
.page .btn01{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  padding: 10px 10px 28px;
  border: 1px solid #313131;
  background: #313131;
  color: #fff;
  position: relative;
  font-size: 1.8rem;
  font-weight: 500;
}
.page .btn01{
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .page .btn01:hover{
    opacity: 1;
    background: #fff;
  }
  .page .btn01:hover,
  .page .btn01:hover span{
    color: #313131;
  }
}

.page .btn01::after{
  content: "";
  width: 14px;
  aspect-ratio: 7 / 4;
  display: block;
  background-size: cover;
  background: url(/ec/img/usr/pg/campaign/control_alpha_item/btn-arrow_hover.png) no-repeat;
  background-size: cover;
  position: absolute;
  bottom: 10px;
  transition: .5s;
  animation: down 1.5s infinite;
}
@media screen and (min-width: 768px) {
  .page .btn01:hover:after{
    background: url(/ec/img/usr/pg/campaign/control_alpha_item/btn-arrow.png) no-repeat;
    background-size: cover;
  }
}

.page .btn02{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  padding: 15px 0;
  border: 1px solid #333;
  background: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  position: relative;
}
.page .btn02 .bigText{
  font-size: 2.4rem;
  font-weight: 600;
  transition: all 0.3s ease-in 0s;
}
@media screen and (min-width: 768px) {
  .page .btn02:hover .bigText{
    color: #fff;
  }
  .page .btn02:hover{
    opacity: 1;
    background: #313131;
    color: #fff;
  }
}
.page .btn02::after{
  content: "";
  width: 20px;
  aspect-ratio: 7 / 4;
  display: block;
  background: url(/ec/img/usr/pg/campaign/control_alpha_item/btn-arrow.png) no-repeat;
  background-size: cover;
  position: absolute;
  right: 10px;
  transform: rotate(-90deg) translateY(-50%);
}
@media screen and (min-width: 768px) {
  .page .btn02:hover:after{
    background: url(/ec/img/usr/pg/campaign/control_alpha_item/btn-arrow_hover.png) no-repeat;
    background-size: cover;
  }
}
@media screen and (max-width: 768px) {
.page .btn02{
  font-size: 1.6rem;
}
.page .btn02 .bigText{
  font-size: 2rem;
}
}
@keyframes down {
  0% {
    transform: translate(0);
  }

  20% {
    transform: translateY(5px);
  }

  40% {
    transform: translate(0);
  }
}
/*-------------------------------------------------------------------
	Kv
--------------------------------------------------------------------*/
#Kv,
#kv .kv_img{
  width: fit-content;
  margin: 0 auto;
}
/*-------------------------------------------------------------------
	AnchorLinkList
--------------------------------------------------------------------*/
.AnchorLinkList{
  padding: 100px 0;
}
.AnchorLinkList .anchorList{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px 2.5%;
}
.AnchorLinkList .anchorList li{
  width: calc(95% / 3);
}
.AnchorLinkList .anchorList.item04{
  gap: 30px 1.666%;
  text-align: center;
}
.AnchorLinkList .anchorList.item04 li{
  width: calc(95% / 4);
}
/*-------------------------------------------------------------------
	standardSection
--------------------------------------------------------------------*/
.standardSection{
  padding-bottom: 100px;
}
.standardSection:last-of-type{
  padding-bottom: 0;
}

.standardSection .SectionTitle{
  display: flex;
  flex-flow: column-reverse;
  gap: 20px;
}
.standardSection .SectionTitle figcaption{
  font-size: 2.4rem;
  font-weight:400;
  line-height: 1;
  text-align: center;
  color: #fff;
}
.standardSection .SectionTitle .ttl03{
  width: fit-content;
  max-width: 100%;
  height: 68px;
  margin: 0 auto;
}
.standardSection .SectionTitle .ttl03 img{
  max-height: 100%;
}

.standardSection .ttl04,
.standardSection .ttl04 span{
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 60px;
  color: var(--colorText);
}
.standardSection .ttlCaption{
  line-height: 2;
}
.standardSection .gradationBorder .imgThirdColumn{
  padding: 60px 80px;
  display: flex;
  justify-content: center;
  gap: 50px 5%;
  flex-wrap: wrap;
  background: #fff;
}
.standardSection .gradationBorder .imgThirdColumnItem{
  width: calc(90% / 3);
}
.standardSection .gradationBorder .imgThirdColumnItem .imgThirdColumnImg{
  position: relative;
  display: flex;
  justify-content: center;
}
.standardSection .gradationBorder .imgThirdColumnItem .imgThirdColumnImg::after{
  content: "";
  width: 60px;
  aspect-ratio: 1 / 1;
  position: absolute;
  bottom: 0;
  border-radius: 50%;
  overflow: hidden;
  transform: translateY(50%);
}
.standardSection .gradationBorder .imgThirdColumnItem:nth-of-type(1) .imgThirdColumnImg::after{
  background: url(/ec/img/usr/pg/campaign/control_alpha_item/features_no01.png) center no-repeat;
  background-size: cover;
}
.standardSection .gradationBorder .imgThirdColumnItem:nth-of-type(2) .imgThirdColumnImg::after{
  background: url(/ec/img/usr/pg/campaign/control_alpha_item/features_no02.png) center no-repeat;
  background-size: cover;
}
.standardSection .gradationBorder .imgThirdColumnItem:nth-of-type(3) .imgThirdColumnImg::after{
  background: url(/ec/img/usr/pg/campaign/control_alpha_item/features_no03.png) center no-repeat;
  background-size: cover;
}
.standardSection .gradationBorder .imgThirdColumnItem .imgThirdColumnImg img{
  width: 100%;
}
.standardSection .gradationBorder .imgThirdColumnItem .imgThirdColumnText{
  text-align: center;
  margin-top: 55px;
}
.standardSection .gradationBorder .imgThirdColumnItem .imgThirdColumnText .noWrap,
.standardSection .gradationBorder .imgThirdColumnItem .imgThirdColumnText .noWrapSP,
.standardSection .gradationBorder .imgThirdColumnItem .imgThirdColumnText .noWrapPC{
  font-size: 2rem;
  margin: 0 auto;
}
.standardSection .pointContainer{
  border: #313131 2px solid;
  background: #fff;
}
.standardSection .pointContainer dt{
  padding: 18px 48px;
  border-bottom: #313131 1px solid;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 1;
}
.standardSection .pointContainer dd{
  padding: 37px 48px;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 3;
  position: relative;
}
.standardSection .pointContainer dd span{
  display: block;
  width: 62%;
  line-height: 2;
}
.standardSection .pointContainer dd::after{
  content: "";
  display: block;
  width: calc(calc(100% - 96px) - 62%);
  max-width: 261px ;
  aspect-ratio: 261 / 176;
  background: url(/ec/img/usr/pg/campaign/control_alpha_item/features_img06.png) no-repeat;
  background-size: cover;
  position: absolute;
  bottom: 20px;
  right: 48px;
}
.standardSection .technologyContainer{
  padding: 145px 0 0;
}
.standardSection .technologyContainer .ttl04{
  margin-bottom: 55px;
}
.standardSection .BsList .BsListItem::before{
  content: "";
  display: block;
  width: 140px;
  aspect-ratio: 1 / 1;
  background: url(/ec/img/usr/pg/campaign/control_alpha_item/worries_no01.png) no-repeat;
  background-size: cover;
  margin: 60px auto 55px;
}
.standardSection .BsList .BsListItem:nth-of-type(1):before{
  background: url(/ec/img/usr/pg/campaign/control_alpha_item/worries_no01.png) no-repeat;
  background-size: cover;
}
.standardSection .BsList .BsListItem:nth-of-type(2):before{
  background: url(/ec/img/usr/pg/campaign/control_alpha_item/worries_no02.png) no-repeat;
  background-size: cover;
  margin: 120px auto 35px;
}

.standardSection .searchImgList{
  display: flex;
  flex-wrap: wrap;
  gap: 60px 0;
  margin-top: 80px;
}
.standardSection .searchImgListItem{
  width: 100%;
  position: relative;
  border: var(--SearchColor) 3px solid;
  overflow: hidden;
}
.standardSection .searchImgListItem .searchImgListImg{
  width: 100%;
  position: relative;
  line-height: 0;
}
.standardSection .searchImgListItem .searchImgListImg::before{
  content: "";
  display: block;
  max-width: 274px;
  width: 29%;
  aspect-ratio: 274 / 275;
  position: absolute;
  animation: rotate360 5s linear infinite;
  z-index: 1;
}
@keyframes rotate360 {
	0% { 
    transform: translate(-50% , -50%) rotate(0deg) scale(90%);
  }
  30% {
    transform: translate(-50% , -50%) rotate(720deg)  scale(80%);
  }
  35% {
    transform: translate(-50% , -50%) rotate(720deg)  scale(60%);
  }
  100% {
    transform: translate(-50% , -50%) rotate(720deg)  scale(60%);
  }
}
@keyframes rotate360v2 {
	0% { 
    transform: translate(-50% , -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50% , -50%) rotate(360deg);
  }
}

.standardSection .searchImgListItem .searchImgListImg::before{
  background: url(/ec/img/usr/pg/campaign/control_alpha_item/worries_search_orange.png) no-repeat;
  background-size: cover;
}
.standardSection .searchImgListItem.Blue .searchImgListImg::before{
  background: url(/ec/img/usr/pg/campaign/control_alpha_item/worries_search_blue.png) no-repeat;
  background-size: cover;
}
.standardSection .searchImgListItem .searchImgListImg figcaption{
  background: var(--SearchColor);
  width: 268px;
  max-width: 28%;
  padding: 12px 0 15px 54px;
  position: absolute;
  top: 0;
  left: -22px;
  transform: skewX(-20deg);
}
.standardSection .searchImgListItem .searchImgListImg figcaption span{
  display: inline-block;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  transform: skewX(20deg);
}
.standardSection .searchImgListItem .searchImgListText{
  display: flex;
  flex-wrap: wrap;
  background:var(--SearchColor);
  border-top: var(--SearchColor) 2px solid;
  position: relative;
  gap: 2px;
}
.standardSection .searchImgListItem .searchImgListText::after{
  content: "+";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  aspect-ratio: 1 / 1;
  padding-bottom: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50% , -50%);
  background: #1b1b1b;
  font-size: 5rem;
  line-height: 0;
  color: #fff;
  border-radius: 50%;
}
.standardSection .searchImgListItem .searchImgListText dl{
  width: calc(50% - 1px);
  padding: 30px 75px;
  background: #fff;
}
.standardSection .searchImgListItem .searchImgListText dt{
  display: block;
  width: 240px;
  margin: 0 auto 20px;
  padding: 5px 0 8px;
  background: var(--SearchColor);
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  color: #fff;
}
.standardSection .searchImgListItem .searchImgListText dd{
  font-size: 2rem;
}

.standardSection .shoppingContainer{
  padding: 150px 0 120px; 
}
.standardSection .shoppingContainer.pdB0{
  padding-bottom: 0;
}
.standardSection .shoppingContainer .shoppingTitle{
  position: relative;
  width: fit-content;
  margin: 0 auto;
}
.standardSection .shoppingContainer .shoppingTitle dd{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50% , -50%);
}
.standardSection .shoppingContainer .shoppingTitle dd h4,
.standardSection .shoppingContainer .shoppingTitle dd h4 span{
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  color: #333;
}
.standardSection .shoppingContainer .item__list{
  max-width: 720px;
  display: flex;
  flex-wrap: wrap;
  gap: 60px 15%;
}
.standardSection .shoppingContainer .item__list .item__list__id{
  width: calc(85% / 2);
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  gap: 10px;
}
.standardSection .shoppingContainer .item__list .item__list__img a{
  width: fit-content;
  margin: 0 auto;
}
.standardSection .shoppingContainer .item__list .item--name{
  font-size: 20px;
  font-weight: 400;
  text-align: left;
}
.standardSection .shoppingContainer .item__list .preset_price_area {
  color: #333;
  font-size: 18px;
  text-align: left;
}
.standardSection .shoppingContainer .stock_exist,
.standardSection .shoppingContainer a.cartinbtn{
  width: 100%;
  margin-top: 20px;
  padding: 10px 20px;
}
.standardSection .shoppingContainer .markImg{
  margin-top: 110px;
}
.standardSection .itemText{
  display: flex;
  flex-flow: column-reverse;
  text-align: center;
  margin-bottom: 45px;
}
.standardSection .itemText dt{
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 20px;
}
.standardSection .itemText dt::before,
.standardSection .itemText dt::after{
  content: "";
  width: 30px;
  height: 1.5px;
  background: #333;
}
.standardSection .itemText dd h4{
  font-size: 4.2rem;
  font-weight: 600;
  line-height: 1;
}
.standardSection .shoppingWhiteContainer{
  max-width: unset;
  background: #fff;
  margin: 0;
}
.standardSection .shoppingWhiteContainer{
  padding: 70px;
}
.standardSection .shoppingWhiteContainer .item__list{
  max-width: unset;
  margin: 0;
}
.standardSection .shoppingWhiteContainer .item__list__id.singleFlexItem{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 60px;
}
.standardSection .shoppingWhiteContainer .item__list__id.singleFlexItem .item__list__img{
  max-width: 45%;
}
.standardSection .shoppingWhiteContainer .item__list__id.singleFlexItem .item__list__text{
  max-width: 50%;
}
.standardSection .shoppingWhiteContainer .item__list__id.singleFlexItem .item__list__img{
  max-width: 45%;
}

.standardSection .shoppingWhiteContainer .singleFlexItem .bigTitle{
  margin-bottom: 20px;
  font-size: 2.8rem;
  font-weight: 600;
  text-align: left;
}
.standardSection .shoppingWhiteContainer .singleFlexItem .functionContainer{
  margin-bottom: 70px;
}
.standardSection .shoppingWhiteContainer .singleFlexItem .functionContainer dt{
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  text-align: left;
  margin-bottom: 10px;
}
.standardSection .shoppingWhiteContainer .singleFlexItem .functionContainer dd{
  display: flex;
  align-items: start;
  flex-wrap: wrap;
  gap: 15px;
}

.standardSection .shoppingWhiteContainer .singleFlexItem .item--name{
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 10px;
}
.standardSection .shoppingWhiteContainer .singleFlexItem .preset_price_area{
  font-size: 1.8rem;
  color: #333;
}
.standardSection .shoppingWhiteContainer .singleFlexItem .stock_exist{
  width: 80%;
  margin: 25px 0 0;
  padding: 15px 20px;
  display: block;
  font-size: 1.8rem;
}
.standardSection .shoppingWhiteContainer .singleFlexItem a.cartinbtn{
  width: 80%;
  margin: 20px 0 0;
  padding: 15px 0;
  display: block;
  background: #313131;
  font-size: 1.8rem;
}
.standardSection .shoppingWhiteContainer .customerVoice{
  padding: 80px 0 0;
}
.standardSection .shoppingWhiteContainer .customerVoice .ttl05{
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  margin-bottom: 30px;
}
.standardSection .shoppingWhiteContainer .customerVoiceList{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.standardSection .shoppingWhiteContainer .customerVoiceList .IconImg{
  width: 62px;
  aspect-ratio:31 / 32;
  margin: 0 auto 35px;
  background: url(/ec/img/usr/pg/campaign/control_alpha_item/customerVoice_icon01.png) no-repeat;
  background-size: cover;
}
.standardSection .shoppingWhiteContainer .customerVoiceList p{
  line-height: 2;
}

.standardSection .shoppingWhiteContainer .customerVoiceList .customerVoiceItem{
  width: calc(95% / 3);
  padding: 20px 30px;
  background: #fff;
  border: 1.5px solid #868686;
}
.standardSection .shoppingWhiteContainer .customerVoiceList .customerVoiceText .YellowLine{
  font-size: 2.2rem;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 8px;
  text-underline-offset: -6px;
  text-decoration-color: #fff799;
}
.standardSection .shoppingWhiteContainer .fourFlex{
  display: flex;
  justify-content: center;
  gap: 5%;
  padding: 70px 0 0;
}
.standardSection .shoppingWhiteContainer .fourFlex.gap10{
  gap: 10%;
}
.standardSection .shoppingWhiteContainer .fourFlex .item__list__id{
  width: calc(85% / 4);
}
.standardSection .shoppingWhiteContainer .fourFlex  .item--name{
  font-weight: 400;
}

.standardSection .saleBanner{
  background: #e4f2ff;
  padding: 60px 0;
  margin-bottom: 150px;
}
@media screen and (max-width: 768px){
  .standardSection .saleBanner{
    margin-bottom: 80px;
  }
}
.standardSection .saleBanner dt{
  font-size: 2.8rem;
  margin-bottom: 45px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}
.standardSection .saleBanner dd a,
.standardSection .saleBanner dd .banner{
  width: fit-content;
  margin: 0 auto;
}

/* ------ Features ------ */
#Features.standardSection{
  padding-bottom: 150px;
}
#Features.standardSection .SectionTitle{
  margin-bottom: 40px;
}
#Features.standardSection .graphImgContainer{
  padding-top: 150px;
}
#Features.standardSection .graphImgContainer .imgCenter{
  padding-top: 40px;
}
#Features.standardSection .graphImgContainer .supportFlexContainer{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 60px;
  margin: 110px 0 0;
}

#Features.standardSection .graphImgContainer .supportFlex{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px 5%;
}
#Features.standardSection .graphImgContainer .supportFlex:nth-of-type(2n){
  flex-flow: row-reverse;
}

#Features.standardSection .graphImgContainer .supportFlex .textContainer{
  width:50%;
}
#Features.standardSection .graphImgContainer .supportFlex .textContainer dt{
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 55px;
}
#Features.standardSection .graphImgContainer .supportFlex .imgContainer{
  width: calc(95% - 52%);
  display: flex;
  justify-content: center;
  align-items: start;
}
#Features.standardSection .technologyFlex{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px 5%;
  padding: 70px 0 0;
}
#Features.standardSection .technologyFlexItem{
  width: calc(95% / 2);
  display: flex;
  align-items: center;
  flex-flow: column;
  padding: 0 34px;
}
#Features.standardSection .technologyFlexItem .ttl05{
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1;
  margin: 30px 0;
}
/* ------ Worries ------ */
#Worries.standardSection{
  padding-bottom: 120px;
}
#Worries.standardSection .ttl04,
#Worries.standardSection .ttl04 span{
  font-size: 4.2rem;
}
#Worries.standardSection .searchImgListItem.Orange .searchImgListImg::before{
  top: 26%;
  left: 43%;
}
#Worries.standardSection .searchImgListItem.Blue .searchImgListImg::before{
  top: 64%;
  left: 50%;
}
#Worries.standardSection .searchImgListItem.Orange.item02 .searchImgListImg::before{
  top: 68%;
  left: 39%;
}
#Worries.standardSection .searchImgListItem.Blue.item02 .searchImgListImg::before{
  top: 72%;
  left: 65%;
}

/* ------ Layer ------ */
#Layer.standardSection .SectionTitle{
  margin-bottom: 150px;
}
#Layer.standardSection .SectionTitle .ttl03 {
  height: 152px;
}
#Layer.standardSection .anchorList {
  margin: 76px 0 155px;   
}
#Layer.standardSection .gradationBorder{
  margin-bottom: 150px;
}
#Layer.standardSection .btn02{
  max-width: 500px;
  margin: 80px auto 0;
}
#Layer.standardSection .ajax_area .preset_price_area{
  color: #333;
  margin-top: 5px;
}
#Layer.standardSection .ajax_area .stock_exist,
#Layer.standardSection .ajax_area a.cartinbtn{
  width: 100%;
}
#Layer.standardSection .item__list__img a{
  width: fit-content;
  margin: 0 auto;
}
#Layer.standardSection #Magic{
  margin: 150px auto 0;
}


@media screen and (max-width: 1024px) {
  .standardSection .gradationBorder .imgThirdColumn{
    padding: 40px 5%;
  }  
  .standardSection .gradationBorder .imgThirdColumnItem{
    width: calc(95% / 2);
  }
  .standardSection .gradationBorder .imgThirdColumnItem:last-of-type{
    width: 100%;
  }
  .standardSection .gradationBorder .imgThirdColumnItem .imgThirdColumnImg img{
    width: unset;
  }
  .standardSection .gradationBorder .imgThirdColumnItem .imgThirdColumnImg::after{
    width: 50px;
  }
  .standardSection .gradationBorder .imgThirdColumnItem .imgThirdColumnText .noWrap,
  .standardSection .gradationBorder .imgThirdColumnItem .imgThirdColumnText .noWrapPC,
  .standardSection .gradationBorder .imgThirdColumnItem .imgThirdColumnText .noWrapSP{
    font-size: 2rem;
  }
  .standardSection .gradationBorder .imgThirdColumnItem:nth-of-type(3) .imgThirdColumnImg::after{
    bottom: -15px;
  }
  .standardSection .searchImgListItem .searchImgListImg figcaption{
    padding: 12px 0 15px 35px;
  }
  .standardSection .searchImgListItem .searchImgListImg figcaption span{
    font-size: 3.1vw;
  }
  .standardSection .searchImgListItem .searchImgListText dl{
    padding: 30px 30px;
  }
  .standardSection .shoppingWhiteContainer {
    padding: 70px 5%;
  }
  .standardSection .shoppingWhiteContainer .item__list__id.singleFlexItem{
    gap: 60px 5%;
  }  
}
@media screen and (max-width: 768px) {
  .page .item__list__text {
    margin-top: unset;
  }
  .page .item__list__img{
    width: unset;
    height: unset;
  }

  .spScroll{
    width: 100%;
    overflow: auto;
  }
  .page .btn01{
    padding: 25px 10px;
  }
  .page .btn01{
    font-size: 1.6rem;
  }
  .AnchorLinkList{
    padding: 75px 0;
  }
  .AnchorLinkList .anchorList li{
    width: calc(95% / 2);
  }
  .AnchorLinkList .anchorList.item04 li{
    width: calc(95% / 2);
  }
  .standardSection .saleBanner dt{
    line-height: 1.4;
  }
  .standardSection .ttl04, .standardSection .ttl04 span{
    font-size: 2.6rem;
  }
  .standardSection .pointContainer dt {
    padding: 10px 5% 15px;
    font-size: 2.8rem;
  }
  .standardSection .pointContainer dd{
    padding: 20px 5% 30px;
  }
  .standardSection .pointContainer dd span{
    width: 100%;
    margin-bottom: 10px;
  }
  .standardSection .pointContainer dd::after {
    width: 100%;
    margin: 0 auto;
    position: unset;
  }
  .standardSection .technologyContainer{
    padding: 70px 0 0;
  }
  .standardSection .technologyContainer .ttl04 {
    margin-bottom: 40px;
  }
  .standardSection .BsList .BsListItem::before{
    width: 100px;
    margin: 40px auto 30px;
  }
  .standardSection .BsList .BsListItem:nth-of-type(2):before{
    margin: 70px auto 30px;
  }
  #Features.standardSection .technologyFlex {
    padding: 50px 0 0;
  }
  .standardSection .searchImgList{
    margin-top: 30px;
  }
  .standardSection .searchImgListItem .searchImgListImg figcaption{
    max-width: 130px;
    padding: 5px 0 8px 25px;
  }
  .standardSection .searchImgListItem .searchImgListImg figcaption span{
    font-size: 1.8rem;
  }
  .standardSection .searchImgListItem .searchImgListText dl{
    width: 100%;
    padding: 34px 5%;
  }
  .standardSection .searchImgListItem .searchImgListText dt{
    font-size: 2rem;
  }
  .standardSection .searchImgListItem .searchImgListText dd{
    font-size: 1.6rem;
  }
  .standardSection .searchImgListItem .searchImgListText::after{
    width: 40px;
  }
  .standardSection .shoppingContainer{
    padding: 80px 0 120px;
  }
  .standardSection .shoppingContainer .shoppingTitle dd h4, 
  .standardSection .shoppingContainer .shoppingTitle dd h4 span{
    font-size: 2.4rem;
  }
  .standardSection .shoppingWhiteContainer .customerVoiceList .slick-list{
    position: relative;
    z-index: 2;
    pointer-events: none;
  }
  .standardSection .shoppingWhiteContainer .customerVoiceList .customerVoiceItem{
    width: 450px;
    max-width: 80vw;
    min-height: 145px;
    margin: 0 5vw;
    padding: 20px 5vw;
    display: flex;
    align-items: center;
    gap: 5%;
    pointer-events: all;
  }
  .standardSection .shoppingWhiteContainer .customerVoiceList .slick-arrow{
    width: 22px;
    height: unset;
    aspect-ratio: 22 / 41;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    cursor: pointer;
    background: url(/ec/img/usr/pg/campaign/control_alpha_item/slider-arrow.png) no-repeat;
    background-size: cover;
    z-index: 1;
  }
  .standardSection .shoppingWhiteContainer .customerVoiceList .slick-prev{
    left: calc(calc(50% - 5vw) - calc(450px / 2));
  }
  .standardSection .shoppingWhiteContainer .customerVoiceList .slick-next{
    left: calc(calc(50% + 5vw) + calc(450px / 2));
    transform: translate(-50% , -50%) scale(-1, 1);
  }
  .standardSection .shoppingWhiteContainer .customerVoiceList .customerVoiceText .YellowLine{
    font-size: 2rem;
  }
  .standardSection .shoppingContainer .item__list{
    margin-top: 30px;
    gap: 30px 5%;
  }
  .standardSection .shoppingWhiteContainer .customerVoiceList .IconImg{
    min-width: 50px;
    margin: 0;
  }
  .standardSection .shoppingContainer .stock_exist,
  .standardSection .shoppingContainer a.cartinbtn {
    line-height: 8vw;
  }
  .standardSection .shoppingContainer .stock_exist{
    font-size: 3.5vw;
    margin: 2vw auto 0;
    padding: 0.5vw 1vw;
  }
  .standardSection .shoppingContainer a.cartinbtn {
    margin: 2.6vw auto 0;
    padding: 0.5rem;
  }


  .standardSection .shoppingContainer .item__list .item__list__id{
    width: calc(95% / 2);
  }
  .standardSection .shoppingContainer .item__list .item--name,
  .standardSection .shoppingContainer .item__list .preset_price_area{
    font-size: 1.6rem;
  }
  .standardSection .shoppingContainer .item__list .item__list__img a{
    margin: 0 auto ;
  }
  .standardSection .shoppingContainer .markImg{
    margin-top: 80px;
  }
  .standardSection .shoppingWhiteContainer{
    padding: 50px 5%;
  }
  .standardSection .itemText dd h4{
    font-size: 3.5rem;
  }
  .standardSection .itemText dt {
    font-size: 2rem;
  }
  .standardSection .shoppingWhiteContainer .fourFlex,
  .standardSection .shoppingWhiteContainer .fourFlex.gap10{
    flex-wrap: wrap;
    gap: 30px 5%;
  }.standardSection .shoppingWhiteContainer .fourFlex .item__list__id{
    width: calc(95% / 2);
  }
  .standardSection .shoppingWhiteContainer .fourFlex .item__list__img img{
    position: unset;
    transform:unset;
  }
  .standardSection .shoppingWhiteContainer .item__list__id.singleFlexItem{
    flex-flow: column-reverse;
  }
  .standardSection .shoppingWhiteContainer .item__list__id.singleFlexItem .item__list__img,
  .standardSection .shoppingWhiteContainer .item__list__id.singleFlexItem .item__list__text{
    max-width: 100%;
    margin: 0 auto;
  }
  .standardSection .shoppingWhiteContainer .singleFlexItem .item__list__img,
  .standardSection .shoppingWhiteContainer .singleFlexItem .item--name,
  .standardSection .shoppingWhiteContainer .singleFlexItem .preset_price_area,
  #Layer.standardSection .shoppingWhiteContainer .singleFlexItem .stock_exist,
  #Layer.standardSection .shoppingWhiteContainer .singleFlexItem a.cartinbtn {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
  .standardSection .shoppingWhiteContainer .item__list__id.singleFlexItem .item__list__img.sp img{
    max-width: 100%;
    position: unset;
    transform: unset;
    margin-bottom: 15px;
  }
  .standardSection .shoppingWhiteContainer .singleFlexItem .stock_exist {
    font-size: 3.5vw;
    padding: 0.5vw 1vw;
  }
  .standardSection .shoppingWhiteContainer .singleFlexItem a.cartinbtn{
    font-size: 2.9vw;
    padding: 0.5rem;
  }
  .standardSection .shoppingWhiteContainer .singleFlexItem .item--name{
    font-size: 1.8rem;
  }
  .standardSection .shoppingWhiteContainer .singleFlexItem .bigTitle{
    font-size: 2rem;
    text-align: center;
  }
  .standardSection .shoppingWhiteContainer .singleFlexItem .functionContainer{
    margin-bottom: 40px;
  }
  .standardSection .shoppingWhiteContainer .singleFlexItem .functionContainer dt{
    text-align: center;
  }
  .standardSection .shoppingWhiteContainer .singleFlexItem .functionContainer dd{
    justify-content: center;
  }
  .standardSection .shoppingWhiteContainer .singleFlexItem .functionContainer dd img{
    width: unset;
  }
  .standardSection .shoppingWhiteContainer .item__list__id.singleFlexItem{
    width: 100%;
    margin: 0 auto;
  }
  #Features.standardSection{
    padding: 45px 0 100px;
  }
  .standardSection .SectionTitle{
    gap: 25px;
  }
  #Features.standardSection .SectionTitle {
    margin-bottom: 65px;
  }
  #Features.standardSection .graphImgContainer{
    padding: 70px 0 0;
  }
  #Features.standardSection .graphImgContainer .ttl04{
    margin-bottom: 40px;
  }
  #Features.standardSection .graphImgContainer .imgCenter {
    padding-top: 30px;
  }
  #Features.standardSection .graphImgContainer .supportFlexContainer {
    margin: 60px 0 0;
  }
  #Features.standardSection .graphImgContainer .supportFlex:nth-of-type(2n){
    flex-flow: unset;
    flex-wrap: wrap;
  }
  #Features.standardSection .graphImgContainer .supportFlex .textContainer,
  #Features.standardSection .graphImgContainer .supportFlex .imgContainer{
    width: 100%;
    padding: 0;
  }
  #Features.standardSection .graphImgContainer .supportFlex .textContainer dt{
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 40px;
  }
  #Features.standardSection .technologyFlexItem{
    width: 100%;
  }
  #Features.standardSection .technologyFlexItem .ttl05{
    font-size: 2.4rem;
    margin: 20px 0;
  }
  #Worries.standardSection .SectionTitle .ttl03{
    height: 147px;
    padding: 0 5%;
  }
  #Worries.standardSection .ttl04,
  #Worries.standardSection .ttl04 span {
    font-size: 3rem;
    font-weight: 600;
  }
  .standardSection .searchImgListItem .searchImgListImg::before{
    width: 38%;
  }
  #Worries.standardSection .searchImgListItem.Orange .searchImgListImg::before {
    top: 26%;
    left: 50%;
  } 
  #Worries.standardSection .searchImgListItem.Blue .searchImgListImg::before {
    top: 64%;
    left: 49%;
  }
  #Worries.standardSection .searchImgListItem.Blue.item02 .searchImgListImg::before {
    top: 75%;
    left: 71%;
  }
  #Worries.standardSection .searchImgListItem.Orange.item02 .searchImgListImg::before {
    top: 62%;
    left: 43%;
}

  #Worries.standardSection .ttl04{
    margin-bottom: 30px;
  }
  #Worries.standardSection .ttlCaption {
    text-align: left;
  }
  #Worries.standardSection .shoppingContainer .item__list__img img{
    position: unset;
    transform: unset;
  }
  #Layer.standardSection .SectionTitle .ttl03{
    max-width: 90%;
    height: 160px;
  }
  #Layer.standardSection .SectionTitle{
    margin-bottom: 130px;
  }
  #Layer.standardSection .anchorList.item04 .btn01 {
    padding: 15px 10px 25px;
    font-size: 1.6rem;
  }
  #Layer.standardSection .anchorList {
    margin: 40px 0 70px;
  }
  #Change.page__inner,
  #Stress.page__inner,
  #Magic.page__inner,
  #Setup.page__inner{
    max-width: 100%;
  }
  #Layer.standardSection .itemText{
    max-width: 90%;
    margin: 0 auto 45px;
  }
  #Layer.standardSection .gradationBorder {
    padding: 3px 0;
    margin-bottom: 80px;
  }
  #Layer.standardSection .btn02{
    margin: 60px auto 0;
  }
  .standardSection .shoppingWhiteContainer .fourFlex .item--name,
  #Layer.standardSection .ajax_area .preset_price_area{
    font-size: 1.6rem;
    font-weight: 400;
    text-align: left;
  }
  #Layer.standardSection #Magic{
    margin: 70px auto 0;
  }
  
}
@media screen and (max-width: 586px) {
  .standardSection .shoppingWhiteContainer .customerVoiceList .slick-arrow{
    width: 3.5vw;
  }
  .standardSection .shoppingWhiteContainer .customerVoiceList .slick-prev {
    left: calc(calc(50% - 5vw) - calc(80vw / 2));
  }
  .standardSection .shoppingWhiteContainer .customerVoiceList .slick-next {
    left: calc(calc(50% + 5vw) + calc(80vw / 2));
  }
  .standardSection .shoppingWhiteContainer .customerVoiceList .slick-list{
    z-index: unset;
  }
}
@media screen and (max-width: 510px) {
  .AnchorLinkList .anchorList li{
    width: 100%;
  }  
}

@media screen and (max-width: 425px) {
  .AnchorLinkList .anchorList.item04 li{
    width: 100%;
  }
  .standardSection .gradationBorder .imgThirdColumnItem{
    width: 100%;
  }
}



/* 
    【追記修正】
    商品画像の高さがバラバラだったため追加しました。
    すべての商品差替えになる際は、下記消して問題ないです。
 */
.standardSection .shoppingContainer .item__list .item__list__id{
    justify-content: flex-start;
}
.page #Worries .spScroll .item__list .item__list__img{
    /* height: 350px; */
}
@media screen and (max-width: 768px) {
    .page .spScroll .item__list .item__list__id{
        justify-content: flex-start!important;
    }
    .page .spScroll .item__list .item__list__img {
        position: relative;
        padding-top: 165%;
        width: 100%;
        height: 0;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        width: auto !important;
    }
    .page .spScroll .item__list .item__list__img img{
        max-height: 100%;
        height: 99%;
        width: auto !important;
        max-width: initial;
    }
    .page .spScroll .item__list .item__list__img a {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        margin: auto;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .page #Change .spScroll .item__list .item__list__img {
        padding-top: 139%;
    }
    .page #Stress .spScroll .item__list .item__list__img {
        padding-top: 108%;
    }
    .page #Magic .spScroll .item__list .item__list__img {
        padding-top: 136%;
    }
    .page #Setup .spScroll .item__list .item__list__img {
        padding-top: 103%;
    }
    .page #Setup .spScroll.cart_slacks .item__list .item__list__img {
        padding-top: 123%;
    }
    .page #Worries .spScroll .item__list .item__list__img{
        height: 0;
    }
    .page #Worries .spScroll.cart_aw .item__list .item__list__img img{
        width: 100%;
        max-width: 96%;
        max-height: initial;
        height: auto;
    }
    .page #Worries .spScroll.cart_aw .item__list .id75683 .item__list__img img{
        width: auto;
        max-width: initial;
        max-height: 100%;
        height: 100%;
    }
}