@charset "UTF-8";
/* CSS Document */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
/* A Modern CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

/*
html:focus-within {
  scroll-behavior: smooth;
}
*/

.l-header {
	display: none !important;
  }  

body {
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

main img,
main picture {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
*::before,
*::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
/*
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0 auto;
  max-width: 1230px;
  width: 100%;
  font-family: Noto Sans JP, sans-serif;
}

* {
  font-family: Noto Sans JP, sans-serif;
  letter-spacing: 0;
}

a {
  text-decoration: none;
  transition: 0.3s opacity;

  &:hover {
    opacity: 0.7;
  }
}
*/
@media screen and (min-width: 961px) {
  .pc-none {
    display: none !important;
  }
}
@media screen and (max-width: 960px) {
  .sp-none {
    display: none !important;
  }
}
img {
  height: auto;
}

.content {
  max-width: 1230px;
  margin-left: auto;
  margin-right: auto;
  overflow: clip;
}

@media screen and (max-width: 960px) {
  .ecm-main {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

.alt {
  display: none;
}

/*===============================================
 side
===============================================*/
/*
.side-navi {
  position: fixed;
  right: 0;
  top: 440px;
  width: 135px;
  z-index: 150;
  transform: translateY(-50%);
  background-color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s;

  @media screen and (max-width: 960px) {
    display: none;
  }
  &.is-visible {
    opacity: 1;
    pointer-events: auto;
  }
  > a {
    display: block;

    &:not(:first-child) {
      margin-top: 2px;
    }
    > img {
      display: block;
    }
  }
}
*/
/*===============================================
 navi
===============================================*/
.sec-navi {
  position: -webkit-sticky;
  position: sticky;
  top: calc(171px + var(--mcp-header-height) + var(--ecm-header-height));
  left: 0;
  right: 0;
  z-index: 100;
}
@media screen and (max-width: 960px) {
  .sec-navi {
    top: calc(60px + var(--mcp-header-height) + var(--ecm-header-height));
  }
}
.sec-navi-in {
  display: flex;
  justify-content: space-between;
  max-width: 920px;
  margin: 0 auto;
  background-color: #fff;
}
.sec-navi-in > a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 49.1304347826%;
  height: 56px;
}
@media screen and (max-width: 960px) {
  .sec-navi-in > a {
    width: 49.3333333333%;
    height: 16.1333333333vw;
    text-align: center;
  }
}
.sec-navi-in > a > span {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 960px) {
  .sec-navi-in > a > span {
    font-size: 4vw;
    line-height: 1;
  }
}
.sec-navi-in > a > span > em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 98px;
  height: 26px;
  margin-right: 10px;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .sec-navi-in > a > span > em {
    width: 31.7333333333vw;
    height: 4.6666666667vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.0666666667vw;
    font-size: 4vw;
  }
}
.sec-navi-in > a:nth-child(1) {
  background-color: #f85715;
  color: #ffffff;
}
@media screen and (max-width: 960px) {
  .sec-navi-in > a:nth-child(1) {
    padding-left: 1.0666666667vw;
  }
}
.sec-navi-in > a:nth-child(1) > span > em {
  background-color: #ffffff;
  color: #f85715;
}
.sec-navi-in > a:nth-child(2) {
  background-color: #ff850a;
  color: #ffffff;
}
@media screen and (max-width: 960px) {
  .sec-navi-in > a:nth-child(2) {
    padding-right: 1.0666666667vw;
  }
}
.sec-navi-in > a:nth-child(2) > span > em {
  background-color: #ffffff;
  color: #ff850a;
}
.sec-navi-in > a > img {
  position: absolute;
  right: 22px;
  top: calc(50% - 5px);
  width: 18px;
}
@media screen and (max-width: 960px) {
  .sec-navi-in > a > img {
    right: 1.8666666667vw;
    top: calc( 50% - 0.8vw );
    width: 4vw;
  }
}

/*===============================================
 section
===============================================*/
.fv > picture > img {
  display: block;
  width: 100%;
}

.sec-common-ttl {
  background-color: #000;
  padding: 25px 0;
  text-align: center;
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .sec-common-ttl {
    padding: 4.2666666667vw 0;
    font-size: 6vw;
    line-height: 1.2444444444;
  }
}
.sec-common-in {
  max-width: 1000px;
  padding: 0 40px;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .sec-common-in {
    padding: 0 2.9333333333vw;
  }
}
.sec-common-group {
  padding-top: 72px;
  padding-bottom: 90px;
}
@media screen and (max-width: 960px) {
  .sec-common-group {
    padding-top: 8.5333333333vw;
    padding-bottom: 16.8vw;
  }
}
.sec-common-group-ttl {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .sec-common-group-ttl {
    font-size: 5.3333333333vw;
    line-height: 1.5;
  }
}
.sec-common-items {
  display: flex;
  flex-wrap: wrap;
}
.sec-common-items:not(:first-child) {
  margin-top: 60px;
}
@media screen and (max-width: 960px) {
  .sec-common-items:not(:first-child) {
    margin-top: 9.6vw;
  }
}
.sec-common-item {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media screen and (min-width: 961px) {
  .sec-common-item {
    width: 46.9565217391%;
  }
  .sec-common-item:not(:nth-child(2n+1)) {
    margin-left: 6.0869565217%;
  }
  .sec-common-item:nth-child(n+3) {
    margin-top: 54px;
  }
}
@media screen and (max-width: 960px) {
  .sec-common-item:not(:first-child) {
    margin-top: 16.5333333333vw;
  }
}
.sec-common-item-ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 2.6666666667em;
  text-align: center;
  font-size: 23px;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  line-height: 1.3333333333;
}
@media screen and (max-width: 960px) {
  .sec-common-item-ttl {
    display: block;
    height: auto;
    font-size: 4.9333333333vw;
    line-height: 1.4324324324;
  }
}
.sec-common-item-pic {
  position: relative;
  display: block;
  width: 100%;
  margin-top: 16px;
}
@media screen and (max-width: 960px) {
  .sec-common-item-pic {
    margin-top: 3.2vw;
  }
}
.sec-common-item-pic > picture {
  display: block;
}
.sec-common-item-pic > picture > img {
  display: block;
  width: 100%;
}
.sec-common-item-pic > figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 11.4285714286%;
  text-align: center;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4117647059;
}
@media screen and (max-width: 960px) {
  .sec-common-item-pic > figcaption {
    bottom: 9.0666666667vw;
    font-size: 3.4666666667vw;
    line-height: 1.5384615385;
  }
}
.sec-common-item-pic > figcaption.is-oneline {
  bottom: 16.8067226891%;
}
@media screen and (max-width: 960px) {
  .sec-common-item-pic > figcaption.is-oneline {
    bottom: 14.6666666667vw;
  }
}
.sec-common-item-btn {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}
@media screen and (max-width: 960px) {
  .sec-common-item-btn {
    margin-top: 3.2vw;
  }
}
.sec-common-item-btn > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 245px;
  height: 55px;
  border: 1px solid #2d2926;
  border-radius: 28px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .sec-common-item-btn > a {
    width: 53.8666666667vw;
    height: 12vw;
    border-radius: 6vw;
    font-size: 3.4666666667vw;
  }
}
.sec-common-item-notes {
  margin-top: 28px;
  font-size: 10px;
  line-height: 1.6;
}
@media screen and (max-width: 960px) {
  .sec-common-item-notes {
    margin-top: 4vw;
    font-size: 2.2666666667vw;
    line-height: 1.5882352941;
  }
}

