@charset "utf-8";



/**************************************************/
/********** Responsive Base Font Setting **********/
/**************************************************/

@media print, screen and ( min-width: 769px ) {
  html {
    font-size: 62.5%;
  }
}
@media screen and ( max-width: 768px ) {
  html {
    font-size: 56.3%;
  }
}
@media screen and ( max-width: 320px ) {
  html {
    font-size: 50.0%;
  }
}



/*******************************************************/
/********** Responsive Contents Setting (320) **********/
/*******************************************************/

@media screen and ( max-width: 320px ) {



/*******************************/
/********** Container **********/
/*******************************/

#container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  position: relative;
}



/****************************/
/********** Header **********/
/****************************/

#header {
  margin: 0 auto;
  padding: 0;
  background-color: #FFFFFF;
  color: #000000;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 9999;
}
#header header {
  margin: auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background-color: #FFFFFF;
  color: #000000;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.06);
}
#header header h1,
#header header h1 a {
  margin: 0 20px 0 0;
  padding: 0;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0;
  text-align: left;
  color: #000000;
}



/****************************************/
/********** Respomsive Swicher **********/
/****************************************/

#modal {
  margin: 0;
  padding: 0;
}
#modal label {
  display: inline-block;
}
#modal input {
  display: none;
}
#modal label:hover {
  cursor: pointer;
}
#modal label:after {
  font-family: 'Font Awesome 5 Free';
  content: "\f0c9";
  font-size: 2.0rem;
  font-weight: 900;
  color: #00375B;
  display: inline-block;
  transition: 0.3s;
}
#modal input:checked ~ #modal-window {
  visibility: visible;
}
#modal input:checked ~ label:after {
  font-family: 'Font Awesome 5 Free';
  content: "\f00d";
  transform: rotate(180deg);
}

#modal-window {
  visibility: hidden;
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  overflow-y: auto;
  width: 100%;
  height: 100%;
  padding-top: 60px;
  background-color: #00375B;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
#modal-window::-webkit-scrollbar {
  display: none;
}
#modal-window ul {
  margin: 0;
  padding: 12px;
  width: 100%;
}
#modal-window ul li {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 120%;
  text-align: left;
  background-color: #FFFFFF;
  color: #000000;
  list-style-type: none;
  width: 100%;
  margin: 20px 0;
  padding: 0;
}
#modal-window ul li a {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 120%;
  text-align: left;
  text-decoration: none;
  background-color: #FFFFFF;
  color: #000000;
  width: 100%;
  margin: 0;
  padding: 12px;
  display: flex;
  align-items: center;
}
#modal-window ul li a:before {
  font-family: 'Font Awesome 5 Free';
  content: "\f07c";
  margin: 0 12px 0 0;
  font-size: 1.6rem;
  font-weight: 500;
  color: #00375B;
}
#modal-window ul li a.no-click {
  pointer-events: none;
  cursor: default;
}
#modal-window ul li a:hover,
#modal-window ul li.current a {
  background-color: #D8EEF3;
}

#modal-window ul li > ul {
  margin: 0;
  padding: 12px;
  display: flex;
  flex-wrap: wrap;
}
#modal-window ul li > ul li {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 120%;
  text-align: left;
  background-color: #FFFFFF;
  color: #000000;
  list-style-type: none;
  width: 49%;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #00375B;
}
#modal-window ul li > ul li a {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 120%;
  text-align: left;
  background-color: #FFFFFF;
  color: #000000;
  list-style-type: none;
  width: 100%;
  margin: 0;
  padding: 12px;
  display: flex;
  align-items: center;
}
#modal-window ul li > ul li:nth-child(even) {
  margin: 0 0 0 2%;
}
#modal-window ul li > ul li a:before {
  font-family: 'Font Awesome 5 Free';
  content: "\f15c";
  margin: 0 12px 0 0;
  font-size: 1.4rem;
  font-weight: 500;
  color: #00375B;
}
#modal-window ul li > ul li a:hover,
#modal-window ul li.current > ul li a:hover,
#modal-window ul li.current > ul li.current a {
  background-color: #D8EEF3;
}
#modal-window ul li.current > ul li a {
  background-color: #FFFFFF;
}

#modal-window ul li.nav-literacy a:before {
  color: #F2CE00;
}
#modal-window ul li.nav-ouyoukiso a:before {
  color: #2BA65B;
}
#modal-window ul li.nav-contact a:before {
  content: "\f1fa";
  font-size: 1.4rem;
  font-weight: 900;
  color: #D93600;
}



/****************************/
/********** Footer **********/
/****************************/

#footer {
  clear: both;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  background-image: url("../images/footer_bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #00375B;
  background-blend-mode: soft-light;
  color: #FFFFFF;
}
#footer footer {
  margin: auto;
  padding: 40px 20px;
  width: 100%;
}
#footer footer a {
  color: #FFFFFF;
}
#footer footer h3 {
  margin: 0 auto 20px auto;
  padding: 0;
  font-family: Montserrat;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0;
  color: #FFFFFF;
  text-align: center;
}
#footer footer h3 .translation {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0;
}
#footer footer h3 .translation:before {
  content: "\A";
  white-space: pre;
}
#footer footer address {
  margin: 0 auto;
  padding: 0;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 180%;
  list-style-type: none;
  color: #FFFFFF;
}

#footer #copyright {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  color: #000000;
  background-color: #FFFFFF;
  text-align: center;
  margin: auto;
  padding: 4px 20px;
  width: 100%;
}
#footer #pagetop {
  position: fixed;
  right: 20px;
  bottom: 40px;
}
#footer #pagetop a {
  color: #DDDDDD;
  text-decoration: none;
  font-size: 4.2rem;
  font-weight: 500;
  transition: 0.3s;
}
#footer #pagetop a:hover {
  opacity: 0.6;
}



/**************************/
/********** Main **********/
/**************************/

main {
  display: block;
  margin: auto;
  padding: 0;
  width: 100%;
  text-align: left;
  flex-grow: 1;
  position: relative;
  min-height: 0%;
  overflow-x: hidden;
}



/*****************************/
/********** Content **********/
/*****************************/

.content {
  clear: both;
  margin: auto;
  padding: 20px;
  width: 100%;
}



/**************************/
/********** Home **********/
/**************************/

