@charset "UTF-8";
article {
  padding-top: 50px;
  padding-bottom: 100px;
}
article h3 {
  margin: 15px 0;
  text-align: center;
  font-size: 2em;
  font-weight: bold;
}
article h4 {
  text-align: left;
  font-size: 1.6em;
  font-weight: bold;
  padding-bottom: 20px;
}
@media only screen and (max-width:767px) {
  article h4 {
    text-align: center;
    font-size: 1em;
  }
}
article .explain {
  display: flex;
  justify-content: left;
  padding-bottom: 20px;
}
article .closed {
  display: flex;
  justify-content: center;
  padding: 10px 0;
}
article .closed ul li {
  padding-left: 15px;
  display: block;
  position: relative;
  text-align: left;
  color: #ff0000;
  font-weight: bold;
}
article .closed ul li:before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
article .service {
  padding-top: 70px;
  padding-bottom: 50px;
  border-bottom: 1px solid #707070;
  width: 80%;
  margin: 0 auto;
}
@media only screen and (max-width:767px) {
  article .service {
    padding-top: 40px;
    width: 100%;
  }
}
article .service .tabs {
  display: flex;
  justify-content: space-between;
}
article .service .tab {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  margin: 10px;
  padding: 10px;
  color: #ffffff;
  background-color: #03346b;
  cursor: pointer;
}
@media only screen and (max-width:767px) {
  article .service .tab {
    margin: 1px;
    padding: 3px;
  }
}
article .service .tab.active {
  color: #03346b;
  border: 1px solid #03346b;
  background-color: #ffffff;
  font-weight: bold;
}
article .service .tab-content.active {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
article .service .tab-content {
  display: none;
  padding: 20px;
  animation: fade-in 0.5s ease-in;
}
article .service .tab-content h5 {
  text-align: left;
  font-size: 1.4em;
  font-weight: bold;
  padding-bottom: 20px;
}
@media only screen and (max-width:767px) {
  article .service .tab-content h5 {
    text-align: center;
  }
}
article .service .tab-content h6 {
  font-size: 1.4em;
  font-weight: bold;
  padding-bottom: 10px;
}
@media only screen and (max-width:767px) {
  article .service .tab-content h6 {
    text-align: center;
  }
}
article .service .tab-content .simcard {
  text-align: center;
  margin: 0 70px 30px;
  padding: 30px 10px;
  color: #be0000;
  background: #f5f5f5;
}
@media only screen and (max-width:767px) {
  article .service .tab-content .simcard {
    margin: 0 0 30px;
  }
}
article .service .tab-content .price {
  width: 100%;
}
@media only screen and (max-width:767px) {
  article .service .tab-content .price {
    width: 100%;
  }
}
article .service .tab-content .price .plan-content {
  width: 100%;
  animation: fade-in 0.5s ease-in;
  padding-top: 20px;
}
article .service .tab-content .price .plan-content .plan-detail {
  padding-bottom: 50px;
}
@media only screen and (max-width:767px) {
  article .service .tab-content .price .plan-content .plan-detail:last-child {
    padding-bottom: 0;
  }
}
article .service .tab-content .price .plan-content .plan-detail dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border: 1px solid #03346b;
}
article .service .tab-content .price .plan-content .plan-detail dl dt {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20%;
  background: #03346b;
  color: #ffffff;
  padding: 10px;
  border-right: 1px solid #03346b;
  border-bottom: 1px solid #ffffff;
}
article .service .tab-content .price .plan-content .plan-detail dl dt:last-of-type {
  border-bottom: none;
}
@media only screen and (max-width:767px) {
  article .service .tab-content .price .plan-content .plan-detail dl dt {
    width: 100%;
  }
}
article .service .tab-content .price .plan-content .plan-detail dl dd {
  width: 80%;
  padding: 10px 20px;
  border-bottom: 1px solid #03346b;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
article .service .tab-content .price .plan-content .plan-detail dl dd span {
  color: #ff0000;
  font-weight: bold;
}
article .service .tab-content .price .plan-content .plan-detail dl dd p {
  margin: 0;
}
article .service .tab-content .price .plan-content .plan-detail dl dd ul {
  margin-left: 0;
}
article .service .tab-content .price .plan-content .plan-detail dl dd:last-child {
  border-bottom: none;
}
@media only screen and (max-width:767px) {
  article .service .tab-content .price .plan-content .plan-detail dl dd {
    width: 100%;
    justify-content: center;
  }
}
article .service .tab-content .price .plan-content .plan-detail ul {
  margin-left: 20px;
}
article .service .tab-content .price .plan-content .plan-detail ul li {
  padding-left: 15px;
  display: block;
  position: relative;
  text-align: left;
}
article .service .tab-content .price .plan-content .plan-detail ul li:before {
  content: "・";
  position: absolute;
  left: -5px;
}
article .service .tab-content .price .plan-content .plan-detail p {
  margin-left: 20px;
}
article .service .tab-content .price .plan-content > ul {
  width: 60%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 10px;
  grid-row-gap: 0px;
  justify-content: center;
  align-items: stretch;
  text-align: center;
  margin: 20px auto;
}
@media only screen and (max-width:767px) {
  article .service .tab-content .price .plan-content > ul {
    width: 100%;
    grid-column-gap: 5px;
  }
}
article .service .tab-content .price .plan-content > ul li {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 10px;
  color: #ffffff;
  background-color: #03346b;
}
article .service .tab-content .price .plan-content .detail-tab.active3,
article .service .tab-content .price .plan-content .detail-tab.active4 {
  color: #03346b;
  border: 1px solid #03346b;
  background-color: #ffffff;
  font-weight: bold;
}
article .service .tab-content .price .plan-content .detail-content {
  display: none;
  animation: fade-in 0.5s ease-in;
}
article .service .tab-content .price .plan-content .detail-content.active3,
article .service .tab-content .price .plan-content .detail-content.active4 {
  display: block;
}
article .service .tab-content .price .plan-explain p {
  padding-bottom: 20px;
}
article .service .tab-content .price .plan-explain p:nth-child(3) {
  padding-bottom: 0;
}
article .service .tab-content .price .plan-explain ol {
  width: 100%;
  display: block;
  counter-reset: item;
  margin-left: 15px;
  padding-bottom: 20px;
}
@media only screen and (max-width:767px) {
  article .service .tab-content .price .plan-explain ol {
    margin-left: 0;
  }
}
article .service .tab-content .price .plan-explain ol li {
  cursor: pointer;
  padding-left: 30px;
  position: relative;
}
article .service .tab-content .price .plan-explain ol li::before {
  left: -5px;
  content: "（" counter(item) "）";
  counter-increment: item;
  position: absolute;
}
article .service .tab-content .price .plan-credit {
  display: flex;
  width: 100%;
  justify-content: center;
  list-style-type: none;
  padding: 10px 0;
}
@media only screen and (max-width:767px) {
  article .service .tab-content .price .plan-credit {
    flex-wrap: wrap;
  }
}
article .service .tab-content .price .plan-credit li {
  padding-right: 10px;
}
article .service .tab-content .price .plan-credit li:last-child {
  padding-right: 0;
}
article .service .tab-content .price .plan-credit li::before {
  content: none !important;
}
article .service .tab-content .area {
  width: 100%;
  padding-top: 20px;
}
article .service .tab-content .area a {
  text-decoration: underline;
}
article .service .tab-content .area ul {
  width: 100%;
  display: block;
  padding-bottom: 20px;
}
article .service .tab-content .area ul li {
  font-weight: bold;
  text-align: left;
  cursor: pointer;
  padding-left: 30px;
  padding-bottom: 30px;
  position: relative;
}
article .service .tab-content .area ul li::before {
  left: -5px;
  content: "＞＞　";
  position: absolute;
}
article .service .tab-content .howto {
  width: 100%;
  padding-top: 20px;
}
@media only screen and (max-width:767px) {
  article .service .tab-content .howto {
    width: 100%;
  }
}
@media only screen and (max-width:767px) {
  article .service .tab-content .howto h4 {
    text-align: left;
    font-size: 1.2em;
  }
}
article .service .tab-content .howto dl {
  counter-reset: item;
  list-style-type: none;
  padding-bottom: 30px;
}
article .service .tab-content .howto dl a {
  text-decoration: underline;
}
article .service .tab-content .howto dl dt {
  padding-bottom: 20px;
}
article .service .tab-content .howto dl dt::before {
  margin-left: -15px;
  content: counter(item) ".";
  counter-increment: item;
}
article .service .tab-content .howto dl dd {
  padding-bottom: 20px;
}
article .service .tab-content .howto dl dd span {
  color: #ff0000;
}
article .service .tab-content .howto dl dd .howto-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
article .service .tab-content .howto dl dd .howto-list li {
  width: 100px;
  aspect-ratio: 1/1;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 14px;
  border: 1px solid #03346b;
  box-sizing: border-box;
  padding: 8px 3px;
  word-break: break-all;
}
article .service .tab-content .howto dl dd .howto-list li .howto-small {
  font-size: 0.8em;
}
article .service .tab-content .member {
  width: 100%;
  padding-top: 20px;
}
@media only screen and (max-width:767px) {
  article .service .tab-content .member {
    width: 100%;
  }
}
article .service .tab-content .member a {
  text-decoration: underline;
}
article .service .tab-content .member h4 {
  padding-top: 50px;
}
@media only screen and (max-width:767px) {
  article .service .tab-content .member h4 {
    text-align: left;
    font-size: 1.2em;
  }
}
article .service .tab-content .member p {
  padding-bottom: 20px;
}
article .service .tab-content .member ul {
  list-style-type: disc;
  padding-left: 20px;
}
article .service .tab-content .member ul span {
  font-weight: bold;
}
article .service .tab-content .member dl {
  counter-reset: item;
  list-style-type: none;
  padding-bottom: 30px;
}
article .service .tab-content .member dl dt {
  padding-bottom: 20px;
}
article .service .tab-content .member dl dt::before {
  margin-left: -15px;
  content: "（" counter(item) "）";
  counter-increment: item;
}
article .service .tab-content .member dl dd {
  padding-bottom: 50px;
}
article .service .tab-content .member ol {
  counter-reset: item;
  list-style-type: none;
  padding: 30px 0;
  margin-left: 25px;
}
article .service .tab-content .member ol li {
  padding-bottom: 20px;
}
article .service .tab-content .member ol li::before {
  margin-left: -25px;
  content: "※" counter(item);
  counter-increment: item;
}
article .service .tab-content .member .diamond {
  list-style-type: none;
  padding-bottom: 30px;
  margin-left: 20px;
}
article .service .tab-content .member .diamond dt {
  padding-bottom: 0;
}
article .service .tab-content .member .diamond dt::before {
  margin-left: -15px;
  content: "◆";
}
article .service .tab-content .member .diamond dt:last-of-type {
  padding-top: 20px;
}
article .service .tab-content .member .diamond dd {
  padding-bottom: 0;
}
article .service .tabbottom_menu {
  display: block;
  width: 80%;
  background-color: #f0f0f0;
  padding: 10px;
  margin: 0 auto;
}
@media only screen and (max-width:767px) {
  article .service .tabbottom_menu {
    width: 100%;
    padding: 5px;
  }
}
article .service .tabbottom_menu ul {
  display: flex;
  justify-content: space-between;
  padding: 0;
  margin: 0 10px 0 10px;
}
@media only screen and (max-width:767px) {
  article .service .tabbottom_menu ul {
    justify-content: center;
    flex-wrap: wrap;
  }
}
article .service .tabbottom_menu ul li {
  display: inline-block;
  text-align: center;
}
@media only screen and (max-width:767px) {
  article .service .tabbottom_menu ul li {
    width: 50%;
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
article .commode {
  width: 80%;
  padding: 50px 0;
  border-bottom: 1px solid #707070;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media only screen and (max-width:767px) {
  article .commode {
    width: 100%;
  }
}
article .commode .commode_content h4 {
  font-weight: bold;
}
@media only screen and (max-width:767px) {
  article .commode .commode_content h4 {
    font-size: 1.2em;
  }
}
article .commode .commode_content p {
  text-align: center;
  padding-bottom: 20px;
}
article .commode .commode_content dl {
  text-align: left;
  padding-left: 20px;
}
@media only screen and (max-width:767px) {
  article .commode .commode_content dl {
    padding-left: 0;
  }
}
article .commode .commode_content dl dt {
  font-weight: bold;
}
article .commode .commode_content dl dd {
  padding-left: 30px;
  padding-bottom: 10px;
}
article .term {
  display: none;
  width: 80%;
  padding: 50px 0;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media only screen and (max-width:767px) {
  article .term {
    width: 100%;
  }
}
article .term .term_content,
article .term .term_content2 {
  display: none;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
article .term .term_content .term_detail,
article .term .term_content2 .term_detail {
  width: 25%;
  padding: 10px;
  margin: 0 auto;
}
@media only screen and (max-width:767px) {
  article .term .term_content .term_detail,
  article .term .term_content2 .term_detail {
    width: 100%;
  }
}
article .term .term_content .term_detail h4,
article .term .term_content2 .term_detail h4 {
  font-size: 16px;
  text-align: center;
}
@media only screen and (max-width:767px) {
  article .term .term_content .term_detail h4,
  article .term .term_content2 .term_detail h4 {
    font-size: 1.2em;
  }
}
article .term .term_content .term_detail ul,
article .term .term_content2 .term_detail ul {
  padding: 10px 0;
}
article .term .term_content .term_detail ul li,
article .term .term_content2 .term_detail ul li {
  background: #03346b;
  margin-bottom: 10px;
  text-align: center;
}
article .term .term_content .term_detail ul li a,
article .term .term_content2 .term_detail ul li a {
  display: block;
  width: 100%;
  padding: 10px;
  color: #ffffff;
}
article .term .term_content .term_detail ul li a::before,
article .term .term_content2 .term_detail ul li a::before {
  content: "≫ ";
}
article .term .term_content.active2 {
  display: flex;
}
article .term .term_content2 {
  display: flex;
}
article .term.active {
  display: flex;
}
article .entry {
  width: 80%;
  margin: 0 auto;
}
@media only screen and (max-width:767px) {
  article .entry {
    width: 100%;
  }
}
article .entry .entry_content {
  display: flex;
  justify-content: center;
  padding: 10px;
}
article .entry .entry_content .entry_button {
  width: 50%;
  background: #ff8c00;
  margin-bottom: 10px;
  text-align: center;
}
@media only screen and (max-width:767px) {
  article .entry .entry_content .entry_button {
    width: 100%;
  }
}
article .entry .entry_content .entry_button a {
  display: block;
  padding: 10px;
  color: #ffffff;
  width: 100%;
}
article .entry .entry_content .entry_button a::before {
  content: "≫ ";
}/*# sourceMappingURL=uniq.css.map */