@charset "UTF-8";

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
/* デフォルトのpaddingを削除 */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
/* デフォルトのmarginを削除 */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
/* bodyのデフォルトを定義 */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
/* class属性を持つul、ol要素のリストスタイルを削除 */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
/* classを持たない要素はデフォルトのスタイルを取得 */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
/* img要素の扱いを簡単にする */
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* Inherit fonts for inputs and buttons */
/* inputやbuttonなどのフォントは継承を定義 */
input,
button,
textarea,
select {
  font: inherit;
  outline: none;
}

/* Remove all animations and transitions for people that prefer not to see them */
/* 見たくない人用に、すべてのアニメーションとトランジションを削除 */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  font-feature-settings: "palt";
}

body {
  width: 100%;
  -webkit-text-size-adjust: none;
  font-family: "Hiragino Sans", sans-serif;
  color: #4a4c4e;
  line-height: 1;
  background-color: #fff;
}

@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}

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

@keyframes show {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media screen and (min-width: 769px) {
  a img {
    transition: 0.3s;
  }

  a img:hover {
    opacity: 0.5;
  }
}

.contents-inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 1050px) {
  .contents-inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}

body {
  padding-top: 75px;
}

@media screen and (max-width: 768px) {
  body {
    padding-top: 45px;
  }
}

/*---------------------------
global header
-------------------------------------*/
#globalHeader {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 75px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  padding: 0 40px;
  background-color: #fff;
}

#globalHeader .logo img {
  width: 120px;
}

@media screen and (max-width: 1050px) {
  #globalHeader {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 1340px) {
  #globalHeader .logo {
    padding-right: 20px;
  }
}

@media screen and (max-width: 768px) {
  #globalHeader {
    height: 60px;
  }

  #globalHeader .logo img {
    width: 100px;
  }
}

#globalHeader .global-navi {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 50px;
}

@media screen and (max-width: 1100px) {
  #globalHeader .global-navi {
    gap: 0 20px;
  }
}

@media screen and (max-width: 768px) {
  #globalHeader .global-navi {
    display: none;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    padding: 90px 30px 60px;
    background-color: #fff;
  }

  #globalHeader .global-navi .sp-logo {
    text-align: center;
  }

  #globalHeader .global-navi .sp-logo img {
    width: 140px;
  }
}

#globalHeader .global-navi .page-link,
#globalHeader .global-navi .sns-link {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
}

@media screen and (max-width: 768px) {

  #globalHeader .global-navi .page-link,
  #globalHeader .global-navi .sns-link {
    max-width: 375px;
    width: 100%;
    margin: 0 auto;
  }
}

#globalHeader .global-navi .page-link {
  gap: 0 30px;
}

@media screen and (max-width: 1350px) {
  #globalHeader .global-navi .page-link {
    /* gap: 0 15px; */
  }
}

@media screen and (max-width: 768px) {
  #globalHeader .global-navi .page-link {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 40px 0;
    margin-top: 50px;
  }
}

@media screen and (max-width: 768px) {
  #globalHeader .global-navi .page-link li {
    width: 50%;
    padding-left: 15px;
  }
}

#globalHeader .global-navi .page-link li a {
  position: relative;
  font-size: 14px;
  color: #4a4c4e;
  text-decoration: none;
  font-family: "EB Garamond", serif;
}

@media screen and (max-width: 1000px) {
  #globalHeader .global-navi .page-link li a {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  #globalHeader .global-navi .page-link li a {
    font-size: 20px;
    color: #4a4c4e;
  }
}

#globalHeader .global-navi .page-link li a:hover {
  color: #D4C9DA;
  opacity: 1;
}

#globalHeader .global-navi .sns-link {
  gap: 0 17px;
}

@media screen and (min-width: 769px) {
  #globalHeader .global-navi .sns-link a {
    transition: 0.3s;
  }

  #globalHeader .global-navi .sns-link a:hover {
    opacity: 0.5;
  }
}

#globalHeader .global-navi .sns-link a img {
  width: 40px;
}

@media screen and (max-width: 1250px) {
  #globalHeader .global-navi .sns-link {
    gap: 0 10px;
  }
}

@media screen and (max-width: 1200px) {
  #globalHeader .global-navi .sns-link {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  #globalHeader .global-navi .sns-link {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px 7.5%;
    width: 53.3333333333vw;
    margin-top: 55px;
  }

  #globalHeader .global-navi .sns-link li {
    width: 25%;
  }

  #globalHeader .global-navi .sns-link li img {
    width: 100%;
  }
}

#globalHeader .sp-menu {
  position: fixed;
  z-index: 110;
  top: 0;
  right: 20px;
  width: 30px;
  height: 60px;
  padding-top: 7px;
}

#globalHeader .sp-menu a {
  position: relative;
  display: block;
  width: 30px;
  height: 60px;
}

#globalHeader .sp-menu a.noactive span {
  animation-duration: 0s !important;
}

#globalHeader .sp-menu a.active span:nth-of-type(1) {
  animation-name: menuAnim1;
  animation-timing-function: linear;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
  animation-direction: alternate;
}

#globalHeader .sp-menu a.active span:nth-of-type(2) {
  animation-name: menuAnim3;
  animation-timing-function: linear;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
  animation-direction: alternate;
}

#globalHeader .sp-menu a span {
  position: absolute;
  left: 0;
  width: 30px;
  height: 1px;
  background-color: #000;
}

#globalHeader .sp-menu a span:nth-of-type(1) {
  top: 25px;
  -webkit-transform: rotate(0);
  transform: rotate(0);
  animation-name: menuAnim4;
  animation-timing-function: linear;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
  animation-direction: alternate;
}

#globalHeader .sp-menu a span:nth-of-type(2) {
  top: 30px;
  -webkit-transform: rotate(0);
  transform: rotate(0);
  animation-name: menuAnim6;
  animation-timing-function: linear;
  animation-duration: 0.4s;
  animation-fill-mode: forwards;
  animation-direction: alternate;
}

@keyframes menuAnim1 {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    top: 22px;
    -webkit-transform: rotate(-35deg);
    transform: rotate(-35deg);
  }
}

@keyframes menuAnim3 {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }

  100% {
    top: 22px;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
  }
}

@keyframes menuAnim4 {
  0% {
    top: 22px;
    -webkit-transform: rotate(-35deg);
    transform: rotate(-35deg);
  }

  100% {
    top: 18px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

@keyframes menuAnim6 {
  0% {
    top: 22px;
    -webkit-transform: rotate(35deg);
    transform: rotate(35deg);
  }

  100% {
    top: 26px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

/*---------------------------
global Footer
-------------------------------------*/
#globalFooter {
  padding: 30px 0;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  #globalFooter {
    padding: 50px 30px 30px;
  }
}

#globalFooter .footer-fan-box {
  text-align: center;
}

#globalFooter .footer-fan-box .section-title {
  color: #d5dadf;
}

#globalFooter .footer-fan-box .fan-btn {
  margin-top: 20px;
  margin-bottom: 85px;
}

@media screen and (max-width: 768px) {
  #globalFooter .footer-fan-box .fan-btn {
    margin-bottom: 70px;
  }
}

#globalFooter .footer-fan-box .fan-btn a {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 600px;
  height: 100px;
  margin: 0 auto;
  border: 1px solid #535150;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  color: #fff;
}

@media screen and (min-width: 769px) {
  #globalFooter .footer-fan-box .fan-btn a {
    transition: color 0.3s;
  }

  #globalFooter .footer-fan-box .fan-btn a:hover {
    color: #020101;
  }

  #globalFooter .footer-fan-box .fan-btn a:hover::after {
    transform: translateY(-20%);
  }

  #globalFooter .footer-fan-box .fan-btn a:hover span {
    background: url("../images/common/icn-mail-bk.svg") no-repeat left center;
  }

  #globalFooter .footer-fan-box .fan-btn a::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: -20%;
    width: 140%;
    height: 160%;
    transform: translateY(120%);
    transition: transform 0.3s;
    transform-origin: center center;
    background-color: #fff;
  }
}

@media screen and (max-width: 768px) {
  #globalFooter .footer-fan-box .fan-btn a {
    height: 70px;
    font-size: 14px;
  }
}

#globalFooter .footer-fan-box .fan-btn a span {
  padding: 5px 0 5px 56px;
  background: url("../images/common/icn-mail.svg") no-repeat left center;
  background-size: 28px 21px;
}

@media screen and (min-width: 769px) {
  #globalFooter .footer-fan-box .fan-btn a span {
    transition: background 0.3s;
  }
}

@media screen and (max-width: 768px) {
  #globalFooter .footer-fan-box .fan-btn a span {
    padding-left: 45px;
    background-size: 25px 20px;
  }
}

#globalFooter .footer-btm {
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

#globalFooter .footer-btm .logo img {
  width: 120px;
}

@media screen and (max-width: 1340px) {
  #globalFooter .footer-btm .logo {
    padding-right: 20px;
  }
}

@media screen and (max-width: 768px) {
  #globalFooter .footer-btm {
    display: block;
  }

  #globalFooter .footer-btm .logo {
    text-align: center;
    padding-right: 0;
  }
}

#globalFooter .footer-btm .global-navi {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 50px;
}

@media screen and (max-width: 1100px) {
  #globalFooter .footer-btm .global-navi {
    gap: 0 20px;
  }
}

@media screen and (max-width: 768px) {
  #globalFooter .footer-btm .global-navi {
    flex-wrap: wrap;
  }
}

#globalFooter .footer-btm .global-navi .page-link,
#globalFooter .footer-btm .global-navi .sns-link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
}

#globalFooter .footer-btm .global-navi .page-link {
  gap: 0 30px;
}

@media screen and (max-width: 1250px) {
  #globalFooter .footer-btm .global-navi .page-link {
    gap: 0 15px;
  }
}

@media screen and (max-width: 768px) {
  #globalFooter .footer-btm .global-navi .page-link {
    order: 2;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 30px 0;
    margin-top: 50px;
  }
}

@media screen and (max-width: 768px) {
  #globalFooter .footer-btm .global-navi .page-link li {
    width: 50%;
    padding-left: 25px;
  }
}

#globalFooter .footer-btm .global-navi .page-link li a {
  font-size: 14px;
  color: #4a4c4e;
  text-decoration: none;
  font-family: "EB Garamond", serif;
}

@media screen and (min-width: 769px) {
  #globalFooter .footer-btm .global-navi .page-link li a {
    transition: 0.3s;
  }

  #globalFooter .footer-btm .global-navi .page-link li a:hover {
    color: #D4C9DA;
    opacity: 1;
  }
}

@media screen and (max-width: 850px) {
  #globalFooter .footer-btm .global-navi .page-link li a {
    font-size: 12px;
  }
}

@media screen and (max-width: 768px) {
  #globalFooter .footer-btm .global-navi .page-link li a {
    font-size: 16px;
  }
}

#globalFooter .footer-btm .global-navi .sns-link {
  gap: 0 17px;
}

#globalFooter .footer-btm .global-navi .sns-link img {
  width: 40px;
}

@media screen and (max-width: 1250px) {
  #globalFooter .footer-btm .global-navi .sns-link {
    gap: 0 10px;
  }
}

@media screen and (max-width: 1050px) {
  #globalFooter .footer-btm .global-navi .sns-link {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  #globalFooter .footer-btm .global-navi .sns-link {
    display: none;
  }
}

#globalFooter .copyright {
  margin-top: 35px;
  font-size: 12px;
  color: #b6b2b2;
  letter-spacing: 0.48px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  #globalFooter .copyright {
    margin-top: 70px;
    font-size: 10px;
    letter-spacing: 0.8px;
    line-height: 1.4;
  }

  #globalFooter .copyright::before {
    content: "";
    display: block;
    height: 0;
    width: 0;
    margin-top: calc((1 - 1.4) * 0.5em);
  }
}

.movie-modal-layer {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
}

.movie-modal-layer.active {
  display: block;
  animation: show 0.3s linear;
}

.movie-modal-layer .modal-box {
  position: relative;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 750px;
  width: calc(100% - 60px);
}

@media screen and (max-width: 600px) {
  .movie-modal-layer .modal-box {
    width: calc(100% - 30px);
  }
}

.movie-modal-layer .modal-box .modal-close {
  position: absolute;
  top: -50px;
  right: 0;
}

@media screen and (min-width: 769px) {
  .movie-modal-layer .modal-box .modal-close:hover {
    cursor: pointer;
  }
}

.movie-modal-layer .modal-box .modal-close img {
  width: 30px;
}

