@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 ) {



/****************************************/
/********** Base Setting (320) **********/
/****************************************/

img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

.alignleft,
.alignright,
.aligncenter {
  width: 100%;
  display: block!important;
  margin: 20px auto!important;
  text-align: center!important;
}



/*******************************/
/********** Container **********/
/*******************************/

.container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}



/******************************/
/********** Contents **********/
/******************************/

.contents {
  margin: 0 auto;
  padding: 0;
  background-color: #FFFFFF;
  width: 100%;
  position: relative;
  order: 2;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}



/**************************/
/********** Main **********/
/**************************/

main {
  display: block;
  margin: 0 auto;
  padding: 0;
  background-color: #FFFFFF;
  width: 100%;
  text-align: left;
  position: relative;
}



/*****************************/
/********** Content **********/
/*****************************/

.content {
  margin: 0 auto;
  padding: 10px;
  text-align: left;
  width: 100%;
}



/*****************************/
/********** Sidebar **********/
/*****************************/

.sidebar {
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 6666;
  top: 0;
  left: 0;
  right: 0;
  order: 1;
}
.sidebar .logo {
  margin: 0;
  padding: 30px 10px;
  font-size: 2.0rem;
  line-height: 120%;
  color: #000000;
}
.sidebar .logo img {
  width: 40px;
  height: auto;
  background-color: #FFFFFF;
}
.sidebar .function {
  position: fixed;
  left: 0;
  bottom: 0;
  background-color: #164C9C;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.sidebar .application {
  margin: 0;
  padding: 0;
}
.sidebar .application ul {
  margin: 0;
  padding: 0;
  display: flex;
}
.sidebar .application ul li {
  margin: 10px;
  padding: 0;
}
.sidebar .application li img {
  width: 20px;
  height: auto;
}
.sidebar .language {
  font-family: Verdana;
  font-size: 1.2rem;
  font-weight: normal;
  letter-spacing: 0.1rem;
  color: #FFFFFF;
}
.sidebar .language a {
  display: flex;
  align-items: center;
  padding: 0 16px;
  text-decoration: none;
  color: #FFFFFF;
  height: 100%;
}
.sidebar .language a:before {
  font-family: 'Font Awesome 5 Free';
  content: "\f57d";
  color: #FFFFFF;
  font-size: 1.2rem;
  font-weight: 900;
  margin: 0 6px 0 0;
}
.sidebar .language a:hover {
  background-color: #2CA6E0;
}



/****************************************/
/********** Respomsive Swicher **********/
/****************************************/

#trigger {
  position: fixed;
  z-index: 8888;
  right: 0;
  top: 0;
}
#trigger-close {
  position: fixed;
  z-index: 9999;
  right: 0;
  top: 0;
}
#trigger a,
#trigger-close a {
  display: block;
  color: #FFFFFF;
  background-color: #0B264F;
  font-size: 1.5rem;
  text-decoration: none;
  width: 40px;
  height: 30px;
  line-height: 30px;
  text-align: center;
}
#background-close a {
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
#modal-window {
  display: none;
  width: 220px;
  height: 100%;
  background-color: #FFFFFF;
  color: #FFFFFF;
  border-right: 1px solid #EEEEEE;
}

#modal-window ul {
  margin: 0;
  padding: 0;
}
#modal-window ul li {
  margin: 0 0 1px 0;
  padding: 0;
  font-size: 1.5rem;
  line-height: 100%;
  letter-spacing: 0.1rem;
  background-color: #164C9C;
  color: #FFFFFF;
  position: relative;
  cursor: pointer;
}
#modal-window ul li a,
#modal-window ul li span {
  display: block;
  background-color: #164C9C;
  color: #FFFFFF;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  margin: 0;
  padding: 15px 20px;
  position: relative;
}

#modal-window ul li.accordion span:after {
  pointer-events: none;
  content: "＋";
  font-size: 2.0rem;
  color: #FFFFFF;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#modal-window ul li.accordion.active span:after {
  pointer-events: none;
  content: "－";
  font-size: 2.0rem;
  color: #FFFFFF;
}

#modal-window ul li > ul {
  display: none;
}
#modal-window ul li.current > ul {
  display: block;
}
#modal-window ul li > ul li {
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 100%;
  letter-spacing: 0.1rem;
}
#modal-window ul li > ul li a,
#modal-window ul li > ul li span {
  display: block;
  background-color: #164C9C;
  color: #FFFFFF;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  margin: 0;
  padding: 10px 40px;
}

#modal-window ul li a:hover,
#modal-window ul li span:hover,
#modal-window ul li.current a,
#modal-window li.current span,
#modal-window ul li.current ul li a:hover,
#modal-window ul li.current ul li span:hover,
#modal-window ul li.current ul li.current a {
  background-color: #2CA6E0;
  color: #FFFFFF;
}
#modal-window ul li.current ul li a,
#modal-window ul li.current ul li span {
  background-color: #2CA6E0;
  color: #FFFFFF;
}

#modal-window .function {
  display: flex;
  justify-content: space-between;
  padding: 0 1px;
}
#modal-window .function div {
  width: 50%;
  background-color: #023A5D;
  color: #FFFFFF;
  text-align: center;
  outline: 1px solid #53A9DB;
  outline-offset: -3px;
  font-size: 1.5rem;
}
#modal-window .function div a {
  display: block;
  color: #FFFFFF;
  text-decoration: none;
  padding: 4px;
  font-size: 1.5rem;
}

#pageslide {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 7777;
  margin: 0;
  padding: 0;
  background-color: rgba(0,0,0,0.3);
}



/****************************/
/********** Header **********/
/****************************/

header {
  position: relative;
}
header #title {
  margin: 0;
  padding: 0;
  text-align: left;
}
header #title h1 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
  line-height: 100%;
  color: #FFFFFF;
  margin: 0 0 0 60px;
  padding: 10px;
  text-align: left;
  background-color: #164C9C;
}
header #title h1 span {
  font-size: 1.6rem;
  font-family: "Century Gothic", 'Yu Gothic', YuGothic, Meiryo, 'Hiragino Kaku Gothic ProN', sans-serif;
  letter-spacing: 0.1rem;
  line-height: 100%;
  margin: 0 0 10px 0;
}
header #title h1 small {
  font-size: 1.3rem;
  letter-spacing: 0.02rem;
  line-height: 160%;
}
header #title h2 {
  margin: 0;
  padding: 0;
  text-align: center;
  background-color: #2CA6E0;
  color: #FFFFFF;
}
header #title .logo {
  display: none;
}



/********************************/
/********** Main Image **********/
/********************************/

#swiper {
  margin: 0 auto;
  padding: 0;
  text-align: center;
  width: 100%;
  height: 180px;
  background-color: #EEEEEE;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
#swiper img {
  width: 100%;
  height: auto;
}
#swiper .swiper-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
}
#swiper .swiper-slide {
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: #FFFFFF;
}
#swiper .swiper-slide a {
  display: flex;
  align-items: center;
  color: #FFFFFF;
  text-decoration: none;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

#swiper .swiper-button-white {
  opacity: 0.6;
  transition: opacity 0.3s;
}
#swiper .swiper-button-white:hover {
  opacity: 1;
  filter: alpha(opacity=70);
  transition: opacity 0.3s;
  backface-visibility: hidden;
}
#swiper .swiper-button-prev {
  margin-left: 0;
  background-size: 50%;
}
#swiper .swiper-button-next {
  margin-right: 0;
  background-size: 50%;
}

.swiper-pagination {
  position: absolute;
  bottom: -25px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
}
.swiper-pagination-bullet {
  width: 10px!important;
  height: 10px!important;
  background-color: #144C9A!important;
  opacity: 1!important;
}
.swiper-pagination-bullet-active {
  background-color: #DC195F!important;
  opacity: 1;
}
.swiper-pagination-bullet {
  margin: 0 4px;
}
.swiper-button-prev,
.swiper-button-next {
  z-index: 7777;
}



/****************************/
/********** Footer **********/
/****************************/

footer {
  margin: auto auto 50px auto;
  padding: 0 10px;
  width: 100%;
}
footer h3 {
  font-size: 1.6rem;
  font-weight: normal;
  letter-spacing: 0.2rem;
  border-bottom: 1px solid #000000;
  margin: 20px 0;
  padding: 5px 0;
}
footer address {
  font-size: 1.3rem;
  line-height: 200%;
}
footer address ul {
  display: flex;
  margin: 10px 0;
  padding: 0;
}
footer address ul li {
  margin: 0 30px 0 0;
  padding: 0;
  font-size: 1.2rem;
}
footer address ul li a {
  text-decoration: none;
}
footer address ul li:nth-child(1):before {
  font-family: 'Font Awesome 5 Free';
  content: "\f1b9";
  color: #000000;
  font-size: 1.4rem;
  font-weight: 900;
  margin: 0 6px 0 0;
}
footer address ul li:nth-child(2):before {
  font-family: 'Font Awesome 5 Free';
  content: "\f59f";
  color: #000000;
  font-size: 1.4rem;
  font-weight: 900;
  margin: 0 6px 0 0;
}
footer .logo {
  margin: 10px auto;
  padding: 0;
  text-align: center;
}
footer #pagetop {
  position: fixed;
  bottom: 50px;
  right: 20px;
  z-index: 7777;
}
footer #pagetop a:before {
  content: '';
  width: 20px;
  height: 20px;
  display: block;
  border-top: 2px solid #000000;
  border-left: 2px solid #000000;
  transform: rotate(45deg);
  margin: auto;
  transition: border-color 0.3s;
}
footer #pagetop a:hover:before {
  border-color: #888888;
  transition: border-color 0.3s;
}
footer #copyright {
  margin: 10px auto;
  padding: 0;
  text-align: center;
  font-family: Verdana;
  font-size: 1.1rem;
  font-weight: normal;
}



/*************************************/
/********** Aside (Banners) **********/
/*************************************/

aside.banners {
  margin: 10px auto;
  padding: 0 10px;
  width: 100%;
}
aside.banners ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
aside.banners ul li {
  padding: 0;
  width: 49%;
  text-align: center;
}
aside.banners ul li:nth-child(odd) {
  margin: 1% 1% 1% 0;
}
aside.banners ul li:nth-child(even) {
  margin: 1% 0 1% 1%;
}
aside.banners ul li a {
  display: block;
}
aside.banners ul li img {
  border: 1px solid #DDDDDD;
}



/*****************************/
/********** Listing **********/
/*****************************/

