@charset "UTF-8";
@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,400;0,600;1,100;1,600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Sharp:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200");
body.fixed {
  overflow: hidden;
}

#site-header {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 0 30px;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  transition: 0.3s;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.7);
}
@media screen and (max-width: 768px) {
  #site-header {
    display: block;
    min-height: 60px;
    padding: 10px 0 0 15px;
  }
}
#site-header #site-logo {
  width: 200px;
}
@media screen and (max-width: 768px) {
  #site-header #site-logo {
    width: 150px;
  }
}
#site-header #global-nav {
  position: fixed;
  width: 100%;
  height: 100%;
  right: -100%;
  top: 0;
  bottom: 0;
  transition: 0.3s ease;
  overflow-y: scroll;
  /*IE, Edge*/
  -ms-overflow-style: none;
  /*Firefox*/
  scrollbar-width: none;
  /*Chrome, Safari*/
  color: #fff;
  backdrop-filter: blur(19.1513004303px);
  --webkit-backdrop-filter: blur(19.15130043029785px);
  background-color: rgba(47, 134, 188, 0.75);
  padding: 5em;
  text-align: center;
}
#site-header #global-nav::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 768px) {
  #site-header #global-nav {
    text-align: left;
    padding: 10px 30px 50px;
  }
}
#site-header #global-nav .gn-logo {
  flex: 0 0 100%;
}
#site-header #global-nav .gn-logo a {
  display: block;
  max-width: 250px;
  margin: 0 auto 5em;
}
@media screen and (max-width: 768px) {
  #site-header #global-nav .gn-logo a {
    width: 200px;
    margin: 0 0 40px;
  }
}
#site-header #global-nav ul {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 5em;
  flex-wrap: wrap;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #site-header #global-nav ul {
    display: block;
  }
}
#site-header #global-nav ul li {
  font-size: 0.8333333333vw;
  letter-spacing: 0.02em;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  #site-header #global-nav ul li {
    font-size: 1.1458333333vw;
  }
}
@media screen and (max-width: 768px) {
  #site-header #global-nav ul li {
    font-size: 16px;
    margin-bottom: 2em;
  }
}
#site-header #global-nav ul li a {
  display: block;
  color: #fff;
  text-decoration: none;
}
#site-header #global-nav ul li a strong {
  display: block;
  font-family: "Barlow", sans-serif !important;
  font-weight: normal;
  font-style: italic;
  font-size: 2.2em;
}
#site-header #global-nav.open {
  right: 0;
}
#site-header .menu-btn {
  display: block;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(90deg, #08d 0%, #05aadd 100%);
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  text-align: center;
  cursor: pointer;
  z-index: 9;
}
@media screen and (max-width: 768px) {
  #site-header .menu-btn {
    width: 60px;
    height: 60px;
  }
}
#site-header .menu-btn div {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 33%;
  height: 21%;
}
#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);
  width: 50%;
}
#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);
  width: 100%;
}

#site-footer {
  position: relative;
  border-top: 5px solid #6AA7CD;
}
#site-footer a.ptop {
  width: 60px;
  height: 60px;
  cursor: pointer;
  background-color: #6AA7CD;
  color: #fff;
  position: absolute;
  right: 30px;
  top: -30px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
#site-footer a.ptop span[class*=material] {
  font-size: 50px;
}
#site-footer footer {
  background-color: #2F84BA;
  color: #fff;
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  #site-footer footer {
    padding: 50px 0 20px;
  }
}
#site-footer footer a {
  color: #fff;
}
#site-footer footer div.uk-container div.uk-grid div p.footer_logo {
  width: 250px;
}
#site-footer footer div.uk-container div.uk-grid div p {
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  #site-footer footer div.uk-container div.uk-grid div p {
    font-size: 12px;
  }
}
#site-footer footer div.uk-container div.uk-grid div ul.footer_nav {
  display: flex;
  justify-content: flex-end;
  gap: 1em;
}
@media screen and (max-width: 768px) {
  #site-footer footer div.uk-container div.uk-grid div ul.footer_nav {
    display: none;
  }
}
#site-footer footer div.uk-container div.uk-grid div ul.footer_nav li {
  font-size: 14px;
}
#site-footer footer div.uk-container p.cp {
  font-size: 11px;
  letter-spacing: 0.03em;
  line-height: 1;
  text-align: right;
}
@media screen and (max-width: 768px) {
  #site-footer footer div.uk-container p.cp {
    font-size: 10px;
    text-align: left;
  }
}