.movie-modal-layer .modal-box iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 560/315;
}

.text-center {
  text-align: center;
}

.section-title {
  font-family: "EB Garamond", serif;
  font-size: 40px;
  font-weight: 300;
  letter-spacing: 1.6px;
  z-index: 6;
  position: relative;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .section-title {
    font-size: 28px;
    letter-spacing: normal;
  }
}

.common-view-btn {
  margin-top: 45px;
}

@media screen and (max-width: 768px) {
  .common-view-btn {
    margin-top: 30px;
  }
}

.common-view-btn.gray a {
  border-color: #535150;
  color: #777675;
}

@media screen and (min-width: 769px) {
  .common-view-btn.gray a {
    transition: 0.3s;
  }

  .common-view-btn.gray a:hover {
    background-color: #535150 !important;
    color: #fff !important;
  }
}

.common-view-btn.gray a span {
  background: url("../images/common/icn-viewall-gray.svg") no-repeat left center;
}

.common-view-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 340px;
  height: 50px;
  margin: 0 auto;
  border: 2px solid #020101;
  color: #020101;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

.common-view-more-btn {
  text-align: center;
}

.common-view-more-btn a {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  text-decoration: none;
  overflow: hidden;
  border-radius: 30px;
}

.common-view-more-btn a img {
  width: 220px;
}

.common-view-more-btn a img:hover {
  opacity: 1;
}

/*キラッと光る*/
.common-view-more-btn a::before {
  content: '';
  /*絶対配置でキラッと光るの位置を決める*/
  position: absolute;
  top: 0;
  left: -75%;
  /*キラッと光る形状*/
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  transform: skewX(-25deg);
}

/*hoverした際の移動のアニメーション*/
.common-view-more-btn a:hover::before {
  animation: shine 0.7s;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

@media screen and (min-width: 769px) {
  .common-view-btn a {
    transition: 0.3s;
  }

  .common-view-btn a:hover {
    background-color: #020101;
    color: #fff;
  }

  .common-view-btn a:hover span {
    background: url("../images/common/icn-viewall-white.svg") no-repeat left center;
  }
}

@media screen and (max-width: 768px) {
  .common-view-btn a {
    max-width: 240px;
    width: 100%;
    height: 43px;
    font-size: 13px;
    border-width: 1px;
  }

  .common-view-more-btn a img {
    width: 80%;
  }
}

.common-view-btn a span {
  padding-left: 30px;
  background: url("../images/common/icn-viewall-bk.svg") no-repeat left center;
}

@media screen and (min-width: 769px) {
  .common-view-btn a span {
    transition: background 0.3s;
  }
}

@media screen and (max-width: 768px) {
  .common-view-btn a span {
    padding-left: 22px;
    background-size: 12px 12px;
  }
}

.common-btn a {
  position: relative;
  color: #4a4c4e;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
}

.common-btn.buying-btn a {
  position: relative;
  width: 300px;
  height: 60px;
  border: 1px solid #715da9;
  text-decoration: none;
  font-size: 16px;
  background-color: #fff;
  overflow: hidden;
  transition: ease .2s;
  border-radius: 70px;
}

.common-btn.buying-btn a span {
  position: relative;
  z-index: 3;
  color: #715da9;
}

.common-btn.buying-btn a:hover span {
  color: #fff;
}

@media screen and (min-width: 769px) {
  .common-btn.buying-btn a:hover::before {
    right: 17px;
  }
}

@media screen and (max-width: 768px) {
  .common-btn.buying-btn a {
    max-width: 275px;
    width: 75%;
    height: 60px;
    font-size: 14px;
    margin: auto;
  }
}

.common-btn.buying-btn a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: #715da9;
  width: 100%;
  height: 100%;
  transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}

.common-btn.buying-btn a:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.common-btn.buying-btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 23px;
  width: 10px;
  height: 8px;
  background: url("../images/common/arrow-purple.png") no-repeat;
  background-size: 100% 100%;
  z-index: 3;
}

.common-btn.buying-btn a:hover:after {
  background: url("../images/common/arrow-white.png") no-repeat;
}

@media screen and (min-width: 769px) {
  .common-btn.buying-btn a::after {
    transition: right 0.3s;
  }
}

@media screen and (max-width: 768px) {
  .common-btn.buying-btn a::after {
    right: 15px;
  }
}

.common-btn.common-back-btn a {
  position: relative;
  z-index: 2;
  width: 240px;
  height: 60px;
  border-radius: 30px;
  border: 1px solid #4a4c4e;
  font-size: 21px;
  overflow: hidden;
  font-family: "EB Garamond", serif;
  overflow: hidden;
  text-decoration: none;
  outline: none;
  transition: ease .3s;
}

.common-btn.common-back-btn a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -130%;
  background: #D4C9DA;
  width: 120%;
  height: 100%;
  transform: skewX(-25deg);
}

.common-btn.common-back-btn a:hover {
  border: 1px solid #D4C9DA;
}

.common-btn.common-back-btn a:hover::before {
  animation: skewanime .5s forwards;
}

@keyframes skewanime {
  100% {
    left: -10%;
  }
}

@keyframes skewanime {
  100% {
    left: -10%;
  }
}

.common-btn.common-back-btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 45px;
  width: 14px;
  height: 12px;
  background: url(../images/common/arrow-back.png) no-repeat;
  background-size: 100% 100%;
  z-index: 3;
  transition: ease .3s;
}

.common-btn.common-back-btn a:hover::after {
  left: 40px;
  background: url(../images/common/arrow-back-white.png) no-repeat;
}

.common-btn.common-back-btn a span {
  position: relative;
  z-index: 3;
}


@media screen and (min-width: 769px) {
  .common-btn.common-back-btn a {
    transition: 0.3s;
  }

  .common-btn.common-back-btn a:hover span {
    color: #fff;
  }
}

@keyframes skewanime {
  100% {
    left: -10%;
  }
}

.category-item span {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  min-width: 100px;
  width: fit-content;
  height: 25px;
  padding: 0 15px;
  background-color: #fff;
  font-size: 12px;
  border-radius: 20px;
  color: #3b3746;
}

.category-item.thankyou span {
  background-color: #f7deeb !important;
  color: #3b3746 !important;
}

.category-item.loveyou span {
  background-color: #d9eefc !important;
  color: #3b3746 !important;
}

@media screen and (max-width: 768px) {
  .category-item span {
    min-width: 78px;
    height: 20px;
    padding: 0 12px;
    font-size: 10px;
  }
}

.common-schedule-list .item {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 35px;
  padding: 20px 0 15px 25px;
  border-top: 1px solid #babbbc;
}

@media screen and (max-width: 768px) {
  .common-schedule-list .item {
    gap: 0 5px;
    padding: 20px 0 10px 10px;
  }
}

.common-schedule-list .item>a {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 769px) {
  .common-schedule-list .item>a:hover+.common-schedule-date+.item-list .item-content::before {
    right: 19px;
  }
}

@media screen and (min-width: 769px) {
  .common-schedule-list .item.hover .item-title {
    color: #D4C9DA;
  }
}

.common-schedule-list .item:last-child {
  border-bottom: 1px solid #babbbc;
}

.common-schedule-list .item .item-list {
  flex-grow: 1;
}

.common-schedule-list .item .item-list .item-content:not(:nth-of-type(1)) {
  margin-top: 25px;
  border-top: 1px solid #babbbc;
}

@media screen and (max-width: 768px) {
  .common-schedule-list .item .item-list .item-content:not(:nth-of-type(1)) {
    margin-top: 0;
  }
}

.common-schedule-list .item .item-content {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  padding-top: 10px;
  word-break: break-all;
}

.common-schedule-list .item .item-content>a {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 769px) {
  .common-schedule-list .item .item-content>a:hover+.category-item+.item-title {
    color: #D4C9DA;
  }
}

@media screen and (max-width: 768px) {
  .common-schedule-list .item .item-content {
    padding-bottom: 20px;
    padding-left: 10px;
  }

  .common-schedule-list .item .item-content:nth-of-type(1) {
    padding-top: 0;
  }
}

.common-schedule-list .item .item-content:not(:nth-of-type(1)) {
  padding-top: 30px;
  border-top: 1px solid #a3adad;
}

@media screen and (max-width: 768px) {
  .common-schedule-list .item .item-content:not(:nth-of-type(1)) {
    padding-top: 20px;
  }
}

.common-schedule-list .item .item-content:not(:nth-of-type(1))::before {
  margin-top: 10px;
}

.common-schedule-list .item .item-content:last-child {
  padding-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .common-schedule-list .item .item-content {
    display: block;
    flex-grow: 1;
  }
}

@media screen and (max-width: 768px) {
  .common-schedule-list .item .category-item {
    margin-left: 0;
  }
}

.common-schedule-list .item .item-title {
  margin-left: 25px;
  padding-right: 50px;
  font-size: 17px;
  line-height: 1.7;
  color: #4a4c4e;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.3s;
}

@media screen and (min-width: 769px) {
  .common-schedule-list .item .item-title {
    transition: color 0.3s;
  }

  .common-schedule-list .item .item-title:hover {
    color: #D4C9DA;
  }
}

@media screen and (max-width: 768px) {
  .common-schedule-list .item .item-title {
    margin: 20px 0 0 0;
    padding-right: 25px;
    font-size: 14px;
    line-height: 1.5;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }

  .common-schedule-list .item .item-title::before {
    content: "";
    display: block;
    height: 0;
    width: 0;
    margin-top: calc((1 - 1.5) * 0.5em);
  }
}

.common-schedule-date {
  flex-shrink: 0;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 130px;
  font-family: "EB Garamond", serif;
  color: #4e5459;
}

@media screen and (max-width: 768px) {
  .common-schedule-date {
    position: relative;
    justify-content: space-between;
    width: auto;
    padding-bottom: 20px;
  }
}

.common-schedule-date .date-month {
  position: relative;
  font-size: 24px;
  padding-bottom: 30px;
}

@media screen and (max-width: 768px) {
  .common-schedule-date .date-month {
    font-size: 21px;
  }
}

.common-schedule-date .date-month::before {
  content: "";
  position: absolute;
  top: 2px;
  right: -24px;
  width: 26px;
  height: 28px;
  background: url("../images/top/schedule-separator.svg") no-repeat;
  background-size: 100% 100%;
}

.common-schedule-date .date-day {
  margin-left: 20px;
  font-size: 48px;
}

@media screen and (max-width: 768px) {
  .common-schedule-date .date-day {
    margin-left: 10px;
    font-size: 37px;
  }
}

.common-schedule-date .date-youbi {
  margin-left: 10px;
  margin-bottom: 5px;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .common-schedule-date .date-youbi {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 100%;
    margin: 10px 0 0 0;
    text-align: center;
    font-size: 14px;
  }
}

.common-members-list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 110px 5.33%;
  margin-top: 80px;
}

@media screen and (max-width: 768px) {
  .common-members-list {
    flex-wrap: wrap;
    gap: 50px 9%;
    margin-top: 40px;
  }
}

.common-members-list .item {
  position: relative;
  width: 21%;
  border-top: 10px solid transparent;
}

@media screen and (max-width: 768px) {
  .common-members-list .item {
    width: 45.5%;
  }
}

.common-members-list .item .item-thumbnail {
  position: relative;
}

.common-members-list .item .item-thumbnail img {
  width: 100%;
}

.common-members-list .item .item-name {
  margin-top: 20px;
  font-size: 20px;
}

