@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@100..900&display=swap");
body.fixed {
  overflow: hidden;
}

#site-header {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  transition: 0.3s;
  z-index: 999;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  #site-header {
    height: 60px;
    padding: 0 10px;
  }
}
#site-header #site-logo img {
  width: 362px;
}
@media screen and (max-width: 768px) {
  #site-header #site-logo img {
    width: 250px;
  }
}
#site-header #global-nav {
  display: flex;
  align-items: center;
  gap: 1em;
}
@media screen and (max-width: 768px) {
  #site-header #global-nav {
    position: fixed;
    width: 100%;
    height: calc(100% - 60px);
    right: -100%;
    top: 60px;
    transition: 0.3s ease;
    background: rgba(0, 0, 0, 0.8);
    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;
  margin: 0;
  padding: 0;
  gap: 1em;
}
@media screen and (max-width: 768px) {
  #site-header #global-nav ul {
    padding: 60px 0 0 0;
    display: block;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  }
}
#site-header #global-nav ul li a {
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 5px solid #000;
  transform: 0.3s;
}
#site-header #global-nav ul li a:hover {
  opacity: 0.5;
}
@media screen and (max-width: 768px) {
  #site-header #global-nav ul li a {
    color: #fff;
    display: block;
    padding: 1.5em;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.6);
    font-size: 18px;
  }
}
#site-header #global-nav .header-contact {
  background: #000;
  color: #fff;
}
#site-header #global-nav .header-contact p {
  padding: 0.8em 1.5em;
  margin: 0;
  text-align: center;
  line-height: 1.1;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #site-header #global-nav .header-contact p {
    padding: 1.5em;
    line-height: 1.3;
    font-size: 18px;
  }
}
#site-header #global-nav .header-contact p a {
  display: block;
  color: #fff;
  font-size: 25.5px;
  font-size: 1.59375em;
  letter-spacing: 0.02em;
}
#site-header #global-nav.open {
  display: block;
  right: 0;
}
#site-header .menu-btn {
  display: none;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  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);
}

#topcontrol #ptop i {
  border: 1px solid #333;
  background-color: #fff;
  font-size: 30px;
  color: #333;
  padding: 10px;
}

#site-footer {
  background-color: #000;
  color: #fff;
  padding-right: 60px;
}
@media screen and (max-width: 768px) {
  #site-footer {
    padding-right: 50px;
  }
}
#site-footer a {
  color: #fff;
}
#site-footer footer .uk-container .uk-flex > div ul {
  display: flex;
  gap: 1.5em;
  margin: 0;
  padding: 0;
}
#site-footer footer .uk-container .uk-flex > div .cp {
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  #site-footer footer .uk-container .uk-flex > div .cp {
    font-size: 10px;
  }
}

.pagettl {
  background-color: #000;
  padding: 70px 20px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .pagettl {
    padding: 50px 20px;
  }
}
.pagettl h1 {
  text-align: center;
  font-size: 40px;
  line-height: 1.5;
  color: #fff;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .pagettl h1 {
    font-size: 25px;
  }
}

.tagNav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .tagNav {
    display: block;
  }
}
.tagNav li {
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .tagNav li {
    margin: 0 0 5px;
    padding: 0;
  }
}
.tagNav li a {
  display: block;
  color: #fff;
  padding: 0.7em 2em;
  line-height: 1.5;
  background-color: #000;
}

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

body, html {
  line-height: 2;
}
@media screen and (max-width: 768px) {
  body, html {
    font-size: 14px;
  }
}

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

/*============================
UIkit overwrite
============================*/
.uk-card-media-top img {
  width: 100%;
  height: auto;
}

.uk-card-default {
  color: #000;
}

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

/*============================
BOX Models
============================*/
/*============================
.flex
============================*/
/*============================
.sec
============================*/
/*============================
a
============================*/
a {
  color: #000;
}
a img {
  transition: 0.3s;
}

a:hover {
  color: inherit;
}
a:hover img {
  opacity: 0.7;
}

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

/*============================
table
============================*/
table.normalTbl {
  border-collapse: collapse;
  border-spacing: 0;
  border-top: 1px solid #ddd;
  border-right: 1px solid #ddd;
}
table.normalTbl th, table.normalTbl td {
  border-left: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 1em 1.5em;
  text-align: left;
}
table.normalTbl th {
  font-weight: normal;
  background: #f3f3f3;
}

/*============================
Headlines
============================*/
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: #000;
  font-family: "Noto Sans JP", sans-serif !important;
}

.ttl1 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  align-items: baseline;
  font-weight: bold;
  font-size: 42px;
  text-align: left;
  color: #000;
}
@media screen and (max-width: 768px) {
  .ttl1 {
    font-size: 30px;
  }
}
.ttl1 small {
  font-size: 0.6em;
}

.ttl2 {
  font-size: 35px;
  border-bottom: 1px solid #000;
  padding: 0 0 0.3em;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .ttl2 {
    font-size: 25px;
  }
}

.ttl3 {
  font-size: 27px;
  background-color: #777;
  color: #fff;
  padding: 0.5em 1em;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .ttl3 {
    font-size: 19px;
  }
}

.ttl4 {
  font-size: 20px;
  padding: 0em 1em;
  margin-bottom: 1.2em;
  margin: 2em 0 1.2em;
  border-left: 0.5em solid #999;
}
@media screen and (max-width: 768px) {
  .ttl4 {
    font-size: 16px;
  }
}

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

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