/* CSS Document */ :root {
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #3d4348; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #3e5055; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #334F7A; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --accent2-color: #FF5E72;
  --accent3-color: #5DA7FF;
  --surface-color: #F8FDFF; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
  --header-color: #1F3445;
  --hero-h1: #ffffff;
  --footer-background-color: #1C427C;
  --footer-text-color: #D2E4FF;
  --footer-h4-color: #89B8FF;
}
/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */ :root {
  --nav-color: #ffffff; /* The default color of the main navmenu links */
  --nav-hover-color: #77b6ca; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #F1F1F1; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #173767; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #376370; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}
/* ▼▼▼********************************************▼▼▼ */
/* ▼▼▼------------▼▼▼ Google Fonts ▼▼▼------------▼▼▼ */
/* ▼▼▼********************************************▼▼▼ */
@import url('');
/*

.nunito-sans-<uniquifier> {
  font-family: "Nunito Sans", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100,
    "YTLC" 500;
}


.sofia-sans-condensed-<uniquifier> {
  font-family: "Sofia Sans Condensed", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}


.quicksand-<uniquifier> {
  font-family: "Quicksand", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

.montserrat-<uniquifier> {
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

*/

@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}
header, main {
  background-color: var(--background-color);
}
body {
  padding-top: 0px;
}
.footer {
  padding-top: 40px;
  padding-bottom: 40px;
  margin-top: 0px;
}
@media (min-width: 768px) {
  .navbar-nav .nav-item {
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
  }
}
#headerImg {
  background-image: url(../images/keyVisual.png);
  background-position: 0% 0%;
  background-size: cover;
  background-repeat: no-repeat;
}
.orgH2 {
  font-weight: 400;
  font-size: 0.9em;
  color: var(--heading-color);
}
@media (min-width: 576px) {
  .orgH2 {
    font-size: 1em;
  }
}
@media (min-width: 768px) {
  .orgH2 {
    font-size: 1.2em;
    margin-left: 1em;
    margin-top: 0.5em
  }
  #headerImg {
    height: 135px;
  }
}
@media (min-width: 992px) {
  #headerImg {
    height: 176px;
  }
}
@media (min-width: 1200px) {
  #headerImg {
    height: 212px;
  }
}
@media (min-width: 1400px) {
  #headerImg {
    height: 247px;
  }
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#loadingIcon {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}
#loadingIcon:before, #loadingIcon:after {
  content: url("../images/logo.svg");
  position: absolute;
  border-radius: 50%;
  animation: loadingIcon 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
#loadingIcon:after {
  animation-delay: -1.2s;
}
@keyframes loadingIcon {
  0% {
    width: 30px;
    height: 30px;
    top: calc(50% - 15px);
    left: calc(50% - 15px);
    opacity: 1.0;
  }
  100% {
    width: 90px;
    height: 90px;
    top: calc(50% - 45px);
    left: calc(50% - 45px);
    opacity: 0.0;
  }
}
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 30px;
	bottom: -15px;
	z-index: 99999;
	background-color: var(--accent3-color);
	width: 50px;
	height: 50px;
	border-radius: 25px;
	transition: all 0.4s;
}
.scroll-top i {
  font-size: 50px;
  color: var(--contrast-color);
  line-height: 0;
  margin-top: 0px
}
.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}
.scroll-top.active {
	visibility: visible;
	opacity: 1;
	bottom: 40px;
}
/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section, .section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  scroll-margin-top: 140px;
  overflow: clip;
}
@media (max-width: 1199px) {
  section, .section {
    scroll-margin-top: 15px;
  }
}
/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 40px;
  position: relative;
}
.section-title h2 {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}
.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 60%;
  height: 4px;
  background: var(--accent3-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.section-title h2 span {
  color: var(--accent2-color);
}
.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.footer {
  color: var(--footer-text-color);
  background-color: var(--footer-background-color);
  font-size: 14px;
  padding-bottom: 15px;
  position: relative;
}
.footer .footer-top {
  padding-top: 5px;
}
.footer .footer-about {
  text-align: center
}
.footer .footer-about p {
  font-size: 14px;
  font-family: var(--footer-text-color);
}
.social-links {
  background-color: var(--background-color);
  border-radius: 20px;
  padding-left: 1em;
  padding-right: 1em
}
.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  margin-right: 15px;
  transition: 0.4s;
}
.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}
.footer h4 {
  color: var(--footer-h4-color);
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}
.footer .footer-links {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}
.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}
.footer .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
}
.footer .footer-links ul li:first-child {
  padding-top: 0;
}
.footer .footer-links ul a {
  color: color-mix(in srgb, var(--footer-text-color), transparent 30%);
  display: inline-block;
  line-height: 1;
  text-decoration: none
}
.footer .footer-links ul a:hover {
  color: var(--accent2-color);
}
.footer .footer-contact {
  text-align: center
}
.footer .footer-contact p {
  margin-bottom: 5px;
}
.footer .footer-signup .signup-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 50px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  display: flex;
  background-color: var(--surface-color);
  transition: 0.3s;
}
.footer .footer-signup .signup-form:focus-within {
  border-color: var(--accent-color);
}
.footer .footer-signup .signup-form input[type=email] {
  border: 0;
  padding: 4px 10px;
  width: 100%;
  background-color: var(--contrsast-color);
  color: var(--footer-text-color);
}
.footer .footer-signup .signup-form input[type=email]:focus-visible {
  outline: none;
}
.footer .footer-signup .signup-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -9px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}
.footer .footer-signup .signup-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}
.footer .copyright {
  padding-top: 20px;
  padding-bottom: 0px;
  border-top: 2px solid color-mix(in srgb, var(--footer-text-color), transparent 80%);
}
.footer .copyright p {
  margin-bottom: 0;
}
/*--------------------------------------------------------------
# Single STC Section
--------------------------------------------------------------*/
#stc-single-post {}
.stc-section {
  padding-bottom: 20px;
}
.stc-section .content {
  /*text-transform: uppercase;*/
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}
.stc-section .content h3 {
  font-size: 1.6rem;
  font-weight: 700;
}
.stc-section .content ul {
  list-style: none;
  padding: 0;
}
.stc-section .content ul li {
  padding-bottom: 10px;
}
.stc-section .content ul i {
  font-size: 1.25rem;
  margin-right: 4px;
  color: var(--accent-color);
}
.stc-section .content p:last-child {
  margin-bottom: 0;
}
.stc-section .stc-section-images img {
  border-radius: 10px;
}
.stcList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -js-display: flex;
  margin-right: -10px;
  margin-left: -10px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}