@media screen and (max-width: 900px) {
  .common-members-list .item .item-name {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .common-members-list .item .item-name {
    margin-top: 15px;
    font-size: 15px;
  }
}

.common-members-list .item .item-sns {
  position: relative;
  z-index: 20;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 10px;
  margin-top: 30px;
}

@media screen and (min-width: 769px) {
  .common-members-list .item .item-sns a {
    transition: 0.3s;
  }

  .common-members-list .item .item-sns a:hover {
    opacity: 0.5;
  }
}

.common-members-list .item .item-sns img {
  width: 40px;
}

@media screen and (max-width: 768px) {
  .common-members-list .item .item-sns {
    flex-wrap: wrap;
    gap: 10px 17px;
  }
}

.common-members-list .item .item-sns .group {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 25px;
}

@media screen and (max-width: 768px) {
  .common-members-list .item .item-sns .group {
    width: 100%;
    gap: 0 17px;
  }
}

.common-member-img {
  position: relative;
  transition: transform 0.3s;
}

.common-member-img>a {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.common-member-img .item-thumbnail img {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

@media screen and (min-width: 769px) {
  .common-member-img>a:hover+.item-thumbnail img {
    transform: scale(1.1);
  }
}

.common-member-img .item-thumbnail {
  position: relative;
  overflow: hidden;
  position: relative;
  background-color: transparent;
  border-radius: 10px;
}

.common-member-img .item-thumbnail::before {
  content: "";
  display: block;
  padding-top: 155.2380952381%;
}

.common-member-img .item-thumbnail img,
.common-member-img .item-thumbnail iframe {
  position: absolute;
  top: 0%;
  /* left: 50%;
  transform: translate(-50%, -50%); */
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.common-member-img .item-thumbnail::after {
  position: absolute;
  content: "";
  width: 50%;
  height: 100%;
  top: 0;
  left: -86%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
}

@media screen and (max-width: 768px) {
  .common-member-img .item-thumbnail::after {
    content: none;
  }
}

.common-member-img .item-name {
  margin-top: 30px;
  font-size: 16px;
  color: #4e5459;
}

@media screen and (max-width: 768px) {
  .common-member-img .item-name {
    margin-top: 20px;
    font-size: 15px;
  }
}

@keyframes shine {
  100% {
    left: 125%;
    /*画面の見えていない左から右へ移動する終了地点*/
  }
}

@media screen and (max-width: 768px) {
  .common-category-list {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
  }
}

.common-category-list ul {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 10px 50px;
}

@media screen and (max-width: 1000px) {
  .common-category-list ul {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 768px) {
  .common-category-list ul {
    gap: 15px 20px;
  }
}

.common-category-list ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  height: 30px;
  font-size: 14px;
  color: #4a4c4e;
  font-family: "EB Garamond", serif;
  text-decoration: none;
}

@media screen and (min-width: 769px) {
  .common-category-list ul li a {
    transition: 0.3s;
  }

  .common-category-list ul li a:hover {
    color: #D4C9DA;
  }
}

.common-category-list ul li a.current {
  min-width: 85px;
  padding: 0 25px;
  background-color: #b6c0cf;
  color: #fff;
  border-radius: 20px;
}

.wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 20px;
  margin-top: 100px;
}

@media screen and (max-width: 768px) {
  .wp-pagenavi {
    margin-top: 60px;
    gap: 0 15px;
  }
}

.wp-pagenavi a,
.wp-pagenavi span {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  padding: 0 6px 10px;
  margin: 0 5px;
  font-family: "EB Garamond", serif;
  font-size: 20px;
  font-weight: 300;
  color: #4e5459;
  text-decoration: none;
}

@media screen and (max-width: 768px) {

  .wp-pagenavi a,
  .wp-pagenavi span {
    font-size: 19px;
  }
}

@media screen and (max-width: 350px) {

  .wp-pagenavi a,
  .wp-pagenavi span {
    font-size: 14px;
  }
}

.wp-pagenavi .extend {
  padding: 0;
  margin: 0 -5px;
}

@media screen and (min-width: 769px) {
  .wp-pagenavi a {
    transition: 0.3s;
  }

  .wp-pagenavi a:hover {
    opacity: 0.7;
  }
}

@media screen and (min-width: 769px) {
  .wp-pagenavi a:hover {
    color: #D4C9DA;
  }
}

.wp-pagenavi span:not(.extend) {
  border-bottom: 1px solid #4e5459;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  position: relative;
  width: 55px;
  height: 55px;
  border-radius: 50%;
}

.wp-pagenavi .previouspostslink:hover,
.wp-pagenavi .nextpostslink:hover {
  opacity: 1;
}

.wp-pagenavi .previouspostslink {
  background-color: #dddfe1;
}

.wp-pagenavi .nextpostslink {
  background-image: url(../images/common/pagenavi-next.png);
  background-size: 100%;
  background-repeat: no-repeat;
}

@media screen and (max-width: 768px) {

  .wp-pagenavi .previouspostslink,
  .wp-pagenavi .nextpostslink {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
  }
}

@media screen and (max-width: 350px) {

  .wp-pagenavi .previouspostslink,
  .wp-pagenavi .nextpostslink {
    width: 40px;
    height: 40px;
  }
}

.wp-pagenavi .previouspostslink::before,
.wp-pagenavi .nextpostslink::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -4px;
  margin-left: -5px;
  width: 11px;
  height: 9px;
  background: url("../images/common/icn-arrow-right-white02.svg") no-repeat;
  background-size: 100% 100%;
  transition: margin 0.3s;
}

@media screen and (max-width: 768px) {

  .wp-pagenavi .previouspostslink::before,
  .wp-pagenavi .nextpostslink::before {
    width: 10px;
    height: 7px;
  }
}

.wp-pagenavi .previouspostslink {
  margin-right: 10px;
}

@media screen and (min-width: 769px) {
  .wp-pagenavi .previouspostslink:hover::before {
    margin-left: -11px;
  }
}

.wp-pagenavi .previouspostslink::before {
  transform: scale(-1, 1);
  margin-top: -4px;
}

.wp-pagenavi .nextpostslink {
  margin-left: 10px;
}

@media screen and (min-width: 769px) {
  .wp-pagenavi .nextpostslink:hover::before {
    margin-left: 1px;
  }
}

/*--------------------------
HOME
----------------------------*/
body.home #contents {
  overflow: hidden;
}

body.home #contents .c-mv {
  position: relative;
  text-align: center;
  top: -75px;
}

body.home #contents .c-mv.active .mv-human::before {
  transform: scale(1, 0);
}

body.home #contents .c-mv.active .mv-human {
  opacity: 1 !important;
}

body.home #contents .c-mv.active .logo {
  opacity: 1 !important;
}

@media screen and (max-width: 768px) {
  body.home #contents .c-mv {
    top: -45px;
  }
}

body.home #contents .c-mv .mv-main {
  position: relative;
}

@media screen and (max-width: 1400px) {
  body.home #contents .c-mv .mv-main {
    /* height: 46.0714285714vw; */
  }
}

@media screen and (max-width: 768px) {
  body.home #contents .c-mv .mv-main {
    /* height: 80vw; */
  }
}

body.home #contents .c-mv .mv-main .mv-img {
  position: relative;
}

body.home #contents .c-mv .mv-main .mv-img picture {
  display: block;
}

body.home #contents .c-mv .mv-main .mv-img img {
  width: 100%;
}

body.home #contents .c-mv .mv-main .mv-human {
  position: absolute;
  /* max-width: 1400px; */
  width: 85%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  opacity: 0;
  top: 100px;
  transition: transform 0.4s, opacity 0.3s;
  opacity: 0;
  filter: blur(0);
  animation-name: blur;
  animation-duration: 3s;
  border-radius: 4.5vw;
  overflow: hidden;
}

body.home #contents .c-mv .mv-main .mv-human img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.home #contents .c-mv .mv-main .mv-human .mv-human-inner {
  position: relative;
}

body.home #contents .c-mv .mv-main .logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  opacity: 0;
  bottom: 35px;
  transition: bottom 0.3s, opacity 0.3s;
  transition-delay: 1s;
  filter: blur(0);
  animation-name: blur2;
  animation-duration: 4s;
}

body.home #contents .c-mv .mv-main .logo img {
  width: 282px;
}

@keyframes blur {
  0% {
    filter: blur(10px);
  }

  100% {
    filter: blur(0);
  }
}

@keyframes blur2 {
  0% {
    filter: blur(10px);
  }

  100% {
    filter: blur(0);
  }
}

@media screen and (max-width: 1400px) {
  body.home #contents .c-mv .mv-main .mv-human {
    top: 90px;
  }
}

@media screen and (max-width: 1000px) {
  body.home #contents .c-mv .mv-main .logo img {
    width: 200px;
  }
}

@media screen and (max-width: 768px) {
  body.home #contents .c-mv .mv-main .logo {
    bottom: 17px;
  }

  body.home #contents .c-mv .mv-main .logo img {
    width: 250px;
    height: auto;
  }

  body.home #contents .c-mv .mv-main .mv-human {
    width: 100%;
    top: 100px;
    padding: 0 10px;
    border-radius: 40px;
  }
}

body.home #contents .c-mv .mv-slider {
  position: relative;
  z-index: 4;
  position: absolute;
  top: 44%;
  width: 100%;
}

body.home #contents .c-mv .mv-slider .swiper {
  padding-bottom: 50px;
}

@media screen and (max-width: 1000px) {
  body.home #contents .c-mv .mv-slider {
    top: 47%;
  }
}

@media screen and (max-width: 768px) {
  body.home #contents .c-mv .mv-slider {
    z-index: 1;
    top: 59%;
  }
}


body.home #contents .c-mv .mv-slider .swiper .swiper-slide {
  position: relative;
  background-color: transparent;
}

body.home #contents .c-mv .mv-slider .swiper .swiper-slide::before {
  content: "";
  display: block;
  padding-top: 40%;
}

body.home #contents .c-mv .mv-slider .swiper .swiper-slide img,
body.home #contents .c-mv .mv-slider .swiper .swiper-slide iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}



@media screen and (min-width: 769px) {
  body.home #contents .c-mv .mv-slider .swiper a {
    transition: 0.3s;
  }

  body.home #contents .c-mv .mv-slider .swiper a:hover {
    opacity: 0.5;
  }
}

body.home #contents .c-mv .mv-slider .swiper img {
  width: 100%;
}

body.home #contents .c-mv .mv-slider .swiper-pagination {
  bottom: 0;
}

body.home #contents .c-mv .mv-slider .swiper-pagination span {
  width: 8px;
  height: 8px;
  opacity: 1;
  margin: 0 20px;
  border-radius: 50%;
  background-color: #fff;
}

body.home #contents .c-mv .mv-slider .swiper-pagination span.swiper-pagination-bullet-active {
  background-color: #a9a3bd;
}

@media screen and (max-width: 768px) {
  body.home #contents .c-mv .mv-slider .swiper-pagination span {
    margin: 0 12px;
    width: 10px;
    height: 10px;
  }
}

body.home #contents .c-news {
  margin-top: -42%;
  position: relative;
  z-index: 2;
}

body.home #contents .c-news .news-list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 10px 0;
  margin-top: 20px;
  margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
  body.home #contents .c-news .news-list {
    gap: 0;
  }
}

body.home #contents .c-news .news-list .item {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 100%;
  padding: 10px;
  background-color: #F4F6F9;
}

@media screen and (max-width: 768px) {
  body.home #contents .c-news .news-list .item {
    margin-top: 15px;
  }
}

body.home #contents .c-news .news-list .item a {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 769px) {
  body.home #contents .c-news .news-list .item a:hover+.thumbnail+.content .title {
    color: #D4C9DA;
  }
}

body.home #contents .c-news .news-list .item .thumbnail {
  flex-shrink: 0;
  width: 165px;
  position: relative;
  background-color: transparent;
}

body.home #contents .c-news .news-list .item .thumbnail::before {
  content: "";
  display: block;
  padding-top: 60.6060606061%;
}

body.home #contents .c-news .news-list .item .thumbnail img,
body.home #contents .c-news .news-list .item .thumbnail iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  body.home #contents .c-news .news-list .item .thumbnail {
    width: 120px;
  }
}

body.home #contents .c-news .news-list .item .content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 10px 35px;
  width: calc(100% - 165px);
  padding-left: 30px;
}

@media screen and (max-width: 768px) {
  body.home #contents .c-news .news-list .item .content {
    width: calc(100% - 120px);
    gap: 13px 10px;
    padding-left: 15px;
  }
}

body.home #contents .c-news .news-list .item .content .date {
  width: 100%;
  font-size: 13px;
  font-weight: 300;
  font-family: "EB Garamond", serif;
}

@media screen and (max-width: 768px) {
  body.home #contents .c-news .news-list .item .content .date {
    width: 60px;
    font-size: 12px;
    margin-right: 5px;
  }
}

body.home #contents .c-news .news-list .item .content .title {
  font-size: 15px;
  line-height: 1.8;
  transition: color 0.3s;
}

@media screen and (max-width: 768px) {
  body.home #contents .c-news .news-list .item .content .title {
    width: 100%;
    font-size: 14px;
    line-height: 1.4;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  body.home #contents .c-news .news-list .item .content .title::before {
    content: "";
    display: block;
    height: 0;
    width: 0;
    margin-top: calc((1 - 1.4) * 0.5em);
  }
}

body.home #contents .c-schedule {
  padding: 170px 0 80px;
  position: relative;
  z-index: 2;
}

