@charset "UTF-8";

/* 基本のCSS内容はココに入ってます */
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: 19px;
	color: #000000;
	line-height: 1.5;
}
b{
	font-weight: bold;
}
.mark {
	background: linear-gradient(to bottom, transparent 0%, transparent 70%, #ffffaf 70%, #ffff00 100%);
	height: 80%;
	vertical-align: bottom;
}
.pc{
    display: block ;
}
.sp{
    display: none ;
}
.fwB{
    font-weight: bold;
}
.taC{
	text-align: center!important;
}
.taL{
	text-align: left!important;
}

.fsS{
	font-size: 13px;
    vertical-align: bottom;
}
.fsM{
	font-size: 21px;
}
.fsL{
	font-size: 25px;
}
.fcR{
	color: rgb(255, 0, 0);
}
.fcB{
	color: rgb(0, 0, 255);
}
.fcP{
	color: rgb(255, 0, 255);
}
.fcK{
	color: rgb(27, 203, 152);
}
.fcG{
	color:rgb(0, 138, 0);
}
.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: 5%;
    background: #cccccc;
    text-align: center;
    margin-top: 10px;
}



/* 各自で追加する場合は下記に記載 */
.kuti{
    padding: 15px 10px;
    background: white;
    border: 11px solid #ffa9b8;
}

.star{
	color: #ff9900;
}

