@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-overflow-scrolling: none;
  overscroll-behavior: none;
}

html,
body {
  overflow: hidden;
  height: 100%;
  overscroll-behavior: none;
  overscroll-behavior-y: none;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}

.danae_h_px {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  min-height: -webkit-fill-available;
}

#danae_container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

#danae_container.no-transition {
  transition: none !important;
}

.pg-page {
  position: absolute !important;
  left: 0 !important;
  width: 100%;
  height: 100%;
  opacity: 1;
  visibility: visible;
}

.pg-page > section,
.pg-page > footer {
  height: 100%;
}

/* ボタンやインタラクティブ要素を除外 */
.danae_drawer_open,
.swiper-pagination,
.swiper-button-next,
.swiper-button-prev,
button,
a,
input,
select,
textarea {
  touch-action: auto !important;
  -webkit-touch-callout: default !important;
  -webkit-user-select: auto !important;
  user-select: auto !important;
}

/* スクロール可能要素のスタイル */
.danae_scroll_none_set {
  overflow-y: scroll !important;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
}

.danae_scroll_control {
  position: fixed;
  z-index: 999;
  overflow-y: auto !important;
  /* 重要 */
  overflow-x: hidden !important;
  cursor: ns-resize;
}

.danae_scroll_control.left_position {
  bottom: 0;
  left: 0;
  width: 55px;
  height: calc(50% - 100px);
}

/* スクロールバーを隠す（オプション） */
.danae_scroll_control::-webkit-scrollbar {
  width: 0;
  display: none;
}

.danae_scroll_control {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

.ttl_ptn_1 {
  text-align: center;
  font-weight: 400;
  color: #241702;
}

.ttl_ptn_1 .main {
  display: block;
  font-size: 28px;
  line-height: 1.8em;
}

@media (max-width: 800px) {
  .ttl_ptn_1 .main {
    font-size: 24px;
  }
}

@media (max-width: 600px) {
  .ttl_ptn_1 .main {
    font-size: 20px;
  }
}

@media (max-width: 450px) {
  .ttl_ptn_1 .main {
    letter-spacing: 0;
    font-size: 18px;
  }
}

.ttl_ptn_1 .sub {
  margin-top: 0.5em;
  display: block;
  font-size: 14px;
  line-height: 1.8em;
}

@media (max-width: 800px) {
  .ttl_ptn_1 .sub {
    font-size: 13px;
  }
}

@media (max-width: 450px) {
  .ttl_ptn_1 .sub {
    font-size: 12px;
  }
}

.more_btn_ptn_1 {
  position: relative;
  z-index: 1;
  height: 48px;
  width: 160px;
  display: flex;
  align-items: center;
  justify-content: end;
  color: #241702;
  font-size: 14px;
  letter-spacing: 0.07em;
}

.more_btn_ptn_1 .text {
  position: relative;
  z-index: 10;
  display: block;
  transition: color 0.8s;
}

.more_btn_ptn_1 .text::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -20px;
  z-index: -1;
  margin: auto;
  content: "";
  display: block;
  width: 31px;
  height: 31px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #ebdfb4;
  transform: translate(-20px, -5px) scale(1.2);
  opacity: 0;
  transition: all 0.8s;
}

.more_btn_ptn_1:hover .text {
  color: #ac9851;
}

.more_btn_ptn_1:hover .text::before {
  opacity: 1;
  transform: translate(0) scale(1);
}

.danae_fixed_header {
  position: fixed;
  top: 50px;
  left: 50px;
  z-index: 999;
  width: calc(100% - 100px);
  display: flex;
  justify-content: space-between;
}

@media (max-width: 800px) {
  .danae_fixed_header {
    top: 40px;
    left: 40px;
    width: calc(100% - 80px);
  }
}

@media (max-width: 600px) {
  .danae_fixed_header {
    top: 28px;
    left: 34px;
    width: calc(100% - 68px);
  }
}

.danae_fixed_header .bd_top {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
}

.danae_fixed_header .bd_top::after {
  position: absolute;
  top: 0;
  left: 161px;
  z-index: 10;
  height: 1px;
  width: calc(100% - 161px - 74px);
  content: "";
  display: block;
  background: #ac9851;
}

@media (max-width: 800px) {
  .danae_fixed_header .bd_top::after {
    left: 106px;
    width: calc(100% - 106px - 74px);
  }
}

@media (max-width: 600px) {
  .danae_fixed_header .bd_top::after {
    left: 84px;
    width: calc(100% - 84px - 70px);
  }
}

.danae_fixed_header .logo_main {
  position: relative;
  z-index: 100;
  margin-top: -30px;
  margin-left: -30px;
  width: 182px;
}

@media (max-width: 800px) {
  .danae_fixed_header .logo_main {
    margin-top: -25px;
    margin-left: -25px;
    width: 120px;
  }
}

@media (max-width: 600px) {
  .danae_fixed_header .logo_main {
    width: 100px;
    margin-top: -16px;
  }
}

.danae_fixed_header .logo_main img {
  width: 100%;
  height: auto;
}

.danae_fixed_header .sns_link {
  margin-top: -18px;
  margin-right: -19px;
  display: flex;
  gap: 8px;
}

.danae_fixed_header .sns_link li a .icon {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}

.danae_fixed_header .sns_link li a .icon::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: -1;
  margin: auto;
  width: 26px;
  height: 26px;
  content: "";
  display: block;
  background: #ac9851;
  border: 1px solid #ac9851;
  transform: rotate(45deg);
  transition: background 0.3s;
}

.danae_fixed_header .sns_link li a .icon svg {
  width: 15px;
  height: auto;
  fill: #fff;
  transition: fill 0.3s;
}

.danae_fixed_header .sns_link li a:hover .icon::after {
  background: rgba(172, 152, 81, 0);
}

.danae_fixed_header .sns_link li a:hover .icon svg {
  fill: #ac9851;
}

.danae_fixed_bd_right,
.danae_fixed_bd_bottom,
.danae_fixed_bd_left {
  position: fixed;
  z-index: 99;
}

.danae_fixed_bd_right::before, .danae_fixed_bd_right::after,
.danae_fixed_bd_bottom::before,
.danae_fixed_bd_bottom::after,
.danae_fixed_bd_left::before,
.danae_fixed_bd_left::after {
  position: absolute;
  content: "";
  display: block;
  background: #ac9851;
}

.danae_fixed_bd_right {
  right: 50px;
  top: 50px;
  height: calc(100% - 100px);
}

@media (max-width: 800px) {
  .danae_fixed_bd_right {
    top: 40px;
    right: 24px;
    height: calc(100% - 64px);
  }
}

@media (max-width: 600px) {
  .danae_fixed_bd_right {
    top: 32px;
    right: 20px;
    height: calc(100% - 52px);
  }
}

.danae_fixed_bd_right::after {
  top: 28px;
  width: 1px;
  height: calc(100% - 28px);
}

@media (max-width: 800px) {
  .danae_fixed_bd_right::after {
    top: 22px;
    height: calc(100% - 22px);
  }
}

.danae_fixed_bd_bottom {
  bottom: 50px;
  left: 50px;
  width: calc(100% - 100px);
}

