@charset "UTF-8";
/* COMPASS
 * ----------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/* BASE
 * ----------------------------------------------- */
/* MEDIA QUERIES
 * ----------------------------------------------- */
/* ADDITIONAL RESET
 * ----------------------------------------------- */
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body * {
  max-height: 99999em;
  word-break: break-word;
}

img {
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

input,
label,
select,
button,
textarea {
  margin: 0;
  border: 0;
  padding: 0;
  word-break: normal;
  display: inline-block;
  vertical-align: middle;
  white-space: normal;
  background: none;
  font: inherit;
  line-height: 1;
}

input:focus,
button:focus,
select:focus {
  outline: 0;
}

/* Make webkit render the search input like a normal text field */
input[type=search] {
  -webkit-appearance: textfield;
}

/* Turn off the recent search for webkit. It adds about 15px padding on the left */
::-webkit-search-decoration {
  display: none;
}

/* Turn off scroll bars in IE unless needed */
textarea {
  overflow: auto;
  white-space: pre-line;
}

/* PRINTING
 * ----------------------------------------------- */
@media print {
  body {
    -webkit-print-color-adjust: exact;
  }

  html,
  body {
    margin: 0;
  }

  @page {
    margin: 0;
  }
  @page :left {
    margin: 0;
  }
  @page :right {
    margin: 0;
  }
  @page :first {
    margin-top: 0;
  }
}
/* GENERAL
 * ----------------------------------------------- */
body {
  color: #000;
  font-family: "Verdana", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
  line-height: 1.4;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
}

.font-serif {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Times New Roman", "游明朝", YuMincho, "メイリオ", Meiryo, Georgia, serif;
}

/* HELPERS
 * ----------------------------------------------- */
a {
  color: #000;
  text-decoration: none;
}

.hidden {
  display: none;
}

.invisible {
  visibility: hidden;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

.text-nowrap {
  white-space: nowrap;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

/* RESPONSIVE
 * ----------------------------------------------- */
@media print, (min-width: 768px) {
  body {
    font-size: 10px;
  }

  .container {
    min-width: 840px;
  }

  .wrapper {
    width: 788px;
    margin-left: auto;
    margin-right: auto;
  }

  .sm {
    display: none !important;
  }

  .trans {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
    -moz-transition: opacity 0.26s ease;
    -o-transition: opacity 0.26s ease;
    -webkit-transition: opacity 0.26s ease;
    transition: opacity 0.26s ease;
  }
  .trans:hover {
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
    opacity: 0.8;
  }
}
@media only screen and (max-width: 767px) {
  .md {
    display: none !important;
  }

  html {
    font-size: calc(100vw / 1.48);
  }

  body {
    font-size: 0.05rem;
  }

  .container {
    min-width: 320px;
  }

  .wrapper {
    padding-left: 0.085rem;
    padding-right: 0.085rem;
  }
}
/* PARTS
 * ----------------------------------------------- */
/* COMMON HEADER
 * ----------------------------------------------- */
.opacity {
  opacity: 0 !important;
}

header .container-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .image-footer {
  z-index: 1;
}
header .form-search {
  display: flex;
}
header .form-search input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #bcbec0;
}
header .search {
  cursor: pointer;
  transition: 0.25s;
}
header .search:hover {
  opacity: 0.8;
}
header .list-navigation li {
  color: #939598;
  text-align: center;
  transition: color 0.25s;
}
header .list-navigation li:hover span {
  color: #00aeef;
}
header .list-navigation li:hover:nth-child(2) a {
  color: #0095da;
}
header .list-navigation li:hover:nth-child(3) a {
  color: #f173ac;
}
header .list-navigation li:hover:nth-child(4) a {
  color: #00b26b;
}
header .list-navigation li:hover:nth-child(5) a {
  color: #f7941d;
}
header .list-navigation li:hover:nth-child(6) a {
  color: #0066b3;
}
header .list-navigation .is-active span {
  color: #00aeef;
}
header .list-navigation .is-active:nth-child(2) a {
  color: #0095da;
}
header .list-navigation .is-active:nth-child(3) a {
  color: #f173ac;
}
header .list-navigation .is-active:nth-child(4) a {
  color: #00b26b;
}
header .list-navigation .is-active:nth-child(5) a {
  color: #f7941d;
}
header .list-navigation .is-active:nth-child(6) a {
  color: #0066b3;
}
header .list-navigation span {
  display: block;
  color: #939598;
  transition: color 0.25s;
  letter-spacing: 0.02em;
}
header .list-navigation a {
  color: #231f20;
  display: block;
  letter-spacing: 0.02em;
  transition: color 0.25s;
}
header .list-function a {
  display: block;
  line-height: 2;
  color: #00aeef;
}

@media print, (min-width: 768px) {
  header {
    width: 100%;
    background: #fff;
    z-index: 10;
    min-width: 840px;
    padding-top: 34px;
  }
  header .container-header {
    margin-bottom: 20px;
  }
  header .header-info {
    width: 275px;
    padding-top: 5px;
  }
  header .header-navigation {
    display: block !important;
  }
  header .list-function {
    display: flex;
    align-items: center;
    margin-bottom: 7px;
    padding-left: 2px;
  }
  header .list-function li:not(:last-child) {
    margin-right: 19px;
  }
  header .list-function a {
    padding-left: 20px;
  }
  header .is-website,
  header .is-collection,
  header .is-members {
    position: relative;
  }
}
@media all and (min-width: 768px) and (-ms-high-contrast: none), print and (-ms-high-contrast: active), (min-width: 768px) and (-ms-high-contrast: active) {
  header .is-website,
  header .is-collection,
  header .is-members {
    padding-top: 5px;
  }
}
@media print, (min-width: 768px) {
  header .is-website a:before,
  header .is-collection a:before,
  header .is-members a:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
  }
  header .is-website a:before {
    background: url(../new_img/common/header_icon_01.png) center/100% auto;
    width: 16px;
    height: 17px;
  }
  header .is-collection a:before {
    background: url(../new_img/common/header_icon_02.png) center/100% auto;
    width: 17px;
    height: 17px;
  }
  header .is-members a:before {
    background: url(../new_img/common/header_icon_03.png) center/100% auto;
    width: 16px;
    height: 15px;
  }
  header .form-search input {
    width: 221px;
    border: solid 1px #d1d2d4;
    margin-right: 7px;
    padding: 1px 7px 0;
    font-size: 12px;
  }
}
@media all and (min-width: 768px) and (-ms-high-contrast: none), print and (-ms-high-contrast: active), (min-width: 768px) and (-ms-high-contrast: active) {
  header .form-search input {
    font-family: Meiryo, sans-serif;
    padding: 2px 7px 1px;
  }
}
@media print, (min-width: 768px) {
  header .form-search::placeholder {
    font-size: 12px;
    color: #bcbec0;
  }
  header .search {
    background: #00aeef url(../new_img/common/header_icon_search.png) center no-repeat;
    width: 47px;
    height: 21px;
    margin-top: 1px;
    padding: 0 15px;
    background-size: 14px 15px;
  }
  header .list-navigation {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  header .list-navigation li {
    border-left: solid 1px #6dcff6;
    width: 158px;
  }
  header .list-navigation li:nth-child(6) {
    border-right: solid 1px #6dcff6;
  }
  header .list-navigation span {
    font-size: 9px;
  }
  header .list-navigation a {
    font-size: 14px;
  }
  header .button-menu {
    pointer-events: none;
  }
}
@media only screen and (max-width: 767px) {
  header {
    padding: 0.12rem 0 0;
  }
  header .overlay {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
  }
  header .wrapper {
    padding-left: 0;
    padding-right: 0;
  }
  header .header-logo {
    padding: 0 0.015rem;
  }
  header .logo img {
    width: 1.24rem;
  }
  header .list-function {
    display: none;
  }
  header .header-navigation {
    position: fixed;
    top: 0.085rem;
    right: 0;
    background: #f08300;
    width: 0.985rem;
    height: calc(100% - .17rem);
    margin-left: auto;
    padding: 0 0.07rem 0.57rem 0.075rem;
    display: none;
    overflow-y: auto;
    z-index: 1000;
  }
  header .navigation-inner {
    text-align: right;
  }
  header .close-menu {
    text-align: right;
    color: #fff;
    padding: 0.05rem 0 0.025rem;
    display: inline-block;
  }
  header .close-menu:before {
    display: inline-block;
    content: "";
    position: relative;
    top: 0.005rem;
    background: url(../new_img/common/sp/icon_common_white.png) center/100% auto no-repeat;
    margin-right: 0.025rem;
    width: 0.057rem;
    height: 0.054rem;
  }
  header .button-menu {
    background: url(../new_img/common/sp/button_menu.png) center/100% auto no-repeat;
    width: 0.17rem;
    height: 0.27rem;
    cursor: pointer;
    position: fixed;
    top: 0.12rem;
    right: -0.01rem;
    z-index: 10;
  }
  header .list-navigation {
    margin-bottom: 0.04rem;
  }
  header .list-navigation a {
    position: relative;
    font-size: 0.05rem;
    text-align: left;
    padding: 0.0235rem 0.125rem;
  }
  header .list-navigation a:before {
    position: absolute;
    content: "";
    background: url(../new_img/common/sp/icon_common.png) center/100% auto;
    width: 0.0671rem;
    height: 0.0632rem;
    top: 50%;
    transform: translateY(-50%);
    left: 0.04rem;
  }
  header .list-navigation li {
    background: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.01rem;
  }
  header .list-navigation li:nth-child(1) {
    background: #fff;
  }
  header .list-navigation li:nth-child(2) {
    background: #eaf6fd;
  }
  header .list-navigation li:nth-child(3) {
    background: #fdeff5;
  }
  header .list-navigation li:nth-child(4) {
    background: #ebf5ec;
  }
  header .list-navigation li:nth-child(5) {
    background: #feecd2;
  }
  header .list-navigation li:nth-child(6) {
    background: #eaf6fd;
    margin-bottom: 0.03rem;
  }
  header .form-search input {
    border: solid 1px #fff;
    border-radius: 0;
    width: 0.68rem;
    margin-right: 0.02rem;
    padding: 0 0.04rem;
    line-height: 2;
  }
  header .form-search input::placeholder {
    color: #f8c386;
  }
  header .search {
    background: url(../new_img/common/sp/header_icon_search.png) #00a1e9 center/0.05rem 0.05rem no-repeat;
    width: 0.2rem;
    height: 0.105rem;
  }
}
@media only screen and (max-width: 767px) {
  header .header-navigation,
  header .button-menu {
    transition: right 0.3s;
  }
  header .header-navigation {
    display: block;
    right: -0.985rem;
  }
  header .button-menu {
    right: 0;
  }
  header.is-active .button-menu {
    right: 0.985rem;
  }
  header.is-active .header-navigation {
    right: 0;
  }
  header.is-active .overlay {
    visibility: visible;
    opacity: 1;
  }
}
/* COMMON FOOTER
 * ----------------------------------------------- */
footer .wrapper {
  position: relative;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  footer .wrapper {
    overflow: hidden;
  }
}
footer .wrapper:after {
  position: absolute;
  content: "";
  width: 100%;
  background: #5982af;
}
footer .wrapper a {
  z-index: 1;
}
footer .footer-detail {
  position: relative;
}
footer .phone-contact {
  display: flex;
  align-items: center;
}
footer .phone-contact a {
  color: #808285;
}
footer .list-contact {
  display: flex;
  align-items: center;
}
footer .list-contact li {
  position: relative;
}
footer .list-contact a {
  line-height: 2;
  display: block;
}
footer .list-contact a:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
footer .button-to-top {
  cursor: pointer;
  display: none;
  z-index: 100;
}
footer .button-to-top span {
  display: block;
}

@media print, (min-width: 768px) {
  footer {
    width: 100%;
    background: #fff;
    z-index: 10;
    bottom: 0;
    min-width: 840px;
    padding-bottom: 39px;
  }
  footer .wrapper {
    display: flex;
    align-items: center;
  }
  footer .wrapper:after {
    height: 19px;
    bottom: 4px;
  }
}
@media all and (min-width: 768px) and (-ms-high-contrast: none), print and (-ms-high-contrast: active), (min-width: 768px) and (-ms-high-contrast: active) {
  footer .wrapper:after {
    bottom: 6px;
  }
}
@media print, (min-width: 768px) {
  footer .image-footer {
    z-index: 1;
  }
  footer .footer-detail {
    order: 2;
    margin: 5px 0 30px 20px;
  }
}
@media all and (min-width: 768px) and (-ms-high-contrast: none), print and (-ms-high-contrast: active), (min-width: 768px) and (-ms-high-contrast: active) {
  footer .footer-detail {
    margin-bottom: 27px;
  }
}
@media print, (min-width: 768px) {
  footer .footer-title {
    color: #f58220;
    font-size: 23px;
    margin-bottom: 8px;
  }
  footer .address,
  footer .phone-contact {
    color: #808285;
  }
  footer .address {
    font-size: 10px;
    margin-bottom: 1px;
  }
  footer .phone-contact {
    margin-bottom: 5px;
  }
  footer .phone-contact a {
    pointer-events: none;
    margin-right: 15px;
  }
  footer .list-contact li {
    font-size: 12px;
  }
}
@media all and (min-width: 768px) and (-ms-high-contrast: none), print and (-ms-high-contrast: active), (min-width: 768px) and (-ms-high-contrast: active) {
  footer .list-contact li {
    padding-top: 4px;
  }
}
@media print, (min-width: 768px) {
  footer .list-contact li:not(:last-child) {
    margin-right: 24px;
  }
  footer .list-contact a {
    padding-left: 20px;
    color: #00aeef;
  }
  footer .list-contact a:before {
    background: url(../new_img/common/icon_common.png) center/100% auto;
    width: 15px;
    height: 15px;
  }
  footer .button-to-top {
    position: absolute;
    display: block !important;
    bottom: 38px;
    right: 11px;
    background: url(../new_img/common/button_to_top.png) center/100% auto;
    width: 43px;
    height: 43px;
  }
  footer .image-footer {
    margin-top: 1px;
  }
}
@media only screen and (max-width: 767px) {
  footer .wrapper {
    padding-left: 0;
    padding-right: 0;
  }
  footer .footer-detail {
    text-align: left;
    margin-bottom: 0.01rem;
    padding: 0 0.15rem;
  }
  footer .image-footer {
    width: 100%;
  }
  footer .footer-title {
    color: #f08300;
    font-size: 0.09rem;
    margin-bottom: 0.03rem;
  }
  footer .address,
  footer .phone-contact {
    font-size: 0.04rem;
    color: #898989;
  }
  footer .address {
    margin-bottom: 0.015rem;
  }
  footer .phone-contact {
    margin-bottom: 0.02rem;
  }
  footer .phone-contact a {
    margin-right: 0.045rem;
  }
  footer .list-contact a {
    color: #00a1e9;
    font-size: 0.05rem;
    padding-left: 0.1rem;
  }
  footer .list-contact a:before {
    background: url(../new_img/common/sp/icon_common.png) center/100% auto;
    width: 0.0567rem;
    height: 0.0534rem;
  }
  footer .list-contact li {
    margin-right: 0.14rem;
  }
  footer .button-to-top {
    position: fixed;
    bottom: 0.07rem;
    right: 0.135rem;
    background: url(../new_img/common/sp/button_to_top.png) center/100% auto;
    width: 0.204rem;
    height: 0.204rem;
  }
}
/* MODULES
 * ----------------------------------------------- */
/* COMMON TITLE
 * ----------------------------------------------- */
.title-common {
  color: #fff;
  position: relative;
}
.title-common:before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: "";
}

.primary-title {
  text-align: left;
}

@media print, (min-width: 768px) {
  .title-common {
    font-size: 23px;
    padding: 23px 50px 22px 132px;
    width: 100%;
  }
  .title-common:before {
    background: url(../new_img/common/banner_img_common.png) center/100% auto;
    left: 9px;
    width: 98px;
    height: 99px;
  }
}
@media all and (min-width: 768px) and (-ms-high-contrast: none), print and (-ms-high-contrast: active), (min-width: 768px) and (-ms-high-contrast: active) {
  .title-common {
    padding-top: 28px;
  }
}

@media print, (min-width: 768px) {
  .primary-title {
    font-size: 20px;
    padding-bottom: 4px;
  }
}
@media only screen and (max-width: 767px) {
  .title-common {
    font-size: 0.07rem;
    margin-left: -0.085rem;
    margin-right: -0.085rem;
    padding: 0.06rem 0 0.075rem 0.4rem;
    letter-spacing: 0.02em;
  }
  .title-common:before {
    background: url(../new_img/common/sp/banner_img_common.png) center/100% auto;
    width: 0.3rem;
    height: 0.27rem;
    left: 0.025rem;
  }

  .primary-title {
    font-size: 0.055rem;
    margin-right: -0.085rem;
    padding-bottom: 0.03rem;
  }
}
/* COMMON BUTTON
 * ----------------------------------------------- */
.button-common {
  display: block;
  color: #00aeef;
  position: relative;
  margin-left: auto;
}
.button-common:before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
}