.main-image-section {
  margin: 0;
  padding: 60px 0 80px 0;
  position: relative;
  top: 0;
  z-index: 0;
  width: 100%;
  height: auto;
}
.main-image-section:before {
  content: '';
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10vw), 0 100%);
  background-image: url("../images/main-image-section_bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #00375B;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
.main-image-section:after {
  content: '';
  background-image: url("../images/main-image.png");
  background-repeat: no-repeat;
  background-position: calc(100% + 60px) calc(50% + 30px);
  background-size: 240px 206px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.main-image-section .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-image-section h2 {
  margin: 0;
  padding: 0;
  display: inline;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  line-height: 220%;
  color: #FFFFFF;
  text-align: left;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}
.main-image-section h2 span {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  line-height: 220%;
  color: #000000;
  background-color: #FFFFFF;
  padding: 3px 6px;
}
.main-image-section .main-image {
  flex-shrink: 0;
  position: relative;
  z-index: 9999;
}



.outline-section {
  clear: both;
  margin: auto;
  padding: 0;
  width: 100%;
  background-color: #FFFFFF;
}
.outline-section p {
  font-weight: 700;
}
.outline-section .level-logo {
  clear: both;
  margin: 30px auto;
  padding: 0;
}
.outline-section .level-logo ul {
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px 0;
}
.outline-section .level-logo ul li {
  margin: 0;
  padding: 10px;
  list-style-type: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px 0;
}
.outline-section .level-logo .logo-mark img {
  width: 50%;
  height: auto;
}
.outline-section .level-logo .logo-text img {
  width: 100%;
  height: auto;
}
.outline-section .level-logo .logo-mark {
  display: flex;
  justify-content: center;
  gap: 0 12px;
}
.outline-section .level-logo .logo-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px 0;
}
.outline-section .level-logo .deadline {
  margin: 30px auto 0 auto;
  padding: 6px;
  background-color: #F1F1F1;
  border-radius: 6px;
  font-size: 1.4rem;
  text-align: center;
}



.literacy-section {
  clear: both;
  margin: auto;
  padding: 20px 0;
  width: 100%;
  background-image: url("../images/literacy-section_bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 200px auto;
  background-color: rgba(255,249,213,0.7);
  background-blend-mode: lighten;
}
.literacy-section h3 {
  margin: 0 0 30px 0;
  padding: 0 12px;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  line-height: 120%;
  color: #000000;
  text-align: left;
  border-left: 6px solid #FFD700;
}
.literacy-section p {
  font-size: 1.6rem;
  line-height: 160%;
}
.literacy-section .button {
  justify-content: center;
}



.ouyoukiso-section {
  clear: both;
  margin: auto;
  padding: 20px 0;
  width: 100%;
  background-image: url("../images/ouyoukiso-section_bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 200px auto;
  background-color: rgba(221,247,230,0.7);
  background-blend-mode: difference;
}
.ouyoukiso-section h3 {
  margin: 0 0 30px 0;
  padding: 0 12px;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  line-height: 120%;
  color: #000000;
  text-align: left;
  border-left: 6px solid #4BD180;
}
.ouyoukiso-section p {
  font-size: 1.6rem;
  line-height: 160%;
}
.ouyoukiso-section .button {
  justify-content: center;
}



.news-section {
  clear: both;
  margin: auto;
  padding: 20px 0;
  width: 100%;
  background-color: #FFFFFF;
}
.news-section h3 {
  margin: 0 0 30px 0;
  padding: 0 0 4px 0;
  font-family: Montserrat;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0;
  color: #000000;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #00375B;
}
.news-section h3 .translation {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0;
}
.news-section h3 .translation:before {
  content: "/";
  margin: 0 12px;
}
.news-section h3 .archive,
.news-section h3 .archive a {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0;
  margin: 0 0 0 auto;
}
.news-section .listing {
  clear: both;
  margin: 0;
  padding: 0;
  width: 100%;
}
.news-section .listing ul {
  margin: 0;
  padding: 0;
}
.news-section .listing ul li {
  margin: 0 0 10px 0;
  padding: 0 0 10px 0;
  border-bottom: 1px solid #B0B0B0;
  list-style-type: none;
}
.news-section .listing ul li dl {
  margin: 0;
  padding: 0;
}
.news-section .listing ul li dl dt {
  margin: 0 ;
  padding: 0;
  font-family: Montserrat;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.1rem;
  text-align: left;
}
.news-section .listing ul li dl dd {
  margin: 0;
  padding: 0;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 200%;
  text-align: left;
}



/**************************/
/********** Page **********/
/**************************/

.page-title {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 4vw), 0 100%);
  background-image: url("../images/page-title_bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #00375B;
  background-blend-mode: soft-light;
}
.page-title h2 {
  margin: auto;
  padding: 40px 20px;
  font-size: 2.0rem;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.2rem;
  color: #FFFFFF;
  text-align: left;
  width: 100%;
}

.page main .content {
  padding: 0 20px 20px 20px;
}
.page main h3 {
  width: 100%;
  border-bottom: 5px solid #F1F1F1;
}
.page main h3:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 180px;
  border-bottom: 5px solid #00375B;
}



/*********************************/
/********** Breadcrumbs **********/
/*********************************/

#breadcrumbs {
  margin: 12px auto;
  padding: 0 20px;
  text-align: right;
  width: 100%;
}
#breadcrumbs ul {
  margin: 0 0 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
#breadcrumbs ul li {
  margin: 0;
  padding: 0;
  font-size: 1.0rem;
  font-weight: 500;
  line-height: 180%;
  list-style-type: none;
}
#breadcrumbs ul li+li:before {
  content: ">";
  margin: 0 4px;
  font-size: 0.8rem;
}
#breadcrumbs ul li a {
  font-size: 1.0rem;
  font-weight: 500;
  color: #000000;
}



}



/************************************************************/
/********** Responsive Contents Setting (320-480) ***********/
/************************************************************/

@media screen and ( min-width: 321px ) and ( max-width: 480px ) {



/*******************************/
/********** Container **********/
/*******************************/

#container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  position: relative;
}



/****************************/
/********** Header **********/
/****************************/

#header {
  margin: 0 auto;
  padding: 0;
  background-color: #FFFFFF;
  color: #000000;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 9999;
}
#header header {
  margin: auto;
  padding: 30px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background-color: #FFFFFF;
  color: #000000;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.06);
}
#header header h1,
#header header h1 a {
  margin: 0 30px 0 0;
  padding: 0;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0;
  text-align: left;
  color: #000000;
}



/****************************************/
/********** Respomsive Swicher **********/
/****************************************/

#modal {
  margin: 0;
  padding: 0;
}
#modal label {
  display: inline-block;
}
#modal input {
  display: none;
}
#modal label:hover {
  cursor: pointer;
}
#modal label:after {
  font-family: 'Font Awesome 5 Free';
  content: "\f0c9";
  font-size: 2.0rem;
  font-weight: 900;
  color: #00375B;
  display: inline-block;
  transition: 0.3s;
}
#modal input:checked ~ #modal-window {
  visibility: visible;
}
#modal input:checked ~ label:after {
  font-family: 'Font Awesome 5 Free';
  content: "\f00d";
  transform: rotate(180deg);
}

#modal-window {
  visibility: hidden;
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  overflow-y: auto;
  width: 100%;
  height: 100%;
  padding-top: 80px;
  background-color: #00375B;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
#modal-window::-webkit-scrollbar {
  display: none;
}
#modal-window ul {
  margin: 0;
  padding: 16px;
  width: 100%;
}
#modal-window ul li {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 120%;
  text-align: left;
  background-color: #FFFFFF;
  color: #000000;
  list-style-type: none;
  width: 100%;
  margin: 20px 0;
  padding: 0;
}
#modal-window ul li a {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 120%;
  text-align: left;
  text-decoration: none;
  background-color: #FFFFFF;
  color: #000000;
  width: 100%;
  margin: 0;
  padding: 12px;
  display: flex;
  align-items: center;
}
#modal-window ul li a:before {
  font-family: 'Font Awesome 5 Free';
  content: "\f07c";
  margin: 0 12px 0 0;
  font-size: 1.6rem;
  font-weight: 500;
  color: #00375B;
}
#modal-window ul li a.no-click {
  pointer-events: none;
  cursor: default;
}
#modal-window ul li a:hover,
#modal-window ul li.current a {
  background-color: #D8EEF3;
}