body.home #contents .c-schedule::before {
  content: "";
  display: block;
  /* max-width: 1400px; */
  width: 100%;
  height: 1200px;
  background-image: url(../images/top/schedule-bk.png);
  background-size: 100% 1200px;
  background-repeat: no-repeat;
  position: absolute;
  top: 30px;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  body.home #contents .c-schedule {
    padding: 120px 0 20px;
  }

  body.home #contents .c-schedule::before {
    background-image: url(../images/top/schedule-bk-sp.png);
    height: 100%;
    background-size: 100% 100%;
  }
}

body.home #contents .c-schedule .contents-inner {
  position: relative;
  z-index: 1;
}


body.home #contents .c-schedule .schedule-list {
  margin-top: 30px;
  margin-bottom: 40px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
}

body.home #contents .c-schedule .schedule-list .item {
  background-color: #fff;
  border-radius: 13px;
  padding: 25px 25px 45px;
  width: 33%;
  position: relative;
}

@media screen and (max-width: 960px) {
  body.home #contents .c-schedule .schedule-list {
    gap: 10px;
  }

  body.home #contents .c-schedule .schedule-list .item {
    padding: 15px 15px 40px;
  }
}

body.home #contents .c-schedule .schedule-list .item::before {
  content: "";
  position: absolute;
  bottom: 15px;
  transform: translateY(-50%);
  right: 25px;
  width: 17px;
  height: 14px;
  background: url(../images/common/arrow-blue.png) no-repeat;
  background-size: 100% 100%;
}

body.home #contents .c-schedule .schedule-list .item:hover {
  opacity: .5;
}

body.home #contents .c-schedule .schedule-list .item a {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

body.home #contents .c-schedule .schedule-list .item .content .top-content {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

body.home #contents .c-schedule .schedule-list .item .content .category-item span {
  background-color: #c0cbda;
  color: #fff;
}

body.home #contents .c-schedule .schedule-list .item .content .title {
  line-height: 2;
}

body.home #contents .c-schedule .explan-area {
  display: block;
  margin-top: 70px;
}

body.home #contents .c-schedule .explan-area .item {
  background-color: #fff;
  border-radius: 13px;
  padding: 60px 40px;
  width: fit-content;
  text-align: center;
  margin: 30px auto 0;
  max-width: 620px;
}

@media screen and (max-width: 980px) {
  body.home #contents .c-schedule .explan-area .item {
    padding: 30px;
  }
}

body.home #contents .c-schedule .explan-area .item .title {
  font-size: 20px;
  margin-bottom: 40px;
  margin-top: 20px;
  letter-spacing: 2px;
}

body.home #contents .c-schedule .explan-area .item .detail {
  text-align: left;
  font-size: 14px;
  line-height: 2;
}

@media screen and (max-width: 768px) {

  body.home #contents .c-schedule .explan-area {
    display: block;
  }

  body.home #contents .c-schedule .explan-area .item {
    padding: 30px;
    width: 100%;
    margin-bottom: 20px;
    border-radius: 7px;
  }

  body.home #contents .c-schedule .explan-area .item .img img {
    width: 100px;
  }

  body.home #contents .c-schedule .explan-area .item .title {
    margin-bottom: 25px;
    margin-top: 15px;
  }

  body.home #contents .c-schedule .schedule-list {
    display: block;
  }

  body.home #contents .c-schedule .schedule-list .item {
    width: 100%;
    padding: 20px 20px 30px;
    border-radius: 7px;
    margin-top: 15px;
  }

  body.home #contents .c-schedule .schedule-list .item::before {
    right: 10px;
    bottom: 5px;
  }

  body.home #contents .c-schedule .schedule-list .item .content {
    display: flex;
    justify-content: start;
    gap: 15px;
  }

  body.home #contents .c-schedule .schedule-list .item .content .top-content {
    margin-bottom: 0px;
  }

  body.home #contents .c-schedule .schedule-list .item .content .title span.text {
    line-height: 1.3;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    width: 100%;
  }

  body.home #contents .c-schedule .schedule-list .item .content .title .category-item {
    margin-bottom: 10px;
  }
}

body.home #contents .c-discography {
  padding: 120px 0 80px;
}

@media screen and (max-width: 768px) {
  body.home #contents .c-discography {
    padding: 70px 0 60px;
  }
}

body.home #contents .c-discography .section-title span {
  display: block;
}

body.home #contents .c-discography .section-title span::before {
  background-color: #020101;
}

body.home #contents .c-discography .section-title img {
  width: 100%;
}

body.home #contents .c-discography .discography-box {
  position: relative;
  z-index: 5;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  gap: 70px;
}

@media screen and (max-width: 768px) {
  body.home #contents .c-discography .discography-box {
    margin-top: -2vw;
    display: block;
  }
}

body.home #contents .c-discography .discography-box .thumbnail {
  text-align: center;
  width: 60%;
}

body.home #contents .c-discography .discography-box .thumbnail img {
  width: 400px;
  height: 400px;
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  body.home #contents .c-discography .discography-box .thumbnail {
    width: 100%;
    margin-top: 40px;
  }

  body.home #contents .c-discography .discography-box .thumbnail img {
    width: 100%;
  }
}

body.home #contents .c-discography .discography-box .content {
  margin-top: 30px;
  text-align: center;
  width: 30%;
}

@media screen and (max-width: 768px) {
  body.home #contents .c-discography .discography-box .content {
    margin-top: 35px;
    width: 100%;
  }
}

body.home #contents .c-discography .discography-box .content .headding {
  text-align: left;
}

body.home #contents .c-discography .discography-box .content .headding .text01 {
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  body.home #contents .c-discography .discography-box .content .headding {
    text-align: center;
  }

  body.home #contents .c-discography .discography-box .content .headding .text01 {
    /* font-size: 17px; */
  }
}

body.home #contents .c-discography .discography-box .content .headding .text02 {
  margin-top: 15px;
  font-size: 34px;
  line-height: 1.3;
}

@media screen and (max-width: 768px) {
  body.home #contents .c-discography .discography-box .content .headding .text02 {
    font-size: 28px;
  }
}

body.home #contents .c-discography .discography-box .content .headding .text03 {
  margin-top: 15px;
  font-size: 16px;
  font-family: "EB Garamond", serif;
}

@media screen and (max-width: 768px) {
  body.home #contents .c-discography .discography-box .content .headding .text03 {
    /* font-size: 13px; */
  }
}

body.home #contents .c-discography .discography-box .content .buying-btn {
  margin-top: 65px;
}

body.home #contents .c-discography .discography-box .content .common-view-more-btn {
  margin-top: 40px;
  text-align: left;
}

@media screen and (max-width: 768px) {
  body.home #contents .c-discography .discography-box .content .buying-btn {
    margin-top: 30px;
  }

  body.home #contents .c-discography .discography-box .content .common-view-more-btn {
    text-align: center;
    margin-top: 20px;
  }
}

body.home #contents .c-movie {}

body.home #contents .c-movie .section-title span::before {}

body.home #contents .c-movie .pickup-movie {
  position: relative;
  background-color: #d9e4e9;
  cursor: pointer;
  text-align: center;
  margin-top: 40px;
}

body.home #contents .c-movie .pickup-movie .thumbnail::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: url(../images/common/icn-pickup-movie-play.png) no-repeat;
  background-size: 100% 100%;
}

body.home #contents .c-movie .pickup-movie img,
body.home #contents .c-movie .pickup-movie iframe {
  width: 600px;
  height: 480px;
  object-fit: cover;
}

body.home #contents .c-movie .movie-inner {}

@media screen and (max-width: 768px) {
  body.home #contents .c-movie {
    padding-bottom: 100px;
  }

  body.home #contents .c-movie .movie-inner {}

  body.home #contents .c-movie .pickup-movie img,
  body.home #contents .c-movie .pickup-movie iframe {
    width: 80%;
    height: auto;
  }

  body.home #contents .c-movie .pickup-movie .thumbnail::after {
    width: 60px;
    height: 60px;
  }
}

body.home #contents .c-movie .movie-area {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 30px;
}

body.home #contents .c-movie .movie-slider {
  margin-top: 80px;
}

@media screen and (max-width: 768px) {
  body.home #contents .c-movie .movie-slider {
    margin-top: 35px;
  }
}

body.home #contents .c-movie .movie-slider .swiper-slide {
  font-family: "Montserrat", sans-serif;
  color: #a9a8a8;
}

body.home #contents .c-movie .movie-slider .swiper-slide .thumbnail {
  position: relative;
  position: relative;
  background-color: transparent;
}

body.home #contents .c-movie .movie-slider .swiper-slide .thumbnail::before {
  content: "";
  display: block;
  padding-top: 54.5454545455%;
}

body.home #contents .c-movie .movie-slider .swiper-slide .thumbnail img,
body.home #contents .c-movie .movie-slider .swiper-slide .thumbnail iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.home #contents .c-movie .movie-slider .swiper-slide .thumbnail>a {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s;
}

body.home #contents .c-movie .movie-slider .swiper-slide .thumbnail>a:hover {
  background: rgba(255, 255, 255, 0.5);
}

body.home #contents .c-movie .movie-slider .swiper-slide .thumbnail::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: url("../images/common/icn-movie-play.png") no-repeat;
  background-size: 100% 100%;
}

@media screen and (max-width: 768px) {
  body.home #contents .c-movie .movie-area {
    margin-top: 35px;
  }
}

body.home #contents .c-movie .movie-area .movie-item {
  width: 258px;
  height: 140px;
  position: relative;
  background-color: transparent;
  cursor: pointer;
}

body.home #contents .c-movie .movie-area .thumbnail {}

body.home #contents .c-movie .movie-area .thumbnail img,
body.home #contents .c-movie .movie-area .thumbnail iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 258px;
  height: 140px;
  object-fit: cover;
}

body.home #contents .c-movie .movie-area .thumbnail::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: url("../images/common/icn-movie-play.png") no-repeat;
  background-size: 100% 100%;
}

body.home #contents .c-movie .common-view-btn a {
  background-color: #262525;
}

body.home #contents .c-movie .common-view-more-btn {
  margin-top: 40px;
}

.c-profile {
  padding-top: 130px;
  position: relative;
}

body.home #contents .c-profile::before {
  content: "";
  display: block;
  width: 100%;
  height: 2735px;
  background-image: url(../images/top/profile-bk.png);
  background-size: 100% 2735px;
  background-repeat: no-repeat;
  position: absolute;
  top: -90px;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  body.home #contents .c-movie .movie-area .thumbnail::after {
    width: 35px;
    height: 35px;
  }

  body.home #contents .c-movie .movie-slider .swiper-slide .thumbnail::after {
    width: 35px;
    height: 35px;
  }

  .c-profile {
    padding-top: 10px;
    background-color: #dde5ec;
  }

  body.home #contents .c-profile::before {
    background-image: url(../images/top/profile-bk-sp.png);
    height: 100%;
    background-size: 100%;
  }
}

.c-profile .contents-inner {
  position: relative;
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 30px;
  padding-top: 50px;
}