@media (max-width: 800px) {
  .danae_fixed_bd_bottom {
    left: 24px;
    bottom: 24px;
    width: calc(100% - 48px);
  }
}

@media (max-width: 600px) {
  .danae_fixed_bd_bottom {
    left: 20px;
    bottom: 20px;
    width: calc(100% - 40px);
  }
}

.danae_fixed_bd_bottom::after {
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
}

.danae_fixed_bd_left {
  left: 50px;
  top: 50px;
  height: calc(100% - 100px);
}

@media (max-width: 800px) {
  .danae_fixed_bd_left {
    top: 12px;
    left: 24px;
    height: calc(100% - 12px - 24px);
  }
}

@media (max-width: 600px) {
  .danae_fixed_bd_left {
    top: 0;
    left: 20px;
    height: calc(100% - 20px);
  }
}

.danae_fixed_bd_left::before {
  top: 78px;
  left: 0;
  width: 1px;
  height: calc(50% - 78px - 30px);
}

.danae_fixed_bd_left::after {
  bottom: 0;
  left: 0;
  width: 1px;
  height: calc(50% - 60px);
}

.danae_fixed_bd_left .ham_btn {
  position: absolute;
  top: 0;
  left: -25px;
  height: 100%;
  padding-top: 30px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

@media (max-width: 800px) {
  .danae_fixed_bd_left .ham_btn {
    left: -16px;
    width: 56px;
  }
}

.danae_fixed_bd_left .ham_btn svg {
  width: 70px;
  height: auto;
  transition: 0.4s;
}

.danae_fixed_bd_left .ham_btn:hover svg {
  transform: scale(1.03) rotate(-5deg);
}

.danae_drawer {
  position: fixed;
  top: 0;
  left: -100%;
  z-index: 10;
  padding: 154px 32px 100px 120px;
  width: 560px;
  height: 100%;
  visibility: hidden;
  opacity: 0;
  transition: 0.8s;
}

@media (max-width: 600px) {
  .danae_drawer {
    padding: 100px 32px 80px 88px;
    width: 100%;
  }
}

@media (max-width: 500px) {
  .danae_drawer {
    padding: 100px 32px 80px 70px;
  }
}

.danae_drawer.active {
  left: 0;
  visibility: visible;
  opacity: 1;
}

.danae_drawer::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  display: block;
  content: "";
  background: #ac9851;
  opacity: 0.93;
}

.danae_drawer .danae_drawer_bd_top,
.danae_drawer .danae_drawer_bd_left,
.danae_drawer .danae_drawer_bd_right,
.danae_drawer .danae_drawer_bd_bottom {
  position: absolute;
  z-index: 0;
}

.danae_drawer .danae_drawer_bd_top {
  top: 50px;
  right: 1px;
  height: 1px;
  width: calc(100% - 214px);
  background: #fff;
}

@media (max-width: 800px) {
  .danae_drawer .danae_drawer_bd_top {
    top: 40px;
    width: calc(100% - 145px);
  }
}

@media (max-width: 600px) {
  .danae_drawer .danae_drawer_bd_top {
    top: 28px;
    right: 20px;
    width: calc(100% - 145px);
  }
}

.danae_drawer .danae_drawer_bd_left {
  bottom: 50px;
  left: 50px;
  width: 1px;
  height: calc(100% - 180px);
}

@media (max-width: 800px) {
  .danae_drawer .danae_drawer_bd_left {
    left: 24px;
    bottom: 24px;
    height: calc(100% - 120px);
  }
}

@media (max-width: 600px) {
  .danae_drawer .danae_drawer_bd_left {
    bottom: 20px;
    left: 20px;
    height: calc(100% - 95px);
  }
}

.danae_drawer .danae_drawer_bd_left::before, .danae_drawer .danae_drawer_bd_left::after {
  position: absolute;
  left: 0;
  display: block;
  content: "";
  background: #fff;
  width: 1px;
}

.danae_drawer .danae_drawer_bd_left::before {
  top: 0;
  height: calc(48% - 42px);
}

.danae_drawer .danae_drawer_bd_left::after {
  bottom: 0;
  height: calc(52% - 42px);
}

.danae_drawer .danae_drawer_bd_left .danae_drawer_close {
  position: absolute;
  top: calc(48% - 42px);
  left: -40px;
  right: 0;
  margin: auto;
  width: 80px;
  height: 80px;
}

@media (max-width: 600px) {
  .danae_drawer .danae_drawer_bd_left .danae_drawer_close {
    left: -36px;
  }
}

.danae_drawer .danae_drawer_bd_left .danae_drawer_close span {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 30px;
  height: 2px;
  border-radius: 1em;
  background: #fff;
  transform: rotate(45deg);
}

.danae_drawer .danae_drawer_bd_left .danae_drawer_close span:nth-of-type(2) {
  transform: rotate(-45deg);
}

.danae_drawer .danae_drawer_bd_right {
  top: 28px;
  right: 20px;
  width: 1px;
  height: calc(100% - 48px);
  display: none;
  background: #fff;
}

@media (max-width: 600px) {
  .danae_drawer .danae_drawer_bd_right {
    display: block;
  }
}

.danae_drawer .danae_drawer_bd_bottom {
  bottom: 50px;
  right: 1px;
  height: 1px;
  width: calc(100% - 51px);
  background: #fff;
}

@media (max-width: 800px) {
  .danae_drawer .danae_drawer_bd_bottom {
    bottom: 24px;
    width: calc(100% - 26px);
  }
}

@media (max-width: 600px) {
  .danae_drawer .danae_drawer_bd_bottom {
    bottom: 20px;
    right: 20px;
    width: calc(100% - 40px);
  }
}

.danae_drawer .main_menu {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}

.danae_drawer .main_menu ul > li + li {
  margin-top: 12px;
}

