@charset "UTF-8";

.fade-in {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.c-h2 {
  position: relative;
  font-size: 4.8vw;
  font-weight: bold;
  letter-spacing: 0.768vw;
  text-align: center;
}
@media (min-width: 768px) {
  .c-h2 {
    font-size: min(4.4444444444vw, 48px);
    letter-spacing: min(0.6814814815vw, 7.36px);
  }
}
.c-h2::after {
  position: absolute;
  content: "";
  bottom: -2.1333333333vw;
  left: 50%;
  transform: translateX(-50%);
  width: 5.3333333333vw;
  height: 1px;
  background-color: #010101;
}
@media (min-width: 768px) {
  .c-h2::after {
    height: 2px;
    bottom: max(-2.7777777778vw, -30px);
  }
}

.c-button__square-style {
  position: relative;
  display: block;
  text-align: center;
  width: 67.2vw;
  height: 16.8vw;
  padding: 5.3333333333vw 3.2vw 5.6vw 2.1333333333vw;
  box-shadow: 1.0666666667vw 1.0666666667vw 0 0 rgba(0, 0, 0, 0.16);
  border: solid 1px #fff;
  background-color: #a64a97;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 4.2666666667vw;
  font-weight: 500;
  letter-spacing: 0.1706666667vw;
  transition: 0.5s ease;
  overflow: hidden;
}
@media (min-width: 768px) {
  .c-button__square-style {
    width: min(34.7222222222vw, 375px);
    height: min(7.4074074074vw, 80px);
    padding: min(2.037037037vw, 22px) min(1.1111111111vw, 12px) min(2.2222222222vw, 24px) min(0.7407407407vw, 8px);
    font-size: min(2.4074074074vw, 26px);
    letter-spacing: min(0.0962962963vw, 1.04px);
    box-shadow: 8px 8px 0 0 rgba(0, 0, 0, 0.16);
  }
}
.c-button__square-style::after {
  content: "";
  display: block;
  position: absolute;
  background-image: url("../images/sp_arrow.png");
  background-size: 100% 100%;
  right: 4.5333333333vw;
  top: 7.3333333333vw;
  width: 4vw;
  height: 1.3333333333vw;
  z-index: 1;
}
@media (min-width: 768px) {
  .c-button__square-style::after {
    width: min(2.3611111111vw, 25.5px);
    height: min(0.8333333333vw, 9px);
    top: min(3.0555555556vw, 33px);
    right: min(1.8518518519vw, 20px);
  }
}
.c-button__square-style--contact {
  background-color: #010101;
}
@media (min-width: 768px) {
  .c-button__square-style--contact {
    width: min(46.2962962963vw, 500px);
    height: min(9.2592592593vw, 100px);
    padding-top: min(2.962962963vw, 32px);
  }
}
@media (min-width: 768px) {
  .c-button__square-style--contact::after {
    width: min(3.3333333333vw, 36px);
    height: min(0.9259259259vw, 10px);
    top: min(3.7037037037vw, 40px);
    right: min(4.8148148148vw, 52px);
  }
}
.c-button__square-style:hover {
  transition: 0.5s ease;
  cursor: pointer;
}
.c-button__square-style:hover::before {
  content: "";
  position: absolute;
  top: -8%;
  left: -20%;
  width: 40px;
  height: 82%;
  transform: scale(2) rotate(20deg);
  background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0.5) 100%, rgba(255, 255, 255, 0) 0%);
  animation: shiny 3s 0s ease-in-out infinite;
}
.c-button__square-style--point {
  background: #cfa7cd;
}
.c-button__square-style--black {
  background: #010101;
  border: 0;
}

.c-button__square-style--arrow-none::after {
  background-image: inherit;
}

