@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;
  color: #000000;
  width: 100%;
  display: flex;
  align-items: center;
}
#header header {
  margin: auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
  color: #000000;
}
#header header h1 {
  margin: 0;
  padding: 0;
  font-family: "Arial", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 100%;
  text-align: left;
  color: #273F80;
  display: inline-block;
}
#header header h1 a {
  font-family: "Arial", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 100%;
  text-align: left;
  color: #273F80;
  text-decoration: none;
  transition: opacity 0.3s;
}
#header header h1 a:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  transition: opacity 0.3s;
}
#header header .language {
  display: none;
}



/****************************************/
/********** Respomsive Swicher **********/
/****************************************/

#modal {
  margin: 0;
  padding: 0;
  position: fixed;
  right: 10px;
  z-index: 9999;
}
#modal input {
  display: none;
}
#modal label {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  color: #273F80;
  text-align: center;
  width: 40px;
  height: 32px;
}
#modal label:hover {
  cursor: pointer;
}
#modal label:after {
  font-family: "Font Awesome 6 Free";
  content: "\f0c9";
  font-size: 2.4rem;
  font-weight: 900;
  color: #273F80;
  display: inline-block;
  transition: 0.3s;
}
#modal input:checked ~ #modal-window {
  visibility: visible;
}
#modal input:checked ~ label:after {
  font-family: "Font Awesome 6 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%;
  background: rgba(255,255,255,0.9);
  -ms-overflow-style: none;
  scrollbar-width: none;
}
#modal-window::-webkit-scrollbar {
  display: none;
}

#modal-window #global-nav {
  margin: 0;
  padding: 10px 60px 10px 10px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
#modal-window #global-nav ul {
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
#modal-window #global-nav ul li {
  font-family: "Segoe UI", "YuGothic", "Yu Gothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.1rem;
  text-align: left;
  background-color: #3D5592;
  color: #FFFFFF;
  list-style-type: none;
  width: 100%;
  margin: 0 0 1% 0;
  padding: 0;
  border-radius: 4px;
}
#modal-window #global-nav ul li a {
  font-family: "Segoe UI", "YuGothic", "Yu Gothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.1rem;
  text-align: left;
  text-decoration: none;
  background-color: #3D5592;
  color: #FFFFFF;
  width: 100%;
  margin: 0;
  padding: 16px;
  display: flex;
  align-items: center;
  border-radius: 4px;
}
#modal-window #global-nav ul li a:before {
  font-family: "Font Awesome 6 Free";
  content: "\f0c1";
  margin: 0 6px 0 0;
  font-size: 1.2rem;
  font-weight: 900;
  color: #FFFFFF;
}
#modal-window #global-nav ul li a:hover,
#modal-window #global-nav ul li.current a {
  background-color: #273F80;
  color: #FFFFFF;
}

#modal-window .language {
  margin: 0;
  padding: 0 60px 0 10px;
}
#modal-window .language ul {
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
#modal-window .language ul li {
  font-family: "Segoe UI", "YuGothic", "Yu Gothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.1rem;
  text-align: left;
  background-color: #3D5592;
  color: #FFFFFF;
  list-style-type: none;
  width: 49%;
  margin: 0 2% 1% 0;
  padding: 0;
  border-radius: 4px;
}
#modal-window .language ul li a {
  font-family: "Segoe UI", "YuGothic", "Yu Gothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.1rem;
  text-align: left;
  text-decoration: none;
  background-color: #3D5592;
  color: #FFFFFF;
  width: 100%;
  margin: 0;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  border-radius: 4px;
}
#modal-window .language ul li a:before {
  font-family: "Font Awesome 6 Free";
  content: "\f0ac";
  margin: 0 6px 0 0;
  font-size: 1.2rem;
  font-weight: 900;
  color: #FFFFFF;
}
#modal-window .language ul li:nth-child(even) {
  margin: 0 0 1% 0;
}
#modal-window .language ul li a:hover,
#modal-window .language ul li.current a {
  background-color: #273F80;
  color: #FFFFFF;
}



/****************************/
/********** Footer **********/
/****************************/

