/*=============================================*/
/*Reset CSS*/
/*=============================================*/
article, aside, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, main {
  display: block;
}

blockquote, body, dd, div, dl, dt, fieldset, figure, form, h1, h2, h3, h4, h5, h6, input, li, ol, p, pre, td, textarea, th, ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

li {
  list-style: none;
}

a,
a:link {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  height: auto;
  vertical-align: bottom;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

button, input, select, textarea {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

input[type=radio]::-ms-check,
input[type=checkbox]::-ms-check {
  display: none;
}

i {
  font-style: normal;
}

textarea {
  resize: none;
  font-family: sans-serif;
}

* {
  box-sizing: border-box;
}

/*=============================================*/
/*Common Base*/
/*=============================================*/
.light_box_wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.light_box_wrapper a {
  position: relative;
  display: block;
  width: calc((100% - 40px) / 3);
  padding: 10px 20px;
  background-color: #001A65;
  color: #FFF;
  font-size: clamp(1.4rem, 1.6vw, 1.8rem);
  font-weight: 700;
  transition: all 0.3s;
}
.light_box_wrapper a::after {
  position: absolute;
  right: 20px;
  top: 50%;
  content: "";
  width: 20px;
  height: 20px;
  background: url(../img/ico/ico-picture.svg) no-repeat center/contain;
  transform: translateY(-50%);
}
.light_box_wrapper a:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .light_box_wrapper a {
    width: calc((100% - 20px) / 2);
  }
}
@media (max-width: 480px) {
  .light_box_wrapper a {
    width: 100%;
  }
}/*# sourceMappingURL=adjust.css.map */