.swaying-text {
	display: block;
	animation-name: swayingText;
	animation-duration: .25s;
	animation-iteration-count: infinite;
	will-change: transform, animation;
  }
  
  @keyframes swayingText {
	0% {
	  transform: translate(0px, 0px) rotateZ(0deg)
	}
  
	25% {
	  transform: translate(2px, 2px) rotateZ(1deg)
	}
  
	50% {
	  transform: translate(0px, 2px) rotateZ(0deg)
	}
  
	75% {
	  transform: translate(2px, 0px) rotateZ(-1deg)
	}
  
	100% {
	  transform: translate(0px, 0px) rotateZ(0deg)
	}
  }

  .question-reveal-scroll {
	width: 970px;
	max-width: 100%;
	font-size: 16px;
	background-color: #fff;
	margin: 0 auto 20px;
	padding: 0;
	line-height: 1.5;
	box-sizing: border-box;
  }
  
   .question-reveal-scroll .questionArea {
	display: flex;
	flex-direction: column;
  }
  
   .question-reveal-scroll .question__numBox {
	width: 100%;
	height: auto;
  }
  
   .question-reveal-scroll .question__numBox .numItems {
	width: 100%;
	list-style: none;
	display: flex;
	justify-content: center;
	align-items: center;
	padding-left: 0;
  }
  
   .question-reveal-scroll .question__numBox .numItems .item {
	font-size: 20px;
	color: #fff;
	background: #ccc;
	width: 60px;
	height: 60px;
	border-radius: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 2em;
	position: relative;
  }
  
   .question-reveal-scroll .question__numBox .numItems .item.current {
	background: #EAA8BF;
  }
  
   .question-reveal-scroll .question__numBox .numItems .item:after {
	content: '→';
	position: absolute;
	top: 50%;
	right: -2em;
	color: #ccc;
	font-size: 14px;
	transform: translateY(-50%);
  }
  
   .question-reveal-scroll .question__numBox .numItems .item:last-of-type {
	margin-right: 0;
  }
  
   .question-reveal-scroll .question__numBox .numItems .item:last-of-type:after {
	content: none;
  }
  
   .question-reveal-scroll .title {
	width: calc(100% - 10px);
	color: #fff;
	background-color: #EAA8BF;
	font-size: 20px;
	font-weight: 600;
	margin: 0 auto 30px;
	padding: 15px 5px;
	display: flex;
	flex-direction: column;
	align-items: center;
  }
  
   .question-reveal-scroll .title .mark {
	font-size: 34px;
	margin-right: 15px;
	color: #fff;
	line-height: 1.1;
  }
  
   .question-reveal-scroll .questionImg,
   .questionImg img {
	width: 100%;
	height: auto;
  }
  
   .question-reveal-scroll .linkbox {
	width: 100%;
	margin: 0 auto 40px;
	padding: 0 15px;
	text-align: left;
	box-sizing: border-box;
  }
  
   .question-reveal-scroll input {
	display: none;
  }
  
   .question-reveal-scroll input+label {
	cursor: pointer;
	border: none;
	display: block;
  }
  
   .question-reveal-scroll input:not(:first-of-type)+label {
	margin-top: 10px;
  }
  
   .question-reveal-scroll input+label .btn {
	font-size: 14px;
	border: 1px solid #ccc;
	border-radius: 10px;
	padding: 20px 0 20px 50px;
	font-weight: bold;
	background-color: #eee;
	line-height: 1.6;
	position: relative;
	display: block;
  }
  
   .question-reveal-scroll input:checked+label .btn {
	background-color: #3498db;
	color: #ffffff;
  }
  
   .question-reveal-scroll input+label .btn::before {
	width: 14px;
	height: 14px;
	top: 50%;
	left: 10px;
	margin-top: -8px;
	background: #f3f3f3;
	border: 1px solid #ccc;
	position: absolute;
	content: '';
	transition: all 0.2s;
  }
  
   .question-reveal-scroll input[type='radio']+label .btn::before {
	border-radius: 100%;
  }
  
   .question-reveal-scroll input+label .btn:focus {
	outline: none !important;
  }
  
   .question-reveal-scroll input[type='checkbox']+label .btn:after {
	top: 55%;
	left: 13px;
	width: 8px;
	height: 4px;
	margin-top: -8px;
	border-left: 2px solid #3498db;
	border-bottom: 2px solid #3498db;
	transform: rotate(-45deg) scale(0.5);
	position: absolute;
	transition: all 0.2s;
	content: '';
	opacity: 0;
  }
  
   .question-reveal-scroll input[type='radio']+label .btn:after {
	top: 48%;
	left: 13px;
	width: 10px;
	height: 10px;
	margin-top: -4px;
	background: #3498db;
	transform: scale(2);
	border-radius: 100%;
	opacity: 0;
	position: absolute;
	content: '';
	transition: all 0.2s;
  }
  
   .question-reveal-scroll input[type='checkbox']:checked+label .btn:after {
	opacity: 1;
	transform: rotate(-45deg) scale(1);
  }
  
   .question-reveal-scroll input[type='radio']:checked+label .btn::after {
	opacity: 1;
	transform: scale(1);
  }
  
   .question-reveal-scroll ::-moz-focus-inner {
	border-color: transparent;
  }
  
   .question-reveal-scroll .linkbox.btn-two {
	text-align: center;
  }
  
   .question-reveal-scroll .linkbox.btn-two label {
	width: 48%;
	padding: 10px;
	box-sizing: border-box;
	display: inline-block;
  }
  
   .question-reveal-scroll .linkbox.btn-two .btn {
	font-size: 34px;
	color: #fff;
	background: #3f3f3f;
	padding: 10px;
	text-align: center;
	border: none;
	border-radius: 10px;
	box-shadow: 0 10px 0 #000;
	transition: all 0.2s;
	cursor: pointer;
  }
  
   .question-reveal-scroll .linkbox.btn-two input:checked+label .btn {
	background: #bc0a1f;
	box-shadow: 0 10px 0 #7d1521;
  }
  
   .question-reveal-scroll .linkbox.btn-two input+label .btn::before,
   .question-reveal-scroll .linkbox.btn-two input+label .btn::after {
	content: none;
  }
  
   .question-reveal-scroll .questionArea.not-checked .linkbox::after {
	content: "回答してください";
	font-size: 14px;
	color: #ff0000;
	display: block;
	text-align: right;
	padding: 1em;
  }
  
   .revealarea {
	font-size: 1.2rem;
	text-align: left;
	margin: 3rem auto 0;
	padding: 0;
	box-sizing: border-box;
  }
  
   .revealarea img {
	max-width: 100%;
	height: auto;
  }
  
   .is-hidden {
	display: none;
  }
  
   .hidden-image {
	display: none;
	margin: 10px 0;
  }
  
   .hidden-image img {
	margin: 0 auto;
  }
  
   .linkbox.btn-two.vertical {
	display: grid;
	width: 80%;
	margin: 10px auto;
  }
  
   .linkbox.btn-two.vertical label {
	display: block;
	width: 100%;
  }
  
  @media screen and (min-width: 700px) {
	 .question-reveal-scroll .questionArea {
	  margin: 50px auto 80px;
	  max-width: 970px;
	}
  
	 .question-reveal-scroll .title {
	   margin: 0 0 20px;
	  font-size: 24px;
	}
  
	 .question-reveal-scroll .title .mark {
	  font-size: 28px;
	}
  
	 .question-reveal-scroll input+label .btn {
	  font-size: 24px;
	}
  
	 .question-reveal-scroll .linkbox {
	  margin: 70px auto 20px;
	}
  
	 .question-reveal-scroll input+label .btn::before {
	  width: 28px;
	  height: 28px;
	  top: 41%;
	}
  
	 .question-reveal-scroll input[type='checkbox']+label .btn::before {
	  top: 39%;
	  width: 30px;
	  height: 30px;
	}
  
	 .question-reveal-scroll input[type='checkbox']+label .btn:after {
	  top: 51%;
	  left: 16px;
	  width: 16px;
	  height: 8px;
	  border-left-width: 4px;
	  border-bottom-width: 4px;
	}
  
	 .question-reveal-scroll input[type='radio']+label .btn:after {
	  top: 43%;
	  left: 15px;
	  width: 20px;
	  height: 20px;
	}
  
	 .question-reveal-scroll .linkbox.btn-two .btn {
	  font-size: 50px;
	}
  
  }
  
   .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: 0.15s;
	animation-delay: 0.15s;
  }
  
   .step_arr span:nth-of-type(3) {
	top: 8vw;
	-webkit-animation-delay: 0.3s;
	animation-delay: 0.3s;
  }
  
  @media screen and (min-width:700px) {
	 .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;
	}
  }
  
  @keyframes sdb {
	0% {
	  opacity: 0;
	}
  
	50% {
	  opacity: 1;
	}
  
	100% {
	  opacity: 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;
  }

  .bound2__btnArea {
	margin-top: 30px;
  }
  
   .bound2__btnArea .boundImg__link {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
  }
  
   .bound2__btnArea .boundImg__link img,
   .bound2__btnArea .boundImg__link video {
	width: 100%;
	height: auto;
	animation: bound2Btn 2s ease infinite;
  }
  
  @keyframes bound2Btn {
	0% {
	  transform: translateY(0);
	}
  
	15% {
	  transform: translateY(-30px);
	}
  
	30% {
	  transform: translateY(0);
	}
  
	45% {
	  transform: translateY(-30px);
	}
  
	60% {
	  transform: translateY(0);
	}
  
	100% {
	  transform: translateY(0);
	}
  }

  h4.contents_01_h4 {
	background: #fffafa;
	border-left: 8px solid #ff367f;
	padding: 15px;
	font-size: 20px;
	line-height: 1.3;
	margin: 30px 0 20px;
  }

  .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);
	}
  }

  h3 {
	animation: flash 1.5s linear infinite;
	text-align: center;
	font-size: 24px;
	color: #f68384;
  }
  
  @keyframes flash {
  
	0%,
	100% {
	  opacity: 1;
	}
  
	50% {
	  opacity: 0;
	}
  }
  
  footer a {
      color:#fff;
      text-decoration:none;
  }