@charset "utf-8";



/*******************************/
/********** Container **********/
/*******************************/

#container {
  position: relative;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100vh;
  overflow: clip;
  background-image: linear-gradient(to right, #6064FF 0%, #53A9FF 50%, #3AD7FF 100%),
                    url("../images/texture01.webp");
  background-repeat: repeat;
  background-size: cover,
                   auto;
  background-attachment: fixed;
  background-blend-mode: multiply;
}
@media print {
  #container {
    overflow: initial;
    background-attachment: scroll;
  }
}



/****************************/
/********** Header **********/
/****************************/

#header {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}
#header header {
  margin: auto;
  padding: 20px 40px;
  width: 100%;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 0 20px;
}
#header header h1 {
  margin: auto auto auto 0;
  padding: 0;
  flex-shrink: 0;
  color: #FFFFFF;
}
#header header h1 a {
  color: #FFFFFF;
  text-decoration: none;
  display: inline-block;
}
#header header #modal {
  margin: auto 0 auto auto;
}
#header header #modal-window {
  margin: auto;
  padding: 0;
  display: flex;
  flex-direction: column-reverse;
  gap: 15px 0;
}
#header header .header-icons {
  margin: auto 0 auto auto;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}
#header header .header-icons ul.sns {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  gap: 10px;
}
#header header .header-icons ul.sns li,
#header header .header-icons ul.sns li a {
  margin: 0;
  padding: 0;
  color: #FFFFFF;
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none;
}
#header header .header-icons ul.lang {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  gap: 6px;
}
#header header .header-icons ul.lang li,
#header header .header-icons ul.lang li a {
  margin: 0;
  padding: 0;
  color: #FFFFFF;
  font-size: 1.8rem;
  font-weight: 700;
  text-decoration: none;
}
#header header .header-icons ul.lang li a:hover,
#header header .header-icons ul.lang li.current a {
  color: #BBBBBB;
}
#header header .header-icons ul.lang li+li:before {
  content: "/";
  display: inline-block;
  margin: 0 4px;
  font-size: 1.6rem;
  font-weight: 400;
}
@media screen and ( max-width: 1280px ) {
  #header header {
    padding: 20px;
    flex-direction: column;
  }
  #header header #modal {
    margin: auto;
  }
}
@media screen and ( max-width: 768px ) {
  #header header h1 {
    width: 75vw;
  }
}



/********************************/
/********** Global Nav **********/
/********************************/

