@font-face {
  font-family: 'BIZ-UDGothic';
  src: url(./../font/BIZ-UDGothic.ttf);
}

html, body {
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
  font-family: 'BIZ-UDGothic';
  touch-action: manipulation;
  background-color: #FFFFFF;
}

button {
  font-family: 'BIZ-UDGothic';
}

.guide_header {
  height: 48px;
  width: 100%;
  background-color: #002596;
  display: flex;
  align-items: center;
}

.guide_title {
  width: 100%;
  display: flex;
  align-items: center;
  color: #FFFFFF;
}

.tab_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin:20px 0;
}
.tab_wrapper:after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: #C4C4C4;
  display: block;
  order: -1;
  margin-bottom: 24px;
}

.tab_label {
  color: #FFFFFF;
  background-color: #002596;
  font-size: 12px;
  text-shadow: 0 -1px 0 rgba(0,0,0,.2);
  white-space: nowrap;
  text-align: center;
  margin: 7px 12px 0;
  padding: 6.5px .5em;
  order: -1;
  position: relative;
  cursor: pointer;
  border-radius: 5px 5px 0 0;
  border-color: #C4C4C4;
  flex: 1;
}
.tab_label:not(:last-of-type) {
  margin-right: 0px;
}
.tab_label:nth-child(n+3) {
  margin-left: 8px;
}

.tab_content {
  width: 100%;
  height: 0;
  overflow: hidden;
  display: none;
  /* margin: auto; */
  place-content: center;
  row-gap: 20px;
}

/* active tab */
.tab_switch:checked+.tab_label {
  background-color: #FFFFFF;
  color: #002596;
  border: 1px solid #C4C4C4;
  border-bottom: none;
  margin-top: 0px;
  padding: 10px .5em;
}
.tab_switch:checked+.tab_label+.tab_content {
  height: auto;
  overflow: auto;
  /* padding: 15px; */
  display: grid;
  transition: .5s opacity;
}
.tab_switch {
  display: none;
}


/* footer */
.footer_info {
  background-color:#F5F8FF; 
  width: 100%; 
}

.footer_info_title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 30px;
  padding-top: 40px;
  text-align: center;
  color: #202020;
}

.footer_info_area {
  margin: 0 10px;
  padding-bottom: 40px;
}

.default_footer_content {
  background-color: #FFFFFF;
  border: 1px solid #C4C4C4;
  border-radius: 4px;
  margin: 12px 0px 0px 0px;
  padding: 12px;
}
.default_footer_content>h3 {
  font-size: 16px;
  font-weight: 500;
  color: #002596;
  margin-top: 0px;
  text-align: left;
}
.default_footer_content>div {
  font-size: 14px;
}

.footer_copyright{
  width: 100%;
}

.copyright_multiple {
  margin : 24px auto;
  font-size: 14px;
  text-align: center;
}

.copyright_UniveresalMaaS {
  background-color: #002596;
  color: #FFFFFF;
  font-size: 16px;
  height: 48px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#translationNotice {
  position: fixed;
	bottom: 0px;
	padding-bottom: 12px; 
	width: 95%;
  left: 50%;
  transform: translateX(-50%);
}

.legend-block {
  display: flex;
  flex-direction: row;
  gap: 12px;
}

.legend-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.legend-name {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}


/* タブレット用 */
@media screen and (min-width: 481px) {

}

/* PC用 */
@media screen and (min-width: 960px) {
  /* .tab_wrapper {
    justify-content: center;
  } */

  .tab_content {
    max-width: 1000px;
    grid-template-columns: 488px 488px;
    column-gap: 24px;
    row-gap: 24px;
    place-items: center;
    /* margin: 0 10px; */
  }

  .guide_title {
    max-width: 1000px;
    margin: 0 auto;
  }

  .tab_label {
    max-width: calc((1000px - 8px * 2 - 6px * 6) / 3);
  }

  .default_footer_content {
    max-width: 976px;
    margin: 12px auto 0px auto;
  }
}