@charset "UTF-8";
:root {
  --font-family-ja: "Nanum Gothic", sans-serif;
  --font-family-kr: "Nanum Gothic", sans-serif;
  --font-size-sm: 14px;
  --font-size-md: 24px;
  --font-size-small: 0.8333rem;
  --font-size-large: 1.3333rem;
  --font-size-x-large: 1.6667rem;
  --font-weight-normal: 400;
  --font-weight-bold: 800;
  --line-height: 1.667rem;
  --color-default:#666;
  --color-body-bg:#fff;
  --color-table-header: RGBA(225, 129, 193, 0.2);
  --color-purple: #8D5FFF;
  --color-pink: #F283CA;
  --color-orange: #FE716F;
  --color-cyan: #35BDAD;
  --color-link: #f01d4f;
  --color-pink: #f49dc2;
  --color-pink-light: #fff1f7;
  --color-white: #fff;
}

/*
* 폰트 크기
* フォントサイズ
* editor-style.css에서 제외하고 별도의 파일로 관리
* editor-style.cssで除外させたく、別ファイルで管理
*/
html {
  font-size: var(--font-size-sm);
}
@media (min-width: 576px) {
  html {
    font-size: var(--font-size-md);
  }
}

h1 {
  font-size: 1.5rem;
}

h2 {
  font-size: 1.3333333333rem;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.1666666667rem;
}

h5 {
  font-size: 1rem;
}

/*
* 기본 스타일
* 基本スタイル
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-family);
  line-height: var(--line-height);
  letter-spacing: -0.0291666667rem;
  color: var(--color-default);
  background: var(--color-body-bg);
  text-size-adjust: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
[lang=ko-KR] body {
  font-family: var(--font-family-kr);
}
[lang=ja] body {
  font-family: var(--font-family-ja);
}

p,
ul,
ol,
figure,
table {
  margin: 0 0 1.25rem;
}
p:empty,
ul:empty,
ol:empty,
figure:empty,
table:empty {
  display: none;
}

h1 {
  margin: 0 0 1.25rem;
}

h2 {
  margin: 0 0 0.8333333333rem;
}

h3 {
  margin: 0 0 0.625rem;
}

h4 {
  margin: 0 0 0.4166666667rem;
}

h5 {
  margin: 0 0 0.2083333333rem;
}

ul,
ol {
  padding-left: 2.0833333333rem;
}

li {
  margin-bottom: 0.6666666667rem;
}
li > ul, li > ol {
  margin-top: 0.6666666667rem;
}

a {
  color: var(--color-link);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

strong {
  font-weight: var(--font-weight-bold);
}

table {
  border-collapse: collapse;
}

/*
* 블록 스타일
* ブロックのスタイル
*/
/*
* 제목 파츠
* 見出しパーツ
* 블록 > 텍스트 > 제목 스타일
* ブロック > テキスト > 見出しのスタイル
*/
h1,
h2,
h3,
h4,
h5 {
  font-weight: var(--font-weight-bold);
}

/*
* 단락 파츠
* 段落パーツ
* 블록 > 텍스트 > 단락에 부여할 클래스 이름
* ブロック > テキスト > 段落に付与するクラス名
*/
.button-link {
  display: flex;
  justify-content: center;
}
.button-link > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem;
  background: var(--color-pink);
  color: var(--color-white);
  text-decoration: none;
  border-radius: 1.25rem;
  box-shadow: 0.1666666667rem 0.1666666667rem 0.1666666667rem rgba(0, 0, 0, 0.2);
}
.button-link.large > a {
  width: 100%;
}

.has-text-align-center {
  text-align: center;
}
.has-text-align-right {
  text-align: right;
}
.has-purple-color {
  color: var(--color-purple);
}
.has-pink-color {
  color: var(--color-pink);
}
.has-orange-color {
  color: var(--color-orange);
}
.has-cyan-color {
  color: var(--color-cyan);
}
.has-small-font-size {
  font-size: var(--font-size-small);
}
.has-large-font-size {
  font-size: var(--font-size-large);
  line-height: calc(var(--line-height) + 0.2rem);
}
.has-x-large-font-size {
  font-size: var(--font-size-x-large);
  line-height: calc(var(--line-height) + 0.5rem);
}

.text-sm {
  font-size: var(--font-size-small);
}
.text-lg {
  font-size: var(--font-size-large);
}
.text-xl {
  font-size: var(--font-size-x-large);
}

.wp-block-image.margin-side-0 {
  margin-left: -2.0833333333rem;
  margin-right: -2.0833333333rem;
}