@media screen and (max-width: 1200px) {
  .c-profile .contents-inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media screen and (max-width: 768px) {
  .c-profile .contents-inner {
    gap: 0;
    padding-bottom: 30px;
  }
}

.c-profile .members-list1 {
  width: 48%;
}

.c-profile .members-list2 {
  width: 48%;
  margin-top: 200px;
}

.c-profile .contents-inner .item {
  height: 300px;
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  text-decoration: unset;
  margin-bottom: 30px;
  color: #4a4c4e;
  position: relative;
}

.c-profile .contents-inner .item::before {
  content: "";
  position: absolute;
  transform: translateY(-50%);
  right: 25px;
  bottom: 25px;
  width: 17px;
  height: 14px;
  background: url(../images/common/arrow-blue.png) no-repeat;
  background-size: 100% 100%;
}

@media screen and (max-width: 800px) {
  .c-profile .contents-inner {
    gap: 10px;
  }
}

@media screen and (max-width: 768px) {
  .c-profile .members-list1 {
    width: 100%;
  }

  .c-profile .members-list2 {
    width: 100%;
    margin-top: 0;
  }

  .c-profile .contents-inner .item {
    margin-bottom: 20px;
    border-radius: 10px;
    height: 180px;
  }
}

.c-profile .contents-inner .item .item-thumbnail {
  width: 48%;
}

.c-profile .contents-inner .item .item-thumbnail img {
  width: 277px;
  height: 300px;
  object-fit: cover;
  object-position: 50% 0%;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.c-profile .contents-inner .item:hover .item-thumbnail img {
  opacity: 1;
  transform: scale(1.1);
}

.c-profile .contents-inner .item .item-text {
  width: 48%;
  padding: 25px;
}

.c-profile .contents-inner .item .item-name {
  margin-top: 25px;
  font-size: 32px;
  font-family: "EB Garamond", serif;
}

@media screen and (max-width: 768px) {
  .c-profile .contents-inner .item::before {
    right: 15px;
    bottom: 10px;
  }

  .c-profile .contents-inner .item .item-name {
    margin-top: 15px;
    font-size: 20px;
  }

  .c-profile .contents-inner .item .item-text {
    padding: 0px;
  }

  .c-profile .contents-inner .item .item-thumbnail {
    text-align: center;
  }

  .c-profile .contents-inner .item .item-thumbnail img {
    width: 180px;
    height: auto;
  }
}

.c-profile .contents-inner .item .item-name-jp {
  margin-top: 10px;
  font-size: 15px;
  color: #4a4c4e;
}

@media screen and (max-width: 768px) {
  .c-profile .contents-inner .item .item-name-jp {
    margin-top: 10px;
    font-size: 12px;
  }
}

.c-profile .contents-inner .item .item-birthday {
  margin-top: 15px;
  font-size: 14px;
  color: #4a4c4e;
  font-family: "EB Garamond", serif;
}

@media screen and (max-width: 768px) {
  .c-profile .contents-inner .item .item-birthday {
    margin-top: 10px;
  }
}

.c-profile .contents-inner .item .profile-sns {
  position: relative;
  display: flex;
  gap: 10px;
  margin-top: 20px;
  align-items: center;
}

.c-profile .contents-inner .item .loveyou {
  position: absolute;
  bottom: 25px;
}

body.home #contents .c-sns {
  padding-bottom: 45px;
  background-color: #dde5ec;
}

body.home #contents .c-sns .fanclub-btn {
  padding-top: 50px;
}

.c-profile .contents-inner .item .loveyou img {
  max-width: 120px;
  width: 10vw;
}

.c-profile .contents-inner .item .loveyou img:hover {
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .c-profile .contents-inner .item .profile-sns {
    gap: 5px;
    margin-top: 10px;
  }

  .c-profile .contents-inner .item .profile-sns .sns-js-link img {
    width: 25px;
  }

  .c-profile .contents-inner .item .loveyou {
    bottom: 15px;
  }

  .c-profile .contents-inner .item .loveyou img {
    width: 55%;
  }

  body.home #contents .c-sns .fanclub-btn {
    padding-top: 25px;
  }
}

body.home #contents .c-sns .fanclub-btn a {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 500px;
  height: 90px;
  margin: 0 auto;
  color: #4a4c4e;
  text-decoration: none;
  font-family: "EB Garamond", serif;
  font-size: 20px;
  background-color: #fff;
  letter-spacing: 1.8px;
  overflow: hidden;
  border-radius: 90px;
}

body.home #contents .c-sns .fanclub-btn a:hover {
  opacity: .5;
}

@media screen and (min-width: 769px) {
  body.home #contents .c-sns .fanclub-btn a::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: -20%;
    width: 140%;
    height: 160%;
    transform: translateY(120%);
    transition: transform 0.3s;
    transform-origin: center center;
    background-color: #4a4c4e;
  }
}

@media screen and (max-width: 768px) {
  body.home #contents .c-sns .fanclub-btn a {
    max-width: 300px;
    width: 80%;
    height: 65px;
    font-size: 14px;
  }
}

body.home #contents .c-sns .fanclub-btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 40px;
  width: 13px;
  height: 13px;
  background: url("../images/common/icn-arrow-upright-bk.svg") no-repeat;
  background-size: 100% 100%;
}

@media screen and (min-width: 769px) {
  body.home #contents .c-sns .fanclub-btn a::before {
    transition: background 0.3s;
  }
}

@media screen and (max-width: 768px) {
  body.home #contents .c-sns .fanclub-btn a::before {
    right: 20px;
    width: 9px;
    height: 9px;
  }
}

body.home #contents .c-sns .sns-list {
  padding-top: 75px;
}

@media screen and (max-width: 768px) {
  body.home #contents .c-sns .sns-list {
    padding-top: 60px;
  }
}

body.home #contents .c-sns .sns-list .tiktok-instagram-area {
  display: flex;
  justify-content: center;
  align-items: start;
  display: -webkit-flex;
  gap: 30px;
}

body.home #contents .c-sns .sns-list .tiktok-box {
  max-width: 500px;
  width: 48%;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

body.home #contents .c-sns .sns-list .tiktok-box blockquote {
  margin: 0;
  /* position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important; */
  /* transform-origin: top left;
  transform: scale(0.6); */
}

body.home #contents .c-sns .sns-list .tiktok-box blockquote iframe {
  /* width: 100% !important;
  height: 100% !important; */
  border: none;
}

body.home #contents .c-sns .sns-list .instagram-box {
  max-width: 500px;
  width: 48%;
  overflow: hidden;
}

body.home #contents .c-sns .sns-list .sns-link {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 20px;
  margin-top: 55px;
}

@media screen and (max-width: 800px) {
  body.home #contents .c-sns .sns-list .tiktok-instagram-area {
    display: block;
  }

  body.home #contents .c-sns .sns-list .tiktok-box {
    width: 100%;
    max-width: 100%;
    margin: auto;
    margin-bottom: 40px;
  }

  body.home #contents .c-sns .sns-list .instagram-box {
    width: 100%;
    max-width: 100%;
    margin: auto;
  }

  body.home #contents .c-sns .sns-list .sns-link {
    gap: 20px 7.5%;
    flex-wrap: wrap;
    width: 53.3333333333vw;
    margin-top: 45px;
  }

  body.home #contents .c-sns .sns-list .sns-link li {
    width: 25%;
  }

  body.home #contents .c-sns .sns-list .sns-link li img {
    width: 100%;
  }
}

#sb_instagram .sb_instagram_header, .sb_instagram_header {
  display: none;
}

#sb_instagram #sbi_load {
  display: none;
}

#sb_instagram #sbi_images {
  padding: 0 !important;
}

/*--------------------------
SUB
----------------------------*/
body.sub #contents .c-sub01 {
  padding-top: 60px;
}

@media screen and (max-width: 768px) {
  body.sub #contents .c-sub01 {
    padding-top: 40px;
  }
}

body #contents .c-sub-mv {
  height: 22vw;
  background-color: #fff;
  overflow: hidden;
}

body #contents .c-sub-mv .bk img {
  width: 100%;
  margin-top: -6vw;
}

body #contents .c-sub-mv .title {
  position: absolute;
  top: 22vw;
  left: 12%;
  font-weight: 300;
  font-family: "EB Garamond", serif;
  font-size: 40px;
}

@media screen and (max-width: 1100px) {
  body.sub #contents .c-mv {
    background-size: 100% 150px;
  }
}

@media screen and (max-width: 768px) {
  body.sub #contents .c-mv {
    height: 120px;
  }

  body #contents .c-sub-mv {
    height: 31vw;
  }

  body #contents .c-sub-mv .title {
    top: 38vw;
    left: 25px;
    font-size: 25px;
  }

  body #contents .c-sub-mv .bk img {
    margin-top: -12vw;
  }
}

body.sub #breadcrumb {
  padding-top: 20vw;
  background-image: url(../images/common/bottom-bk.png);
  background-repeat: repeat;
  background-size: 100%;
  height: 30vw;
}

@media screen and (max-width: 768px) {
  body.sub #breadcrumb {
    background-image: url(../images/common/bottom-bk-sp.png);
    padding-top: 28vw;
    height: 39vw;
  }
}

body.sub #breadcrumb .contents-inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 0 10px;
}

body.sub #breadcrumb a,
body.sub #breadcrumb span {
  font-size: 13px;
  color: #4a4c4e;
  text-decoration: none;
  line-height: 1.4;
}

body.sub #breadcrumb span.separator {
  width: 8px;
  height: 8px;
  background-color: #c8b7e5;
  border-radius: 50%;
  margin: 0 5px 3px;
}

body.sub #breadcrumb span.current-item {
  color: #bfbfbf;
}

@media screen and (min-width: 769px) {
  body.sub #breadcrumb a span {
    transition: color 0.3s;
  }

  body.sub #breadcrumb a:hover span {
    color: #D4C9DA !important;
  }
}

/*--------------------------
DISCOGRAPHY
----------------------------*/
body.discography-archive #contents .c-sub01 {
  padding-top: 60px;
}

@media screen and (max-width: 768px) {
  body.discography-archive #contents .c-sub01 {
    padding-top: 40px;
  }
}

body.discography-archive #contents .discography-list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: wrap;
  align-items: normal;
  gap: 60px 5.75%;
  margin-top: 60px;
}

@media screen and (max-width: 1000px) {
  body.discography-archive #contents .discography-list {
    gap: 50px 2%;
  }
}

@media screen and (max-width: 768px) {
  body.discography-archive #contents .discography-list {
    gap: 50px 7%;
  }
}

body.discography-archive #contents .discography-list .item {
  width: 20.5%;
  text-align: center;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 1000px) {
  body.discography-archive #contents .discography-list .item {
    width: 23.5%;
  }
}

@media screen and (max-width: 768px) {
  body.discography-archive #contents .discography-list .item {
    width: 46.5%;
  }
}

body.discography-archive #contents .discography-list .item .link {
  position: relative;
}

body.discography-archive #contents .discography-list .item .link a {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 769px) {
  body.discography-archive #contents .discography-list .item .link a+.item-thumbnail {
    transition: opacity 0.3s;
  }

  body.discography-archive #contents .discography-list .item .link a:hover+.item-thumbnail {
    opacity: 0.7;
  }
}

body.discography-archive #contents .discography-list .item .item-thumbnail {
  position: relative;
  background-color: transparent;
}

body.discography-archive #contents .discography-list .item .item-thumbnail::before {
  content: "";
  display: block;
  padding-top: 100%;
}

body.discography-archive #contents .discography-list .item .item-thumbnail img,
body.discography-archive #contents .discography-list .item .item-thumbnail iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.discography-archive #contents .discography-list .item .item-date {
  margin-top: 20px;
  font-size: 15px;
  color: #4a4c4e;
  line-height: 1.2;
  font-family: "EB Garamond", serif;
}

body.discography-archive #contents .discography-list .item .item-date::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 1.2) * 0.5em);
}

@media screen and (max-width: 768px) {
  body.discography-archive #contents .discography-list .item .item-date {
    margin-top: 25px;
    font-size: 13px;
  }
}

body.discography-archive #contents .discography-list .item .item-name {
  margin-top: 15px;
  font-size: 22px;
  font-weight: bold;
  line-height: 1.5;
}

body.discography-archive #contents .discography-list .item .item-name::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 1.5) * 0.5em);
}

@media screen and (max-width: 900px) {
  body.discography-archive #contents .discography-list .item .item-name {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  body.discography-archive #contents .discography-list .item .item-name {
    margin-top: 10px;
    font-size: 17px;
  }
}

body.discography-archive #contents .discography-list .item .buying-btn {
  margin-top: auto;
  padding-top: 10px;
}

@media screen and (max-width: 768px) {
  body.discography-archive #contents .discography-list .item .buying-btn {
    padding-top: 5px;
  }
}

body.discography-archive #contents .discography-list .item .buying-btn a {
  width: 100%;
  max-width: 200px;
  height: 47px;
  margin: 0 auto;
  font-size: 14px;
}

@media screen and (min-width: 769px) {
  body.discography-archive #contents .discography-list .item .buying-btn a {
    transition: 0.3s;
  }

  body.discography-archive #contents .discography-list .item .buying-btn a span {
    margin-left: -20px;
  }

  body.discography-archive #contents .discography-list .item .buying-btn a:hover span {
    color: #715da9;
  }

  body.discography-archive #contents .discography-list .item .buying-btn a:hover::before {
    display: none;
  }

  body.discography-archive #contents .discography-list .item .buying-btn a:hover::after {
    background: url(../images/common/arrow-purple.png) no-repeat;
    right: 18px;
  }
}

@media screen and (max-width: 768px) {
  body.discography-archive #contents .discography-list .item .buying-btn a {
    height: 38px;
    font-size: 11px;
  }

  body.discography-archive #contents .discography-list .item .buying-btn a span {
    margin-left: -15px;
  }

  body.discography-archive #contents .discography-list .item .buying-btn a::after {
    right: 15px;
  }
}