#pagettl {
  text-align: center;
  background: url(../../img/mv.jpg) no-repeat left 30%;
  background-size: 100% auto;
  padding: 50px 30px;
}
@media screen and (max-width: 768px) {
  #pagettl {
    background-size: cover;
    padding: 65px 20px 50px;
  }
}
#pagettl h1 {
  display: block;
  font-weight: 600;
  color: #fff;
  font-size: 2em;
  letter-spacing: 0.1em;
}
#pagettl h1 strong {
  display: block;
  font-family: "Barlow", sans-serif !important;
  font-weight: normal;
  font-style: italic;
  font-size: 2.5em;
}
@media screen and (max-width: 768px) {
  #pagettl h1 {
    font-size: 1.7rem;
  }
}

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

.material-symbols-sharp {
  font-variation-settings: "FILL" 0, "wght" 100, "GRAD" 0, "opsz" 24;
}

body {
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 400;
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  body {
    padding-top: 60px;
  }
}

img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

/*============================
UIkit overwrite
============================*/
html {
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 13px;
  }
}

.uk-card-media-top img {
  width: 100%;
  height: auto;
}

.uk-heading-divider {
  border-bottom-color: #2F84BA;
}

.uk-heading-bullet::before {
  border-left-color: #2F84BA;
}

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

/*============================
main
============================*/
main {
  overflow: hidden;
}

/*============================
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;
  }
}

/*============================
.well
============================*/
.well {
  background-color: #f3f3f3;
  padding: 2em;
}

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

/*============================
.well
============================*/
.well a[href*=tel] {
  font-family: "Barlow", sans-serif !important;
  font-size: 2.5em;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/*============================
.tb1
============================*/
.tb1 {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}
.tb1 th,
.tb1 td {
  border: 1px solid #ddd;
  padding: 1em 1.5em;
  line-height: 1.7;
  vertical-align: top;
}
.tb1 th {
  background: #f5f5f5;
  font-weight: normal;
}

.form_tb th,
.form_tb td {
  text-align: left;
}
@media screen and (max-width: 768px) {
  .form_tb th,
.form_tb td {
    display: block;
    width: 100%;
    margin-top: -1px;
  }
}
.form_tb td {
  background-color: #fff;
}

table.lease_tb th {
  white-space: nowrap;
}
table.lease_tb th,
table.lease_tb td {
  text-align: center;
  vertical-align: middle;
  font-size: 90%;
}
table.lease_tb th img,
table.lease_tb td img {
  width: 100px;
  display: block;
  margin: auto;
}

/*============================
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;
}

#works-list .uk-card a {
  transition: 0.3s;
  text-decoration: none;
}
#works-list .uk-card a:hover {
  opacity: 0.8;
}
#works-list .uk-card a .uk-card-body h4 {
  font-weight: bold;
}
#works-list .uk-card a .uk-card-body h4 small {
  font-weight: normal;
  font-size: 0.8rem;
  display: block;
  font-family: "Barlow", sans-serif !important;
  color: #2F84BA;
}
#works-list .uk-card a .uk-card-body .btn {
  background-color: #2F84BA;
  color: #fff;
  line-height: 1;
  display: inline-block;
  padding: 0.7em 2.5em;
  font-family: "Barlow", sans-serif !important;
  font-size: 0.8rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
}

.works-list a {
  display: block;
  padding: 75% 0 0 0;
  position: relative;
  overflow: hidden;
  background-color: #bbb;
}
.works-list a img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.works-list a + p {
  padding: 0.5em 0 0;
  margin: 0;
  font-size: 0.9rem;
}

.works-footer-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .works-footer-list {
    display: block;
  }
}
.works-footer-list * {
  box-sizing: border-box;
}
.works-footer-list li {
  flex: 0 0 calc(50% - 5px);
  border: 1px solid #ddd;
  font-size: 0.9rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .works-footer-list li {
    margin-bottom: 10px;
  }
}
.works-footer-list li::after {
  content: "\e5cc";
  font-family: "Material Icons" !important;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  color: #2F84BA;
}
.works-footer-list li a {
  display: block;
  padding: 0.7em 1em;
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}
.works-footer-list li a:hover {
  opacity: 0.7;
}

/*============================
margin
============================*/
/*============================
padding
============================*/
/*============================
Swiper button
============================*/