@keyframes shiny {
  0% {
    transform: scale(0) rotate(25deg);
    opacity: 0;
  }
  10% {
    transform: scale(1) rotate(25deg);
    opacity: 1;
  }
  40% {
    transform: scale(100) rotate(25deg);
    opacity: 0.3;
  }
  100% {
    transform: scale(100) rotate(25deg);
    opacity: 0;
  }
}
.c-hamburger {
  position: relative;
  cursor: pointer;
  width: 10.6666666667vw;
  height: 10.6666666667vw;
}
.c-hamburger__bar {
  display: block;
  transition: all 0.4s;
  position: absolute;
  left: 1.6vw;
  height: 2px;
  border-radius: 2px;
  background: #010101;
  width: 6.9333333333vw;
}
.c-hamburger__bar:nth-of-type(1) {
  top: 2.6666666667vw;
}
.c-hamburger__bar:nth-of-type(2) {
  top: 5.3333333333vw;
}
.c-hamburger__bar:nth-of-type(3) {
  top: 8vw;
}
.c-hamburger__text {
  display: block;
  transition: all 0.4s;
  position: absolute;
  left: 1.6vw;
  top: 6.9333333333vw;
  font-size: 2.6666666667vw;
  letter-spacing: 0.4266666667vw;
  font-style: italic;
}
.c-hamburger.is-active .c-hamburger__bar:nth-of-type(1) {
  top: 5.3333333333vw;
  transform: rotate(-45deg);
}
.c-hamburger.is-active .c-hamburger__bar:nth-of-type(2) {
  opacity: 0;
}
.c-hamburger.is-active .c-hamburger__bar:nth-of-type(3) {
  top: 5.3333333333vw;
  transform: rotate(45deg);
}
.c-hamburger.is-active .c-hamburger__text {
  transition: all 0.4s;
  opacity: 0;
}
@media (min-width: 768px) {
  .c-hamburger {
    display: none;
  }
}

/* スライド アクティブ時 */
.swiper-slide {
  transition-property: opacity !important;
}

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

