@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Asap+Condensed:600');
/* CSS Document */
body{
    font-family: Hiragino Sans, Arial, sans-serif !important;
    margin: 0;
    background-color: #eee;
}
#content {
    margin: 0 auto;
    width: 620px;
    color: #000000;
}

p{
    font-size: 21px;
    color: #000000;
    line-height: 1.5;
}
b,strong{
    font-weight: bold;
}
.pc_ds{
    display: block ;
}
.sp_ds{
    display: none ;
}

.ta_c{
    text-align: center;
}
.mb20{
    margin-bottom: 20px;
}
.mb30{
    margin-bottom: 30px;
}
.mb50{
    margin-bottom: 50px;
}
img,video {
    width: 100%;
    margin: 0 auto;
    vertical-align: bottom;
}

footer {
text-align: center;
    padding: 3%;
    background-color: #cccccc;
    margin-top: 20px;
}
footer a{
    font-size: 8pt;
    color: #ffffff;
    text-decoration: none;
}

h2 {
    padding: 15px 5px 15px 20px;
    border-left: 6px solid #999;
    border-bottom: 2px dotted #999;
    background-color: #fff;
    margin: 40px 0;
    font-size: 22px;
    font-weight: bold;
}

h2 {
    padding: 10px 5px 10px 10px;
    font-size: 19px;
    font-weight: bold;
}

section {
    margin: 0 auto;
    background-color: #fff;
    padding: 3% 20px 5%;
}

.area_blood{
    background: #fff;
    border-radius: 10px;
    padding: 3%;
    box-shadow: 0 1px 3px rgba(0,0,0,.2);
}

/*口コミ*/
.kuti{
    margin: 0px;
    padding: 15px 10px;
    box-sizing: border-box;
    scrollbar-width: none;
    max-width: 100%;
    background: white;
    border: 11px solid rgb(255, 169, 184);
}

/*矢*/
.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;
}

/*ぼたん*/
 .btn-area {
  margin: 3em 0 1em;
  justify-content: center;
  display: flex;
  text-align: center;
}

 .btn {
  width: auto;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  border: none;
  overflow: hidden;
  box-sizing: border-box;
  animation: bound2Btn 2s ease infinite;
}

 a.btn:hover {
  opacity: 0.7;
  text-decoration: none;
}

 a.btn img {
  vertical-align: middle;
}


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

/*矢印2*/
 .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;
  }
}

/*アンケート*/
 .container {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  margin: 1rem;
}

 .container .item {
  margin-bottom: 1rem;
}

h4 {
  /* 見出しの下線色 */
  background-color: #EC6A00;
  color: #fff;
  margin: 0;
  padding: 10px 10px 10px 20px;
  font-size: 27px;
  font-weight: bold;
}

 figure {
  margin: 0 auto 10px;
  padding: 0;
}

 .list-ans {
  margin: 0;
  padding: 0;
  list-style: none;
}

 .list-ans .radio-input {
  display: none;
}

.btn2 {
  /* 非選択時のボタン文字色 */
  color: #2b2b2b;
  font-size: 1rem;
  font-weight: bold;
  text-align: left;
  text-decoration: none;
  white-space: normal;
  word-break: break-all;
  /* 非選択時のボタン背景色 */
  background-color: #ededed;
  /* 非選択時のボタン影色 */
  box-shadow: 0 0.25rem 0 0 #949494;
  border: 0 solid transparent;
  border-radius: 0.25rem;
  width: 100%;
  margin-bottom: 1rem;
  padding: 1rem;
  position: relative;
  display: inline-block;
  transition: all 0.1s linear;
  box-sizing: border-box;
}

.btn2:hover {
  /* マウスオン時のボタン背景色 */
  background-color: #f2f2f2;
  cursor: pointer;
}

.btn2:active,
.list-ans .radio-input:checked+.btn2 {
  transform: translate(0, 0.25rem);
  box-shadow: 0 0 0 0 #949494;
  /* 選択時のボタン背景色 */
  background-color: #bababa;
}

 ::-moz-focus-inner {
  border-color: transparent;
}

