#privacymark-list td{
    border: none;
}

.toggle-table {
	cursor: pointer;
    margin-bottom: 2rem;
    padding: 1.1rem 2.5rem 1.2rem 1.8rem;
/*     border-left: 0.4rem solid #0065c8; */
    background-color: #064787;
    color:#fff;
    font-size: 1.7rem;
    position: relative;
}

.toggle-table::after {
  content: "\025b2";
  position: absolute;
  right:20px;
}

.open::after {
  content: "\025bc";
  position: absolute;
  right:20px;
}

.toggle-table:hover {
	opacity:0.7;
}

@media (min-width: 46.25em) {
	.toggle-table {
	    margin-bottom: 3.1rem;
	    padding-top: 1.8rem;
	    padding-bottom: 1.8rem;
	    padding-left: 2.4rem;
	    border-left-width: 0.4rem;
	    font-size: 2rem;
	}
}


.privacy-mark-lists .privacy-mark-box {
  width: calc(100% / 2 - 20px);
  margin-bottom: 20px;
}

.privacy-mark-lists .privacy-mark-box:nth-child(2n) {
  margin-right: 0;
}

.privacy-mark-lists .privacy-mark-box img {
  display: block;
  line-height: 0;
  margin: 0 auto;
}

.privacy-mark-lists .privacy-mark-box a {
  display: block;
  margin-top: 10px;
  text-align: center;
}

@media (min-width: 46.25em) {
  .privacy-mark-lists {
    display: flex;
    box-sizing: border-box;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .privacy-mark-lists .privacy-mark-box {
    flex: 0 0 calc(100% / 6 - 20px);
  }

  .privacy-mark-lists .privacy-mark-box:nth-child(-n+2) {
    flex: 0 0 calc(45% - 20px);
  }

    .privacy-mark-lists .privacy-mark-box:nth-child(5n){
    margin-right: 0;
  }
  .privacy-mark-lists .privacy-mark-box:nth-child(1) {
    padding-left: 200px;
  }
  .privacy-mark-lists .privacy-mark-box:nth-child(2) {
    padding-right: 200px;
  }
  #ismap::before {
  content: "";
  display: block;
  height: 73px;
  margin-top: -73px;
}
}


.privacy-mark-lists .privacy-mark-box:nth-child(2)::after {
  content: "";
  flex: 0 0 100%;
  width: 0;
  height: 0;
}

/*****************************************************************************
 フレックス
 *****************************************************************************/
.flex {
	display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.flex.jc-center {
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}
.flex.wrap {
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
