/*
**  ===================================================================
**  mainblock CSS
**  ===================================================================
*/

.bg_contents {
  position: relative;
}
.contents__inner {
  margin: auto;
  max-width: 750px;
  background: url(../img/bg.png) repeat-y center top;
}
.mainblock {
  margin: auto;
  max-width: 750px;
}
.main_img {
  margin-bottom: 3%;
  padding: 0 3%;
}
@media screen and (min-width: 800px) {
  .main_img {
    padding: 0;
  }
}

.main_img.typeA {
  /* margin-top: 6%; */
  margin-bottom: 6%;
}

.mainblock img {
  display: block;
  margin: auto;
}

.main_text {
  text-align: center;
  color: #7e70ca;
  font-size: 94%;
  font-weight: bold;
  margin: 5% auto 3%;
}
@media screen and (min-width: 800px) {
  .main_text {
    font-size: 26px;
  }
}
.main_read {
  margin: 4% auto 6%;
}
.read_block {
  background-image: url(../img/line.png);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100%;
  padding-top: 8%;
  margin-bottom: 19%;
}
@media screen and (min-width: 800px) {
  .read_block {
  }
}

.contents_block {
  position: relative;
}
.contents_btn {
  width: 90%;
  margin: 6% auto 0;
}
.contents_btn.typeA {
  width: 96%;
}
.contents_btn.typeB {
  top: 96.9%;
}
@media screen and (min-width: 800px) {
  .contents_btn {
    width: auto;
  }
}
.contents_title {
  margin-bottom: 3%;
}

.nav_area {
  margin: 6% 2% 5%;
}
.nav_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3%;
}
.nav_item {
  width: 48%;
  margin-right: -1%;
}
.nav_item:first-child {
  margin-right: 1%;
  margin-bottom: 1%;
}
@media screen and (min-width: 800px) {
  .nav_area {
    margin: 50px 0 45px;
  }
  .nav_item {
    width: auto;
  }
}

.pagetop {
  z-index: 1;
  width: 15%;
  right: 2%;
}
@media screen and (min-width: 800px) {
  .pagetop {
    width: auto;
    right: 20px;
  }
}

.accordion-area {
  margin: 2% auto 0;
}
@media screen and (min-width: 800px) {
  .accordion-area {
    width: auto;
  }
}