.listing {
  clear: both;
  margin: 0 auto;
  padding: 0;
}
.listing h2 {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #000000;
  margin: 20px 0;
}
.listing h2 span.archives,
.listing h2 span.archives a {
  font-family: Verdana;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  color: #000000;
  text-decoration: none;
}
.listing h2 span.archives:before {
  font-family: 'Font Awesome 5 Free';
  content: "\f138";
  color: #000000;
  font-size: 1.2rem;
  font-weight: 900;
  margin: 0 4px 0 0;
}
.listing dl {
  margin: 15px 0;
  padding: 0 0 15px 0;
  border-bottom: 1px dotted #000000;
}
.listing dl dt {
  margin: 0;
  padding: 0;
  font-family: "Century Gothic";
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
}
.listing dl dt span {
  margin: 0 0 0 30px;
  padding: 4px;
  background-color: #DC1960;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.04rem;
  line-height: 100%;
  color: #FFFFFF;
  text-align: center;
  width: 70px;
  display: inline-block;
}
.listing dl dd {
  margin: 0;
  padding: 0;
  font-size: 1.4rem;
  font-weight: normal;
}
.listing dl ul {
  padding: 10px;
}
.listing dl ul li {
  margin: 4px 0;
}
.listing dl ul li:before {
  font-family: 'Font Awesome 5 Free';
  content: "\f249";
  margin: 0 6px 0 0;
  font-size: 1.3rem;
  font-weight: 500;
  color: #DC1960;
}
.listing dl dd .thumbnail {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 10px 0;
}
.listing dl dd .thumbnail img {
  outline: 1px solid #DDDDDD;
  outline-offset: 4px;
  margin: 10px 20px 10px 0;
}



/*****************************/
/********** Members **********/
/*****************************/

.members-style01 {
}
.members-style01 ul {
  display: flex;
  flex-wrap: wrap;
}
.members-style01 ul li {
  width: 49%;
  margin: 0 2% 2% 0;
}
.members-style01 ul li:nth-child(2n) {
  margin-right: 0;
}
.members-style01 ul li .aligncenter {
  margin: 0;
}
.members-style01 ul li .identity {
  position: relative;
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: 0.1rem;
  margin: 10px auto;
}
.members-style01 ul li .identity .mail-icon {
  margin: 10px auto;
}
.members-style01 ul li .identity .mail-icon a {
  border-radius: 50%;
  padding: 6px;
  background-color: #2CA6E0;
  color: #FFFFFF;
  font-size: 1.5rem;
}
.members-style01 ul li .identity .mail-icon a:hover {
  background-color: #164C9C;
}
.members-style01 ul li ul.others {
  display: flex;
  flex-direction: column;
  margin: 20px;
}
.members-style01 ul li ul.others li {
  width: 100%;
}
.members-style01 ul li ul.others li:before {
  font-family: 'Font Awesome 5 Free';
  content: "\f0da";
  margin: 0 6px 0 -1em;
  font-size: 1.3rem;
  font-weight: 800;
  color: #2CA6E0;
  list-style-position: outside;
}

.members-style02 {
  display: flex;
  flex-direction: column;
}
.members-style02 ul {
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.members-style02 ul li {
  margin: 2px 20px;
  padding: 0;
  list-style: none;
  font-size: 1.5rem;
}
.members-style02 ul li:before {
  font-family: 'Font Awesome 5 Free';
  content: "\f0da";
  margin: 0 6px 0 -1em;
  font-size: 1.3rem;
  font-weight: 800;
  color: #2CA6E0;
  list-style-position: outside;
}



/****************************************/
/********** Members (Personal) **********/
/****************************************/

.personal {
  display: flex;
  flex-direction: column;
}
.personal-name {
  text-align: center;
}
.personal-name em {
  font-size: 2.4rem;
}



}



/************************************************************/
/********** Responsive Contents Setting (320-480) ***********/
/************************************************************/

@media screen and ( min-width: 321px ) and ( max-width: 480px ) {



/****************************************/
/********** Base Setting (480) **********/
/****************************************/

img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

.alignleft,
.alignright,
.aligncenter {
  width: 100%;
  display: block!important;
  margin: 20px auto!important;
  text-align: center!important;
}



/*******************************/
/********** Container **********/
/*******************************/

.container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}



/******************************/
/********** Contents **********/
/******************************/

.contents {
  margin: 0 auto;
  padding: 0;
  background-color: #FFFFFF;
  width: 100%;
  position: relative;
  order: 2;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}



/**************************/
/********** Main **********/
/**************************/

main {
  display: block;
  margin: 0 auto;
  padding: 0;
  background-color: #FFFFFF;
  width: 100%;
  text-align: left;
  position: relative;
}



/*****************************/
/********** Content **********/
/*****************************/

.content {
  margin: 0 auto;
  padding: 10px;
  text-align: left;
  width: 100%;
}



/*****************************/
/********** Sidebar **********/
/*****************************/

.sidebar {
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 6666;
  top: 0;
  left: 0;
  right: 0;
  order: 1;
}
.sidebar .logo {
  margin: 0;
  padding: 30px 10px;
  font-size: 2.0rem;
  line-height: 120%;
  color: #000000;
}
.sidebar .logo img {
  width: 45px;
  height: auto;
  background-color: #FFFFFF;
}

.sidebar .function {
  position: fixed;
  left: 0;
  bottom: 0;
  background-color: #164C9C;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.sidebar .application {
  margin: 0;
  padding: 0;
}
.sidebar .application ul {
  margin: 0;
  padding: 0;
  display: flex;
}
.sidebar .application ul li {
  margin: 10px;
  padding: 0;
}
.sidebar .application li img {
  width: 25px;
  height: auto;
}
.sidebar .language {
  font-family: Verdana;
  font-size: 1.2rem;
  font-weight: normal;
  letter-spacing: 0.1rem;
  color: #FFFFFF;
}
.sidebar .language a {
  display: flex;
  align-items: center;
  padding: 0 16px;
  text-decoration: none;
  color: #FFFFFF;
  height: 100%;
}
.sidebar .language a:before {
  font-family: 'Font Awesome 5 Free';
  content: "\f57d";
  color: #FFFFFF;
  font-size: 1.2rem;
  font-weight: 900;
  margin: 0 6px 0 0;
}
.sidebar .language a:hover {
  background-color: #2CA6E0;
}



/****************************************/
/********** Respomsive Swicher **********/
/****************************************/

#trigger {
  position: fixed;
  z-index: 8888;
  right: 0;
  top: 0;
}
#trigger-close {
  position: fixed;
  z-index: 9999;
  right: 0;
  top: 0;
}
#trigger a,
#trigger-close a {
  display: block;
  color: #FFFFFF;
  background-color: #0B264F;
  font-size: 1.5rem;
  text-decoration: none;
  width: 45px;
  height: 35px;
  line-height: 35px;
  text-align: center;
}
#background-close a {
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
#modal-window {
  display: none;
  width: 220px;
  height: 100%;
  background-color: #FFFFFF;
  color: #FFFFFF;
  border-right: 1px solid #EEEEEE;
}

#modal-window ul {
  margin: 0;
  padding: 0;
}
#modal-window ul li {
  margin: 0 0 1px 0;
  padding: 0;
  font-size: 1.5rem;
  line-height: 100%;
  letter-spacing: 0.1rem;
  background-color: #164C9C;
  color: #FFFFFF;
  position: relative;
  cursor: pointer;
}
#modal-window ul li a,
#modal-window ul li span {
  display: block;
  background-color: #164C9C;
  color: #FFFFFF;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  margin: 0;
  padding: 15px 20px;
  position: relative;
}

#modal-window ul li.accordion span:after {
  pointer-events: none;
  content: "＋";
  font-size: 2.0rem;
  color: #FFFFFF;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#modal-window ul li.accordion.active span:after {
  pointer-events: none;
  content: "－";
  font-size: 2.0rem;
  color: #FFFFFF;
}

#modal-window ul li > ul {
  display: none;
}
#modal-window ul li.current > ul {
  display: block;
}
#modal-window ul li > ul li {
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 100%;
  letter-spacing: 0.1rem;
}
#modal-window ul li > ul li a,
#modal-window ul li > ul li span {
  display: block;
  background-color: #164C9C;
  color: #FFFFFF;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  margin: 0;
  padding: 10px 40px;
}

#modal-window ul li a:hover,
#modal-window ul li span:hover,
#modal-window ul li.current a,
#modal-window li.current span,
#modal-window ul li.current ul li a:hover,
#modal-window ul li.current ul li span:hover,
#modal-window ul li.current ul li.current a {
  background-color: #2CA6E0;
  color: #FFFFFF;
}
#modal-window ul li.current ul li a,
#modal-window ul li.current ul li span {
  background-color: #2CA6E0;
  color: #FFFFFF;
}

#modal-window .function {
  display: flex;
  justify-content: space-between;
  padding: 0 1px;
}
#modal-window .function div {
  width: 50%;
  background-color: #023A5D;
  color: #FFFFFF;
  text-align: center;
  outline: 1px solid #53A9DB;
  outline-offset: -3px;
  font-size: 1.5rem;
}
#modal-window .function div a {
  display: block;
  color: #FFFFFF;
  text-decoration: none;
  padding: 4px;
  font-size: 1.5rem;
}

#pageslide {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 7777;
  margin: 0;
  padding: 0;
  background-color: rgba(0,0,0,0.3);
}



/****************************/
/********** Header **********/
/****************************/

header {
  position: relative;
}
header #title {
  margin: 0;
  padding: 0;
  text-align: left;
}
header #title h1 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
  line-height: 100%;
  color: #FFFFFF;
  margin: 0 0 0 70px;
  padding: 10px;
  text-align: left;
  background-color: #164C9C;
}
header #title h1 span {
  font-size: 1.7rem;
  font-family: "Century Gothic", 'Yu Gothic', YuGothic, Meiryo, 'Hiragino Kaku Gothic ProN', sans-serif;
  letter-spacing: 0.1rem;
  line-height: 100%;
  margin: 0 0 10px 0;
}
header #title h1 small {
  font-size: 1.3rem;
  letter-spacing: 0.02rem;
  line-height: 160%;
}
header #title h2 {
  margin: 0;
  padding: 0;
  text-align: center;
  background-color: #2CA6E0;
  color: #FFFFFF;
}
header #title .logo {
  display: none;
}



/********************************/
/********** Main Image **********/
/********************************/

#swiper {
  margin: 0 auto;
  padding: 0;
  text-align: center;
  width: 100%;
  height: 200px;
  background-color: #EEEEEE;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
#swiper img {
  width: 100%;
  height: auto;
}
#swiper .swiper-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
}
#swiper .swiper-slide {
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: #FFFFFF;
}
#swiper .swiper-slide a {
  display: flex;
  align-items: center;
  color: #FFFFFF;
  text-decoration: none;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

