@charset "UTF-8";
* {
  box-sizing: border-box;
}

:root {
  --site-title-size: 120px;
  --txt-black: #511043;
  --txt-pink: #FF007F;
  --shd-pink: #FF007F40;
  --header-height: 70px;
}

/* 大枠 */
html,
body {
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  -webkit-overflow-scrolling: touch !important;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Lato", "Noto Sans JP", sans-serif;
}

html {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  color: var(--txt-black);
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
  position: relative;
}
body::before {
  content: "";
  width: 100vw;
  height: 100vh;
  background: linear-gradient(rgba(0, 163, 250, 0.5019607843) 20%, transparent 60%), linear-gradient(rgba(191, 138, 244, 0.5019607843) 40%, transparent 80%), linear-gradient(rgba(255, 128, 191, 0.5019607843) 60%, transparent 90%), linear-gradient(rgba(255, 228, 149, 0.5019607843) 80%, transparent 100%);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
}
body.wrap {
  overflow: hidden;
}
body #wrapper {
  height: auto;
}

#wrapper {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

#screen {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 200;
}

#starCanvas {
  width: 100vw;
  height: 100vh;
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
}

@media print {
  html,
  html body {
    overflow: visible !important;
  }
}
/* アクセシビリティ */
img {
  image-rendering: auto;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  box-shadow: #000 0 0 0; /* ロールオーバー対応 */
}

img,
x:-moz-any-link,
x:default {
  box-shadow: #000 0 0 0; /* IE7対応 */
}

/* リンク */
a {
  display: inline-block;
}
a:link, a:visited, a:active {
  color: inherit;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  a:hover {
    color: inherit;
    opacity: 0.7;
    text-decoration: none !important;
  }
}

.font_Sans {
  font-family: "Lato", "Noto Sans JP", sans-serif;
}
.font_Serif {
  font-family: "Noto Serif JP", serif;
}
.font_hachi {
  font-family: "Hachi Maru Pop", cursive, sans-serif;
}
.font_mplus {
  font-family: "M PLUS Rounded 1c", sans-serif;
}

.container {
  width: 100%;
  max-width: 1040px;
  padding: 0 20px;
  margin: 0 auto;
  position: relative;
}

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

.sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

.indent_list li {
  text-indent: -1em;
  padding-left: 1em;
}
.indent_list.circle_list li::before {
  content: "●";
}
.indent_list.dot_list li::before {
  content: "・";
}
.indent_list.kome_list li::before {
  content: "※";
}

/* ▼ タイトル
--------------------------------------- */
#site_title {
  flex: 0 0 var(--site-title-size);
  max-width: var(--site-title-size);
  width: var(--site-title-size);
  overflow: hidden;
}
#site_title a {
  display: block;
}

/* ▼▼▼ ヘッダー
====================================================== */
header {
  width: 100%;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  overflow: visible;
}
header .header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  width: 100%;
  padding: 0 var(--header-height) 0 14px;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.5333333333);
  backdrop-filter: blur(5px);
  position: relative;
  z-index: 99999;
}
@media screen and (min-width: 768px) {
  header .header_inner {
    padding: 0 110px 0 40px;
  }
}

.menu {
  --menu-width: var(--header-height);
  --menu-height: var(--header-height);
  --menu-bar-color:var(--txt-pink);
  --menu-bar-width:30px;
  --menu-bar-height:4px;
  --menu-bar-gap:10px;
  display: block;
  width: var(--menu-width);
  height: var(--menu-height);
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 2000;
  transform: translateY(-50%);
}
.menu .icon {
  display: block;
  width: var(--menu-bar-width);
  height: var(--menu-bar-height);
  background: var(--menu-bar-color);
  border-radius: calc(var(--menu-bar-height) / 2);
  position: absolute;
  top: 50%;
  right: calc((var(--menu-width) - var(--menu-bar-width)) / 2);
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  transition: all 0.3s;
}
.menu .icon::before, .menu .icon::after {
  content: "";
  width: var(--menu-bar-width);
  height: var(--menu-bar-height);
  border-radius: calc(var(--menu-bar-height) / 2);
  background: var(--menu-bar-color);
  position: absolute;
  transition: all 0.3s;
  right: 0;
}
.menu .icon::before {
  top: calc(-1 * var(--menu-bar-gap));
}
.menu .icon::after {
  bottom: calc(-1 * var(--menu-bar-gap));
}
.menu .icon span:before {
  content: "Menu";
  color: var(--menu-bar-color);
  font-size: 0.75rem;
  position: absolute;
  left: 50%;
  bottom: -30px;
  transform: translate(-50%, 0%);
}
.menu .icon.active {
  background: transparent;
}
.menu .icon.active::before {
  transform: rotate(-135deg);
  top: 0;
}
.menu .icon.active::after {
  transform: rotate(135deg);
  bottom: 0;
}
.menu .icon.active span:before {
  content: "Close";
}

