@charset "UTF-8";



/*----------------------------------------
トップページ：メインビジュアル
----------------------------------------*/
@media screen and (min-width: 768px) {
  .top_hero {
    width: 100%;
    min-height: 740px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(#ffffff, #faf7ee);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 50px 0;
  }
  .top_hero::before, .top_hero::after {
    content: "";
    position: absolute;
    inset: auto;
    pointer-events: none;
    z-index: 0;
    filter: blur(40px);
  }
  .top_hero::before {
    top: -10%;
    right: -20%;
    width: min(60vw, 800px);
    height: min(60vw, 800px);
    background: color-mix(in srgb, var(--gold) 22%, transparent);
    border-radius: 999px;
  }
  .top_hero::after {
    top: 10%;
    left: -12%;
    width: min(50vw, 700px);
    height: min(50vw, 700px);
    background: color-mix(in srgb, var(--blue) 12%, transparent);
    border-radius: 999px;
  }
  .top_dragon_bg {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    margin: auto;
    opacity: 0.08;
    background: url("../images/dragon-background.png") no-repeat center center;
    background-size: cover;
    mix-blend-mode: multiply;
    z-index: 0;
  }
  .top_hero_inner {
    width: 96%;
    max-width: 1100px;
    height: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  .top_hero_cnt {
    width: 48%;
  }
  .top_hero_cnt .top_hero_ttl {
    font-family: "Noto Serif JP", serif;
    color: var(--blue);
    font-weight: 600;
    font-size: clamp(32px, 4vw, 60px);
    line-height: 1.2;
    margin: 0 0 6px;
  }
  .top_hero_cnt .top_hero_txt {
    font-size: 100%;
    line-height: 1.9;
    margin: 0 0 15px;
  }
  .outlined_btn {
    display: inline-block;
    border: 1px solid var(--blue);
    border-radius: 999px;
    padding: 10px 12px;
    color: var(--blue);
    font-weight: 500;
    font-size: 80%;
    line-height: 1;
    letter-spacing: 0.18em;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
  }
  .outlined_btn:hover {
    background: var(--blue);
    color: #ffffff;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
  }
  .top_hero_panel {
    width: 50%;
    height: auto;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid color-mix(in srgb, var(--gold) 65%, transparent);
    border-radius: 24px;
    padding: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  }
  .top_hero_notice {
    width: 100%;
    border: 2px var(--red) solid;
    border-radius: 16px;
    margin: 0 0 30px;
    padding: 15px;
  }
  .top_hero_notice h3 {
    text-align: center;
    color: var(--red);
    font-weight: 600;
    font-size: 110%;
    line-height: 1;
    margin: 0 0 8px;
  }
  .top_hero_notice p {
    font-size: 95%;
    line-height: 1.8;
  }
  .top_hero_info {
    position: relative;
  }
  .top_hero_info h3 {
    text-align: center;
    color: #6b7280;
    font-size: 90%;
    line-height: 1;
    letter-spacing: 2px;
    margin: 0 0 12px;
  }
  .top_hero_info .top_hero_info_link {
    font-size: 85%;
    line-height: 1;
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
  }
  .top_hero_info .top_hero_info_link::before {
    content: "";
    display: block;
    width: 5px;
    height: 9px;
    background: url("../images/arrow_link.svg") no-repeat center center;
    background-size: contain;
    margin: 0 5px 0 0;
  }
  .top_hero_info .top_hero_info_link a {
    color: var(--grey);
  }
  .top_hero_info .top_hero_info_link a:hover {
    text-decoration: underline;
  }
  .top_hero_info .liveinfo_list {
    border: 1px solid color-mix(in srgb, var(--gold) 65%, transparent);
    border-radius: 16px;
    padding: 5px 20px;
  }
}
@media screen and (max-width: 1100px) and (min-width: 768px) {
  .top_hero_info h3 {
    text-align: left !important;
    padding-left: 10px;
  }
}
@media screen and (max-width: 767px) {
  .top_hero {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(#ffffff, #faf7ee);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 100px 0 30px;
  }
  .top_hero::before, .top_hero::after {
    content: "";
    position: absolute;
    inset: auto;
    pointer-events: none;
    z-index: 0;
    filter: blur(40px);
  }
  .top_hero::before {
    top: -10%;
    right: -20%;
    width: min(60vw, 800px);
    height: min(60vw, 800px);
    background: color-mix(in srgb, var(--gold) 22%, transparent);
    border-radius: 999px;
  }
  .top_hero::after {
    top: 10%;
    left: -12%;
    width: min(50vw, 700px);
    height: min(50vw, 700px);
    background: color-mix(in srgb, var(--blue) 12%, transparent);
    border-radius: 999px;
  }
  .top_dragon_bg {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    margin: auto;
    opacity: 0.08;
    background: url("../images/dragon-background.png") no-repeat center top 25px;
    background-size: contain;
    mix-blend-mode: multiply;
    z-index: 0;
  }
  .top_hero_inner {
    width: 92%;
    height: 100%;
    position: relative;
    z-index: 1;
  }
  .top_hero_cnt {
    width: 100%;
    margin: 0 0 30px;
  }
  .top_hero_cnt .top_hero_ttl {
    font-family: "Noto Serif JP", serif;
    color: var(--blue);
    font-weight: 600;
    font-size: 180%;
    line-height: 1.2;
    margin: 0 0 8px;
  }
  .top_hero_cnt .top_hero_txt {
    font-size: 90%;
    line-height: 1.9;
    margin: 0 0 10px;
  }
  .outlined_btn {
    display: inline-block;
    border: 1px solid var(--blue);
    border-radius: 999px;
    padding: 10px 12px;
    color: var(--blue);
    font-weight: 500;
    font-size: 80%;
    line-height: 1;
    letter-spacing: 0.18em;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
  }
  .outlined_btn:hover {
    background: var(--blue);
    color: #ffffff;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
  }
  .top_hero_panel {
    width: 100%;
    height: auto;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid color-mix(in srgb, var(--gold) 65%, transparent);
    border-radius: 24px;
    padding: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  }
  .top_hero_notice {
    width: 100%;
    border: 2px var(--red) solid;
    border-radius: 16px;
    margin: 0 0 35px;
    padding: 15px;
  }
  .top_hero_notice h3 {
    color: var(--red);
    font-weight: 600;
    font-size: 100%;
    line-height: 1;
    margin: 0 0 8px;
  }
  .top_hero_notice p {
    font-size: 90%;
    line-height: 1.8;
  }
  .top_hero_info {
    position: relative;
  }
  .top_hero_info h3 {
    color: #6b7280;
    font-size: 90%;
    line-height: 1;
    letter-spacing: 2px;
    margin: 0 0 12px;
    padding: 0 0 0 5px;
  }
  .top_hero_info .top_hero_info_link {
    font-size: 85%;
    line-height: 1;
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    right: 5px;
  }
  .top_hero_info .top_hero_info_link::before {
    content: "";
    display: block;
    width: 5px;
    height: 9px;
    background: url("../images/arrow_link.svg") no-repeat center center;
    background-size: contain;
    margin: 0 5px 0 0;
  }
  .top_hero_info .top_hero_info_link a {
    color: var(--grey);
  }
  .top_hero_info .top_hero_info_link a:hover {
    text-decoration: underline;
  }
  .top_hero_info .liveinfo_list {
    border: 1px solid color-mix(in srgb, var(--gold) 65%, transparent);
    border-radius: 16px;
    padding: 3px 15px;
  }
}



/*----------------------------------------
トップページ：共通
----------------------------------------*/
.top_cnt.container-fluid {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
@media screen and (min-width: 768px) {
  .top_section {
    width: 96%;
    max-width: 1100px;
    margin: 0 auto;
  }
  .top_midashi h2 {
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    font-size: 210%;
    line-height: 1.3;
  }
  .top_midashi h3 {
    font-weight: 600;
    font-size: 80%;
    line-height: 1;
    color: var(--blue);
    letter-spacing: 2px;
  }
  .top_midashi.top_midashi_pc_horizontal {
    display: flex;
    align-items: center;
  }
  .top_midashi.top_midashi_pc_horizontal h2 {
    margin-right: 20px;
  }
  .top_midashi.top_midashi_pc_vertical {
    text-align: center;
  }
  .top_midashi.top_midashi_pc_vertical h2 {
    margin-bottom: 8px;
  }
  .top_p_txt {
    font-size: 100%;
    line-height: 1.9;
  }
}
@media screen and (max-width: 767px) {
  .top_section {
    width: 92%;
    margin: 0 auto;
  }
  .top_midashi h2 {
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    font-size: 150%;
    line-height: 1.3;
  }
  .top_midashi h3 {
    font-weight: 600;
    font-size: 75%;
    line-height: 1;
    color: var(--blue);
    letter-spacing: 2px;
  }
  .top_midashi.top_midashi_pc_horizontal {
    text-align: center;
  }
  .top_midashi.top_midashi_pc_horizontal h2 {
    margin-bottom: 8px;
  }
  .top_midashi.top_midashi_pc_vertical {
    text-align: center;
  }
  .top_midashi.top_midashi_pc_vertical h2 {
    margin-bottom: 8px;
  }
  .top_p_txt {
    font-size: 90%;
    line-height: 1.9;
  }
}
.top_col_img img {
  width: 100%;
  height: auto;
}



/*----------------------------------------
トップページ：ボタン
----------------------------------------*/
.top_link_btn {
  display: inline-block;
  width: auto;
  min-height: 40px;
}
.top_link_btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 12px 20px;
  box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.15);
  border-radius: 60px;
  color: #333333;
  font-weight: 500;
  font-size: 90%;
  line-height: 1;
  transition: background-color 0.3s, color 0.3s;
}
.top_link_btn a::after {
  content: "";
  display: block;
  width: 19px;
  height: 9px;
  background: url("../images/arrow.svg") no-repeat center center;
  background-size: contain;
  margin: 0 0 0 20px;
}
.top_link_btn a:hover {
  text-decoration: none;
  color: #ffffff;
  background-color: var(--gold);
  transition: background-color 0.3s, color 0.3s;
}
.top_link_btn a:hover::after {
  background: url("../images/arrow_white.svg") no-repeat center center;
  background-size: contain;
}



/*----------------------------------------
トップページ：プロフィール
----------------------------------------*/
@media screen and (min-width: 768px) {
  #top_profile {
    margin-top: 90px;
    margin-bottom: 85px;
  }
  #top_profile .top_midashi {
    margin: 0 0 15px;
  }
  #top_profile .top_p_txt {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  #top_profile {
    margin-top: 65px;
    margin-bottom: 70px;
  }
  #top_profile .top_midashi {
    margin: 0 0 15px;
  }
  #top_profile .top_p_txt {
    margin-bottom: 15px;
  }
  #top_profile .top_link_btn_wrap {
    text-align: center;
    margin: 0 0 25px;
  }
}