#swiper .swiper-button-white {
  opacity: 0.6;
  transition: opacity 0.3s;
}
#swiper .swiper-button-white:hover {
  opacity: 1;
  filter: alpha(opacity=70);
  transition: opacity 0.3s;
  backface-visibility: hidden;
}
#swiper .swiper-button-prev {
  margin-left: 0;
  background-size: 60%;
}
#swiper .swiper-button-next {
  margin-right: 0;
  background-size: 60%;
}

.swiper-pagination {
  position: absolute;
  bottom: -25px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
}
.swiper-pagination-bullet {
  width: 10px!important;
  height: 10px!important;
  background-color: #144C9A!important;
  opacity: 1!important;
}
.swiper-pagination-bullet-active {
  background-color: #DC195F!important;
  opacity: 1;
}
.swiper-pagination-bullet {
  margin: 0 5px;
}
.swiper-button-prev,
.swiper-button-next {
  z-index: 7777;
}



/****************************/
/********** Footer **********/
/****************************/

footer {
  margin: auto auto 50px auto;
  padding: 0 10px;
  width: 100%;
}
footer h3 {
  font-size: 1.6rem;
  font-weight: normal;
  letter-spacing: 0.2rem;
  border-bottom: 1px solid #000000;
  margin: 20px 0;
  padding: 5px 0;
}
footer address {
  font-size: 1.3rem;
  line-height: 200%;
}
footer address ul {
  display: flex;
  margin: 10px 0;
  padding: 0;
}
footer address ul li {
  margin: 0 30px 0 0;
  padding: 0;
  font-size: 1.2rem;
}
footer address ul li a {
  text-decoration: none;
}
footer address ul li:nth-child(1):before {
  font-family: 'Font Awesome 5 Free';
  content: "\f1b9";
  color: #000000;
  font-size: 1.4rem;
  font-weight: 900;
  margin: 0 6px 0 0;
}
footer address ul li:nth-child(2):before {
  font-family: 'Font Awesome 5 Free';
  content: "\f59f";
  color: #000000;
  font-size: 1.4rem;
  font-weight: 900;
  margin: 0 6px 0 0;
}
footer .logo {
  margin: 10px auto;
  padding: 0;
  text-align: center;
}
footer #pagetop {
  position: fixed;
  bottom: 50px;
  right: 20px;
  z-index: 7777;
}
footer #pagetop a:before {
  content: '';
  width: 20px;
  height: 20px;
  display: block;
  border-top: 2px solid #000000;
  border-left: 2px solid #000000;
  transform: rotate(45deg);
  margin: auto;
  transition: border-color 0.3s;
}
footer #pagetop a:hover:before {
  border-color: #888888;
  transition: border-color 0.3s;
}
footer #copyright {
  margin: 10px auto;
  padding: 0;
  text-align: center;
  font-family: Verdana;
  font-size: 1.1rem;
  font-weight: normal;
}



/*************************************/
/********** Aside (Banners) **********/
/*************************************/

aside.banners {
  margin: 10px auto;
  padding: 0 10px;
  width: 100%;
}
aside.banners ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
aside.banners ul li {
  padding: 0;
  width: 49%;
  text-align: center;
}
aside.banners ul li:nth-child(odd) {
  margin: 1% 1% 1% 0;
}
aside.banners ul li:nth-child(even) {
  margin: 1% 0 1% 1%;
}
aside.banners ul li a {
  display: block;
}
aside.banners ul li img {
  border: 1px solid #DDDDDD;
}



/*****************************/
/********** Listing **********/
/*****************************/

.listing {
  clear: both;
  margin: 0 auto;
  padding: 0;
}
.listing h2 {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #000000;
  margin: 20px 0;
}
.listing h2 span.archives,
.listing h2 span.archives a {
  font-family: Verdana;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  color: #000000;
  text-decoration: none;
}
.listing h2 span.archives:before {
  font-family: 'Font Awesome 5 Free';
  content: "\f138";
  color: #000000;
  font-size: 1.2rem;
  font-weight: 900;
  margin: 0 4px 0 0;
}
.listing dl {
  margin: 15px 0;
  padding: 0 0 15px 0;
  border-bottom: 1px dotted #000000;
}
.listing dl dt {
  margin: 0;
  padding: 0;
  font-family: "Century Gothic";
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
}
.listing dl dt span {
  margin: 0 0 0 30px;
  padding: 4px;
  background-color: #DC1960;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.04rem;
  line-height: 100%;
  color: #FFFFFF;
  text-align: center;
  width: 70px;
  display: inline-block;
}
.listing dl dd {
  margin: 0;
  padding: 0;
  font-size: 1.4rem;
  font-weight: normal;
}
.listing dl ul {
  padding: 10px;
}
.listing dl ul li {
  margin: 4px 0;
}
.listing dl ul li:before {
  font-family: 'Font Awesome 5 Free';
  content: "\f249";
  margin: 0 6px 0 0;
  font-size: 1.3rem;
  font-weight: 500;
  color: #DC1960;
}
.listing dl dd .thumbnail {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 10px 0;
}
.listing dl dd .thumbnail img {
  outline: 1px solid #DDDDDD;
  outline-offset: 4px;
  margin: 10px 20px 10px 0;
}



/*****************************/
/********** Members **********/
/*****************************/

.members-style01 {
}
.members-style01 ul {
  display: flex;
  flex-wrap: wrap;
}
.members-style01 ul li {
  width: 49%;
  margin: 0 2% 2% 0;
}
.members-style01 ul li:nth-child(2n) {
  margin-right: 0;
}
.members-style01 ul li .aligncenter {
  margin: 0;
}
.members-style01 ul li .identity {
  position: relative;
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: 0.1rem;
  margin: 10px auto;
}
.members-style01 ul li .identity .mail-icon {
  margin: 10px auto;
}
.members-style01 ul li .identity .mail-icon a {
  border-radius: 50%;
  padding: 6px;
  background-color: #2CA6E0;
  color: #FFFFFF;
  font-size: 1.5rem;
}
.members-style01 ul li .identity .mail-icon a:hover {
  background-color: #164C9C;
}
.members-style01 ul li ul.others {
  display: flex;
  flex-direction: column;
  margin: 20px;
}
.members-style01 ul li ul.others li {
  width: 100%;
}
.members-style01 ul li ul.others li:before {
  font-family: 'Font Awesome 5 Free';
  content: "\f0da";
  margin: 0 6px 0 -1em;
  font-size: 1.3rem;
  font-weight: 800;
  color: #2CA6E0;
  list-style-position: outside;
}

.members-style02 {
  display: flex;
  flex-direction: column;
}
.members-style02 ul {
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.members-style02 ul li {
  margin: 5px 20px;
  padding: 0;
  list-style: none;
  font-size: 1.5rem;
}
.members-style02 ul li:before {
  font-family: 'Font Awesome 5 Free';
  content: "\f0da";
  margin: 0 6px 0 -1em;
  font-size: 1.3rem;
  font-weight: 800;
  color: #2CA6E0;
  list-style-position: outside;
}



/****************************************/
/********** Members (Personal) **********/
/****************************************/

.personal {
  display: flex;
  flex-direction: column;
}
.personal-name {
  text-align: center;
}
.personal-name em {
  font-size: 2.4rem;
}



}



/***********************************************************/
/********** Responsive Contents Setting (480-768) **********/
/***********************************************************/

@media screen and ( min-width: 481px ) and ( max-width: 768px ) {



/*****************************************/
/********** Base Setting (768) **********/
/*****************************************/

img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

.alignleft,
.alignright,
.aligncenter {
  width: 100%;
  display: block!important;
  margin: 20px auto!important;
  text-align: center!important;
}



/*******************************/
/********** Container **********/
/*******************************/

.container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}



/******************************/
/********** Contents **********/
/******************************/

.contents {
  margin: 0 auto;
  padding: 0;
  background-color: #FFFFFF;
  width: 100%;
  position: relative;
  order: 2;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}



/**************************/
/********** Main **********/
/**************************/

main {
  display: block;
  margin: 0 auto;
  padding: 0;
  background-color: #FFFFFF;
  width: 100%;
  text-align: left;
  position: relative;
}



/*****************************/
/********** Content **********/
/*****************************/

.content {
  margin: 0 auto;
  padding: 20px;
  text-align: left;
  width: 100%;
}



/*****************************/
/********** Sidebar **********/
/*****************************/

.sidebar {
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 6666;
  top: 0;
  left: 0;
  right: 0;
  order: 1;
}
.sidebar .logo {
  margin: 0;
  padding: 15px;
  font-size: 2.0rem;
  line-height: 120%;
  color: #000000;
}
.sidebar .logo img {
  width: 50px;
  height: auto;
  background-color: #FFFFFF;
}

.sidebar .function {
  position: fixed;
  left: 0;
  bottom: 0;
  background-color: #164C9C;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.sidebar .application {
  margin: 0;
  padding: 0;
}
.sidebar .application ul {
  margin: 0;
  padding: 0;
  display: flex;
}
.sidebar .application ul li {
  margin: 10px;
  padding: 0;
}
.sidebar .application li img {
  width: 30px;
  height: auto;
}
.sidebar .language {
  font-family: Verdana;
  font-size: 1.2rem;
  font-weight: normal;
  letter-spacing: 0.1rem;
  color: #FFFFFF;
}
.sidebar .language a {
  display: flex;
  align-items: center;
  padding: 0 16px;
  text-decoration: none;
  color: #FFFFFF;
  height: 100%;
}
.sidebar .language a:before {
  font-family: 'Font Awesome 5 Free';
  content: "\f57d";
  color: #FFFFFF;
  font-size: 1.2rem;
  font-weight: 900;
  margin: 0 6px 0 0;
}
.sidebar .language a:hover {
  background-color: #2CA6E0;
}



/****************************************/
/********** Respomsive Swicher **********/
/****************************************/

#trigger {
  position: fixed;
  z-index: 8888;
  right: 0;
  top: 0;
}
#trigger-close {
  position: fixed;
  z-index: 9999;
  right: 0;
  top: 0;
}
#trigger a,
#trigger-close a {
  display: block;
  color: #FFFFFF;
  background-color: #0B264F;
  font-size: 1.5rem;
  text-decoration: none;
  width: 50px;
  height: 40px;
  line-height: 40px;
  text-align: center;
}
#background-close a {
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
#modal-window {
  display: none;
  width: 220px;
  height: 100%;
  background-color: #FFFFFF;
  color: #FFFFFF;
  border-right: 1px solid #EEEEEE;
}