/* グローバルナビゲーション */
#gnav {
  transition: 0.5s ease-in-out;
  float: none;
  max-width: 100%;
  width: 340px;
  max-height: 100vh;
  margin: 0;
  background: #FFF;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1000;
  overflow: auto;
  transform: translateX(100%);
}
#gnav.open {
  transform: translateX(0);
}

.gnav {
  padding: var(--header-height) 20px 20px;
  height: 100vh;
}
.gnav_main_list {
  --bd-color: #D8D8D8;
  background: #FFF;
}
.gnav_main_list li {
  position: relative;
  border-bottom: 1px solid var(--bd-color);
}
.gnav_main_list a {
  display: block;
  padding: 10px;
}
.gnav_main_jp {
  display: block;
  font-size: 1rem;
  font-weight: 600;
}
.gnav_main_en {
  display: block;
  padding-left: 3px;
  font-size: 0.75rem;
  line-height: 1.2;
}

.page_ttl {
  padding: 2rem 0;
  background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5333333333));
}
.page_ttl_txt {
  clip-path: text;
  filter: drop-shadow(1px 1px 0px #FFF) drop-shadow(-1px -1px 0px #FFF) drop-shadow(1px -1px 0px #FFF) drop-shadow(-1px 1px 0px #FFF);
}
.page_ttl_jp, .page_ttl_en {
  text-align: center;
}
.page_ttl_jp {
  font-family: "Hachi Maru Pop", cursive, sans-serif;
  font-size: 2.8125rem;
  background-image: linear-gradient(180deg, #FF0080, #9F40FF, #00A3FA);
  background-clip: text;
  color: rgba(255, 255, 255, 0.2666666667);
  font-weight: bold;
}
.page_ttl_en {
  color: var(--txt-pink);
  font-size: 1.875rem;
  font-weight: bold;
}
.page_block {
  padding: 20px;
  border: 1px #FFF solid;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.5019607843);
}

.icon_list {
  display: flex;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.3rem;
}
.icon_list_link {
  display: block;
}
.icon_list_name {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.icon_img {
  display: block;
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  box-shadow: 0 3px 6px var(--shd-pink);
}
.icon_name {
  display: block;
  font-weight: bold;
  text-align: center;
}

/* ▼▼▼ メイン 「コンテンツとサイドを囲む要素」
====================================================== */
#main {
  padding: var(--header-height) 0 0;
  margin: 0 auto;
  position: relative;
}

.menu_fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .menu_fixed {
    position: relative;
    width: auto;
    height: auto;
  }
}

.thumb_list {
  --thumb-gap: 1.6rem;
  --thumb-cols: 2;
  --thumb-cols-size: calc((100% - (var(--thumb-gap) * (var(--thumb-cols) - 1))) / var(--thumb-cols));
  display: grid;
  grid-template-columns: repeat(var(--thumb-cols), var(--thumb-cols-size));
  gap: var(--thumb-gap) var(--thumb-gap);
}
@media screen and (min-width: 768px) {
  .thumb_list {
    --thumb-cols: 3;
  }
}
.thumb_list_inner {
  display: block;
}
@media screen and (min-width: 768px) {
  .thumb_list_inner:hover {
    opacity: 1;
  }
  .thumb_list_inner:hover .thumb_list_img img {
    transform: scale(1.2);
  }
}
.thumb_list_ttl {
  font-weight: bold;
}
.thumb_list_img {
  overflow: hidden;
  margin-bottom: 0.5rem;
}
.thumb_list_img img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: 0.25s;
}
@media screen and (min-width: 768px) {
  .thumb_ac_wrap_min .thumb_list > li:nth-child(n+4) {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .thumb_ac_wrap_min .thumb_list > li:nth-child(n+3) {
    display: none;
  }
}

/* ▼ パンくず
--------------------------------------- */
#path {
  margin: 3rem 0 0;
  padding-bottom: 1rem;
  font-size: 0.875rem;
  overflow: hidden;
}
#path ol {
  display: flex;
  flex-wrap: wrap;
}
#path li:not(:last-child):after {
  content: "＞";
  margin: 0 0.6rem;
}
#path li a {
  color: var(--txt-pink);
}

