@charset "utf-8";
/* CSS Document */

/*==============================================
  VARIABLES
==============================================*/
:root {
  --hirak2: "ヒラギノ角ゴ W2 JIS2004", "Hiragino Kaku Gothic W2 JIS2004", Sans-Serif;
  --hirak5: "ヒラギノ角ゴ W5 JIS2004", "Hiragino Kaku Gothic W5 JIS2004", Sans-Serif;
  --hiram6: "ヒラギノ明朝 W6 JIS2004", "Hiragino Mincho W6 JIS2004",serif;
  --hirak: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  --FA6: "Font Awesome 6 Free";
  --Zblue: #043491;
  --blue1: #032f9f;
  --blue2: #1772bd;
  --ltblue: #e7f5fe;
  --red: #dd2831;
  --white: #FFF;
  --black: #333;
  --grey: #777;
  --ltgrey: #CCC;
  --link: #003B83;
}

/*==============================================
  common layout
==============================================*/
*, *:before, *:after {
  box-sizing: border-box;
}
*:focus {
	outline: none;
}

html {
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
}
body {
  position: relative;
  font-family: var(--hirak2);
  font-size: 15px;
  line-height: 1.5;
  color: var(--black);
}

/*====== header ======*/
header {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  border-bottom: 1px solid var(--Zblue);
  -webkit-box-shadow: rgb(0 0 0 / 11%) 0 1px 3px, rgb(0 0 0 / 24%) 0 1px 3px;
  -moz-box-shadow: rgb(0 0 0 / 11%) 0 1px 3px, rgb(0 0 0 / 24%) 0 1px 3px;
  box-shadow: rgb(0 0 0 / 11%) 0 1px 3px, rgb(0 0 0 / 24%) 0 1px 3px;
}
header img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  margin-left: 1em;
  width: 158px;
  height: 60px;
}
@media screen and (max-width:520px) {
  header {
    position: static;
    display: block;
    height: auto;
  }
  header img {
    position: static;
    top: 0;
    transform: translateY(0%);
  }
}

/*====== footer ======*/
footer {
  margin-top: 45px;
	width: 100%;
	text-align: center;
	color: var(--white);
	background-color: var(--Zblue);
}
.ft-content {
	margin: 0 auto;
	width: 92%;
	max-width: 900px;
	height: 80px;
	display: flex;
	align-items: center;
	flex-direction: row;
	justify-content: space-between;
}
.ft-content .logo a {
	display: block;
	overflow: hidden;
	width: 130px;
	height: 32px;
	white-space: nowrap;
	text-indent: 100%;
	background: url("../images/zkai-logo-f.svg") 0 0 no-repeat;
	background-size: 100%;
}
.ft-content p {
	font-family: sans-serif;
	font-size: 0.8em;
	text-align: right;
	color: var(--white);
}
@media screen and (max-width:520px) {
	.ft-content {
		margin: 20px 0;
		flex-direction: column;
		justify-content: center;
		width: 100%;
		height: auto;
	}
	.ft-content .logo {
		margin-bottom: 15px;
	}
}

.container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main {
  margin: 0 auto;
  width: 94%;
  max-width: 800px;
  flex: 1;
}
section {
  margin: 60px auto;
  width: 100%;
}
section:first-of-type {
  margin-top: 30px; 
}
section:last-of-type {
 margin-bottom: 30px;
}

/*====== 目次 ======*/
nav {
  position: relative;
  margin: 30px auto 0;
  padding: 2px 5px 0;
  background-color: var(--white);
  border: 2px solid var(--blue1);
}
nav::before {
  position: absolute;
  content: "目次";
  padding: 0 6px;
  top: -18px;
  left: 10px;
  font-family: var(--hirak5);
  font-weight: bold;
  background-color: var(--white);
  color: var(--blue1);
  font-size: 1.3em;
}
nav ul li {
  position: relative;
  margin: 0;
  padding: 8px 0 8px 27px;
  list-style: none;
  font-size: 1.2em;
	font-family: var(--hirak5);
  font-weight: 700;
  border-bottom: 1px solid var(--link);
}
nav ul li:before {
  position: absolute;
  font-family: var(--FA6);
  content: "\f13a";
  font-weight: bold;
  top: 8px;
  left: 5px;
  color: var(--link);
  transition: all 0.8s ease-in-out;
}
nav ul li:last-of-type {
  border: none;
  margin: 0;
}
nav ul li:hover:before {
  -webkit-transform:rotateY(-360deg);
  transform:rotateY(-360deg);
  color: #4486EC;
}
nav ul a {
  display: block;
  width: 100%;
  text-decoration: none;
}
nav ul a:hover {
  color: #4486EC;
}

