/* ------------------------------------------
ページ共通
------------------------------------------*/
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #FADBE1;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic Medium", "Yu Gothic", "Meiryo", sans-serif, "Onest", "Helvetica Neue", Arial;
}

p {
  color: #E5005A;
  font-weight: 400;
}

img {
    width: 100%;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: #E5005A;
}

.pc {
    display: block;
}

.sp {
    display: none;
}

.wrapper {
    width: 100%;
}

@media screen and (max-width: 768px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }
}

h2 {
  position: relative;
  color: #E5005A;
  text-align: center;
  font-size: clamp(23px, 0.85vw + 19.8px, 30px);
  margin-top: 152px;
  margin-bottom: 85px;
  font-family: "Hiragino Maru Gothic Pro", "Hiragino Maru Gothic ProN", "Yu Gothic Medium", "YuGothic", "Meiryo", sans-serif;
}
h2::before {
  background: url(../img/icon_flower.svg) no-repeat center center/cover;
  position: absolute;
  content: "";
  aspect-ratio: 1/1;
  transform: translateX(-50%);
  width: 22px;
  inset: -30px 0 0 50%;
}
h2::after {
  background: url(../img/ttl_line.svg) no-repeat center center/cover;
  position: absolute;
  content: "";
  aspect-ratio: 240/2;
  transform: translateX(-50%);
  width: 240px;
  inset: 60px 0 0 50%;
}
@media (max-width: 768px) {
  h2 {
    margin-top: 27.95vw;
    margin-bottom: 12.82vw;
  }
  h2::before {
    width: 18px;
  }
  h2::after {
    width: 184px;
    aspect-ratio: 184/2;
    inset: 50px 0 0 50%;
  }
}

/* ------------------------------------------
メニューエリア
------------------------------------------*/
.menu_area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 60px;
    width: 100%;
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
}

.logo {
    width: min(100%, 181px);
    height: auto;
}

.logo a {
    display: block;
}

.menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5%;
    width: 100%;
    margin-left: 50px;
}

.menu li {
    transition: 0.3s;
}

.menu li:hover {
    opacity: 0.7;
}

.menu li a {
    font-size: 1.25rem;
    font-family: "Hiragino Maru Gothic Pro", "Hiragino Maru Gothic ProN", "Yu Gothic Medium", "YuGothic", "Meiryo", sans-serif;
    display: block;
}

@media screen and (max-width: 768px) {
    .menu_area {
        flex-direction: column;
        padding: 14px 16px;
    }

    .logo {
        width: min(30%, 181px);
        margin-bottom: 14px;
    }

    .menu {
        margin-left: 0;
        justify-content: center;
    }

    .menu li a {
        font-size: 3.08vw;
    }
}

