@charset "utf-8";



:root {
  --main-color: #444444;
  --font-ja: "Zen Kaku Gothic New", sans-serif;
  --font-ttl: "Zen Kurenaido", sans-serif;
  --font-en: "Albert Sans", sans-serif;
  --font-base-size: clamp(1.4rem, 2vw, 1.6rem);
}


/*====================================
リセット
===================================*/
*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}


/*====================================
スクロールスムース
===================================*/
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}


/*====================================
全体統一
===================================*/
body {
  color: var(--main-color);
  font-size: var(--font-base-size);
  font-family: var(--font-ja);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 1.5px;
  background-color: #fefefe;
  max-width: 100vw;
  touch-action: pan-x pan-y;
}


/*====================================
カーソルの設定
===================================*/
* {
  cursor: none;
}

.cursor span {
  height: 10px;
  width: 10px;
  border-radius: 100%;
  transform: translate(-50%, -50%);
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.cursor span.dot1 {
  background: rgba(98, 77, 112, 0.8);
  transition: width 0.2s, height 0.2s;
}

.cursor span.dot1.active {
  height: 50px;
  width: 50px;
  background: rgba(98, 77, 112, 0.3);
}

.cursor span.dot2 {
  height: 20px;
  width: 20px;
  border: solid 1px #624d70;
  transition: top 0.2s, left 0.2s, width 0.5s, height 0.5s;
  transition-timing-function: ease-out;
}

.cursor span.dot2.active {
  height: 80px;
  width: 80px;
}

/* ふわっと表示される設定（inview） */
.fadeIn_up {
  opacity: 0;
  transform: translate(0, 15%);
  transition: 1.8s;
}

.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}



/*====================================
ヘッダー（下層ページ用）
===================================*/
.header-logo img {
  width: 65%;
  max-width: 300px;
  height: auto;
}

.header-sub-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #a7a7a7;
  padding: 1.5rem 5rem;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 7rem;
}

.site-menu ul {
  display: flex;
  gap: 7rem;
  width: 100%;
  height: auto;
}

.site-menu ul li {
  font-family: var(--font-en);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
}

.site-menu ul li:hover {
  color: #7c606b;
}


.icon {
  display: flex;
  gap: 1rem;
}

.icon img {
  width: 30px;
  height: auto;
}


@media (max-width: 800px) {

  .header-right {
    display: none;
  }
}




/*====================================
ここからフッターの設定
===================================*/
.footer {
  padding: 5rem 10rem;
  background:
    radial-gradient(circle at 20% 80%, #f3e6d8 0%, transparent 60%),
    radial-gradient(circle at 70% 30%, #e8d6e6 0%, transparent 60%),
    radial-gradient(circle at 90% 20%, #d6e0f0 0%, transparent 70%),
    #f5f0eb;
}

.layout {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr;
  margin-bottom: 5rem;
}

.footer-navheader {
  font-weight: 600;
}

.footer-nav li {
  line-height: 2;
  position: relative;
}

.footer-nav li:hover {
  color: #835966;
}

.note {
  line-height: 1.5;
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.copyright {
  text-align: center;
}


/* ページトップへ戻る設定 */
#page-top {
  position: fixed;
  right: 35px;
  bottom: 55px;
  height: 50px;
  transform: rotate(90deg);
  padding: 0 0 0 45px;
  border-top: solid 1px;
}

#page-top::before {
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  left: 0px;
  width: 15px;
  border-top: solid 1px;
  transform: rotate(35deg);
  transform-origin: left top;
}





/* レスポンシブ対応 */
@media (max-width: 800px) {
  .sp {
    display: block;
  }

  .nobr {
    display: none;
  }

  .cursor span,
  .cursor span.dot2,
  .cursor span.dot1 {
    display: none;
  }

  .footer {
    padding: 3rem 4rem;
  }

  .footer-logo img {
    max-width: 80%
  }

  .layout {
    display: block;
  }

  .footer-email {
    width: 90%;
    height: 30px;
    margin-bottom: 10px;
  }

  .footer-submit {
    margin-bottom: 0px;
  }

  .footer-navheader {
    margin: 2rem 0 .5rem;
  }

  .note {
    text-align: center;
  }

  #page-top {
    right: 0px;
    height: 45px;
  }


  /* subヘッダー */
  .header-sub-inner {
    padding: 1.5rem 2rem;
  }

  .icon img {
    width: 50px;
  }
}