.danae_drawer .main_menu ul > li a {
  padding: 0.6em 0;
  display: block;
  font-size: 16px;
  color: #fff;
  font-weight: 300;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.danae_drawer .main_menu ul > li a:hover {
  color: #fbe0e0;
}

.danae_drawer .main_menu ul > li a:hover svg {
  fill: #fbe0e0;
}

.danae_drawer .main_menu ul > li ul {
  margin-top: 8px;
  padding-left: 1.2em;
}

@media (max-width: 500px) {
  .danae_drawer .main_menu ul > li ul {
    padding-left: 1em;
  }
}

.danae_drawer .main_menu ul > li ul li a {
  padding: 0.3em 0;
  display: flex;
  align-items: center;
  font-size: 14px;
}

@media (max-width: 500px) {
  .danae_drawer .main_menu ul > li ul li a {
    padding: 0.3em 0;
  }
}

.danae_drawer .main_menu ul > li ul li a::before {
  margin-right: 2px;
  content: "-";
}

.danae_drawer .shop_nav {
  position: absolute;
  bottom: 70px;
  right: 56px;
  z-index: 10;
  display: flex;
  align-items: center;
}

@media (max-width: 800px) {
  .danae_drawer .shop_nav {
    right: 36px;
    bottom: 36px;
  }
}

@media (max-width: 600px) {
  .danae_drawer .shop_nav {
    right: 40px;
  }
}

@media (max-width: 500px) {
  .danae_drawer .shop_nav {
    bottom: 32px;
  }
}

.danae_drawer .shop_nav a {
  padding: 1em;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
}

.danae_drawer .shop_nav a svg {
  margin-right: 10px;
  height: 14px;
}

.danae_drawer .shop_nav a svg path {
  transition: fill 0.3s ease;
}

.danae_drawer .shop_nav a:hover {
  color: #fbe0e0;
}

.danae_drawer .shop_nav a:hover svg path {
  fill: #fbe0e0;
}

html:has(.danae_drawer.active) {
  overflow: hidden;
}

html:has(.danae_drawer.active) .danae_drawer_filter {
  display: block;
}

.danae_drawer_filter {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  height: 100%;
  display: none;
}

.danae_top_fv {
  position: relative;
  z-index: 10;
  padding: 50px calc(50px + 70px);
  width: 100%;
}

@media (max-width: 800px) {
  .danae_top_fv {
    padding: 40px calc(24px + 54px);
    padding-bottom: 24px;
  }
}

@media (max-width: 600px) {
  .danae_top_fv {
    padding: 40px calc(24px + 32px);
    padding-bottom: 20px;
  }
}

@media (max-width: 500px) {
  .danae_top_fv {
    padding: 40px calc(24px + 24px);
    padding-bottom: 20px;
  }
}

@media (max-width: 400px) {
  .danae_top_fv {
    padding: 40px calc(24px + 20px);
    padding-bottom: 20px;
    padding-right: 24px;
  }
}

.danae_top_fv .text_in {
  font-size: 14px;
}

@media (min-width: 1500px) {
  .danae_top_fv .text_in {
    font-size: 16px;
  }
}

@media (max-width: 1100px) {
  .danae_top_fv .text_in {
    font-size: 13px;
  }
}

@media (max-width: 1000px) {
  .danae_top_fv .text_in {
    font-size: 11px;
  }
}

@media (max-width: 800px) {
  .danae_top_fv .text_in {
    font-size: 10px;
  }
}

@media (max-width: 600px) {
  .danae_top_fv .text_in {
    font-size: 9px;
  }
}

.danae_top_fv .text_in h2 {
  margin-top: 130px;
  font-size: 4em;
  letter-spacing: 0.07em;
  line-height: 1.194em;
  font-weight: 500;
}

@media (max-width: 800px) {
  .danae_top_fv .text_in h2 {
    margin-top: 88px;
  }
}

@media (max-width: 500px) {
  .danae_top_fv .text_in h2 {
    margin-top: 72px;
    font-size: 3.2em;
  }
}

.danae_top_fv .text_in p {
  margin-top: 1em;
  font-size: 1.5em;
  letter-spacing: 0.05em;
  line-height: 1.7144em;
}

@media (max-width: 1200px) {
  .danae_top_fv {
    height: 680px;
  }
}

@media (max-width: 900px) {
  .danae_top_fv {
    height: 480px;
  }
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}

.danae_top_fv .bg_image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.danae_top_fv .bg_image .swiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.danae_top_fv .bg_image .swiper ul.swiper-wrapper li.swiper-slide .swiper-img {
  width: 100%;
  height: 100%;
  display: block;
}

.danae_top_fv .bg_image .swiper ul.swiper-wrapper li.swiper-slide .swiper-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.danae_top_fv.danae_top_fv_on .bg_image .swiper-slide-active .swiper-img,
.danae_top_fv.danae_top_fv_on .bg_image .swiper-slide-duplicate-active .swiper-img,
.danae_top_fv.danae_top_fv_on .bg_image .swiper-slide-prev .swiper-img {
  animation: zoomUp 12s linear 0s normal both;
}

.danae_top_fv_news {
  position: absolute;
  bottom: 100px;
  left: 110px;
  padding: 0.66666em;
  padding-top: 0.8em;
  height: 4em;
  width: 45.25em;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.92);
}

@media (min-width: 1500px) {
  .danae_top_fv_news {
    font-size: 14px;
  }
}

@media (max-width: 800px) {
  .danae_top_fv_news {
    left: 78px;
    bottom: 64px;
    width: calc(100% - 156px);
  }
}

@media (max-width: 700px) {
  .danae_top_fv_news {
    padding: 1.3em;
    height: 5.3em;
  }
}

@media (max-width: 600px) {
  .danae_top_fv_news {
    left: 52px;
    bottom: 52px;
    width: calc(100% - 104px);
  }
}

@media (max-width: 500px) {
  .danae_top_fv_news {
    left: 40px;
    bottom: 40px;
    width: calc(100% - 80px);
    padding-top: 1.5em;
    height: 5.9em;
  }
}

@media (max-width: 450px) {
  .danae_top_fv_news {
    left: 30px;
    bottom: 30px;
    width: calc(100% - 60px);
  }
}

.danae_top_fv_news h3 {
  width: 11.7em;
  display: flex;
  align-items: center;
  font-size: 1.1666em;
  font-weight: 400;
  letter-spacing: 0.07em;
}

@media (max-width: 800px) {
  .danae_top_fv_news h3 {
    font-size: 1em;
  }
}

@media (max-width: 700px) {
  .danae_top_fv_news h3 {
    margin-bottom: 0.2em;
    width: 100%;
  }
}

@media (max-width: 500px) {
  .danae_top_fv_news h3 {
    margin-bottom: 0.6em;
  }
}

.danae_top_fv_news h3::before {
  margin-right: 0.66666em;
  content: "";
  width: 1.666666em;
  height: 1px;
  display: block;
  background: #ac9851;
}

.danae_top_fv_news ul.items {
  position: relative;
  width: 24em;
  height: 2.5em;
  overflow: hidden;
}

.danae_top_fv_news ul.items li {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.5s ease-in-out;
}

.danae_top_fv_news ul.items li.active {
  opacity: 1;
  transform: translateY(0);
}

.danae_top_fv_news ul.items li.prev {
  opacity: 0;
  transform: translateY(-100%);
}

.danae_top_fv_news ul.items li a {
  width: 100%;
  height: auto;
  display: grid;
  align-items: center;
  grid-template-columns: 6.25em calc(100% - 6.25em);
  color: #7d7d7d;
  transition: color 0.3s;
}

.danae_top_fv_news ul.items li a .date {
  color: #ac9851;
}

.danae_top_fv_news ul.items li a:hover {
  color: #e97575;
}

