@charset "UTF-8";

/* ---------------------------以下可変設定--------------------------- */


/* ---------------------------可変設定ここまで--------------------------- */



/* ---------------------------以下共通設定--------------------------- */

body {
  font-family: "M PLUS Rounded 1c";
  margin:0;
  padding:0;
  background:#000;
}

p {
  margin: 0;
  padding: 0;
}

a {
  font-weight: 700;
  text-decoration: none;
  border: none;
}

img {
    display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}

#wrapper {
  max-width: 600px;
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  overflow-x: hidden;
}

header {
  width: 100%;
  height: auto;
  background-color: #fff;
  padding-top: 10px;
  padding-bottom: 5px;
}

.headerImg {
  width: 90%;
  margin-right: auto;
  margin-left: auto;
  transform: translateX(-5px);
}

#fv{margin-bottom: 20%;
    position: relative
}

#fv .button {
  position: absolute;
  width: 96%;
  height: auto;
  padding: 0 2%;
    bottom: -15%;
}
#story{margin-bottom: 80px;}

#story .button {
  width: 90%;
  height: auto;
  left: 0;
  bottom: 0;
  padding: 0;
  }

.storyImg {
  position: relative;
}


.pickTitle {
  padding: 7px 0;
  font-weight: 800;
  font-size: 24px;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  letter-spacing: 0.2em;
  text-align: center;
  width: 100%;
  height: auto;
  border-top: solid 3px #f96a7c;
  border-bottom: solid 3px #f96a7c;
  background-color: #fb8294;
  background-image: -webkit-gradient(linear, 0 0, 100% 100%,color-stop(.25, #f96a7c), color-stop(.25, transparent),color-stop(.5, transparent), color-stop(.5, #f96a7c),color-stop(.75, #f96a7c), color-stop(.75, transparent),to(transparent));
  -webkit-background-size: 7px 7px;
  text-shadow: -1px -1px 1px #ae6e76;
}

.contents {
  width: 100%;
  height: auto;
  background-color: #fff;
  margin-bottom: 30px;
}

.contentsLast {
  width: 100%;
  height: auto;
  background-color: #fff;
}

.contentsInner {
  padding: 15px 10px;
}

.contentsTitle {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-left:10px
  color:#4c83e8;;
  border-bottom: double 5px #ffc11a;
}

.contentsImg {
  margin: 10px 0 15px 0;
  border: 1px solid #e2e2e2;
}

.gaiyou {
  font-size: 14px;
  line-height: 1.5em;
  font-weight: 500;
  text-align: justify;
  text-justify: inter-ideograph;
  color: #040024;
}

.rate {
  display: flex;
}

.rate p {
  font-size: 14px;
  width: 15%;
  height: auto;
  color: #040024;
}

.rate span{
	font-size: 40px;
  width: 85%;
  height: auto;
  margin-top: -20px;
	color: transparent;
	background-image: linear-gradient(#ffc11a, #ffc11a), linear-gradient(gray, gray);
	background-position: left, right;
	background-repeat: no-repeat;
	background-size: var(--rate) 100%, calc(100% - var(--rate)) 100%;
	background-clip: text;
	-webkit-background-clip: text;
}

.rate span:before{
	content: "★★★★★";
}

.star_1{
  --rate: 40px;
}

.star_1_5{
  --rate: 60px;
}

.star_2{
  --rate: 80px;
}

.star_2_5{
  --rate: 100px;
}

.star_3{
  --rate: 120px;
}

.star_3_5{
  --rate: 140px;
}

.star_4{
  --rate: 160px;
}

.star_4_5{
  --rate: 180px;
}

.star_5{
  --rate: 200px;
}

.buttonPick {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 95%;
  height: auto;
  margin-top: 15px;
  margin-bottom: 10px;
}

.more {
  display: block;
  width: 100%;
  height: auto;
  background-color: #ffb618;
  padding: 12px 0;
}

.more div {
  margin-left: 10px;
  margin-right: 10px;
  width: auto;
  padding: 10px;
  background-color: #fff;
  border-radius: 30px;
}

#pickup {
  margin-bottom: 80px;
}

#footer {
  position: relative;
  background-color: #fff;
  padding: 30px;
  z-index: 999;
}

#footer p {
  font-size: 11px;
  font-weight: 300;
  text-align: center;
  color: #040024;
}

#kaiin {
  position: fixed;
  width: 160px;
  height: auto;
  bottom: -65px;
  right: -24px;
  z-index: 998;
}

/* くの字 */
.sample5-2::after{
    left: 6px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #ffb618;
    border-right: 2px solid #ffb618;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    text-align: center;
}

.arrow{
    position: relative;
    display: block;
    padding: 0 0 0 16px;
    color: #000;
    vertical-align: middle;
    text-decoration: none;
    font-size: 17px;
    text-align: center;
   font-weight: 800;
    color: #ffb618;
}

.arrow::before,
.arrow::after{
    position: absolute;
    top: 0;
    bottom: 0;
    right: -85%;
    margin: auto;
    content: "";
    vertical-align: middle;
}


/* アニメーション設定 */

@keyframes scale {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

    50% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

/* ---------------------------共通設定ここまで--------------------------- */
