@charset "UTF-8";
/* =========================================================
body
========================================================= */
@media (max-width: 768px) {
  html {
    font-size: 2.6666666667vw;
  }
}
@media (min-width: 769px) {
  html {
    font-size: 0.78125vw;
  }
}
body {
  color: #4A4A4A;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  word-break: break-all;
  font-feature-settings: "palt";
}

body.no-scroll {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
}

input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

*::before, *::after {
  display: block;
}

img {
  width: 100%;
  height: auto;
}

a {
  text-decoration: none;
}

svg.hide {
  display: none;
}

.pc-br {
  display: none;
}

@media (min-width: 769px) {
  .pc-br {
    display: inline;
  }
}
@media (min-width: 769px) {
  .sp-br {
    display: none;
  }
}
.pc-disp {
  display: none;
}

@media (min-width: 769px) {
  .pc-disp {
    display: block;
  }
}
@media (min-width: 769px) {
  .sp-disp {
    display: none;
  }
}
.opacity-link {
  transition: opacity 0.2s ease;
}

@media (hover: hover) {
  .opacity-link:hover {
    opacity: 0.7;
  }
}
.txt-link {
  text-decoration: underline;
}

@media (hover: hover) {
  .txt-link:hover {
    text-decoration: none;
  }
}
.wrapper {
  min-width: 320px;
}

/* =========================================================
contents
========================================================= */
/*------------------------------------------
header
------------------------------------------*/
.page-hd {
  position: relative;
}

@media (min-width: 769px) {
  .page-hd {
    aspect-ratio: 1280/720;
  }
}
.page-hd .mv {
  overflow: hidden;
}

@media (min-width: 769px) {
  .page-hd .mv {
    width: 50vw;
    position: absolute;
    top: 0;
    right: 0;
  }
}
.page-hd .logo {
  opacity: 0;
  z-index: 20;
  transition: opacity 0.5s ease;
}

@media (max-width: 768px) {
  .page-hd .logo {
    width: 70.1333333333vw;
    margin: 40px auto 0;
    position: relative;
    top: -40vh;
    left: 0;
  }
}
@media (min-width: 769px) {
  .page-hd .logo {
    width: 30.859375vw;
    position: absolute;
    top: 50%;
    left: 34%;
    transform: translateY(-50%);
  }
}
.page-hd .scroll {
  aspect-ratio: 1/1;
  position: relative;
}

@media (max-width: 768px) {
  .page-hd .scroll {
    width: 119px;
    margin: 32px auto 0;
  }
}
@media (min-width: 769px) {
  .page-hd .scroll {
    width: 12.265625vw;
    position: absolute;
    bottom: 4.6875vw;
    left: 9.6875vw;
  }
}
.page-hd .scroll::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/ring_down.png) no-repeat center/contain;
  transform-origin: center;
  -webkit-animation: rotate 5s linear infinite;
          animation: rotate 5s linear infinite;
}