#modal-window ul li > ul {
  margin: 0;
  padding: 12px;
  display: flex;
  flex-wrap: wrap;
}
#modal-window ul li > ul li {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 120%;
  text-align: left;
  background-color: #FFFFFF;
  color: #000000;
  list-style-type: none;
  width: 49%;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #00375B;
}
#modal-window ul li > ul li a {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 120%;
  text-align: left;
  background-color: #FFFFFF;
  color: #000000;
  list-style-type: none;
  width: 100%;
  margin: 0;
  padding: 12px;
  display: flex;
  align-items: center;
}
#modal-window ul li > ul li:nth-child(even) {
  margin: 0 0 0 2%;
}
#modal-window ul li > ul li a:before {
  font-family: 'Font Awesome 5 Free';
  content: "\f15c";
  margin: 0 12px 0 0;
  font-size: 1.4rem;
  font-weight: 500;
  color: #00375B;
}
#modal-window ul li > ul li a:hover,
#modal-window ul li.current > ul li a:hover,
#modal-window ul li.current > ul li.current a {
  background-color: #D8EEF3;
}
#modal-window ul li.current > ul li a {
  background-color: #FFFFFF;
}

#modal-window ul li.nav-literacy a:before {
  color: #F2CE00;
}
#modal-window ul li.nav-ouyoukiso a:before {
  color: #2BA65B;
}
#modal-window ul li.nav-contact a:before {
  content: "\f1fa";
  font-size: 1.4rem;
  font-weight: 900;
  color: #D93600;
}



/****************************/
/********** Footer **********/
/****************************/

#footer {
  clear: both;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  background-image: url("../images/footer_bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #00375B;
  background-blend-mode: soft-light;
  color: #FFFFFF;
}
#footer footer {
  margin: auto;
  padding: 50px 20px;
  width: 100%;
}
#footer footer a {
  color: #FFFFFF;
}
#footer footer h3 {
  margin: 0 auto 20px auto;
  padding: 0;
  font-family: Montserrat;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0;
  color: #FFFFFF;
  text-align: center;
}
#footer footer h3 .translation {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0;
}
#footer footer h3 .translation:before {
  content: "\A";
  white-space: pre;
}
#footer footer address {
  margin: 0 auto;
  padding: 0;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 180%;
  list-style-type: none;
  color: #FFFFFF;
}

#footer #copyright {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  color: #000000;
  background-color: #FFFFFF;
  text-align: center;
  margin: auto;
  padding: 4px 20px;
  width: 100%;
}
#footer #pagetop {
  position: fixed;
  right: 20px;
  bottom: 50px;
}
#footer #pagetop a {
  color: #DDDDDD;
  text-decoration: none;
  font-size: 4.4rem;
  font-weight: 500;
  transition: 0.3s;
}
#footer #pagetop a:hover {
  opacity: 0.6;
}



/**************************/
/********** Main **********/
/**************************/

main {
  display: block;
  margin: auto;
  padding: 0;
  width: 100%;
  text-align: left;
  flex-grow: 1;
  position: relative;
  min-height: 0%;
  overflow-x: hidden;
}



/*****************************/
/********** Content **********/
/*****************************/

.content {
  clear: both;
  margin: auto;
  padding: 40px 20px;
  width: 100%;
}



/**************************/
/********** Home **********/
/**************************/

.main-image-section {
  margin: 0;
  padding: 60px 0 80px 0;
  position: relative;
  top: 0;
  z-index: 0;
  width: 100%;
  height: auto;
}
.main-image-section:before {
  content: '';
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10vw), 0 100%);
  background-image: url("../images/main-image-section_bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #00375B;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
.main-image-section:after {
  content: '';
  background-image: url("../images/main-image.png");
  background-repeat: no-repeat;
  background-position: calc(100% + 60px) calc(50% + 30px);
  background-size: 300px 258px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.main-image-section .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-image-section h2 {
  margin: 0;
  padding: 0;
  display: inline;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  line-height: 220%;
  color: #FFFFFF;
  text-align: left;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}
.main-image-section h2 span {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  line-height: 220%;
  color: #000000;
  background-color: #FFFFFF;
  padding: 4px 8px;
}
.main-image-section .main-image {
  flex-shrink: 0;
  position: relative;
  z-index: 9999;
}



.outline-section {
  clear: both;
  margin: auto;
  padding: 0;
  width: 100%;
  background-color: #FFFFFF;
}
.outline-section p {
  font-weight: 700;
}
.outline-section .level-logo {
  clear: both;
  margin: 30px auto;
  padding: 0;
}
.outline-section .level-logo ul {
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px 2%;
}
.outline-section .level-logo ul li {
  margin: 0;
  padding: 10px;
  list-style-type: none;
  width: 49%;
  display: flex;
  flex-direction: column;
  gap: 16px 0;
}
.outline-section .level-logo .logo-mark img {
  width: 50%;
  height: auto;
}
.outline-section .level-logo .logo-text img {
  width: 100%;
  height: auto;
}
.outline-section .level-logo .logo-mark {
  display: flex;
  justify-content: center;
  gap: 0 12px;
}
.outline-section .level-logo .logo-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px 0;
}
.outline-section .level-logo .deadline {
  margin: 30px auto 0 auto;
  padding: 8px;
  background-color: #F1F1F1;
  border-radius: 6px;
  font-size: 1.5rem;
  text-align: center;
}



.literacy-section {
  clear: both;
  margin: auto;
  padding: 20px 0;
  width: 100%;
  background-image: url("../images/literacy-section_bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 240px auto;
  background-color: rgba(255,249,213,0.7);
  background-blend-mode: lighten;
}
.literacy-section h3 {
  margin: 0 0 30px 0;
  padding: 0 12px;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  line-height: 120%;
  color: #000000;
  text-align: left;
  border-left: 6px solid #FFD700;
}
.literacy-section p {
  font-size: 1.6rem;
  line-height: 160%;
}
.literacy-section .button {
  justify-content: center;
}



.ouyoukiso-section {
  clear: both;
  margin: auto;
  padding: 20px 0;
  width: 100%;
  background-image: url("../images/ouyoukiso-section_bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 240px auto;
  background-color: rgba(221,247,230,0.7);
  background-blend-mode: difference;
}
.ouyoukiso-section h3 {
  margin: 0 0 30px 0;
  padding: 0 12px;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  line-height: 120%;
  color: #000000;
  text-align: left;
  border-left: 6px solid #4BD180;
}
.ouyoukiso-section p {
  font-size: 1.6rem;
  line-height: 160%;
}
.ouyoukiso-section .button {
  justify-content: center;
}



.news-section {
  clear: both;
  margin: auto;
  padding: 20px 0;
  width: 100%;
  background-color: #FFFFFF;
}
.news-section h3 {
  margin: 0 0 30px 0;
  padding: 0 0 4px 0;
  font-family: Montserrat;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0;
  color: #000000;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #00375B;
}
.news-section h3 .translation {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0;
}
.news-section h3 .translation:before {
  content: "/";
  margin: 0 14px;
}
.news-section h3 .archive,
.news-section h3 .archive a {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0;
  margin: 0 0 0 auto;
}
.news-section .listing {
  clear: both;
  margin: 0;
  padding: 0;
  width: 100%;
}
.news-section .listing ul {
  margin: 0;
  padding: 0;
}
.news-section .listing ul li {
  margin: 0 0 10px 0;
  padding: 0 0 10px 0;
  border-bottom: 1px solid #B0B0B0;
  list-style-type: none;
}
.news-section .listing ul li dl {
  margin: 0;
  padding: 0;
}
.news-section .listing ul li dl dt {
  margin: 0 ;
  padding: 0;
  font-family: Montserrat;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.1rem;
  text-align: left;
}
.news-section .listing ul li dl dd {
  margin: 0;
  padding: 0;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 200%;
  text-align: left;
}



/**************************/
/********** Page **********/
/**************************/

.page-title {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 4vw), 0 100%);
  background-image: url("../images/page-title_bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #00375B;
  background-blend-mode: soft-light;
}
.page-title h2 {
  margin: auto;
  padding: 50px 30px;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.2rem;
  color: #FFFFFF;
  text-align: left;
  width: 100%;
}

.page main .content {
  padding: 0 20px 30px 20px;
}
.page main h3 {
  width: 100%;
  border-bottom: 5px solid #F1F1F1;
}
.page main h3:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 190px;
  border-bottom: 5px solid #00375B;
}



/*********************************/
/********** Breadcrumbs **********/
/*********************************/

#breadcrumbs {
  margin: 12px auto;
  padding: 0 20px;
  text-align: right;
  width: 100%;
}
#breadcrumbs ul {
  margin: 0 0 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