#modal-window ul {
  margin: 0;
  padding: 0;
}
#modal-window ul li {
  margin: 0 0 1px 0;
  padding: 0;
  font-size: 1.5rem;
  line-height: 100%;
  letter-spacing: 0.1rem;
  background-color: #164C9C;
  color: #FFFFFF;
  position: relative;
  cursor: pointer;
}
#modal-window ul li a,
#modal-window ul li span {
  display: block;
  background-color: #164C9C;
  color: #FFFFFF;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  margin: 0;
  padding: 15px 20px;
  position: relative;
}

#modal-window ul li.accordion span:after {
  pointer-events: none;
  content: "＋";
  font-size: 2.0rem;
  color: #FFFFFF;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#modal-window ul li.accordion.active span:after {
  pointer-events: none;
  content: "－";
  font-size: 2.0rem;
  color: #FFFFFF;
}

#modal-window ul li > ul {
  display: none;
}
#modal-window ul li.current > ul {
  display: block;
}
#modal-window ul li > ul li {
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 100%;
  letter-spacing: 0.1rem;
}
#modal-window ul li > ul li a,
#modal-window ul li > ul li span {
  display: block;
  background-color: #164C9C;
  color: #FFFFFF;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  margin: 0;
  padding: 10px 40px;
}

#modal-window ul li a:hover,
#modal-window ul li span:hover,
#modal-window ul li.current a,
#modal-window li.current span,
#modal-window ul li.current ul li a:hover,
#modal-window ul li.current ul li span:hover,
#modal-window ul li.current ul li.current a {
  background-color: #2CA6E0;
  color: #FFFFFF;
}
#modal-window ul li.current ul li a,
#modal-window ul li.current ul li span {
  background-color: #2CA6E0;
  color: #FFFFFF;
}

#modal-window .function {
  display: flex;
  justify-content: space-between;
  padding: 0 1px;
}
#modal-window .function div {
  width: 50%;
  background-color: #023A5D;
  color: #FFFFFF;
  text-align: center;
  outline: 1px solid #53A9DB;
  outline-offset: -3px;
  font-size: 1.5rem;
}
#modal-window .function div a {
  display: block;
  color: #FFFFFF;
  text-decoration: none;
  padding: 4px;
  font-size: 1.5rem;
}

#pageslide {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 7777;
  margin: 0;
  padding: 0;
  background-color: rgba(0,0,0,0.3);
}



/****************************/
/********** Header **********/
/****************************/

header {
  position: relative;
}
header #title {
  margin: 0;
  padding: 0;
  text-align: left;
}
header #title h1 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
  line-height: 100%;
  color: #FFFFFF;
  margin: 0 0 0 80px;
  padding: 15px;
  text-align: left;
  background-color: #164C9C;
}
header #title h1 span {
  font-size: 1.7rem;
  font-family: "Century Gothic", 'Yu Gothic', YuGothic, Meiryo, 'Hiragino Kaku Gothic ProN', sans-serif;
  letter-spacing: 0.1rem;
  line-height: 100%;
  margin: 0 0 10px 0;
}
header #title h1 small {
  font-size: 1.2rem;
  letter-spacing: 0.02rem;
  line-height: 160%;
}
header #title h1 small br {
  display: none;
}
header #title h2 {
  margin: 0;
  padding: 0;
  text-align: center;
  background-color: #2CA6E0;
  color: #FFFFFF;
}
header #title .logo {
  display: none;
}



/********************************/
/********** Main Image **********/
/********************************/

#swiper {
  margin: 0 auto;
  padding: 0;
  text-align: center;
  width: 100%;
  height: 280px;
  background-color: #EEEEEE;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
#swiper img {
  width: 100%;
  height: auto;
}
#swiper .swiper-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
}
#swiper .swiper-slide {
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: #FFFFFF;
}
#swiper .swiper-slide a {
  display: flex;
  align-items: center;
  color: #FFFFFF;
  text-decoration: none;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

#swiper .swiper-button-white {
  opacity: 0.6;
  transition: opacity 0.3s;
}
#swiper .swiper-button-white:hover {
  opacity: 1;
  filter: alpha(opacity=70);
  transition: opacity 0.3s;
  backface-visibility: hidden;
}
#swiper .swiper-button-prev {
  margin-left: 0;
  background-size: 70%;
}
#swiper .swiper-button-next {
  margin-right: 0;
  background-size: 70%;
}

.swiper-pagination {
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
}
.swiper-pagination-bullet {
  width: 10px!important;
  height: 10px!important;
  background-color: #144C9A!important;
  opacity: 1!important;
}
.swiper-pagination-bullet-active {
  background-color: #DC195F!important;
  opacity: 1;
}
.swiper-pagination-bullet {
  margin: 0 6px;
}
.swiper-button-prev,
.swiper-button-next {
  z-index: 7777;
}



/****************************/
/********** Footer **********/
/****************************/

footer {
  margin: auto auto 50px auto;
  padding: 0 20px;
  width: 100%;
}
footer h3 {
  font-size: 1.6rem;
  font-weight: normal;
  letter-spacing: 0.2rem;
  border-bottom: 1px solid #000000;
  margin: 20px 0;
  padding: 5px 0;
}
footer address {
  font-size: 1.3rem;
  line-height: 200%;
}
footer address ul {
  display: flex;
  margin: 10px 0;
  padding: 0;
}
footer address ul li {
  margin: 0 30px 0 0;
  padding: 0;
  font-size: 1.2rem;
}
footer address ul li a {
  text-decoration: none;
}
footer address ul li:nth-child(1):before {
  font-family: 'Font Awesome 5 Free';
  content: "\f1b9";
  color: #000000;
  font-size: 1.4rem;
  font-weight: 900;
  margin: 0 6px 0 0;
}
footer address ul li:nth-child(2):before {
  font-family: 'Font Awesome 5 Free';
  content: "\f59f";
  color: #000000;
  font-size: 1.4rem;
  font-weight: 900;
  margin: 0 6px 0 0;
}
footer .logo {
  margin: 10px auto;
  padding: 0;
  text-align: center;
}
footer #pagetop {
  position: fixed;
  bottom: 50px;
  right: 30px;
  z-index: 7777;
}
footer #pagetop a:before {
  content: '';
  width: 25px;
  height: 25px;
  display: block;
  border-top: 2px solid #000000;
  border-left: 2px solid #000000;
  transform: rotate(45deg);
  margin: auto;
  transition: border-color 0.3s;
}
footer #pagetop a:hover:before {
  border-color: #888888;
  transition: border-color 0.3s;
}
footer #copyright {
  margin: 10px auto;
  padding: 0;
  text-align: center;
  font-family: Verdana;
  font-size: 1.1rem;
  font-weight: normal;
  letter-spacing: 0.2rem;
}



/*************************************/
/********** Aside (Banners) **********/
/*************************************/

aside.banners {
  margin: 10px auto;
  padding: 0 20px;
  width: 100%;
}
aside.banners ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
aside.banners ul li {
  padding: 0;
  width: 49%;
  text-align: center;
}
aside.banners ul li:nth-child(odd) {
  margin: 1% 1% 1% 0;
}
aside.banners ul li:nth-child(even) {
  margin: 1% 0 1% 1%;
}
aside.banners ul li a {
  display: block;
}
aside.banners ul li img {
  border: 1px solid #DDDDDD;
}



/*****************************/
/********** Listing **********/
/*****************************/

.listing {
  clear: both;
  margin: 0 auto;
  padding: 0;
}
.listing h2 {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #000000;
  margin: 20px 0;
}
.listing h2 span.archives,
.listing h2 span.archives a {
  font-family: Verdana;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  color: #000000;
  text-decoration: none;
}
.listing h2 span.archives:before {
  font-family: 'Font Awesome 5 Free';
  content: "\f138";
  color: #000000;
  font-size: 1.2rem;
  font-weight: 900;
  margin: 0 4px 0 0;
}
.listing dl {
  margin: 15px 0;
  padding: 0 0 15px 0;
  border-bottom: 1px dotted #000000;
}
.listing dl dt {
  margin: 0;
  padding: 0;
  font-family: "Century Gothic";
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
}
.listing dl dt span {
  margin: 0 0 0 30px;
  padding: 4px;
  background-color: #DC1960;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.04rem;
  line-height: 100%;
  color: #FFFFFF;
  text-align: center;
  width: 70px;
  display: inline-block;
}
.listing dl dd {
  margin: 0;
  padding: 0;
  font-size: 1.4rem;
  font-weight: normal;
}
.listing dl ul {
  padding: 10px;
}
.listing dl ul li {
  margin: 4px 0;
}
.listing dl ul li:before {
  font-family: 'Font Awesome 5 Free';
  content: "\f249";
  margin: 0 6px 0 0;
  font-size: 1.3rem;
  font-weight: 500;
  color: #DC1960;
}
.listing dl dd .thumbnail {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 10px 0;
}
.listing dl dd .thumbnail img {
  outline: 1px solid #DDDDDD;
  outline-offset: 4px;
  margin: 10px 20px 10px 0;
}



/*****************************/
/********** Members **********/
/*****************************/

.members-style01 {
}
.members-style01 ul {
  display: flex;
  flex-wrap: wrap;
}
.members-style01 ul li {
  width: 49%;
  margin: 0 2% 2% 0;
}
.members-style01 ul li:nth-child(2n) {
  margin-right: 0;
}
.members-style01 ul li .aligncenter {
  margin: 0;
}
.members-style01 ul li .identity {
  position: relative;
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: 0.1rem;
  margin: 10px auto;
}
.members-style01 ul li .identity .mail-icon {
  margin: 10px auto;
}
.members-style01 ul li .identity .mail-icon a {
  border-radius: 50%;
  padding: 6px;
  background-color: #2CA6E0;
  color: #FFFFFF;
  font-size: 1.5rem;
}
.members-style01 ul li .identity .mail-icon a:hover {
  background-color: #164C9C;
}
.members-style01 ul li ul.others {
  display: flex;
  flex-direction: column;
  margin: 20px;
}
.members-style01 ul li ul.others li {
  width: 100%;
}
.members-style01 ul li ul.others li:before {
  font-family: 'Font Awesome 5 Free';
  content: "\f0da";
  margin: 0 6px 0 -1em;
  font-size: 1.3rem;
  font-weight: 800;
  color: #2CA6E0;
  list-style-position: outside;
}

.members-style02 {
  display: flex;
  flex-direction: column;
}
.members-style02 ul {
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.members-style02 ul li {
  margin: 8px 20px;
  padding: 0;
  list-style: none;
  font-size: 1.5rem;
}
.members-style02 ul li:before {
  font-family: 'Font Awesome 5 Free';
  content: "\f0da";
  margin: 0 6px 0 -1em;
  font-size: 1.3rem;
  font-weight: 800;
  color: #2CA6E0;
  list-style-position: outside;
}



/****************************************/
/********** Members (Personal) **********/
/****************************************/

.personal {
  display: flex;
  flex-direction: column;
}
.personal-name {
  text-align: center;
}
.personal-name em {
  font-size: 2.4rem;
}



}