.page-hd .scroll::after {
  content: "";
  background: url(../images/ico_arrow01.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
  .page-hd .scroll::after {
    width: 12px;
    height: 18px;
  }
}
@media (min-width: 769px) {
  .page-hd .scroll::after {
    width: 1.25vw;
    height: 2.8125vw;
  }
}
.splash {
  width: 100vw;
  height: 200vh;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  z-index: 10;
  transition: opacity 1s ease 1.8s, z-index 0s 2.8s;
}

.page-hd.is-active .logo {
  opacity: 1;
}

@media (max-width: 768px) {
  .page-hd.is-active .logo {
    -webkit-animation: to-top 1s 0.8s forwards;
            animation: to-top 1s 0.8s forwards;
  }
}
@media (min-width: 769px) {
  .page-hd.is-active .logo {
    -webkit-animation: to-left 1s 0.8s forwards;
            animation: to-left 1s 0.8s forwards;
  }
}
.page-hd.is-active .splash {
  opacity: 0;
  z-index: -100;
}

@-webkit-keyframes to-top {
  0% {
    top: -40vh;
  }
  100% {
    top: 0;
  }
}

@keyframes to-top {
  0% {
    top: -40vh;
  }
  100% {
    top: 0;
  }
}
@-webkit-keyframes to-left {
  0% {
    left: 34%;
  }
  100% {
    left: 9.6875vw;
  }
}
@keyframes to-left {
  0% {
    left: 34%;
  }
  100% {
    left: 9.6875vw;
  }
}
/*------------------------------------------
main contents
------------------------------------------*/
@media (max-width: 768px) {
  .sec-block {
    padding: 0 2.6666666667vw;
  }
}
@media (min-width: 769px) {
  .sec-block {
    padding: 0 10.9375vw;
  }
}
.bg-gradation {
  background: linear-gradient(45deg, #ffebf4, #fffced, #f2fdf6) repeat 0 0/200%;
  -webkit-animation: bggradient 20s ease infinite;
          animation: bggradient 20s ease infinite;
}

.swiper-pagination {
  left: 0 !important;
  bottom: auto !important;
  display: flex;
}

@media (max-width: 768px) {
  .swiper-pagination {
    gap: 2.4vw;
    justify-content: center;
  }
}
@media (min-width: 769px) {
  .swiper-pagination {
    gap: 0.703125vw;
  }
}
.swiper-pagination-bullet {
  margin: 0 !important;
  border: 1px solid #F0A6C0;
  background: #fff;
  opacity: 1;
}

@media (max-width: 768px) {
  .swiper-pagination-bullet {
    width: 2.4vw;
    height: 2.4vw;
  }
}
@media (min-width: 769px) {
  .swiper-pagination-bullet {
    width: 0.703125vw;
    height: 0.703125vw;
  }
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #F0A6C0;
}

/*------------------------------------------
fashion
------------------------------------------*/
@media (max-width: 768px) {
  .sec-fashion {
    margin: -6.4vw auto 0;
    padding-top: 16vw;
    padding-bottom: 21.3333333333vw;
    border-radius: 21.3333333333vw 0 0 0;
  }
}
@media (min-width: 769px) {
  .sec-fashion {
    padding-top: 23.046875vw;
    padding-bottom: 12.5vw;
    border-radius: 14.0625vw 0 0 0;
  }
}
.sec-fashion .block-in {
  position: relative;
}

@media (max-width: 768px) {
  .sec-fashion .sec-ttl {
    width: 57.0666666667vw;
    margin: 0 auto;
  }
}
@media (min-width: 769px) {
  .sec-fashion .sec-ttl {
    width: 38.828125vw;
    transform-origin: left bottom;
    transform: rotate(90deg);
    position: absolute;
    top: -11vw;
    left: 1.171875vw;
    z-index: 2;
  }
}
@media (max-width: 768px) {
  .fashion-list {
    margin: 9.8666666667vw auto 0;
  }
}
@media (max-width: 768px) {
  .fashion-block {
    margin: 0 auto 10.6666666667vw;
  }
}
@media (min-width: 769px) {
  .fashion-block {
    width: 90%;
    margin: 0 auto 9.375vw;
    position: relative;
    display: flex;
    align-items: flex-start;
  }
}
.fashion-block:last-child {
  margin-bottom: 0;
}

.fashion-block .img {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

@media (max-width: 768px) {
  .fashion-block .img {
    width: 89.3333333333vw;
    margin: 0 auto;
  }
}
@media (min-width: 769px) {
  .fashion-block .img {
    width: 43%;
    top: -3.125vw;
  }
}
.fashion-block .swiper-pagination {
  position: relative !important;
}

@media (max-width: 768px) {
  .fashion-block .swiper-pagination {
    margin: 2.6666666667vw auto 0;
  }
}
@media (min-width: 769px) {
  .fashion-block .swiper-pagination {
    margin: 0.78125vw auto 0;
  }
}
.fashion-block .detail {
  position: relative;
  background: #fff;
}

@media (max-width: 768px) {
  .fashion-block .detail {
    padding: 8.5333333333vw 6.6666666667vw 10.6666666667vw;
    box-shadow: 2.6666666667vw 2.6666666667vw 6.9333333333vw rgba(240, 166, 192, 0.33);
  }
}
@media (min-width: 769px) {
  .fashion-block .detail {
    padding: 6.25vw;
    box-shadow: 0.78125vw 0.78125vw 2.03125vw rgba(240, 166, 192, 0.33);
    flex: 1;
  }
}
.fashion-block .detail::before {
  content: "";
  background: #fff;
  position: absolute;
  z-index: 0;
}

@media (max-width: 768px) {
  .fashion-block .detail::before {
    width: 100%;
    height: 24.5333333333vw;
    bottom: 100%;
    left: 0;
  }
}
@media (min-width: 769px) {
  .fashion-block .detail::before {
    height: 100%;
    width: 4.140625vw;
    top: 0;
  }
}
.fashion-block .head {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0 0 0.1em;
  border-bottom: 1px solid #F0A6C0;
  color: #F0A6C0;
  font-family: "DM Serif Display", serif;
  font-size: 3rem;
  line-height: 1;
  text-align: center;
}

.fashion-block .logo {
  border: 1px solid #E2E2E2;
}

@media (max-width: 768px) {
  .fashion-block .logo {
    width: 32vw;
    margin: 6.4vw auto 0;
  }
}
@media (min-width: 769px) {
  .fashion-block .logo {
    width: 9.375vw;
    margin: 1.875vw auto 0;
  }
}
.fashion-block .logo a {
  display: block;
}

.fashion-block .shop {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
}

@media (max-width: 768px) {
  .fashion-block .shop {
    margin: 4.2666666667vw auto 0;
  }
}
@media (min-width: 769px) {
  .fashion-block .shop {
    margin: 1.25vw auto 0;
  }
}
.fashion-block .item {
  font-size: 1.2rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .fashion-block .item {
    margin: 8.5333333333vw auto 0;
  }
}
@media (min-width: 769px) {
  .fashion-block .item {
    margin: 2.5vw auto 0;
  }
}
@media (min-width: 769px) {
  .fashion-block:nth-child(odd) {
    margin-right: 0;
  }
}
@media (min-width: 769px) {
  .fashion-block:nth-child(odd) .detail::before {
    right: 100%;
  }
}
@media (min-width: 769px) {
  .fashion-block:nth-child(even) {
    margin-left: 0;
    flex-direction: row-reverse;
  }
}
@media (min-width: 769px) {
  .fashion-block:nth-child(even) .detail::before {
    left: 100%;
  }
}
/*------------------------------------------
snap
------------------------------------------*/
@media (max-width: 768px) {
  .sec-snap {
    padding-top: 18.1333333333vw;
    padding-bottom: 21.3333333333vw;
  }
}
@media (min-width: 769px) {
  .sec-snap {
    padding-top: 11.5625vw;
    padding-bottom: 9.375vw;
  }
}
.sec-snap .block-in {
  position: relative;
}

@media (max-width: 768px) {
  .sec-snap .sec-ttl {
    width: 35.7333333333vw;
    margin: 0 auto;
  }
}
@media (min-width: 769px) {
  .sec-snap .sec-ttl {
    width: 24.21875vw;
    position: absolute;
    top: -2.421875vw;
    right: 7.03125vw;
  }
}
@media (max-width: 768px) {
  .sec-snap .bnr {
    margin: 21.3333333333vw auto 0;
  }
}
@media (min-width: 769px) {
  .sec-snap .bnr {
    margin: 9.375vw auto 0;
  }
}
.sec-snap .bnr a {
  display: block;
}

@media (max-width: 768px) {
  .snap-list {
    margin: 6.4vw auto 0;
    padding: 0 3.4666666667vw;
  }
}
@media (max-width: 768px) {
  .snap-block {
    margin: 0 auto 12.8vw;
  }
}
@media (min-width: 769px) {
  .snap-block {
    width: 63.75vw;
    margin: 0 auto 7.8125vw;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.snap-block:last-child {
  margin-bottom: 0;
}

.snap-block .box01 {
  display: flex;
  justify-content: space-between;
}

@media (min-width: 769px) {
  .snap-block .box01 {
    width: 51.59%;
  }
}
.snap-block .brand {
  position: relative;
  display: flex;
  align-items: flex-end;
}

.snap-block .brand::before {
  content: "";
  width: 2px;
  height: 100%;
  background: #F0A6C0;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.snap-block .brand span {
  display: block;
  background: #fff;
  font-family: "DM Serif Display", serif;
  color: #F0A6C0;
  font-size: 1.7rem;
  line-height: 3px;
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;
  position: relative;
  z-index: 1;
}

.snap-block .img {
  position: relative;
}

@media (max-width: 768px) {
  .snap-block .img {
    width: 84.5333333333vw;
  }
}
@media (min-width: 769px) {
  .snap-block .img {
    width: 94.53%;
  }
}
.snap-block .img::before {
  content: "";
  background: url(../images/bg_bar01.png) no-repeat center/cover;
  position: absolute;
  bottom: 0;
}

@media (max-width: 768px) {
  .snap-block .img::before {
    width: 3.2vw;
    height: 92.8vw;
  }
}
@media (min-width: 769px) {
  .snap-block .img::before {
    width: 0.9375vw;
    height: 27.1875vw;
  }
}
@media (max-width: 768px) {
  .snap-block .swiper-pagination {
    top: calc(100% + 2.6vw);
  }
}
@media (min-width: 769px) {
  .snap-block .swiper-pagination {
    top: calc(100% + .7vw);
  }
}
@media (max-width: 768px) {
  .snap-block .box02 {
    width: 81.3333333333vw;
    margin: 6.4vw auto 0;
    display: flex;
    align-items: flex-start;
  }
}
@media (min-width: 769px) {
  .snap-block .box02 {
    width: 43.75%;
  }
}
.snap-block .logo {
  border: 1px solid #E2E2E2;
}

@media (max-width: 768px) {
  .snap-block .logo {
    width: 19.2vw;
    margin: 0 4.2666666667vw 0 0;
  }
}
@media (min-width: 769px) {
  .snap-block .logo {
    width: 7.5vw;
  }
}
.snap-block .logo a {
  display: block;
}

.snap-block .txt {
  font-size: 1.2rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .snap-block .txt {
    flex: 1;
  }
}
@media (min-width: 769px) {
  .snap-block .txt {
    margin: 1.875vw auto 0;
  }
}
@media (max-width: 768px) {
  .snap-block:nth-child(odd) .img {
    padding: 0 3.2vw 0 0;
  }
}
@media (min-width: 769px) {
  .snap-block:nth-child(odd) .img {
    padding: 0 0.9375vw 0 0;
  }
}
.snap-block:nth-child(odd) .img::before {
  right: 0;
}

.snap-block:nth-child(even) .box01 {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  .snap-block:nth-child(even) .img {
    padding: 0 0 0 3.2vw;
  }
}
@media (min-width: 769px) {
  .snap-block:nth-child(even) .img {
    padding: 0 0 0 0.9375vw;
  }
}
.snap-block:nth-child(even) .img::before {
  left: 0;
}

@media (max-width: 768px) {
  .snap-block:nth-child(even) .swiper-pagination {
    padding: 0 0 0 3.2vw;
  }
}
@media (min-width: 769px) {
  .snap-block:nth-child(even) .swiper-pagination {
    padding: 0 0 0 0.9375vw;
  }
}
@media (min-width: 769px) {
  .snap-block:nth-child(3n-2) {
    margin-left: 6.25vw;
  }
}
@media (min-width: 769px) {
  .snap-block:nth-child(3n-1) {
    margin-left: 0;
  }
}
@media (min-width: 769px) {
  .snap-block:nth-child(3n) {
    margin-right: 0;
  }
}
/*------------------------------------------
movie
------------------------------------------*/
@media (max-width: 768px) {
  .sec-movie {
    padding-top: 17.6vw;
    padding-bottom: 21.3333333333vw;
    border-radius: 0 21.3333333333vw 0 0;
  }
}
@media (min-width: 769px) {
  .sec-movie {
    padding-top: 12.5vw;
    padding-bottom: 12.5vw;
    border-radius: 0 14.0625vw 0 0;
  }
}
.sec-movie .block-in {
  position: relative;
}

@media (min-width: 769px) {
  .sec-movie .block-in {
    width: 64.84375vw;
    padding: 0 0 0 7.03125vw;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .sec-movie .sec-ttl {
    width: 45.6vw;
    margin: 0 auto 9.8666666667vw;
  }
}
@media (min-width: 769px) {
  .sec-movie .sec-ttl {
    width: 31.015625vw;
    transform-origin: left bottom;
    transform: rotate(90deg);
    position: absolute;
    top: -8vw;
    left: 0;
  }
}
.sec-movie .movie {
  aspect-ratio: 16/9;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .sec-movie .movie {
    box-shadow: 2.6666666667vw 2.6666666667vw 6.9333333333vw rgba(240, 166, 192, 0.33);
  }
}
@media (min-width: 769px) {
  .sec-movie .movie {
    box-shadow: 0.78125vw 0.78125vw 2.03125vw rgba(240, 166, 192, 0.33);
  }
}
@media (max-width: 768px) {
  .sec-movie .movie + .movie {
    margin: 6.4vw auto 0;
  }
}
@media (min-width: 769px) {
  .sec-movie .movie + .movie {
    margin: 6.25vw auto 0;
  }
}
.sec-movie .movie iframe {
  width: 100%;
  height: 100%;
}

/*------------------------------------------
event
------------------------------------------*/
@media (max-width: 768px) {
  .sec-event {
    padding-top: 18.4vw;
    padding-bottom: 32vw;
  }
}
@media (min-width: 769px) {
  .sec-event {
    padding-top: 11.71875vw;
    padding-bottom: 12.5vw;
  }
}
@media (max-width: 768px) {
  .sec-event .sec-ttl {
    width: 41.3333333333vw;
    margin: 0 auto;
  }
}
@media (min-width: 769px) {
  .sec-event .sec-ttl {
    width: 28.203125vw;
  }
}
@media (max-width: 768px) {
  .event-list {
    margin: 9.8666666667vw auto 0;
  }
}
@media (min-width: 769px) {
  .event-list {
    margin: 8.671875vw auto 0;
  }
}
.event-block {
  position: relative;
}

@media (max-width: 768px) {
  .event-block {
    margin: 0 auto 12.8vw;
  }
}
@media (min-width: 769px) {
  .event-block {
    width: 90%;
    margin: 0 auto 10.625vw;
    padding: 0 0 0 36.3%;
  }
}
.event-block:last-child {
  margin-bottom: 0;
}

@media (min-width: 769px) {
  .event-block:nth-child(odd) {
    margin-left: 0;
  }
}
@media (min-width: 769px) {
  .event-block:nth-child(even) {
    margin-right: 0;
  }
}
.event-block .img {
  z-index: 1;
}

@media (max-width: 768px) {
  .event-block .img {
    width: 81.3333333333vw;
    margin: 0 auto;
    position: relative;
  }
}
@media (min-width: 769px) {
  .event-block .img {
    width: 42%;
    position: absolute;
    top: -4.375vw;
    left: 0;
  }
}
.event-block .img::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 100%;
  background: url(../images/bg_bar01.png) no-repeat center/cover;
}

@media (max-width: 768px) {
  .event-block .img::before {
    width: 3.2vw;
    height: 66.6666666667vw;
  }
}
@media (min-width: 769px) {
  .event-block .img::before {
    width: 0.9375vw;
    height: 19.53125vw;
  }
}
.event-block .detail {
  position: relative;
}

@media (max-width: 768px) {
  .event-block .detail {
    margin: -21.3333333333vw auto 0;
    padding: 29.8666666667vw 6.6666666667vw 10.6666666667vw;
  }
}
@media (min-width: 769px) {
  .event-block .detail {
    padding: 3.125vw 2.5vw 3.125vw 6.71875vw;
  }
}
.event-block .detail > * {
  margin: 1em auto 0;
}

.event-block .detail > *:first-child {
  margin-top: 0;
}

.event-block [class*=frame-] {
  margin: 0;
  position: absolute;
  background: #F0A6C0;
  transition: width 0.3s linear, height 0.3s linear;
}

.event-block .frame-t,
.event-block .frame-b {
  width: 0;
  height: 2px;
}

.event-block .frame-l,
.event-block .frame-r {
  width: 2px;
  height: 0;
}

.event-block .frame-t {
  left: 0;
  top: 0;
}

.event-block .frame-b {
  right: 0;
  bottom: 0;
  transition-delay: 0.6s;
}

.event-block .frame-r {
  top: 0;
  right: 0;
  transition-delay: 0.3s;
}

.event-block .frame-l {
  bottom: 0;
  left: 0;
  transition-delay: 0.9s;
}

.event-block .detail.is-active .frame-t,
.event-block .detail.is-active .frame-b {
  width: 100%;
}

.event-block .detail.is-active .frame-l,
.event-block .detail.is-active .frame-r {
  height: 100%;
}

.event-block .ttl {
  color: #F0A6C0;
  font-size: 1.8rem;
  line-height: 1.5555555556;
  font-weight: 700;
}

.event-block .head {
  font-size: 1.6rem;
  line-height: 1.375;
  font-weight: 700;
}

.event-block .txt01 {
  font-size: 1.4rem;
  line-height: 1.4285714286;
}

.event-block .txt02 {
  font-size: 1.2rem;
  line-height: 1.6666666667;
}

@media (max-width: 768px) {
  .event-block .note {
    margin: 1.6vw auto 0;
  }
}
.event-block .list li {
  margin: 0 0 0 1em;
}

.event-block .list li::before {
  content: "※";
  display: inline;
  margin: 0 0 0 -1em;
}

@media (max-width: 768px) {
  .event-block .ig-link {
    margin: 5.3333333333vw auto 0;
  }
}
@media (min-width: 769px) {
  .event-block .ig-link {
    margin: 1.5625vw auto 0;
  }
}
.event-block .ig-link a {
  background: #000;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .event-block .ig-link a {
    height: 17.0666666667vw;
  }
}
@media (min-width: 769px) {
  .event-block .ig-link a {
    height: 5vw;
  }
}
.event-block .ig-link a::before {
  content: "";
  width: 1em;
  height: 1em;
  background: #fff;
  -webkit-mask: url(../images/ico_ig.svg) no-repeat center/contain;
          mask: url(../images/ico_ig.svg) no-repeat center/contain;
}

@media (max-width: 768px) {
  .event-block .ig-link a::before {
    margin-right: 1.3333333333vw;
  }
}
@media (min-width: 769px) {
  .event-block .ig-link a::before {
    margin-right: 0.390625vw;
  }
}
.event-block .ig-link a::after {
  content: "";
  background: url(../images/ico_arrow02.svg) no-repeat center/contain;
}

@media (max-width: 768px) {
  .event-block .ig-link a::after {
    width: 7.2vw;
    height: 1.8666666667vw;
    margin-left: 4.8vw;
  }
}
@media (min-width: 769px) {
  .event-block .ig-link a::after {
    width: 2.109375vw;
    height: 0.546875vw;
    margin-left: 3.4375vw;
  }
}
.event-block .pink-box {
  background: #FFF5F9;
}

@media (max-width: 768px) {
  .event-block .pink-box {
    margin: 6.4vw auto 0;
    padding: 6.4vw;
  }
}
@media (min-width: 769px) {
  .event-block .pink-box {
    margin: 1.875vw auto 0;
    padding: 2.5vw;
  }
}
.event-block .pink-box > * {
  margin: 1em auto 0;
}

.event-block .pink-box > *:first-child {
  margin-top: 0;
}

/*------------------------------------------
profile
------------------------------------------*/
@media (max-width: 768px) {
  .sec-profile {
    padding-top: 17.8666666667vw;
    padding-bottom: 30.9333333333vw;
    border-radius: 21.3333333333vw 0 0 0;
  }
}
@media (min-width: 769px) {
  .sec-profile {
    padding-top: 12.5vw;
    padding-bottom: 12.5vw;
    border-radius: 14.0625vw 0 0 0;
  }
}
.sec-profile .block-in {
  position: relative;
}

@media (min-width: 769px) {
  .sec-profile .block-in {
    width: 64.296875vw;
    margin: 0 auto;
    padding: 0 0 0 6.71875vw;
  }
}
@media (max-width: 768px) {
  .sec-profile .sec-ttl {
    width: 49.3333333333vw;
    margin: 0 auto;
  }
}
@media (min-width: 769px) {
  .sec-profile .sec-ttl {
    width: 33.59375vw;
    transform-origin: left bottom;
    transform: rotate(90deg);
    position: absolute;
    top: -7.7vw;
    left: 0;
  }
}
.profile-block {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .profile-block {
    margin: 9.8666666667vw auto 0;
  }
}
@media (max-width: 768px) {
  .profile-block .img {
    box-shadow: 2.6666666667vw 2.6666666667vw 6.9333333333vw rgba(240, 166, 192, 0.33);
  }
}
@media (min-width: 769px) {
  .profile-block .img {
    box-shadow: 0.78125vw 0.78125vw 2.03125vw rgba(240, 166, 192, 0.33);
  }
}
.profile-block .detail {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .profile-block .detail {
    width: 81.3333333333vw;
    margin: -2.6666666667vw auto 0;
  }
}
@media (min-width: 769px) {
  .profile-block .detail {
    margin: -1.328125vw auto 0;
    display: grid;
    grid-template-columns: 21.171875vw 1fr;
    grid-template-rows: -webkit-max-content 1fr;
    grid-template-rows: max-content 1fr;
    grid-template-areas: "name links" "text text";
    grid-gap: 2.265625vw;
  }
}
@media (max-width: 768px) {
  .profile-block .detail > * {
    margin: 6.6666666667vw auto 0;
  }
}
.profile-block .detail > *:first-child {
  margin-top: 0;
}

@media (max-width: 768px) {
  .profile-block .name {
    width: 58.6666666667vw;
    margin: 0 auto;
  }
}
@media (min-width: 769px) {
  .profile-block .name {
    grid-area: name;
  }
}
.profile-block .txt {
  font-size: 1.4rem;
  line-height: 1.4285714286;
}

@media (min-width: 769px) {
  .profile-block .txt {
    grid-area: text;
  }
}
.profile-block .link-list {
  display: flex;
  align-items: center;
}

@media (min-width: 769px) {
  .profile-block .link-list {
    grid-area: links;
    align-self: end;
  }
}
.profile-block .link-list .site {
  font-family: "DM Serif Display", serif;
  color: #F0A6C0;
  font-size: 2.2rem;
  line-height: 1;
  display: flex;
  align-items: center;
}

.profile-block .link-list .site::after {
  content: "";
  width: 0.8em;
  height: 0.59em;
  margin-left: 0.5em;
  background: url(../images/ico_external.svg) no-repeat center/contain;
}

@media (max-width: 768px) {
  .profile-block .link-list .site {
    margin-right: 9.0666666667vw;
  }
}
@media (min-width: 769px) {
  .profile-block .link-list .site {
    margin-right: 2.65625vw;
  }
}
@media (max-width: 768px) {
  .profile-block .link-list .sns {
    width: 6.1333333333vw;
    height: 5.3333333333vw;
    margin-right: 5.3333333333vw;
  }
}
@media (min-width: 769px) {
  .profile-block .link-list .sns {
    width: 1.796875vw;
    height: 1.5625vw;
    margin-right: 1.5625vw;
  }
}
.profile-block .link-list .sns:last-child {
  margin-right: 0;
}

.profile-block .link-list .sns img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/*------------------------------------------
footer
------------------------------------------*/
.page-ft {
  position: relative;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .page-ft {
    height: 49.0666666667vw;
  }
}
@media (min-width: 769px) {
  .page-ft {
    height: 8.4375vw;
  }
}
.page-ft .copyright {
  font-family: "DM Serif Display", serif;
  line-height: 1;
}

@media (max-width: 768px) {
  .page-ft .copyright {
    font-size: 1rem;
  }
}
@media (min-width: 769px) {
  .page-ft .copyright {
    font-size: 1.2rem;
  }
}
.pagetop {
  position: absolute;
}

@media (max-width: 768px) {
  .pagetop {
    bottom: 34.4vw;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (min-width: 769px) {
  .pagetop {
    bottom: 6.640625vw;
    right: 3.75vw;
  }
}
.pagetop a {
  display: block;
  aspect-ratio: 1/1;
  position: relative;
}

@media (max-width: 768px) {
  .pagetop a {
    width: 32.8vw;
  }
}
@media (min-width: 769px) {
  .pagetop a {
    width: 11.71875vw;
  }
}
.pagetop a::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/ring_down.png) no-repeat center/contain;
  transform-origin: center;
  -webkit-animation: rotate 5s linear infinite;
          animation: rotate 5s linear infinite;
}

.pagetop a::after {
  content: "";
  background: url(../images/ico_arrow01.svg) no-repeat center/contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(180deg);
}

@media (max-width: 768px) {
  .pagetop a::after {
    width: 3.2vw;
    height: 4.8vw;
  }
}
@media (min-width: 769px) {
  .pagetop a::after {
    width: 1.25vw;
    height: 2.8125vw;
  }
}
/*------------------------------------------
animation
------------------------------------------*/
@-webkit-keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(365deg);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(365deg);
  }
}
@-webkit-keyframes bggradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes bggradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.img-anime {
  position: relative;
  -webkit-clip-path: polygon(0 0, -25% 0, 0 100%, 0% 100%);
          clip-path: polygon(0 0, -25% 0, 0 100%, 0% 100%);
  transition: -webkit-clip-path 0.5s cubic-bezier(0.18, 0.85, 0.85, 0.94);
  transition: clip-path 0.5s cubic-bezier(0.18, 0.85, 0.85, 0.94);
  transition: clip-path 0.5s cubic-bezier(0.18, 0.85, 0.85, 0.94), -webkit-clip-path 0.5s cubic-bezier(0.18, 0.85, 0.85, 0.94);
}

.img-anime::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #F0A6C0;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-clip-path: polygon(-25% 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(-25% 0, 100% 0, 100% 100%, 0 100%);
  transition: -webkit-clip-path 0.5s cubic-bezier(0.18, 0.85, 0.85, 0.94) 0.6s;
  transition: clip-path 0.5s cubic-bezier(0.18, 0.85, 0.85, 0.94) 0.6s;
  transition: clip-path 0.5s cubic-bezier(0.18, 0.85, 0.85, 0.94) 0.6s, -webkit-clip-path 0.5s cubic-bezier(0.18, 0.85, 0.85, 0.94) 0.6s;
  z-index: 5;
}

.img-anime > * {
  opacity: 0;
  transition: opacity 0s 0.5s;
}

.img-anime.is-active {
  -webkit-clip-path: polygon(0 0, 100% 0%, 125% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 125% 100%, 0% 100%);
}

.img-anime.is-active::before {
  -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 125% 100%);
          clip-path: polygon(100% 0, 100% 0, 100% 100%, 125% 100%);
}

.img-anime.is-active > * {
  opacity: 1;
}