body.discography-single #contents .c-sub01 {
  padding-top: 0;
}

body.discography-single #contents .media-box {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  margin-top: 100px;
  gap: 0 60px;
}

@media screen and (max-width: 900px) {
  body.discography-single #contents .media-box {
    gap: 0 30px;
  }
}

@media screen and (max-width: 768px) {
  body.discography-single #contents .media-box {
    display: block;
    margin-top: 60px;
  }
}

body.discography-single #contents .media-box .buying-btn {
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  body.discography-single #contents .media-box .buying-btn {
    margin-top: 40px;
  }
}

body.discography-single #contents .media-box .buying-btn a {
  margin: 0 auto;
}

@media screen and (min-width: 769px) {
  body.discography-single #contents .media-box .buying-btn a {}

  body.discography-single #contents .media-box .buying-btn a:hover {
    color: #fff;
  }

  body.discography-single #contents .media-box .buying-btn a:hover::before {}
}

body.discography-single #contents .media-box .left-col {
  flex-shrink: 0;
  width: 390px;
}

@media screen and (max-width: 768px) {
  body.discography-single #contents .media-box .left-col {
    width: 100%;
    text-align: center;
  }

  body.discography-single #contents .media-box .left-col img {
    width: 64vw;
  }
}

@media screen and (max-width: 768px) {
  body.discography-single #contents .media-box .right-col {
    margin-top: 45px;
  }
}

body.discography-single #contents .media-box .right-col .discography-title {
  position: relative;
  font-size: 32px;
  padding-left: 50px;
  display: flex;
  align-items: start;
  justify-content: start;
  font-weight: 600;
  line-height: 1.3;
}

body.discography-single #contents .media-box .right-col .discography-title::before {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../images/common/circle.png);
  background-size: 100%;
  background-repeat: no-repeat;
  height: 36px;
  width: 36px;
  left: 0;
  top: 2px;
}

@media screen and (max-width: 768px) {
  body.discography-single #contents .media-box .right-col .discography-title {
    /* font-size: 26px;
    padding-left: 40px;
    background-size: 24px 27px; */
    margin: 30px 0 20px;
    padding: 8px 0 8px 40px;
    font-size: 19px;
    background-size: 27px 31px;
  }

  body.discography-single #contents .media-box .right-col .discography-title::before {
    background-size: 80%;
    top: 5px;
  }
}

body.discography-single #contents .media-box .right-col .date {
  margin-top: 20px;
  font-size: 16px;
  font-family: "EB Garamond", serif;
}

@media screen and (max-width: 768px) {
  body.discography-single #contents .media-box .right-col .date {
    margin-top: 10px;
    padding-left: 40px;
    font-size: 14px;
  }
}

body.discography-single #contents .media-box .right-col .discography-information {
  margin-top: 35px;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  body.discography-single #contents .media-box .right-col .discography-information {
    font-size: 15px;
  }
}

body.discography-single #contents .media-box .right-col .discography-information .box-headline {
  margin-bottom: 20px;
}

body.discography-single #contents .media-box .right-col .discography-information p {
  line-height: 2;
  margin-top: 15px;
}

body.discography-single #contents .media-box .right-col .discography-information p::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 2) * 0.5em);
}

@media screen and (max-width: 768px) {
  body.discography-single #contents .editor-styles-wrapper {
    margin-top: 30px;
  }
}

body.discography-single #contents .editor-styles-wrapper .wp-block-columns {
  margin-top: 30px;
}

body.discography-single #contents .common-back-btn {
  margin-top: 140px;
}

@media screen and (max-width: 768px) {
  body.discography-single #contents .common-back-btn {
    margin-top: 70px;
  }
}

body.discography-single #contents .common-back-btn a {
  margin: 0 auto;
}

/*--------------------------
MOVIE
----------------------------*/
body.movie-archive #contents .movie-list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 60px 3%;
  margin-top: 60px;
}

@media screen and (max-width: 600px) {
  body.movie-archive #contents .movie-list {
    gap: 50px 0;
  }
}

body.movie-archive #contents .movie-list .item {
  width: 48.5%;
}

@media screen and (min-width: 769px) {
  body.movie-archive #contents .movie-list .item:hover {
    cursor: pointer;
  }
}

@media screen and (min-width: 769px) {
  body.movie-archive #contents .movie-list .item {
    transition: 0.3s;
  }

  body.movie-archive #contents .movie-list .item:hover {
    opacity: 0.5;
  }
}

@media screen and (max-width: 600px) {
  body.movie-archive #contents .movie-list .item {
    width: 100%;
  }
}

body.movie-archive #contents .movie-list .item .thumbnail {
  position: relative;
  position: relative;
  background-color: transparent;
}

body.movie-archive #contents .movie-list .item .thumbnail::before {
  content: "";
  display: block;
  padding-top: 56.8592057762%;
}

body.movie-archive #contents .movie-list .item .thumbnail img,
body.movie-archive #contents .movie-list .item .thumbnail iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.movie-archive #contents .movie-list .item .thumbnail::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16%;
  height: 53px;
  background: url("../images/common/icn-play.svg") no-repeat;
  background-size: 100% 100%;
}

body.movie-archive #contents .movie-list .item .thumbnail img {
  width: 100%;
}

body.movie-archive #contents .movie-list .item .movie-title {
  margin-top: 10px;
  line-height: 1.6;
}

body.movie-archive #contents .movie-list .item .movie-title::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 1.6) * 0.5em);
}

body.movie-archive #contents .wp-pagenavi {
  margin-top: 70px;
}

/*--------------------------
NEWS
----------------------------*/
body.news-archive #contents .news-list {
  margin-top: 55px;
}

@media screen and (max-width: 768px) {
  body.news-archive #contents .news-list {
    margin-top: 30px;
  }
}

body.news-archive #contents .news-list .item {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 38px;
  padding: 25px 10px;
  border-bottom: 1px solid #dfe1e3;
}

body.news-archive #contents .news-list .item::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background-color: #dfe1e3;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease, background-color 0.5s ease;
}

body.news-archive #contents .news-list .item:hover::after {
  transform: scaleX(1);
  background-color: #D4C9DA;
}

@media screen and (max-width: 768px) {
  body.news-archive #contents .news-list .item {
    gap: 0 15px;
    padding: 20px 0;
  }
}

body.news-archive #contents .news-list .item.active .item-title {
  color: #D4C9DA;
}

body.news-archive #contents .news-list .item a {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

body.news-archive #contents .news-list .item .item-thumbnail {
  flex-shrink: 0;
  width: 165px;
  position: relative;
  background-color: transparent;
}

body.news-archive #contents .news-list .item .item-thumbnail::before {
  content: "";
  display: block;
  padding-top: 60.6060606061%;
}

body.news-archive #contents .news-list .item .item-thumbnail img,
body.news-archive #contents .news-list .item .item-thumbnail iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  body.news-archive #contents .news-list .item .item-thumbnail {
    width: 121px;
  }
}

body.news-archive #contents .news-list .item .item-content .item-meta {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 15px;
}

body.news-archive #contents .news-list .item .item-content .item-meta .date {
  font-family: "EB Garamond", serif;
  font-size: 14px;
  font-weight: 300;
}

body.news-archive #contents .news-list .item .item-content .category-item span {
  background-color: #f6f8fa;
}

@media screen and (max-width: 768px) {
  body.news-archive #contents .news-list .item .item-content .item-meta .date {
    font-size: 12px;
  }
}

body.news-archive #contents .news-list .item .item-content .item-title {
  margin-top: 15px;
  font-size: 15px;
  line-height: 1.6;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.3s;
}

body.news-archive #contents .news-list .item .item-content .item-title::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 1.6) * 0.5em);
}

@media screen and (max-width: 768px) {
  body.news-archive #contents .news-list .item .item-content .item-title {
    margin-top: 10px;
    font-size: 14px;
  }
}

body.news-single #contents .c-sub01 .post-headding .post-meta {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 20px;
}

body.news-single #contents .c-sub01 .post-headding .post-meta .category-item span {
  background-color: #f3f5f6;
}

body.news-single #contents .c-sub01 .post-headding .post-meta .post-date {
  font-family: "EB Garamond", serif;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  body.news-single #contents .c-sub01 .post-headding .post-meta .post-date {
    font-size: 13px;
  }
}

body.news-single #contents .c-sub01 .post-headding .post-title {
  margin-top: 25px;
  padding-bottom: 20px;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.4;
  border-bottom: 2px solid #d5cfe6;
}

body.news-single #contents .c-sub01 .post-headding .post-title::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 1.4) * 0.5em);
}

@media screen and (max-width: 768px) {
  body.news-single #contents .c-sub01 .post-headding .post-title {
    margin-top: 20px;
    padding-bottom: 15px;
    font-size: 24px;
  }
}

body.sub #contents .c-sub01 .sns-share {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 35px;
  margin-top: 80px;
}

@media screen and (max-width: 768px) {
  body.sub #contents .c-sub01 .sns-share {
    margin-top: 40px;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px 0;
  }
}

body.sub #contents .c-sub01 .sns-share .sns-headline {
  font-size: 21px;
  font-family: "EB Garamond", serif;
  font-weight: 400;
  letter-spacing: 1.2px;
}

@media screen and (max-width: 768px) {
  body.sub #contents .c-sub01 .sns-share .sns-headline {
    width: 100%;
    font-size: 18px;
    text-align: center;
  }
}

body.sub #contents .c-sub01 .sns-share ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 25px;
}

body.sub #contents .c-sub01 .sns-share ul li a {
  display: block;
}

@media screen and (min-width: 769px) {
  body.sub #contents .c-sub01 .sns-share ul li a {
    transition: 0.3s;
  }

  body.sub #contents .c-sub01 .sns-share ul li a:hover {
    opacity: 0.5;
  }
}

body.sub #contents .c-sub01 .sns-share ul li a img {
  width: 33px;
}

body.sub #contents .c-sub01 .sns-share ul li:nth-of-type(2) a img {
  width: 26px;
}

body.news-single #contents .c-sub01 .common-back-btn {
  margin-top: 50px;
}

body.news-single #contents .c-sub01 .common-back-btn a {
  margin: 0 auto;
}

/*--------------------------
PROFILE
----------------------------*/
body.profile-archive #contents .c-sub01 {
  padding-top: 60px;
}

@media screen and (max-width: 768px) {
  body.profile-archive #contents .c-sub01 {
    padding-top: 40px;
  }
}

body.profile-archive #contents .c-sub01 .media-box {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  padding-bottom: 80px;
}

@media screen and (max-width: 768px) {
  body.profile-archive #contents .c-sub01 .media-box {
    flex-wrap: wrap;
    padding-bottom: 50px;
  }
}

body.profile-archive #contents .c-sub01 .media-box .thumbnail {
  flex-shrink: 0;
}

body.profile-archive #contents .c-sub01 .media-box .thumbnail img {
  max-width: 554px;
}

@media screen and (max-width: 850px) {
  body.profile-archive #contents .c-sub01 .media-box .thumbnail {
    width: 50%;
  }
}

@media screen and (max-width: 768px) {
  body.profile-archive #contents .c-sub01 .media-box .thumbnail {
    width: 100%;
  }

  body.profile-archive #contents .c-sub01 .media-box .thumbnail img {
    width: 100%;
  }
}

body.profile-archive #contents .c-sub01 .media-box .content {
  flex-grow: 1;
  padding-left: 75px;
}

@media screen and (max-width: 1000px) {
  body.profile-archive #contents .c-sub01 .media-box .content {
    padding-left: 40px;
  }
}

@media screen and (max-width: 768px) {
  body.profile-archive #contents .c-sub01 .media-box .content {
    margin-top: 30px;
    padding-left: 0;
  }
}

body.profile-archive #contents .c-sub01 .media-box .content .logo {
  padding-top: 15px;
}

body.profile-archive #contents .c-sub01 .media-box .content .logo img {
  max-width: 210px;
}

@media screen and (max-width: 1000px) {
  body.profile-archive #contents .c-sub01 .media-box .content .logo img {
    max-width: 150px;
  }

  body.profile-archive #contents .c-sub01 .media-box .thumbnail img {
    max-width: 370px;
  }
}