.btn2:focus {
  outline: none !important;
}

/**/
.time_rel p {
  font-size: 18px;
  color: #000000;
  line-height: 1.5;
  margin: 0;
}

 .time_rel {
  position: relative;
}

 .time_rel .abs {
  position: absolute;
  color: #fff;
  left: 14%;
  top: 0;
  bottom: 0;
  font-weight: bold;
  font-size: max(1.6rem, 28px);
  line-height: 3;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 760px) {
   .time_rel .abs {
    top: 1%;
    left: 15%;
    font-size: max(1.2rem, 12px);
    line-height: 2.6;
  }
}

@media (max-width: 760px) {
    .pc_ds{
        display: none !important;
    }
    .sp_ds{
        display: block !important;
    }
    p{
        line-height: 1.5;
    }
    #content {
        width: 100%;
    }
}

/*240216**/
/*a.floatingbtn {
    position: fixed;
    bottom: 2%;
    right: 0%;
    width: 400px;
    z-index: 1;
    padding: 0 5px;
}
@media screen and (max-width: 760px){
    a.floatingbtn {
    position: fixed;
    bottom: 2%;
    right: 2%;
    width: 95%;
}
}*/
 .scroll-display {
  width: 400px;
  display: none;
  pointer-events: none;
  justify-content: center;
  position: fixed;
  margin: 0 auto;
  bottom: 0;
  right: 0;
  z-index: 999;
  box-sizing: border-box;
}

 .scroll-display a:hover {
  opacity: 0.7;
}

@media screen and (max-width:699px) {
   .scroll-display {
    width: 100%;
  }

   .scroll-display a:hover {
    opacity: 1;
  }
}

 .scroll-display .inner {
  width: 500px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 1s;
  pointer-events: none;
  padding: 0 5px;
  box-sizing: border-box;
}

 .scroll-display.loaded {
  display: flex;
}

 .scroll-display.show {
  pointer-events: auto;
}

 .scroll-display.show .inner {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.acc_content_wrapper+p
.acc_content_wrapper>p:last-child {
    display: none;
}

.acc_content_wrapper {
    position: relative;
    padding: 3px;
}
.box {
    border:1px solid #ff8c61;
    border-radius:10px;
    background-color:#fff;
    padding: 2%;
    }
.review_header {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    -webkit-box-align:center;
    -ms-flex-align:center;
    align-items:center;
    padding:4px 10px 10px;
    line-height:1.2;
    border-bottom:1px solid #d9d9d9;
}
.review_header figure {
    margin-right:10px; margin-top: 3px;
}
.review_header img {
    width:60px; height:auto;
}
.profile ul {
    display:-webkit-box;
    display:-ms-flexbox;
    display:flex;
    font-size:0.8125rem;}
.profile ul .name {
    font-size:17px;
}
.commentArea {
    font-size:1.00rem; padding:10px 25px 10px 10px; line-height:1.4;
}
.commentArea_s {
    font-size:0.90rem; padding:5px 10px; line-height:1.4;
}
.commentArea:after {
    content:''; display:table; clear:both;
}
article {
    position:relative;
}
article .comment_koushiki {
    position:absolute; right:-14px; top:50px;
}
article .comment_koushiki img {
    width:40px; z-index:300;
}
.voice h4 {
    text-align: center;
    margin-bottom: 0;
}


.txt_title {
    background:#ffdaa5;
     padding: 0.5rem 1rem;
    font-weight: bold;
    font-size: 23px;
    line-height: 1.5;
    margin: 45px 0 30px;
    border-left:10px solid #ffa400;
}

.tac {
    text-align :center;
    font-weight:bold;
}

/*離脱ポップ*/
#exitPopup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    z-index: 1001;
  }
  
   #exitPopup .close-btn {
    position: absolute;
    top: -51px;
    right: 10px;
    background: none;
    border: none;
    font-size: 56px;
    color: #fff;
    cursor: pointer;
  }
  
   #overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
  }