@media print, (min-width: 768px) {
  .button-common {
    background-color: #ffe6cb;
    font-size: 12px;
    margin-bottom: 10px;
    border-radius: 5px;
    padding: 6px 0 6px 46px;
    width: 151px;
  }
  .button-common:before {
    background: url(../new_img/common/icon_common.png) center/100% auto;
    left: 22px;
    width: 15px;
    height: 15px;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .button-common {
    padding-top: 8px;
    padding-bottom: 3px;
  }
}
@media only screen and (max-width: 767px) {
  .button-common {
    background-color: #feecd2;
    font-size: 0.05rem;
    width: 0.62rem;
    border-radius: 0.03rem;
    margin-right: -0.02rem;
    padding: 0.02rem 0 0.02rem 0.16rem;
  }
  .button-common:before {
    background: url(../new_img/common/sp/icon_common.png) center/100% auto;
    width: 0.0567rem;
    height: 0.0534rem;
    left: 0.075rem;
  }
}
/* COMMON BREADCRUMB
 * ----------------------------------------------- */
@media only screen and (max-width: 767px) {
  .common-breadcrumb {
    margin-left: -0.085rem;
    margin-right: -0.085rem;
  }
  .common-breadcrumb .list-breadcrumb {
    display: flex;
    background-color: #efefef;
    padding: 0.015rem 0.045rem 0.02rem;
  }
  .common-breadcrumb .list-breadcrumb li {
    position: relative;
    color: #00a1e9;
    padding-right: 0.06rem;
    font-size: 0.035rem;
    letter-spacing: 0.059em;
  }
  .common-breadcrumb .list-breadcrumb li:not(:last-child):after {
    position: absolute;
    content: ">";
    right: 0;
    padding-right: 0.01rem;
  }
  .common-breadcrumb .list-breadcrumb a {
    color: #00a1e9;
  }
}
.activity-title {
  color: #939598;
  letter-spacing: 0.02em;
  text-align: center;
}
.activity-title span {
  color: #231f20;
  letter-spacing: 0.02em;
  display: block;
}

.activity-title {
  font-size: 0.04rem;
  padding: 0.05rem 0;
}
.activity-title span {
  font-size: 0.07rem;
  margin-bottom: 0.01rem;
}

.list-activity li {
  position: relative;
  border-bottom: dashed 1px #aaE0fa;
}
.list-activity a {
  display: block;
}
.list-activity a:before {
  position: absolute;
  content: "";
}

.is-blue .activity-title {
  background-color: #eaf6fd;
  border-bottom: solid 0.03rem #00a1e9;
}

.list-activity {
  margin-bottom: 0.09rem;
}
.list-activity a {
  color: #00a1e9;
  font-size: 0.05rem;
  padding: 0.072rem 0.149rem 0.046rem;
}
.list-activity a:before {
  background: url(../new_img/common/sp/icon_common_cirle.png) center/100% auto no-repeat;
  width: 0.06rem;
  height: 0.06rem;
  top: 0.078rem;
  left: 0.03rem;
}

/*---------aside-left--------- */
.article-report .block-aside {
  flex-shrink: 0;
}
.article-report .block-aside img {
  width: 100%;
}
.article-report .list-aside a {
  display: block;
  color: #00aeef;
  position: relative;
  border-bottom: dashed 1px #aae0fa;
}
.article-report .list-aside a:before {
  position: absolute;
  content: "";
  background: url(../new_img/common/icon_common.png) center/100% auto;
  top: 50%;
  transform: translateY(-50%);
}

@media print, (min-width: 768px) {
  .article-report .wrapper {
    display: flex;
    align-items: flex-start;
    padding: 13px 0 38px;
  }
  .article-report .block-aside {
    width: 201px;
    margin-right: 26px;
  }
  .article-report .list-aside a {
    font-size: 12px;
    padding: 12px 9px 8px 30px;
  }
  .article-report .list-aside a:before {
    width: 15px;
    height: 15px;
    left: 5px;
  }
}
@media all and (min-width: 768px) and (-ms-high-contrast: none), print and (-ms-high-contrast: active), (min-width: 768px) and (-ms-high-contrast: active) {
  .article-report .list-aside a {
    padding-top: 17px;
    padding-bottom: 13px;
  }
}

@media only screen and (max-width: 767px) {
  .article-report .wrapper {
    padding-top: 0.04rem;
  }
  .article-report .block-aside {
    margin: 0 -0.085rem 0.04rem;
  }
}
/*--------list-school COMMON-------- */
.list-school figcaption {
  color: #39b54a;
  text-align: left;
}

@media print, (min-width: 768px) {
  .list-school {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 17px 0 14px;
  }
  .list-school li {
    width: 49.5%;
    margin-bottom: 15px;
  }
  .list-school li:nth-child(2n+1) {
    margin-right: 4px;
  }
  .list-school img {
    margin-bottom: 2px;
  }
  .list-school figcaption {
    font-size: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .list-school {
    padding-left: 0.09rem;
    padding-right: 0.09rem;
    margin-bottom: 0.09rem;
  }
  .list-school li {
    margin-bottom: 0.045rem;
  }
  .list-school img {
    margin-bottom: 0.01rem;
    width: 1.01rem;
  }
}
/* COMMON PAGINATION
 * ----------------------------------------------- */
.pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pagination .prev-page,
.pagination .next-page {
  color: #00aeef;
  position: relative;
}
.pagination .prev-page:before,
.pagination .next-page:before {
  position: absolute;
  content: "";
}

@media print, (min-width: 768px) {
  .pagination {
    padding-top: 10px;
  }
  .pagination .prev-page,
  .pagination .next-page {
    font-size: 12px;
  }
  .pagination .prev-page:before,
  .pagination .next-page:before {
    width: 15px;
    height: 15px;
  }
}
@media all and (min-width: 768px) and (-ms-high-contrast: none), print and (-ms-high-contrast: active), (min-width: 768px) and (-ms-high-contrast: active) {
  .pagination .prev-page:before,
  .pagination .next-page:before {
    top: -1px;
  }
}
@media print, (min-width: 768px) {
  .pagination .prev-page {
    padding-left: 25px;
  }
  .pagination .next-page {
    padding-right: 23px;
    margin-left: auto;
  }
  .pagination .prev-page:before {
    background: url(../new_img/common/icon_prev.png) center/100% auto;
    left: 0;
  }
  .pagination .next-page:before {
    background: url(../new_img/common/icon_next.png) center/100% auto;
    right: 0;
  }
}
@media only screen and (max-width: 767px) {
  .prev-page,
  .next-page {
    font-size: 0.05rem;
  }
  .prev-page:before,
  .next-page:before {
    top: 50%;
    transform: translateY(-50%);
    width: 0.05rem;
    height: 0.05rem;
  }

  .pagination {
    padding-top: 0.025rem;
    margin: 0 -0.085rem;
  }

  .prev-page {
    padding-left: 0.13rem;
  }

  .next-page {
    padding-right: 0.13rem;
  }

  .prev-page:before {
    background: url(../new_img/common/sp/icon_prev.png) center/100% auto;
    left: 0.035rem;
  }

  .next-page:before {
    background: url(../new_img/common/sp/icon_next.png) center/100% auto;
    right: 0.035rem;
  }
}
/* PAGE
 * ----------------------------------------------- */
.report-right {
  width: 100%;
}
.report-right .recycle-title {
  background-color: rgba(241, 115, 172, 0.8);
}
.report-right .border-pink {
  color: #f173ac;
  border-bottom: solid 3px rgba(241, 115, 172, 0.5);
}
.report-right .recycle-text {
  color: #231f20;
}
.report-right .item-highlight {
  display: inline-block;
  text-align: center;
  color: #fff;
}
.report-right .item-text {
  color: #231f20;
}
.report-right .list-link-location {
  display: flex;
  flex-wrap: wrap;
}
.report-right .caption-location {
  display: block;
  color: #00aeef;
}
.report-right .button-recycle {
  display: block;
  position: relative;
  color: #00aeef;
}
.report-right .button-recycle:before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
}
.report-right .recycle-second {
  background-color: rgba(199, 107, 171, 0.1);
  color: #231f20;
  border-bottom: solid 1px rgba(241, 115, 172, 0.3);
}
.report-right .list-link {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.report-right .caption {
  display: block;
  color: #39b54a;
  text-align: left;
}
.report-right .top-pink {
  border-top: solid 3px rgba(241, 115, 172, 0.5);
}

@media print, (min-width: 768px) {
  .report-right .recycle-title {
    margin-bottom: 23px;
  }
  .report-right .container-recycle {
    margin-left: 32px;
  }
  .report-right .border-pink {
    margin-bottom: 12px;
  }
  .report-right .list-school {
    margin-left: 31px;
  }
  .report-right .recycle-text {
    font-size: 12px;
    line-height: 1.76;
  }
  .report-right .image-chart {
    margin: 6px 36px 15px;
  }
  .report-right .list-school {
    margin-left: 36px;
    margin-bottom: 18px;
  }
  .report-right .list-school li {
    width: 45%;
  }
  .report-right .list-location {
    margin: 13px 0 21px;
  }
  .report-right .list-location li {
    display: flex;
    align-items: center;
  }
  .report-right .list-link-location {
    margin-bottom: 12px;
    padding: 0 35px;
  }
  .report-right .list-link-location li {
    margin: 0 21px 5px 0;
    display: flex;
    align-items: center;
  }
  .report-right .list-link-location img {
    width: 100%;
    margin-bottom: 5px;
    padding-left: 14px;
  }
  .report-right .item-highlight {
    background-color: #f173ac;
    font-size: 13px;
    min-width: 71px;
    height: 24px;
    margin-right: 17px;
    padding: 3px 0;
  }
}
@media all and (min-width: 768px) and (-ms-high-contrast: none), print and (-ms-high-contrast: active), (min-width: 768px) and (-ms-high-contrast: active) {
  .report-right .item-highlight {
    padding-top: 5px;
  }
}
@media print, (min-width: 768px) {
  .report-right .item-text {
    font-size: 13px;
  }
}
@media all and (min-width: 768px) and (-ms-high-contrast: none), print and (-ms-high-contrast: active), (min-width: 768px) and (-ms-high-contrast: active) {
  .report-right .item-text {
    padding-top: 6px;
  }
}
@media print, (min-width: 768px) {
  .report-right .list--link-location {
    margin-bottom: 15px;
  }
  .report-right .list--link-location li {
    padding-left: 34px;
  }
  .report-right .list--link-location li:not(:last-child) {
    margin-right: 14px;
  }
  .report-right .list--link-location img {
    padding-left: 15px;
    margin-bottom: 10px;
  }
  .report-right .button-recycle {
    background-color: #ffe6cb;
    width: 212px;
    border-radius: 13px;
    margin: 0 auto 44px;
    padding: 14px 0 13px 57px;
  }
  .report-right .button-recycle:before {
    background: url(../new_img/common/icon_common.png) center/100% auto;
    left: 33px;
    width: 15px;
    height: 15px;
  }
}
@media all and (min-width: 768px) and (-ms-high-contrast: none), print and (-ms-high-contrast: active), (min-width: 768px) and (-ms-high-contrast: active) {
  .report-right .button-recycle {
    padding-top: 15px;
    padding-bottom: 12px;
  }
}
@media print, (min-width: 768px) {
  .report-right .recycle-second {
    font-size: 13px;
    margin-bottom: 15px;
    padding: 7px 12px 3px;
  }
  .report-right .list-link {
    padding-top: 22px;
    margin-bottom: 31px;
  }
  .report-right .list-link li {
    margin: 0 11px;
  }
  .report-right .list-link img {
    margin-bottom: 4px;
  }
  .report-right .list-link a {
    margin-left: -9px;
  }
  .report-right .is-bottom {
    margin-bottom: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .article-report .block-aside,
  .article-report .common-breadcrumb {
    margin-left: -0.085rem;
    margin-right: -0.085rem;
  }
  .article-report .block-aside {
    margin-bottom: 0.04rem;
  }
  .article-report .list-breadcrumb {
    padding-bottom: 0.02rem;
    padding-left: 0.05rem;
  }
  .article-report .list-breadcrumb li {
    color: #eb6ea5;
  }
  .article-report .list-breadcrumb li:after {
    color: #eb6ea5;
  }
  .article-report .list-breadcrumb a {
    color: #eb6ea5;
  }

  .report-right .recycle-title {
    margin: 0 -0.085rem 0.09rem;
  }
  .report-right .container-recycle {
    margin-left: -0.015rem;
  }
  .report-right .primary-title {
    padding-bottom: 0.02rem;
  }
  .report-right .recycle-text {
    font-size: 0.06rem;
  }
  .report-right .border-pink {
    margin-bottom: 0.075rem;
  }
  .report-right .image-chart {
    margin-bottom: 0.1rem;
  }
  .report-right .image-chart img {
    width: 100%;
  }
  .report-right .list-school {
    margin-bottom: 0.14rem;
    padding: 0 0.08rem;
  }
  .report-right .list-school li {
    margin-bottom: 0.07rem;
  }
  .report-right .list-school img {
    width: 100%;
  }
  .report-right .list-location-mobile {
    margin-bottom: 0.03rem;
  }
  .report-right .list-location-mobile li {
    margin-bottom: 0.055rem;
  }
  .report-right .item-highlight {
    background-color: #eb6ea5;
    font-size: 0.05rem;
    margin-bottom: 0.01rem;
    padding: 0.008rem 0.08rem;
  }
  .report-right .address,
  .report-right .item-text-mobile {
    color: #231916;
  }
  .report-right .address {
    font-size: 0.06rem;
  }
  .report-right .item-text-mobile {
    font-size: 0.05rem;
    margin: 0.02rem 0 0.08rem;
  }
  .report-right .pop-up {
    font-size: 0.05rem;
    color: #ea5515;
    line-height: 1.8;
    background-color: rgba(250, 238, 0, 0.4);
    position: relative;
    margin-right: -0.03rem;
    margin-bottom: 0.12rem;
    padding: 0.02rem 0.065rem 0.035rem;
  }
  .report-right .pop-up:before {
    position: absolute;
    content: "";
    border-width: 0 0.05rem 0.05rem;
    border-style: solid;
    border-color: transparent transparent rgba(250, 238, 0, 0.4) transparent;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) rotate(-180deg);
  }
  .report-right .one-line {
    margin-bottom: 0.1rem;
    padding: 0.045rem 0.065rem 0.045rem;
  }
  .report-right .list-location {
    margin: 0.07rem 0;
  }
  .report-right .list-location li {
    margin-bottom: 0.075rem;
  }
  .report-right .item-text {
    margin-bottom: 0.03rem;
  }
  .report-right .list-link-location {
    flex-wrap: wrap;
  }
  .report-right .list-link-location li {
    width: 48%;
    margin: 0 0.01rem 0.07rem;
  }
  .report-right .list-link-location img {
    margin-bottom: 0.015rem;
    padding-left: 0.06rem;
    width: 100%;
  }
  .report-right .button-recycle {
    background-color: #feecd2;
    font-size: 0.05rem;
    margin: 0 auto 0.1rem;
    padding: 0.05rem 0.1rem 0.05rem 0.28rem;
    width: 1.03rem;
    border-radius: 0.05rem;
  }
  .report-right .button-recycle:before {
    position: absolute;
    content: "";
    background: url(../new_img/common/sp/icon_common_cirle.png) center/100% auto;
    width: 0.07rem;
    height: 0.0667rem;
    left: 0.17rem;
  }
  .report-right .recycle-second {
    font-size: 0.05rem;
    margin-right: -0.085rem;
    margin-bottom: 0.055rem;
    padding: 0.01rem 0.04rem 0.01rem;
  }
  .report-right .list-link {
    margin: 0.05rem 0;
    flex-wrap: wrap;
  }
  .report-right .list-link li {
    margin-right: 0.01rem;
    margin-bottom: 0.06rem;
    width: 49%;
  }
  .report-right .list-link img {
    width: 100%;
    margin-bottom: 0.01rem;
    padding-left: 0.065rem;
  }
  .report-right .video-detail {
    margin-bottom: 0.1rem;
  }
  .report-right .video-detail iframe {
    width: 100%;
    height: 1rem;
    margin-bottom: 0.01rem;
  }
  .report-right .video-title {
    font-size: 0.06rem;
    color: #fff;
    background-color: #eb6ea5;
    margin-bottom: 0.02rem;
    padding: 0.04rem 0.07rem;
  }
  .report-right .video-text {
    font-size: 0.05rem;
    color: #22ac39;
  }
  .report-right .list-activity {
    margin-bottom: 0.15rem;
  }
  .report-right .is-pink .activity-title {
    background-color: #fdeff5;
    border-bottom: solid 9px #eb6ea5;
    padding: 0.06rem 0 0.05rem;
  }
  .report-right .is-bottom {
    margin-bottom: 0.04rem;
  }
  .report-right .pagination {
    margin-bottom: 0.15rem;
  }
  .report-right .prev-page:before {
    left: 0.05rem;
  }
}

/*# sourceMappingURL=recycle.css.map */