#breadcrumbs ul li {
  margin: 0;
  padding: 0;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 180%;
  list-style-type: none;
}
#breadcrumbs ul li+li:before {
  content: ">";
  margin: 0 6px;
  font-size: 0.9rem;
}
#breadcrumbs ul li a {
  font-size: 1.1rem;
  font-weight: 500;
  color: #000000;
}



}



/***********************************************************/
/********** Responsive Contents Setting (480-768) **********/
/***********************************************************/

@media screen and ( min-width: 481px ) and ( max-width: 768px ) {



/*******************************/
/********** Container **********/
/*******************************/

#container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  position: relative;
}



/****************************/
/********** Header **********/
/****************************/

#header {
  margin: 0 auto;
  padding: 0;
  background-color: #FFFFFF;
  color: #000000;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 9999;
}
#header header {
  margin: auto;
  padding: 30px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background-color: #FFFFFF;
  color: #000000;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.06);
}
#header header h1,
#header header h1 a {
  margin: 0 40px 0 0;
  padding: 0;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0;
  text-align: left;
  color: #000000;
}



/****************************************/
/********** Respomsive Swicher **********/
/****************************************/

#modal {
  margin: 0;
  padding: 0;
}
#modal label {
  display: inline-block;
}
#modal input {
  display: none;
}
#modal label:hover {
  cursor: pointer;
}
#modal label:after {
  font-family: 'Font Awesome 5 Free';
  content: "\f0c9";
  font-size: 2.0rem;
  font-weight: 900;
  color: #00375B;
  display: inline-block;
  transition: 0.3s;
}
#modal input:checked ~ #modal-window {
  visibility: visible;
}
#modal input:checked ~ label:after {
  font-family: 'Font Awesome 5 Free';
  content: "\f00d";
  transform: rotate(180deg);
}

#modal-window {
  visibility: hidden;
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  overflow-y: auto;
  width: 100%;
  height: 100%;
  padding-top: 100px;
  background-color: #00375B;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
#modal-window::-webkit-scrollbar {
  display: none;
}
#modal-window ul {
  margin: 0;
  padding: 20px;
  width: 100%;
}
#modal-window ul li {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 120%;
  text-align: left;
  background-color: #FFFFFF;
  color: #000000;
  list-style-type: none;
  width: 100%;
  margin: 20px 0;
  padding: 0;
}
#modal-window ul li a {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 120%;
  text-align: left;
  text-decoration: none;
  background-color: #FFFFFF;
  color: #000000;
  width: 100%;
  margin: 0;
  padding: 12px;
  display: flex;
  align-items: center;
}
#modal-window ul li a:before {
  font-family: 'Font Awesome 5 Free';
  content: "\f07c";
  margin: 0 12px 0 0;
  font-size: 1.8rem;
  font-weight: 500;
  color: #00375B;
}
#modal-window ul li a.no-click {
  pointer-events: none;
  cursor: default;
}
#modal-window ul li a:hover,
#modal-window ul li.current a {
  background-color: #D8EEF3;
}

#modal-window ul li > ul {
  margin: 0;
  padding: 12px;
  display: flex;
  flex-wrap: wrap;
}
#modal-window ul li > ul li {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 120%;
  text-align: left;
  background-color: #FFFFFF;
  color: #000000;
  list-style-type: none;
  width: 49%;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #00375B;
}
#modal-window ul li > ul li a {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 120%;
  text-align: left;
  background-color: #FFFFFF;
  color: #000000;
  list-style-type: none;
  width: 100%;
  margin: 0;
  padding: 12px;
  display: flex;
  align-items: center;
}
#modal-window ul li > ul li:nth-child(even) {
  margin: 0 0 0 2%;
}
#modal-window ul li > ul li a:before {
  font-family: 'Font Awesome 5 Free';
  content: "\f15c";
  margin: 0 12px 0 0;
  font-size: 1.6rem;
  font-weight: 500;
  color: #00375B;
}
#modal-window ul li > ul li a:hover,
#modal-window ul li.current > ul li a:hover,
#modal-window ul li.current > ul li.current a {
  background-color: #D8EEF3;
}
#modal-window ul li.current > ul li a {
  background-color: #FFFFFF;
}

#modal-window ul li.nav-literacy a:before {
  color: #F2CE00;
}
#modal-window ul li.nav-ouyoukiso a:before {
  color: #2BA65B;
}
#modal-window ul li.nav-contact a:before {
  content: "\f1fa";
  font-size: 1.6rem;
  font-weight: 900;
  color: #D93600;
}



/****************************/
/********** Footer **********/
/****************************/

#footer {
  clear: both;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  background-image: url("../images/footer_bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #00375B;
  background-blend-mode: soft-light;
  color: #FFFFFF;
}
#footer footer {
  margin: auto;
  padding: 60px 20px;
  width: 100%;
}
#footer footer a {
  color: #FFFFFF;
}
#footer footer h3 {
  margin: 0 auto 20px auto;
  padding: 0;
  font-family: Montserrat;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0;
  color: #FFFFFF;
  text-align: center;
}
#footer footer h3 .translation {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0;
}
#footer footer h3 .translation:before {
  content: "\A";
  white-space: pre;
}
#footer footer address {
  margin: 0 auto;
  padding: 0;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 180%;
  list-style-type: none;
  color: #FFFFFF;
}

#footer #copyright {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  color: #000000;
  background-color: #FFFFFF;
  text-align: center;
  margin: auto;
  padding: 4px 20px;
  width: 100%;
}
#footer #pagetop {
  position: fixed;
  right: 20px;
  bottom: 60px;
}
#footer #pagetop a {
  color: #DDDDDD;
  text-decoration: none;
  font-size: 4.6rem;
  font-weight: 500;
  transition: 0.3s;
}
#footer #pagetop a:hover {
  opacity: 0.6;
}