.danae_top_fv_news ul.items li a .title {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.danae_top_fv_news .more {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 6.66em;
}

@media (max-width: 500px) {
  .danae_top_fv_news .more {
    height: 61%;
  }
}

.danae_top_fv_news .more a {
  padding-right: 1em;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
  color: #ac9851;
}

.danae_top_features {
  padding: 0 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1200px) {
  .danae_top_features {
    padding-right: 88px;
  }
}

@media (max-width: 1000px) {
  .danae_top_features {
    padding-right: 64px;
  }
}

@media (max-width: 800px) {
  .danae_top_features {
    padding: 0 48px;
    padding-bottom: 10%;
  }
}

.danae_top_features .danae_wrap {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  align-items: start;
}

@media (max-width: 800px) {
  .danae_top_features .danae_wrap {
    max-width: 360px;
  }
}

.danae_top_features .danae_wrap ul.image {
  position: relative;
  z-index: 10;
  width: 540px;
  aspect-ratio: 1;
}

@media (max-width: 1300px) {
  .danae_top_features .danae_wrap ul.image {
    width: 440px;
  }
}

@media (max-width: 1200px) {
  .danae_top_features .danae_wrap ul.image {
    width: 380px;
  }
}

@media (max-width: 1000px) {
  .danae_top_features .danae_wrap ul.image {
    width: 320px;
  }
}

@media (max-width: 800px) {
  .danae_top_features .danae_wrap ul.image {
    width: 100%;
    aspect-ratio: 1 / 0.7;
  }
}

.danae_top_features .danae_wrap ul.image.loading_anime_fv_on::after {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.danae_top_features .danae_wrap ul.image li {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
}

.danae_top_features .danae_wrap ul.image li.on_main {
  opacity: 1;
  z-index: 10;
  animation: fv_slide_li_anime 5s linear infinite;
}

.danae_top_features .danae_wrap ul.image li.on_main img {
  animation: fv_slide_img_anime_main 5s linear infinite;
}

.danae_top_features .danae_wrap ul.image li.on_next {
  opacity: 1;
  z-index: 9;
}

.danae_top_features .danae_wrap ul.image li.on_next img {
  animation: fv_slide_img_anime_next 10s linear infinite;
}

.danae_top_features .danae_wrap ul.image li img {
  width: 130%;
  height: 100%;
  object-fit: cover;
}

@keyframes fv_slide_li_anime {
  80% {
    clip-path: polygon(-100% 0%, 100% 0%, 100% 100%, 100% 1000%);
  }
  100% {
    clip-path: polygon(170% 0%, 100% 0%, 100% 100%, 100% 100%);
  }
}

@keyframes fv_slide_img_anime_next {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-20%);
  }
}

@keyframes fv_slide_img_anime_main {
  0% {
    transform: translateX(-10%);
  }
  100% {
    transform: translateX(-20%);
  }
}

.danae_top_features .danae_wrap .text_in {
  position: relative;
  z-index: 10;
  padding-left: 112px;
  width: calc(100% - 540px);
  color: #241702;
}

@media (max-width: 1350px) {
  .danae_top_features .danae_wrap .text_in {
    padding-left: 48px;
  }
}

@media (max-width: 1300px) {
  .danae_top_features .danae_wrap .text_in {
    width: calc(100% - 440px);
  }
}

@media (max-width: 1200px) {
  .danae_top_features .danae_wrap .text_in {
    width: calc(100% - 380px);
  }
}

@media (max-width: 1000px) {
  .danae_top_features .danae_wrap .text_in {
    padding-left: 32px;
    width: calc(100% - 320px);
  }
}

@media (max-width: 800px) {
  .danae_top_features .danae_wrap .text_in {
    margin-top: -16px;
    padding: 0;
    width: 100%;
  }
}

.danae_top_features .danae_wrap .text_in h2 {
  font-size: 16px;
}

@media (max-width: 1200px) {
  .danae_top_features .danae_wrap .text_in h2 {
    font-size: 14px;
  }
}

@media (max-width: 800px) {
  .danae_top_features .danae_wrap .text_in h2 {
    margin: 0 auto;
    padding: 8px 0 10px 0;
    width: 300px;
    font-size: 12px;
    text-align: center;
    background: rgba(239, 235, 221, 0.98);
    outline: 1px solid #e0d8bd;
    outline-offset: -4px;
  }
}

@media (max-width: 500px) {
  .danae_top_features .danae_wrap .text_in h2 {
    width: 260px;
  }
}

.danae_top_features .danae_wrap .text_in h2 .en {
  display: block;
  font-size: 2.5em;
  letter-spacing: 0.05em;
  line-height: 1.55;
  font-family: "Alex Brush", cursive;
  font-weight: 400;
}

.danae_top_features .danae_wrap .text_in h2 .main {
  display: block;
  margin-top: 0.5em;
  font-size: 14px;
  line-height: 1.8;
  color: #ac9851;
  font-weight: 400;
}

@media (max-width: 800px) {
  .danae_top_features .danae_wrap .text_in h2 .main {
    margin-top: -0.5em;
    font-size: 13px;
    color: #241702;
  }
}