@media print, screen and ( min-width: 1025px ) {
  #modal #trigger {
    display: none;
  }
  #global-nav {
    margin: auto;
    padding: 0;
  }
  #global-nav ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 15px 20px;
  }
  #global-nav ul li {
    margin: 0;
    padding: 0;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.04rem;
    line-height: 100%;
    color: #FFFFFF;
    position: relative;
  }
  #global-nav ul li a {
    margin: 0;
    padding: 0;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.04rem;
    line-height: 100%;
    text-decoration: none;
    color: #FFFFFF;
  }
  #global-nav ul li a:after {
    content: '';
    width: 0;
    display: inline-block;
    position: absolute;
    z-index: 8888;
    left: 0;
    bottom: -6px;
    transition: all 0.3s ease;
    border-bottom: 2px solid #FFFFFF;
  }
  #global-nav ul li a:hover:after,
  #global-nav ul li.current a:after {
    width: 100%;
    border-bottom: 2px solid #FFFFFF;
  }
  #global-nav ul li.current > ul li a:after {
    border-bottom: none;
  }
  #global-nav ul li > ul {
    opacity: 0;
    visibility: hidden;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 7777;
    right: 0;
    color: #000000;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 6px 6px 0px 3px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 220px;
    transition: all 0.3s ease;
  }
  #global-nav ul li:hover > ul {
    opacity: 1;
    visibility: visible;
    margin: 0;
    padding: 15px 20px;
  }
  #global-nav ul li > ul li {
    margin: 0;
    padding: 0;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 0.04rem;
    text-align: left;
    color: #000000;
  }
  #global-nav ul li > ul li a {
    display: block;
    margin: 0;
    padding: 0;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 140%;
    letter-spacing: 0.04rem;
    width: 100%;
    height: 100%;
    color: #000000;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
  }
  #global-nav ul li > ul li a:hover,
  #global-nav ul li > ul li.current a {
    color: #3C3CAA;
  }
  #global-nav ul li > ul li a:hover:after,
  #global-nav ul li > ul li.current a:after {
    width: 0;
    border-bottom: none;
  }
}
@media screen and ( max-width: 1024px ) {
  #modal {
    margin: 0;
    padding: 0;
    position: fixed;
    z-index: 6666;
    top: 20px;
    right: 20px;
  }
  #modal input {
    display: none;
  }
  #modal label:hover {
    cursor: pointer;
  }
  #modal label:after {
    font-family: "Font Awesome 6 Free";
    content: "\f0c9";
    font-size: 1.6rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: #3C3CAA;
    background-color: #FFFFFF;
    box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
  }
  #modal input:checked ~ #modal-window {
    visibility: visible;
    animation-name: modal-window;
    animation-duration: 0.3s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;
  }
  @keyframes modal-window {
    from {
      opacity: 0;
      transform: translateX(-20px);
    }
    to {
      opacity: 1;
      transform: translateX(0px);
    }
  }
  #modal input:checked ~ label:after {
    font-family: "Font Awesome 6 Free";
    content: "\f00d";
    color: #FFFFFF;
    background-color: #3C3CAA;
    transform: rotate(180deg);
    transform-origin: center;
    transition: transform 0.3s ease;
  }
  #modal-window {
    visibility: hidden;
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    overflow-y: auto;
    width: 100%;
    height: 100%;
    color: #000000;
    background-color: #EFEFEF;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  #modal-window::-webkit-scrollbar {
    display: none;
  }
  #global-nav {
    margin: 0;
    padding: 0;
    height: 100%;
  }
  #global-nav ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    gap: 1px 0;
    background-color: #DDDDDD;
    border-top: 1px solid #DDDDDD;
    border-bottom: 1px solid #DDDDDD;
  }
  #global-nav ul li {
    margin: 0;
    padding: 0;
    font-size: 1.8em;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: 0.2rem;
    color: #000000;
    background-color: #FFFFFF;
    width: 100%;
    position: relative;
    cursor: pointer;
  }
  #global-nav ul li a {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 15px 20px;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 160%;
    letter-spacing: 0.2rem;
    text-decoration: none;
    width: 100%;
    height: 100%;
    color: #000000;
    background-color: #FFFFFF;
    position: relative;
  }
  #global-nav ul li > ul {
    display: none;
    border: none;
  }
  #global-nav ul li.current > ul {
    display: block;
    margin: 0;
    padding: 0;
  }
  #global-nav ul li.accordion > a {
    width: calc(100vw - 60px);
    display: inline-block;
  }
  #global-nav ul li.accordion > a:after,
  #global-nav ul li.accordion.current.active > a:after {
    pointer-events: none;
    content: "+";
    font-size: 3.6rem;
    font-weight: 400;
    color: #000000;
    position: absolute;
    z-index: 5555;
    top: 0;
    left: calc(100vw - 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 100%;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
  }
  #global-nav ul li.accordion.active > a:after,
  #global-nav ul li.accordion.current > a:after {
    pointer-events: none;
    content: "-";
    font-size: 3.6rem;
    font-weight: 400;
    color: #000000;
    transform: rotate(180deg);
    transform-origin: center;
    transition: transform 0.3s ease;
  }
  #global-nav ul li > ul li {
    margin: 0;
    padding: 0;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: 0.1rem;
    text-align: left;
    color: #000000;
    background-color: #FFFFFF;
    position: relative;
  }
  #global-nav ul li > ul li a {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 8px 40px;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: 0.1rem;
    text-decoration: none;
    width: 100%;
    height: 100%;
    color: #000000;
    background-color: #FFFFFF;
    position: relative;
  }
  #global-nav ul li > ul li:not(.current) a {
    color: #000000;
    background-color: #FFFFFF;
  }
  #global-nav ul li.current a {
    color: #3C3CAA;
  }
  #header header .header-icons {
    margin: 20px 20px 5px 20px;
    padding: 0;
    flex-direction: row-reverse;
    gap: 10px 20px;
  }
  #header header .header-icons ul.sns {
    margin: 0;
    padding: 0;
    gap: 5px;
  }
  #header header .header-icons ul.sns li,
  #header header .header-icons ul.sns li a {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.04rem;
    line-height: 140%;
    text-decoration: none;
    color: #3C3CAA;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #header header .header-icons ul.sns li img {
    width: 34px;
    height: 34px;
  }
  #header header .header-icons ul.lang {
    margin: 0;
    padding: 0;
    gap: 5px;
  }
  #header header .header-icons ul.lang li,
  #header header .header-icons ul.lang li a {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.04rem;
    line-height: 140%;
    text-decoration: none;
    color: #FFFFFF;
    background-color: #BBBBBB;
    border-radius: 4px;
    width: 56px;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
 }
  #header header .header-icons ul.lang li a:hover,
  #header header .header-icons ul.lang li.current a {
    color: #FFFFFF;
    background-color: #3C3CAA;
  }
  #header header .header-icons ul.lang li+li:before {
    content: none;
  }
}



/****************************/
/********** Footer **********/
/****************************/