.sec-coupon {
  padding-top: 30px;
}
@media screen and (max-width: 960px) {
  .sec-coupon {
    padding-top: 9.6vw;
    padding-bottom: 0;
  }
}
.sec-coupon-ttl {
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .sec-coupon-ttl {
    font-size: 4vw;
  }
}
.sec-coupon-ttl > em {
  font-size: 110%;
  font-style: normal;
}
.sec-coupon-ttl > small {
  font-size: 80%;
  font-weight: 600;
}
.sec-coupon-ttl > span {
  font-size: 90%;
}
.sec-coupon-in {
  max-width: 1000px;
  padding: 0 40px;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .sec-coupon-in {
    padding: 0 2.9333333333vw;
  }
}
.sec-coupon-container {
  display: flex;
  justify-content: space-between;
  max-width: 658px;
  margin: 10px auto 0;
}
@media screen and (max-width: 960px) {
  .sec-coupon-container {
    max-width: 88.5333333333vw;
    margin-top: 3.7333333333vw;
  }
}
.sec-coupon-container > a {
  display: block;
  width: 48.3282674772%;
}
.sec-coupon-container > a > img {
  display: block;
  width: 100%;
}
.sec-coupon-monthly {
  margin-top: 30px;
  margin-left: -22px;
  margin-right: -22px;
  padding: 28px 75px 24px 66px;
  background-color: #f5f5f5;
}
@media screen and (max-width: 960px) {
  .sec-coupon-monthly {
    margin-top: 4.8vw;
    margin-left: 0;
    margin-right: 0;
    padding: 4.2666666667vw 5.0666666667vw 4.5333333333vw;
  }
}
.sec-coupon-monthly-ttl {
  padding-bottom: 10px;
  border-bottom: 2px solid #b9141e;
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .sec-coupon-monthly-ttl {
    font-size: 5.6vw;
  }
}
.sec-coupon-monthly-body {
  margin-top: 20px;
}
@media screen and (max-width: 960px) {
  .sec-coupon-monthly-body {
    margin-top: 3.4666666667vw;
  }
}
.sec-coupon-monthly-txt {
  text-align: center;
  font-size: 32px;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .sec-coupon-monthly-txt {
    font-size: 4.2666666667vw;
  }
}
.sec-coupon-monthly-container {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
}
@media screen and (max-width: 960px) {
  .sec-coupon-monthly-container {
    margin-top: 2.9333333333vw;
  }
}
.sec-coupon-monthly-item:nth-child(1) {
  width: 46.4155528554%;
}
@media screen and (max-width: 960px) {
  .sec-coupon-monthly-item:nth-child(1) {
    width: 46.8152866242%;
  }
}
.sec-coupon-monthly-item:nth-child(2) {
  width: 48.602673147%;
}
@media screen and (max-width: 960px) {
  .sec-coupon-monthly-item:nth-child(2) {
    width: 46.8152866242%;
  }
}
.sec-coupon-monthly-item > picture {
  display: block;
}
.sec-coupon-monthly-item > picture > img {
  display: block;
  width: 100%;
}
.sec-coupon-monthly-notes {
  margin-top: 14px;
  font-size: 10px;
  font-weight: 400;
}
@media screen and (max-width: 960px) {
  .sec-coupon-monthly-notes {
    margin-top: 2.9333333333vw;
    font-size: 2.1333333333vw;
  }
}