/* ▼ ボタン
--------------------------------------- */
.btn {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  gap: 0.6em;
  height: 50px;
  width: 300px;
  max-width: 100%;
  margin: 2em auto 0;
  background: #FFF;
  border: 2px solid var(--txt-pink);
  border-radius: 20px;
  color: var(--txt-pink) !important;
  font-size: 1.25rem;
  font-weight: bold;
  box-shadow: 0px 5px 10px var(--shd-pink);
  transition: 0.5s;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .btn:hover {
    opacity: 1;
    box-shadow: 0px 0px 0px var(--shd-pink);
  }
}

.ttl_mid {
  margin-bottom: 1rem;
  font-size: 1.875rem;
  clip-path: text;
  filter: drop-shadow(1px 1px 0px #FFF) drop-shadow(-1px -1px 0px #FFF) drop-shadow(1px -1px 0px #FFF) drop-shadow(-1px 1px 0px #FFF);
  font-family: "Hachi Maru Pop", cursive, sans-serif;
  background-image: linear-gradient(180deg, #FF8000, #FF0080, #9F40FF);
  background-clip: text;
  color: rgba(255, 255, 255, 0.2509803922);
}
.ttl_min {
  font-size: 1.5rem;
  clip-path: text;
  filter: drop-shadow(1px 1px 0px #FFF) drop-shadow(-1px -1px 0px #FFF) drop-shadow(1px -1px 0px #FFF) drop-shadow(-1px 1px 0px #FFF);
  font-family: "Hachi Maru Pop", cursive, sans-serif;
  background-image: linear-gradient(180deg, #FF0080, #9F40FF, #00A3FA);
  background-clip: text;
  color: rgba(255, 255, 255, 0.2509803922);
}

.cat_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem 1rem;
  padding: 2.5rem 0;
}
@media screen and (min-width: 768px) {
  .cat_list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.cat_list_item {
  --pnav-bg: #FFF;
  --pnav-txt: var(--txt-pink);
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  height: 3rem;
  border-radius: 10px;
  border: 2px solid var(--pnav-txt);
  background: var(--pnav-bg);
  color: var(--pnav-txt) !important;
  font-weight: bold;
}
.cat_list_item.active {
  background: var(--pnav-txt);
  color: var(--pnav-bg) !important;
}
@media screen and (min-width: 768px) {
  .cat_list_item:hover {
    opacity: 1;
    background: var(--pnav-txt);
    color: var(--pnav-bg) !important;
  }
}

/* ▼ ページネーション
--------------------------------------- */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 3rem;
}
.pagination_item {
  --pnav-bg: #FFF;
  --pnav-txt: var(--txt-pink);
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1.5rem;
  border: 2px solid var(--pnav-txt);
  background: var(--pnav-bg);
  color: var(--pnav-txt) !important;
  font-weight: bold;
}
.pagination_item.active {
  background: var(--pnav-txt);
  color: var(--pnav-bg) !important;
}
@media screen and (min-width: 768px) {
  .pagination_item:hover {
    opacity: 1;
    background: var(--pnav-txt);
    color: var(--pnav-bg) !important;
  }
}

/* ▼ スワイパーページネーション
--------------------------------------- */
.swiper-pagination {
  position: absolute;
  bottom: -3rem !important;
  left: 50% !important;
  transform: translateX(-50%);
  width: auto !important;
}
.swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
  background: #ccc;
  border-radius: 0.5rem;
  opacity: 1;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
}
.swiper-pagination-bullet-active {
  background: var(--txt-pink);
  width: 3rem;
}

.swiper-cube-shadow:before {
  display: none !important;
}

/* ▼ システム
--------------------------------------- */
.disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* ▼▼▼ フッター
===================================== */
footer {
  width: 100%;
  padding: 3rem 0 4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.5333333333);
  background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5333333333));
  backdrop-filter: blur(5px);
}

