/* stylelint-disable */

/*コンテンツ幅
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

.inner {
  position: relative;
  margin: auto;
  width: 100%;
  box-sizing: border-box;
}

@media screen and (min-width: 1040px) {
  .inner {
    padding: 0 40px;
    max-width: 1040px;
  }
  .popup-box {
    margin: 0 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1039px) {
  .inner {
    padding: 0 25px;
    max-width: 1039px;
  }
  .handling-list__contents {
    transform-origin: top left;
    width: 989px;
  }
  .popup-box {
    margin: 0 25px;
  }
}
@media screen and (min-width: 576px) and (max-width: 767px) {
  .inner {
    padding: 0 20px;
  }
  .popup-box {
    margin: 0 20px;
  }
}
@media screen and (max-width: 575px) {
  .inner {
    padding: 0 14px;
  }
  .popup-box {
    margin: 0 14px;
  }

  .service-search-item span {
    display: block;
    margin: 15px 0 0;
    color: #203d95;
    font-weight: bold;
    font-size: 14px;
  }
}

/*コンテンツ幅
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

@media screen and (min-width: 769px) {
  .ignore-pc {
    display: none;
  }

  #search-store {
    padding: 60px 0;
  }

  #search-store .sec-header {
    display: block;
    text-align: center;
  }
  .pankuzu-nav {
    padding: 25px 10px 0;
    margin: auto;
    max-width: 980px;
  }
  .pankuzu-nav ul {
    font-size: 0;
  }
  .pankuzu-nav li {
    display: inline;
    font-size: 14px;
  }
  .pankuzu-nav li a {
    color: #203d95;
  }
  .pankuzu-nav li a:hover {
    text-decoration: underline;
  }
  .pankuzu-nav li:after {
    content: ">";
    padding: 0 6px 0 7px;
    display: inline;
    font-size: 14px;
  }
  .pankuzu-nav li:last-child:after {
    display: none;
  }
  .pankuzu-nav-box + section {
    border-top: none;
  }

  .bd-item a {
    position: relative;
    display: block;
    height: 100%;
    text-align: center;
    border: 2px solid #203d95;
    border-radius: 5px;
    box-sizing: border-box;
    box-shadow: 0 0 6px 0px rgba(0, 0, 0, 0.3);
  }

  .sec-header i {
    display: block;
    line-height: 1.2;
    font-weight: bold;
  }
  .sec-col-header {
    padding: 0 0 30px;
  }
  .sec-col-header h3 {
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    color: #003f98;
  }
  .sec-col + .sec-col {
    margin-top: 40px;
    padding-top: 35px;
    border-top: 1px solid #eee;
  }

  .store-search-box {
    padding: 40px 0 0;
  }

  #store-search-list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 24px 24px;
  }
  .store-search-item {
    display: flex;
  }
  .store-search-item a {
    width: 100%;
    display: flex;
    text-align: center;
    flex-direction: column;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.2);
  }
  .store-search-item a:hover {
    opacity: 0.7;
    transition: opacity ease 300ms;
  }
  .store-search-item figure {
    position: relative;
  }

  .store-search-item i {
    padding: 10px;
    display: flex;
    flex-grow: 1;
    width: 100%;
    text-align: left;
    font-size: 12px;
    word-break: break-all;
    line-height: 1rem;
    border-top: 1px solid #eee;
  }
  .store-search-item i span {
    display: block;
    width: 100%;
  }
  .store-search-item.new figure:before {
    content: "NEW";
    position: absolute;
    top: 5px;
    left: 5px;
    display: inline-block;
    color: #fff;
    font-size: 10px;
    width: 42px;
    height: 16px;
    line-height: 16px;
    border-radius: 8px;
    text-align: center;
    background: #fc1050;
  }

  .store-search-item .vdm {
    content: "";
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 26px;
    height: 23px;
  }

  .store-search-item .vdm img {
    vertical-align: top;
    width: 100%;
    height: auto;
  }

  #genre-search-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 18px 18px;
  }
  .genre-search-item {
    position: relative;
  }
  .genre-search-item a {
    position: relative;
    padding: 25px 0 15px;
  }
  .genre-search-item a:hover {
    opacity: 0.7;
    transition: opacity 300ms ease;
  }
  .genre-search-item a:after {
    position: absolute;
    content: "";
    display: block;
    margin: auto;
    top: 0;
    right: 10px;
    bottom: 0;
    width: 8px;
    height: 12px;
    background: url(/assets/img/common/arrow_r_bl.png) 0 0 no-repeat;
    background-size: 100% 100%;
  }
  .genre-search-item figure {
    margin: auto;
    width: 107px;
  }
  .genre-search-item span {
    display: block;
    padding: 15px 0 0;
    color: #203d95;
    font-weight: bold;
    font-size: 14px;
  }

  #service-search-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 24px 24px;
  }
  .service-search-item a {
    position: relative;
    padding: 25px 0 15px;
  }
  .service-search-item a:hover {
    opacity: 0.7;
    transition: opacity 300ms ease;
  }
  .service-search-item a:after {
    position: absolute;
    content: "";
    display: block;
    margin: auto;
    top: 0;
    right: 10px;
    bottom: 0;
    width: 8px;
    height: 12px;
    background: url(/assets/img/common/arrow_r_bl.png) 0 0 no-repeat;
    background-size: 100% 100%;
  }
  .service-search-item figure {
    margin: auto;
    width: 145px;
  }
  .service-search-item span {
    display: block;
    margin: 15px 0 0;
    color: #203d95;
    font-weight: bold;
    font-size: 14px;
  }
  .service-search-item span br {
    display: none;
  }
  #search-store .btn-link {
    margin: 0 auto;
  }
  #search-store #store-search-list + .btn-link-bl,
  #search-store #store-search-list + .btn-link,
  #search-store .vdm-content + .btn-link-bl,
  #search-store .vdm-content + .btn-link {
    margin-top: 45px;
  }

  /* #convenient  */

  #convenient-list {
    margin: auto;
    width: 580px;
  }
  .convenient-item + .convenient-item {
    margin-top: 30px;
  }
  .convenient-item a {
    position: relative;
    display: block;
    width: 100%;
    height: 220px;
  }
  .convenient-item a:hover {
    opacity: 0.7;
    transition: opacity 300ms ease;
  }
  .convenient-item span {
    margin: 15px 0 0;
    display: block;
    text-align: left;
    font-size: 14px;
    line-height: 1.5;
  }

  /* btn  */
  .btn-link-bl {
    margin: auto;
    width: 540px;
  }
  .btn-link-bl + .btn-link-bl {
    margin-top: 15px;
  }
  .btn-link-bl a {
    position: relative;
    display: block;
    height: 54px;
    line-height: 50px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    border: 2px solid #203d95;
    border-radius: 5px;
    box-sizing: border-box;
    box-shadow: 0 0 4px 0px rgba(0, 0, 0, 0.3);
    background: #203d95;
  }
  .btn-link a:hover,
  .btn-link-bl a:hover {
    opacity: 0.7;
    transition: opacity 300ms ease;
  }
  .btn-link-bl a:after {
    position: absolute;
    content: "";
    display: block;
    margin: auto;
    top: 0;
    right: 15px;
    bottom: 0;
    width: 8px;
    height: 12px;
    background: url(/assets/img/common/arrow_r_wh.png) 0 0 no-repeat;
    background-size: 100% 100%;
  }

  .vdm-content {
    width: 540px;
    background: #f5f5f5;
    display: flex;
    justify-content: center;
    padding: 27px 40px 26px 22px;
    margin: 40px auto 0;
    align-items: center;
    border-radius: 10px;
  }
  .vdm-content-img {
    width: 100px;
    height: 100px;
    flex: none;
  }
  .vdm-content-text {
    margin-left: 17px;
    font-size: 16px;
    color: #707070;
    line-height: 1.65;
  }
  .vdm-content-link {
    color: #203d95;
    text-decoration: underline;
    font-weight: bold;
  }
}