/**************************/
/********** Main **********/
/**************************/

main {
  display: block;
  margin: auto;
  padding: 0;
  width: 100%;
  text-align: left;
  flex-grow: 1;
  position: relative;
  min-height: 0%;
  overflow-x: hidden;
}



/*****************************/
/********** Content **********/
/*****************************/

.content {
  clear: both;
  margin: auto;
  padding: 20px;
  width: 100%;
}



/**************************/
/********** Home **********/
/**************************/

.main-image-section {
  margin: 0;
  padding: 120px 0 140px 0;
  position: relative;
  top: 0;
  z-index: 0;
  width: 100%;
  height: auto;
}
.main-image-section:before {
  content: '';
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10vw), 0 100%);
  background-image: url("../images/main-image-section_bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #00375B;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
.main-image-section:after {
  content: '';
  background-image: url("../images/main-image.png");
  background-repeat: no-repeat;
  background-position: calc(100% + 80px) calc(50% + 30px);
  background-size: 400px 344px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.main-image-section .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-image-section h2 {
  margin: 0;
  padding: 0;
  display: inline;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  line-height: 220%;
  color: #FFFFFF;
  text-align: left;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}
.main-image-section h2 span {
  font-size: 2.0rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
  line-height: 220%;
  color: #000000;
  background-color: #FFFFFF;
  padding: 5px 10px;
}
.main-image-section .main-image {
  flex-shrink: 0;
  position: relative;
  z-index: 9999;
}



.outline-section {
  clear: both;
  margin: auto;
  padding: 0;
  width: 100%;
  background-color: #FFFFFF;
}
.outline-section p {
  font-weight: 700;
}
.outline-section .level-logo {
  clear: both;
  margin: 30px auto;
  padding: 0;
}
.outline-section .level-logo ul {
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px 2%;
}
.outline-section .level-logo ul li {
  margin: 0;
  padding: 10px;
  list-style-type: none;
  width: 49%;
  display: flex;
  justify-content: center;
  gap: 0 16px;
}
.outline-section .level-logo .logo-mark img {
  width: 50%;
  height: auto;
}
.outline-section .level-logo .logo-text img {
  width: 100%;
  height: auto;
}
.outline-section .level-logo .logo-mark {
  display: flex;
  justify-content: center;
  gap: 0 12px;
  width: 50%;
}
.outline-section .level-logo .logo-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px 0;
  width: 50%;
}
.outline-section .level-logo .deadline {
  margin: 30px auto 0 auto;
  padding: 8px;
  background-color: #F1F1F1;
  border-radius: 6px;
  font-size: 1.6rem;
  text-align: center;
}



.literacy-section {
  clear: both;
  margin: auto;
  padding: 30px 0;
  width: 100%;
  background-image: url("../images/literacy-section_bg.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 260px auto;
  background-color: rgba(255,249,213,0.7);
  background-blend-mode: lighten;
}
.literacy-section h3 {
  margin: 0 0 30px 0;
  padding: 0 12px;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  line-height: 120%;
  color: #000000;
  text-align: left;
  border-left: 6px solid #FFD700;
}
.literacy-section p {
  font-size: 1.6rem;
  line-height: 160%;
}



.ouyoukiso-section {
  clear: both;
  margin: auto;
  padding: 30px 0;
  width: 100%;
  background-image: url("../images/ouyoukiso-section_bg.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 260px auto;
  background-color: rgba(221,247,230,0.7);
  background-blend-mode: difference;
}
.ouyoukiso-section h3 {
  margin: 0 0 30px 0;
  padding: 0 12px;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  line-height: 120%;
  color: #000000;
  text-align: left;
  border-left: 6px solid #4BD180;
}
.ouyoukiso-section p {
  font-size: 1.6rem;
  line-height: 160%;
}



.news-section {
  clear: both;
  margin: auto;
  padding: 30px 0;
  width: 100%;
  background-color: #FFFFFF;
}
.news-section h3 {
  margin: 0 0 30px 0;
  padding: 0 0 4px 0;
  font-family: Montserrat;
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0;
  color: #000000;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #00375B;
}
.news-section h3 .translation {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0;
}
.news-section h3 .translation:before {
  content: "/";
  margin: 0 14px;
}
.news-section h3 .archive,
.news-section h3 .archive a {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0;
  margin: 0 0 0 auto;
}
.news-section .listing {
  clear: both;
  margin: 0;
  padding: 0;
  width: 100%;
}
.news-section .listing ul {
  margin: 0;
  padding: 0;
}
.news-section .listing ul li {
  margin: 0 0 10px 0;
  padding: 0 0 10px 0;
  border-bottom: 1px solid #B0B0B0;
  list-style-type: none;
}
.news-section .listing ul li dl {
  margin: 0;
  padding: 0;
}
.news-section .listing ul li dl dt {
  margin: 0 ;
  padding: 0;
  font-family: Montserrat;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.1rem;
  text-align: left;
}
.news-section .listing ul li dl dd {
  margin: 0;
  padding: 0;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 200%;
  text-align: left;
}



/**************************/
/********** Page **********/
/**************************/

.page-title {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 4vw), 0 100%);
  background-image: url("../images/page-title_bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #00375B;
  background-blend-mode: soft-light;
}
.page-title h2 {
  margin: auto;
  padding: 60px 40px;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.2rem;
  color: #FFFFFF;
  text-align: left;
  width: 100%;
}

.page main .content {
  padding: 0 20px 40px 20px;
}
.page main h3 {
  width: 100%;
  border-bottom: 5px solid #F1F1F1;
}
.page main h3:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 200px;
  border-bottom: 5px solid #00375B;
}



/*********************************/
/********** Breadcrumbs **********/
/*********************************/

#breadcrumbs {
  margin: 12px auto;
  padding: 0 20px;
  text-align: right;
  width: 100%;
}
#breadcrumbs ul {
  margin: 0 0 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
#breadcrumbs ul li {
  margin: 0;
  padding: 0;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 180%;
  list-style-type: none;
}
#breadcrumbs ul li+li:before {
  content: ">";
  margin: 0 8px;
  font-size: 1.0rem;
}
#breadcrumbs ul li a {
  font-size: 1.2rem;
  font-weight: 500;
  color: #000000;
}



}



/************************************************************/
/********** Responsive Contents Setting (768-1024) **********/
/************************************************************/

@media print, screen and ( min-width: 769px ) and ( max-width: 1024px ) {



/*******************************/
/********** Container **********/
/*******************************/

#container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  position: relative;
}



/****************************/
/********** Header **********/
/****************************/

#header {
  margin: 0 auto;
  padding: 0;
  background-color: #FFFFFF;
  color: #000000;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 9999;
}
#header header {
  margin: auto;
  padding: 30px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background-color: #FFFFFF;
  color: #000000;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.06);
}
#header header h1,
#header header h1 a {
  margin: 0 50px 0 0;
  padding: 0;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0;
  text-align: left;
  color: #000000;
}



/****************************************/
/********** Respomsive Swicher **********/
/****************************************/