.sec-campaign-ttl {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .sec-campaign-ttl {
    font-size: 4.8vw;
  }
}
.sec-campaign-in {
  padding-top: 36px;
  padding-bottom: 50px;
}
@media screen and (max-width: 960px) {
  .sec-campaign-in {
    padding-top: 8.6666666667vw;
    padding-bottom: 8vw;
  }
}
@media screen and (min-width: 961px) {
  .sec-campaign-bnr {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.sec-campaign-bnr > a {
  display: block;
}
@media screen and (min-width: 961px) {
  .sec-campaign-bnr > a {
    width: 32%;
  }
  .sec-campaign-bnr > a:nth-child(n+4) {
    margin-top: 20px;
  }
}
@media screen and (max-width: 960px) {
  .sec-campaign-bnr > a:not(:first-child) {
    margin-top: 5.6vw;
  }
}
.sec-campaign-bnr > a > img {
  display: block;
  width: 100%;
}


/*acgss_lp*/

h2.acgss_lp{
	border-top: 2px solid #ef2475;
	border-bottom: 2px solid #ef2475;
	font-size: 29px;
	text-align: center;
	line-height: 60px;
	color: #ef2475;
	font-weight: bold;
}
.acgss_cta1{
	background-color: #fdeded;
	padding: 40px 0;
}
.acgss_cta1 .inner{
	width:960px;
	margin: 0 auto;
	background: url(../img/cta1.png) no-repeat;
	height: 453px;
	position: relative;
}
.acgss_cta1 .cta1_1{
	position: absolute;
	font-size: 24px;
	color: #fe84a4;
	top:52px;
	left:38px;
}
.acgss_cta1 .cta1_2{
	position: absolute;
	font-size: 34px;
	color: #FFF;
	top:38px;
	left:180px;
}
.acgss_cta1 .cta1_2 span{
	font-size: 46px;
}
.acgss_cta1 .cta1_3{
	position: absolute;
	font-size: 34px;
	color: #505050;
	top:140px;
	left:55px;
	font-weight: 500;
}	
.acgss_cta1 .price{
	position: absolute;
	font-size: 67px;
	color: #fe84a4;
	top:255px;
	left:358px;
	font-weight: 500;
}
.acgss_cta1 .price span{
	font-size: 25px;
}
.acgss_cta1 .price .tax{
	font-size: 10px;
	position: absolute;
	top:28px;
	right:-3px;
}
.acgss_coupon{
	width: 958px;
	margin: 24px auto 100px auto;
	position: relative;
	height: 206px;
	
}
.acgss_coupon p{
	position: absolute;
	top:75px;
	left:15px;
	color: #505050;
	font-size: 20px;
}
.acgss_coupon h3{
	position: absolute;
	top:110px;
	left:15px;
	color: #505050;
	font-size: 30px;
	font-weight: 500;
}
.acgss_voice{
	padding-bottom: 115px;
}
.acgss_voice h3{
	color: #505050;
	font-size: 40px;
	font-weight: 500;
	text-align: center;
	margin-bottom: 35px;
}
.acgss_cause .copy{
	position: relative;
}
.acgss_cause .copy h3{
	color: #fe84a4;
	font-size: 46px;
	font-weight: 500;
	position: absolute;
	line-height: 78px;
	left:10vw;
	top:13vh;
}
.acgss_cta2{
	background-color: #fdeded;
	padding: 40px 0;
}
.acgss_cta2 .inner{
	width:960px;
	margin: 0 auto;
	height: 410px;
	position: relative;
	background: url(../img/cta2.png) no-repeat;
}
.acgss_cta2 .cta2_1{
	position: absolute;
	font-size: 34px;
	color: #FFF;
	top:34px;
	left:0px;
	background-color: #fe84a4;
	text-align: center;
	line-height: 60px;
	width: 100%;
}
.acgss_cta2 .cta2_2{
	position: absolute;
	font-size: 20px;
	color: #fe84a4;
	top:135px;
	left:238px;
	background-color: #FFF;
	border: 1px solid #fe84a4;
	padding: 0 15px;
	line-height: 37px;
}
.acgss_cta2 .cta2_2 span{
	font-size: 26px;
}
.acgss_cta2 .cta2_3{
	position: absolute;
	font-size: 32px;
	color: #505050;
	top:130px;
	left:500px;
	font-weight: 500;
}
.acgss_cta2 .price{
	position: absolute;
	font-size: 67px;
	color: #505050;
	top:195px;
	left:695px;
	font-weight: 500;
}
.acgss_cta2 .price span{
	font-size: 25px;
}
.acgss_cta2 .price .tax{
	font-size: 10px;
	position: absolute;
	top:28px;
	right:-3px;
}
.acgss_worries{
	position: relative;
	z-index: 1000;
}
.acgss_kv2{
	position: relative;
	margin-top: -100px;
}
.acgss_kv2 h3{
	position: absolute;
	font-size: 39px;
	color: #505050;
	top:160px;
	left:200px;
	font-weight: 500;
}
.acgss_item{
	background-color: #fdeded;
	padding: 100px 0;
}
.acgss_item .inner{
	width:960px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
.acgss_item .inner .item1,
.acgss_item .inner .item2{
	position: relative;
}
.acgss_item .inner .item2{
	display: flex;
	flex-direction: column;
    align-items: center;
}
.acgss_item .inner .item1 h3{
	position: absolute;
	font-size: 21px;
	color: #4b4b4b;
	top:123px;
	left:177px;
	line-height: 28px;
}
.acgss_item .inner .item2 h3{
	position: absolute;
	font-size: 21px;
	color: #4b4b4b;
	top:160px;
	text-align: center;
	width: 100%;
	line-height: 28px;
}
.acgss_item .inner .item1 .specs{
	position: absolute;
	font-size: 15px;
	color: #4b4b4b;
	top:190px;
	left:177px;
}
.acgss_item .inner .item2 .specs{
	position: absolute;
	font-size: 15px;
	color: #4b4b4b;
	top:225px;
	text-align: center;
	width: 100%;
}
.acgss_item .inner .item1 .type{
    position: absolute;
    font-size: 18px;
    color: #FFF;
    background-color: #fe84a4;
    padding: 4px;
    width: 114px;
    text-align: center;
    top: 220px;
    left: 177px;
}
.acgss_item .inner .item2 .type{
	position: absolute;
    font-size: 18px;
    color: #FFF;
    background-color: #fe84a4;
    padding: 2px;
    width: 114px;
    text-align: center;
    top: 255px;
    margin: 0 auto;
}
.acgss_item .inner .item1 .price{
	position: absolute;
	font-size: 42px;
	color: #4b4b4b;
	top:250px;
	left:177px;
	font-weight: 500;
}
.acgss_item .inner .item2 .price{
	position: absolute;
	font-size: 42px;
	color: #4b4b4b;
	top:280px;
	font-weight: 500;
}
.acgss_item .inner .item1 .price span,
.acgss_item .inner .item2 .price span{
	font-size: 21px;
}
.acgss_item .inner .item1 .price .tax,
.acgss_item .inner .item2 .price .tax{
	font-size: 9px;
	position: absolute;
	top:8px;
	right:-3px;
}
.acgss_item .inner .item1 .btn{
	margin: -140px auto 0 10px;
	width: 405px;
	z-index: 1000;
	position: relative;
}
.acgss_item .inner .item2 .btn{
	margin: -105px auto 0 10px;
	width: 405px;
	z-index: 1000;
	position: relative;
}
.acgss_item .inner .item1 .btn a,
.acgss_item .inner .item2 .btn a{
	background: url(../img/btn.png) no-repeat;
	height: 80px;
	width: 405px;
	background-size: 405px 80px;
	font-size: 25px;
	color: #FFF;
	text-align: center;
	line-height: 75px;
	display: block;
	text-decoration: none;
}
.acgss_item .inner .item1 .btn a:hover,
.acgss_item .inner .item2 .btn a:hover{
	opacity: 0.8;
}

.acgss_features{
	padding: 100px 0;
	display: flex;
	flex-direction: column;
    align-items: center;
}
.acgss_features h3{
	font-size:40px;
	color: #4b4b4b;
	padding-bottom: 60px;
}
.acgss_features h3 span{
	color: #fe84a4;
}
.acgss_features h3 span span{
	font-size:50px;
}
.acgss_features dl{
	padding-top: 45px;
	width: 570px;
	display: flex;
}
.acgss_features dl dt{
	width: 78px;
}
.acgss_features dl dd{
	padding-left: 25px;
	margin: auto 0;
}
.acgss_features dl dd h4{
	font-size: 20px;
	color: #fe84a4;
	padding-bottom: 10px;
	line-height: 32px;
}
.acgss_features dl dd p{
	font-size: 14px;
	color: #4b4b4b;
}
.acgss_use{
	padding-bottom: 100px;
	width: 960px;
	margin: 0 auto;
}
.acgss_use h3{
	color: #505050;
    font-size: 40px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 65px;
}
.acgss_use ul{
	display: flex;
	justify-content: space-between;
	width: 100%;
	padding: 0;
}
.acgss_use ul li{
	list-style: none;
	width: 448px;
	position: relative;
}
.acgss_use ul li p{
	position: absolute;
	font-size: 20px;
	color:#505050;
	top:50px;
	left:180px;
	line-height: 165%;
}
.acgss_message{
	display: flex;
	flex-direction: column;
    align-items: center;
	padding-bottom: 220px;
}
.acgss_message .btn{
	margin-top: -50px;
}
.acgss_message .btn a{
	font-size: 22px;
	color:#505050;
	text-align: center;
	text-decoration: none;
	width: 500px;
	height: 70px;
	line-height: 62px;
	border: 2px solid #505050;
	display: block;
	border-radius: 100px;
}
.acgss_message .btn a:hover{
	opacity: 0.8;
}


.acgss_cta1 .btn{
	position: absolute;
	top:345px;
	left:60px;
}
.acgss_cta2 .btn{
	position: absolute;
	top:280px;
	left:380px;
}
.acgss_voice .btn{
	width: 460px;
	margin: 0 auto;
}
.acgss_cta1 .btn a,
.acgss_voice .btn a,
.acgss_cta2 .btn a{
	background: url(../img/btn.png) no-repeat;
	height: 84px;
	width: 460px;
	background-size: 460px 84px;
	font-size: 30px;
	color: #FFF;
	text-align: center;
	line-height: 75px;
	display: block;
	text-decoration: none;
}
.acgss_cta1 .btn a:hover,
.acgss_voice .btn a:hover,
.acgss_cta2 .btn a:hover{
	opacity: 0.8;
}
.facgss_fixed{
	position: fixed;
	width: 250px;
	right: 0;
	bottom: 100px;
	z-index: 1000;
}

@media screen and (max-width: 960px) {
	
h2.acgss_lp{
	border-top: 2px solid #ef2475;
	border-bottom: 2px solid #ef2475;
	font-size: 18px;
	line-height: 38px;
}
.acgss_cta1{
	background-color: #fdeded;
	padding: 28px 0;
}
.acgss_cta1 .inner{
	width:90%;
	margin: 0 auto;
	background: url(../img/cta1_sp.png) no-repeat;
	height: 105vw;
	position: relative;
	background-size: 100% auto; 
}
.acgss_cta1 .cta1_1{
	position: absolute;
	font-size: 4vw;
	color: #fe84a4;
	top: 9vw;
	left:10vw;
}
.acgss_cta1 .cta1_2{
	position: absolute;
	font-size: 5vw;
	color: #FFF;
	top:7vw;
	left:30vw;
}
.acgss_cta1 .cta1_2 span{
	font-size: 140%;
}
.acgss_cta1 .cta1_3{
	position: absolute;
	font-size: 6vw;
	color: #505050;
	top:26vw;
	left:4.5vw;
	font-weight: 500;
	line-height: 130%;
}
.acgss_cta1 .price{
	position: absolute;
	font-size: 12vw;
	color: #fe84a4;
	top:68vw;
	left:57vw;
	font-weight: 500;
}
.acgss_cta1 .price span{
	font-size: 50%;
}
.acgss_cta1 .price .tax{
	font-size: 2.5vw;
	position: absolute;
	top:3vw;
	right:-0.5vw;
}
.acgss_coupon{
	width: 90%;
	margin: 10px auto 50px auto;
	position: relative;
	height: 54vw;
	
}
.acgss_coupon p{
	position: absolute;
	top:12vw;
	left:0;
	color: #505050;
	font-size: 3.5vw;
	text-align: center;
	width: 100%;
}
.acgss_coupon h3{
	position: absolute;
	top:18vw;
	left:0;
	color: #505050;
	font-size: 4.5vw;
	font-weight: 500;
	text-align: center;
	width: 100%;
}
.acgss_voice{
	padding-bottom: 50px;
}
.acgss_voice h3{
	color: #505050;
	font-size: 20px;
	font-weight: 500;
	text-align: center;
	margin-bottom: 25px;
}
.acgss_cause .copy{
	position: relative;
}
.acgss_cause .copy h3{
	color: #fe84a4;
	font-size: 25px;
	font-weight: 500;
	position: relative;
	left: auto;
	top: auto;
	text-align: center;
	padding-bottom: 15px;
	line-height: 40px;
}
.acgss_cta2{
	background-color: #fdeded;
	padding: 30px 0;
}
.acgss_cta2 .inner{
	width:90%;
	margin: 0 auto;
	height: 90vw;
	position: relative;
	background: url(../img/cta2_sp.png) no-repeat;
	background-size: 100% auto;
}
.acgss_cta2 .cta2_1{
	position: absolute;
	font-size: 6vw;
	color: #FFF;
	top:4vw;
	left:0px;
	background-color: #fe84a4;
	text-align: center;
	line-height: 10vw;
	width: 100%;
}
.acgss_cta2 .cta2_2{
	position: absolute;
	font-size: 3.5vw;
	color: #fe84a4;
	top:20vw;
	left:25vw;
	background-color: #FFF;
	border: 1px solid #fe84a4;
	padding: 0 10px;
	line-height: 5vw;
}
.acgss_cta2 .cta2_2 span{
	font-size: 140%;
}
.acgss_cta2 .cta2_3{
	position: absolute;
	font-size: 5vw;
	color: #505050;
	top:28vw;
	left:25vw;
	font-weight: 500;
}
.acgss_cta2 .price{
	position: absolute;
	font-size: 11vw;
	color: #505050;
	top:36vw;
	left:61vw;
	font-weight: 500;
}
.acgss_cta2 .price span{
	font-size: 40%;
}
.acgss_cta2 .price .tax{
	font-size: 2vw;
	position: absolute;
	top:3.5vw;
	right:-1.5vw;
}
.acgss_worries{
	position: relative;
	z-index: 1000;
}
.acgss_kv2{
	position: relative;
	margin-top: -15vw;
}
.acgss_kv2 h3{
	position: absolute;
	font-size: 39px;
	color: #505050;
	top:160px;
	left:200px;
	font-weight: 500;
}
.acgss_item{
	background-color: #fdeded;
	padding: 25px 0;
}
.acgss_item .inner{
	width:90%;
	margin: 0 auto;
	display: flex;
	justify-content: center;
    flex-direction: column;
}
.acgss_item .inner .item1,
.acgss_item .inner .item2{
	position: relative;
	margin-bottom: 20px;
}
.acgss_item .inner .item2{
	display: flex;
	flex-direction: column;
    align-items: center;
}
.acgss_item .inner .item1 h3{
	position: absolute;
	font-size: 4.1vw;
	color: #4b4b4b;
	top:22vw;
	left:38vw;
	line-height: 5.5vw;
}
.acgss_item .inner .item2 h3{
	position: absolute;
	font-size: 4.1vw;
	color: #4b4b4b;
	top:5vw;
	left:38vw;
	width: auto;
	text-align: left;
	line-height: 5.5vw;
}
.acgss_item .inner .item1 .specs{
	position: absolute;
	font-size: 3.2vw;
	color: #4b4b4b;
	top:35vw;
	left:38vw;
}
.acgss_item .inner .item2 .specs{
	position: absolute;
	font-size: 3.2vw;
	color: #4b4b4b;
	top:17vw;
	left:38vw;
	width: auto;
	text-align: left;
}
.acgss_item .inner .item1 .type{
	position: absolute;
	font-size: 3vw;
	color: #FFF;
	background-color: #fe84a4;
	padding: 4px;
	width: 100px;
	text-align: center;
	top:41vw;
	left:38vw;
}
.acgss_item .inner .item2 .type{
	position: absolute;
	font-size: 3vw;
	color: #FFF;
	background-color: #fe84a4;
	padding: 4px;
	width: 100px;
	text-align: center;
	top:24vw;
	left:38vw;
}
.acgss_item .inner .item1 .price{
	position: absolute;
	font-size: 9vw;
	color: #4b4b4b;
	top:46.5vw;
	left:38vw;
	font-weight: 500;
}
.acgss_item .inner .item2 .price{
	position: absolute;
	font-size: 9vw;
	color: #4b4b4b;
	top:29.5vw;
	left:38vw;
	font-weight: 500;
}
.acgss_item .inner .item1 .price span,
.acgss_item .inner .item2 .price span{
	font-size: 50%;
}
.acgss_item .inner .item1 .price .tax,
.acgss_item .inner .item2 .price .tax{
	font-size: 2vw;
	position: absolute;
	top: 2vw;
    right: -0.8vw;
}
.acgss_item .inner .item1 .btn{
	margin: -26vw auto 0 4vw;
	width: 90%;
	z-index: 1000;
	position: relative;
}
.acgss_item .inner .item2 .btn{
	margin: -21vw auto 0 auto;
	width: 90%;
	z-index: 1000;
	position: relative;
}
.acgss_item .inner .item1 .btn a,
.acgss_item .inner .item2 .btn a{
	background: url(../img/btn.png) no-repeat;
	height: 17vw;
	width: 100%;
	background-size: 100% auto;
	font-size: 5vw;
	color: #FFF;
	text-align: center;
	line-height: 13vw;
	display: block;
	text-decoration: none;
}
.acgss_item .inner .item1 .btn a:hover,
.acgss_item .inner .item2 .btn a:hover{
	opacity: 0.8;
}

.acgss_features{
	padding: 50px 0;
	display: flex;
	flex-direction: column;
    align-items: center;
	width: 90%;
	margin: 0 auto;
}
.acgss_features h3{
	font-size:25px;
	color: #4b4b4b;
	padding-bottom: 25px;
	text-align: center;
	line-height: 140%;
}
.acgss_features h3 span{
	color: #fe84a4;
}
.acgss_features h3 span span{
	font-size:30px;
}
.acgss_features dl{
	padding-top: 20px;
	width: 100%;
	display: flex;
}
.acgss_features dl dt{
	padding-left: 5px;
	width: 16%;
}
.acgss_features dl dd{
	padding-left: 5px;
	margin: auto;
}
.acgss_features dl dd h4{
	font-size: 13px;
	color: #fe84a4;
	padding-bottom: 5px;
	line-height: 23px;
}
.acgss_features dl dd p{
	font-size: 8px;
	color: #4b4b4b;
}
.acgss_use{
	padding-bottom: 30px;
	width: 86%;
	margin: 0 auto;
}
.acgss_use h3{
	color: #505050;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 30px;
}
.acgss_use ul{
display: flex;
        justify-content: center;
        width: 100%;
        padding: 0;
        flex-direction: column;
        align-items: center;
}
.acgss_use ul li{
	list-style: none;
	width: 100%;
	position: relative;
	margin-bottom: 20px;
}
.acgss_use ul li p{
	position: absolute;
	font-size: 3.6vw;
	color:#505050;
	top: 8vw;
        left: 34vw;
	line-height: 165%;
}
.acgss_message{
	display: flex;
	flex-direction: column;
    align-items: center;
	padding-bottom: 40vw;
}
.acgss_message .btn{
	width: 80%;
	margin: 30px auto 0 auto;
}
.acgss_message .btn a{
	font-size: 4.5vw;
	color:#505050;
	text-align: center;
	text-decoration: none;
	height: 15vw;
	width: 100%;
	line-height: 14vw;
	border: 1px solid #505050;
	display: block;
	border-radius: 100px;
}
.acgss_message .btn a:hover{
	opacity: 0.8;
}


.acgss_cta1 .btn{
	position: absolute;
	top:auto;
	left:2%;
	width: 96%;
	margin: 0 auto;
	bottom: 10px;
}
.acgss_cta2 .btn{
	position: absolute;
	top:auto;
	left:2%;
	width: 96%;
	margin: 0 auto;
	bottom: 15px;
}
.acgss_voice .btn{
	width: 86%;
	margin: 30px auto 0 auto;
}
.acgss_cta1 .btn a,
.acgss_voice .btn a,
.acgss_cta2 .btn a{
	background: url(../img/btn.png) no-repeat;
	height: 17vw;
	width: 100%;
	background-size: 100% auto;
	font-size: 5vw;
	color: #FFF;
	text-align: center;
	line-height: 15vw;
	display: block;
	text-decoration: none;
}
.acgss_cta1 .btn a:hover,
.acgss_voice .btn a:hover,
.acgss_cta2 .btn a:hover{
	opacity: 0.8;
}
.facgss_fixed{
	position: fixed;
	width: 100%;
	right: 0;
	bottom: 0;
	z-index: 1000;
}

}

  /* ------------------------------------------------------------------------------ */
  /*スライダー*/
  
  
  .slider img, .slider video {
	display: block;
	width: 100%;
	height: auto;
	border: none;
  }
  
  .slick-track {
	display: flex;
	gap:20px;
  }
  .slick-dots li button:before{
	font-family: 'slick';
	  font-size: 6px;
	  line-height: 20px;
	  position: absolute;
	  top: 0;
	  left: 0;
	  width: 20px;
	  height: 20px;
	  content: '•';
	  text-align: center;
	  opacity: .25;
	  color: black;
	  -webkit-font-smoothing: antialiased;
  }
  .slick-dots li button:before,
  .slick-dots li.slick-active button:before{
	background: none;
  }
  @media screen and (min-width: 961px){
	.slick-track {
	  gap:22px;
	}
  }
  .slick-slide {
	height: auto !important;
  }
  .slider-2 .slick-slide {
	/*width: 600px;*/
	height: 400px;
	margin: 0 40px;
	position: relative;
	overflow: hidden;
  }
  .slider-2 .slick-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
  }
  
  
  
  .test__container {
	padding-top: 30px;
	padding-bottom: 30px;
  }
  
  .slick {
	  width: 100%;
	  /*max-width: 1230px;*/
	  /* margin: 5% auto; */
	  margin: min(2.44vw,30px) auto;
  }
  .slick-dotted.slick-slider{
	margin-bottom: 60px;
  }
  .slick-dots{
	bottom: -60px;
  }
  .slick-dots li{
	margin: 0;
  }
  @media screen and (max-width: 960px){
	.slick {
		  margin: 5% auto;
	  }
  }
  @media screen and (min-width: 961px){
	.slick-dotted.slick-slider{
	  margin-bottom: 100px;
	}
	.slick-dots {
	  bottom: -80px;
	}
	.slick-dots li{
	  width: 30px;
	}
	.slick-dots li button:before{
	  font-size: 13px;
	}
  }
  
  .slick__item {
	  margin-right: 5px;
	  margin-left: 5px;
  }
  
  .slick__item img {
	  height: auto;
	  width: 100%;
  }
  .slider_title{
	  width: 70%;
	  margin: 15% auto 10%;
	  position: relative;
  }
  .slider_title_txt{
	color: #4e4d4d;
	font-weight: 500;
	font-size: calc(40/750*100vw);
	text-align: center;
	top: 16%;
  }
  
  .slider_text{
	width: 90%;
	margin: auto;
	color: #4e4d4d;
	/* font-weight: 500; */
	font-size: calc(16/750*100vw);
	line-height: 1.2;
  }
  .slider_btn{
	width: 80vw;
	margin: 5% auto 10%;
	position: relative;
  }
  .slider_btn_txt{
	position: absolute;
	font-size: calc(39/750*100vw);
	color: #fff;
	text-align: center;
	font-weight: 400;
	top: 6%;
	left: 17%;
  }
  
  @media screen and (max-width: 960px){
	.slider_btn_txt{
	  letter-spacing: 0.06em;
	  line-height: 1.35;
	}
  }
  
  @media screen and (min-width: 961px){
	.slider_title{
	  width: 30%;
	  margin: 100px auto 48px;
	}
	.slider_title_txt{
	  font-size: 32px;
	  top: -17%;
	  left: 1%;
	}
	.slider_btn{
	  width: 40%;
	  margin: min(2.44vw,30px) auto min(5.85vw,72px);
	}
	.slider_btn_txt{
	  font-size: min(3.17vw,39px);
	  line-height: 1.3;
	  top: 5%;
	  left: 16%;
	}
	.slider_text {
	  width: 60%;
	  font-size: min(0.98vw,12px);
	  line-height: 1.5;
	}
  } 
  /*〆スライダー*/
  
  