@charset "UTF-8";

/*---------------------------------------------
✅背景
 → #fff

✅コンテンツ枠・ボタンの背景
→ #EAF2F6（淡いブルーグレー系）
   #E6DECA（柔らかいベージュ系）

✅文字色
#111111
   
✅矢印やタブ
→ #9A9085（スモーキーブラウン）/#8C92A1（スモーキーグレー）

✅差し色
→ #A992B0（ラベンダーグレー）#D6C4A9（シャンパンゴールド）
  ★見出し・ボーダー → #A992B0（ラベンダー）
  ★ちょっとした装飾（アイコン・下線など） → #D6C4A9（シャンパンゴールド）

✅見出し
→#8F7C6C（クラシックベージュブラウン 🏛️）
  サブ：#A992B0（ラベンダーグレー）
✅liの下などの区切り線
→#ECEAEE（ほんのり繊細な境界線・超ナチュラル＆洗練で主張控えめ）
  #E0DEE5（ほんのり濃いめで視認性UP・境界がわかりやすくなる）

✅CTA
→background: linear-gradient(45deg, #C4A983, #A992B0);
✅ CTAホバー時
→ #A992B0（ラベンダーグレー）

✅強調色
→ #5E4B60（ディープラベンダー） ← これを少し深めにして、スタイリッシュ感を残す！


---------------------------------------------*/
* {
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", "Noto Sans JP", sans-serif;
  color: #111111;
  background: #fff;
  font-size: 1.5rem;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.04em;
  line-height: 2;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

a {
  text-decoration: none;
  color: #111111;
  transition: all 1s ease;
}

a:hover {
  color: #A992B0;
}

img,
picture {
  display: block;
  width: 100%;
}

p {
  text-align: justify;
  word-break: break-all;
}

.mincho {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

.font-pink {
  color: #b0546a;
}

.font-en {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-style: normal;
}

.link-btn {
  width: 100%;
}

.link-btn>a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 280px;
  height: 60px;
  padding: 0 30px;
  box-sizing: border-box;
  line-height: 1.5;
  border-bottom: 1px solid #3e3e3e;
}

.link-btn__inner {
  display: flex;
  flex-direction: column;
}

.link-btn__inner>span {
  font-size: 1.4rem;
}

.link-btn>a>img {
  width: 18px;
}

@keyframes rotation {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.blink-arrow {
  width: 100%;
  height: 30px;
  margin: 5px 0 30px 0;
  position: relative;
}

.blink-arrow span {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 30px;
  height: 30px;
  border-top: 30px solid #fff;
  border-right: 30px solid transparent;
  border-left: 30px solid transparent;
  border-bottom: 30px solid transparent;
  -webkit-animation: blink 2s infinite;
  animation: blink 2s infinite;
  opacity: 0;
  box-sizing: border-box;
}

@keyframes blink {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.fadeIn {
  opacity: 0;
  transition: 1s;
}

.is-fadeIn {
  opacity: 1;
}

.fadeInUP {
  opacity: 0;
  transform: translate(0, 50px);
  transition: 1.5s;
}

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

.fadeInScale {
  transform: scale(.9);
  opacity: 0;
  transition: 1.5s;
}

.is-fadeInScale {
  transform: scale(1);
  opacity: 1;
}

main {
  overflow: hidden;
}

/*----------------------------------------------------
  loading
----------------------------------------------------*/
.loading {
  width: 100vw;
  height: 100vh;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
}

.loading img {
  width: 50%;
  max-width: 480px;
  margin-left: 7.5%;
}

/*----------------------------------------------------
  heading
----------------------------------------------------*/
#heading {
  width: 100%;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 2;
}

#heading h1,
.header01-title {
  width: 90%;
  max-width: 1280px;
  margin: 0 auto;
  text-align: right;
  font-size: 1rem;
  padding: 5px 0;
  position: relative;
}

#heading>h1 br {
  display: none;
}

/*----------------------------------------------------
  header
----------------------------------------------------*/
header {
  width: 100%;
  height: auto;
}

#header01 {
  width: 100%;
  height: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  letter-spacing: .05em;
  box-sizing: border-box;
  transition: 1s cubic-bezier(.4, 0, .2, 1);
}

.srcoll #header01 {
  background: #fff;
  transition: 1s cubic-bezier(.4, 0, .2, 1);
}

.head-animation {
  transform: translateY(-100%);
}

.global-navWrap {
  width: 100%;
  height: 80px;
  transition: 1s cubic-bezier(.4, 0, .2, 1);
  position: relative;
}

.global-nav {
  width: 90%;
  height: 100%;
  max-width: 1280px;
  padding: 0 20px;
  box-sizing: border-box;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.scroll .global-navWrap {
  background: rgba(255, 255, 255, .8);
}

.global-nav__logo {
  width: auto;
  height: 38px;
}

.global-nav__logo>a {
  display: block;
  width: auto;
  height: 100%;
}

.global-nav__logo>a>img {
  display: block;
  width: auto;
  height: 100%;
}

.global-nav__logo-sp {
  display: none;
}

#navigation {
  display: flex;
}