/*==============================================
  heading
==============================================*/
h2, h3, h4, h5, h6 {
  font-family: var(--hiram6);
  font-weight: bold;
  line-height: 1.3;
}
h2 {
  font-size: 180%;
  margin-bottom: 20px;
  padding: 0 3px 1px;
  border-bottom: 3px solid var(--blue1);
}
h3 {
  font-size: 150%;
  margin-bottom: 15px;
  padding: 8px 0 8px 10px;
  color: var(--blue2);
  border: 2px solid var(--blue2);
  border-left: 12px solid var(--blue2);
}
h4 {
  font-size: 150%;
  margin-bottom: 15px;
  padding: 0;
  text-align: center;
  color: var(--blue1);
}
h4 span {
  display: block;
  font-size: 82%;
}
h5 {
  font-size: 120%;
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
  color: var(--blue1);
}
h5:before {
  position: absolute;
  content: "◆";
  top: 0;
  left: 0;
}
h6.stA {
  font-size: 140%;
  margin-bottom: 15px;
  padding: 10px 15px;
  background-color: #003b83;
  color: var(--white);
  border-bottom: 4px solid #04b3ff;
}
h6.stB {
  position: relative;
  margin-bottom: 15px;
  padding: 5px;
  font-size: 130%;
  border-bottom: 1px solid #003b83;
}
h6.stB::before {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 4px #0363d7;
  bottom: -3px;
  left: 0;
  width: 20%;
}
@media screen and (max-width: 520px) {
  h2 {
    font-size: 140%;
  }
  h3 {
    font-size: 128%;
  }
  h4 {
    font-size: 123%;
  }
  h5 {
    font-size: 115%;
  }
  h6.stA, h6.stB {
    font-size: 125%;
  }
}

/*==============================================
  font-style
==============================================*/
sup {
  position: relative;
  vertical-align: baseline;
  top: -1ex;
  font-size:0.6em;
}
.text-note {
  position: relative;
  margin-top: 2px;
  padding-left: 1.1em;
  font-size: 84%;
  line-height: 1.3;
}
.text-note::before {
  position: absolute;
  content: '※';
  top: 0;
  left: 0;
  font-family: var(--hirak);
}

.text-note2 {
  font-size: 84%;
  line-height: 1.3;
  padding-left: 2em;
  text-indent: -2em;
}

.ttlM {
  font-family: var(--hirak5);
  font-weight: bold;
  border-bottom: 2px solid var(--ltgrey);
  font-size: 105%;
}
.ttlS1, .ttlS2, .ttlS3 {
  margin-bottom: 7px;
  padding: 2px 5px;
}
.ttlS1 {
  background: #dbedf4;
}
.ttlS2 {
  background: #bce2e6;
}
.ttlS3 {
  background: #cdd8e9;
}

