
/* single ページネーション */
.single-pagenation ul{
	display: flex;
	justify-content: center;
}
.single-pagenation ul li.oldpage{
    margin-right: 10px;
}
.single-pagenation ul li.oldpage a,
.single-pagenation ul li.newpage a{
	display: flex;
	align-items: center;
	border: #ccc 1px solid;
    border-radius: 5px;
    padding: 5px 10px;
}
.single-pagenation ul li.oldpage a::before{
	content: "";
    display: none;
    width: 10px;
    height: 10px;
    background: url(/wp-content/themes/lusoi2023/img/arrow_left.svg) no-repeat;
	margin-right: 10px;
}
.single-pagenation ul li.newpage a::after{
	content: "";
    display: block;
    width: 10px;
    height: 10px;
    background: url(/wp-content/themes/lusoi2023/img/arrow_right.svg) no-repeat;
	margin-left: 10px;
}



div.iframeWrapper {
position: relative;
width: 100%;
padding-top: 50%;
}
div.iframeWrapper iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}

#submit{
	font-family: 'Alegreya';
	width: 210px;
	display: block;
	background: rgba(177,201,177,1);
	color: #fff;
	text-align: center;
	height: 40px;
	margin: 0 auto;
	border: none;
	cursor: pointer;
}
#submit:hover{
	background: rgba(177,201,177,0.5);
	transition: all 0.3s ease;
}

/* faq */

 
.common.common-sub.faq .wrap {
    width: 100%;
  }
  .common.common-sub.faq .count-faq p {
    font-size: 16px;
  }
  .common.common-sub.faq .list-faq {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
  }
  .common.common-sub.faq .list-faq .item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    width: 100%;
    gap: 10px;
    border-top: 1px solid #aaaaaa;
  }
  .common.common-sub.faq .list-faq .item:last-child {
    border-bottom: 1px solid #aaaaaa;
  }
  .common.common-sub.faq .list-faq .item .group {
    display: none;
    align-items: center;
    width: 100%;
    gap: 2rem;
  }
  @media (max-width: 768px) {
    .common.common-sub.faq .list-faq .item .group {
      display: flex;
    }
  }
  @media (max-width: 425px) {
    .common.common-sub.faq .list-faq .item .group {
      gap: 1rem;
    }
  }
  .common.common-sub.faq .list-faq .item .left {
    width: 100%;
    max-width: 120px;
  }
  .common.common-sub.faq .list-faq .item .left p {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    background-color: #aaaaaa;
    text-align: center;
  }
  .common.common-sub.faq .list-faq .item .mid a {
    color: #3f5193;
    text-decoration: underline;
    text-decoration-color: #3f5193;
    display: flex;
  }
  .common.common-sub.faq .list-faq .item .right {
    margin-left: auto;
    width: 100%;
    max-width: 180px;
  }
  .common.common-sub.faq .list-faq .item .right .btn-faq {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    opacity: 1;
  }
  .common.common-sub.faq .list-faq .item .right .btn-faq p {
    font-size: 16px;
    color: #fff;
    background: #aaaaaa;
    text-align: center;
    width: 140px;
    transition: all 0.5s;
    border: 1px solid #aaaaaa;
  }
  .common.common-sub.faq .list-faq .item .right .btn-faq:hover p {
    color: #aaaaaa;
    background: #fff;
    border: 1px solid #aaaaaa;
  }
  .common.common-sub.faq .list-faq .item .right .btn-faq span {
    width: 30px;
    height: 30px;
    background-color: #aaaaaa;
    border: 1px solid #aaa;
    border-radius: 50%;
    position: relative;
    transition: all 0.5s;
  }
  .common.common-sub.faq .list-faq .item .right .btn-faq span::after {
    content: "";
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-left: 10px solid #fff;
    border-right: 0 solid transparent;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    transition: all 0.5s;
  }
  .common.common-sub.faq .list-faq .item .right .btn-faq:hover span {
    background-color: #fff;
  }
  .common.common-sub.faq .list-faq .item .right .btn-faq:hover:hover span:after {
    border-left: 10px solid #aaaaaa;
  }
  .pagination ul.page-numbers {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .pagination li a.page-numbers,
  .pagination li span.page-numbers {
    padding: 4px 12px;
    min-width: 38px;
    font-size: 16px;
    background-color: #b8b8b8;
    color: #000;
    text-align: center;
    border-color: transparent;
  }
  .pagination li a.page-numbers.active,
  .pagination li span.page-numbers.current {
    background-color: #f1f1f1;
  }
  .pagination li a.page-numbers:hover {
    background-color: #f1f1f1;
  }
  
  @media screen and (max-width: 768px) {
    .common.common-sub.faq .list-faq .item {
      padding: 4px 0;
      gap: 4px;
      flex-direction: column;
    }
    .common.common-sub.faq .list-faq .item .left {
      max-width: 40px;
    }
    .common.common-sub.faq .list-faq .item .left p {
      font-size: 12px;
    }
    .common.common-sub.faq .list-faq .item .mid a span {
      font-size: 12px;
      line-height: 1.6;
    }
    .common.common-sub.faq .list-faq .item .right {
      max-width: 120px;
    }
    .common.common-sub.faq .list-faq .item .right .btn-faq {
      gap: 4px;
    }
    .common.common-sub.faq .list-faq .item .right .btn-faq p {
      font-size: 12px;
      width: 80px;
    }
    .common.common-sub.faq .list-faq .item .right .btn-faq span {
      width: 20px;
      height: 20px;
    }
    .common.common-sub.faq .list-faq .item .right .btn-faq span::after {
      border-left: 8px solid #fff;
      border-right: 0 solid transparent;
      border-top: 5px solid transparent;
      border-bottom: 5px solid transparent;
    }
  }