/*
* 테이블 파츠
* テーブルパーツ
* 블록 > 텍스트 > 테이블에 부여할 클래스 이름
* ブロック > テキスト > テーブルに付与するクラス名
*/
.wp-block-table {
  margin-bottom: 0;
}
.wp-block-table.w-full > table {
  width: 100%;
}
.wp-block-table tr {
  border: 1px solid var(--color-default);
}
.wp-block-table th {
  font-weight: var(--font-weight-normal);
  text-align: left;
  border-bottom: 2px solid var(--color-default);
  background-color: var(--color-table-header);
}
.wp-block-table th,
.wp-block-table td {
  padding: 0.8333333333rem;
  border-right: 1px solid var(--color-default);
}
@media (min-width: 576px) {
  .wp-block-table th,
  .wp-block-table td {
    padding: 0.8333333333rem;
  }
}
.wp-block-table th:last-of-type,
.wp-block-table td:last-of-type {
  border-right: none;
}
.wp-block-table p:last-of-type,
.wp-block-table ul:last-of-type,
.wp-block-table ol:last-of-type {
  margin-bottom: 0;
}

/*
* コード
* ブロック > テキスト > コード
* ライセンスページで利用
*/
pre {
  padding: 1rem 0;
  border-top: solid 1px #ddd;
  white-space: pre-line;
  word-break: break-word;
}

/*
* 이미지
* 画像
* 블록 > 미디어 > 이미지
* ブロック > メディア > 画像
*/
.wp-block-image {
  text-align: center;
}
.wp-block-image img {
  max-width: 100%;
  height: auto;
}

/*
* 이미지
* 画像
* 블록 > 미디어 > 이미지
* 이미지 마진 제거
*/
.image-post-main figure.wp-block-image {
  margin: 0;
  width: 100%;
}

.image-post-main figure.wp-block-image img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

/*
* 컬럼 파츠
* カラムパーツ
* 블록 > 디자인 > 컬럼에 부여할 클래스
* ブロック > デザイン > カラムに付与するクラス
*/
.wp-block-column.note {
  border-radius: 0.2083333333rem;
  background: #FBF8F6;
  margin-bottom: 2.5rem;
  padding: 1rem;
}
.wp-block-column.note p,
.wp-block-column.note ul,
.wp-block-column.note ol {
  margin-bottom: 1rem;
}
.wp-block-column.note li {
  margin-bottom: 0.2083333333rem;
}
.wp-block-column.note li > ul, .wp-block-column.note li > ol {
  margin-top: 0.2083333333rem;
}

.is-layout-flex:has(> .is-layout-flow:nth-child(2)) {
  display: flex;
  justify-content: space-between;
  column-gap: 1rem;
}
.is-layout-flex:has(> .is-layout-flow:nth-child(2)) > .is-layout-flow img {
  max-width: none;
}

/*
* 구분 파츠
* 区切りパーツ
* 블록 > 디자인 > 구분에 부여할 클래스
* ブロック > デザイン > 区切りに付与するクラス
*/
hr {
  border-top: 0.0833333333rem solid var(--color-default);
  margin-bottom: 2.5rem;
  margin-left: -2.0833333333rem;
  margin-right: -2.0833333333rem;
}

/*
* 페이지 스타일
* ページのスタイル
*/
/*
* 페이지 공통
* ページ共通
*/
.container {
  max-width: 992px;
  margin: 0 auto;
}

/*
* 도움말 페이지
* ヘルプページ
*/
.help-genre-list {
  list-style: none;
  padding-left: 0;
  margin: 1.25rem 0.8333333333rem;
}
.help-genre-list > li {
  margin-bottom: 1.25rem;
}

.help-genre-title {
  margin: 0 1.25rem 0.8333333333rem;
  padding: 1.25rem;
  text-align: center;
  border-bottom: 2px solid var(--color-pink);
}

.help-detail-content {
  margin: 1.25rem 0;
}

.help-accordion {
  margin: 0 1.25rem 0.8333333333rem;
  background-color: var(--color-pink-light);
  border-radius: 1.25rem;
}
.help-accordion > summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  padding: 0.625rem 1.25rem;
  color: var(--color-white);
  background-color: var(--color-pink);
  border-radius: 2.5rem;
  position: relative;
  cursor: pointer;
}
.help-accordion > summary::-webkit-details-marker {
  display: none;
}
.help-accordion > summary::after {
  display: block;
  content: "";
  width: 0.8333333333rem;
  height: 0.4583333333rem;
  background: url("../img/icon/arrow-down.png") no-repeat;
  background-size: 0.8333333333rem 0.4583333333rem;
  transition: transform 0.3s ease-in-out;
}
.help-accordion > summary::before {
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  width: 1.6666666667rem;
  height: 0.9166666667rem;
  background-color: var(--color-pink);
  clip-path: polygon(50% 100%, 0% 0%, 100% 0%);
  transition: translate 0.3s ease-in-out;
}
.help-accordion > summary.hide-icon::after {
  display: none;
}
.help-accordion[open] > summary::after {
  transform: rotate(180deg);
}
.help-accordion[open] > summary::before {
  translate: 0 0.8333333333rem;
}
.help-accordion > .detail {
  padding: 1.0416666667rem 1.25rem 0.4166666667rem;
}