em {
  color: var(--red);
  font-family: var(--hirak5);
  font-weight: bold;
}
mark {
	font-family: var(--hirak5);
  font-weight: bold;
	font-style: normal;
	background: linear-gradient(transparent 70%, #ADE1FF 70%);
}
.badge {
  padding: 1px 3px;
  background-color: #f67177;
  color: var(--white);
  font-size: 0.85em;
}

.txt-em-r, .txt-em-b {
  font-family: var(--hirak5);
  font-weight: bold;
}
.txt-em-b {
  color: var(--Zblue);
}
.txt-em-r {
  color: var(--red);
}

.fwB {
  font-family: var(--hirak5);
  font-weight: bold;
}

.tdul {
  text-decoration: underline;
}

/* font-size */
.fsxxs {
  font-size: 0.6em;
}
.fsxs {
  font-size: 0.8em;
}
.fsxl {
  font-size: 1.2em;
}
.fsxxl {
  font-size: 1.4em;
}
.fsxxxl {
  font-size: 1.8em;
}

/* 文字色 */
.txtRed {
  color: var(--red);
}
.txtBlue {
  color: var(--Zblue);
}
.txtEng, .txtMth, .txtJpn, .txtSci, .txtSoc {
  padding: 2px 4px;
  color: var(--white);
  font-size: 1.4em;
  text-align: center;
}
.txtEng { /* 英語 */
  background-color: #6e60a8;
}
.txtMth { /* 数学 */
  background-color: #00a5e3;
}
.txtJpn { /* 国語 */
  background-color: #e8465a;
}
.txtSci { /* 理科 */
  background-color: #43b149;
}
.txtSoc { /* 社会 */
  background-color: #f5a200;
}

/* 背景色 */
.txtbgB {
  padding: 3px 15px;
  font-family: var(--hirak5);
  font-weight: bold;
  background: var(--ltblue);
  letter-spacing: 1px;
}

/* icon */
.fa-chevron-right {
  margin: 0 5px;
}
.eng, .mth, .jpn, .sci, .soc {
  display: inline-block;
  margin: 0 1px;
  padding: 2px 4px;
  line-height: 1.1;
  color: var(--white);
  font-size: 13px;
  white-space: nowrap;
}
.eng { /* 英語 */
  background-color: #6e60a8;
}
.mth { /* 数学 */
  background-color: #00a5e3;
}
.jpn { /* 国語 */
  background-color: #e8465a;
}
.sci { /* 理科 */
  background-color: #43b149;
}
.soc { /* 社会 */
  background-color: #f5a200;
}


/*==============================================
  link
==============================================*/
a {
  text-decoration: underline;
  color: var(--link);
  font-size: 105%;
  word-break: break-all;
  transition: all .3s ease;
}
a:hover {
  text-decoration: none;
}

/* button */
.box-btn-link-area {
  margin: 15px 0;
  text-align: center;
}
.btn-link, .btn-linkF, .btn-linkR {
  position: relative;
  display: inline-block;
  min-width: 250px;
  padding: 12px 30px;
  background: var(--link);
  border: 2px solid var(--link);
  box-shadow: rgb(0 0 0 / 11%) 0 1px 3px, rgb(0 0 0 / 24%) 0 1px 3px;
  font-size: 1.3em;
  color: var(--white);
  border-radius: 4px;
  text-decoration: none;
  transition: all .5s;
}
.btn-link::after, .btn-linkF::after, .btn-linkR::after {
	position: absolute;
	display: inline-block;
	font-family: var(--FA6);
	content: "\f054";
  font-weight: bold;
  font-size: 90%;
	top: 50%;
  transform: translate(-50%, -50%);
	right: 0;
}
.btn-link:hover {
  background: var(--white);
  color: var(--link);
}

.btn-linkF {
  background: var(--white);
  border: 2px solid var(--link);
  color: var(--link);
}
.btn-linkF:hover {
  background: var(--link);
  color: var(--white);
}

.btn-linkR {
  background: #E10000;
  border: 2px solid #B10404;
  color: var(--white);
}
.btn-linkR:hover {
  background: var(--white);
  color: #E10000;
}
@media screen and (max-width: 520px) {
  .btn-link, .btn-linkF, .btn-linkR {
    padding: 12px 23px 12px 10px;
    font-size: 1.2em;
  }
}

/* text link */
.box-text-link-area {
  margin: 5px 0;
}
.text-link {
  position: relative;
  margin: 0;
  padding-left: 20px;
  display: block;
  color: var(--link);
}
.text-link::before {
  position: absolute;
  font-family: var(--FA6);
  content: "\f144";
  font-weight: bold;
  top: 0;
  left: 0;
  font-size: 96%;
  color: var(--link);
}

/*==============================================
  image
==============================================*/
img {
  max-width: 100%;
}

.box-image-area {
  margin: 5px 0;
  text-align: center;
}

.img-base {
  width: 100%;
}
.img-large {
  width: 80%;
  height: auto;
}
.img-middle {
  width: 60%;
  height: auto;
}
.img-small {
  width: 40%;
  height: auto;
}
.img-xsmall {
  width: 30%;
  height: auto;
}
.img-bd {
  border: 1px solid var(--grey);
}
@media screen and (max-width: 520px) {
  .img-large, .img-middle {
    width: 100%;
  }
}

/*==============================================
  table
==============================================*/
.box-table-area {
  margin: 10px 0;
}

table {
  width: 100%;
  max-width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  box-sizing: border-box;
}
th, td {
  padding: 5px;
  border: 1px solid #AAA;
  line-height: 1.4;
}
th {
  text-align: center;
  background-color: #efefff;
  word-break: break-all;
}
td {
  text-align: left;
  vertical-align: top;
  border-collapse: collapse;
}

@media screen and (max-width: 520px) {
  table {
    font-size: 90%;
  }
  th {
    white-space: normal;
  }
  th, td {
    padding: 5px 3px;
  }
}

.proc table thead th {
  background: var(--Zblue);
  color: var(--white);
}
.proc table thead th:nth-of-type(2) {
  width: 60%;
}
.proc table tbody td {
  vertical-align: middle;
}
.proc table tbody td:nth-of-type(2) {
  font-family: var(--hirak5);
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 520px) {
  .proc table tbody td:nth-of-type(2) {
    white-space: nowrap;
  }
}

/*==============================================
  frame
==============================================*/
/* 青罫線囲み */
.box-frame-A {
  margin: 5px 0 10px;
  padding: 15px;
  border: 1px solid var(--blue2);
  background-color: var(--white);
  box-shadow: rgb(0 0 0 / 11%) 0 1px 3px, rgb(0 0 0 / 24%) 0 1px 3px;
}
/* 水色塗 */
.box-frame-B {
  padding: 20px;
  background-color: #d8e9f6;
  box-shadow: rgb(0 0 0 / 11%) 0 1px 3px, rgb(0 0 0 / 24%) 0 1px 3px;
}

/* ポイントボックス */
.box-frame-Point {
  max-width: 550px;
  margin: auto;
  padding: 30px 15px;
  text-align: center;
}
.box-frame-Point P {
  text-align: left;
}

/* 手続き日付 */
.box-frame-day {
  display: flex;
  justify-content: center;
  font-size: 1.3em;
  font-family: var(--hirak5);
  font-weight: bold;
}
.box-frame-day .itemA {
  padding-right: 20px;
}
.box-frame-day .itemB {
  font-size: 2em;
  color: var(--red);
}
.box-frame-day .itemB span {
  font-size: .6em;
}
@media screen and (max-width: 520px) {
  .box-frame-day {
    flex-direction: column;
    font-size: 1.15em;
  }
  .box-frame-day .itemA,
  .box-frame-day .itemB {
    text-align: center;
  }
}

/* 映像 */
.video {
  margin: auto;
  width: 100%;
  max-width: 640px;
}
.video iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
  border: none;
}

