@charset "utf-8";



/*******************************/
/********** Container **********/
/*******************************/

#container {
  position: relative;
  top: 0;
  z-index: 0;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow-x: hidden;
}



/****************************/
/********** Header **********/
/****************************/

#header {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  position: relative;
}
#header header {
  margin: 0 auto;
  padding: 25px 20px;
  width: 100%;
  max-width: 1040px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 20px;
}
#header header h1 {
  margin: 0 30px 0 0;
  padding: 0;
  font-family: "Segoe UI", "Helvetica Neue", "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.06rem;
  text-align: left;
  color: #3E3A39;
  display: inline-block;
}
#header header h1 a {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", "Helvetica Neue", "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.06rem;
  text-align: left;
  text-decoration: none;
  color: #3E3A39;
  display: inline-block;
}
#header header h1 a:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
  transition: opacity 0.3s;
}
#header header h1 span {
  font-family: "Segoe UI", "Helvetica Neue", "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.14rem;
  color: #848484;
  display: inline-block;
  margin: 0 0 6px 0;
}
#header header h1 small {
  margin: 0 0 0 4px;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0;
}
@media screen and ( max-width: 768px ) {
  #header header {
    padding: 20px;
  }
  #header header h1,
  #header header h1 a {
    font-size: 1.4rem;
  }
  #header header h1 span {
    font-size: 1.1rem;
  }
  #header header h1 small {
    font-size: 1.1rem;
  }
}
@media screen and ( max-width: 480px ) {
  #header header {
    padding: 15px 20px;
  }
  #header header h1,
  #header header h1 a {
    font-size: 1.2rem;
    letter-spacing: 0;
  }
  #header header h1 span {
    font-size: 1.0rem;
    letter-spacing: 0;
  }
  #header header h1 small {
    font-size: 1.0rem;
  }
}



/********************************/
/********** Global Nav **********/
/********************************/

#modal #trigger {
  display: none;
}
#modal-window {
  display: flex;
  flex-direction: column;
  gap: 12px 0;
}
#global-nav {
  margin: auto;
  padding: 0;
  width: 100%;
  color: #2BB1D0;
  position: relative;
  z-index: 5555;
  order: 2;
}
#global-nav ul {
  margin: auto;
  padding: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 4px 0;
}
#global-nav ul li {
  margin: 0;
  padding: 0;
  color: #2BB1D0;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.02rem;
  list-style-type: none;
  white-space: nowrap;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
#global-nav ul li a {
  margin: 0;
  padding: 0;
  color: #2BB1D0;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.02rem;
  text-align: center;
  text-decoration: none;
  width: 100%;
  position: relative;
}
#global-nav ul li+li {
  margin: 0 0 0 20px;
}
#global-nav ul li a:after {
  content: '';
  width: 0;
  border-bottom: 2px solid #2BB1D0;
  display: block;
  position: absolute;
  left: 0;
  bottom: -4px;
  transition: all 0.3s ease;
}
#global-nav ul li a:hover:after,
#global-nav ul li.current a:after {
  width: 100%;
  border-bottom: 2px solid #2BB1D0;
}
@media screen and ( max-width: 1024px ) {
  #modal {
    margin: 0;
    padding: 0;
    position: fixed;
    right: 10px;
    top: 10px;
    z-index: 9999;
  }
  #modal input {
    display: none;
  }
  #modal label {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    background-color: #FFFFFF;
    border: 2px solid #2BB1D0;
    color: #2BB1D0;
    padding: 4px 16px;
    width: 42px;
    height: 34px;
  }
  #modal label:hover {
    cursor: pointer;
    background-color: #E3F6FA;
  }
  #modal label:after {
    font-family: "Font Awesome 6 Free";
    content: "\f0c9";
    font-size: 1.6rem;
    font-weight: 900;
    color: #2BB1D0;
    display: inline-block;
    transition: 0.3s;
  }
  #modal input:checked ~ #modal-window {
    visibility: visible;
  }
  #modal input:checked ~ label:after {
    font-family: "Font Awesome 6 Free";
    content: "\f00d";
    transform: rotate(180deg);
  }
  #modal-window {
    visibility: hidden;
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    overflow-y: auto;
    width: 100%;
    height: 100%;
    background-color: #E3F6FA;
    color: #2BB1D0;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 20px 0;
  }
  #modal-window::-webkit-scrollbar {
    display: none;
  }
  #modal-window #global-nav {
    margin: 0;
    padding: 0 20px;
    background: transparent;
    border: none;
    order: 1;
  }
  #modal-window #global-nav ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  #modal-window #global-nav ul li {
    display: flex;
    justify-content: flex-start;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0.2rem;
    text-align: left;
    text-decoration: none;
    color: #2BB1D0;
    width: 49%;
    margin: 0 2% 0 0;
  }
  #modal-window #global-nav ul li a {
    display: block;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: 0.2rem;
    text-align: left;
    text-decoration: none;
    color: #2BB1D0;
    width: 100%;
    padding: 20px 4px;
    border-bottom: 1px solid #2BB1D0;
  }
  #modal-window #global-nav ul li:nth-child(even) {
    margin: 0;
  }
  #modal-window #global-nav ul li a:after {
    border-bottom: none;
  }
  #modal-window #global-nav ul li.current a,
  #modal-window #global-nav ul li a:hover {
    font-weight: bold;
    font-style: italic;
  }
}
@media screen and ( max-width: 480px ) {
  #modal-window #global-nav ul li {
    margin: 0;
    width: 100%;
  }
  #modal-window #global-nav ul li a {
    padding: 16px 4px;
    width: 100%;
  }
}