/*
* 고정 페이지
* 固定ページ
*/
.fixed-title {
  margin: 1.25rem 0.8333333333rem;
}

.fixed-content {
  margin: 1.25rem 0.8333333333rem;
}

/*
* 공지 사항 페이지
* お知らせページ
*/
.news-title {
  display: none;
}

.news-content {
  margin: 1.25rem 0.8333333333rem;
}

/*
* 가챠 PV 페이지
* ガチャPVページ
*/
body.single-gacha {
  padding-bottom: 1px;
  background-color: #fff;
  overflow: hidden;
  touch-action: manipulation;
}

.spacer {
  position: relative;
  width: 100%;
  height: 0.8vw;
  background-color: #fff;
}

.btn-mute {
  display: block;
  position: absolute;
  top: 2.2vw;
  left: 1.4vw;
  width: 38px;
  height: 38px;
  background-image: url("../img/video-js/btn-sound-on.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  border: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  touch-action: manipulation;
  z-index: 3;
}
.btn-mute.off {
  background-image: url("../img/video-js/btn-sound-off.png");
}

.video-js {
  width: 100%;
  height: 100%;
  margin: 0 auto 12.6vw;
  padding-top: 56.2vw; /*比率調整※16:9の画面幅*/
  background-color: #fff;
}
.video-js .vjs-tech {
  outline: none;
}
.video-js .vjs-big-play-button:focus {
  background: none;
}
.video-js .vjs-big-play-button {
  width: 68px;
  height: 68px;
  border: none;
  border-radius: 50%;
  background: var(--color-video-primary);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.video-js .vjs-big-play-button .vjs-icon-placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-js .vjs-big-play-button .vjs-icon-placeholder::before {
  content: "";
  position: relative;
  width: 30px;
  height: 32px;
  margin-left: 6px;
  background-image: url("../img/video-js/btn-start-large.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.video-js:hover .vjs-big-play-button {
  background-color: rgba(133, 133, 133, 0.5);
}
.video-js .vjs-control-bar {
  display: flex;
  height: 12.6vw;
  background: #fff;
  bottom: -12.6vw;
  opacity: 0;
  visibility: visible !important;
  transition: 2s opacity;
}
.video-js .vjs-play-control.vjs-button {
  width: 4rem;
  margin-left: 0.6rem;
  outline: none;
}
.video-js .vjs-play-control.vjs-button .vjs-icon-placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-js .vjs-play-control.vjs-button .vjs-icon-placeholder::before {
  content: "";
  position: relative;
  width: 16px;
  height: 17px;
  background-image: url("../img/video-js/btn-start.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.video-js .vjs-play-control.vjs-button.vjs-playing .vjs-icon-placeholder::before {
  content: "";
  position: relative;
  width: 11px;
  height: 16px;
  background-image: url("../img/video-js/btn-pause.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.video-js .vjs-mute-control {
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-js .vjs-mute-control .vjs-icon-placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-js .vjs-mute-control .vjs-icon-placeholder::before {
  content: "";
  position: relative;
  display: block;
  width: 38px;
  height: 38px;
  background-image: url(../img/video-js/btn-sound-on.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-color: transparent;
  border: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.video-js .vjs-mute-control.vjs-vol-0 .vjs-icon-placeholder::before {
  content: "";
  background-image: url("../img/video-js/btn-sound-off.png");
}
.video-js .vjs-volume-control {
  display: none !important;
}
.video-js .vjs-progress-control {
  margin: 0 1.4vw 0 0;
}
.video-js .vjs-progress-control .vjs-progress-holder {
  height: 4px;
  margin: 0 22px 0 8px;
  border-radius: 4px;
}
.video-js .vjs-progress-control .vjs-slider {
  background: #eee;
  border: none;
  outline: none;
}
.video-js .vjs-progress-control .vjs-load-progress div {
  background: #eee;
  border-radius: 4px;
  border: none;
  outline: none;
}
.video-js .vjs-progress-control .vjs-load-progress {
  border-radius: 4px;
}
.video-js .vjs-progress-control .vjs-play-progress {
  border-radius: 4px;
}
.video-js .vjs-progress-control .vjs-play-progress.vjs-slider-bar {
  background: #e3cbfd;
}
.video-js .vjs-progress-control .vjs-play-progress::before {
  top: 50%;
  font-size: 22px;
  color: var(--color-video-primary);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  transform: translateY(-50%);
  z-index: 1000;
}
.video-js .vjs-remaining-time {
  display: none;
}
