@charset "UTF-8";

/* CSS Document */
html {
    scroll-behavior: smooth;
}
body{
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", Arial, sans-serif !important;
	margin: 0;
	background-color: #eee;
}
.all{
	background-color: #fff;
	padding: 10px 20px;
}
.wrapper{
	margin: 0 auto;
	width: 620px;

}
@media screen and (max-width:700px) {
	.all{
		padding: 10px;
	}
	.wrapper{
		width: 100%;
	}
}
p{
	font-size: 17px;
	color: #000000;
	line-height: 1.5;
	margin: 30px 0;
}
a{
	word-wrap:break-word;
}
b{
	font-weight: bold;
}
.mark {
	background: rgba(0, 0, 0, 0) linear-gradient(transparent 60%, #ffff00 0%) repeat scroll 0 0;
	height: 80%;
	vertical-align: bottom;
}
.mark2{
	background: -webkit-linear-gradient(left, #ffffcc 50%, transparent 50%) 100% 0% / 200% 70% no-repeat;
	background-position: bottom 0 right 100% !important;
}
.mark3{
	background-color: rgb(245, 245, 135);
}
.mark4{
	background-color: rgb(255, 255, 0);
}
.pc{
    display: block ;
}
.sp{
    display: none ;
}
.fwB{
    font-weight: bold;
}
.taC{
	text-align: center!important;
}
.taL{
	text-align: left!important;
}
.taR{
	text-align: right!important;
}


.fsS{
	font-size: 15px;
    vertical-align: bottom;
}
.fsM{
	font-size: 21px;
}
.fsL{
	font-size: 23px;
}
.fcR{
	color: #E60000;
}
.fcB{
	color: rgb(17, 85, 204);
}
.fcP{
	color: #DF0FB5;
}
.fcM{
	color: #FF2E77;

}
.fcK{
	color: rgb(0, 194, 201);
}
.mt0{
	margin-top: -10px !important;
}
.mtb20{
	margin: 20px 0;
}
.mt20{
	margin-top: 20px !important;
}
.mt40{
	margin-top: 40px;
}
.mb20{
	margin-bottom: 20px;
}
.mb60{
	margin-bottom: 60px;
}
.mb0{
	margin-bottom: 0!important;
}
.small {
    /*文字サイズ*/
    font-size: 12px;
    color: #999;
    text-align: right;
    /*行間調整*/
    line-height: 1.2;
    /*下側の余白*/
    margin-bottom: 1em;
  }
img {
	width: 100%;
	margin: 0 auto;
	vertical-align: bottom;
}
video{
    width: 100%;
    height: auto;
	vertical-align: bottom;
}
footer {
    font-size: 13px;
    padding: 3%;
    background-color: #cccccc;
    text-align: center;
    margin-top: 20px;
}
footer a{
	color: #fff;
	text-decoration: none;
}



/* こまごま追加 */
h1{
	margin: 0;
}
h2 {
	padding: 2.5%;
	border-left: 6px solid #f29400;
	background-color: #fff8ee;
	margin-top: 40px;
	font-size: 25px;
  }
  h3 {
	/*文字サイズ*/
	font-size: 25px;
	border-bottom: 4px dotted #00C2C9;
	line-height: 1.5;
	font-weight: bold;
	padding: 5px 10px;
	margin: 5px 0;
  }

  .orange{
	color: #f29400;
  }
  
  
   .fsS {
	font-size: 13px;
  }
  
   .sp {
	display: none;
  }
  
  @media screen and (max-width:699px) {
	 .sp {
	  display: block;
	}
  }

  .frame {
	padding: 10px;
	position: relative;
  }
  
   .frame-dotted-middle {
	border: 2.5px dotted;
  }
  
   .radius {
	border-radius: 10px;
  }
  
   .bgBeige {
	background-color: #FFF8ED;
  }

  .downArrow {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
  }
  
   .downArrow>span {
	/* 矢印の大きさの設定 */
	width: 100px;
	height: 65px;
	padding: 0 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
  }
  
   .downArrow>span::before {
	content: "";
	display: block;
	margin: 0 auto;
	width: 50%;
	height: 40%;
	/* 矢印の色の設定 */
	background: #ffc8c8;
  }
  
   .downArrow>span::after {
	content: "";
	display: block;
	width: 100%;
	height: 60%;
	/* 矢印の色の設定 */
	background: -webkit-gradient(linear, left bottom, right top, color-stop(49%, transparent), color-stop(50%, #d096bb)) top left/50% 100% no-repeat, -webkit-gradient(linear, right bottom, left top, color-stop(49%, transparent), color-stop(50%, #d096bb)) top right/50% 100% no-repeat;
	background: linear-gradient(to top right, transparent 49%, #ffc8c8 50%) top left/50% 100% no-repeat, linear-gradient(to top left, transparent 49%, #ffc8c8 50%) top right/50% 100% no-repeat;
  }
  
  
  
  /*動きの速さを変更する場合は、複数あるanimation-durationの1.5s(=1.5秒)の時間を変更
  動きの回数を変更する場合は、複数あるanimation-iteration-countのinfinite（=無限,               3=3回など）を変更*/
  .movebtn {
	-webkit-animation-name: btnAnime02;
	-webkit-animation-duration: 1.5s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-timing-function: ease;
	-moz-animation-name: btnAnime02;
	-moz-animation-duration: 1.5s;
	-moz-animation-iteration-count: infinite;
	-moz-animation-timing-function: ease;
	align-items: flex-start;
	justify-content: center;
  }
  
  @-webkit-keyframes btnAnime02 {
  
	/*初期位置*/
	0% {
	  /*1番目の値はX方向, 2番目の値はY方向*/
	  -webkit-transform: translate(0, 0);
	}
  
	/*animation-durationで設定した値の半分の時間（50%）の時の位置*/
	50% {
	  -webkit-transform: translate(0, -8px);
	}
  
	/*animation-durationで設定した値になった（100%）時の位置*/
	100% {
	  -webkit-transform: translate(0, 0);
	}
  }
  
  /*上記の「@-webkit-keyframes btnAnime02」と同様の値にしてください*/
  @-moz-keyframes btnAnime02 {
	0% {
	  -moz-transform: translate(0, 0);
	}
  
	50% {
	  -moz-transform: translate(0, -8px);
	}
  
	100% {
	  -moz-transform: translate(0, 0);
	}
  }

  .step_arr {
	position: relative;
	padding-top: 22vw;
	margin-top: -4vw;
  }
  
   .step_arr span {
	position: absolute;
	top: 0;
	left: 50%;
	width: 10vw;
	height: 10vw;
	margin-left: -5vw;
	border-left: 1px solid #333;
	border-bottom: 1px solid #333;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-animation: sdb 2s infinite;
	animation: sdb 2s infinite;
	opacity: 0;
	box-sizing: border-box;
  }
  
   .step_arr span:nth-of-type(1) {
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
  }
  
   .step_arr span:nth-of-type(2) {
	top: 4vw;
	-webkit-animation-delay: .15s;
	animation-delay: .15s;
  }
  
   .step_arr span:nth-of-type(3) {
	top: 8vw;
	-webkit-animation-delay: .3s;
	animation-delay: .3s;
  }
  
  @-webkit-keyframes sdb {
	0% {
	  opacity: 0;
	}
  
	50% {
	  opacity: 1;
	}
  
	100% {
	  opacity: 0;
	}
  }
  
  @keyframes sdb {
	0% {
	  opacity: 0;
	}
  
	50% {
	  opacity: 1;
	}
  
	100% {
	  opacity: 0;
	}
  }
  
  @media (min-width: 620px) {
	 .step_arr {
	  position: relative;
	  padding-top: 136px;
	  margin-top: -25px;
	}
  
	 .step_arr span {
	  width: 62px;
	  height: 62px;
	  margin-left: -31px;
	}
  
	 .step_arr span:nth-of-type(2) {
	  top: 24.8px;
	}
  
	 .step_arr span:nth-of-type(3) {
	  top: 49.6px;
	}
  }

  .continue {
	display: flex;
	justify-content: center;
  }
  
   .continue span {
	display: block;
	/*点の幅サイズ*/
	width: 10px;
	/*点の高さサイズ*/
	height: 10px;
	/*点の色*/
	background-color: #ccc;
	/*角を丸くする*/
	border-radius: 100vh;
	/*点周りの余白。左の値が上下、右の値が左右*/
	margin: 10px 0;
  }
  
   .continue .dot-1,
   .continue .dot-2,
   .continue .dot-3 {
	/*アニメーションの指定。左から、アニメーション名、アニメーション時間の長さ（1sは1秒）、infiniteは無限に再生を繰り返す*/
	-webkit-animation: continue 1s infinite;
	-moz-animation: continue 1s infinite;
  }
  
   .continue .dot-1 {
	/*アニメーションし始める時間*/
	-webkit-animation-delay: 0.1s;
	-moz-animation-delay: 0.1s;
  }
  
   .continue .dot-2 {
	-webkit-animation-delay: 0.2s;
	-moz-animation-delay: 0.2s;
  }
  
   .continue .dot-3 {
	-webkit-animation-delay: 0.3s;
	-moz-animation-delay: 0.3s;
  }
  
  @-webkit-keyframes continue {
  
	/*アニメーション時間軸の指定。0%は開始地点、50%は真ん中、100%は最後の地点*/
	0% {
	  /*不透明度の指定。1は不透明度100%*/
	  opacity: 1;
	}
  
	50% {
	  opacity: 0.5;
	}
  
	100% {
	  opacity: 1;
	}
  }
  
  @keyframes continue {
	0% {
	  opacity: 0;
	}
  
	50% {
	  opacity: 0.5;
	}
  
	100% {
	  opacity: 1;
	}
  }

  .evaluation {
	font-size: 16px;
	max-width: 750px;
	margin-left: auto;
	margin-right: auto;
  }
  
   .evaluation ul {
	margin: 0;
	padding: 0;
	list-style: none;
  }
  
   .evaluation-title {
	text-align: center;
	font-size: 1.5em;
	font-weight: 600;
	padding-top: 1em;
	position: relative;
	width: fit-content;
	margin: auto;
  }
  
   .evaluation-title::before {
	content: attr(data-title) "";
	position: absolute;
	font-size: 2.25em;
	opacity: 0.15;
	line-height: 1;
	font-weight: 700;
	left: -1.5em;
	bottom: 0.25em;
  }
  
   .evaluation-content {
	margin: 0 2em;
	padding: 1em;
	border: solid 3px;
	border-radius: 10px;
  }
  
   .evaluation-content li {
	line-height: 1.5;
	position: relative;
	padding-left: 2em;
  }
  
   .evaluation-content li:not(:first-child) {
	margin-top: 0.75em;
  }
  
   .evaluation-content li:not(:last-child) {
	border-bottom: dashed 2px;
	padding-bottom: 0.75em;
  }
  
   .evaluation-content li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.1em;
	background: url(https://file.mysquadbeyond.com/uploads/article_photo/photo/3036937/9622ec1b-45b1-43bf-8f24-75fd93eab588.png) no-repeat 0 0/contain;
	aspect-ratio: 1/1;
	width: 1.5em;
	display: block;
	margin: 0;
  }
  
   .evaluation.good .evaluation-title {
	color: #ff5e5e;
  }
  
   .evaluation.good .evaluation-content {
	border-color: #ff5e5e;
  }
  
   .evaluation.good .evaluation-content li:not(:last-child) {
	border-color: #ff5e5e;
  }
  
   .evaluation.more .evaluation-title {
	color: #1d6faa;
  }
  
   .evaluation.more .evaluation-content {
	border-color: #1d6faa;
  }
  
   .evaluation.more .evaluation-content li:not(:last-child) {
	border-color: #1d6faa;
  }
  
  @media (max-width: 500px) {
	 .evaluation {
	  font-size: 3.3vw;
	}
  
	 .evaluation-title::before {
	  left: -.5em;
	}
  }

  .l-review_scroll__title {
	/* 外側の余白|上|左右|下| */
	margin: 0 auto 10px;
	/* 背景色 */
	background: #ffe4e4;
	;
	/* 内側の余白|上下|左右| */
	padding: 10px 10px;
	position: relative;
	border-left: 10px solid #f36969;
  
  
  }
  
  
  
  /* タイトル飾り部分 - 帯 */
  .l-review_scroll__title:before,
   .l-review_scroll__title:after {
	position: absolute;
	content: "";
  }
  
  
  
  /* タイトル飾り部分 - 帯(四角) */
  .l-review_scroll__title:before {
	/* 上からの距離 */
	top: -13px;
	/* 左からの距離 */
	left: 0;
	/* 横幅 */
	width: 30px;
	/* 高さ */
	height: 13px;
	background: ＃ffb6c1;
  }
  
  
  /* タイトル飾り部分 - 帯(三角) */
  
  
  
  /* タイトル部分文字大 */
  .l-review_scroll__title__large {
	/* 文字色 */
	color: #000000;
	/* 文字サイズ */
	font-size: 22px;
	/* 文字寄せ|center=中央|left=左|right=右| */
	text-align: center;
	/* 外側の余白|上|左|下|右| */
	margin: 0 0 0 0;
	/* 内側の余白|上下左右| */
	padding: 0;
  }
  
  
  
  /* タイトル部分文字小 */
  .l-review_scroll__title__sub {
	/* 文字色 */
	color: #656565;
	/* 文字サイズ */
	font-size: 14px;
	/* 文字寄せ|center=中央|left=左|right=右| */
	text-align: center;
	/* 外側の余白|上下左右| */
	margin: 0;
	/* 内側の余白|上下左右| */
	padding: 0;
  }

  .cp_arrows {
	position: relative;
	/*widget自体の高さ*/
	height: 50px;
	/*widgetの上余白*/
	margin-top: 1em;
	/*widgetの下余白*/
	margin-bottom: 1em;
  }
  
  
  
  /*一個目の矢印*/
  .cp_arrows .cp_arrowfirst {
	/*アニメーション設定。
	 左からアニメーション名、動きの速さ（2s=2秒）、変化の度合い（ease-in-out=開始時と終了時は、緩やかに変化）、動きの回数（infinite=無限、3=3回など）*/
	animation: arrow-move08 2s ease-in-out infinite;
  }
  
  
  
  /*二個目の矢印*/
  .cp_arrows .cp_arrowsecond {
	/*アニメーション設定。
	 左からアニメーション名、動きの速さ（2s=2秒）、開始時間（1s=1秒後）、変化の度合い（ease-in-out=開始時と終了時は、緩やかに変化）、動きの回数（infinite=無限、3=3回など）*/
	animation: arrow-move08 2s 1s ease-in-out infinite;
  }
  
  
  
  /*共通設定*/
  .cp_arrows .cp_arrow {
	position: absolute;
	/*矢印の到着位置　（縦位置）*/
	top: 100%;
	/*矢印の到着位置　（横位置）*/
	left: 45%;
	transform: translate(-50%, -50%);
	transform-origin: 50% 50%;
	/*透明度（0=透明、1=不透明）*/
	opacity: 0;
  }
  
   .content :first-child {
	margin-top: 0;
  }
  
  @keyframes arrow-move08 {
  
	/*スタート地点（サンプルは[class:cp_arrows]height300pxの35%）*/
	0% {
	  top: 40%;
	  opacity: 0;
	}
  
	/*2sの70％（1.7秒）時に不透明になる*/
	70% {
	  opacity: 1;
	}
  
	/*2s（2秒）時に透明になる*/
	100% {
	  opacity: 0;
	}
  }
  
   .cp_arrows .cp_arrow:before {
	/*矢印左の棒の設定。1番目の値は棒の角度、2番目の値は棒のX方向の位置。*/
	transform: rotate(30deg) translateX(-39%);
	/*矢印左の棒の起点。（top left=左上）*/
	transform-origin: top left;
  }
  
   .cp_arrows .cp_arrow:after {
	/*矢印右の棒の設定。1番目の値は棒の角度、2番目の値は棒のX方向の位置。*/
	transform: rotate(-30deg) translateX(39%);
	/*矢印右の棒の起点。（top right=右上）*/
	transform-origin: top right;
  }
  
   .cp_arrows .cp_arrow:before,
   .cp_arrows .cp_arrow:after {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	/*矢印の棒の横の長さ*/
	width: 40px;
	/*矢印の棒の縦の長さ*/
	height: 3px;
	content: '';
	/*矢印の色*/
	background: #E91E63;
  }
  
   .cp_arrows *,
   .cp_arrows *:before,
   .cp_arrows *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
  }
  
   .cp_arrows *,
   .cp_arrows *:before,
   .cp_arrows *:after {
	box-sizing: border-box;
  }
  
   content div:after,
   .content p:after {
	clear: both;
  }
  
   .content div :after,
   .content p:after {
	display: block;
	content: "";
	clear: both;
  }

  

/* 全体の設定 */
.puyoBtn__area {
	/* 横幅（ボタンの大きさに影響します） */
	width: 500px;
	/* 最大幅 */
	max-width: 95%;
	/* 高さ */
	height: auto;
	/*外側の余白｜上下余白｜左右余白（auto=センタリング）｜*/
	margin: 30px auto;
  }
  
  
  
  /* ボタンリンクの設定 */
  .puyoBtn__area .btn {
	display: block;
	/* 横幅 */
	width: 100%;
	/* 高さ */
	height: auto;
  }
  
  
  
  /* ボタンの画像 */
  .puyoBtn__area .btn img {
	/* 横幅 */
	width: 100%;
	/* 高さ */
	height: auto;
	/*アニメーションの設定｜アニメーション名｜1回のサイクルに要する時間｜進め方｜実行回数｜*/
	animation: puyoBtn 1.6s ease-in infinite;
  }
  
  /* アニメーションの詳細設定 */
  @keyframes puyoBtn {
  
	/* タイミング */
	0% {
	  /* ボタンの拡大、縮小
	  ・値が1つ = X＆Y軸
	  ・値が2つ = X軸, Y軸 */
	  transform: scale(1.09);
	}
  
	10% {
	  transform: scale(1.09);
	}
  
	30% {
	  transform: scale(1.01);
	}
  
	40% {
	  transform: scale(1.01);
	}
  
	50% {
	  transform: scale(1, 1.04);
	}
  
	60% {
	  transform: scale(1.09);
	}
  
	70% {
	  transform: scale(1.02);
	}
  
	100% {
	  transform: scale(1.09);
	}
  }
  h2 {
	padding: 15px 5px 15px 20px;
	border-left: 6px solid #f68384;
	background-color: #fff1f1;
	margin-top: 40px;
	font-size: 22px;
  }
  
   h2 {
	padding: 10px 5px 10px 10px;
	font-size: 19px;
  }