/*----------------------------------------
トップページ：メンバー紹介
----------------------------------------*/
@media screen and (min-width: 768px) {
  #top_member {
    margin-bottom: 120px;
  }
  #top_member .top_midashi {
    margin: 0 0 15px;
  }
  #top_member .top_p_txt {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  #top_member {
    margin-bottom: 80px;
  }
  #top_member .top_midashi {
    margin: 0 0 15px;
  }
  #top_member .top_p_txt {
    margin-bottom: 15px;
  }
  #top_member .top_link_btn_wrap {
    text-align: center;
    margin: 0 0 25px;
  }
}



/*----------------------------------------
トップページ：写真背景
----------------------------------------*/
.top_img_bg {
  width: 100%;
  height: 360px;
  overflow: hidden;
  margin: 0 0 100px;
  line-height: 0;
}
.top_img_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition-duration: 0.5s;
}
@media screen and (max-width: 767px) {
  .top_img_bg {
    height: 200px;
    margin: 0 0 70px;
  }
}



/*----------------------------------------
トップページ：ブログ
----------------------------------------*/
@media screen and (min-width: 768px) {
  #top_blog {
    margin-bottom: 120px;
  }
  #top_blog .top_blog_midashi_btn {
    display: flex;
    align-items: center;
  }
  #top_blog .top_blog_midashi_btn .top_midashi {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  #top_blog {
    position: relative;
    margin-bottom: 75px;
    padding: 0 0 55px;
  }
  #top_blog .top_blog_midashi_btn .top_midashi {
    margin-bottom: 10px;
  }
  #top_blog .top_blog_midashi_btn .top_link_btn_wrap {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
  }
}