#footer {
  clear: both;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  position: relative;
  color: #000000;
  background-color: #FFFFFF;
  border-top: 1px solid #274082;
}
#footer footer {
  margin: 10px auto;
  padding: 20px;
  width: 100%;
  background-color: #FFFFFF;
  text-align: center;
}
#footer footer h3 {
  margin: auto;
  padding: 0;
  color: #273F80;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 140%;
}
#footer footer address {
  margin: 10px auto;
  padding: 0;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  line-height: 160%;
}
#footer footer aside {
  clear: both;
  margin: 0;
  padding: 0;
  width: 100%;
}
#footer footer aside ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1%;
  width: 100%;
}
#footer footer aside ul li {
  width: 49.5%;
  margin: 0.5% 0;
  border: 1px solid #273F80;
  display: flex;
  justify-content: center;
  align-items: center;
}
#footer footer aside ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
#footer #pagetop {
  position: fixed;
  bottom: 30px;
  right: 20px;
  z-index: 6666;
}
#footer #pagetop a:before {
  content: '';
  width: 20px;
  height: 20px;
  display: block;
  border-top: 1px solid #273F80;
  border-left: 1px solid #273F80;
  transform: rotate(45deg);
  margin: auto;
  transition: border-color 0.3s;
}
#footer #pagetop a:hover:before {
  opacity: 0.7;
  transition: border-color 0.3s;
}
#footer #copyright {
  margin: auto;
  padding: 4px 20px;
  width: 100%;
  background-color: #273F80;
  color: #FFFFFF;
  font-family: "Arial", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  text-align: center;
}



/**************************/
/********** Main **********/
/**************************/

main {
  display: block;
  margin: auto;
  padding: 0;
  width: 100%;
  text-align: left;
  flex-grow: 1;
  position: relative;
  min-height: 0%;
  overflow-x: hidden;
  background-color: #FFFFFF;
}



/*****************************/
/********** Content **********/
/*****************************/

.content {
  clear: both;
  margin: auto;
  padding: 20px;
  width: 100%;
}



}



/************************************************************/
/********** 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;
  color: #000000;
  width: 100%;
  display: flex;
  align-items: center;
}
#header header {
  margin: auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
  color: #000000;
}
#header header h1 {
  margin: 0;
  padding: 0;
  font-family: "Arial", sans-serif;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 100%;
  text-align: left;
  color: #273F80;
  display: inline-block;
}
#header header h1 a {
  font-family: "Arial", sans-serif;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 100%;
  text-align: left;
  color: #273F80;
  text-decoration: none;
  transition: opacity 0.3s;
}
#header header h1 a:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  transition: opacity 0.3s;
}
#header header .language {
  display: none;
}



/****************************************/
/********** Respomsive Swicher **********/
/****************************************/

#modal {
  margin: 0;
  padding: 0;
  position: fixed;
  right: 10px;
  z-index: 9999;
}
#modal input {
  display: none;
}
#modal label {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  color: #273F80;
  text-align: center;
  width: 40px;
  height: 32px;
}
#modal label:hover {
  cursor: pointer;
}
#modal label:after {
  font-family: "Font Awesome 6 Free";
  content: "\f0c9";
  font-size: 2.4rem;
  font-weight: 900;
  color: #273F80;
  display: inline-block;
  transition: 0.3s;
}
#modal input:checked ~ #modal-window {
  visibility: visible;
}
#modal input:checked ~ label:after {
  font-family: "Font Awesome 6 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%;
  background: rgba(255,255,255,0.9);
  -ms-overflow-style: none;
  scrollbar-width: none;
}
#modal-window::-webkit-scrollbar {
  display: none;
}

#modal-window #global-nav {
  margin: 0;
  padding: 10px 60px 10px 10px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
