@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@100..900&display=swap");
.gold {
  color: #D2AF78;
}

.blue {
  color: #00AFC8;
}

.black {
  color: #3C3C3C;
}

.ivory {
  color: #FAF5EB;
}

.red {
  color: #cc0000;
}

body.fixed {
  overflow: hidden;
}

#site-header {
  padding: 23px 34px 0;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
}
@media screen and (max-width: 768px) {
  #site-header {
    display: block;
    height: 70px;
    padding: 17px 20px 0;
    background-color: #fff;
  }
}
#site-header #site-logo img {
  width: 299px;
  width: 337px;
}
@media screen and (max-width: 768px) {
  #site-header #site-logo img {
    width: 100%;
    max-width: 230px;
  }
}
#site-header .site-header-wrap {
  display: flex;
  justify-content: space-between;
}
#site-header #global-nav {
  display: block;
  padding-top: 7px;
}
@media screen and (max-width: 768px) {
  #site-header #global-nav {
    display: none;
    padding-top: 0;
    position: fixed;
    width: 100%;
    height: 100vh;
    left: 0;
    top: 70px;
    background: #FAF5EB;
    overflow-y: scroll;
    z-index: 9;
    /*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:not(.sns-nav) {
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  #site-header #global-nav ul:not(.sns-nav) {
    display: block;
    padding: 60px 0 0 0;
  }
}
#site-header #global-nav ul:not(.sns-nav) li {
  line-height: 1;
  padding: 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #site-header #global-nav ul:not(.sns-nav) li {
    margin-bottom: 30px;
  }
}
#site-header #global-nav ul:not(.sns-nav) li a {
  display: inline-block;
  text-decoration: none !important;
  transition: 0.3s;
}
#site-header #global-nav ul:not(.sns-nav) li a:hover {
  opacity: 0.7;
}
#site-header #global-nav ul:not(.sns-nav) li a strong {
  font-family: "Kumbh Sans", sans-serif !important;
  font-weight: bold;
  font-size: 17px;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  color: #00afc8;
}
@media screen and (max-width: 768px) {
  #site-header #global-nav ul:not(.sns-nav) li a strong {
    font-size: 25px;
  }
}
#site-header #global-nav ul:not(.sns-nav) li a small {
  display: block;
  font-family: "TazuganeGothicStdN-Bold" !important;
  font-size: 12px;
  line-height: 1;
  color: #3C3C3C;
  padding-top: 0.5em;
}
@media screen and (max-width: 768px) {
  #site-header #global-nav ul:not(.sns-nav) li a small {
    font-size: 14px;
    padding-top: 7px;
  }
}
#site-header #global-nav ul:not(.sns-nav) li:nth-child(even) a strong {
  color: #D2AF78;
}
#site-header #global-nav ul.sns-nav {
  display: none;
}
@media screen and (max-width: 768px) {
  #site-header #global-nav ul.sns-nav {
    display: flex;
    justify-content: center;
    gap: 27px;
    margin: 0;
    padding: 10px 0 0;
  }
  #site-header #global-nav ul.sns-nav li a img {
    width: auto;
    height: 26px;
  }
}
#site-header .menu-btn {
  display: none;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 70px;
  height: 70px;
  background: #00AFC8;
  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: 28px;
  height: 22px;
}
#site-header .menu-btn div i {
  display: block;
  width: 100%;
  height: 2px;
  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% - 1px);
}
#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(36deg);
}
#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(-36deg);
}

#site-footer {
  background-color: #FAF5EB;
}
#site-footer footer {
  padding: 80px 25px 40px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #site-footer footer {
    padding: 60px 25px 40px;
  }
}
#site-footer footer div ul.footer_bn {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  #site-footer footer div ul.footer_bn {
    gap: 20px;
    max-width: 310px;
    margin: auto;
  }
}
#site-footer footer div ul.footer_bn li {
  flex: 0 0 310px;
}
@media screen and (max-width: 768px) {
  #site-footer footer div ul.footer_bn li {
    flex: 0 0 100%;
  }
}
#site-footer footer div figure.footer_logo {
  margin: 55px auto 66px;
  width: 180px;
}
#site-footer footer div p.cp {
  font-family: "Kumbh Sans", sans-serif !important;
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 1;
  margin: 0;
}

.newslist {
  margin: 0;
  padding: 0;
}
.newslist * {
  margin: 0;
  padding: 0;
}
.newslist li {
  margin-bottom: 1em;
}
.newslist li a {
  display: flex;
  gap: 1em;
}

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

body,
html {
  height: 100%;
}

body {
  font-family: "TazuganeGothicStdN-Medium" !important;
  color: #3C3C3C;
}

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

main a {
  text-decoration: underline;
  color: inherit;
}
main a:hover {
  text-decoration: none;
  color: inherit;
}

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

/*============================
.uk-section
============================*/
.uk-section {
  padding-top: 40px;
  padding-bottom: 40px;
}

@media (min-width: 960px) {
  .uk-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
/*============================
.uk-container
============================*/
.uk-container {
  max-width: 1000px;
  max-width: 1166px;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 960px) {
  .uk-container {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 640px) {
  .uk-container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
/*============================
commingsoon
============================*/
.comingsoon {
  opacity: 0.3;
  pointer-events: none;
}

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

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

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

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

/*============================
table
============================*/
/*============================
Headlines
============================*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
}

.ttl1 {
  font-family: "Kumbh Sans", sans-serif !important;
  font-size: 80px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .ttl1 {
    font-size: 45px;
  }
}
.ttl1 small {
  font-family: "TazuganeGothicStdN-Bold" !important;
  display: block;
  color: #3C3C3C;
  font-size: 19px;
  letter-spacing: 0;
  padding-top: 0.6em;
}
@media screen and (max-width: 768px) {
  .ttl1 small {
    font-size: 16px;
  }
}

.ttl2 {
  font-family: "Kumbh Sans", sans-serif !important;
  font-size: 60px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .ttl2 {
    font-size: 35px;
  }
}
.ttl2 small {
  font-family: "TazuganeGothicStdN-Bold" !important;
  display: block;
  color: #3C3C3C;
  font-size: 18px;
  line-height: 1.8;
  margin-top: 0.5em;
}
@media screen and (max-width: 768px) {
  .ttl2 small {
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 2;
  }
}

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