#modal {
  margin: 0;
  padding: 0;
}
#modal label {
  display: inline-block;
}
#modal input {
  display: none;
}
#modal label:hover {
  cursor: pointer;
}
#modal label:after {
  font-family: 'Font Awesome 5 Free';
  content: "\f0c9";
  font-size: 2.0rem;
  font-weight: 900;
  color: #00375B;
  display: inline-block;
  transition: 0.3s;
}
#modal input:checked ~ #modal-window {
  visibility: visible;
}
#modal input:checked ~ label:after {
  font-family: 'Font Awesome 5 Free';
  content: "\f00d";
  transform: rotate(180deg);
}

#modal-window {
  visibility: hidden;
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  overflow-y: auto;
  width: 100%;
  height: 100%;
  padding-top: 100px;
  background-color: #00375B;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
#modal-window::-webkit-scrollbar {
  display: none;
}
#modal-window ul {
  margin: 0;
  padding: 20px;
  width: 100%;
}
#modal-window ul li {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 120%;
  text-align: left;
  background-color: #FFFFFF;
  color: #000000;
  list-style-type: none;
  width: 100%;
  margin: 20px 0;
  padding: 0;
}
#modal-window ul li a {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 120%;
  text-align: left;
  text-decoration: none;
  background-color: #FFFFFF;
  color: #000000;
  width: 100%;
  margin: 0;
  padding: 12px;
  display: flex;
  align-items: center;
}
#modal-window ul li a:before {
  font-family: 'Font Awesome 5 Free';
  content: "\f07c";
  margin: 0 12px 0 0;
  font-size: 1.8rem;
  font-weight: 500;
  color: #00375B;
}
#modal-window ul li a.no-click {
  pointer-events: none;
  cursor: default;
}
#modal-window ul li a:hover,
#modal-window ul li.current a {
  background-color: #D8EEF3;
}

#modal-window ul li > ul {
  margin: 0;
  padding: 12px;
  display: flex;
  flex-wrap: wrap;
}
#modal-window ul li > ul li {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 120%;
  text-align: left;
  background-color: #FFFFFF;
  color: #000000;
  list-style-type: none;
  width: 32%;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #00375B;
}
#modal-window ul li > ul li a {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 120%;
  text-align: left;
  background-color: #FFFFFF;
  color: #000000;
  list-style-type: none;
  width: 100%;
  margin: 0;
  padding: 12px;
  display: flex;
  align-items: center;
}
#modal-window ul li > ul li {
  margin: 0 2% 0 0;
}
#modal-window ul li > ul li:nth-child(3n) {
  margin: 0;
}
#modal-window ul li > ul li a:before {
  font-family: 'Font Awesome 5 Free';
  content: "\f15c";
  margin: 0 12px 0 0;
  font-size: 1.6rem;
  font-weight: 500;
  color: #00375B;
}
#modal-window ul li > ul li a:hover,
#modal-window ul li.current > ul li a:hover,
#modal-window ul li.current > ul li.current a {
  background-color: #D8EEF3;
}
#modal-window ul li.current > ul li a {
  background-color: #FFFFFF;
}

#modal-window ul li.nav-literacy a:before {
  color: #F2CE00;
}
#modal-window ul li.nav-ouyoukiso a:before {
  color: #2BA65B;
}
#modal-window ul li.nav-contact a:before {
  content: "\f1fa";
  font-size: 1.6rem;
  font-weight: 900;
  color: #D93600;
}



/****************************/
/********** Footer **********/
/****************************/

#footer {
  clear: both;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  background-image: url("../images/footer_bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #00375B;
  background-blend-mode: soft-light;
  color: #FFFFFF;
}
#footer footer {
  margin: auto;
  padding: 70px 40px;
  width: 100%;
  display: flex;
}
#footer footer a {
  color: #FFFFFF;
}
#footer footer h3 {
  margin: 0;
  padding: 0;
  font-family: Montserrat;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0;
  color: #FFFFFF;
}
#footer footer h3 .translation {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0;
}
#footer footer h3 .translation:before {
  content: "\A";
  white-space: pre;
}
#footer footer address {
  margin: 0 0 0 40px;
  padding: 0;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 180%;
  list-style-type: none;
  color: #FFFFFF;
}

#footer #copyright {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  color: #000000;
  background-color: #FFFFFF;
  text-align: center;
  margin: auto;
  padding: 4px 20px;
  width: 100%;
}
#footer #pagetop {
  position: fixed;
  right: 20px;
  bottom: 60px;
}
#footer #pagetop a {
  color: #DDDDDD;
  text-decoration: none;
  font-size: 4.8rem;
  font-weight: 500;
  transition: 0.3s;
}
#footer #pagetop a:hover {
  opacity: 0.6;
}



/**************************/
/********** Main **********/
/**************************/

main {
  display: block;
  margin: auto;
  padding: 0;
  width: 100%;
  text-align: left;
  flex-grow: 1;
  position: relative;
  min-height: 0%;
  overflow-x: hidden;
}



/*****************************/
/********** Content **********/
/*****************************/

.content {
  clear: both;
  margin: auto;
  padding: 20px;
  width: 100%;
}



/**************************/
/********** Home **********/
/**************************/