#modal-window #global-nav ul {
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
#modal-window #global-nav ul li {
  font-family: "Segoe UI", "YuGothic", "Yu Gothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.1rem;
  text-align: left;
  background-color: #3D5592;
  color: #FFFFFF;
  list-style-type: none;
  width: 100%;
  margin: 0 0 1% 0;
  padding: 0;
  border-radius: 4px;
}
#modal-window #global-nav ul li a {
  font-family: "Segoe UI", "YuGothic", "Yu Gothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.1rem;
  text-align: left;
  text-decoration: none;
  background-color: #3D5592;
  color: #FFFFFF;
  width: 100%;
  margin: 0;
  padding: 16px;
  display: flex;
  align-items: center;
  border-radius: 4px;
}
#modal-window #global-nav ul li a:before {
  font-family: "Font Awesome 6 Free";
  content: "\f0c1";
  margin: 0 6px 0 0;
  font-size: 1.2rem;
  font-weight: 900;
  color: #FFFFFF;
}
#modal-window #global-nav ul li a:hover,
#modal-window #global-nav ul li.current a {
  background-color: #273F80;
  color: #FFFFFF;
}

#modal-window .language {
  margin: 0;
  padding: 0 60px 0 10px;
}
#modal-window .language ul {
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
#modal-window .language ul li {
  font-family: "Segoe UI", "YuGothic", "Yu Gothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.1rem;
  text-align: left;
  background-color: #3D5592;
  color: #FFFFFF;
  list-style-type: none;
  width: 49%;
  margin: 0 2% 1% 0;
  padding: 0;
  border-radius: 4px;
}
#modal-window .language ul li a {
  font-family: "Segoe UI", "YuGothic", "Yu Gothic", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.1rem;
  text-align: left;
  text-decoration: none;
  background-color: #3D5592;
  color: #FFFFFF;
  width: 100%;
  margin: 0;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  border-radius: 4px;
}
#modal-window .language ul li a:before {
  font-family: "Font Awesome 6 Free";
  content: "\f0ac";
  margin: 0 6px 0 0;
  font-size: 1.2rem;
  font-weight: 900;
  color: #FFFFFF;
}
#modal-window .language ul li:nth-child(even) {
  margin: 0 0 1% 0;
}
#modal-window .language ul li a:hover,
#modal-window .language ul li.current a {
  background-color: #273F80;
  color: #FFFFFF;
}



/****************************/
/********** Footer **********/
/****************************/

#footer {
  clear: both;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  position: relative;
  color: #000000;
  background-color: #FFFFFF;
  border-top: 1px solid #274082;
}
#footer footer {
  margin: 10px auto;
  padding: 20px;
  width: 100%;
  background-color: #FFFFFF;
  text-align: center;
}
#footer footer h3 {
  margin: auto;
  padding: 0;
  color: #273F80;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 140%;
}
#footer footer address {
  margin: 10px auto;
  padding: 0;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  line-height: 160%;
}
#footer footer aside {
  clear: both;
  margin: 0;
  padding: 0;
  width: 100%;
}
#footer footer aside ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1%;
  width: 100%;
}
#footer footer aside ul li {
  width: 49.5%;
  margin: 0.5% 0;
  border: 1px solid #273F80;
  display: flex;
  justify-content: center;
  align-items: center;
}
#footer footer aside ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
#footer #pagetop {
  position: fixed;
  bottom: 30px;
  right: 20px;
  z-index: 6666;
}
#footer #pagetop a:before {
  content: '';
  width: 22px;
  height: 22px;
  display: block;
  border-top: 1px solid #273F80;
  border-left: 1px solid #273F80;
  transform: rotate(45deg);
  margin: auto;
  transition: border-color 0.3s;
}
#footer #pagetop a:hover:before {
  opacity: 0.7;
  transition: border-color 0.3s;
}
#footer #copyright {
  margin: auto;
  padding: 4px 20px;
  width: 100%;
  background-color: #273F80;
  color: #FFFFFF;
  font-family: "Arial", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  text-align: center;
}



/**************************/
/********** Main **********/
/**************************/

main {
  display: block;
  margin: auto;
  padding: 0;
  width: 100%;
  text-align: left;
  flex-grow: 1;
  position: relative;
  min-height: 0%;
  overflow-x: hidden;
  background-color: #FFFFFF;
}



/*****************************/
/********** Content **********/
/*****************************/

.content {
  clear: both;
  margin: auto;
  padding: 20px;
  width: 100%;
}



}