/* フローチャート */
.flow {
  margin: 0 0 30px;
  display: flex;
  flex-diretion: row;
  flex-wrap: nowrap;
  justify-content: center;
}
.flow li {
  position: relative;
  min-width: 60px;
}
.flow > li.arrow::before {
  position: absolute;
  font-family: var(--FA6);
  content: "\f101";
  font-weight: bold;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 0;
  font-size: 200%;
}
.flow > li dl {
  padding: 20px 40px;
  background: var(--ltblue);
}
.flow > li dl dt {
  margin-bottom: 10px;
  text-align: center;
  line-height: 1.3;
}
.flow > li dl dd {
  font-family: var(--hirak5);
  font-weight: bold;
  font-size: 1.3em;
  text-align: center;
  line-height: 1.2;
}
.flow > li dl dd span {
  font-size: .7em;
}

@media(max-width: 580px){
  .flow {
    flex-direction: column;
  }
  .flow li {
    margin: 10px;
  }
  .flow > li.arrow::before {
    top: -10px;
    left: 40%;
    translate: 0 0;
    rotate: 90deg;
  }
}

/*==============================================
  list
==============================================*/
ul li, ol li {
  list-style: none;
}

/* disc */
ul.disc {
	margin: 0;
	padding: 0;
}
ul.disc li {
	position: relative;
	list-style-type: none;
	padding-left: 16px;
}
ul.disc li::before {
	position: absolute;
	display: block;
	content: '●';
	top: 3px;
	left: 0;
	color: var(--grey);
	font-size: 0.8em;
}