.main-image-section {
  margin: 0;
  padding: 120px 0 140px 0;
  position: relative;
  top: 0;
  z-index: 0;
  width: 100%;
  height: auto;
}
.main-image-section:before {
  content: '';
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10vw), 0 100%);
  background-image: url("../images/main-image-section_bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #00375B;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
.main-image-section:after {
  content: '';
  background-image: url("../images/main-image.png");
  background-repeat: no-repeat;
  background-position: calc(100% + 100px) calc(50% + 30px);
  background-size: 500px 430px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.main-image-section .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-image-section h2 {
  margin: 0;
  padding: 0;
  display: inline;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  line-height: 220%;
  color: #FFFFFF;
  text-align: left;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}
.main-image-section h2 span {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.3rem;
  line-height: 220%;
  color: #000000;
  background-color: #FFFFFF;
  padding: 6px 18px;
}
.main-image-section .main-image {
  flex-shrink: 0;
  position: relative;
  z-index: 9999;
}



.outline-section {
  clear: both;
  margin: auto;
  padding: 0;
  width: 100%;
  background-color: #FFFFFF;
}
.outline-section p {
  font-weight: 700;
}
.outline-section .level-logo {
  clear: both;
  margin: 40px auto;
  padding: 0;
}
.outline-section .level-logo ul {
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px 2%;
}
.outline-section .level-logo ul li {
  margin: 0;
  padding: 10px;
  list-style-type: none;
  width: 49%;
  display: flex;
  justify-content: center;
  gap: 0 16px;
}
.outline-section .level-logo .logo-mark img {
  width: 50%;
  height: auto;
}
.outline-section .level-logo .logo-text img {
  width: 100%;
  height: auto;
}
.outline-section .level-logo .logo-mark {
  display: flex;
  justify-content: center;
  gap: 0 12px;
  width: 50%;
}
.outline-section .level-logo .logo-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px 0;
  width: 50%;
}
.outline-section .level-logo .deadline {
  margin: 40px auto 0 auto;
  padding: 8px;
  background-color: #F1F1F1;
  border-radius: 6px;
  font-size: 1.6rem;
  text-align: center;
}



.literacy-section {
  clear: both;
  margin: auto;
  padding: 40px 0;
  width: 100%;
  background-image: url("../images/literacy-section_bg.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 300px auto;
  background-color: rgba(255,249,213,0.7);
  background-blend-mode: lighten;
}
.literacy-section h3 {
  margin: 0 0 30px 0;
  padding: 0 12px;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  line-height: 120%;
  color: #000000;
  text-align: left;
  border-left: 6px solid #FFD700;
}
.literacy-section p {
  font-size: 1.6rem;
  line-height: 160%;
}



.ouyoukiso-section {
  clear: both;
  margin: auto;
  padding: 40px 0;
  width: 100%;
  background-image: url("../images/ouyoukiso-section_bg.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 300px auto;
  background-color: rgba(221,247,230,0.7);
  background-blend-mode: difference;
}
.ouyoukiso-section h3 {
  margin: 0 0 30px 0;
  padding: 0 12px;
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  line-height: 120%;
  color: #000000;
  text-align: left;
  border-left: 6px solid #4BD180;
}
.ouyoukiso-section p {
  font-size: 1.6rem;
  line-height: 160%;
}



.news-section {
  clear: both;
  margin: auto;
  padding: 40px 0;
  width: 100%;
  background-color: #FFFFFF;
}
.news-section h3 {
  margin: 0 0 30px 0;
  padding: 0 0 4px 0;
  font-family: Montserrat;
  font-size: 2.8rem;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0;
  color: #000000;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #00375B;
}
.news-section h3 .translation {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0;
}
.news-section h3 .translation:before {
  content: "/";
  margin: 0 16px;
}
.news-section h3 .archive,
.news-section h3 .archive a {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0;
  margin: 0 0 0 auto;
}
.news-section .listing {
  clear: both;
  margin: 0;
  padding: 0;
  width: 100%;
}
.news-section .listing ul {
  margin: 0;
  padding: 0;
}
.news-section .listing ul li {
  margin: 0 0 10px 0;
  padding: 0 0 10px 0;
  border-bottom: 1px solid #B0B0B0;
  list-style-type: none;
}
.news-section .listing ul li dl {
  margin: 0;
  padding: 0;
}
.news-section .listing ul li dl dt {
  margin: 0 ;
  padding: 0;
  font-family: Montserrat;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.1rem;
  text-align: left;
}
.news-section .listing ul li dl dd {
  margin: 0;
  padding: 0;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 200%;
  text-align: left;
}



/**************************/
/********** Page **********/
/**************************/

.page-title {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 4vw), 0 100%);
  background-image: url("../images/page-title_bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #00375B;
  background-blend-mode: soft-light;
}
.page-title h2 {
  margin: auto;
  padding: 70px 40px;
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.2rem;
  color: #FFFFFF;
  text-align: left;
  width: 100%;
}

.page main .content {
  padding: 0 20px 50px 20px;
}
.page main h3 {
  width: 100%;
  border-bottom: 5px solid #F1F1F1;
}
.page main h3:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 220px;
  border-bottom: 5px solid #00375B;
}



/*********************************/
/********** Breadcrumbs **********/
/*********************************/

#breadcrumbs {
  margin: 12px auto;
  padding: 0 20px;
  text-align: right;
  width: 100%;
}
#breadcrumbs ul {
  margin: 0 0 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
#breadcrumbs ul li {
  margin: 0;
  padding: 0;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 180%;
  list-style-type: none;
}
#breadcrumbs ul li+li:before {
  content: ">";
  margin: 0 10px;
  font-size: 1.0rem;
}
#breadcrumbs ul li a {
  font-size: 1.2rem;
  font-weight: 500;
  color: #000000;
}



}




/********************************************************/
/********** Responsive Contents Setting (1024) **********/
/********************************************************/

@media screen and ( min-width: 1025px ) {



/*******************************/
/********** Container **********/
/*******************************/

#container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  position: relative;
}



/****************************/
/********** Header **********/
/****************************/

#header {
  margin: 0 auto;
  padding: 0;
  background-color: #FFFFFF;
  color: #000000;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 9999;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.06);
}
#header header {
  margin: auto;
  padding: 30px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1140px;
  background-color: #FFFFFF;
  color: #000000;
}
#header header h1,
#header header h1 a {
  margin: 0;
  padding: 0;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0;
  text-align: left;
  color: #000000;
}



/********************************/
/********** Global Nav **********/
/********************************/

#global-nav {
  margin: 0 0 0 auto;
  padding: 0;
  width: 100%;
  background-color: #FFFFFF;
  color: #000000;
  position: relative;
}
#global-nav ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
#global-nav ul li {
  margin: 0;
  padding: 0;
  color: #000000;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0.1rem;
  list-style-type: none;
}
#global-nav ul li a {
  display: block;
  color: #000000;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0.1rem;
  text-decoration: none;
  position: relative;
}
#global-nav ul li+li {
  border-left: 1px solid #000000;
  margin-left: 12px;
  padding-left: 12px;
}
#global-nav ul li a:after {
  content: '';
  width: 0;
  border-bottom: 5px solid #00375B;
  display: block;
  position: absolute;
  left: 0;
  bottom: -7px;
}
#global-nav ul li a:hover:after,
#global-nav ul li.current a:after {
  width: 100%;
  border-bottom: 5px solid #00375B;
}

#global-nav ul li > ul {
  display: block;
  position: absolute;
  z-index: 6666;
  margin: 0;
  padding: 12px 0 0 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  width: 220px;
}
#global-nav ul li:hover > ul {
  display: block;
  visibility: visible;
  opacity: 1;
}
#global-nav ul li > ul li {
  margin: 0;
  padding: 0;
  background-color: #00375B;
  color: #FFFFFF;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0.1rem;
  list-style-type: none;
}
#global-nav ul li > ul li a {
  display: block;
  width: 100%;
  padding: 12px 18px;
  background-color: #00375B;
  color: #FFFFFF;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0.1rem;
  text-decoration: none;
}
#global-nav ul li > ul li+li {
  border-top: 1px solid #FFFFFF;
  border-left: none;
}
#global-nav ul li > ul li a:hover,
#global-nav ul li > ul li.current a {
  background-color: #0D6287;
}
#global-nav ul li > ul li a:hover:after,
#global-nav ul li.current > ul li a:after,
#global-nav ul li > ul li.current a:after {
  border: none;
}



/****************************************/
/********** Respomsive Swicher **********/
/****************************************/

#trigger {
  display: none;
}



/****************************/
/********** Footer **********/
/****************************/

#footer {
  clear: both;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  background-image: url("../images/footer_bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #00375B;
  background-blend-mode: soft-light;
  color: #FFFFFF;
}
#footer footer {
  margin: auto;
  padding: 80px 20px;
  width: 100%;
  max-width: 1140px;
  display: flex;
}
#footer footer a {
  color: #FFFFFF;
}
#footer footer h3 {
  margin: 0;
  padding: 0;
  font-family: Montserrat;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0;
  color: #FFFFFF;
}
#footer footer h3 .translation {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0;
}
#footer footer h3 .translation:before {
  content: "\A";
  white-space: pre;
}
#footer footer address {
  margin: 0 0 0 60px;
  padding: 0;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 180%;
  list-style-type: none;
  color: #FFFFFF;
}

