@charset "UTF-8";



/* aside infoLink2 20160810 */
.infoLink2 {
	margin-top: 60px;
  display: block;
  background: #f2ecd8;
  width: 910px;
  padding: 14px 30px 15px 30px;
}
@media (width < 969px) {
	.infoLink2 {
		display: none;
	}
}
.infoLink21 {
  display: block;
  width: 556px;
  height: 18px;
  margin: 0 auto;
}
.infoLink21 img {
  display: block;
  width: 556px;
  height: 18px;
}
.infoLink22 {
  display: table;
  width: 910px;
  margin: 14px auto 0 auto;
}
.infoLink221 {
  display: table-cell;
  vertical-align: middle;
  width: 358px;
}
.infoLink221 a,
.infoLink221 a img {
  display: block;
  width: 358px;
  height: 65px;
}
.infoLink222 {
  display: table-cell;
  vertical-align: middle;
  width: 250px;
  padding-left: 24px;
}
.infoLink222 a,
.infoLink222 a img {
  display: block;
  width: 250px;
  height: 45px;
}
.infoLink21SP,
.infoLink22SP {
  display: none;
}
.topFeature {
  width: 928px;
  margin: 40px auto 0 auto;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.topFeature dl {
  display: table;
  width: 100%;
  margin-top: 10px;
  font-size: 114%;
}
.topFeature dl dt {
  display: table-cell;
  vertical-align: top;
  width: 5em;
}
.topFeature dl dt span {
  display: block;
  width: 4em;
  background: #ccc;
  border-radius: 5px;
  text-align: center;
}
.topFeature dl dd {
  display: table-cell;
  vertical-align: top;
}



/*********************特商法***********************/

.scta_title {
    padding: 3% 0;
    font-size: 18px;
    line-height: 2;
}
@media (width < 969px) {
  .scta_title {
    text-align: center;
  }
}

.scta-contens{
  width: min(100%, 970px);
  margin: auto;
}

.scta__table {
	border-collapse: collapse;
	border-spacing: 0;
	border-top: 1px solid #eee;
	border-left: 1px solid #eee;
  font-size: 16px;
  width: 100%;
}

.scta__table th {
	border-bottom: 1px solid #eee;
	border-right: 1px solid #eee;
	background: #f9f9f9;
	padding: 20px;
  font-weight: bold;
	font-size: .9rem;
  box-sizing: border-box;
  width: 14em;
}
@media (width < 969px) {
  .scta__table th {
      width: 8em;
    }
}

.scta__table td {
	padding: 20px;
	border-bottom: 1px solid #eee;
	border-right: 1px solid #eee;
	font-size: .8rem;
}

.scta__table td a {
	color: #000000;
	text-decoration: none;
}
.scta__table td a:hover {
	color: #5cc400;
	text-decoration: underline;
}

.center_box{
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px 20px;
  
  a{
    margin: 0;
  }
}


/* モーダルの基本スタイル */
.modal {
  display: none; /* 初期状態では非表示 */
  position: fixed; /* 画面に固定 */
  z-index: 1000; /* 他の要素より手前に表示 */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4); /* 背景を半透明の黒に */
}

.modal-content {
  background-color: #fefefe;
  margin: 30px auto; /* 画面中央に配置 */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* 幅は適宜調整 */
  max-width: 600px; /* 最大幅 */
  position: relative;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  animation-name: animatetop;
  animation-duration: 0.4s;

  h2{
    font-size: 1.5em;
    font-weight: bold;
  }

  ul{
    .email-box{
      display: flex;
        margin-top: 10px;

        h3{
          width: 12em;
        }
        @media (width < 969px) {
          h3{
            width: auto;
          }
        }
    }
    @media (width < 969px) {
      .email-box{
        display: block;
      }
    }
  }
}

/* アニメーション */
@keyframes animatetop {
  0%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}

#openModalBtn{
  margin-left: 1em;
}

/* 閉じるボタン */
.close-button {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
}

.close-button:hover,
.close-button:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}


/******************全体レスポンシブ******************/