/************************************************************/
/********** Responsive Contents Setting (768-1024) **********/
/************************************************************/

@media screen and ( min-width: 769px ) and ( max-width: 1024px ) {



/*********************************************/
/********** Base Setting (768-1024) **********/
/*********************************************/

img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

.alignleft,
.alignright,
.aligncenter {
  width: 100%;
  display: block!important;
  margin: 20px auto!important;
  text-align: center!important;
}



/*******************************/
/********** Container **********/
/*******************************/

.container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}



/******************************/
/********** Contents **********/
/******************************/

.contents {
  margin: 0 auto;
  padding: 0;
  background-color: #FFFFFF;
  width: 100%;
  position: relative;
  order: 2;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}



/**************************/
/********** Main **********/
/**************************/

main {
  display: block;
  margin: 0 auto;
  padding: 0;
  background-color: #FFFFFF;
  width: 100%;
  text-align: left;
  position: relative;
}



/*****************************/
/********** Content **********/
/*****************************/

.content {
  margin: 0 auto;
  padding: 20px;
  text-align: left;
  width: 100%;
}



/*****************************/
/********** Sidebar **********/
/*****************************/

.sidebar {
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 6666;
  top: 0;
  left: 0;
  right: 0;
  order: 1;
}
.sidebar .logo {
  margin: 0;
  padding: 20px 30px;
  font-size: 2.0rem;
  line-height: 120%;
  color: #000000;
}
.sidebar .logo img {
  width: 80px;
  height: auto;
  background-color: #FFFFFF;
}

.sidebar .function {
  position: fixed;
  left: 0;
  bottom: 0;
  background-color: #164C9C;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.sidebar .application {
  margin: 0;
  padding: 0;
}
.sidebar .application ul {
  margin: 0;
  padding: 0;
  display: flex;
}
.sidebar .application ul li {
  margin: 10px;
  padding: 0;
}
.sidebar .application li img {
  width: 30px;
  height: auto;
}
.sidebar .language {
  font-family: Verdana;
  font-size: 1.2rem;
  font-weight: normal;
  letter-spacing: 0.1rem;
  color: #FFFFFF;
}
.sidebar .language a {
  display: flex;
  align-items: center;
  padding: 0 16px;
  text-decoration: none;
  color: #FFFFFF;
  height: 100%;
}
.sidebar .language a:before {
  font-family: 'Font Awesome 5 Free';
  content: "\f57d";
  color: #FFFFFF;
  font-size: 1.2rem;
  font-weight: 900;
  margin: 0 6px 0 0;
}
.sidebar .language a:hover {
  background-color: #2CA6E0;
}



/****************************************/
/********** Respomsive Swicher **********/
/****************************************/

#trigger {
  position: fixed;
  z-index: 8888;
  right: 0;
  top: 0;
}
#trigger-close {
  position: fixed;
  z-index: 9999;
  right: 0;
  top: 0;
}
#trigger a,
#trigger-close a {
  display: block;
  color: #FFFFFF;
  background-color: #0B264F;
  font-size: 1.5rem;
  text-decoration: none;
  width: 50px;
  height: 40px;
  line-height: 40px;
  text-align: center;
}
#background-close a {
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
#modal-window {
  display: none;
  width: 220px;
  height: 100%;
  background-color: #FFFFFF;
  color: #FFFFFF;
  border-right: 1px solid #EEEEEE;
}

#modal-window ul {
  margin: 0;
  padding: 0;
}
#modal-window ul li {
  margin: 0 0 1px 0;
  padding: 0;
  font-size: 1.5rem;
  line-height: 100%;
  letter-spacing: 0.1rem;
  background-color: #164C9C;
  color: #FFFFFF;
  position: relative;
  cursor: pointer;
}
#modal-window ul li a,
#modal-window ul li span {
  display: block;
  background-color: #164C9C;
  color: #FFFFFF;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  margin: 0;
  padding: 15px 20px;
  position: relative;
}

#modal-window ul li.accordion span:after {
  pointer-events: none;
  content: "＋";
  font-size: 2.0rem;
  color: #FFFFFF;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#modal-window ul li.accordion.active span:after {
  pointer-events: none;
  content: "－";
  font-size: 2.0rem;
  color: #FFFFFF;
}

#modal-window ul li > ul {
  display: none;
}
#modal-window ul li.current > ul {
  display: block;
}
#modal-window ul li > ul li {
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 100%;
  letter-spacing: 0.1rem;
}
#modal-window ul li > ul li a,
#modal-window ul li > ul li span {
  display: block;
  background-color: #164C9C;
  color: #FFFFFF;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  margin: 0;
  padding: 10px 40px;
}

#modal-window ul li a:hover,
#modal-window ul li span:hover,
#modal-window ul li.current a,
#modal-window li.current span,
#modal-window ul li.current ul li a:hover,
#modal-window ul li.current ul li span:hover,
#modal-window ul li.current ul li.current a {
  background-color: #2CA6E0;
  color: #FFFFFF;
}
#modal-window ul li.current ul li a,
#modal-window ul li.current ul li span {
  background-color: #2CA6E0;
  color: #FFFFFF;
}

#modal-window .function {
  display: flex;
  justify-content: space-between;
  padding: 0 1px;
}
#modal-window .function div {
  width: 50%;
  background-color: #023A5D;
  color: #FFFFFF;
  text-align: center;
  outline: 1px solid #53A9DB;
  outline-offset: -3px;
  font-size: 1.5rem;
}
#modal-window .function div a {
  display: block;
  color: #FFFFFF;
  text-decoration: none;
  padding: 4px;
  font-size: 1.5rem;
}

#pageslide {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 7777;
  margin: 0;
  padding: 0;
  background-color: rgba(0,0,0,0.3);
}



/****************************/
/********** Header **********/
/****************************/

header {
  position: relative;
}
header #title {
  margin: 0;
  padding: 0;
  text-align: left;
}
header #title h1 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
  line-height: 100%;
  color: #FFFFFF;
  margin: 0 0 0 140px;
  padding: 30px;
  text-align: left;
  background-color: #164C9C;
}
header #title h1 span {
  font-size: 1.9rem;
  font-family: "Century Gothic", 'Yu Gothic', YuGothic, Meiryo, 'Hiragino Kaku Gothic ProN', sans-serif;
  letter-spacing: 0.12rem;
  line-height: 80%;
  margin: 0 0 10px 0;
}
header #title h1 small {
  font-size: 1.3rem;
  letter-spacing: 0.02rem;
  line-height: 160%;
}
header #title h1 small br {
  display: none;
}
header #title h2 {
  margin: 0;
  padding: 0;
  text-align: center;
  background-color: #2CA6E0;
  color: #FFFFFF;
}
header #title .logo {
  display: none;
}



/********************************/
/********** Main Image **********/
/********************************/

#swiper {
  margin: 0 auto;
  padding: 0;
  text-align: center;
  width: 100%;
  height: 380px;
  background-color: #EEEEEE;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
#swiper img {
  width: 100%;
  height: auto;
}
#swiper .swiper-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
}
#swiper .swiper-slide {
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: #FFFFFF;
}
#swiper .swiper-slide a {
  display: flex;
  align-items: center;
  color: #FFFFFF;
  text-decoration: none;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

#swiper .swiper-button-white {
  opacity: 0.6;
  transition: opacity 0.3s;
}
#swiper .swiper-button-white:hover {
  opacity: 1;
  filter: alpha(opacity=70);
  transition: opacity 0.3s;
  backface-visibility: hidden;
}
#swiper .swiper-button-prev {
  margin-left: 0;
  background-size: 80%;
}
#swiper .swiper-button-next {
  margin-right: 0;
  background-size: 80%;
}

.swiper-pagination {
  position: absolute;
  bottom: -35px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
}
.swiper-pagination-bullet {
  width: 10px!important;
  height: 10px!important;
  background-color: #144C9A!important;
  opacity: 1!important;
}
.swiper-pagination-bullet-active {
  background-color: #DC195F!important;
  opacity: 1;
}
.swiper-pagination-bullet {
  margin: 0 7px;
}
.swiper-button-prev,
.swiper-button-next {
  z-index: 7777;
}



/****************************/
/********** Footer **********/
/****************************/

footer {
  margin: auto auto 50px auto;
  padding: 0 20px;
  width: 100%;
}
footer h3 {
  font-size: 1.6rem;
  font-weight: normal;
  letter-spacing: 0.2rem;
  border-bottom: 1px solid #000000;
  margin: 20px 0;
  padding: 5px 0;
}
footer address {
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
  line-height: 200%;
}
footer address ul {
  display: flex;
  margin: 10px 0;
  padding: 0;
}
footer address ul li {
  margin: 0 30px 0 0;
  padding: 0;
  font-size: 1.2rem;
}
footer address ul li a {
  text-decoration: none;
}
footer address ul li:nth-child(1):before {
  font-family: 'Font Awesome 5 Free';
  content: "\f1b9";
  color: #000000;
  font-size: 1.4rem;
  font-weight: 900;
  margin: 0 6px 0 0;
}
footer address ul li:nth-child(2):before {
  font-family: 'Font Awesome 5 Free';
  content: "\f59f";
  color: #000000;
  font-size: 1.4rem;
  font-weight: 900;
  margin: 0 6px 0 0;
}
footer .logo {
  margin: 10px auto;
  padding: 0;
  text-align: center;
}
footer #pagetop {
  position: fixed;
  bottom: 50px;
  right: 30px;
  z-index: 7777;
}
footer #pagetop a:before {
  content: '';
  width: 30px;
  height: 30px;
  display: block;
  border-top: 2px solid #000000;
  border-left: 2px solid #000000;
  transform: rotate(45deg);
  margin: auto;
  transition: border-color 0.3s;
}
footer #pagetop a:hover:before {
  border-color: #888888;
  transition: border-color 0.3s;
}
footer #copyright {
  margin: 10px auto;
  padding: 0;
  text-align: center;
  font-family: Verdana;
  font-size: 1.1rem;
  font-weight: normal;
  letter-spacing: 0.2rem;
}



/*************************************/
/********** Aside (Banners) **********/
/*************************************/