.accordion-block {
  margin-bottom: 8%;
  position: relative;
}
.accordion-block:before {
  display: block;
  content: "";
  width: 94%;
  height: clamp(20px, 6vw, 40px);
  border-radius: 0 0 clamp(10px, 3vw, 20px) clamp(10px, 3vw, 20px);
  background: #5e7bbc;
  position: absolute;
  bottom: clamp(-10px, -3vw, -20px);
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media screen and (min-width: 800px) {
  .accordion-block:before {
    width: 100%;
    max-width: 720px;
  }
}
.accordion-block.typeA{
  margin-bottom: 4%;
}
.accordion-block.typeA:before{
  content: none;
}


.accordion-block.open:before {
  display: none;
}

.accordion-title {
  margin: 0 3%;
  margin-bottom: -1.5%;
  position: relative;
  z-index: +1;
  cursor: pointer;
}
.accordion-title.typeA{
  margin-bottom: 0;
}

.accordion-contents {
  display: none;
}

.accordion-title:after {
  content: "";
  background-image: url(../img/block_arrow.png);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 11.25%;
  height: 34%;
  position: absolute;
  z-index: 1;
  right: 3%;
  top: 50%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}
.accordion-title.typeA:after {
  background-image: url(../img/block02_arrow.png);
  height: 42%;
}
.accordion-title.typeB:after {
  height: 32%;
  top: 63%;
}
@media screen and (min-width: 800px) {
  .accordion-title {
    margin: 0;
    margin-bottom: -1.5%;
  }
  .accordion-title:after {
    width: 81px;
    height: 97px;
    right: 27px;
  }
}
.accordion-title.open:after {
  -webkit-transform: translateY(-50%) rotate(0deg);
  transform: translateY(-50%) rotate(0deg);
}

.accordion-inner {
  position: relative;
  margin: 0 3%;
}
@media screen and (min-width: 800px) {
  .accordion-inner {
    margin: 0 auto;
  }
}

.accordion__innerBlock {
  width: 100%;
  margin: 0 auto;
  padding: 4% 3% 0;
  background: url(../img/bg_accBlock_smp.png) center repeat-y;
  background-size: contain;
}
.accordion__innerBlock.typeA{
  background-image: none;
  padding-left: 0;
  padding-right: 0;
}
@media screen and (min-width: 800px) {
  .accordion__innerBlock {
    max-width: 720px;
    background: url(../img/bg_accBlock.png) center repeat-y;
  }
  .accordion__innerBlock.typeA{
    background-image: none;
  }
}

.accordion__innerBlock:last-of-type {
  padding-bottom: 4%;
}
.accordion__innerBlock-title {
  position: relative;
  cursor: pointer;
}
.accordion__innerBlock-title:after {
  content: "";
  background-image: url(../img/block_arrow_02.png);
  background-repeat: no-repeat;
  background-size: 100%;
  width: 10%;
  height: 63%;
  position: absolute;
  z-index: 1;
  right: 3%;
  top: 48%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}
@media screen and (min-width: 800px) {
  .accordion__innerBlock-title:after {
    width: 65px;
    height: 78px;
    right: 51px;
  }
}
.accordion__innerBlock-title.open:after {
  -webkit-transform: translateY(-50%) rotate(0deg);
  transform: translateY(-50%) rotate(0deg);
}
.accordion__innerContents {
  display: none;
  margin-top: 3%;
}
.accordion__innerContents_inner {
}

.bnr_list {
  width: 90%;
  margin: 0 auto 4%;
}
.bnr_item:last-child {
  margin-top: 1%;
}
.btn_list {
  width: 66%;
  margin: 6% auto;
}
.btn_item:last-child {
  margin-top: 4%;
}
@media screen and (min-width: 800px) {
  .bnr_list {
    margin-bottom: 30px;
  }
  .bnr_item:last-child {
    margin-top: 10px;
  }
}

.accordion-end-contents{
  padding-top: 4%;
}


.contents_price{
  margin-top: 5%;
  margin-bottom: 7%;
}
.contents_img{
  margin-bottom: 3%;
}

.border-block{
  width: 93%;
  margin: 1% auto 0;
  border: 2px solid #5e7bbc;
  border-radius: 10px;
  background-color: #ffffff;
  padding: 3% 0 5%;
}
@media screen and (min-width: 800px) {
  .border-block{
    max-width: 710px;
    border-width: 3px;
    border-radius: 20px;
  }
}

.plus-block{
  width: 98%;
  margin: 4% auto 6%;
}
@media screen and (min-width: 800px) {
  .plus-block{
    max-width: 670px;
  }
}
.plus-block.typeA{
  margin-top: 0;
  margin-bottom: 0;
  /* margin-bottom: 5%; */
}
.plus-block-title {
  text-align: center;
  line-height: 1;
  padding: 2% 0 1.5%;
  cursor: pointer;
  background-color: #666666;
  color: #fff;
  position: relative;
  font-size: 90%;
  font-weight: bold;
}
@media screen and (min-width: 800px) {
  .plus-block-title{
    font-size: 22px;
  }
}
.plus-block-inner {
  display: none;
  background-color: #eeeeee;
  color: #000000;
  padding: 2% 2% 3%;
}

.plus-block-title::before{
  position: absolute;
  content: '';
  top: 50%;
  right: 10px;
  width: 12px;
  height: 2px;
  background-color:#fff;
  transform: rotate(90deg);
  transition: all .3s ease-in-out;
}
.plus-block-title::after{
  position: absolute;
  content: '';
  top: 50%;
  right: 10px;
  width: 12px;
  height: 2px;
  background-color:#fff;
  transition: all .3s ease-in-out;
}
@media screen and (min-width: 800px) {
  .plus-block-title::before{
    right: 20px;
    width: 24px;
    height: 3px;
  }
  .plus-block-title::after{
    right: 20px;
    width: 24px;
    height: 3px;
  }
}
.plus-block-title.open::before {
  transform: rotate(180deg);
}
.plus-block-title.open::after {
  opacity:0;
}


.plus-block-text{
  font-size: 80%;
  font-weight: 600;
  color: #000000;
  text-align: left;
}
.plus-block-text a{
  color: #000000;
  text-decoration: underline;
}
@media screen and (min-width: 800px) {
  .plus-block-text{
    font-size: 16px;
  }
}


.number-block{
  margin-top: 3%;
  margin-bottom: 4%;
  text-align: center;
}
.number-block-title {
  width: 99%;
  margin: 0 auto;
  text-align: center;
  line-height: 1;
  cursor: pointer;
  position: relative;
}
@media screen and (min-width: 800px) {
  .number-block-title{
    width: auto;
    display: inline-block;
  }
}
.number-block-contents {
  display: none;
  margin-top: 3%;
}

.number-block-title::before{
  position: absolute;
  content: '';
  top: 50%;
  right: 13px;
  width: 12px;
  height: 2px;
  background-color:#fff;
  transform: rotate(90deg);
  transition: all .3s ease-in-out;
}
.number-block-title::after{
  position: absolute;
  content: '';
  top: 50%;
  right: 13px;
  width: 12px;
  height: 2px;
  background-color:#fff;
  transition: all .3s ease-in-out;
}
@media screen and (min-width: 800px) {
  .number-block-title::before{
    right: 26px;
    width: 24px;
    height: 3px;
  }
  .number-block-title::after{
    right: 26px;
    width: 24px;
    height: 3px;
  }
}
.number-block-title.open::before {
  transform: rotate(180deg);
}
.number-block-title.open::after {
  opacity:0;
}

.btn_link{
  margin: 0 3% 3%;
}
@media screen and (min-width: 800px) {
  .btn_link{
    margin: 0 auto 3%;
  }
}


.accordion-bg{
  background-color: #e7ebf5;
  margin: 7% -2% 0;
  padding: 2% 2% 0;
  padding-bottom: 2%;
}
@media screen and (min-width: 800px) {
  .accordion-bg{
    margin: 4% 0.8% 0;
    padding: 4% 0 2%;
  }
}

.accordion-img.top{
  margin-top: -5%;
}

.btn_qr{
  width: 98%;
  margin: 0 auto 3%;
}
@media screen and (min-width: 800px) {
  .btn_qr{
    width: auto;
  }
}

.contents-list{
  text-align: left;
  margin: 3% -1% 0;
}
.contents-item{
  font-size: 70%;
  font-weight: 600;
  color: #000000;
  text-indent: -6.5em;
  padding-left: 6.5em;
}
.contents-item a{
  color: #000000;
  text-decoration: underline;
}
@media screen and (min-width: 800px) {
  .contents-list{
    margin: 3% 2% 0;
  }
  .contents-item{
    font-size: 16px;
  }
}



.qr-block-title{
  margin: 0 3%;
}
.qr-block-list{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.qr-block-item{
  width: 47%;
  margin-right: 2%;
  margin-bottom: 2%;
}
.qr-block-item:nth-child(even){
  margin-right: 0;
}
.qr-block-item:last-child{
  margin-bottom: 0;
}
@media screen and (min-width: 800px) {
  .qr-block-item{
    width: auto;
  }
}


.qr-block-item-title {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  line-height: 1;
  cursor: pointer;
  position: relative;
}
@media screen and (min-width: 800px) {
  .qr-block-item-title{
    width: auto;
  }
}
.qr-block-item-inner {
  padding: 5% 20%;
  display: none;
}
@media screen and (min-width: 800px) {
  .qr-block-item-inner{
    padding: 5% 12%;
  }
}

.qr-block-item-inner.typeA{
  background-color: #fce7ed;
  border: 2px solid #f7c4d2;
}
.qr-block-item-inner.typeB{
  background-color: #fdfcf3;
  border: 2px solid #faf8e0;
}
.qr-block-item-inner.typeC{
  background-color: #d1dcf0;
  border: 2px solid #8ca7d9;
}
.qr-block-item-inner.typeD{
  background-color: #dcefe2;
  border: 2px solid #a7d8b7;
}
.qr-block-item-inner.typeE{
  background-color: #b4b2b2;
  border: 2px solid #443f3e;
}
.qr-block-item-inner.typeF{
  background-color: #f1f1f1;
  border: 2px solid #dcdddd;
}
.qr-block-item-inner.typeG{
  background-color: #fffbc7;
  border: 2px solid #fff574;
}
.qr-block-item-inner.typeH{
  background-color: #e9f6fd;
  border: 2px solid #c7e8fa;
}
.qr-block-item-inner.typeI{
  background-color: #e9e6f2;
  border: 2px solid #c7c0df;
}


.qr-block-item-title::before{
  position: absolute;
  content: '';
  top: 50%;
  right: 8px;
  width: 12px;
  height: 2px;
  background-color:#666666;
  transform: rotate(90deg);
  transition: all .3s ease-in-out;
}
.qr-block-item-title::after{
  position: absolute;
  content: '';
  top: 50%;
  right: 8px;
  width: 12px;
  height: 2px;
  background-color:#666666;
  transition: all .3s ease-in-out;
}
@media screen and (min-width: 800px) {
  .qr-block-item-title::before{
    right: 16px;
    width: 24px;
    height: 3px;
  }
  .qr-block-item-title::after{
    right: 16px;
    width: 24px;
    height: 3px;
  }
}
.qr-block-item-title.open::before {
  transform: rotate(180deg);
}
.qr-block-item-title.open::after {
  opacity:0;
}
.qr-block-item-title.typeE::before{
  background-color: #ffffff;
}
.qr-block-item-title.typeE::after{
  background-color: #ffffff;
}


/*
**  ===================================================================
**  subblock CSS
**  ===================================================================
*/
.subblock {
  margin: auto;
  padding: 0 10px;
  max-width: 730px;
}
.subblock img {
  display: block;
  margin: auto;
}
.btn a {
  display: block;
}
.btn a img {
  width: 100%;
}
@media screen and (min-width: 800px) {
  .btn a:hover {
    opacity: 0.7;
  }
}

.border_area {
  background-color: #ffffff;
  border: 2px solid #a98529;
  padding: 2% 2% 3%;
}
@media screen and (min-width: 800px) {
  .border_area {
    width: 720px;
    margin: 0 auto;
    border: 4px solid #a98529;
    padding: 2% 0 3%;
  }
}

.block_contents {
  position: relative;
  margin: 0 3% 4%;
}
.block_contents:last-child {
  margin-bottom: 0;
}
.contents_inner {
  margin: 0 2.5%;
}
@media screen and (min-width: 800px) {
  .contents_inner {
    margin: 0;
  }
}
.block_contents.typeA {
  margin-bottom: 7%;
}

.caution__block {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4.5%;
}
.caution__list {
  margin: 0 3%;
}
.caution__text {
  text-align: left;
  font-size: 70%;
  font-weight: bold;
  color: #ff0000;
}
.caution__text.typeA {
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (min-width: 800px) {
  .caution__block {
    bottom: 4.8%;
  }
  .caution__list {
    width: 650px;
    margin: 0 auto;
  }
  .caution__text {
    font-size: 18px;
  }
}

.hmv_area {
  margin-top: 2%;
}
.hmv_area.typeA {
  bottom: 1%;
}
@media screen and (min-width: 800px) {
  .hmv_area.typeA {
    bottom: 1.5%;
  }
}

.btn_info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4%;
  width: 85%;
  margin: 0 auto;
}
.btn_hmv {
  width: 85%;
  margin: 0 auto 6%;
}
.btn_hmv.typeA {
  margin-bottom: 2%;
}
@media screen and (min-width: 800px) {
  .btn_info {
    width: 600px;
  }
  .btn_hmv {
    width: 600px;
    margin-bottom: 70px;
  }
  .btn_hmv.typeA{
    margin-bottom: 2%;
  }
}
.caution_area {
  position: absolute;
  width: 100%;
  margin: 0 auto;
  left: 0;
  top: 25%;
}
@media screen and (min-width: 800px) {
  .caution_area {
    /* margin: 0 0 5%; */
  }
}
.caution_list {
  margin: 0 auto;
}
@media screen and (min-width: 800px) {
  .caution_list {
    padding: 0 10px;
  }
}
.caution_item {
  text-indent: -1em;
  padding-left: 1em;
  font-size: 70%;
  line-height: 1.4;
  font-weight: 600;
  color: #0d0d0d;
}
.caution_item.typeA {
  color: #e60012;
}
.caution_item a {
  color: #00a0e9;
}
@media screen and (min-width: 800px) {
  .caution_item {
    font-size: 21px;
    line-height: normal;
  }
}

.caution_nav_list {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.caution_nav_item {
  width: 30%;
  margin-right: 2%;
}
@media screen and (min-width: 800px) {
  .caution_nav_item {
    width: auto;
    margin-right: 2%;
  }
}
.caution_nav_item:last-child {
  margin-right: 0;
}
.caution_btn {
  width: 75%;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8%;
}
@media screen and (min-width: 800px) {
  .caution_btn {
    width: 518px;
  }
}

.shop_btn {
  width: 99%;
  margin-left: auto;
}
@media screen and (min-width: 800px) {
  .shop_btn {
    width: 740px;
    margin-right: -1px;
  }
}

.caution {
  text-align: center;
  font-size: 75%;
  font-weight: 600;
  color: #000000;
  margin-top: 1%;
  margin-bottom: 4%;
}
.caution.typeA {
  color: #000000;
}
.caution.typeB {
  margin-top: 1%;
  margin-bottom: 7%;
}
.main_list {
  margin: 0 auto 6%;
  padding: 0 10px;
  max-width: 730px;
}
.main_list.typeA {
  margin-top: 8%;
  margin-bottom: 3%;
}
.main_list.typeB {
  margin-bottom: 6%;
}
.main_item {
  text-indent: -1em;
  padding-left: 1em;
  font-size: 75%;
  font-weight: 600;
  color: #000000;
}
.main_item.typeA {
  text-indent: 0;
  padding-left: 0;
}
.main_copy {
  text-align: center;
  font-size: 70%;
  font-weight: 600;
  color: #000000;
  margin-bottom: 5%;
}
@media screen and (min-width: 800px) {
  .caution {
    font-size: 16px;
  }
  .main_list {
    text-align: left;
  }
  .main_item {
    font-size: 16px;
  }
  .main_copy {
    font-size: 16px;
  }
}

/*
**  ===================================================================
**  catalog CSS
**  ===================================================================
*/
.catalog_ttl {
  margin: auto;
  padding: 0;
  position: relative;
  max-width: 710px;
}
.catalog_ttl .btn {
  bottom: 8%;
  display: block;
  left: auto;
  margin: auto;
  position: absolute;
  right: 2%;
  width: 14.93%;
}

/*
**  ===================================================================
**  loppi CSS
**  ===================================================================
*/
.loppi_ttl {
  margin: auto;
  padding: 0;
  position: relative;
  max-width: 710px;
}
.loppi_ttl .btn {
  bottom: 6%;
  display: block;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 81.128%;
}
/*
**  ===================================================================
**  site-footer CSS ※block { } block__element { } block_modifier { }（key_value）
**  ===================================================================
*/

.snslist.typeA {
  padding: 4% 0;
}
@media screen and (min-width: 800px) {
  .snslist {
    text-align: center;
    letter-spacing: -0.4em;
    padding: 10px 0 40px;
  }
  .snslist__item {
    vertical-align: top;
    display: inline-block;
    letter-spacing: normal;
    margin: 0 3px;
    /* border: 1px solid transparent; */
    line-height: 0;
  }
  /* .snslist__item.twt2{
    border: 1px solid #ffffff;
  } */
  .hidden-xs {
    display: block !important;
  }
  .visible-xs {
    display: none !important;
  }
}

@media screen and (max-width: 800px) {
  .snslist {
    text-align: center;
    letter-spacing: -0.4em;
    padding: 0 0 10%;
  }
  .snslist__item {
    vertical-align: top;
    display: inline-block;
    letter-spacing: normal;
    margin: 0 3px;
    /* border: 1px solid transparent; */
    line-height: 0;
  }
  /* .snslist__item.twt2{
    border: 1px solid #ffffff;
  } */
  .hidden-xs {
    display: none !important;
  }
  .visible-xs {
    display: block !important;
  }
}

/*
**  ===================================================================
**  adjust CSS
**  ===================================================================
*/
.mt00 {
  margin-top: 0px !important;
}

.mt05 {
  margin-top: 5px !important;
}

.mt08 {
  margin-top: 8px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.pt00 {
  padding-top: 0px !important;
}

.pt05 {
  padding-top: 5px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.mb00 {
  margin-bottom: 0px !important;
}

.mb05 {
  margin-bottom: 5px !important;
}

.mb08 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.pb00 {
  padding-bottom: 0px !important;
}

.pb05 {
  padding-bottom: 5px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.t_left {
  text-align: left !important;
}

.t_center {
  text-align: center !important;
}

.t_right {
  text-align: right !important;
}

.t_white {
  color: #fff !important;
}

.t_red {
  color: #cf1a1a !important;
}

.t_bold {
  font-weight: bold !important;
}

.t_normal {
  font-weight: normal !important;
}

.t_xsml {
  font-size: 66.7%;
}

.t_sml {
  font-size: 83.3%;
}

.t_lrg {
  font-size: 116.7%;
}

.t_xlrg {
  font-size: 133.3%;
}
