@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?&family=Noto+Sans+JP:wght@400;500&family=Noto+Serif+JP:wght@400;500;600;700&family=Beau+Rivage&display=swap");
:root {
  --bg: #333;
  --text: #fff;
  --main: #A09152;
  --sub: #1B1B1B;
  --ls: 0.1em;
  --lh: 1.8;
}

* {
  letter-spacing: var(--ls);
  line-height: var(--lh);
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background-color: var(--bg);
  color: var(--text);
  font-size: 1rem;
  font-family: "Noto Serif JP", "Times New Roman", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
body::-webkit-scrollbar {
  display: none;
}

main {
  min-height: calc(100vh - 791px);
}
@media screen and (min-width: 768px) {
  main {
    min-height: calc(100vh - 478px);
  }
}
@media screen and (min-width: 1024px) {
  main {
    min-height: calc(100vh - 304px);
  }
}
@media screen and (min-width: 1200px) {
  main {
    min-height: calc(100vh - 337px);
  }
}
@media screen and (min-width: 1440px) {
  main {
    min-height: calc(100vh - 361px);
  }
}

section {
  position: relative;
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  text-decoration: none;
  cursor: pointer;
  transition: 0.5s;
}
a:hover {
  outline-width: 0;
  text-decoration: none;
  opacity: 0.7;
}
a:active {
  opacity: 1;
}
a.disabled {
  pointer-events: none;
}
@media screen and (min-width: 1024px) {
  a.pcDisabled {
    pointer-events: none !important;
  }
}

section {
  position: relative;
}

img {
  width: auto;
  max-width: 100%;
  height: auto;
  border-style: none;
  display: inline-block;
  object-fit: contain;
  vertical-align: bottom;
}

strong {
  font-weight: 700;
}

@media screen and (min-width: 576px) {
  .disp_xs {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .disp_tab, .disp_pc, .disp_notsp {
    display: none !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .disp_sp, .disp_pc {
    display: none !important;
  }
}
@media screen and (min-width: 1024px) {
  .disp_sp, .disp_tab, .disp_notpc {
    display: none !important;
  }
}

.block {
  width: 100%;
  display: block;
}

.en {
  font-family: "Beau Rivage", cursive;
}

.js-collapse {
  cursor: pointer;
}

/* ============= common class ================ */
.inner {
  width: calc(100% - 40px);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1200px;
  }
}

.ctaBtn {
  padding: 8px 6.5px;
  border: 1px solid transparent;
  border-radius: 6px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.ctaBtn--demo {
  background-color: var(--main);
}
.ctaBtn--contact {
  background-color: var(--sub);
}
.ctaBtn--dl {
  background-color: #fff;
  color: var(--main);
}
.ctaBtn:hover {
  border-color: var(--main);
  background-color: var(--sub);
  color: var(--main);
  opacity: 1;
}
.ctaBtn__mainTxt {
  margin-bottom: 0.1429em;
  font-size: 87.5%;
  font-weight: 600;
  --lh: 1;
}
.ctaBtn__subTxt {
  font-size: 57.14%;
  font-family: "Beau Rivage", cursive;
  --lh: 1;
}
.ctaBtn__introTxt {
  margin-bottom: 0.5em;
  font-size: 71.43%;
  line-height: 1.4;
  text-align: center;
}

.moreLink {
  width: 110px;
  padding-bottom: 5px;
  text-align: center;
  position: relative;
}
.moreLink::after {
  content: "";
  width: 100%;
  height: 10px;
  background: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="111" height="12" viewBox="0 0 111 12" fill="none"><path d="M0 11.0859H110L90.9935 1.08594" stroke="%23fff"/></svg>') right bottom/contain no-repeat;
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  transition: 0.5s;
}
.moreLink > span {
  font-size: 16px;
  --lh: 1;
}
.moreLink > span::first-letter {
  font-size: 24px;
}
.moreLink:hover {
  text-shadow: 0px 0px 5px #A09152;
  opacity: 1;
}
.moreLink:hover::after {
  background-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="111" height="12" viewBox="0 0 111 12" fill="none"><path d="M0 11.0859H110L90.9935 1.08594" stroke="%23A09152"/></svg>');
  transform: translateX(0.5em);
}
@media screen and (min-width: 768px) {
  .moreLink {
    width: 11.575em;
    font-size: 12px;
  }
  .moreLink::after {
    height: 1em;
  }
  .moreLink > span {
    font-size: 160%;
  }
}
@media screen and (min-width: 1024px) {
  .moreLink {
    font-size: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .moreLink {
    font-size: 16px;
  }
}
@media screen and (min-width: 1600px) {
  .moreLink {
    font-size: 18px;
  }
}

/* ============= header ================ */
.header {
  width: 100%;
  height: 60px;
  background-color: rgba(27, 27, 27, 0.5);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  transition: 0.5s;
}
@media screen and (max-width: 1023px) {
  .header:has(.header__navWrap.visible) {
    background-color: rgba(27, 27, 27, 0.9);
  }
}
@media screen and (min-width: 1024px) {
  .header {
    height: 65px;
  }
}
.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  grid-gap: 1.25em;
}
@media screen and (min-width: 768px) {
  .header__inner {
    max-width: 1440px;
  }
}
@media screen and (min-width: 1024px) {
  .header__inner {
    grid-gap: 0.625em;
  }
}
@media screen and (min-width: 1200px) {
  .header__inner {
    grid-gap: 1.25em;
  }
}
.header__logo {
  width: 60px;
  flex-shrink: 0;
  position: relative;
}
.header__logo_link {
  width: 100%;
  display: inline-block;
}
.header__logo_img {
  width: 100%;
  object-fit: contain;
}
.header__logo_txt {
  opacity: 0;
  position: absolute;
}
@media screen and (min-width: 1024px) {
  .header__logo {
    width: 70px;
  }
}
.header__tel {
  color: var(--main);
  font-size: 87.5%;
  font-weight: 500;
  font-style: italic;
  text-shadow: 0px 0px 3px rgba(51, 51, 51, 0.8);
  flex-shrink: 0;
}
@media screen and (min-width: 1440px) {
  .header__tel {
    font-size: 16px;
  }
}
.header__navWrap {
  display: flex;
  transition: opacity 0.5s ease;
}
@media screen and (max-width: 1023px) {
  .header__navWrap {
    width: 100%;
    height: calc(100vh - 60px - 40px);
    padding: 50px 20px;
    background-color: rgba(27, 27, 27, 0.9);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    grid-gap: 50px;
    position: fixed;
    top: 60px;
    left: 0;
    overflow-y: scroll;
    opacity: 0;
    pointer-events: none;
  }
  .header__navWrap.visible {
    opacity: 1;
    pointer-events: auto;
  }
}
@media screen and (min-width: 1024px) {
  .header__navWrap {
    margin-left: auto;
    font-size: 12px;
    align-items: center;
    justify-content: flex-end;
    grid-gap: 1em;
  }
}
@media screen and (min-width: 1200px) {
  .header__navWrap {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440px) {
  .header__navWrap {
    font-size: 16px;
  }
}
@media screen and (min-width: 1440px) {
  .header__navWrap {
    grid-gap: 2.5em;
  }
}
.header__gnav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-gap: 1.875em;
}
@media screen and (max-width: 1023px) {
  .header__gnav {
    width: 100%;
    max-width: 11.25em;
  }
}
@media screen and (min-width: 1024px) {
  .header__gnav {
    --ls: 0.05em;
    flex-direction: row;
    align-items: center;
    grid-gap: 0.8333em;
  }
}
@media screen and (min-width: 1200px) {
  .header__gnav {
    font-size: 100%;
    grid-gap: 1em;
  }
}
@media screen and (min-width: 1440px) {
  .header__gnav {
    --ls: 0.1em;
    grid-gap: 1.875em;
  }
}
.header__btnsWrap {
  display: grid;
  grid-gap: 1.25em;
}
.header__btnsWrap .ctaBtn {
  width: 100%;
}
@media screen and (max-width: 1023px) {
  .header__btnsWrap {
    width: 100%;
    max-width: 11.25em;
  }
}
@media screen and (min-width: 1024px) {
  .header__btnsWrap {
    width: 26.25em;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 0.625em;
  }
}
.header__spToggler {
  width: 40px;
  height: 40px;
  padding: 0;
  margin-left: auto;
  border: 1px solid var(--text);
  border-radius: 3px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  grid-gap: 6px;
  flex-shrink: 0;
  position: relative;
}
.header__spToggler:focus {
  outline: 0;
  box-shadow: none;
}
.header__spToggler span {
  width: 20px;
  height: 1px;
  margin: 0 auto;
  background: var(--text);
  display: block;
  transition: 0.5s;
}
.header__spToggler.open span {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(45deg);
}
.header__spToggler.open span + span {
  transform: rotate(-45deg);
}
.header__spToggler.open span + span + span {
  transform: scale(0);
}

/* ============= footer ================ */
.footer {
  width: 100%;
  padding: 60px 0 100px;
  border-top: 1px solid var(--main);
  background-color: var(--sub);
  font-size: 14px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .footer {
    font-size: 13px;
  }
}
@media screen and (min-width: 1024px) {
  .footer {
    padding: 60px 0;
    font-size: 15px;
  }
}
@media screen and (min-width: 1200px) {
  .footer {
    font-size: 16px;
  }
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 5em;
}
.footer__infoBlk {
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 2.8571em;
}
@media screen and (min-width: 1024px) {
  .footer__infoBlk {
    flex-direction: row;
    justify-content: space-between;
    grid-gap: 2.5em;
  }
}
.footer__infoBlk_logo {
  width: 13.8571em;
}
@media screen and (min-width: 1024px) {
  .footer__infoBlk_logo {
    width: 8.125em;
    flex-shrink: 0;
  }
}
@media screen and (min-width: 1200px) {
  .footer__infoBlk_logo {
    width: 10em;
  }
}
@media screen and (min-width: 1440px) {
  .footer__infoBlk_logo {
    width: 12.125em;
  }
}
.footer__infoBlk_navWrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 2.1429em;
}
@media screen and (min-width: 768px) {
  .footer__infoBlk_navWrap {
    grid-gap: 1em;
  }
}
@media screen and (min-width: 1024px) {
  .footer__infoBlk_navWrap {
    align-items: flex-start;
    grid-gap: 1.25em;
  }
}
.footer__infoBlk_nav1 {
  width: 100%;
  max-width: 400px;
  font-size: 114.29%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-gap: 10px;
}
@media screen and (min-width: 768px) {
  .footer__infoBlk_nav1 {
    width: auto;
    max-width: 100%;
    font-size: 112.5%;
    flex-direction: row;
    align-items: center;
    grid-gap: 2.1875em;
  }
}
.footer__infoBlk_nav2 {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-gap: 1.1429em;
}
@media screen and (max-width: 767px) {
  .footer__infoBlk_nav2 > li {
    min-width: calc((100% - 16px) / 2);
  }
}
@media screen and (min-width: 768px) {
  .footer__infoBlk_nav2 {
    width: auto;
    max-width: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    grid-gap: 1em;
  }
}
@media screen and (min-width: 1200px) {
  .footer__infoBlk_nav2 {
    grid-gap: 2.1875em;
  }
}
.footer__copyright {
  font-size: 87.5%;
  text-align: center;
  --ls: 0.2em;
}
.footer__cta {
  width: 100%;
  height: 40px;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1041;
}
.footer__cta_list {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.footer__cta_list .ctaBtn {
  width: 100%;
  height: 100%;
  border-radius: 0;
}
@media screen and (max-width: 374px) {
  .footer__cta_list .ctaBtn {
    font-size: 80%;
    justify-content: center;
  }
}