ul.chk li {
  padding-left: 22px;
  background-image: url("../images/chk.png");
  background-repeat: no-repeat;
  background-position: top 2px left;
  background-size: 17px;
}

/* Description list */
dd {
  margin: 0;
}

.howto dl {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
.howto dt {
  width: 26px;
  background: var(--Zblue);
  color: var(--white);
  font-size: 1.3em;
  text-align: center;
}
.howto dd {
  width: calc(100% - 26px);
  margin-bottom: 20px;
  padding-left: 1em;
}

/*==============================================
  details
==============================================*/
details {
  &::details-content {
    margin-bottom: 20px;
    padding: 15px;
    transition: height 0.4s, opacity 0.4s, content-visibility 0.4s allow-discrete;
    height: 0;
    opacity: 0;
    overflow: clip;
    border: 1px solid var(--Zblue);
  }
  &[open]::details-content {
    opacity: 1;
  }
}
@supports (interpolate-size: allow-keywords) {
  :root {
    interpolate-size: allow-keywords;
  }
  details[open]::details-content {
    height: auto;
  }
}
@supports not (interpolate-size: allow-keywords) {
  details[open]::details-content {
    height: 150px;
    overflow-y: scroll;
  }
}
summary {
  position: relative;
  padding: 12px 30px 12px 10px;
  border: 1px solid var(--Zblue);
  cursor: pointer;
  transition: all .8s;
  display: block;
  &::-webkit-details-marker {
    display: none;
  }
  &:hover {
    cursor: pointer;
    background: #003B83;
    color: #FFF;
  }
}
summary:hover {
  background: #FFF;
  color: #1155CC;
}
summary::-webkit-details-marker {
  display: none;
}
details[open] summary {
  background: #D2E1FF;
  color: #1155CC;
  border-bottom: none;
}
summary:after,
details[open] summary:after {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  right: -7px;
  font-size: 150%;
}
summary:after {
  content: "＋";
}
details[open] summary:after {
  content: "－";
}

/*==============================================
  arrow
==============================================*/
.arrows {
  position: relative;
  margin: 0 0 -40px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px;
}
.arrows .arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 10px;
  opacity: 0;
}
.arrows .arrow:first-child {
  animation: arrow-move08 2s ease-in-out infinite;
}
.arrows .arrow:nth-child(2)  {
  animation: arrow-move08 2s 1s ease-in-out infinite;
}
.arrows .arrow:before,
.arrows .arrow:after {
  position: absolute;
  content: '';
  top: 0;
  width: 45px;
  height: 2px;
  background: var(--blue2);
}
.arrows .arrow:before {
  left: 3px;
  transform: rotate(30deg);
}
.arrows .arrow:after {
  right: 3px;
  transform: rotate(-30deg);
}
@keyframes arrow-move08 {
    0% { opacity: 0; top: 20%;}
   70% { opacity: 1;}
  100% { opacity: 0;}
}

