@charset "utf-8";

/*　共通スタイル　*/
a {
  text-decoration: none;
}

sup {
  color: #000;
}

.flex-list li:hover {
  text-decoration: underline;
  opacity: 0.6;
  transition: 0.3s;
}

.model-list>li:first-of-type {
  margin-bottom: 1px;
}

.model-list>li:last-of-type {
  margin-top: 4.28rem;
}

.model-title {
  position: relative;
  background-color: #666;
  font-weight: 700;
  display: block;
  height: 50px;
  padding: 12px 20px 11px;
  cursor: pointer;
}

.model-title .text {
  color: #fff;
}

.btn-accordion {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 0;
  right: 0;
  background-color: #555;
}

.btn-accordion::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 15px;
  height: 2px;
  background-color: #fff;
}

/*　closeというクラスがついたら形状変化　*/
.btn-accordion.close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2px;
  height: 15px;
  background-color: #fff;
}

/*アコーディオンで閉じるエリア*/
.flex-list.close {
  display: none;
}

.flex-list .flex-item {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  padding: 10px 20px;
  border-bottom: 1px solid #ddd;
  outline: none
}

.flex-list .flex-item .img-container {
  width: 40px;
  height: 40px;
  margin-top: 0;
  margin-right: 40px;
}

.flex-list .flex-item::before {
  content: '';
  position: absolute;
  width: 17px;
  height: 17px;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background-image: url(../common/images/arrow-right.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.btn-arrow {
  display: block;
  margin-top: 3.28rem;
}

.btn-arrow a {
  background-color: #716F63;
  display: inline-block;
  width: auto;
}

/*　リスト共通スタイル　*/
ul.disc {
  margin-top: 2.14rem;
  font-size: 0.85rem;
}

ul.square>li::before {
  content: "\25a0";
  margin-right: 0.5em;
}

ul.square {
  margin-left: 1.4em;
}
ul.square>li {
  margin-top: 1.5em;
  text-indent: -1.4em;
}

ul.square ul li {
  list-style-type: disc;
  padding-left: 0.4em;
}

/*　無線LAN接続に必要なもの 共通スタイル　*/
#sub03 li.text {
  list-style-type: none;
  margin-top: 0.3em;
  padding-left: 0;
  font-size: 0.85rem;
}

#sub03 p.text {
  font-size: 0.85rem;
  margin-top: 2.0rem;
}

span.star {
  color: #00a0e9;
}

/* SP */
@media only screen and (max-width: 767px) {
  .btn-arrow a {
    padding-right: 2.0em;
    padding-left: 2.6em;
  }

  .img-container {
    margin-top: 2.15rem;
  }
}

/* PC */
@media print,
screen and (min-width: 768px) {
  .flex-list {
    display: flex;
    flex-wrap: wrap;
  }

  .flex-list li {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .flex-list li:nth-child(odd) {
    padding-right: 10px;
  }

  .flex-list li:nth-child(even) {
    padding-left: 10px;
  }

  .btn-arrow a {
    padding-left: 6.5rem;
    padding-right: 5.2rem;
  }

  /*　無線LAN接続に必要なもの PCスタイル　*/
  #sub03 .img-container {
    margin-top: 6.5rem;
    width: 80%;
  }
}