nav {
  width: max-content;
  height: auto;
}

nav>ul {
  display: flex;
  align-items: center;
  list-style: none;
  padding-left: 0;
}

nav>ul>li {
  height: 80px;
  letter-spacing: 0;
}

nav>ul>li>a:not(.nav-contact > a) {
  height: 100%;
  line-height: 1.3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 14px;
  box-sizing: border-box;
  font-size: 1.2rem;
}

nav>ul>li>a>span {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 1.7rem;
}

.nav-contact {
  width: 220px;
  height: 56px;
  margin-left: 40px;
}

.nav-contact>a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(45deg, #C4A983, #A992B0);
  color: #fff;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
}

.nav-contact>a>picture,
.nav-contact>a img {
  width: 32px;
  margin-right: 8px;
}

.nav-contact__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
}

.nav-contact__inner-main {
  font-size: 1.4rem;
  font-weight: bold;
}

.nav-contact__inner-sub {
  font-size: 1.4rem;
}

/*----------------------------------------------------
  #nav-toggle
----------------------------------------------------*/
#nav-toggle {
  display: none;
  position: fixed;
  top: 0;
  right: 5%;
  width: 70px;
  height: 70px;
  z-index: 1003;
  cursor: pointer;
}

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}

.menu-trigger {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.menu-trigger span {
  position: absolute;
  left: 50%;
  width: 32px;
  height: 3px;
  transform: translate(-50%, 0);
  background: #8F7C6C;
  border-radius: 2px;
}

.scroll .menu-trigger span {
  background: #8F7C6C;
}

.menu-trigger span:nth-of-type(1) {
  top: 22px;
}

.menu-trigger span:nth-of-type(2) {
  position: absolute;
  right: 0;
  top: 32px;
}

.menu-trigger span:nth-of-type(3) {
  top: 42px;
}

.menu-trigger.active span {
  position: absolute;
  left: 50%;
  background: #8F7C6C;
}

.menu-trigger.active span:nth-of-type(1) {
  top: 8px;
  -webkit-transform: translateY(20px) rotate(-45deg);
  transform: translate(-50%, 20px) rotate(-45deg);
}

.menu-trigger.active span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  -webkit-animation: active-menu-bar .8s forwards;
  animation: active-menu-bar02 .8s forwards;
}

@-webkit-keyframes active-menu-bar {
  100% {
    height: 0;
  }
}

@keyframes active-menu-bar {
  100% {
    height: 0;
  }
}

.menu-trigger.active span:nth-of-type(3) {
  top: 48px;
  -webkit-transform: translateY(-20px) rotate(45deg);
  transform: translate(-50%, -20px) rotate(45deg);
}

/*------------------------------------
parallax
------------------------------------*/
#parallax {
  width: 100%;
  height: auto;
  position: relative;
}

.parallax {
  overflow: hidden;
  width: 100%;
  height: auto;
  position: relative;
}

.parallax::before {
  display: block;
  content: '';
  width: 100%;
  height: 0;
  padding-top: 35%;
}

.parallax::after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgb(214, 212, 169) 30%, rgb(214, 196, 169) 100%);
  position: absolute;
  top: 0;
  left: 0;
  opacity: .4;
}

.parallax-img {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.parallax-img picture,
.parallax-img img {
  display: block;
  height: 100%;
  object-fit: cover;
}

.parallax-text {
  width: 35%;
  height: auto;
  position: absolute;
  top: 55%;
  left: 52.5%;
  transform: translate(-50%, -50%);
  mix-blend-mode: overlay;
  z-index: 1;
}

/*------------------------------------
footer
------------------------------------*/
.footer01 {
  width: 100%;
  height: auto;
  position: relative;
  background: #9A9085;
  color: #fff;
}

.footer01 a {
  color: #fff;
}

.footer01-body {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 0;
}

.footer-col {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.footer-logo {
  width: 35%;
  display: flex;
  flex-direction: column;
}

.footer-logo>h2 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-weight: 700;
  padding-left: 15px;
  box-sizing: border-box;
}

.footer-nav {
  width: 60%;
}

.footer-nav>ul {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  padding-left: 0;
  margin-bottom: 14px;
}

.footer-nav>ul>li {
  margin-left: 20px;
}

.footer-nav>ul>li>a {
  font-size: 1.8rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-style: normal;
}

.footer-nav>ul>li>a>img {
  width: 26px;
  height: auto;
}

.footer-linkWrap {
  display: flex;
  justify-content: flex-end;
}

.footer-link {
  width: 260px;
  margin-left: 10px;
}

.footer-link>a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  background: rgba(0, 0, 0, .2);
  color: #fff;
  border-radius: 6px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.footer-link>a>img {
  width: 36px;
  margin-right: 10px;
}

.footer-link__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.4;
  font-size: 1.4rem;
}

.footer-bottom {
  padding: 10px 0;
}

.copyright {
  width: 90%;
  margin: 0 auto;
  text-align: center;
  font-size: 1.2rem;
}

@media screen and (max-width: 1360px) {}