#footer #copyright {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  color: #000000;
  background-color: #FFFFFF;
  text-align: center;
  margin: auto;
  padding: 4px 20px;
  width: 100%;
}
#footer #pagetop {
  position: fixed;
  right: 40px;
  bottom: 60px;
}
#footer #pagetop a {
  color: #DDDDDD;
  text-decoration: none;
  font-size: 5.0rem;
  font-weight: 500;
  transition: 0.3s;
}
#footer #pagetop a:hover {
  opacity: 0.6;
}



/**************************/
/********** Main **********/
/**************************/

main {
  display: block;
  margin: auto;
  padding: 0;
  width: 100%;
  text-align: left;
  flex-grow: 1;
  position: relative;
  min-height: 0%;
  overflow-x: hidden;
}



/*****************************/
/********** Content **********/
/*****************************/

.content {
  clear: both;
  margin: auto;
  padding: 40px 20px;
  width: 100%;
  max-width: 1140px;
}



/**************************/
/********** Home **********/
/**************************/

.main-image-section {
  margin: 0;
  padding: 140px 0 220px 0;
  position: relative;
  top: 0;
  z-index: 0;
  width: 100%;
  height: auto;
}
.main-image-section:before {
  content: '';
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10vw), 0 100%);
  background-image: url("../images/main-image-section_bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #00375B;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
.main-image-section:after {
  content: '';
  background-image: url("../images/main-image.png");
  background-repeat: no-repeat;
  background-position: calc(50% + 360px) calc(50% + 30px);
  background-size: 570px 490px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.main-image-section .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-image-section h2 {
  margin: 0;
  padding: 0;
  display: inline;
  font-size: 2.0rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  line-height: 220%;
  color: #FFFFFF;
  text-align: left;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}
.main-image-section h2 span {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.3rem;
  line-height: 220%;
  color: #000000;
  background-color: #FFFFFF;
  padding: 6px 18px;
}
.main-image-section .main-image {
  flex-shrink: 0;
  position: relative;
  z-index: 9999;
}



.outline-section {
  clear: both;
  margin: auto;
  padding: 0;
  width: 100%;
  background-color: #FFFFFF;
}
.outline-section p {
  font-weight: 700;
}
.outline-section .level-logo {
  clear: both;
  margin: 40px auto;
  padding: 0;
}
.outline-section .level-logo ul {
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px 2%;
}
.outline-section .level-logo ul li {
  margin: 0;
  padding: 0;
  list-style-type: none;
  width: 49%;
  display: flex;
  justify-content: center;
  gap: 0 16px;
}
.outline-section .level-logo .logo-mark {
  display: flex;
  justify-content: center;
  gap: 0 12px;
}
.outline-section .level-logo .logo-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px 0;
}
.outline-section .level-logo .deadline {
  margin: 40px auto 0 auto;
  padding: 8px;
  background-color: #F1F1F1;
  border-radius: 6px;
  font-size: 1.6rem;
  text-align: center;
}



.literacy-section {
  clear: both;
  margin: auto;
  padding: 60px 0;
  width: 100%;
  background-image: url("../images/literacy-section_bg.png"),
                    linear-gradient(110deg, #F1F1F1 0%, #F1F1F1 55%, #FFE13B 55%, #FFE13B 100%);
  background-repeat: no-repeat,
                     no-repeat;
  background-position: calc(50% + 460px) center,
                       center center;
  background-size: 503px 476px,
                   100% auto;
}
.literacy-section .content {
  padding-right: 560px;
}
.literacy-section h3 {
  margin: 0 0 30px 0;
  padding: 0 12px;
  font-size: 3.0rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  line-height: 120%;
  color: #000000;
  text-align: left;
  border-left: 6px solid #FFD700;
}
.literacy-section p {
  font-size: 1.6rem;
  line-height: 160%;
}



.ouyoukiso-section {
  clear: both;
  margin: auto;
  padding: 60px 0;
  width: 100%;
  background-image: url("../images/ouyoukiso-section_bg.png"),
                    linear-gradient(250deg, #FFFFFF 0%, #FFFFFF 55%, #4BD180 55%, #4BD180 100%);
  background-repeat: no-repeat,
                     no-repeat;
  background-position: left center,
                       center center;
  background-size: 45% auto,
                   100% auto;
}
.ouyoukiso-section .content {
  padding-left: 600px;
}
.ouyoukiso-section h3 {
  margin: 0 0 30px 0;
  padding: 0 12px;
  font-size: 3.0rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  line-height: 120%;
  color: #000000;
  text-align: left;
  border-left: 6px solid #4BD180;
}
.ouyoukiso-section p {
  font-size: 1.6rem;
  line-height: 160%;
}



.news-section {
  clear: both;
  margin: auto;
  padding: 60px 0;
  width: 100%;
  background-color: #FFFFFF;
}
.news-section .content {
  display: flex;
}
.news-section h3 {
  margin: 0;
  padding: 0;
  font-family: Montserrat;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0;
  color: #000000;
  min-width: 260px;
}
.news-section h3 .translation {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0;
}
.news-section h3 .translation:before {
  content: "\A";
  white-space: pre;
}
.news-section h3 .archive,
.news-section h3 .archive a {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0;
}
.news-section h3 .archive:before {
  content: "\A";
  white-space: pre;
}
.news-section .listing {
  clear: both;
  margin: 0;
  padding: 0;
  width: 100%;
}
.news-section .listing ul {
  margin: 0;
  padding: 0;
}
.news-section .listing ul li {
  margin: 0 0 10px 0;
  padding: 0 0 10px 0;
  border-bottom: 1px solid #B0B0B0;
  list-style-type: none;
}
.news-section .listing ul li dl {
  margin: 0;
  padding: 0;
}
.news-section .listing ul li dl dt {
  margin: 0 ;
  padding: 0;
  font-family: Montserrat;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 0.1rem;
  text-align: left;
}
.news-section .listing ul li dl dd {
  margin: 0;
  padding: 0;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 200%;
  text-align: left;
}



/**************************/
/********** Page **********/
/**************************/

.page-title {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 4vw), 0 100%);
  background-image: url("../images/page-title_bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #00375B;
  background-blend-mode: soft-light;
}
.page-title h2 {
  margin: auto;
  padding: 80px 20px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.2rem;
  color: #FFFFFF;
  text-align: left;
  max-width: 1140px;
  width: 100%;
}

.page main .content {
  padding: 0 20px 60px 20px;
}
.page main h3 {
  width: 100%;
  border-bottom: 5px solid #F1F1F1;
}
.page main h3:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 240px;
  border-bottom: 5px solid #00375B;
}



/*********************************/
/********** Breadcrumbs **********/
/*********************************/

#breadcrumbs {
  margin: 0 auto 12px auto;
  padding: 0 20px;
  text-align: right;
  width: 100%;
  max-width: 1140px;
}
#breadcrumbs ul {
  margin: 0 0 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
#breadcrumbs ul li {
  margin: 0;
  padding: 0;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 180%;
  list-style-type: none;
}
#breadcrumbs ul li+li:before {
  content: ">";
  margin: 0 12px;
  font-size: 1.0rem;
}
#breadcrumbs ul li a {
  font-size: 1.2rem;
  font-weight: 500;
  color: #000000;
}



}