/* ------------------------------------------
トップエリア
------------------------------------------*/
.top_area {
  width: 100%;
  aspect-ratio: 1920/886;
  background-image: url(../img/kv_bg_pc.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.top_area_title {
  display: flex;
  align-items: center;
  transform: translateY(-50px);
}
.top_area_title .kv_logo {
  width: min(15vw, 233px);
  aspect-ratio: 1;
}
.top_area_title div:nth-of-type(2) {
  width: min(50vw, 960px);
  aspect-ratio: 480/167;
}
.top_area_character {
  margin: 0 auto;
  width: min(50vw, 816px);
  aspect-ratio: 600/159;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .top_area {
    aspect-ratio: 390/520;
    background-image: url(../img/kv_bg_sp.png);
  }
  .top_area_title {
    flex-direction: column;
    transform: translateY(-7.69vw);
  }
  .top_area_title .kv_logo {
    width: 36.9vw;
  }
  .top_area_title div:nth-of-type(2) {
    width: 95vw;
  }
  .top_area_character {
    width: 84.36vw;
  }
}

/* ------------------------------------------
キャラクター紹介エリア
------------------------------------------*/
.character_area {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 0 15px;
}
.character_area > div:nth-of-type(1) {
  margin-bottom: 45px;
}
.character_area > div:nth-of-type(2) {
  flex-direction: row-reverse;
}
.character_area_item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 70px;
  padding: clamp(15px, -0.718rem + 6.79vw, 70px);
  border-radius: 50px;
  background-color: #FFF5F4;
}
.character_area_item > img {
  width: min(40%, 390px);
  aspect-ratio: 1;
  margin: 0 auto;
}
.character_area_item_details {
  width: 50%;
}
.character_area_item_details > div {
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
}
.character_area_item_details > div > span {
  color: #E5005A;
  font-size: 12px;
  padding-left: 15px;
  padding-bottom: 3px;
}
.character_area_item_details > div > img {
  width: min(100%, 330px);
  aspect-ratio: 330/36;
}
.character_area_item_details p {
  font-size: clamp(16px, 0.94rem + 0.25vw, 18px);
  line-height: 238.889%;
}
@media (max-width: 768px) {
  .character_area > div:nth-of-type(1) {
    margin-bottom: 40px;
  }
  .character_area > div:nth-of-type(2) {
    flex-direction: column;
  }
  .character_area_item {
    flex-direction: column;
    gap: 55px;
  }
  .character_area_item > img {
    width: 71.79vw;
    margin-top: 45px;
  }
  .character_area_item_details {
    width: 100%;
    margin-bottom: 45px;
  }
  .character_area_item_details > div {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 25px;
  }
  .character_area_item_details > div > span {
    font-size: clamp(10px, 1vw + 8px, 12px);
    padding-left: 1.28vw;
  }
  .character_area_item_details > div > img {
    width: min(60.2vw, 330px);
  }
}

/* ------------------------------------------
ストーリーエリア
------------------------------------------*/
.story_area {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 0 15px;
}
.story_area_wrap {
  display: grid;
  grid-template-columns: min(20vw, 240px) 1fr;
  gap: min(5vw, 95px);
}
.story_area_wrap .inner_text {
  background-color: #E95193;
  padding: 60px clamp(15px, -0.718rem + 6.79vw, 70px);
  border-radius: 50px;
  margin-bottom: 70px;
}
.story_area_wrap .inner_text > p {
  color: #ffffff;
  margin-bottom: clamp(30px, 1.574rem + 1.23vw, 40px);
  font-size: clamp(16px, 0.94rem + 0.25vw, 18px);
  line-height: 238.889%;
}
.story_area_wrap .inner > img {
  width: min(100%, 528px);
  aspect-ratio: 528/189;
}
@media (max-width: 768px) {
  .story_area {
    width: 100%;
  }
  .story_area_wrap {
    display: block;
  }
  .story_area_wrap .inner_text > p {
    line-height: 212.5%;
  }
  .story_area_wrap .inner > img {
    width: min(92.31vw, 528px);
    aspect-ratio: 120/43;
    display: block;
    margin: 0 auto;
  }
  .story_area_wrap .logo_pc {
    display: none;
  }
}

/* ------------------------------------------
※20周年ロゴ、SPサイズ
------------------------------------------*/
@media (max-width: 768px) {
  .logo_sp {
    width: 30.77vw;
    aspect-ratio: 120/113;
    margin: 60px auto 0;
  }
}

/* ------------------------------------------
イベントエリア
------------------------------------------*/
.event_area {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 0 15px;
}
.event_area_inner {
  background-color: #ffffff;
  border-radius: 50px;
  padding: 71px;
  margin: 0 auto;
  position: relative;
}
.event_area_inner::before {
  position: absolute;
  content: "";
  background: url(../img/event_img.png) no-repeat center center/cover;
  width: 109px;
  aspect-ratio: 109/129;
  left: 0;
  top: -80px;
}
.event_area_inner > p {
  text-align: center;
  font-size: clamp(18px, 2.55vw - 1.6px, 29px);
}
@media (max-width: 768px) {
  .event_area_inner {
    padding: 13.33vw;
  }
  .event_area_inner::before {
    width: min(109px, 20.77vw);
    aspect-ratio: 81/95;
    top: -40px;
  }
}

/* ------------------------------------------
キャンペーンエリア
------------------------------------------*/
.campain_area {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 0 15px;
  margin-bottom: 180px;
}
.campain_area_inner {
  background-color: #ffffff;
  border-radius: 50px;
  padding: 71px;
  margin: 0 auto;
  position: relative;
}
.campain_area_inner::before {
  position: absolute;
  content: "";
  background: url(../img/campain_img.png) no-repeat center center/cover;
  width: 106px;
  aspect-ratio: 106/129;
  right: 0;
  top: -80px;
}
.campain_area_inner > p {
  text-align: center;
  font-size: clamp(18px, 2.55vw - 1.6px, 29px);
}
@media (max-width: 768px) {
  .campain_area {
    margin-bottom: 80px;
  }
  .campain_area_inner {
    padding: 13.33vw;
  }
  .campain_area_inner::before {
    width: min(109px, 20.77vw);
    aspect-ratio: 81/95;
    top: -40px;
  }
}