/*----------------------------------------
トップページ：物販
----------------------------------------*/
@media screen and (min-width: 768px) {
  #top_store {
    margin-bottom: 140px;
  }
  #top_store .top_midashi {
    margin-bottom: 35px;
  }
  #top_store .store_list {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  #top_store {
    margin-bottom: 85px;
  }
  #top_store .top_midashi {
    margin-bottom: 25px;
  }
  #top_store .store_list {
    margin-bottom: 10px;
  }
}



/*----------------------------------------
トップページ：バナースライダー
----------------------------------------*/

/* SlickライブラリCSS */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

/* トップページバナースライダー用CSS */
.top_banner_slide {
  width: 270px;
  margin: 0 8px;
}
.top_banner_slide img {
  width: 100%;
  height: auto;
}
.top_banner_slide:hover {
  opacity: 0.8;
}
.slide-arrow {
  width: 40px;
  height: 40px;
  border-radius: 100px;
  background-color: #ffffff;
  box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s;
}
.slide-arrow:hover {
  background-color: var(--gold);
  transition: background-color 0.3s;
}
.prev-arrow {
  position: absolute;
  top: calc(50% - 20px);
  left: -20px;
  z-index: 5;
}
.prev-arrow::before {
  content: "";
  display: block;
  width: 19px;
  height: 9px;
  background: url("../images/arrow.svg") no-repeat center center;
  background-size: contain;
  transform: scale(-1,1);
}
.next-arrow {
  position: absolute;
  top: calc(50% - 20px);
  right: -20px;
}
.next-arrow::before {
  content: "";
  display: block;
  width: 19px;
  height: 9px;
  background: url("../images/arrow.svg") no-repeat center center;
  background-size: contain;
}
.prev-arrow:hover::before, .next-arrow:hover::before {
  background: url("../images/arrow_white.svg") no-repeat center center;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .top_banner_slider_wrap {
    width: 96%;
    max-width: 1100px;
    margin: 75px auto 70px;
  }
}
@media screen and (max-width: 1140px) and (min-width: 768px) {
  .top_banner_slide {
    width: 250px;
  }
  .prev-arrow {
    left: -1.5% !important;
  }
  .next-arrow {
    right: -1.5% !important;
  }
}
@media screen and (max-width: 819px) and (min-width: 768px) {
  .top_banner_slide {
    width: 240px;
  }
}
@media screen and (max-width: 767px) {
  .top_banner_slide {
    width: 250px;
  }
  .top_banner_slider_wrap {
    width: 92%;
    margin: 50px auto 0;
  }
  .slide-arrow {
    width: 36px !important;
    height: 36px !important;
  }
  .prev-arrow {
    top: calc(50% - 18px);
    left: -2% !important;
  }
  .next-arrow {
    top: calc(50% - 18px);
    right: -2% !important;
  }
}
.slide-cancel {
  display: flex;
  justify-content: center;
}