/*==============================================
   tab
==============================================*/
.tab {
  display: flex;
  flex-wrap: wrap;
}
.tab .tablabel {
  position: relative;
  margin-right: 0;
  padding: 8px 4px;
  flex: 1;
  order: -1;
  border-radius: 3px 3px 0 0;
  color: #FFF;
  border: 2px solid #043491;
  transition: .5s;
  cursor: pointer;
  text-align: center;
  font-size: 110%;
}
.tab .tablabel:first-of-type {
  background: #58B1E4;
}
.tab .tablabel:last-of-type {
  background: #87cab1;
}
.tab input {
  display: none;
}
.tab .content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
  margin: 0;
  padding: 0;
}
.tab .content > div {
  pointer-events: none;
  transform: translateX(30%);
  transition: transform .3s 80ms, opacity .3s 80ms;
}
.tab input:checked + .tablabel {
  color: var(--white);
	font-family: var(--hirak5);
  font-weight: bold;
  font-size: 1.2em;
}
.tab input:checked + .tablabel:first-of-type {
  background: #58B1E4;
}
.tab input:checked + .tablabel:last-of-type {
  background: #87cab1;
}
.tab input:checked ~ .tablabel::after {
  transform: translateX(-100%);
}
.tab input:checked + .tablabel::after {
  opacity: 1;
  transform: translateX(0);
}
.tab input:checked + .tablabel + .content {
  height: auto;
  padding: 20px 30px;
  order: 1;
  opacity: 1;
  border: 2px solid #043491;
  border-top: none;
}
.tab input:checked + .tablabel + .content:first-of-type {
  background-color: #edf7ff;
}
.tab input:checked + .tablabel + .content:last-of-type {
  background-color: #eafbec;
}
.tab input:checked ~ .content > div {
  transform: translateX(30%);
}
.tab input:checked + .tablabel + .content > div {
  pointer-events: auto;
  transform: translateX(0);
}

@media screen and (max-width: 520px) {
  .tab input:checked + .tablabel + .content {
    padding: 20px 10px;
  }
}

/*==============================================
  pagetop
==============================================*/
#pagetop {
  position: fixed;
  width: 45px;
  height: 45px;
  right: 0;
  bottom: 0;
  background: #0A3FA5;
}
#pagetop a {
  position: relative;
  display: block;
  width: 45px;
  height: 45px;
  text-decoration: none;
}
#pagetop a::after {
  position: absolute;
  font-family: var(--FA6);
  font-weight: bold;
  content: '\f106';
  line-height: 50px;
  font-size: 25px;
  color: #FFF;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  text-align: center;
}
#pagetop:hover {
  opacity: 0.7;
}

/*==============================================
  Margin
==============================================*/
.MT0 {
  margin-top: 0 !important;
}
.MT05 {
  margin-top: 5px !important;
}
.MT10 {
  margin-top: 10px !important;
}
.MT15 {
  margin-top: 15px !important;
}
.MT20 {
  margin-top: 20px !important;
}
.MT25 {
  margin-top: 25px !important;
}
.MT30 {
  margin-top: 30px !important;
}
.MT40 {
  margin-top: 40px !important;
}
.MT50 {
  margin-top: 50px !important;
}
.MT60 {
  margin-top: 60px !important;
}
.MB0 {
  margin-bottom: 0px !important;
}
.MB05 {
  margin-bottom: 5px !important;
}
.MB10 {
  margin-bottom: 10px !important;
}
.MB20 {
  margin-bottom: 20px !important;
}
.MB30 {
  margin-bottom: 30px !important;
}

/*==============================================
  align
==============================================*/
.taL {
text-align: left !important;
}
.taR {
  text-align: right !important;
}
.taC {
  text-align: center !important;
}
.vaT {
  vertical-align: top !important;
}
.vaM {
  vertical-align: middle !important;
}
.vaB {
  vertical-align: bottom !important;
}

/*==============================================
  float
==============================================*/
.flR {
  float: right;
  margin-left: 15px;
}
.flL {
  float: left;
  margin-right: 15px;
}
.flN {
  float: none;
}
.clearfix:after {
  display: block;
  clear: both;
  content: "";
}
@media screen and (max-width:520px) {
  .flR {
    float: none;
    margin: auto;
  }
  .flL {
    float: none;
    margin: auto;
  }
}

/*==============================================
  Display
==============================================*/
.dpN {
  display: none;
}

/*==============================================
  メディアクエリ
==============================================*/
/* 改行 */
@media screen and (min-width:520px) {
  .pcbr { /* PC改行 */
    display: inline;
  }
  .spbr { /* SP改行 */
    display: none;
  }
}
@media screen and (max-width:521px) {
  .pcbr {
    display: none;
  }
  .spbr {
    display: inline;
  }
}

@media screen and (max-width:520px) {
  .box-scroll {
    overflow-x: scroll;
    white-space: nowrap;
  }
  .box-scroll table {
    width: 100%;
  }
}
