@charset "utf-8";

/*------ リセット ------*/
a, a:link, a:active {
  color: #333;
  text-decoration: none;
}

/*------ メインコンテンツ ------*/
.container {
  box-sizing: border-box;
  padding: 15vh 16px 0;
  text-align: center;
  width: 100%;
}
.header {
  position: fixed;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 24px;
  padding: 48px 0 12px;
  background: #fff;
}
.flex-container {
  display: flex;
  justify-content: space-between;
}
.flex-container .left-arrow {
  position: absolute;
  left: 20px;
}
.flex-container .title {
  margin: 0 auto;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}
.flex-container .close {
  position: absolute;
  right: 20px;
}

p {
  font-size: 14px;
}

.note-examination {
  font-size: 12px;
  margin-top: 16px;
  text-align: left;
	color: #666;
	line-height: 140%;
}

/* メインヘッダ〜説明 */
.main-h2 {
  font-weight: 700;
  font-size: 22px;
  line-height: 125%;
  text-align: center;
  color: #333;
  margin-bottom: 24px;
}
.main-description {
  font-weight: 400;
  font-size: 12px;
  line-height: 125%;
  text-align: center;
  color: #333;
  margin-bottom: 14px;
}


/* パネルリンク */
.badge-easy {
  position: relative;
}
.badge-easy::before {
  position: absolute;
  display: inline-block;
  content: 'かんたん';
  z-index: 10;
  white-space: nowrap;
  top: -6px;
  left: -4px;
  padding: 3px 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  border-radius: 40px;
  background-color: #eb5505;
}
.panel-link {
  display: flex;
  border: 2px solid #eaeaea;
  border-radius: 8px;
  border: 1px solid #EBEBEB;
  padding: 16px;
  text-decoration: none;
  align-items: center;
  margin-bottom: 16px;
}

.img-card {
  width: 65px;
  flex: 0 0 65px;
}
.img-card img {
  width: 65px;
}

.link-header {
  display: flex;
}
.description {
  flex: 1 1 auto;
  padding: 0 10px;
}
.left-arrow-icon {
  width: 24px;
  height: 24px;
}
.panel-title {
  text-align: left;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  padding-bottom: 2px;
}
.panel-subtitle {
  display: block;
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0%;
  color: #EB5505;
  white-space: nowrap;
  padding-bottom: 4px;
}
.nfc-icon {
  width: 24px;
  height: 24px;
}
.details {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  text-align: left;
}




.radio {
  position: relative;
  height: auto;
  margin-top: 12%;
  padding: 10px 10px;
  border: 2px solid #eaeaea;
  border-radius: 5px;
  background: rgba(255, 255, 255, .5);
}
.jpki {
  min-height: 80px;
}
.ekyc {
  min-height: 64px;
}
.radioInside {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.card {
  display: flex;
  align-items: center;
}
.licenseRadio {
  /*display: flex;
  align-items: center;*/
  margin-top: 8px;
  margin-bottom: 8px;
  text-decoration: none;
}
.mynumberRadio {
  display: flex;
  margin-top: 8px;
  margin-bottom: 8px;
  text-decoration: none;
}
.radio p, .licenseRadio p {
  padding-left: 16px;
  color: #333;
  font-size: 16px;
  font-weight: bold;
  line-height: 120%;
}
.mynumberTitle {
  display: flex;
  align-items: center;
  gap: 3px;
}
.radio span, .licenseRadio span {
  padding-top: 5px;
  padding-left: 16px;
  color: #333;
  font-size: 13px;
  font-weight: 300;
  line-height: 160%;
  text-align: left;
}
.description {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.radioButtons {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 32px;

  justify-items: center;
}
.radioButtonCard {
  height: 40px;
  opacity: 1;
}
.selectArrow {
  left: 8px;
  width: 12px;
  height: 12px;
  margin-right: 6px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  border-top: 2px solid #eb5505;
  border-right: 2px solid #eb5505;
}

/*------ モーダルエリア ------*/
.overlay {
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  height: 100vh;
  transition: .3s;
  background: rgba(0, 0, 0, .6);
  opacity: 0;
}
.overlay.active {
  visibility: visible;
  opacity: 1;
}
.modal {
  display: flex;
  visibility: hidden;
  justify-content: space-between;
  flex-direction: column;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 30;
  width: 80%;
  padding: 32px 20px 20px;
  transition: .3s;
  transform: translate(-50%, -50%);
  border-radius: 12px;
  background: #fff;
  opacity: 0;
}
.modalContents {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-items: center;
}
.modal-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
}
.modal-list {
  text-align: left;
  margin-bottom: 32px;
}
.modal.active {
  visibility: visible;
  opacity: 1;
}
.modal .close {
  width: 100%;
  padding: 16px 0;
  color: #333;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
  transition: .3s;
  border: 0;
}
.modal h2 {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
}
.modal p {
  font-size: 14px;
  font-weight: 300;
  line-height: 23px;
}
.modal-buttons {
  width: 100%;
}
.button {
  display: block;
  width: 100%;
  padding: 15px 10px;
  border: 2px solid #eb5505;
  border-radius: 9px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.22;
  text-align: center;
  background: #eb5505;
  box-sizing: border-box;
}
.button.white {
  border: 2px solid #fff;
  color: #333;
  background: #fff;
  margin-top: 12px;
}

@media screen and (max-width: 340px) {
  .radio p {
    font-size: 14px;
  }
}

@media screen and (max-width: 375px) {
  .modal button {
    font-size: 14px;
  }
  .modal p {
    font-size: 13px;
    line-height: 20px;
  }
  .modal .close {
    font-size: 14px;
  }
}


/* Accordion
------------------------------------------------------------------------------------------------ */

.accordion {
  width: 100%;
  margin: 1em 0;
}
.accordion li {
  list-style: none;
	border-bottom: 1px solid #ccc;
}
.accordion li.noline {
  list-style: none;
	border-bottom: none;
}
.accordion li.noline ul li {
	border-bottom: none;
}
.accordion .ac-head {
  position: relative;
  margin: 0;
	font-size: 14px;
	font-weight: 700;
	color: #5a78c8;
	display: flex;
	justify-content: center;
	align-items: center;
  padding: .8em 0;
	border-top: 2px solid #ebebeb;
  cursor: pointer;
	transition: .2s;
}
.accordion .ac-head:hover {
	opacity: .8;
	transition: .2s;
}
.accordion .ac-head::after {
  content: "";
	margin: -.4em 0 0 1em!important;
  transition: all 0.2s ease-in-out;
  display: flex;
	width: 8px;
	height: 8px;
  border-top: solid 2px #5a78c8;
  border-right: solid 2px #5a78c8;
  transform: rotate(135deg);  
}

.accordion .ac-head.open::after {
  transform: rotate(-45deg);
	margin: .3em 0 0 1em!important;
}
.accordion .ac-content {
	margin: 0;
  padding: 1em;
	border: 2px solid #eaeaea;
	border-radius: 5px;
}

.info {
  background: #eef6ff;
  border-radius: .8em;
  text-align: left;
  padding: 1em;
}
.info p.head {
  font-weight: 700;
}
.info p.head::before {
  display: inline-block;
  content: "";
  background: url(../../icon-info.png) no-repeat;
  background-size: cover;
  width: 14px;
  height: 14px;
  margin: -2px .3em;
}
.info p.small {
  font-size: 12px;
  color: #999;
}
.indent {
  margin-left: 22px;
}