aside.banners {
  margin: 10px auto;
  padding: 0 20px;
  width: 100%;
}
aside.banners ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
aside.banners ul li {
  margin: 1% 0;
  padding: 0;
  width: 32%;
  text-align: center;
}
aside.banners ul li {
  margin: 1% 2% 1% 0;
  padding: 0;
  width: 32%;
  text-align: center;
}
aside.banners ul li:nth-child(3n) {
  margin: 1% 0;
}
aside.banners ul li a {
  display: block;
}
aside.banners ul li img {
  border: 1px solid #DDDDDD;
}



/*****************************/
/********** Listing **********/
/*****************************/

.listing {
  clear: both;
  margin: 0 auto;
  padding: 0;
}
.listing h2 {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #000000;
  margin: 20px 0;
}
.listing h2 span.archives,
.listing h2 span.archives a {
  font-family: Verdana;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  color: #000000;
  text-decoration: none;
}
.listing h2 span.archives:before {
  font-family: 'Font Awesome 5 Free';
  content: "\f138";
  color: #000000;
  font-size: 1.2rem;
  font-weight: 900;
  margin: 0 4px 0 0;
}
.listing dl {
  margin: 15px 0;
  padding: 0 0 15px 0;
  border-bottom: 1px dotted #000000;
}
.listing dl dt {
  margin: 0;
  padding: 0;
  font-family: "Century Gothic";
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
}
.listing dl dt span {
  margin: 0 0 0 30px;
  padding: 4px;
  background-color: #DC1960;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.04rem;
  line-height: 100%;
  color: #FFFFFF;
  text-align: center;
  width: 70px;
  display: inline-block;
}
.listing dl dd {
  margin: 0;
  padding: 0;
  font-size: 1.4rem;
  font-weight: normal;
}
.listing dl ul {
  padding: 10px;
}
.listing dl ul li {
  margin: 4px 0;
}
.listing dl ul li:before {
  font-family: 'Font Awesome 5 Free';
  content: "\f249";
  margin: 0 6px 0 0;
  font-size: 1.3rem;
  font-weight: 500;
  color: #DC1960;
}
.listing dl dd .thumbnail {
  display: flex;
  flex-wrap: wrap;
  margin: 10px 0;
}
.listing dl dd .thumbnail img {
  outline: 1px solid #DDDDDD;
  outline-offset: 4px;
  margin: 10px 20px 10px 0;
}



/*****************************/
/********** Members **********/
/*****************************/

.members-style01 {
}
.members-style01 ul {
  display: flex;
  flex-wrap: wrap;
}
.members-style01 ul li {
  width: 32%;
  margin: 0 2% 2% 0;
}
.members-style01 ul li:nth-child(3n) {
  margin-right: 0;
}
.members-style01 ul li .aligncenter {
  margin: 0;
}
.members-style01 ul li .identity {
  position: relative;
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: 0.1rem;
  margin: 10px auto;
}
.members-style01 ul li .identity .mail-icon {
  margin: 10px auto;
}
.members-style01 ul li .identity .mail-icon a {
  border-radius: 50%;
  padding: 6px;
  background-color: #2CA6E0;
  color: #FFFFFF;
  font-size: 1.5rem;
}
.members-style01 ul li .identity .mail-icon a:hover {
  background-color: #164C9C;
}
.members-style01 ul li ul.others {
  display: flex;
  flex-direction: column;
  margin: 20px;
}
.members-style01 ul li ul.others li {
  width: 100%;
}
.members-style01 ul li ul.others li:before {
  font-family: 'Font Awesome 5 Free';
  content: "\f0da";
  margin: 0 6px 0 -1em;
  font-size: 1.3rem;
  font-weight: 800;
  color: #2CA6E0;
  list-style-position: outside;
}

.members-style02 {
  display: flex;
  flex-direction: column;
}
.members-style02 ul {
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 80%;
}
.members-style02 ul li {
  margin: 10px 20px;
  padding: 0;
  list-style: none;
  font-size: 1.5rem;
}
.members-style02 ul li:before {
  font-family: 'Font Awesome 5 Free';
  content: "\f0da";
  margin: 0 6px 0 -1em;
  font-size: 1.3rem;
  font-weight: 800;
  color: #2CA6E0;
  list-style-position: outside;
}



/****************************************/
/********** Members (Personal) **********/
/****************************************/

.personal {
  display: flex;
  flex-direction: column;
}
.personal-name {
  text-align: center;
}
.personal-name em {
  font-size: 2.4rem;
}



}



/*************************************************************/
/********** Responsive Contents Setting (1024-1400) **********/
/*************************************************************/

@media screen and ( min-width: 1025px ) and ( max-width: 1400px ) {



a[href^="tel:"] {
  pointer-events: none;
}

img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

body {
  border-top: 3px solid #164C9C;
}



/*******************************/
/********** Container **********/
/*******************************/

.container {
  display: flex;
  min-height: 100vh;
}



/******************************/
/********** Contents **********/
/******************************/

.contents {
  margin: 0 auto;
  padding: 0;
  background-color: #FFFFFF;
  width: 100%;
  position: relative;
  order: 2;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}



/**************************/
/********** Main **********/
/**************************/

main {
  display: block;
  margin: 0 auto;
  padding: 0;
  background-color: #FFFFFF;
  width: 100%;
  text-align: left;
  position: relative;
}



/*****************************/
/********** Content **********/
/*****************************/

.content {
  margin: 0 auto;
  padding: 40px;
  text-align: left;
  max-width: 1080px;
  width: 100%;
}



/*****************************/
/********** Sidebar **********/
/*****************************/

.sidebar {
  margin: 0;
  padding: 0;
  background-color: #F2F2F2;
  min-width: 220px;
  position: relative;
  z-index: 6666;
  top: 0;
  left: 0;
  order: 1;
}
.sidebar .sticky {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  left: 0;
}
.sidebar .logo {
  margin: 0 auto;
  padding: 0;
  font-size: 2.0rem;
  line-height: 120%;
  color: #000000;
  background-color: #FFFFFF;
}
.sidebar .logo a {
  display: flex;
  align-items: center;
  margin: 0 auto;
  justify-content: center;
  padding: 30px 0;
  width: 100%;
  height: 100%;
}

.sidebar .application {
  margin: 0;
  padding: 10px;
}
.sidebar .application ul {
  margin: 0;
  padding: 0;
  display: flex;
}
.sidebar .application ul li {
  margin: 10px;
  padding: 0;
}

.sidebar .language {
  position: fixed;
  z-index: 7777;
  top: 0;
  right: 0;
}
.sidebar .language {
  font-family: Verdana;
  font-size: 1.2rem;
  font-weight: normal;
  letter-spacing: 0.1rem;
  background-color: #164C9C;
  color: #FFFFFF;
  height: 32px;
}
.sidebar .language a {
  display: flex;
  align-items: center;
  padding: 0 16px;
  text-decoration: none;
  color: #FFFFFF;
  height: 100%;
}
.sidebar .language a:before {
  font-family: 'Font Awesome 5 Free';
  content: "\f57d";
  color: #FFFFFF;
  font-size: 1.2rem;
  font-weight: 900;
  margin: 0 6px 0 0;
}
.sidebar .language a:hover {
  background-color: #2CA6E0;
}



/********************************/
/********** Global Nav **********/
/********************************/

#global-nav {
  margin: 0;
  padding: 0;
}
#global-nav nav ul.level1 {
  margin: 0 auto;
  padding: 0;
}
#global-nav nav ul li {
  margin: 0;
  padding: 0;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 100%;
  letter-spacing: 0.15rem;
  position: relative;
  z-index: 7777;
}
#global-nav nav ul li:after {
  font-family: 'Font Awesome 5 Free';
  content: "\f105";
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 5px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#global-nav nav ul li+li {
  border-top: 1px solid #F2F2F2;
}
#global-nav nav ul li a,
#global-nav nav ul li span {
  display: block;
  background-color: #164C9C;
  color: #FFFFFF;
  text-decoration: none;
  text-align: left;
  cursor: pointer;
  white-space: nowrap;
  margin: 0;
  padding: 18px;
  position: relative;
}
#global-nav nav ul li a:hover,
#global-nav nav ul li span:hover,
#global-nav nav ul li.current a,
#global-nav nav ul li.current span {
  background-color: #2CA6E0;
  color: #FFFFFF;
}

#global-nav nav ul li > ul.level2 {
  display: none;
}



/****************************************/
/********** Respomsive Swicher **********/
/****************************************/

#trigger {
  display: none;
}
#trigger-close {
  display: none;
}



/***********************************/
/********** Header (Home) **********/
/***********************************/

.home header {
  position: relative;
}
.home header #title {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0 auto;
  padding: 0 40px;
  height: 160px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.3);
  min-width: 100%;
}
.home header #title .logo {
  margin: 0 30px 0 0;
  order: 1;
}
.home header #title h1 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
  line-height: 120%;
  color: #FFFFFF;
  margin: 0;
  padding: 0;
  text-align: left;
  white-space: nowrap;
  order: 2;
}
.home header #title h1 span {
  font-size: 2.3rem;
  font-family: "Century Gothic", 'Yu Gothic', YuGothic, Meiryo, 'Hiragino Kaku Gothic ProN', sans-serif;
  letter-spacing: 0.06rem;
  line-height: 100%;
  margin: 0 0 15px 0;
}
.home header #title h1 small {
  font-size: 1.5rem;
  letter-spacing: 0;
  line-height: 160%;
}
.home header #title h1 small br {
  display: none;
}



/***********************************/
/********** Header (Page) **********/
/***********************************/

.page header {
  position: relative;
}
.page header #title {
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  text-align: left;
  height: 100px;
}
.page header #title h1 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
  line-height: 100%;
  color: #FFFFFF;
  margin: 0;
  padding: 15px 40px 30px 20px;
  text-align: left;
  background-color: #164C9C;
  white-space: nowrap;
}
.page header #title h1 span {
  font-size: 1.9rem;
  font-family: "Century Gothic", 'Yu Gothic', YuGothic, Meiryo, 'Hiragino Kaku Gothic ProN', sans-serif;
  letter-spacing: 0.12rem;
  line-height: 100%;
  margin: 0 0 10px 0;
}
.page header #title h1 small {
  font-size: 1.3rem;
  letter-spacing: 0.02rem;
  line-height: 160%;
}
.page header #title h1 small br {
  display: none;
}
.page header #title h2 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  padding: 20px 40px 0 0;
  background-color: #FFFFFF;
  border-top: 29px solid #164C9C;
  flex-grow: 1;
  color: #000000;
}
.page header #title h2:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  border-top: 71px solid #2CA6E0;
  border-right: 120px solid transparent;
}



/********************************/
/********** Main Image **********/
/********************************/