@media screen and (max-width: 768px) {
  body.profile-archive #contents .c-sub01 .media-box .thumbnail img {
    max-width: unset;
    width: 100%;
  }

  body.profile-archive #contents .c-sub01 .media-box .content .logo {
    padding-top: 0;
    text-align: center;
  }

  body.profile-archive #contents .c-sub01 .media-box .content .logo img {
    max-width: 150px;
    width: 61.0666666667vw;
  }
}

body.profile-archive #contents .c-sub01 .media-box .content p {
  margin-top: 50px;
  font-size: 16px;
  line-height: 2.1;
}

body.profile-archive #contents .c-sub01 .media-box .content p::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 2.1) * 0.5em);
}

@media screen and (max-width: 768px) {
  body.profile-archive #contents .c-sub01 .media-box .content p {
    margin-top: 30px;
    font-size: 14px;
  }
}

body.profile-archive #contents .c-profile {
  padding: 80px 25px 0;
  background-color: #e1e9f4;
}

body.profile-archive #contents .c-profile .contents-inner {
  padding: 70px 0 0;
}

@media screen and (max-width: 768px) {
  body.profile-archive #contents .c-profile .contents-inner {
    padding-top: 40px;
  }

  body.profile-archive #contents .c-profile {
    padding-top: 40px;
  }
}

.section-title.sub {
  max-width: 1000px;
  width: 100%;
  margin: auto;
  position: relative;
  padding-left: 50px;
  display: flex;
  align-items: center;
  justify-content: start;
}

.section-title.sub::before {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../images/common/circle.png);
  background-size: 100%;
  background-repeat: no-repeat;
  height: 36px;
  width: 36px;
  left: 0;
}

@media screen and (max-width: 768px) {
  .section-title.sub {
    padding-left: 40px;
  }

  .section-title.sub::before {
    top: 1px;
    background-size: 75%;
  }

  body.profile-archive #contents .c-profile .section-title.sub {
    padding-left: 60px;
  }

  body.profile-archive #contents .c-profile .section-title.sub::before {
    left: 25px;
  }
}

body.profile-archive #breadcrumb {
  background-color: #e1e9f4;
  background-image: none;
  padding-top: 5vw;
  height: 10vw;
  /* padding: 5vw px 0; */
}

body.profile-archive #breadcrumb .contents-inner {
  max-width: 1170px;
}

body.profile-single #contents .c-sub01 .media-box {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
}

@media screen and (max-width: 768px) {
  body.profile-single #contents .c-sub01 .media-box {
    display: block;
    padding: 0 35px;
  }

  body.profile-archive #breadcrumb {
    padding-bottom: 40px;
  }
}

body.profile-single #contents .c-sub01 .media-box .thumbnail {
  position: relative;
  flex-shrink: 0;
  width: 400px;
  position: relative;
  background-color: transparent;
}

@media screen and (max-width: 850px) {
  body.profile-single #contents .c-sub01 .media-box .thumbnail {
    width: 45%;
  }
}

body.profile-single #contents .c-sub01 .media-box .thumbnail::before {
  content: "";
  display: block;
  padding-top: 149.8845265589%;
}

body.profile-single #contents .c-sub01 .media-box .thumbnail img,
body.profile-single #contents .c-sub01 .media-box .thumbnail iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  body.profile-single #contents .c-sub01 .media-box .thumbnail {
    width: 100%;
  }

  body.profile-single #contents .c-sub01 .media-box .thumbnail img {
    width: 100%;
  }
}

body.profile-single #contents .c-sub01 .media-box .content {
  flex-grow: 1;
  padding-top: 55px;
  padding-left: 100px;
}

@media screen and (max-width: 900px) {
  body.profile-single #contents .c-sub01 .media-box .content {
    padding-top: 20px;
    padding-left: 30px;
  }
}

@media screen and (max-width: 768px) {
  body.profile-single #contents .c-sub01 .media-box .content {
    padding-left: 0;
  }
}

body.profile-single #contents .c-sub01 .media-box .content .profile-name {
  font-size: 38px;
}

body.profile-single #contents .c-sub01 .media-box .content .profile-en-name {
  font-size: 15px;
  font-family: "EB Garamond", serif;
  padding-top: 15px;
}

body.profile-single #contents .c-sub01 .media-box .content .loveyou {
  padding-top: 15px;
}

body.profile-single #contents .c-sub01 .media-box .content .loveyou img {
  width: 120px;
}

@media screen and (max-width: 768px) {
  body.profile-single #contents .c-sub01 .media-box .content .profile-name {
    font-size: 25px;
  }
}

body.profile-single #contents .c-sub01 .media-box .content .profile-eng {
  margin-top: 20px;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  body.profile-single #contents .c-sub01 .media-box .content .profile-eng {
    margin-top: 12px;
    font-size: 13px;
  }
}

body.profile-single #contents .c-sub01 .media-box .content .profile-information {
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  body.profile-single #contents .c-sub01 .media-box .content .profile-information {
    margin-top: 40px;
  }
}

body.profile-single #contents .c-sub01 .media-box .content .profile-information table {
  width: 100%;
}

body.profile-single #contents .c-sub01 .media-box .content .profile-information table th,
body.profile-single #contents .c-sub01 .media-box .content .profile-information table td {
  padding: 5px 0;
  font-size: 16px;
  font-weight: normal;
  line-height: 2;
  text-align: left;
  vertical-align: top;
}

@media screen and (max-width: 768px) {

  body.profile-single #contents .c-sub01 .media-box .content .profile-information table th,
  body.profile-single #contents .c-sub01 .media-box .content .profile-information table td {
    font-size: 14px;
  }
}

body.profile-single #contents .c-sub01 .media-box .content .profile-information table th {
  width: 110px;
}

body.profile-single #contents .c-sub01 .media-box .content .profile-information table td {
  padding-left: 35px;
}

@media screen and (max-width: 768px) {
  body.profile-single #contents .c-sub01 .media-box .content .profile-information table td {
    padding-left: 20px;
  }
}

body.profile-single #contents .c-sub01 .media-box .content .profile-sns {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 20px;
  margin-top: 30px;
}

@media screen and (min-width: 769px) {
  body.profile-single #contents .c-sub01 .media-box .content .profile-sns a {
    transition: 0.3s;
  }

  body.profile-single #contents .c-sub01 .media-box .content .profile-sns a:hover {
    opacity: 0.5;
  }
}

@media screen and (max-width: 768px) {
  body.profile-single #contents .c-sub01 .media-box .content .profile-sns {
    gap: 0 20px;
  }
}

body.profile-single #contents .c-sub02 {
  margin-top: 140px;
  padding-bottom: 130px;
}

@media screen and (max-width: 768px) {
  body.profile-single #contents .c-sub02 {
    margin-top: 60px;
    padding-bottom: 50px;
  }
}

body.profile-single #contents .c-sub02 .schedule-list {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 4.2%;
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  body.profile-single #contents .c-sub02 .schedule-list {
    display: block;
    margin-top: 35px;
    border-top: 1px solid #3b3838;
  }
}

body.profile-single #contents .c-sub02 .schedule-list .item {
  position: relative;
  width: 30.6%;
  padding: 25px 10px;
  border-top: 1px solid #babbbc;
  border-bottom: 1px solid #babbbc;
}

body.profile-single #contents .c-sub02 .schedule-list .item>a {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (min-width: 769px) {
  body.profile-single #contents .c-sub02 .schedule-list .item>a:hover+.common-schedule-date+.item-content .schedule-title {
    color: #D4C9DA;
  }
}

@media screen and (max-width: 768px) {
  body.profile-single #contents .c-sub02 .schedule-list .item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    display: -webkit-flex;
    flex-wrap: nowrap;
    border-top: none;
    gap: 0 20px;
    width: 100%;
    padding: 20px 10px;
  }
}

body.profile-single #contents .c-sub02 .schedule-list .item .schedule-meta {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 15px;
  margin-top: 25px;
}

@media screen and (max-width: 768px) {
  body.profile-single #contents .c-sub02 .schedule-list .item .schedule-meta {
    gap: 0 10px;
    margin-top: 0;
  }
}

body.profile-single #contents .c-sub02 .schedule-list .item .schedule-meta .category-item {
  position: relative;
}

body.profile-single #contents .c-sub02 .schedule-list .item .schedule-meta .category-item.news::before {
  content: none;
}

body.profile-single #contents .c-sub02 .schedule-list .item .schedule-meta .category-item span {
  min-width: initial;
  padding: 0 15px 0;
  background-color: transparent;
  color: #4a4c4e;
  background-color: #f6f8fa;
}

body.profile-single #contents .c-sub02 .schedule-list .item .schedule-meta .time {
  font-size: 14px;
  font-family: "EB Garamond", serif;
  color: #4e5459;
}

body.profile-single #contents .c-sub02 .schedule-list .item .schedule-title {
  margin-top: 30px;
  font-size: 17px;
  color: #020101;
  text-decoration: none;
  line-height: 1.8;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.3s;
}

body.profile-single #contents .c-sub02 .schedule-list .item .schedule-title::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 1.8) * 0.5em);
}

@media screen and (max-width: 768px) {
  body.profile-single #contents .c-sub02 .schedule-list .item .schedule-title {
    margin-top: 15px;
    font-size: 14px;
  }
}

body.profile-single #contents .c-sub03 {}

@media screen and (max-width: 768px) {
  body.profile-single #contents .c-sub03 {}
}

body.profile-single #contents .c-sub03 .members-slider {
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  body.profile-single #contents .c-sub03 .members-slider {
    margin-top: 45px;
    padding: 0 25px;
  }
}

body.profile-single #contents .c-sub03 .members-slider .swiper {
  padding-bottom: 65px;
}

@media screen and (max-width: 768px) {
  body.profile-single #contents .c-sub03 .members-slider .swiper {
    padding-bottom: 0;
  }

  body.profile-single #contents .c-sub03 .members-slider .swiper .swiper-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    display: -webkit-flex;
    flex-wrap: wrap;
    gap: 50px 12%;
  }

  body.profile-single #contents .c-sub03 .members-slider .swiper .swiper-wrapper .swiper-slide {
    width: 44%;
  }
}

body.profile-single #contents .c-sub03 .members-slider .swiper .swiper-pagination {
  bottom: 0;
}

body.profile-single #contents .c-sub03 .members-slider .swiper .swiper-pagination span {
  width: 10px;
  height: 10px;
  opacity: 1;
  margin: 0 20px;
  background-color: #e1e9f4;
}

@media screen and (max-width: 768px) {
  body.profile-single #contents .c-sub03 .members-slider .swiper .swiper-pagination span {
    width: 40px;
  }
}

body.profile-single #contents .c-sub03 .members-slider .swiper .swiper-pagination span.swiper-pagination-bullet-active {
  background-color: #bd94cd;
}

@media screen and (max-width: 768px) {
  body.profile-single #contents .c-sub03 .members-slider .swiper .swiper-pagination span {
    margin: 0 12px;
  }
}

body.profile-single #contents .c-sub03 .members-slider .swiper-slide img {
  width: 100%;
}

body.profile-single #contents .c-sub03 .common-back-btn {
  margin-top: 140px;
}

@media screen and (max-width: 768px) {
  body.profile-single #contents .c-sub03 .common-back-btn {
    margin-top: 60px;
  }
}

body.profile-single #contents .c-sub03 .common-back-btn a {
  margin: 0 auto;
}

@media screen and (min-width: 769px) {
  body.profile-single #contents .c-sub03 .common-back-btn a:hover span {
    /* background-color: #777675; */
    color: #fff;
  }
}

body.profile-single #breadcrumb {}

/*--------------------------
SCHEDULE
----------------------------*/
body.schedule-archive #contents .schedule-pager {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  margin-top: 80px;
  gap: 10%;
}

@media screen and (max-width: 768px) {
  body.schedule-archive #contents .schedule-pager {
    flex-wrap: wrap;
    margin-top: 50px;
    gap: 0px;
  }
}

body.schedule-archive #contents .schedule-pager .prev a,
body.schedule-archive #contents .schedule-pager .next a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 150px;
  height: 40px;
  padding-top: 1px;
  font-size: 22px;
  font-weight: 300;
  color: #4e5459;
  text-decoration: none;
  font-family: "EB Garamond", serif;
}

@media screen and (min-width: 769px) {

  body.schedule-archive #contents .schedule-pager .prev a,
  body.schedule-archive #contents .schedule-pager .next a {
    transition: 0.3s;
  }

  body.schedule-archive #contents .schedule-pager .prev a:hover,
  body.schedule-archive #contents .schedule-pager .next a:hover {
    color: #D4C9DA;
  }

  body.schedule-archive #contents .schedule-pager .prev a:hover::before,
  body.schedule-archive #contents .schedule-pager .next a:hover::before {
    background: url("../images/common/arrow-pink.png") no-repeat;
  }
}

