@charset "UTF-8";
html,
body {
  overflow-x: hidden;
  background: radial-gradient(circle at left bottom, rgba(245, 220, 170, 0.35), transparent 70%), #ece7e4;
}

.bg-leaves {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

#container {
  position: relative;
  z-index: 2;
}

.bg-leaf {
  position: absolute;
}
.bg-leaf img {
  display: block;
  width: 100%;
  filter: blur(0.8px);
  transform-origin: center center;
  animation: leafFloat 16s ease-in-out infinite;
  will-change: transform;
}
.bg-leaf--left {
  width: 50%;
  bottom: 0;
  left: -5%;
}
.bg-leaf--left img {
  animation-duration: 17s;
  filter: blur(2px);
  animation: leafSwing 14s ease-in-out infinite;
}
.bg-leaf--right {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.bg-leaf--right img {
  animation: none;
  height: 100%;
}
.bg-leaf--bottom {
  width: 40%;
  right: -10%;
  top: -10%;
  transform: scaleX(-1);
}
.bg-leaf--bottom img {
  animation-duration: 17s;
  opacity: 0.8;
  filter: blur(6px);
  animation: leafSwing 14s ease-in-out infinite;
}

@keyframes leafFloat {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
  25% {
    transform: translate3d(0, -6px, 0) rotate(0.8deg) scale(1.01);
  }
  50% {
    transform: translate3d(0, -12px, 0) rotate(0deg) scale(1.02);
  }
  75% {
    transform: translate3d(0, -6px, 0) rotate(-0.8deg) scale(1.01);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
}
@keyframes leafSwing {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
  15% {
    transform: translate3d(10px, -15px, 0) rotate(3deg) scale(1.02);
  }
  35% {
    transform: translate3d(-8px, -35px, 0) rotate(-2deg) scale(1.03);
  }
  50% {
    transform: translate3d(15px, -55px, 0) rotate(4deg) scale(1.04);
  }
  70% {
    transform: translate3d(-10px, -30px, 0) rotate(-3deg) scale(1.02);
  }
  85% {
    transform: translate3d(8px, -10px, 0) rotate(2deg) scale(1.01);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
}
@media (max-width: 960px) {
  .bg-leaf {
    opacity: 0.15;
  }
  .bg-leaf--left {
    width: 280px;
    left: -100px;
  }
  .bg-leaf--right {
    width: 240px;
    right: -70px;
  }
  .bg-leaf--bottom {
    width: 180px;
    left: -60px;
  }
}
@media (max-width: 480px) {
  .bg-leaf {
    opacity: 0.12;
  }
  .bg-leaf img {
    filter: blur(0.5px);
  }
  .bg-leaf--left {
    width: 180px;
    left: -70px;
    top: 8%;
  }
  .bg-leaf--right {
    width: 150px;
    right: -50px;
    bottom: 10%;
  }
  .bg-leaf--bottom {
    width: 120px;
    left: -40px;
    bottom: 20%;
  }
}
.floating-contact {
  position: fixed;
  right: 2rem;
  bottom: 0;
  z-index: 999;
  display: flex;
  gap: 0.5rem;
}
@media (max-width: 480px) {
  .floating-contact {
    right: 0;
    width: 100%;
  }
}

.floating-contact .item {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 220px;
  padding: 0.75rem 1.5rem;
  border-radius: 30px 30px 0 0;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  transition: 0.3s;
}
@media (max-width: 480px) {
  .floating-contact .item {
    width: calc(50% - 0.25rem);
  }
}
@media (max-width: 480px) {
  .floating-contact .item:first-child {
    border-top-right-radius: 0;
  }
}
@media (max-width: 480px) {
  .floating-contact .item:nth-child(2) {
    display: none;
  }
}
@media (max-width: 480px) {
  .floating-contact .item:last-child {
    border-top-left-radius: 0;
  }
}
.floating-contact .item img {
  width: 20%;
  flex-shrink: 0;
}
.floating-contact .item span {
  font-weight: 700;
}
.floating-contact .item small {
  display: block;
}

.line {
  background: linear-gradient(90deg, #17B5D8, #6AD66E);
}
.line span {
  color: #fff;
}

.contact {
  background: linear-gradient(90deg, #FFA34B, #FF7D38);
}
.contact span {
  color: #fff;
}

.tel {
  background: linear-gradient(90deg, #FFA34B, #FF7D38);
}
.tel span {
  color: #fff;
}
.tel small {
  font-size: 0.65rem;
  color: #fff;
  line-height: 1;
}

header {
  font-family: "Shippori Mincho";
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  padding: 0.5rem 0;
  transition: 0.4s;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
header.is-scrolled {
  background: rgba(237, 232, 227, 0.3);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}
@media (max-width: 1200px) {
  header {
    padding: 0.5rem 0;
  }
}

header nav {
  max-width: 1950px;
  padding: 0 8% 0 2.5rem;
  margin: 0 auto;
}
@media (max-width: 480px) {
  header nav {
    padding: 0 1.6rem;
  }
}

/*========= ぼかしのためのCSS ===============*/
.mainblur {
  filter: blur(8px);
}

.nav-text {
  font-size: 10px;
}

.header-logo {
  width: 21.4285714286vw;
}
@media (max-width: 480px) {
  .header-logo {
    display: none;
  }
}

.header-logo02 {
  display: none;
  width: 12vw;
}
@media (max-width: 480px) {
  .header-logo02 {
    display: block;
    width: 50%;
  }
}

.nav--inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-nav__wrapper {
  display: flex;
  align-items: center;
}

@media (max-width: 1200px) {
  .header-nav__wrapper {
    position: relative;
    z-index: 0;
  }
}
.header-nav__sp-menu {
  display: none;
  position: relative;
  z-index: 0;
  width: 50px;
  height: 50px;
  cursor: pointer;
}

@media (max-width: 1200px) {
  .header-nav__sp-menu {
    display: block;
  }
}
.header-nav__sp-menu span {
  pointer-events: none;
}

.header-nav__sp-menu::before,
.header-nav__sp-menu span::before,
.header-nav__sp-menu::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  width: 30px;
  height: 4px;
  background-color: #393939;
  border-radius: 10px;
  transition: all 0.2s;
}

.header-nav__sp-menu::before {
  top: 14px;
  transform: translate(-50%, -2px);
}

.header-nav__sp-menu span::before {
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
  pointer-events: none;
}

.header-nav__sp-menu::after {
  bottom: 14px;
  transform: translate(-50%, 2px);
}

.header-nav__sp-menu.open::before {
  top: 50%;
  transform: translate(-50%, -50%) rotate(135deg);
}

.header-nav__sp-menu.open span::before {
  opacity: 0;
}

.header-nav__sp-menu.open::after {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-135deg);
}

@media (max-width: 1200px) {
  .header-nav--wrapper {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    position: absolute;
    right: -1.6rem;
    bottom: 0;
    transform: translate(0, 100%);
    width: 100vw;
    height: 100vh;
  }
  .header-nav--wrapper.open {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 100%);
    bottom: -0.5rem;
  }
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

@media (max-width: 1200px) {
  .header-nav.header-nav--main {
    display: block;
    width: 100%;
    padding: 4rem 1.6rem;
    background: rgba(255, 255, 255, 0.3);
  }
}
@media (max-width: 768px) {
  .header-nav.header-nav--main {
    width: 100%;
    height: 100%;
  }
  .header-nav.header-nav--sub {
    display: none;
  }
}
.header-nav .header-nav__item {
  text-align: center;
  position: relative;
}

@media (max-width: 1200px) {
  .header-nav.header-nav--main .header-nav__item {
    margin-right: 0;
    border-bottom: solid 1px #aaaaaa;
    width: 100%;
  }
}
.header-nav .header-nav__item:hover .header-nav__item--main-title,
.header-nav .header-nav__item:hover .header-nav__item--sub-title {
  color: #7f9066;
}

.header-nav .header-nav__item a {
  line-height: 1;
  display: block;
  padding: 1.25rem 0;
}

@media (max-width: 1200px) {
  .header-nav.header-nav--main .header-nav__item a {
    display: flex;
    align-items: baseline;
    padding: 1.5rem 1rem;
  }
}
.header-nav .header-nav__item .header-nav__item--contact a {
  padding: 1.75rem 8px;
}

.header-nav .header-nav__item--main-title,
.header-nav .header-nav__item--sub-title {
  font-family: "Shippori Mincho";
  line-height: 1;
  transition: 0.2s;
  transition: 0.3s;
}

.header-nav .header-nav__item--main-title.is-white {
  color: #fff;
}

.header-nav .header-nav__item--main-title.is-black {
  color: #000;
}

.header-nav .header-nav__item--main-title {
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  font-size: 1vw;
}

.header-nav .header-nav__item--sub-title {
  font-size: 0.5rem;
}

@media (max-width: 1200px) {
  .header-nav .header-nav__item--main-title,
  .header-nav .header-nav__item--sub-title {
    font-weight: 700;
  }
  .header-nav .header-nav__item--main-title {
    order: 2;
    margin-bottom: 0;
    font-size: 0.75rem;
  }
  .header-nav .header-nav__item--sub-title {
    order: 1;
    font-size: 18px;
    margin-right: 1rem;
  }
}/*# sourceMappingURL=header.css.map */