@media screen and (max-width: 1280px) {
  html {
    font-size: calc(100vw/128);
  }
}

@media screen and (max-width: 1220px) {}

@media screen and (max-width: 1024px) {
  html {
    font-size: calc(100vw/102.4);
  }

  #header01 {
    position: fixed;
    z-index: 1001;
  }

  .global-navWrap {
    width: 100%;
    height: 70px;
    max-width: initial;
    padding-left: 0;
  }

  .global-nav {
    height: 70px;
    justify-content: space-between;
    box-sizing: border-box;
  }

  .global-nav__logo {
    width: 100%;
    margin-left: 0;
    margin-right: 10px;
  }

  .global-nav__logo a img {
    margin: 0 auto;
  }

  #nav-toggle {
    display: block;
  }

  /*-------------------------------------------------
    toggle オーバーレイ
  -------------------------------------------------*/
  #navigation {
    width: 100%;
    max-width: initial;
    height: 100vh;
  }

  .overlay {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1003;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    padding: 0;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transition: .4s;
  }

  .overlay.is-open {
    width: 100%;
    height: auto;
    opacity: 1;
    visibility: visible;
  }

  .navigation-inner {
    width: 50%;
    background: rgba(255, 255, 255, .8);
    backdrop-filter: blur(5px);
    padding: 100px 50px;
    box-sizing: border-box;
    margin-left: auto;
    overflow-y: scroll;
  }

  .navigation-inner::-webkit-scrollbar {
    display: none;
  }

  .global-nav__logo-sp {
    display: block;
    width: 90%;
    margin: 0 auto;
  }

  nav {
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    margin-bottom: 50px;
  }

  nav>ul {
    width: 100%;
    max-width: 520px;
    height: auto;
    margin: 0 auto;
    flex-direction: column;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
  }

  nav>ul>li {
    width: 100%;
    height: auto;
    padding: 0 10px;
    box-sizing: border-box;
  }

  nav>ul>li:not(:first-of-type):not(.nav-contact) {
    border-top: 1px dashed #ccc;
  }

  nav>ul>li>a:not(.nav-contact > a) {
    height: 80px;
    align-items: stretch;
  }

  .nav-contact {
    width: 100%;
    height: 80px;
    border-bottom: none;
    margin-top: 20px;
    margin-left: 0;
  }

  /*---footer---*/
  .footer-info {
    width: 75%;
  }
}

@media screen and (max-width:896px) {
  html {
    font-size: calc(100vw/89.6);
  }

  .navigation-inner {
    width: 60%;
  }

  /*---footer---*/
  .footer-col {
    flex-direction: column;
  }

  .footer-logo {
    width: 50%;
    margin-bottom: 30px;
  }

  .footer-nav {
    width: auto;
  }

  .footer-nav>ul {
    justify-content: center;
  }

  .footer-linkWrap {
    justify-content: space-between;
    margin-top: 30px;
  }

}

@media screen and (max-width:786px) {
  html {
    font-size: calc(100vw/78.6);
  }

  /*---footer---*/
  .footer-logo {
    width: 60%;
    margin-bottom: 30px;
  }
}

@media screen and (max-width:680px) {
  html {
    font-size: calc(100vw/68);
  }

  /*---header---*/
  .navigation-inner {
    width: 70%;
  }

  /*---parallax---*/
  .parallax::before {
    padding-top: 100%;
  }

  .parallax-text {
    width: 70%;
  }

  /*---footer---*/
  .footer-logo {
    width: 70%;
    margin-bottom: 30px;
  }
}

@media screen and (max-width:480px) {
  html {
    font-size: 62.5%;
  }

  .loading>img {
    width: 70%;
    max-width: initial;
  }

  #heading>h1,
  .header01-title {
    font-weight: normal;
  }

  #heading>h1 br,
  .header01-title br {
    display: block;
  }

  .link-btn>a {
    width: 100%;
  }

  /*---header---*/
  .global-nav__logo a {
    height: 36px;
  }

  #nav-toggle {
    right: 2.5%;
  }

  nav {
    width: 100%;
  }

  .navigation-inner {
    width: 100%;
    padding: 80px 7.5%;
  }

  nav>ul>li>a:not(.nav-contact > a) {
    height: 60px;
    padding: 0 10px;
  }

  /*---footer---*/
  .footer01-body {
    width: 85%;
  }

  .footer-col {
    flex-direction: column;
  }

  .footer-logo {
    width: 100%;
    align-items: center;
  }

  .footer-logo>h2 {
    font-weight: 400;
    font-size: 1.2rem;
    padding-left: 0;
  }

  .footer-logo>img {
    margin-left: 10%;
  }

  .footer-nav {
    width: 100%;
  }

  .footer-nav>ul {
    flex-wrap: wrap;
  }

  .footer-nav>ul>li {
    margin: 0 10px;
  }

  .footer-linkWrap {
    flex-direction: column;
  }

  .footer-link {
    width: 100%;
    margin-left: 0;
  }

  .footer-link:nth-of-type(2) {
    margin-top: 8px;
  }

}