.danae_top_features .danae_wrap .text_in .inner {
  margin-top: 46px;
  height: 300px;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.danae_top_features .danae_wrap .text_in .inner::-webkit-scrollbar {
  display: none;
}

@media (max-width: 1200px) {
  .danae_top_features .danae_wrap .text_in .inner {
    margin-top: 20px;
    height: 240px;
    font-size: 14px;
  }
}

@media (max-width: 800px) {
  .danae_top_features .danae_wrap .text_in .inner {
    margin-top: 12px;
  }
}

.danae_top_features .danae_wrap .text_in .inner:first-child {
  margin-top: 0;
}

.danae_top_features .danae_wrap .text_in .inner h3 {
  margin-top: 3em;
  display: flex;
  font-weight: 500;
}

@media (max-width: 800px) {
  .danae_top_features .danae_wrap .text_in .inner h3 {
    margin-top: 32px;
  }
}

.danae_top_features .danae_wrap .text_in .inner h3 .text {
  display: block;
}

@media (max-width: 800px) {
  .danae_top_features .danae_wrap .text_in .inner h3 .text {
    width: 100%;
  }
}

.danae_top_features .danae_wrap .text_in .inner h3 .text::after {
  margin-top: 1em;
  height: 2px;
  width: 100%;
  content: "";
  display: block;
  background: #ac9851;
}

.danae_top_features .danae_wrap .text_in .inner p {
  margin: 1.5em 0;
  line-height: 2.5em;
}

.danae_top_features .danae_wrap .text_in .more_btn_ptn_1 {
  position: absolute;
  top: calc(100% + 20px);
  right: 0;
}

@media (max-width: 800px) {
  .danae_top_features .danae_wrap .text_in .more_btn_ptn_1 {
    top: calc(100% + 12px);
  }
}

.danae_top_profile {
  padding: 0 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 800px) {
  .danae_top_profile {
    padding: 0 80px;
    padding-top: 120px;
    padding-bottom: 200px;
    align-items: start;
  }
}

@media (max-width: 500px) {
  .danae_top_profile {
    padding: 0 80px;
    padding-top: 80px;
    padding-bottom: 100px;
  }
}

.danae_top_profile .danae_wrap {
  margin: 0 auto;
  width: 100%;
  max-width: 967px;
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  align-content: start;
  justify-content: center;
}

@media (max-width: 1200px) {
  .danae_top_profile .danae_wrap {
    max-width: 800px;
  }
}

@media (max-width: 1200px) {
  .danae_top_profile .danae_wrap {
    max-width: 800px;
  }
}

@media (max-width: 800px) {
  .danae_top_profile .danae_wrap {
    max-width: 340px;
  }
}

.danae_top_profile .danae_wrap header {
  margin-bottom: 40px;
  width: 100%;
}

@media (max-width: 1200px) {
  .danae_top_profile .danae_wrap header {
    margin-bottom: 32px;
  }
}

@media (max-width: 500px) {
  .danae_top_profile .danae_wrap header {
    margin-bottom: 20px;
  }
}

.danae_top_profile .danae_wrap header h2 {
  text-align: center;
  color: #241702;
  font-weight: 400;
}

.danae_top_profile .danae_wrap header h2 .en {
  display: block;
  font-size: 28px;
  letter-spacing: 0.11em;
  line-height: 1.8em;
}

@media (max-width: 500px) {
  .danae_top_profile .danae_wrap header h2 .en {
    font-size: 24px;
  }
}

.danae_top_profile .danae_wrap header h2 .main {
  margin-top: 0.5em;
  display: block;
  font-size: 14px;
}

@media (max-width: 500px) {
  .danae_top_profile .danae_wrap header h2 .main {
    margin-top: 0;
  }
}

.danae_top_profile .danae_wrap .image {
  position: relative;
  width: 336px;
  aspect-ratio: 336 / 400;
  overflow: hidden;
  border-radius: 0 50px 0 50px;
}

@media (max-width: 1200px) {
  .danae_top_profile .danae_wrap .image {
    width: 280px;
  }
}

@media (max-width: 800px) {
  .danae_top_profile .danae_wrap .image {
    width: 100%;
    height: 300px;
  }
}

@media (max-width: 500px) {
  .danae_top_profile .danae_wrap .image {
    width: 210px;
    height: 200px;
  }
}

.danae_top_profile .danae_wrap .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.danae_top_profile .danae_wrap .text_in {
  position: relative;
  padding-top: 48px;
  padding-left: 80px;
  width: calc(100% - 336px);
  color: #241702;
}

@media (max-width: 1200px) {
  .danae_top_profile .danae_wrap .text_in {
    padding-top: 32px;
    padding-left: 48px;
    width: calc(100% - 280px);
  }
}

@media (max-width: 1200px) {
  .danae_top_profile .danae_wrap .text_in {
    padding-top: 24px;
    padding-left: 32px;
  }
}

@media (max-width: 800px) {
  .danae_top_profile .danae_wrap .text_in {
    padding-left: 0;
    width: 100%;
  }
}

@media (max-width: 500px) {
  .danae_top_profile .danae_wrap .text_in {
    padding-left: 0;
    width: 270px;
  }
}

.danae_top_profile .danae_wrap .text_in .name {
  margin-bottom: 48px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-weight: 400;
}

@media (max-width: 1200px) {
  .danae_top_profile .danae_wrap .text_in .name {
    margin-bottom: 32px;
  }
}

@media (max-width: 500px) {
  .danae_top_profile .danae_wrap .text_in .name {
    margin-bottom: 24px;
  }
}

.danae_top_profile .danae_wrap .text_in .name .ja {
  font-size: 24px;
  letter-spacing: 0.1em;
}

@media (max-width: 1000px) {
  .danae_top_profile .danae_wrap .text_in .name .ja {
    font-size: 20px;
  }
}

.danae_top_profile .danae_wrap .text_in .name .en {
  font-size: 14px;
  letter-spacing: 0.1em;
}

@media (max-width: 1000px) {
  .danae_top_profile .danae_wrap .text_in .name .en {
    font-size: 11px;
    letter-spacing: 0;
  }
}

@media (max-width: 900px) {
  .danae_top_profile .danae_wrap .text_in .name .en {
    margin-top: 8px;
    width: 100%;
    display: block;
  }
}

.danae_top_profile .danae_wrap .text_in .in {
  margin-top: 1.2em;
  overflow-y: scroll !important;
  /* スマホではスクロール有効 */
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.danae_top_profile .danae_wrap .text_in .in::-webkit-scrollbar {
  display: none;
}

@media (max-width: 800px) {
  .danae_top_profile .danae_wrap .text_in .in {
    height: 200px;
  }
}

@media (max-width: 500px) {
  .danae_top_profile .danae_wrap .text_in .in {
    height: 160px;
  }
}

.danae_top_profile .danae_wrap .text_in p {
  line-height: 2.57;
}

@media (max-width: 1200px) {
  .danae_top_profile .danae_wrap .text_in p {
    font-size: 14px;
  }
}

@media (max-width: 900px) {
  .danae_top_profile .danae_wrap .text_in p {
    line-height: 2.2em;
  }
}

.danae_top_profile .danae_wrap .text_in p + p {
  margin-top: 1.5em;
}

.danae_top_profile .danae_wrap .text_in .sns_links {
  position: absolute;
  top: 50px;
  right: 0;
  height: 20px;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 8px;
}

@media (max-width: 1200px) {
  .danae_top_profile .danae_wrap .text_in .sns_links {
    top: 35px;
  }
}

.danae_top_profile .danae_wrap .text_in .sns_links li {
  height: 100%;
}

.danae_top_profile .danae_wrap .text_in .sns_links li a svg {
  height: 100%;
  width: auto;
}

.danae_top_profile .danae_wrap .text_in .sns_links li a svg path {
  fill: #ac9851;
  transition: fill 0.3s ease;
}

.danae_top_profile .danae_wrap .text_in .sns_links li a:hover svg path {
  fill: #e97575;
}

.danae_cta_ptn_1 {
  position: relative;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
}

@media (min-width: 1100px) {
  .danae_cta_ptn_1 .left {
    padding-left: 50px;
  }
}

@media (min-width: 1100px) {
  .danae_cta_ptn_1 .right {
    padding-right: 50px;
  }
}

.danae_cta_ptn_1 .left,
.danae_cta_ptn_1 .right {
  position: relative;
  padding-bottom: 4%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1100px) {
  .danae_cta_ptn_1 .left,
  .danae_cta_ptn_1 .right {
    padding: 0 50px;
    padding-bottom: 10%;
  }
}

.danae_cta_ptn_1 .left .text_in,
.danae_cta_ptn_1 .right .text_in {
  position: relative;
  color: #fff;
  text-align: center;
  transition: color 0.3s ease;
}

.danae_cta_ptn_1 .left .text_in h2,
.danae_cta_ptn_1 .right .text_in h2 {
  height: 108px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  font-weight: 400;
}

@media (max-width: 1100px) {
  .danae_cta_ptn_1 .left .text_in h2,
  .danae_cta_ptn_1 .right .text_in h2 {
    height: auto;
  }
}

.danae_cta_ptn_1 .left .text_in h2 .main,
.danae_cta_ptn_1 .right .text_in h2 .main {
  width: 100%;
  display: block;
  line-height: 1.5em;
  font-size: 28px;
  letter-spacing: 0.07em;
}

@media (max-width: 700px) {
  .danae_cta_ptn_1 .left .text_in h2 .main,
  .danae_cta_ptn_1 .right .text_in h2 .main {
    font-size: 24px;
  }
}

@media (max-width: 500px) {
  .danae_cta_ptn_1 .left .text_in h2 .main,
  .danae_cta_ptn_1 .right .text_in h2 .main {
    font-size: 22px;
  }
}

.danae_cta_ptn_1 .left .text_in h2 .sub,
.danae_cta_ptn_1 .right .text_in h2 .sub {
  margin-top: 0.7em;
  display: block;
}

@media (max-width: 500px) {
  .danae_cta_ptn_1 .left .text_in h2 .sub,
  .danae_cta_ptn_1 .right .text_in h2 .sub {
    font-size: 14px;
  }
}

.danae_cta_ptn_1 .left .text_in p,
.danae_cta_ptn_1 .right .text_in p {
  height: 160px;
  line-height: 2.5em;
}

@media (max-width: 1100px) {
  .danae_cta_ptn_1 .left .text_in p,
  .danae_cta_ptn_1 .right .text_in p {
    height: auto;
  }
}

.danae_cta_ptn_1 .left .text_in .btn,
.danae_cta_ptn_1 .right .text_in .btn {
  margin: 0 auto;
  margin-top: 16px;
  width: 210px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #241702;
  border: 1px solid #ac9851;
  transition: 0.3s;
}

.danae_cta_ptn_1 .left .text_in .btn:hover,
.danae_cta_ptn_1 .right .text_in .btn:hover {
  background: #bd9d8e;
  color: #fff;
}

.danae_cta_ptn_1 .left .text_in .links,
.danae_cta_ptn_1 .right .text_in .links {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 10;
  margin: auto;
  padding-top: 1em;
}

@media (max-width: 1100px) {
  .danae_cta_ptn_1 .left .text_in .links,
  .danae_cta_ptn_1 .right .text_in .links {
    margin-top: 16px;
    position: static;
  }
}

.danae_cta_ptn_1 .left .text_in .links a,
.danae_cta_ptn_1 .right .text_in .links a {
  padding: 1em 0.8em;
  display: block;
  color: #fff;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.danae_cta_ptn_1 .left .text_in .links a:hover,
.danae_cta_ptn_1 .right .text_in .links a:hover {
  color: #e97575 !important;
}

.danae_cta_ptn_1 .left .bg_image,
.danae_cta_ptn_1 .right .bg_image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease;
}

.danae_cta_ptn_1 .left .bg_image img,
.danae_cta_ptn_1 .right .bg_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.danae_cta_ptn_1 .left .bg_image::after,
.danae_cta_ptn_1 .right .bg_image::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  background: #7d7d7d;
  mix-blend-mode: multiply;
}

@media (min-width: 900px) {
  .danae_cta_ptn_1 .left:hover .text_in,
  .danae_cta_ptn_1 .right:hover .text_in {
    color: #241702;
  }
  .danae_cta_ptn_1 .left:hover .text_in .links a,
  .danae_cta_ptn_1 .right:hover .text_in .links a {
    color: #241702;
  }
  .danae_cta_ptn_1 .left:hover .bg_image,
  .danae_cta_ptn_1 .right:hover .bg_image {
    opacity: 0;
  }
}

.danae_top_news {
  padding: 0 150px;
  padding-bottom: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 800px) {
  .danae_top_news {
    padding: 180px 96px;
  }
}

@media (max-width: 600px) {
  .danae_top_news {
    padding: 120px 68px 120px 96px;
  }
}

.danae_top_news .danae_wrap {
  width: 100%;
  max-width: 680px;
}

.danae_top_news .danae_wrap header {
  margin-bottom: 48px;
}

@media (max-width: 1100px) {
  .danae_top_news .danae_wrap header {
    margin-bottom: 40px;
  }
}

@media (max-width: 900px) {
  .danae_top_news .danae_wrap header {
    margin-bottom: 32px;
  }
}

@media (max-width: 500px) {
  .danae_top_news .danae_wrap header {
    margin-bottom: 24px;
  }
}

.danae_top_news .danae_wrap header h2 {
  text-align: center;
  font-weight: 400;
}

.danae_top_news .danae_wrap header h2 .en {
  display: block;
  font-size: 28px;
  letter-spacing: 0.11em;
  line-height: 1.8em;
}

.danae_top_news .danae_wrap header h2 .main {
  margin-top: 0.5em;
  display: block;
  font-size: 14px;
}

.danae_top_news .danae_wrap .items {
  font-size: 14px;
  line-height: 1.8em;
}

.danae_top_news .danae_wrap .items li + li {
  margin-top: 1em;
}

.danae_top_news .danae_wrap .items li a {
  display: grid;
  grid-template-columns: 7em calc(100% - 7em);
}

@media (max-width: 600px) {
  .danae_top_news .danae_wrap .items li a {
    grid-template-columns: repeat(1, 1fr);
  }
}

.danae_top_news .danae_wrap .items li a .date {
  color: #ac9851;
  letter-spacing: 0.08em;
}

.danae_top_news .danae_wrap .items li a .title {
  color: #7d7d7d;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}

.danae_top_news .danae_wrap .items li a:hover .title {
  color: #e97575;
}

.danae_top_news .danae_wrap .btn_wrap {
  margin-top: 28px;
  width: 100%;
  display: flex;
  justify-content: center;
}

@media (max-width: 900px) {
  .danae_top_news .danae_wrap .btn_wrap {
    margin-top: 20px;
  }
}

@media (max-width: 500px) {
  .danae_top_news .danae_wrap .btn_wrap {
    margin-top: 16px;
  }
}

.danae_top_news .danae_wrap .btn_wrap .more_btn_ptn_1 {
  justify-content: center;
}

.danae_footer {
  position: relative;
  z-index: 10;
}

.danae_footer::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  background: #ac9851;
  opacity: 0.5;
}

.danae_footer .danae_warap_scroll_active {
  width: 100%;
  height: 100%;
  padding: 240px 160px;
  min-height: 100vh;
  display: flex;
  font-size: 14px;
}

@media (max-width: 1420px) {
  .danae_footer .danae_warap_scroll_active {
    padding: 240px 140px;
    padding-top: 240px;
  }
}

@media (max-width: 1350px) {
  .danae_footer .danae_warap_scroll_active {
    padding-top: 200px;
    padding-bottom: 200px;
    flex-wrap: wrap;
  }
}

@media (max-width: 1100px) {
  .danae_footer .danae_warap_scroll_active {
    padding-top: 140px;
    padding-right: 80px;
  }
}

@media (max-width: 950px) {
  .danae_footer .danae_warap_scroll_active {
    justify-content: center;
  }
}

@media (max-width: 700px) {
  .danae_footer .danae_warap_scroll_active {
    padding: 120px 56px 120px 80px;
  }
}

@media (max-width: 500px) {
  .danae_footer .danae_warap_scroll_active {
    padding: 80px 56px 120px 80px;
  }
}

.danae_footer .danae_wrap {
  max-height: 70vh;
  width: 100%;
  max-width: initial;
  display: flex;
  align-items: start;
  align-content: start;
  justify-content: space-between;
  overflow: initial !important;
}

@media (max-width: 950px) {
  .danae_footer .danae_wrap {
    max-width: 400px;
    flex-wrap: wrap;
    overflow-y: scroll !important;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .danae_footer .danae_wrap::-webkit-scrollbar {
    display: none;
  }
}

.danae_footer .danae_wrap .inner {
  display: flex;
  flex-wrap: wrap;
  gap: 64px;
}

@media (max-width: 1420px) {
  .danae_footer .danae_wrap .inner {
    gap: 40px;
  }
}

@media (max-width: 1350px) {
  .danae_footer .danae_wrap .inner {
    gap: 64px;
  }
}

@media (max-width: 600px) {
  .danae_footer .danae_wrap .inner {
    gap: 32px;
  }
}

.danae_footer .danae_wrap .inner .text_in .logo {
  width: 218px;
}

@media (max-width: 950px) {
  .danae_footer .danae_wrap .inner .text_in .logo {
    width: 148px;
  }
}

.danae_footer .danae_wrap .inner .text_in .logo img {
  width: 100%;
  height: auto;
}

.danae_footer .danae_wrap .inner .text_in .info {
  margin-top: 40px;
  line-height: 2.2;
  letter-spacing: 0.05em;
}

@media (max-width: 600px) {
  .danae_footer .danae_wrap .inner .text_in .info {
    margin-top: 24px;
  }
}

@media (max-width: 950px) {
  .danae_footer .danae_wrap .inner .danae_footer_menu {
    width: 100%;
  }
}

.danae_footer .danae_wrap .inner .danae_footer_menu > ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

@media (max-width: 1420px) {
  .danae_footer .danae_wrap .inner .danae_footer_menu > ul {
    gap: 20px;
  }
}

@media (max-width: 950px) {
  .danae_footer .danae_wrap .inner .danae_footer_menu > ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .danae_footer .danae_wrap .inner .danae_footer_menu > ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }
}

.danae_footer .danae_wrap .inner .danae_footer_menu > ul > li a,
.danae_footer .danae_wrap .inner .danae_footer_menu > ul > li .a {
  margin-bottom: 1em;
  display: block;
  color: #241702;
  font-size: 16px;
  letter-spacing: 0.05em;
  font-weight: 400;
}

.danae_footer .danae_wrap .inner .danae_footer_menu > ul > li ul {
  padding-left: 1em;
}

.danae_footer .danae_wrap .inner .danae_footer_menu > ul > li ul li a {
  margin-top: 0.8em;
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 1.6em;
}

@media (max-width: 1000px) {
  .danae_footer .danae_wrap .inner .danae_footer_menu > ul > li ul li a {
    font-size: 12px;
  }
}

@media (max-width: 600px) {
  .danae_footer .danae_wrap .inner .danae_footer_menu > ul > li ul li a {
    font-size: 13px;
  }
}

.danae_footer .danae_wrap .inner .danae_footer_menu > ul > li ul li a::before {
  content: "-";
}

.danae_footer .danae_wrap .face_book {
  margin-left: 16px;
  width: 320px;
  height: 516px;
}

@media (max-width: 1400px) {
  .danae_footer .danae_wrap .face_book {
    display: none;
  }
}

@media (max-width: 950px) {
  .danae_footer .danae_wrap .face_book {
    width: 100%;
    height: 300px;
    display: block;
  }
}

.danae_footer .danae_wrap .face_book .fb-page {
  width: 100% !important;
  height: 100% !important;
}

.danae_footer .copyright {
  position: absolute;
  bottom: 18px;
  left: 49px;
  margin: auto;
  font-size: 12px;
  font-weight: 300;
}

@media (max-width: 800px) {
  .danae_footer .copyright {
    bottom: 42px;
    font-size: 11px;
  }
}

@media (max-width: 500px) {
  .danae_footer .copyright {
    right: 0;
    left: 0;
    text-align: center;
  }
}

.danae_flow_cta {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 500;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.danae_flow_cta.active {
  visibility: visible;
  opacity: 1;
}

.danae_flow_cta a {
  padding-top: 8px;
  height: 95px;
  aspect-ratio: 327 / 95;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  border-radius: 60px 2px 2px 2px;
  color: #fff;
  background: #ac9851;
  text-align: center;
  transition: 0.3s;
}

@media (max-width: 500px) {
  .danae_flow_cta a {
    height: 72px;
    border-radius: 48px 2px 2px 2px;
  }
}

.danae_flow_cta a .main {
  font-size: 22px;
  display: flex;
  align-items: center;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

@media (max-width: 500px) {
  .danae_flow_cta a .main {
    font-size: 18px;
  }
}

.danae_flow_cta a .main svg {
  margin-right: 4px;
  height: 22px;
  width: auto;
  fill: #fff;
}

@media (max-width: 500px) {
  .danae_flow_cta a .main svg {
    height: 22px;
  }
}

.danae_flow_cta a .sub {
  width: 100%;
  font-size: 14px;
  line-height: 2em;
}

@media (max-width: 500px) {
  .danae_flow_cta a .sub {
    font-size: 11px;
  }
}

.danae_flow_cta a:hover {
  background: #464646;
}

.danae_top_oshie_art {
  position: relative;
  z-index: 10;
  padding-bottom: 5%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
}

@media (max-width: 500px) {
  .danae_top_oshie_art {
    padding-bottom: 10%;
  }
}

.danae_top_oshie_art header {
  margin-bottom: 56px;
  width: 100%;
}

@media (max-width: 500px) {
  .danae_top_oshie_art header {
    margin-bottom: 24px;
  }
}

.danae_top_oshie_art .image_wrap {
  position: relative;
  width: 100%;
  height: 220px;
}

@media (max-width: 900px) {
  .danae_top_oshie_art .image_wrap {
    height: 200px;
  }
}

.danae_top_oshie_art .image_wrap .swiper {
  width: 100%;
  height: 100%;
  overflow: initial;
}

.danae_top_oshie_art .image_wrap .swiper .swiper-wrapper .swiper-slide img {
  display: block;
  width: auto;
  height: 100%;
  object-fit: contain;
  transition: box-shadow 0.3s ease;
}

.danae_top_oshie_art .image_wrap .swiper .swiper-wrapper .swiper-slide img:hover {
  box-shadow: 6px 12px 12px rgba(0, 0, 0, 0.1);
}

.danae_top_oshie_art .image_wrap .swiper-pagination {
  position: absolute;
  top: calc(100% + 40px);
  right: 110px;
  left: auto;
  display: flex;
  justify-content: end;
}

@media (max-width: 1200px) {
  .danae_top_oshie_art .image_wrap .swiper-pagination {
    right: 86px;
  }
}

@media (max-width: 800px) {
  .danae_top_oshie_art .image_wrap .swiper-pagination {
    right: 40px;
  }
}

.danae_top_oshie_art .image_wrap .swiper-pagination .swiper-pagination-bullet {
  margin: 10px;
  height: 10px;
  width: 10px;
  background: #7d7d7d;
  opacity: 1;
}

.danae_top_oshie_art .image_wrap .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #ac9851;
}

@media (max-width: 500px) {
  .danae_top_oshie_art .image_wrap .swiper-pagination .swiper-pagination-bullet {
    display: none;
  }
}

.danae_top_oshie_art .image_wrap .more_btn_ptn_1 {
  position: absolute;
  top: calc(100% + 70px);
  right: 120px;
}

@media (max-width: 1200px) {
  .danae_top_oshie_art .image_wrap .more_btn_ptn_1 {
    right: 94px;
  }
}

@media (max-width: 800px) {
  .danae_top_oshie_art .image_wrap .more_btn_ptn_1 {
    right: 50px;
  }
}

.danae_top_oshie_art .image_wrap .swiper_button_wrap {
  position: absolute;
  right: 50px;
  top: calc(100% + 24px);
  width: calc(100% - 100px);
  display: flex;
  justify-content: space-between;
}

@media (min-width: 500px) {
  .danae_top_oshie_art .image_wrap .swiper_button_wrap {
    display: none;
  }
}

.danae_top_oshie_art .image_wrap .swiper_button_wrap .swiper-button-prev,
.danae_top_oshie_art .image_wrap .swiper_button_wrap .swiper-button-next {
  margin: 0 !important;
  height: 32px;
  width: 32px;
  position: relative;
  border-radius: 50%;
  background: #ac9851;
  opacity: 0.75;
}

.danae_top_oshie_art .image_wrap .swiper_button_wrap .swiper-button-prev.swiper-button-disabled,
.danae_top_oshie_art .image_wrap .swiper_button_wrap .swiper-button-next.swiper-button-disabled {
  opacity: 0.1;
}

.danae_top_oshie_art .image_wrap .swiper_button_wrap .swiper-button-prev::after,
.danae_top_oshie_art .image_wrap .swiper_button_wrap .swiper-button-next::after {
  height: 90%;
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #fff;
}

.danae_top_oshie_art .bg_image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.39;
}

.danae_top_oshie_art .bg_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.danae_variations {
  position: relative;
  z-index: 10;
  padding-bottom: 5%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
}

@media (max-width: 600px) {
  .danae_variations {
    padding-bottom: 10%;
  }
}

.danae_variations header {
  margin-bottom: 56px;
  width: 100%;
}

@media (max-width: 600px) {
  .danae_variations header {
    margin-bottom: 24px;
  }
}

.danae_variations .image_wrap {
  position: relative;
  width: 100%;
  height: 147px;
}

.danae_variations .image_wrap .swiper {
  width: 100%;
  height: 100%;
}

.danae_variations .image_wrap .swiper .swiper-wrapper .swiper-slide {
  width: 147px !important;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
}

.danae_variations .image_wrap .swiper .swiper-wrapper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.danae_variations .image_wrap .swiper .swiper-wrapper .swiper-slide img:hover {
  transform: scale(1.1);
}

.danae_variations .image_wrap .more_btn_ptn_1 {
  margin: 0 auto;
  margin-top: 40px;
  justify-content: center;
}

/* danae_loading_anime */
.danae_loading_anime {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999999999999;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  /* ステータスバー */
  /* ロゴラッパー */
  /* アニメーション実行 */
}

.danae_loading_anime svg {
  height: auto;
  margin: auto;
  overflow: visible;
}

.danae_loading_anime.danae_loading_anime_off {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s ease, visibility 0.5s ease 0.5s;
}

.danae_loading_anime .status_bar {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.3s ease;
}

.danae_loading_anime .status_bar.hide {
  opacity: 0;
  pointer-events: none;
}

.danae_loading_anime .status_bar .progress_container {
  width: 300px;
  position: relative;
}

.danae_loading_anime .status_bar .progress_container .progress_track {
  width: 100%;
  height: 2px;
  border-radius: 3em;
  background: #e0e0e0;
  overflow: hidden;
}

.danae_loading_anime .status_bar .progress_container .progress_track .progress_fill {
  height: 100%;
  background: #fd0468;
  border-radius: 3em;
  width: 0%;
  transition: width 0.3s ease;
}

.danae_loading_anime .status_bar .progress_container .progress_text {
  text-align: center;
  margin-top: 10px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.danae_loading_anime .loading_logo_wrap {
  position: relative;
  width: 1em;
  height: 0.538em;
  font-size: 200px;
  opacity: 0;
  transition: opacity 0.3s ease;
  /* 各要素の初期状態 */
}

.danae_loading_anime .loading_logo_wrap.show {
  opacity: 1;
}

.danae_loading_anime .loading_logo_wrap #loading_logo_f {
  position: absolute;
  top: 17%;
  left: 0;
  width: 0.335em;
  transform: rotate(-10deg) scale(1.3) translate(-80%, -50%);
  opacity: 0;
}

.danae_loading_anime .loading_logo_wrap #loading_logo_e {
  position: absolute;
  bottom: 5%;
  z-index: 10;
  left: 15%;
  width: 0.22651em;
  transform: translate(-50%, 0);
  opacity: 0;
}