@media screen and (max-width: 768px) {

  body.schedule-archive #contents .schedule-pager .prev a,
  body.schedule-archive #contents .schedule-pager .next a {
    font-size: 17px;
    width: 110px;
  }
}

body.schedule-archive #contents .schedule-pager .prev a::before,
body.schedule-archive #contents .schedule-pager .next a::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 13px;
  height: 10px;
  background: url("../images/common/arrow-black.png") no-repeat;
  background-size: 100% 100%;
  transition: 0.3s;
}

body.schedule-archive #contents .schedule-pager .prev a {
  padding-left: 10px;
}

@media screen and (min-width: 769px) {
  body.schedule-archive #contents .schedule-pager .prev a:hover::before {
    margin-left: -6px;
  }
}

body.schedule-archive #contents .schedule-pager .prev a::before {
  left: 15px;
  transform-origin: center center;
  transform: scale(-1, 1);
  margin-top: -5px;
}

body.schedule-archive #contents .schedule-pager .next a {
  padding-right: 10px;
}

@media screen and (min-width: 769px) {
  body.schedule-archive #contents .schedule-pager .next a:hover::before {
    margin-right: -6px;
  }
}

@media screen and (max-width: 768px) {
  body.schedule-archive #contents .schedule-pager .next a {}
}

body.schedule-archive #contents .schedule-pager .next a::before {
  right: 15px;
}

body.schedule-archive #contents .schedule-pager .current {
  text-align: center;
}

@media screen and (max-width: 768px) {
  body.schedule-archive #contents .schedule-pager .current {}
}

body.schedule-archive #contents .schedule-pager .current span {
  display: block;
}

body.schedule-archive #contents .schedule-pager .current span.year-month {
  font-size: 48px;
  font-weight: 300;
  font-family: "EB Garamond", serif;
  color: #4e5459;
}

body.schedule-archive #contents .schedule-pager .current span.month-name {
  font-size: 24px;
  font-weight: 300;
  font-family: "EB Garamond", serif;
  color: #b5a6e0;
  padding-top: 5px;
}

@media screen and (max-width: 768px) {
  body.schedule-archive #contents .schedule-pager .current span.year-month {
    font-size: 32px;
  }

  body.schedule-archive #contents .schedule-pager .current span.month-name {
    font-size: 20px;
  }
}

body.schedule-archive #contents .common-schedule-list {
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  body.schedule-archive #contents .common-schedule-list {
    margin-top: 30px;
  }
}

body.schedule-archive #contents .common-schedule-list .category-item span {
  background-color: #f3f5f6;
}

@media screen and (max-width: 768px) {
  body.schedule-archive #contents .common-schedule-list .category-item span {
    width: fit-content;
  }
}

.editor-styles-wrapper {
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  .editor-styles-wrapper {
    margin-top: 30px;
  }
}

.editor-styles-wrapper a {
  color: #020101;
}

@media screen and (min-width: 769px) {
  .editor-styles-wrapper a:hover {
    color: #D4C9DA;
  }
}

.editor-styles-wrapper .is-style-clear {
  display: flow-root;
}

.editor-styles-wrapper .alignnone {
  margin: 15px 0;
}

.editor-styles-wrapper .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.editor-styles-wrapper .clearfix {
  clear: both;
}

.editor-styles-wrapper .alignright {
  float: right;
}

.editor-styles-wrapper .alignleft {
  float: left;
}

.editor-styles-wrapper .wp-block-columns {
  margin-top: 40px;
  gap: 0 30px;
}

@media screen and (max-width: 768px) {
  .editor-styles-wrapper .wp-block-columns {
    flex-wrap: wrap !important;
    gap: 30px 0;
  }

  .editor-styles-wrapper .wp-block-columns>div {
    width: 100%;
  }
}

.editor-styles-wrapper .wp-block-columns.is-layout-flex {
  align-items: flex-start;
}

.editor-styles-wrapper .wp-block-columns .wp-block-column {
  /* flex-basis: initial;
  flex-grow: initial;
  min-width: initial; */
}

.editor-styles-wrapper .wp-block-columns .wp-block-image {
  margin: 0;
}

.editor-styles-wrapper .wp-block-columns .wp-block-image img {
  max-width: 100%;
}

@media screen and (max-width: 1000px) {
  .editor-styles-wrapper .wp-block-columns .wp-block-image img {
    max-width: 40vw;
  }
}

@media screen and (max-width: 768px) {
  .editor-styles-wrapper .wp-block-columns .wp-block-image img {
    max-width: 100%;
  }
}

.editor-styles-wrapper .wp-block-group {
  margin-top: 70px;
}

.editor-styles-wrapper .wp-block-group.is-style-border {
  margin: 40px auto;
  padding: 40px 40px 30px;
  border: 1px solid #cecfd1;
}


@media screen and (max-width: 768px) {
  .editor-styles-wrapper .wp-block-group.is-style-border {
    margin: 30px 0;
    padding: 35px 25px;
  }
}

.editor-styles-wrapper .wp-block-group.is-style-border ul {
  margin: 10px 0 0;
}

.editor-styles-wrapper .wp-block-group.is-style-border ul li:not(:nth-of-type(1)) {
  margin-top: 10px;
}

.editor-styles-wrapper .wp-block-group.is-style-border *+p {
  margin-top: 14px;
}

.editor-styles-wrapper .wp-block-group.is-style-default {
  margin-top: 0;
}

.editor-styles-wrapper .wp-block-image {
  margin: 40px auto 50px;
}

.editor-styles-wrapper .wp-block-image figure {
  text-align: center;
}

.editor-styles-wrapper .wp-block-image figure.alignleft {
  margin-right: 20px;
}

.editor-styles-wrapper .wp-block-image figure.alignright {
  margin-left: 20px;
}

@media screen and (max-width: 768px) {
  .editor-styles-wrapper .wp-block-image figure {
    float: none;
  }

  .editor-styles-wrapper .wp-block-image figure.alignleft {
    margin-right: 0;
  }

  .editor-styles-wrapper .wp-block-image figure.alignright {
    margin-left: 0;
  }
}

.editor-styles-wrapper .wp-block-image figure img {
  width: 80%;
  height: auto;
  padding-top: 10px;
}

@media screen and (max-width: 768px) {
  .editor-styles-wrapper .wp-block-image figure img {
    width: 100%;
    padding-top: 0px;
  }
}

.editor-styles-wrapper .wp-element-caption {
  font-size: 14px;
  color: #b0b0b0;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .editor-styles-wrapper .wp-element-caption {
    font-size: 12px;
  }
}

.editor-styles-wrapper .wp-block-group p {
  margin-top: 0;
}

.editor-styles-wrapper .wp-block-group p+p {
  margin-top: 20px;
}

.editor-styles-wrapper .wp-block-group figure.alignleft {
  margin: 0px 45px 15px 0;
}

.editor-styles-wrapper .wp-block-group figure.alignright {
  margin: 0px 0 15px 45px;
}

.editor-styles-wrapper .wp-block-group .wp-element-caption {
  display: block;
  margin: 15px 0 0 0;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .editor-styles-wrapper .wp-block-group .wp-element-caption {
    font-size: 12px;
  }
}

.editor-styles-wrapper .wp-block-flexible-table-block-table {
  margin: 80px auto 70px;
}

@media screen and (max-width: 768px) {
  .editor-styles-wrapper .wp-block-flexible-table-block-table {
    margin: 45px 0 20px;
  }
}

.editor-styles-wrapper .wp-block-flexible-table-block-table table {
  width: 100% !important;
  border: 1px #cecfd1 solid !important;
}

.editor-styles-wrapper .wp-block-flexible-table-block-table table th,
.editor-styles-wrapper .wp-block-flexible-table-block-table table td {
  vertical-align: middle !important;
  padding: 30px 35px !important;
  line-height: 1.5;
  border-color: #cecfd1 !important;
}

@media screen and (max-width: 768px) {

  .editor-styles-wrapper .wp-block-flexible-table-block-table table th,
  .editor-styles-wrapper .wp-block-flexible-table-block-table table td {
    padding: 20px 15px !important;
    font-size: 14px !important;
  }
}

.editor-styles-wrapper .wp-block-flexible-table-block-table table th {
  color: #4a4c4e !important;
  background: #f7f0fa !important;
  font-weight: normal !important;
}

.editor-styles-wrapper .wp-block-flexible-table-block-table table td {
  word-break: break-all;
}

.editor-styles-wrapper h3 {
  margin: 60px 0 50px;
  padding: 25px 40px 20px 40px;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.4;
  background-color: #f2e9f5;
}

.editor-styles-wrapper h3::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 1.4) * 0.5em);
}

@media screen and (max-width: 768px) {
  .editor-styles-wrapper h3 {
    margin: 30px 0;
    padding: 25px 15px 20px 15px;
    font-size: 21px;
  }
}

.editor-styles-wrapper h4 {
  position: relative;
  margin: 50px 0 25px;
  padding: 10px 0 10px 50px;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: start;
}

.editor-styles-wrapper h4::before {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../images/common/circle.png);
  background-size: 100%;
  background-repeat: no-repeat;
  height: 36px;
  width: 36px;
  left: 0;
}

@media screen and (max-width: 768px) {
  .editor-styles-wrapper h4::before {
    background-size: 80%;
    top: 5px;
  }
}

@media screen and (max-width: 768px) {
  .editor-styles-wrapper h4 {
    margin: 30px 0 20px;
    padding: 8px 0 8px 40px;
    font-size: 19px;
    background-size: 27px 31px;
  }
}

.editor-styles-wrapper h5 {
  position: relative;
  margin: 55px 0 35px;
  padding-left: 20px;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.25;
}

.editor-styles-wrapper h5::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 1.25) * 0.5em);
}

@media screen and (max-width: 768px) {
  .editor-styles-wrapper h5 {
    margin: 50px 0 20px;
    padding-left: 15px;
    font-size: 16px;
  }
}

.editor-styles-wrapper h5::after {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 4px;
  height: 30px;
  background-color: #d6c9db;
}

@media screen and (max-width: 768px) {
  .editor-styles-wrapper h5::after {
    height: 25px;
  }
}

.editor-styles-wrapper p {
  font-size: 16px;
  line-height: 2;
}

.editor-styles-wrapper p::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 2.5) * 0.5em);
}

@media screen and (max-width: 768px) {
  .editor-styles-wrapper p {
    font-size: 14px;
    line-height: 2;
  }

  .editor-styles-wrapper p::before {
    content: "";
    display: block;
    height: 0;
    width: 0;
    margin-top: calc((1 - 2) * 0.5em);
  }
}

.editor-styles-wrapper p+p {
  margin-top: 30px;
}

.editor-styles-wrapper p a {
  padding-bottom: 5px;
  text-decoration: none;
  border-bottom: 1px solid #222;
}

@media screen and (min-width: 769px) {
  .editor-styles-wrapper a {
    transition: color 0.3s;
  }

  .editor-styles-wrapper a:hover {
    color: #D4C9DA;
  }
}

.editor-styles-wrapper strong {
  font-weight: bold;
}

.editor-styles-wrapper ul,
.editor-styles-wrapper ol {
  margin: 45px 0;
  padding: 0;
  list-style: none;
}

.editor-styles-wrapper ul li {
  padding-left: 20px;
  background: url("../images/common/icn-listmark.png") no-repeat left 9px;
}

.editor-styles-wrapper ul li,
.editor-styles-wrapper ol li {
  font-size: 16px;
  line-height: 2;
}

.editor-styles-wrapper ul li::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 2) * 0.5em);
}

@media screen and (max-width: 768px) {

  .editor-styles-wrapper ul li,
  .editor-styles-wrapper ol li {
    font-size: 14px;
  }
}

.editor-styles-wrapper ul li:not(:nth-of-type(1)),
.editor-styles-wrapper ol li:not(:nth-of-type(1)) {
  margin-top: 20px;
}

@media screen and (max-width: 768px) {

  .editor-styles-wrapper ul li:not(:nth-of-type(1)),
  .editor-styles-wrapper ol li:not(:nth-of-type(1)) {
    margin-top: 10px;
  }
}

.editor-styles-wrapper ol {
  list-style: decimal;
  margin: 22px 0;
}

.editor-styles-wrapper ol li {
  margin-left: 1em !important;
  padding-left: 10px;
}