.swiper-img img {
  width: 100%;
  height: 69.0666666667vw;
  object-fit: cover;
}
@media (min-width: 768px) {
  .swiper-img img {
    height: calc(100vh - 90px);
  }
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
@keyframes blur {
  0% {
    transform: scale(0.75);
    opacity: 0;
    filter: blur(50px);
  }
  100% {
    transform: scale(1);
    opacity: 1;
    filter: blur(0);
  }
}
.aioseo-breadcrumbs {
  padding: 1.6vw 3.2vw;
  width: 100%;
  margin: 16vw auto 0;
  font-size: 3.2vw;
  background-color: #eee;
}
@media (min-width: 768px) {
  .aioseo-breadcrumbs {
    margin-top: 90px;
    padding: 12px 60px;
    font-size: 18px;
  }
}

.c-accordion__item.active {
  display: block;
  transition: max-height 0.3s ease;
}

.c-accordion__content {
  display: none;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.c-accordion__header {
  cursor: pointer;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  height: 16vw;
  width: 100%;
  padding: 1.3333333333vw 5.3333333333vw;
  background: #fff;
  z-index: 100;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
}
@media (min-width: 768px) {
  .l-header {
    height: min(8.3333333333vw, 90px);
    padding: 0 min(3.7037037037vw, 40px);
  }
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .l-header__inner {
    margin: 0 auto;
    padding: min(1.3888888889vw, 15px) 0 min(1.2037037037vw, 13px);
  }
}
.l-header__logo {
  display: inline-block;
  font-size: 4.8vw;
  font-weight: bold;
  line-height: 1.33;
}
@media (min-width: 768px) {
  .l-header__logo {
    font-size: min(2.3148148148vw, 25px);
    letter-spacing: min(0.462962963vw, 5px);
  }
}
.l-header__logo a {
  transition: 0.3s ease;
}
.l-header__logo a:hover {
  color: #a64a97;
  transition: 0.3s ease;
}
.l-header__nav {
  display: flex;
  flex-direction: column;
  row-gap: 2.6666666667vw;
  padding-bottom: 2.6666666667vw;
  width: 100%;
  position: absolute;
  background: rgba(1, 1, 1, 0.75);
  top: 16vw;
  left: 0;
  width: 100%;
  transform: translateX(-100%);
  transition: 0.4s ease-in-out;
}
@media (min-width: 768px) {
  .l-header__nav {
    transform: initial;
    flex-direction: row;
    padding-bottom: initial;
    background: initial;
    position: relative;
    top: initial;
    left: initial;
    width: fit-content;
    margin-top: min(1.8518518519vw, 20px);
  }
}
.l-header__nav.is-active {
  transform: translateX(0);
  transition: 0.5s ease-in-out;
}
.l-header__nav-title {
  color: #fff;
  text-align: center;
  font-style: italic;
  font-size: 5.8666666667vw;
  padding-top: 5.3333333333vw;
}
@media (min-width: 768px) {
  .l-header__nav-title {
    display: none;
  }
}
.l-header__nav-title::before {
  content: "-";
  font-size: 5.8666666667vw;
  display: inline-block;
  margin-right: 2.6666666667vw;
}
.l-header__nav-title::after {
  content: "-";
  font-size: 5.8666666667vw;
  display: inline-block;
  margin-left: 2.6666666667vw;
}
.l-header__nav-lists {
  padding: 0 13.3333333333vw;
}
@media (min-width: 768px) {
  .l-header__nav-lists {
    display: flex;
    padding: initial;
    flex-direction: row;
    column-gap: min(3.7037037037vw, 40px);
  }
}
.l-header__nav-list {
  position: relative;
  color: #fff;
  padding: 3.2vw 2.6666666667vw 1.0666666667vw;
  border-bottom: 1px solid #fff;
  font-size: 4.2666666667vw;
}
@media (min-width: 768px) {
  .l-header__nav-list {
    text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.07);
    font-size: min(2.2222222222vw, 24px);
    letter-spacing: min(0.1333333333vw, 1.44px);
    color: #010101;
    border-bottom: initial;
    padding: initial;
  }
}
.l-header__nav-list i {
  margin-left: 8px;
  margin-right: 8px;
  font-size: 3.2vw;
  transform: translateY(-0.2666666667vw);
  pointer-events: none;
}
@media (min-width: 768px) {
  .l-header__nav-list i {
    transform: initial;
    font-size: min(1.4814814815vw, 16px);
  }
}
.l-header__nav-list > a {
  display: inline-block;
  padding: 2.1333333333vw;
  opacity: 1;
  transition: 0.4s ease;
}
@media (min-width: 768px) {
  .l-header__nav-list > a {
    padding: min(1.1111111111vw, 12px);
    width: fit-content;
  }
}
.l-header__nav-list > a:hover {
  transition: 0.7s ease;
  opacity: 0.7;
  color: #a64a97;
  cursor: pointer;
}
.l-header__nav-list > span {
  cursor: pointer;
  display: inline-block;
  padding: 2.1333333333vw;
}
@media (min-width: 768px) {
  .l-header__nav-list > span {
    padding: min(1.1111111111vw, 12px);
  }
}
.l-header__nav-list > ul {
  display: none;
  width: 100%;
}
@media (min-width: 768px) {
  .l-header__nav-list > ul {
    width: 110%;
    position: absolute;
    transform: translateY(12px);
    background: rgba(1, 1, 1, 0.7);
    color: #fff;
    box-shadow: 1px 1px 3px 0 rgba(51, 51, 51, 0.45);
  }
}
.l-header__nav-list > ul > li {
  display: block;
  width: 100%;
  padding: 5.3333333333vw 5.8666666667vw 3.2vw;
}
@media (min-width: 768px) {
  .l-header__nav-list > ul > li {
    border-bottom: 1px solid #fff;
    padding: min(0.7407407407vw, 8px) 0;
    font-size: min(1.6666666667vw, 18px);
    font-weight: 500;
    letter-spacing: normal;
  }
}
.l-header__nav-list > ul > li > a::before {
  content: "";
}
@media (min-width: 768px) {
  .l-header__nav-list > ul > li > a {
    display: inline-block;
    padding: min(1.1111111111vw, 12px);
  }
}
.l-header__nav-list > ul > li > a:hover {
  transition: 0.7s ease;
  opacity: 0.7;
  color: #cfa7cd;
  cursor: pointer;
}

.l-footer {
  background-color: #010101;
  padding: 7.4vw 0;
}
@media (min-width: 768px) {
  .l-footer {
    padding: 30px 0 40px;
  }
}
.l-footer__logo {
  display: block;
  font-size: 4.8vw;
  font-weight: bold;
  line-height: 1.33;
  letter-spacing: 0.768vw;
  text-align: center;
  color: #fff;
  margin-top: 6.4vw;
  transition: 0.3s ease;
  width: fit-content;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .l-footer__logo {
    font-size: min(5.1851851852vw, 56px);
    letter-spacing: min(0.962962963vw, 10.4px);
  }
}
.l-footer__logo:hover {
  color: #a64a97;
  transition: 0.3s ease;
}
.l-footer__copyright {
  display: inline-block;
  width: 100%;
  font-size: 2.6666666667vw;
  line-height: 1.5;
  text-align: center;
  color: #fff;
  margin: 6.6666666667vw auto 0;
}
.l-footer__link {
  text-decoration: underline;
}
.l-footer__link:hover {
  text-decoration: underline;
  color: #a64a97;
  transition: 0.3s ease;
}
@media (min-width: 768px) {
  .l-footer__copyright {
    margin: min(3.7037037037vw, 40px) auto 0;
    font-size: min(1.8518518519vw, 20px);
  }
}