/***********************************************************/
/********** 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;
  color: #000000;
  width: 100%;
}
#header header {
  margin: auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
  color: #000000;
}
#header header h1 {
  margin: 0;
  padding: 0;
  font-family: "Arial", sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 100%;
  text-align: left;
  color: #273F80;
  display: inline-block;
}
#header header h1 a {
  font-family: "Arial", sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 100%;
  text-align: left;
  color: #273F80;
  text-decoration: none;
  transition: opacity 0.3s;
}
#header header h1 a:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  transition: opacity 0.3s;
}
#header header .language {
  margin: 0 0 0 auto;
}
#header header .language ul {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
}
#header header .language ul li {
  margin: 0;
  padding: 0;
  list-style-type: none;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 120%;
  color: #273F80;
  background-color: #DBDFE8;
}
#header header .language ul li a {
  text-decoration: none;
  padding: 4px 20px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 120%;
  color: #273F80;
  background-color: #DBDFE8;
}
#header header .language ul li a:hover,
#header header .language ul li.current a {
  color: #FFFFFF;
  background-color: #273F80;
}



/********************************/
/********** Global Nav **********/
/********************************/

#global-nav {
  margin: auto;
  padding: 0;
  width: 100%;
  background-color: #FFFFFF;
  color: #000000;
  border-top: 1px solid #273F80;
}
#global-nav ul {
  margin: auto;
  padding: 0;
  display: flex;
  width: 100%;
}
#global-nav ul li {
  margin: 0;
  padding: 0;
  color: #273F80;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.1rem;
  list-style-type: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
  border-left: 1px solid #273F80;
}
#global-nav ul li:last-child {
  border-right: 1px solid #273F80;
}
#global-nav ul li a {
  margin: 0;
  padding: 10px;
  color: #273F80;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.1rem;
  text-align: center;
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#global-nav ul li a:hover,
#global-nav ul li.current a {
  background-color: #273F80;
  color: #FFFFFF;
  height: 100%;
}



/****************************************/
/********** Respomsive Swicher **********/
/****************************************/

#modal #trigger {
  display: none;
}
#modal .language {
  display: none;
}



/****************************/
/********** Footer **********/
/****************************/

#footer {
  clear: both;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  position: relative;
  color: #000000;
  background-color: #FFFFFF;
  border-top: 1px solid #274082;
}
#footer footer {
  margin: 10px auto;
  padding: 20px;
  width: 100%;
  background-color: #FFFFFF;
  text-align: center;
}
#footer footer h3 {
  margin: auto;
  padding: 0;
  color: #273F80;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 140%;
}
#footer footer address {
  margin: 10px auto;
  padding: 0;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  line-height: 160%;
}
#footer footer aside {
  clear: both;
  margin: 0;
  padding: 0;
  width: 100%;
}
#footer footer aside ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1%;
  width: 100%;
}
#footer footer aside ul li {
  width: 32.66%;
  margin: 0.5% 0;
  border: 1px solid #273F80;
  display: flex;
  justify-content: center;
  align-items: center;
}
#footer footer aside ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
#footer #pagetop {
  position: fixed;
  bottom: 40px;
  right: 20px;
  z-index: 6666;
}
#footer #pagetop a:before {
  content: '';
  width: 24px;
  height: 24px;
  display: block;
  border-top: 1px solid #273F80;
  border-left: 1px solid #273F80;
  transform: rotate(45deg);
  margin: auto;
  transition: border-color 0.3s;
}
#footer #pagetop a:hover:before {
  opacity: 0.7;
  transition: border-color 0.3s;
}
#footer #copyright {
  margin: auto;
  padding: 4px 20px;
  width: 100%;
  background-color: #273F80;
  color: #FFFFFF;
  font-family: "Arial", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  text-align: center;
}



/**************************/
/********** Main **********/
/**************************/

main {
  display: block;
  margin: auto;
  padding: 0;
  width: 100%;
  text-align: left;
  flex-grow: 1;
  position: relative;
  min-height: 0%;
  overflow-x: hidden;
  background-color: #FFFFFF;
}



/*****************************/
/********** Content **********/
/*****************************/

.content {
  clear: both;
  margin: auto;
  padding: 30px 20px;
  width: 100%;
}



}



