@charset "UTF-8";
@import url("https://use.fontawesome.com/releases/v6.6.0/css/all.css");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
body.fixed {
  overflow: hidden;
}

#site-header {
  position: absolute;
  left: 0;
  z-index: 99;
  width: 100%;
}
#site-header * {
  margin: 0;
  padding: 0;
}
#site-header #site-logo {
  margin-left: 60px;
}
@media screen and (max-width: 768px) {
  #site-header #site-logo {
    width: 170px;
    margin-left: 0;
  }
}
#site-header #global-nav {
  position: absolute;
  right: 60px;
  top: 20px;
  display: block;
}
@media screen and (max-width: 768px) {
  #site-header #global-nav {
    position: fixed;
    width: 100%;
    height: 100%;
    right: -100%;
    top: 0;
    transition: 0.3s ease;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(3px);
    overflow-y: scroll;
    /*IE, Edge*/
    -ms-overflow-style: none;
    /*Firefox*/
    scrollbar-width: none;
    /*Chrome, Safari*/
  }
  #site-header #global-nav::-webkit-scrollbar {
    display: none;
  }
}
#site-header #global-nav ul {
  display: flex;
  gap: 30px;
  padding-top: 15px;
}
@media screen and (max-width: 768px) {
  #site-header #global-nav ul {
    display: block;
    padding: 80px 40px;
  }
}
#site-header #global-nav ul li {
  line-height: 1;
}
@media screen and (max-width: 768px) {
  #site-header #global-nav ul li {
    text-align: center;
    margin: 0;
  }
}
#site-header #global-nav ul li a {
  display: block;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 24px;
  padding: 15px 0 9px;
  border-bottom: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  text-shadow: 0 0 5px #000;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  #site-header #global-nav ul li a {
    padding: 1em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
  }
}
#site-header #global-nav ul li a:hover {
  opacity: 0.8;
}
#site-header #global-nav.open {
  display: block;
  right: 0;
}
#site-header .menu-btn {
  display: none;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 5px;
  top: 5px;
  width: 60px;
  height: 60px;
  background: #000;
  color: #fff;
  text-align: center;
  cursor: pointer;
  z-index: 9;
}
@media screen and (max-width: 768px) {
  #site-header .menu-btn {
    display: block;
  }
}
#site-header .menu-btn div {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40%;
  height: 30%;
}
#site-header .menu-btn div i {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: 0;
  transition: 0.3s;
}
#site-header .menu-btn div i:nth-of-type(1) {
  top: 0;
}
#site-header .menu-btn div i:nth-of-type(2) {
  top: calc(50% - 0.5px);
}
#site-header .menu-btn div i:nth-of-type(3) {
  bottom: 0;
}
#site-header .menu-btn.active {
  position: fixed;
}
#site-header .menu-btn.active div i {
  top: 50% !important;
  left: 50% !important;
}
#site-header .menu-btn.active div i:nth-of-type(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
#site-header .menu-btn.active div i:nth-of-type(3) {
  transform: scale(0);
}
#site-header .menu-btn.active div i:nth-of-type(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

#site-footer {
  background: #003F7E;
  color: #fff;
  padding: 60px 20px;
}
#site-footer .cp {
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 768px) {
  #site-footer .cp {
    font-size: 11px;
  }
}

.pagettl {
  padding: 150px 0 100px;
  background: url(../img/home-mv.jpg) no-repeat center 40%;
  background-size: cover;
  position: relative;
}
.pagettl::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  backdrop-filter: blur(5px);
}
.pagettl::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #ccc;
  mix-blend-mode: multiply;
  opacity: 0.5;
}
.pagettl h1 {
  font-weight: 600;
  color: #003F7E;
  color: #fff;
  position: relative;
  z-index: 1;
  letter-spacing: 0.1em;
  text-align: center;
  text-shadow: 0 0 10px #000;
}

ul.newslist {
  margin: 0;
  padding: 0;
}
ul.newslist li {
  display: flex;
  gap: 1em;
  align-items: flex-start;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  ul.newslist li {
    display: block;
    font-size: 14px;
  }
}
ul.newslist li span {
  display: flex;
  align-items: center;
  gap: 1em;
}
ul.newslist li span .uk-label {
  font-size: 0.7em;
  padding-bottom: 0.2em;
  background: #A2B9D0;
}
ul.newslist li a {
  display: block;
}
@media screen and (max-width: 768px) {
  ul.newslist li a {
    padding-top: 0.5em;
  }
}

.navigation.pagination {
  padding: 100px 0 0;
}
.navigation.pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.navigation.pagination .nav-links .page-numbers {
  width: 56px;
  height: 56px;
  line-height: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.navigation.pagination .nav-links .page-numbers:not(.prev, .next) {
  font-size: 16px;
}
.navigation.pagination .nav-links .page-numbers.current {
  background: #003F7E;
  color: #fff;
}
.navigation.pagination .nav-links .page-numbers:not(.prev, .next, .current) {
  font-size: 16px;
}
.navigation.pagination .nav-links .page-numbers:not(.prev, .next, .current):hover {
  text-decoration: none;
  background-color: #ccc;
  color: #fff;
}

.formDl {
  margin: 0;
  display: flex;
}
@media screen and (max-width: 768px) {
  .formDl {
    display: block;
  }
}
.formDl dt {
  flex: 0 0 13em;
}
.formDl dd {
  flex: 0 0 calc(100% - 13em);
  padding-left: 30px;
}
@media screen and (max-width: 768px) {
  .formDl dd {
    padding: 1em 0;
  }
}
.formDl .uk-label {
  font-size: 10px;
  padding: 0 1em 0.1em;
  margin-left: 0.5em;
  margin-top: 0.5em;
  float: right;
}
@media screen and (max-width: 768px) {
  .formDl .uk-label {
    float: none;
    margin-top: -0.1em;
  }
}

* {
  box-sizing: border-box;
  list-style: none;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 400;
  color: #000;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

/*============================
commingsoon
============================*/
.comingsoon {
  opacity: 0.3;
  pointer-events: none;
}

/*============================
main
============================*/
main {
  overflow: hidden;
  padding-bottom: 100px;
}

/*============================
Responsive
============================*/
.sp {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block !important;
  }
}

@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

/*============================
BOX Models
============================*/
.w1160 {
  max-width: 1160px;
  margin: auto;
}

.w1000 {
  max-width: 1000px;
  margin: auto;
}

/*============================
.flex
============================*/
.flex {
  display: flex;
}

/*============================
a
============================*/
a {
  transition: 0.3s;
}

a:hover {
  opacity: 0.85;
}

a[href*="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href*="tel:"] {
    pointer-events: auto;
  }
}

/*============================
table
============================*/
/*============================
Headlines
============================*/
/*============================
list
============================*/
.maruList,
.komeList {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}
.maruList *,
.komeList * {
  margin: 0;
  padding: 0;
}
.maruList li,
.komeList li {
  margin-left: 1em;
  list-style: none !important;
}
.maruList li::before,
.komeList li::before {
  content: "●";
  margin-left: -1em;
}

.maruList li::before {
  content: "●";
}

.komeList li::before {
  content: "※";
}

.jisageList li {
  text-indent: -1em;
  margin-left: 1em;
}