@media screen and (max-width: 860px) {
  #genre-search-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 18px 18px;
  }
  #service-search-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 18px 18px;
  }
}

@media screen and (max-width: 768px) {
  .ignore-sp {
    display: none;
  }

  #search-store {
    padding: 30px 0;
  }
  .sec-header h2 span {
    font-size: 20px;
    font-weight: bold;
    color: #003f98;
  }

  #search-store .sec-header h2 {
    display: block;
    text-align: center;
  }
  .sec-header i {
    display: block;
    line-height: 1.2;
    font-weight: bold;
  }
  .sec-col-header {
    padding: 0 0 20px;
  }
  .sec-col-header h3 {
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    color: #003f98;
  }
  .sec-col + .sec-col {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
  }

  .pankuzu-nav {
    padding: 18px 10px 0;
  }
  .pankuzu-nav ul {
    font-size: 0;
  }
  .pankuzu-nav li {
    display: inline-block;
  }
  .pankuzu-nav li a {
    color: #203d95;
    font-size: 12px;
  }
  .pankuzu-nav li span {
    font-size: 12px;
  }
  .pankuzu-nav li:after {
    content: ">";
    padding: 0 4px 0 6px;
    display: inline;
    font-size: 12px;
  }
  .pankuzu-nav li:last-child:after {
    display: none;
  }
  .pankuzu-nav-box + section {
    border-top: none;
  }

  .store-search-box {
    padding: 20px 0 0;
  }
  #store-search-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 12px 12px;
  }

  .store-search-item {
    display: flex;
  }
  .store-search-item a {
    display: flex;
    text-align: center;
    flex-direction: column;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.3);
  }
  .store-search-item figure {
    position: relative;
  }
  .store-search-item i {
    padding: 5px;
    display: flex;
    flex-grow: 1;
    width: 100%;
    text-align: left;
    font-size: 10px;
    line-height: 1rem;
    word-break: break-all;
    border-top: 1px solid #eee;
  }
  .store-search-item i span {
    display: block;
    width: 100%;
  }
  .store-search-item.new figure:before {
    content: "NEW";
    position: absolute;
    top: 5px;
    left: 5px;
    display: inline-block;
    color: #fff;
    font-size: 10px;
    width: 42px;
    height: 16px;
    line-height: 16px;
    border-radius: 8px;
    text-align: center;
    background: #fc1050;
  }

  .store-search-item .vdm {
    content: "";
    position: absolute;
    bottom: 4px;
    right: 2.5px;
    width: 21px;
    height: 18.5px;
  }

  .store-search-item .vdm img {
    vertical-align: top;
  }

  .bd-item a {
    position: relative;
    display: block;
    height: 100%;
    text-align: center;
    border: 2px solid #203d95;
    border-radius: 5px;
    box-sizing: border-box;
    box-shadow: 0 0 6px 0px rgba(0, 0, 0, 0.3);
  }

  #genre-search-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 12px 12px;
  }

  .genre-search-item {
    position: relative;
  }
  .genre-search-item a {
    position: relative;
    padding: 25px 0 15px;
  }
  .genre-search-item a:after {
    position: absolute;
    content: "";
    display: block;
    margin: auto;
    top: 0;
    right: 10px;
    bottom: 0;
    width: 8px;
    height: 12px;
    background: url(/assets/img/common/arrow_r_bl.png) 0 0 no-repeat;
    background-size: 100% 100%;
  }
  .genre-search-item figure {
    margin: auto;
    width: 107px;
  }
  .genre-search-item span {
    display: block;
    padding: 15px 0 0;
    color: #203d95;
    font-weight: bold;
    font-size: 14px;
  }

  #service-search-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 12px 12px;
  }
  .service-search-item {
    position: relative;
  }
  .service-search-item a {
    padding: 20px 0 5px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
  }
  .service-search-item:after {
    position: absolute;
    content: "";
    display: block;
    margin: auto;
    top: 0;
    right: 10px;
    bottom: 0;
    width: 8px;
    height: 12px;
    background: url(/assets/img/common/arrow_r_bl.png) 0 0 no-repeat;
    background-size: 100% 100%;
  }
  .service-search-item figure {
    margin: auto;
    max-width: 117px;
  }
  .service-search-item span {
    display: flex;
    margin: 10px 10px 0;
    justify-content: center;
    line-height: 1.5;
    height: 3rem;
    align-items: center;
    color: #203d95;
    font-weight: bold;
    font-size: 14px;
  }
  #search-store .btn-link {
    margin: 0 auto;
    width: 100%;
  }
  #search-store #store-search-list + .btn-link-bl,
  #search-store #store-search-list + .btn-link,
  #search-store .vdm-content + .btn-link-bl,
  #search-store .vdm-content + .btn-link {
    margin-top: 30px;
  }

  /* #convenient  */
  .convenient-item + .convenient-item {
    margin-top: 25px;
  }
  .convenient-item a {
    position: relative;
    display: block;
    width: 100%;
  }
  .convenient-item span {
    margin: 10px 0 0;
    display: block;
    text-align: left;
    font-size: 14px;
    line-height: 1.5;
  }
  .convenient-item img {
    max-width: 100%;
  }

  /* btn  */

  .btn-link-bl + .btn-link-bl {
    margin-top: 15px;
  }

  .btn-link-bl a {
    position: relative;
    display: block;
    height: 54px;
    line-height: 50px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    border: 2px solid #203d95;
    border-radius: 5px;
    box-sizing: border-box;
    box-shadow: 0 0 4px 0px rgba(0, 0, 0, 0.3);
    background: #203d95;
  }
  .btn-link-bl a:after {
    position: absolute;
    content: "";
    display: block;
    margin: auto;
    top: 0;
    right: 20px;
    bottom: 0;
    width: 8px;
    height: 12px;
    background: url(/assets/img/common/arrow_r_wh.png) 0 0 no-repeat;
    background-size: 100% 100%;
  }

  .vdm-content {
    width: 100%;
    background: #f5f5f5;
    display: flex;
    justify-content: center;
    padding: 32px 36px 36px 17px;
    margin: 30px auto 0;
    align-items: center;
    border-radius: 10px;
  }
  .vdm-content-img {
    width: 90px;
    height: 90px;
    flex: none;
  }
  .vdm-content-text {
    margin-left: 12px;
    font-size: 16px;
    color: #707070;
    line-height: 1.65;
  }
  .vdm-content-link {
    color: #203d95;
    text-decoration: underline;
    font-weight: bold;
  }
}

@media screen and (max-width: 374px) {
  .genre-search-item figure {
    margin: auto;
    max-width: 100px;
  }
  .service-search-item figure {
    margin: auto;
    max-width: 100px;
  }
  .service-search-item span {
    margin: 0 -5px;
    font-size: 12px;
  }
}