/************************************************************/
/********** 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;
  color: #000000;
  width: 100%;
}
#header header {
  margin: auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
  color: #000000;
}
#header header h1 {
  margin: 0;
  padding: 0;
  font-family: "Arial", sans-serif;
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 100%;
  text-align: left;
  color: #273F80;
  display: inline-block;
}
#header header h1 a {
  font-family: "Arial", sans-serif;
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 100%;
  text-align: left;
  color: #273F80;
  text-decoration: none;
  transition: opacity 0.3s;
}
#header header h1 a:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  transition: opacity 0.3s;
}
#header header .language {
  margin: 0 0 0 auto;
}
#header header .language ul {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
}
#header header .language ul li {
  margin: 0;
  padding: 0;
  list-style-type: none;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 120%;
  color: #273F80;
  background-color: #DBDFE8;
}
#header header .language ul li a {
  text-decoration: none;
  padding: 4px 20px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 120%;
  color: #273F80;
  background-color: #DBDFE8;
}
#header header .language ul li a:hover,
#header header .language ul li.current a {
  color: #FFFFFF;
  background-color: #273F80;
}



/********************************/
/********** Global Nav **********/
/********************************/

#global-nav {
  margin: auto;
  padding: 0;
  width: 100%;
  background-color: #FFFFFF;
  color: #000000;
  border-top: 1px solid #273F80;
}
#global-nav ul {
  margin: auto;
  padding: 0;
  display: flex;
  width: 100%;
}
#global-nav ul li {
  margin: 0;
  padding: 0;
  color: #273F80;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.1rem;
  list-style-type: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
  border-left: 1px solid #273F80;
}
#global-nav ul li:last-child {
  border-right: 1px solid #273F80;
}
#global-nav ul li a {
  margin: 0;
  padding: 10px;
  color: #273F80;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.1rem;
  text-align: center;
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#global-nav ul li a:hover,
#global-nav ul li.current a {
  background-color: #273F80;
  color: #FFFFFF;
  height: 100%;
}



/****************************************/
/********** Respomsive Swicher **********/
/****************************************/

#modal #trigger {
  display: none;
}
#modal .language {
  display: none;
}



/****************************/
/********** Footer **********/
/****************************/

#footer {
  clear: both;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  position: relative;
  color: #000000;
  background-color: #FFFFFF;
  border-top: 1px solid #274082;
}
#footer footer {
  margin: 20px auto;
  padding: 20px;
  width: 100%;
  background-color: #FFFFFF;
  text-align: center;
}
#footer footer h3 {
  margin: auto;
  padding: 0;
  color: #273F80;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 140%;
}
#footer footer address {
  margin: 20px auto;
  padding: 0;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  line-height: 160%;
}
#footer footer aside {
  clear: both;
  margin: 0;
  padding: 0;
  width: 100%;
}
#footer footer aside ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1%;
  width: 100%;
}
#footer footer aside ul li {
  width: 24.25%;
  margin: 0.5% 0;
  border: 1px solid #273F80;
  display: flex;
  justify-content: center;
  align-items: center;
}
#footer footer aside ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
#footer #pagetop {
  position: fixed;
  bottom: 40px;
  right: 20px;
  z-index: 6666;
}
#footer #pagetop a:before {
  content: '';
  width: 26px;
  height: 26px;
  display: block;
  border-top: 1px solid #273F80;
  border-left: 1px solid #273F80;
  transform: rotate(45deg);
  margin: auto;
  transition: border-color 0.3s;
}
#footer #pagetop a:hover:before {
  opacity: 0.7;
  transition: border-color 0.3s;
}
#footer #copyright {
  margin: auto;
  padding: 4px 20px;
  width: 100%;
  background-color: #273F80;
  color: #FFFFFF;
  font-family: "Arial", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  text-align: center;
}



/**************************/
/********** Main **********/
/**************************/

main {
  display: block;
  margin: auto;
  padding: 0;
  width: 100%;
  text-align: left;
  flex-grow: 1;
  position: relative;
  min-height: 0%;
  overflow-x: hidden;
  background-color: #FFFFFF;
}



/*****************************/
/********** Content **********/
/*****************************/

.content {
  clear: both;
  margin: auto;
  padding: 40px 20px;
  width: 100%;
}



}