.stcList .stcList_item {
  width: calc((100% - 60px) / 3);
  padding: 20px 15px;
  margin: 20px 10px;
  list-style: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-right: 1px solid #ccc
}
.stcList .stcList_item:nth-child(3n) {
  border-right: none
}
@media only screen and (max-width:767px) {
  .stcList .stcList_item {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #ccc
  }
}
.stc_body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -20px;
  margin-right: -20px;
  padding-bottom: 30px
}
.stc_body .stc_text {
  width: calc(50% - 40px);
  margin: 0 20px
}
.stc_body .stc_pic {
  width: calc(50% - 40px);
  margin: 0 20px
}
.stc_content p {
  font-size: 16px;
  padding: 15px 0;
  line-height: 2
}
.stc_pic {
  position: relative
}
.stc_pic img {
  height: auto;
  max-width: 100%
}
.stc_label {
  position: absolute;
  content: "";
  top: -30px;
  left: -30px;
  z-index: 10;
  background-color: #000;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  width: 80px;
  height: 80px
}
.stc_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 30px 0;
  margin: 0 auto;
  border: 1px solid #ccc
}
.stc_list .stc_item {
  width: 33.3333%;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-right: 1px solid #ccc
}
.stc_list .stc_item:last-child {
  border-right: none
}
.stc_list .stc_itemLabel {
  font-size: 14px;
  font-weight: bold;
  color: #666666;
  display: inline-block;
  padding: 0 10px
}
.stc_list .stc_itemData {
  font-size: 14px;
  font-weight: bold;
  color: #000;
  display: inline-block;
  padding: 0 10px
}
@media only screen and (max-width:767px) {
  .stc_body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 15px
  }
  .stc_body .stc_text {
    width: 100%;
    margin: 0
  }
  .stc_body .stc_pic {
    width: 100%;
    margin: 0
  }
  .stc_body .stc_label {
    top: -10px;
    left: -10px;
    font-size: 10px;
    width: 60px;
    height: 60px
  }
  .stc_text p {
    font-size: 14px;
    padding: 10px 0
  }
  .stc_list {
    padding: 5px 0
  }
  .stc_list .stc_item {
    width: 100%;
    padding: 5px;
    border-right: none;
    border-bottom: 1px solid #ccc
  }
  .stc_list .stc_item:last-child {
    border-bottom: none
  }
  .stc_footer {
    margin-bottom: 50px
  }
}
/* ▼▼▼********************************************▼▼▼ */
/* ▼▼▼--------▼▼▼ BASE COMMMON STYLES ▼▼▼---------▼▼▼ */
/* ▼▼▼********************************************▼▼▼ */
/* ▼▼▼----- HTML TAGS -----▼▼▼ */
html, body {
  font-family: "Nunito Sans", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth"100, "YTLC"500;
}
nav {
  font-family: "Sofia Sans Condensed", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Quicksand", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  color: rgba(0, 80, 180, 1.00)
}
h1 {
  color: rgba(255, 255, 255, 1.00);
  text-shadow: 1px 1px 1px rgba(0, 3, 14, 0.75);
}
/* 未整理 */
#pageSection {
  padding-top: 200px;
}
.visit-website::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  content: "\f0ac"; /* "\f57e" */
  margin-left: 0.5rem
}
.view-article::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  content: "\f02d";
  margin-left: 0.5rem
}
#sns-facebook, #sns-instagram, #sns-x {
  /*
	font-size: 2.2rem
	*/
}
/* */
#sns-facebook {
  color: rgba(60, 90, 153, 1.00)
}
#sns-instagram {
  background-image: -webkit-linear-gradient(135deg, rgba(76, 100, 211, 1.00) 0%, rgba(207, 46, 146, 1.00) 33%, rgba(242, 105, 57, 1.00) 60%, rgba(255, 221, 131, 1.00) 100%);
  background-image: -moz-linear-gradient(135deg, rgba(76, 100, 211, 1.00) 0%, rgba(207, 46, 146, 1.00) 33%, rgba(242, 105, 57, 1.00) 60%, rgba(255, 221, 131, 1.00) 100%);
  background-image: -o-linear-gradient(135deg, rgba(76, 100, 211, 1.00) 0%, rgba(207, 46, 146, 1.00) 33%, rgba(242, 105, 57, 1.00) 60%, rgba(255, 221, 131, 1.00) 100%);
  background-image: linear-gradient(180deg, rgba(76, 100, 211, 1.00) 0%, rgba(207, 46, 146, 1.00) 33%, rgba(242, 105, 57, 1.00) 60%, rgba(255, 221, 131, 1.00) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
#sns-x {
  color: rgba(10, 10, 10, 1.00)
}
#sns-youtube {
  color: rgba(218, 23, 37, 1.00)
}
/* ▼▼▼********************************************▼▼▼ */
/* ▼▼▼---------- ▼▼▼ FOOTER STYLES ▼▼▼ -----------▼▼▼ */
/* ▼▼▼********************************************▼▼▼ */
footer {
  border-top: rgba(12, 181, 192, 1.00) solid 8px;
}
/* ▼▼▼********************************************▼▼▼ */
/* ▼▼▼------------- ▼▼▼ UTILITES ▼▼▼ -------------▼▼▼ */
/* ▼▼▼********************************************▼▼▼ */
#topBack {
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 100;
}
#topBack i, #topBack i:hover {
  font-size: 50px
}
#topBack a {
  background-color: rgba(0, 102, 185, 1.00);
  text-decoration: none;
  color: #F3FAFF;
  width: 56px;
  height: 56px;
  padding: 3px;
  text-align: center;
  display: block;
  border-radius: 28px;
  opacity: 0.9;
  font-size: 24px;
}
#topBack:hover {
  opacity: 0.5;
}
/* ▼▼▼********************************************▼▼▼ */
/* ▼▼▼--------- ▼▼▼ DEFAULT FORMATS ▼▼▼ ----------▼▼▼ */
/* ▼▼▼********************************************▼▼▼ */
#nowconst {
  padding-top: 2em;
  padding-right: 1em;
  padding-left: 1em;
  padding-bottom: 2em;
  border: 3px solid rgba(231, 191, 147, 1.00);
  border-radius: 16px;
  color: rgba(183, 110, 62, 1.00);
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1em;
  margin-top: 1em;
}
/* ▼▼▼********************************************▼▼▼ */
/* ▼▼▼---------- ▼▼▼ CUSTOM STYLES ▼▼▼ -----------▼▼▼ */
/* ▼▼▼********************************************▼▼▼ */
.customUL {
  list-style-type: none;
  margin-left: 3em;
  padding-left: 0;
}
.customUL > li {
  position: relative;
}
.customLI {
  left: -2.2em;
  position: absolute;
  text-align: center;
  width: 2.2em;
  line-height: inherit;
}
.customUL2 {
  list-style-type: none;
  margin-left: 3em;
  padding-left: 0;
}
.customUL2 > li {
  position: relative;
}
.customLI2 {
  left: -3em;
  position: absolute;
  text-align: center;
  width: 3em;
  line-height: inherit;
}
/* ▼▼▼********************************************▼▼▼ */
/* ▼▼▼-------------▼▼▼ NAVIGATION ▼▼▼-------------▼▼▼ */
/* ▼▼▼********************************************▼▼▼ */
/* ▼▼▼********************************************▼▼▼ */
/* ▼▼▼----------▼▼▼ HERO / JUMBOTRON ▼▼▼----------▼▼▼ */
/* ▼▼▼********************************************▼▼▼ */
