@charset "utf-8";

main#stripeBg {
    background: none;
}

h1.texteffect, h1.texteffectWrap {
    font-size: 150%;
    text-align: left;
}
.container div.main_contents div.txt ul,
.container ul#faq-accordion {
	margin: 20px 0 0 !important;
	padding: 0 !important;
}
.container div.main_contents div.txt li,
.container ul#faq-accordion li {
	list-style: none;
}
#faq-accordion .qtitle {
    font-size: 20px;
    font-weight: bold;
    border: 2px solid #A0A0A0;
    border-radius: 5px;
    padding: 20px;
}
#faq-accordion .qtitle a {
	display: block;
	color: #333;
    line-height: 1.83;
}
#faq-accordion .qtitle i {
    margin: 0 0.5em 0 0;
    color: #e60002;
    font-size: smaller;
}
#faq-accordion ul{
    padding: 0;
}
li .qdetail {
    font-size: 16px;
    font-weight: bold;
	background: #f6f6f6;
    border-top: 1px dotted #A0A0A0;
    padding: 12px 20px;
}
li .qdetail a {
	color: #06a !important;
}

/*********************************************************************************************************************
*下層
**********************************************************************************************************************/

.qa{
    margin-bottom: 0;
    font-size: 16px;
}
.qa dt{
    margin-bottom: 8px;
    color: #06a;
    text-indent: -1.8em;
    padding-left: 1.8em;
    padding-top: 4.8em;
}
.qa dd{
    text-indent: -1.8em;
    margin-bottom: 32px;
    padding-left: 1.8em;
    padding-bottom: 4.8em;
    line-height: 1.6;
    border-bottom: 1px solid #A0A0A0;
}
.qa dd:last-child{
    margin-bottom: 0;
}

.btn_red{
    margin: 32px 0 56px;
    text-align: center;
}
.btn_red a {
	display: block;
    max-width: 320px;
	background: #e50012;
	margin:  auto;
	padding: 8px 16px;
    border: 2px solid #e50012;
    border-radius: 100px;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
    line-height: 1.83;
    text-decoration: none;
    position: relative;
}
.btn_red a:visited{
	color: #fff;
}
.btn_red a:hover {
    border-radius: 100px;
    background: #fff;
    color: #e50012;
    -webkit-transition: all .3s;
    transition: all .3s;
}
.btn_red a::after {
    content: "\f138";
    font-family: FontAwesome;
    position: absolute;
    right: 4%;
    color: #fff;
}
/******202101追加：役に立ちましたか******/
.q_qa_wrap {
}
.q_qa_txt-useful {
    text-indent: 0;
    font-size: 71.4%;
    margin: 0.8em 0 0.4em;
    list-style: none;
    color: initial;
}
.q_qa_ul {
    display: flex;
    list-style: none;
    padding: 0;
}
.q_qa_list {
    background: #fff;
    border-radius: 16px;
    text-indent: 0;
    text-align: center;
    margin: 0 0 0 0.8em;
    border: 1px solid #06a;
}
.q_qa_list a {
    color: #fff;
    display: block;
    cursor: pointer;
    text-decoration: none;
    font-size: 85.7%;
    padding: 0.4em;
}
/*----------TABLET----------*/
@media only screen and (min-width:600px) {
}
/*------------PC------------*/
@media only screen and (min-width:1025px) {
    h1.texteffect, h1.texteffectWrap {
        font-size: 300%;
    }
    .q_qa_list {
        width: 15%;
    }
}


/*********************************************************************************************************************
*レビュー表示
**********************************************************************************************************************/
/*全体*/
.hidden_box {
    /* margin: 0.4em 0 0.8em; */
    padding: 0;
    text-align: right;
}
.hidden_box_wrap {
}

/*ボタン装飾*/
.hidden_box label {
    color: #06a;
    cursor: pointer;
    text-decoration: none;
    font-size: 71.4%;
    padding: 2px 10px;
}

/*ボタンホバー時*/
.hidden_box label:hover {
    opacity: 0.8;
}

/*チェックは見えなくする*/
.hidden_box input {
    display: none;
}

/*中身を非表示にしておく*/
.hidden_box .hidden_show {
    height: 0;
    padding-left: 2.4em;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
    font-size: 85.7%;
}

/*クリックで中身表示*/
.hidden_box input:checked ~ .hidden_show {
    padding: 10px 0;
    padding-left: 2.4em;
    height: auto;
    opacity: 1;
    font-size: 85.7%;
}

/*モーダル*/
.content{
    margin: 0 auto;
    padding: 40px;
}
.modal{
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100%;
}
.modal__bg{
    background: rgba(0,0,0,0.8);
    height: 100vh;
    position: absolute;
    width: 100%;
}
.modal__content{
    background: #fff;
    left: 50%;
    padding: 40px;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 60%;
}

/*モーダル用*/
.js-modal__bg {
    width: 100%;
    height: 100%;
    /* background-color: rgba(0,0,0,0.6); */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    display: none;
  }
  .js-modal__main {
    width: calc(100% - 32px);
    height: 10%;
    padding: 16px;
    bottom: 0;
    left: 16px;
    right: 16px;
    background: #1a1a1a;
    color: #fff;
    border-radius:4px ;
    position: fixed;
    z-index: 11;
    opacity: 0;
    text-indent: 0;
  }
  .js-modal__btn {
      cursor: pointer;
      -webkit-tap-highlight-color:rgba(0,0,0,0);
      text-indent: 0;
      display: flex;
      justify-content: flex-end;
      float: right;
  }
  .js-modal__btn_txt {
    color: #06a;
    cursor: pointer;
    text-decoration: none;
    font-size: 71.4%;
    padding: 2px 10px;
    background: #fff;
    border-radius: 16px;
    text-align: center;
    margin: 0 0 0 0.8em;
    border: 1px solid #06a;
 
    }
  .js-modal__btn--close {
      margin-top: 40px;
      text-align: center;
      text-decoration: underline;
  }
  .js-modal__btn--close--fix {
    width: 30px;
    height: 30px;
    //background: #333;
    border-radius: 50%;
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 101;
    cursor:pointer;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
  }
  .js-modal__btn--close--fix:before{
    content:"";
    width: 10px;
    height: 10px;
    border-right:1px solid #fff;
    transform: rotate(-45deg);
    position: absolute;
    top:8px;
    left:12px;
  }
  .js-modal__btn--close--fix:after{
    content:"";
    width: 10px;
    height: 10px;
    border-right:1px solid #fff;
    transform: rotate(45deg);
    position: absolute;
    top:2px;
    left:12px;
  }
  .slideUp__txt {
      margin: 0;
      padding: 0;
  }
  /*下から上*/
  @keyframes SlideUp {
    0% {
      opacity: 0;
      transform: translateY(-1%);
    }
    100% {
      opacity: 1;
      transform: translateY(-80%);
    }
  }
  /*上から下*/
  @keyframes SlideDown {
    0% {
      opacity: 1;
      transform: translateY(-80%);
    }
    100% {
      opacity: 0;
      transform: translateY(-1%);
    }
  }
  .js-modal__main._slideUp {
  animation: SlideUp .3s ease-in-out forwards;
  }
  .js-modal__main._slideDown {
  animation: SlideDown .3s ease-in-out forwards;
  }