/****************************/
/********** Footer **********/
/****************************/

#footer {
  clear: both;
  margin: auto auto 0 auto;
  padding: 0;
  width: 100%;
  color: #FFFFFF;
  background-color: #2BB1D0;
}
#footer footer {
  margin: auto;
  padding: 40px 20px;
  width: 100%;
  max-width: 1040px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
#footer footer .title {
  font-family: "Segoe UI", "Helvetica Neue", "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
  line-height: 160%;
  text-align: left;
  color: #FFFFFF;
  display: inline-block;
  white-space: nowrap;
}
#footer footer .title small {
  margin: 0 0 0 4px;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0;
}
#footer footer nav {
  margin: 0 0 0 auto;
  padding: 0;
  display: flex;
  justify-content: flex-end;
}
#footer footer nav ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
#footer footer nav ul li {
  margin: 0;
  padding: 0;
  list-style-type: none;
  color: #FFFFFF;
  font-family: "Segoe UI", "Helvetica Neue", "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.02rem;
}
#footer footer nav ul li a {
  margin: 0;
  padding: 0;
  list-style-type: none;
  color: #FFFFFF;
  font-family: "Segoe UI", "Helvetica Neue", "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 120%;
  letter-spacing: 0.02rem;
  text-decoration: none;
  position: relative;
}
#footer footer nav ul li a:after {
  content: '';
  width: 0;
  border-bottom: 2px solid #FFFFFF;
  display: block;
  position: absolute;
  left: 0;
  bottom: -4px;
  transition: all 0.3s ease;
}
#footer footer nav ul li a:hover:after,
#footer footer nav ul li.current a:after {
  width: 100%;
  border-bottom: 2px solid #FFFFFF;
}
#footer footer nav ul li+li {
  margin: 0 0 0 20px;
}
#footer #pagetop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 6666;
}
#footer #pagetop a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  background-color: #FFFFFF;
  border: 2px solid #2BB1D0;
  color: #2BB1D0;
  font-size: 2.2rem;
  font-weight: 400;
  width: 50px;
  height: 46px;
  text-decoration: none;
}
#footer #pagetop a:hover {
  background-color: #E3F6FA;
}
#footer #copyright {
  margin: auto;
  padding: 10px 20px;
  width: 100%;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.2rem;
  line-height: 160%;
  text-align: center;
  color: #FFFFFF;
}
@media screen and ( max-width: 1024px ) {
  #footer footer {
    padding: 40px 20px 20px 20px;
    flex-direction: column;
  }
  #footer footer .title {
    margin: auto;
  }
  #footer footer nav {
    margin: auto;
    justify-content: center;
  }
  #footer #pagetop {
    bottom: 20px;
    right: 10px;
  }
  #footer #pagetop a {
    font-size: 2.0rem;
    width: 42px;
    height: 38px;
  }
}
@media screen and ( max-width: 768px ) {
  #footer footer .title {
    font-size: 1.4rem;
  }
  #footer footer .title small {
    font-size: 1.1rem;
  }
}
@media screen and ( max-width: 468px ) {
  #footer footer {
    padding: 30px 20px 10px 20px;
  }
  #footer footer .title {
    font-size: 1.2rem;
  }
  #footer footer .title small {
    font-size: 1.0rem;
  }
  #footer footer nav {
    display: none;
  }
  #footer #copyright {
    font-size: 1.1rem;
    letter-spacing: 0;
  }
}



/**************************/
/********** Main **********/
/**************************/

main {
  display: block;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  text-align: left;
  position: relative;
}