.f_top {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.f_top_sns {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .f_top_sns {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }
}
.f_nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 100%;
  width: 500px;
  margin: 0 0 0 auto;
}
.f_nav_list {
  border-left: 1px solid rgba(255, 255, 255, 0.5333333333);
}
.f_nav_link {
  display: block;
  padding: 0.5rem 0 0.5rem 0.5rem;
  font-size: 1rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .f_nav_link:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.5333333333);
  }
}
.f_nav_child_list li {
  padding-left: 1rem;
}
.f_copy {
  padding-top: 4rem;
  font-size: 0.625rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .f_copy {
    text-align: right;
  }
}

/* ▼ プッシュ通知ボタン
--------------------------------------- */
.push_notification_control {
  text-align: center;
  margin-top: 1.5rem;
}
.push_notification_control .btn_push_notification {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: #FFF;
  border: 2px solid var(--txt-pink);
  border-radius: 20px;
  color: var(--txt-pink);
  font-size: 0.875rem;
  font-weight: bold;
  box-shadow: 0px 3px 8px var(--shd-pink);
  transition: 0.3s;
  cursor: pointer;
}
.push_notification_control .btn_push_notification:hover {
  opacity: 0.8;
  box-shadow: 0px 1px 4px var(--shd-pink);
}
.push_notification_control .btn_push_notification_text {
  display: block;
}
.push_notification_control .btn_push_notification_unsubscribe {
  background: var(--txt-pink);
  color: #FFF;
  border-color: var(--txt-pink);
}

/* ▼ ページ上部へ戻る
--------------------------------------- */
.pagetop {
  --size: 43px;
  --arrow-size: 11px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  background: var(--fc-main);
  bottom: 100px;
  right: 20px;
  z-index: 2000;
  position: fixed;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .pagetop {
    --size: 60px;
    bottom: 20px;
  }
}
.pagetop::after {
  content: "";
  width: var(--arrow-size);
  height: var(--arrow-size);
  border-left: #FFF 1px solid;
  border-top: #FFF 1px solid;
  position: absolute;
  top: calc(50% - 3px);
  right: calc(50% - 6px);
  transform: rotate(45deg);
}

/* ▼ コピーライト
--------------------------------------- */
#copyright {
  margin-top: 30px;
  color: #242424;
  font-size: 0.625rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  #copyright {
    margin-top: 20px;
  }
}

/* ▼▼▼ 404
====================================================== */
#not_found {
  padding: 100px 20px 60px;
}
@media screen and (min-width: 768px) {
  #not_found {
    padding: 8vw 20px;
  }
}
#not_found p {
  font-size: 0.875rem;
  text-align: center;
}
#not_found p.arial {
  margin-bottom: 10px;
  font-size: 2.625rem;
  font-family: "Arial", "メイリオ";
}
@media screen and (min-width: 768px) {
  #not_found p.arial {
    margin-bottom: 10px;
  }
}
#not_found p.arial + p {
  margin-bottom: 20px;
  font-size: 1.125rem;
  font-weight: bold;
}
#not_found p.txt {
  margin-bottom: 30px;
  line-height: 1.6;
}
#not_found .top_btn a {
  display: inline-block;
  padding: 15px 40px;
  border: 1px solid #ccc;
}