#swiper {
  margin: 0 auto;
  padding: 0;
  text-align: center;
  width: 100%;
  height: 520px;
  background-color: #EEEEEE;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
#swiper img {
  width: 100%;
  height: auto;
}
#swiper .swiper-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
}
#swiper .swiper-slide {
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: #FFFFFF;
}
#swiper .swiper-slide a {
  display: flex;
  align-items: center;
  color: #FFFFFF;
  text-decoration: none;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

#swiper .swiper-button-white {
  opacity: 0.6;
  transition: opacity 0.3s;
}
#swiper .swiper-button-white:hover {
  opacity: 1;
  filter: alpha(opacity=70);
  transition: opacity 0.3s;
  backface-visibility: hidden;
}
#swiper .swiper-button-prev {
  margin-left: 20px;
}
#swiper .swiper-button-next {
  margin-right: 20px;
}

.swiper-pagination {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
}
.swiper-pagination-bullet {
  width: 10px!important;
  height: 10px!important;
  background-color: #144C9A!important;
  opacity: 1!important;
}
.swiper-pagination-bullet-active {
  background-color: #DC195F!important;
  opacity: 1;
}
.swiper-pagination-bullet {
  margin: 0 7px;
}
.swiper-button-prev,
.swiper-button-next {
  z-index: 7777;
}



/****************************/
/********** Footer **********/
/****************************/

footer {
  margin: auto auto 0 auto;
  padding: 0 40px;
  max-width: 1080px;
  width: 100%;
}
footer h3 {
  font-size: 1.6rem;
  font-weight: normal;
  letter-spacing: 0.2rem;
  border-bottom: 1px solid #000000;
  margin: 20px 0;
  padding: 5px 0;
}
footer address {
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
  line-height: 200%;
}
footer address ul {
  display: flex;
  margin: 10px 0;
  padding: 0;
}
footer address ul li {
  margin: 0 30px 0 0;
  padding: 0;
  font-size: 1.2rem;
}
footer address ul li a {
  text-decoration: none;
}
footer address ul li:nth-child(1):before {
  font-family: 'Font Awesome 5 Free';
  content: "\f1b9";
  color: #000000;
  font-size: 1.4rem;
  font-weight: 900;
  margin: 0 6px 0 0;
}
footer address ul li:nth-child(2):before {
  font-family: 'Font Awesome 5 Free';
  content: "\f59f";
  color: #000000;
  font-size: 1.4rem;
  font-weight: 900;
  margin: 0 6px 0 0;
}
footer .logo {
  margin: 10px auto;
  padding: 0;
  text-align: center;
}
footer #pagetop {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 7777;
}
footer #pagetop a:before {
  content: '';
  width: 30px;
  height: 30px;
  display: block;
  border-top: 2px solid #000000;
  border-left: 2px solid #000000;
  transform: rotate(45deg);
  margin: auto;
  transition: border-color 0.3s;
}
footer #pagetop a:hover:before {
  border-color: #888888;
  transition: border-color 0.3s;
}
footer #copyright {
  margin: 20px auto;
  padding: 0;
  text-align: center;
  font-family: Verdana;
  font-size: 1.1rem;
  font-weight: normal;
  letter-spacing: 0.2rem;
}



/*************************************/
/********** Aside (Banners) **********/
/*************************************/

aside.banners {
  margin: 20px auto;
  padding: 0 40px;
  max-width: 1080px;
  width: 100%;
}
aside.banners ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
aside.banners ul li {
  margin: 10px 0;
  padding: 0;
}
aside.banners ul li img {
  border: 1px solid #DDDDDD;
}



/*****************************/
/********** Listing **********/
/*****************************/

.listing {
  clear: both;
  margin: 0 auto;
  padding: 0;
}
.listing h2 {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #000000;
  margin: 20px 0;
}
.listing h2 span.archives,
.listing h2 span.archives a {
  font-family: Verdana;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  color: #000000;
  text-decoration: none;
}
.listing h2 span.archives:before {
  font-family: 'Font Awesome 5 Free';
  content: "\f138";
  color: #000000;
  font-size: 1.2rem;
  font-weight: 900;
  margin: 0 4px 0 0;
}
.listing dl {
  margin: 15px 0;
  padding: 0 0 15px 0;
  border-bottom: 1px dotted #000000;
}
.listing dl dt {
  margin: 0;
  padding: 0;
  font-family: "Century Gothic";
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
}
.listing dl dt span {
  margin: 0 0 0 30px;
  padding: 4px;
  background-color: #DC1960;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.04rem;
  line-height: 100%;
  color: #FFFFFF;
  text-align: center;
  width: 70px;
  display: inline-block;
}
.listing dl dd {
  margin: 0;
  padding: 0;
  font-size: 1.4rem;
  font-weight: normal;
}
.listing dl ul {
  padding: 10px;
}
.listing dl ul li {
  margin: 4px 0;
}
.listing dl ul li:before {
  font-family: 'Font Awesome 5 Free';
  content: "\f249";
  margin: 0 6px 0 0;
  font-size: 1.3rem;
  font-weight: 500;
  color: #DC1960;
}
.listing dl dd .thumbnail {
  display: flex;
  flex-wrap: wrap;
  margin: 10px 0;
}
.listing dl dd .thumbnail img {
  outline: 1px solid #DDDDDD;
  outline-offset: 4px;
  margin: 10px 20px 10px 0;
}



/*****************************/
/********** Members **********/
/*****************************/

.members-style01 {
}
.members-style01 ul {
  display: flex;
  flex-wrap: wrap;
}
.members-style01 ul li {
  width: 32%;
  margin: 0 2% 2% 0;
}
.members-style01 ul li:nth-child(3n) {
  margin-right: 0;
}
.members-style01 ul li .aligncenter {
  margin: 0;
}
.members-style01 ul li .identity {
  position: relative;
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: 0.1rem;
  margin: 10px auto;
}
.members-style01 ul li .identity .mail-icon {
  position: absolute;
  right: 0;
  top: 10px;
}
.members-style01 ul li .identity .mail-icon a {
  border-radius: 50%;
  padding: 6px;
  background-color: #2CA6E0;
  color: #FFFFFF;
  font-size: 1.5rem;
}
.members-style01 ul li .identity .mail-icon a:hover {
  background-color: #164C9C;
}
.members-style01 ul li ul.others {
  display: flex;
  flex-direction: column;
  margin: 0 20px;
}
.members-style01 ul li ul.others li {
  width: 100%;
}
.members-style01 ul li ul.others li:before {
  font-family: 'Font Awesome 5 Free';
  content: "\f0da";
  margin: 0 6px 0 -1em;
  font-size: 1.3rem;
  font-weight: 800;
  color: #2CA6E0;
  list-style-position: outside;
}

.members-style02 {
  display: flex;
  flex-wrap: wrap;
}
.members-style02 ul {
  margin: 0 20px;
  padding: 0;
  flex-grow: 1;
}
.members-style02 ul li {
  margin: 10px;
  padding: 0;
  list-style: none;
  font-size: 1.5rem;
}
.members-style02 ul li:before {
  font-family: 'Font Awesome 5 Free';
  content: "\f0da";
  margin: 0 6px 0 -1em;
  font-size: 1.3rem;
  font-weight: 800;
  color: #2CA6E0;
  list-style-position: outside;
}



/****************************************/
/********** Members (Personal) **********/
/****************************************/

.personal {
  display: flex;
  align-items: flex-start;
}
.personal div {
  flex: 1;
}
.personal-name em {
  font-size: 2.4rem;
}



}



/********************************************************/
/********** Responsive Contents Setting (1400) **********/
/********************************************************/

@media print, screen and ( min-width: 1401px ) {



a[href^="tel:"] {
  pointer-events: none;
}

img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

body {
  border-top: 3px solid #164C9C;
}



/*******************************/
/********** Container **********/
/*******************************/

.container {
  display: flex;
  min-height: 100vh;
}



/******************************/
/********** Contents **********/
/******************************/

.contents {
  margin: 0 auto;
  padding: 0;
  background-color: #FFFFFF;
  width: 100%;
  position: relative;
  order: 2;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}



/**************************/
/********** Main **********/
/**************************/

main {
  display: block;
  margin: 0 auto;
  padding: 0;
  background-color: #FFFFFF;
  width: 100%;
  text-align: left;
  position: relative;
}



/*****************************/
/********** Content **********/
/*****************************/

.content {
  margin: 0 auto;
  padding: 40px;
  text-align: left;
  max-width: 1080px;
  width: 100%;
}



/*****************************/
/********** Sidebar **********/
/*****************************/

.sidebar {
  margin: 0;
  padding: 0;
  background-color: #F2F2F2;
  min-width: 220px;
  position: relative;
  z-index: 6666;
  top: 0;
  left: 0;
  order: 1;
}
.sidebar .sticky {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  left: 0;
}
.sidebar .logo {
  margin: 0 auto;
  padding: 0;
  font-size: 2.0rem;
  line-height: 120%;
  color: #000000;
  background-color: #FFFFFF;
}
.sidebar .logo a {
  display: flex;
  align-items: center;
  margin: 0 auto;
  justify-content: center;
  padding: 30px 0;
  width: 100%;
  height: 100%;
}

.sidebar .application {
  margin: 0;
  padding: 10px;
}
.sidebar .application ul {
  margin: 0;
  padding: 0;
  display: flex;
}
.sidebar .application ul li {
  margin: 10px;
  padding: 0;
}

.sidebar .language {
  position: fixed;
  z-index: 7777;
  top: 0;
  right: 0;
}
.sidebar .language {
  font-family: Verdana;
  font-size: 1.2rem;
  font-weight: normal;
  letter-spacing: 0.1rem;
  background-color: #164C9C;
  color: #FFFFFF;
  height: 32px;
}
.sidebar .language a {
  display: flex;
  align-items: center;
  padding: 0 16px;
  text-decoration: none;
  color: #FFFFFF;
  height: 100%;
}
.sidebar .language a:before {
  font-family: 'Font Awesome 5 Free';
  content: "\f57d";
  color: #FFFFFF;
  font-size: 1.2rem;
  font-weight: 900;
  margin: 0 6px 0 0;
}
.sidebar .language a:hover {
  background-color: #2CA6E0;
}



/********************************/
/********** Global Nav **********/
/********************************/

#global-nav {
  margin: 0;
  padding: 0;
}
#global-nav nav ul.level1 {
  margin: 0 auto;
  padding: 0;
}
#global-nav nav ul li {
  margin: 0;
  padding: 0;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 100%;
  letter-spacing: 0.15rem;
  position: relative;
  z-index: 7777;
}
#global-nav nav ul li:after {
  font-family: 'Font Awesome 5 Free';
  content: "\f105";
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 5px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#global-nav nav ul li+li {
  border-top: 1px solid #F2F2F2;
}
#global-nav nav ul li a,
#global-nav nav ul li span {
  display: block;
  background-color: #164C9C;
  color: #FFFFFF;
  text-decoration: none;
  text-align: left;
  cursor: pointer;
  white-space: nowrap;
  margin: 0;
  padding: 18px;
  position: relative;
}
#global-nav nav ul li a:hover,
#global-nav nav ul li span:hover,
#global-nav nav ul li.current a,
#global-nav nav ul li.current span {
  background-color: #2CA6E0;
  color: #FFFFFF;
}