#footer {
  clear: both;
  margin: auto auto 0 auto;
  padding: 0;
  width: 100%;
  position: relative;
  color: #FFFFFF;
}
#footer footer {
  margin: auto;
  padding: 80px 20px 20px 20px;
  width: 100%;
  max-width: 1040px;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
#footer footer .content {
  margin: auto;
  padding: 0;
  width: 100%;
  display: flex;
  gap: 20px 2%;
  background-color: transparent;
  background-image: none;
}
#footer footer .contact-info {
  display: flex;
  flex-direction: column;
  gap: 40px 0;
  width: 58%;
}
#footer footer .contact-info h3 {
  margin: 10px 0;
  padding: 0;
}
#footer footer .contact-info address {
  color: #FFFFFF;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
  line-height: 160%;
}
#footer footer .contact-info address span {
  display: inline-block;
  width: 4ch;
}
#footer footer nav {
  width: 40%;
}
#footer footer nav ul {
  margin: auto;
  padding: 0;
  list-style-type: none;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 15px 2%;
}
#footer footer nav ul li,
#footer footer nav ul li a {
  margin: 0;
  padding: 0;
  color: #FFFFFF;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.2rem;
  line-height: 160%;
  text-decoration: none;
  width: 49%;
}
#footer footer nav ul li a:hover,
#footer footer nav ul li.current a {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}
#footer footer aside.banners {
  margin: 20px auto;
  padding: 0;
  width: 100%;
}
#footer footer aside.banners ul {
  margin: auto;
  padding: 0;
  list-style-type: none;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
#footer footer aside.banners ul li {
  margin: 0;
  padding: 0;
  width: calc(100% / 3 - 16px);
}
#footer footer #pagetop,
#footer footer #pagetop a {
  position: fixed;
  bottom: 10px;
  right: 20px;
  z-index: 1111;
  text-decoration: none;
  color: #BBBBBB;
  font-size: 5.4rem;
  font-weight: 900;
}
#footer footer #pagetop a:hover {
  opacity: 0.7;
}
#footer footer #copyright {
  margin: 10px auto;
  padding: 0;
  color: #FFFFFF;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.04rem;
  line-height: 140%;
  text-align: center;
}
@media screen and ( max-width: 1280px ) {
  #footer footer {
    padding-top: 50px;
  }
  #footer footer .content {
    padding: 0 30px;
  }
  #footer footer aside.banners {
    padding: 0 30px;
  }
}
@media screen and ( max-width: 1024px ) {
  #footer footer .content {
    flex-direction: column;
    padding: 0 20px;
  }
  #footer footer .contact-info {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0 20px;
  }
  #footer footer .contact-info address {
    text-align: center;
  }
  #footer footer nav {
    margin: 20px auto;
    width: 100%;
  }
  #footer footer nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 15px;
  }
  #footer footer nav ul li,
  #footer footer nav ul li a {
    letter-spacing: 0.1rem;
    width: auto;
  }
  #footer footer aside.banners {
    padding: 0 20px;
  }
  #footer footer aside.banners ul {
    gap: 18px;
  }
  #footer footer aside.banners ul li {
    width: calc(100% / 3 - 12px);
  }
  #footer footer #copyright {
    margin: 10px auto;
  }
}
@media screen and ( max-width: 768px ) {
  #footer footer .content {
    padding: 0 10px;
  }
  #footer footer .contact-info {
    flex-direction: column;
    gap: 20px 0;
  }
  #footer footer nav {
    margin: 10px auto;
  }
  #footer footer nav ul {
    gap: 10px;
  }
  #footer footer nav ul li,
  #footer footer nav ul li a {
    font-size: 1.6rem;
  }
  #footer footer aside.banners {
    padding: 0 10px;
  }
  #footer footer aside.banners ul {
    gap: 15px;
  }
  #footer footer aside.banners ul li {
    width: calc(100% / 3 - 10px);
  }
  #footer footer #pagetop,
  #footer footer #pagetop a {
    font-size: 4.4rem;
  }
  #footer footer #copyright {
    margin: auto;
  }
}
@media screen and ( max-width: 480px ) {
  #footer footer .contact-info address {
    letter-spacing: 0.1rem;
  }
  #footer footer nav {
    margin: auto;
  }
  #footer footer nav ul li,
  #footer footer nav ul li a {
    font-size: 1.5rem;
  }
  #footer footer aside.banners {
    padding: 0;
  }
  #footer footer aside.banners ul {
    gap: 12px;
  }
  #footer footer aside.banners ul li {
    width: calc(100% / 2 - 6px);
  }
  #footer footer #pagetop,
  #footer footer #pagetop a {
    font-size: 3.4rem;
  }
}



/**************************/
/********** Main **********/
/**************************/

main {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  min-height: 100%;
  min-height: 100vh;
}