.danae_loading_anime .loading_logo_wrap #loading_logo_d {
  position: absolute;
  top: 0;
  left: 21%;
  width: 0.5449em;
  transform: translate(20%, -100%);
  opacity: 0;
}

.danae_loading_anime .loading_logo_wrap #loading_logo_s {
  position: absolute;
  top: 24%;
  right: 0;
  width: 0.2971em;
  transform: rotate(15deg) translate(80%, -50%);
  opacity: 0;
}

.danae_loading_anime .loading_logo_wrap #loading_logo_danae {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 0.6187em;
  transform: translate(30%, 0);
  opacity: 0;
}

.danae_loading_anime.active .loading_logo_wrap #loading_logo_f {
  animation: loading_logo_f_anime 1.8s ease-out forwards;
}

.danae_loading_anime.active .loading_logo_wrap #loading_logo_e {
  animation: loading_logo_e_anime 0.8s ease-out 1.8s forwards;
}

.danae_loading_anime.active .loading_logo_wrap #loading_logo_d {
  animation: loading_logo_d_anime 1.8s ease-out forwards;
}

.danae_loading_anime.active .loading_logo_wrap #loading_logo_s {
  animation: loading_logo_s_anime 1.8s ease-out forwards;
}

.danae_loading_anime.active .loading_logo_wrap #loading_logo_danae {
  animation: loading_logo_danae_anime 1.8s ease-out forwards;
}

/* アニメーション定義 */
@keyframes loading_logo_f_anime {
  0% {
    transform: rotate(-10deg) scale(1.3) translate(-80%, -50%);
    opacity: 0;
  }
  100% {
    transform: rotate(0) scale(1) translate(0);
    opacity: 1;
  }
}

@keyframes loading_logo_e_anime {
  0% {
    transform: translate(-50%, 0);
    opacity: 0;
  }
  100% {
    transform: translate(0);
    opacity: 1;
  }
}

@keyframes loading_logo_d_anime {
  0% {
    transform: translate(20%, -100%);
    opacity: 0;
  }
  100% {
    transform: translate(0);
    opacity: 1;
  }
}

@keyframes loading_logo_s_anime {
  0% {
    transform: rotate(15deg) translate(80%, -50%);
    opacity: 0;
  }
  100% {
    transform: rotate(0) translate(0);
    opacity: 1;
  }
}

@keyframes loading_logo_danae_anime {
  0% {
    transform: translate(30%, 0);
    opacity: 0;
  }
  100% {
    transform: translate(0);
    opacity: 1;
  }
}