#global-nav nav ul li > ul.level2 {
  display: none;
}



/****************************************/
/********** Respomsive Swicher **********/
/****************************************/

#trigger {
  display: none;
}
#trigger-close {
  display: none;
}



/***********************************/
/********** Header (Home) **********/
/***********************************/

.home header {
  position: relative;
}
.home header #title {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0 auto;
  padding: 0 40px;
  height: 160px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.3);
  min-width: 100%;
}
.home header #title .logo {
  margin: 0 30px 0 0;
  order: 1;
}
.home header #title h1 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
  line-height: 120%;
  color: #FFFFFF;
  margin: 0;
  padding: 0;
  text-align: left;
  white-space: nowrap;
  order: 2;
}
.home header #title h1 span {
  font-size: 2.3rem;
  font-family: "Century Gothic", 'Yu Gothic', YuGothic, Meiryo, 'Hiragino Kaku Gothic ProN', sans-serif;
  letter-spacing: 0.06rem;
  line-height: 100%;
  margin: 0 0 15px 0;
}
.home header #title h1 small {
  font-size: 1.5rem;
  letter-spacing: 0;
  line-height: 160%;
}
.home header #title h1 small br {
  display: none;
}



/***********************************/
/********** Header (Page) **********/
/***********************************/

.page header {
  position: relative;
}
.page header #title {
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  text-align: left;
  height: 100px;
}
.page header #title h1 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
  line-height: 100%;
  color: #FFFFFF;
  margin: 0;
  padding: 15px 40px 30px 20px;
  text-align: left;
  background-color: #164C9C;
  white-space: nowrap;
}
.page header #title h1 span {
  font-size: 1.9rem;
  font-family: "Century Gothic", 'Yu Gothic', YuGothic, Meiryo, 'Hiragino Kaku Gothic ProN', sans-serif;
  letter-spacing: 0.12rem;
  line-height: 100%;
  margin: 0 0 10px 0;
}
.page header #title h1 small {
  font-size: 1.3rem;
  letter-spacing: 0.02rem;
  line-height: 160%;
}
.page header #title h1 small br {
  display: none;
}
.page header #title h2 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  padding: 20px 40px 0 0;
  background-color: #FFFFFF;
  border-top: 29px solid #164C9C;
  flex-grow: 1;
  color: #000000;
}
.page header #title h2:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  border-top: 71px solid #2CA6E0;
  border-right: 120px solid transparent;
}



/********************************/
/********** Main Image **********/
/********************************/

#swiper {
  margin: 0 auto;
  padding: 0;
  text-align: center;
  width: 100%;
  height: 640px;
  background-color: #EEEEEE;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
#swiper img {
  width: 100%;
  height: auto;
}
#swiper .swiper-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
}
#swiper .swiper-slide {
  display: flex;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: #FFFFFF;
}
#swiper .swiper-slide a {
  display: flex;
  align-items: center;
  color: #FFFFFF;
  text-decoration: none;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

#swiper .swiper-button-white {
  opacity: 0.6;
  transition: opacity 0.3s;
}
#swiper .swiper-button-white:hover {
  opacity: 1;
  filter: alpha(opacity=70);
  transition: opacity 0.3s;
  backface-visibility: hidden;
}
#swiper .swiper-button-prev {
  margin-left: 20px;
}
#swiper .swiper-button-next {
  margin-right: 20px;
}

.swiper-pagination {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
}
.swiper-pagination-bullet {
  width: 10px!important;
  height: 10px!important;
  background-color: #144C9A!important;
  opacity: 1!important;
}
.swiper-pagination-bullet-active {
  background-color: #DC195F!important;
  opacity: 1;
}
.swiper-pagination-bullet {
  margin: 0 7px;
}
.swiper-button-prev,
.swiper-button-next {
  z-index: 7777;
}



/****************************/
/********** Footer **********/
/****************************/

footer {
  margin: auto auto 0 auto;
  padding: 0 40px;
  max-width: 1080px;
  width: 100%;
}
footer h3 {
  font-size: 1.6rem;
  font-weight: normal;
  letter-spacing: 0.2rem;
  border-bottom: 1px solid #000000;
  margin: 20px 0;
  padding: 5px 0;
}
footer address {
  font-size: 1.3rem;
  letter-spacing: 0.1rem;
  line-height: 200%;
}
footer address ul {
  display: flex;
  margin: 10px 0;
  padding: 0;
}
footer address ul li {
  margin: 0 30px 0 0;
  padding: 0;
  font-size: 1.2rem;
}
footer address ul li a {
  text-decoration: none;
}
footer address ul li:nth-child(1):before {
  font-family: 'Font Awesome 5 Free';
  content: "\f1b9";
  color: #000000;
  font-size: 1.4rem;
  font-weight: 900;
  margin: 0 6px 0 0;
}
footer address ul li:nth-child(2):before {
  font-family: 'Font Awesome 5 Free';
  content: "\f59f";
  color: #000000;
  font-size: 1.4rem;
  font-weight: 900;
  margin: 0 6px 0 0;
}
footer .logo {
  margin: 10px auto;
  padding: 0;
  text-align: center;
}
footer #pagetop {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 7777;
}
footer #pagetop a:before {
  content: '';
  width: 30px;
  height: 30px;
  display: block;
  border-top: 2px solid #000000;
  border-left: 2px solid #000000;
  transform: rotate(45deg);
  margin: auto;
  transition: border-color 0.3s;
}
footer #pagetop a:hover:before {
  border-color: #888888;
  transition: border-color 0.3s;
}
footer #copyright {
  margin: 20px auto;
  padding: 0;
  text-align: center;
  font-family: Verdana;
  font-size: 1.1rem;
  font-weight: normal;
  letter-spacing: 0.2rem;
}



/*************************************/
/********** Aside (Banners) **********/
/*************************************/

aside.banners {
  margin: 20px auto;
  padding: 0 40px;
  max-width: 1080px;
  width: 100%;
}
aside.banners ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
aside.banners ul li {
  margin: 10px 0;
  padding: 0;
}
aside.banners ul li img {
  border: 1px solid #DDDDDD;
}



/*****************************/
/********** Listing **********/
/*****************************/

.listing {
  clear: both;
  margin: 0 auto;
  padding: 0;
}
.listing h2 {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #000000;
  margin: 20px 0;
}
.listing h2 span.archives,
.listing h2 span.archives a {
  font-family: Verdana;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  color: #000000;
  text-decoration: none;
}
.listing h2 span.archives:before {
  font-family: 'Font Awesome 5 Free';
  content: "\f138";
  color: #000000;
  font-size: 1.2rem;
  font-weight: 900;
  margin: 0 4px 0 0;
}
.listing dl {
  margin: 15px 0;
  padding: 0 0 15px 0;
  border-bottom: 1px dotted #000000;
}
.listing dl dt {
  margin: 0;
  padding: 0;
  font-family: "Century Gothic";
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
}
.listing dl dt span {
  margin: 0 0 0 30px;
  padding: 4px;
  background-color: #DC1960;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.04rem;
  line-height: 100%;
  color: #FFFFFF;
  text-align: center;
  width: 70px;
  display: inline-block;
}
.listing dl dd {
  margin: 0;
  padding: 0;
  font-size: 1.4rem;
  font-weight: normal;
}
.listing dl ul {
  padding: 10px;
}
.listing dl ul li {
  margin: 4px 0;
}
.listing dl ul li:before {
  font-family: 'Font Awesome 5 Free';
  content: "\f249";
  margin: 0 6px 0 0;
  font-size: 1.3rem;
  font-weight: 500;
  color: #DC1960;
}
.listing dl dd .thumbnail {
  display: flex;
  flex-wrap: wrap;
  margin: 10px 0;
}
.listing dl dd .thumbnail img {
  outline: 1px solid #DDDDDD;
  outline-offset: 4px;
  margin: 10px 20px 10px 0;
}



/*****************************/
/********** Members **********/
/*****************************/

.members-style01 {
}
.members-style01 ul {
  display: flex;
  flex-wrap: wrap;
}
.members-style01 ul li {
  width: 32%;
  margin: 0 2% 2% 0;
}
.members-style01 ul li:nth-child(3n) {
  margin-right: 0;
}
.members-style01 ul li .aligncenter {
  margin: 0;
}
.members-style01 ul li .identity {
  position: relative;
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: 0.1rem;
  margin: 10px auto;
}
.members-style01 ul li .identity .mail-icon {
  position: absolute;
  right: 0;
  top: 10px;
}
.members-style01 ul li .identity .mail-icon a {
  border-radius: 50%;
  padding: 6px;
  background-color: #2CA6E0;
  color: #FFFFFF;
  font-size: 1.5rem;
}
.members-style01 ul li .identity .mail-icon a:hover {
  background-color: #164C9C;
}
.members-style01 ul li ul.others {
  display: flex;
  flex-direction: column;
  margin: 0 20px;
}
.members-style01 ul li ul.others li {
  width: 100%;
}
.members-style01 ul li ul.others li:before {
  font-family: 'Font Awesome 5 Free';
  content: "\f0da";
  margin: 0 6px 0 -1em;
  font-size: 1.3rem;
  font-weight: 800;
  color: #2CA6E0;
  list-style-position: outside;
}

.members-style02 {
  display: flex;
  flex-wrap: wrap;
}
.members-style02 ul {
  margin: 0 20px;
  padding: 0;
  flex-grow: 1;
}
.members-style02 ul li {
  margin: 10px;
  padding: 0;
  list-style: none;
  font-size: 1.5rem;
}
.members-style02 ul li:before {
  font-family: 'Font Awesome 5 Free';
  content: "\f0da";
  margin: 0 6px 0 -1em;
  font-size: 1.3rem;
  font-weight: 800;
  color: #2CA6E0;
  list-style-position: outside;
}



/****************************************/
/********** Members (Personal) **********/
/****************************************/

.personal {
  display: flex;
  align-items: flex-start;
}
.personal div {
  flex: 1;
}
.personal-name em {
  font-size: 2.4rem;
}



}