/********************************************************/
/********** 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;
  color: #000000;
  width: 100%;
}
#header header {
  margin: auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 1120px;
  color: #000000;
}
#header header h1 {
  margin: 0;
  padding: 0;
  font-family: "Arial", sans-serif;
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 100%;
  text-align: left;
  color: #273F80;
  display: inline-block;
}
#header header h1 a {
  font-family: "Arial", sans-serif;
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 100%;
  text-align: left;
  color: #273F80;
  text-decoration: none;
  transition: opacity 0.3s;
}
#header header h1 a:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  transition: opacity 0.3s;
}
#header header .language {
  margin: 0 0 0 auto;
}
#header header .language ul {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
}
#header header .language ul li {
  margin: 0;
  padding: 0;
  list-style-type: none;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 120%;
  color: #273F80;
  background-color: #DBDFE8;
}
#header header .language ul li a {
  text-decoration: none;
  padding: 4px 20px;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 120%;
  color: #273F80;
  background-color: #DBDFE8;
}
#header header .language ul li a:hover,
#header header .language ul li.current a {
  color: #FFFFFF;
  background-color: #273F80;
}



/********************************/
/********** Global Nav **********/
/********************************/

#global-nav {
  margin: auto;
  padding: 0;
  width: 100%;
  background-color: #FFFFFF;
  color: #000000;
  border-top: 1px solid #273F80;
}
#global-nav ul {
  margin: auto;
  padding: 0 20px;
  display: flex;
  width: 100%;
  max-width: 1120px;
}
#global-nav ul li {
  margin: 0;
  padding: 0;
  color: #273F80;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.1rem;
  list-style-type: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
  border-left: 1px solid #273F80;
}
#global-nav ul li:last-child {
  border-right: 1px solid #273F80;
}
#global-nav ul li a {
  margin: 0;
  padding: 10px;
  color: #273F80;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.1rem;
  text-align: center;
  text-decoration: none;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#global-nav ul li a:hover,
#global-nav ul li.current a {
  background-color: #273F80;
  color: #FFFFFF;
  height: 100%;
}



/****************************************/
/********** Respomsive Swicher **********/
/****************************************/

#modal #trigger {
  display: none;
}
#modal .language {
  display: none;
}



/****************************/
/********** Footer **********/
/****************************/

#footer {
  clear: both;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  position: relative;
  color: #000000;
  background-color: #FFFFFF;
  border-top: 1px solid #274082;
}
#footer footer {
  margin: 20px auto;
  padding: 20px;
  width: 100%;
  max-width: 1120px;
  background-color: #FFFFFF;
  text-align: center;
}
#footer footer h3 {
  margin: auto;
  padding: 0;
  color: #273F80;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 140%;
}
#footer footer address {
  margin: 20px auto;
  padding: 0;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  line-height: 160%;
}
#footer footer aside {
  clear: both;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}
#footer footer aside ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1%;
  width: 100%;
}
#footer footer aside ul li {
  width: 24.25%;
  margin: 0.5% 0;
  border: 1px solid #273F80;
  display: flex;
  justify-content: center;
  align-items: center;
}
#footer footer aside ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
#footer #pagetop {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 6666;
}
#footer #pagetop a:before {
  content: '';
  width: 28px;
  height: 28px;
  display: block;
  border-top: 1px solid #273F80;
  border-left: 1px solid #273F80;
  transform: rotate(45deg);
  margin: auto;
  transition: border-color 0.3s;
}
#footer #pagetop a:hover:before {
  opacity: 0.7;
  transition: border-color 0.3s;
}
#footer #copyright {
  margin: auto;
  padding: 4px 20px;
  width: 100%;
  background-color: #273F80;
  color: #FFFFFF;
  font-family: "Arial", sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  text-align: center;
}



/**************************/
/********** Main **********/
/**************************/

main {
  display: block;
  margin: auto;
  padding: 0;
  width: 100%;
  text-align: left;
  flex-grow: 1;
  position: relative;
  min-height: 0%;
  overflow-x: hidden;
  background-color: #FFFFFF;
}



/*****************************/
/********** Content **********/
/*****************************/

.content {
  clear: both;
  margin: auto;
  padding: 40px 20px;
  width: 100%;
  max-width: 1120px;
}



}