/*
Theme Name: Kyukaru Gallery Original Theme
Description: Kyukaru Gallery Original Theme
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: Kyukaru Gallery Original Theme

@charset "utf-8";

/*********************************************
全体共通
*********************************************/
html {
  font-size: 16px;
}

body {
  font-family: "Montserrat", "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
  text-align: justify;
  font-feature-settings: "palt";
  margin: 0;
  padding: 0;
  color: #000;
  width: 100%;
  background-color: #fff;
  overflow-x: hidden !important;
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
}

img {
  width: 100%;
  height: auto;
  line-height: 0;
}

a {
  color: inherit !important;
  pointer-events: painted !important;
  -webkit-tap-highlight-color: transparent;
  opacity: 1;
}

.sp-only {
  display: none !important;
}

.pc-only {
  display: block !important;
}

.anchor-target {
  scroll-margin-top: 270px !important;
}

.container {
  padding: 180px 90px 0;
  overflow: hidden;
}

@media (max-width: 1200px) {
  .container {
    padding: 180px 4vw 0;
  }
}
@media (max-width: 768px) {
  .pc-only {
    display: none !important;
  }

  .sp-only {
    display: block !important;
  }


  body { 
    font-size: 3.5vw;
    line-height: 1.7em;
  }
  .container {
    padding: 140px 4vw 0;
  }

  .anchor-target {
    scroll-margin-top: 100px !important;
  }
}

/*********************************************
セクションタイトル
*********************************************/
.sec-title {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 1;
}

.sec-title_main {
  font-size: 40px;
  line-height: 1.4;
  margin-bottom: 0;
  overflow: hidden;
  display: inline-block;
}

.sec-title_main .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(-10px) translateX(-10px);
  transition:
    transform 0.6s cubic-bezier(.22,1,.36,1),
    opacity 0.6s ease;
}

.sec-title_main.is-animated .char {
  opacity: 1;
  transform: translateY(0);
}

.sec-title_en {
  font-size: 12px;
  color: #747474;
  margin-bottom: 14px;
}

.sec-title_sub {
  font-size: 10px;
  font-weight: 500;
  margin-bottom: 22px;
}

.sec-title_line {
  display: block;
  width: 1px;
  height: 40px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 1);
}

.sec-subtitle {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.sec-subtitle_main {
  font-size: 36px;
  margin-bottom: 8px;
}

.sec-subtitle_sub {
  font-size: 10px;
  font-weight: 500;
  margin-bottom: 22px;
}

.sec-subtitle_line {
  display: block;
  width: 1px;
  height: 60px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 1);
}

.l-container {
  width: min(1050px, calc(100% - 60px));
  margin-inline: auto;
}

@media (max-width: 768px) {
  .sec-title {
    margin-bottom: 48px;
  }
  .sec-title_main {
    font-size: 9vw;
    line-height: 1.2;
  }
  .sec-title_en {
    font-size: 2.4vw;
    margin-bottom: 0.6em;
  }
  .sec-title_sub {
    font-size: 3vw;
    margin-bottom: 18px;
  }
  .sec-subtitle {
    margin-bottom: 6vw;
  }
  .sec-subtitle_main {
    font-size: 7.1vw;
    line-height: 1.5;
  }
  .sec-subtitle_line {
    height: 10vw;
  }
}

/*********************************************
ボタン共通装飾・アニメーション（黒>白）
*********************************************/
.c-btn-bk {
  display: flex;
  justify-content: center;
}

.c-btn-bk-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  width: min(242px, 100%);
  height: 54px;
  background: #000;
  border: 1px solid #000;
  color: #fff !important;
  text-decoration: none;
  font-size: 20px;
  font-weight: 300;
  overflow: hidden;
  /* iOS Safari */
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-font-smoothing: antialiased;
}

/* 流れる白背景 */
.c-btn-bk-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  transform: translateX(-100%);
  transition: transform .35s cubic-bezier(.22,.61,.36,1);
  z-index: 1;
}

/* テキスト・矢印（前面） */
.c-btn-bk-txt,
.c-btn-bk-arrow {
  position: relative;
  z-index: 2;
  transition: color .35s ease;
}

/* 矢印 */
.c-btn-bk-arrow::before {
  content: "";
  width: 14px;
  height: 14px;
  border-top: 1px solid currentColor;
  border-left: 1px solid currentColor;
  transform: rotate(135deg);
  display: block;
}

/* iOS含む反転状態（hover/active/focusをまとめる） */
.c-btn-bk-link:hover::before,
.c-btn-bk-link:active::before,
.c-btn-bk-link:focus::before,
.c-btn-bk-link:focus-visible::before {
  transform: translateX(0);
}

.c-btn-bk-link:hover,
.c-btn-bk-link:active,
.c-btn-bk-link:focus,
.c-btn-bk-link:focus-visible {
  color: #000 !important;
}

/* iOSで継承が不安定なため、文字は直接黒を指定 */
.c-btn-bk-link:hover .c-btn-bk-txt,
.c-btn-bk-link:active .c-btn-bk-txt,
.c-btn-bk-link:focus .c-btn-bk-txt,
.c-btn-bk-link:focus-visible .c-btn-bk-txt {
  color: #000 !important;
  -webkit-text-fill-color: #000;
}

/* iOSでcurrentColor再描画が遅れる対策：矢印も直接黒 */
.c-btn-bk-link:hover .c-btn-bk-arrow::before,
.c-btn-bk-link:active .c-btn-bk-arrow::before,
.c-btn-bk-link:focus .c-btn-bk-arrow::before,
.c-btn-bk-link:focus-visible .c-btn-bk-arrow::before {
  border-top-color: #000;
  border-left-color: #000;
}

/* visited固定（通常状態の白を維持） */
.c-btn-bk-link:visited {
  color: #fff !important;
}

/* モーション軽減 */
@media (prefers-reduced-motion: reduce) {
  .c-btn-bk-link::before,
  .c-btn-bk-txt,
  .c-btn-bk-arrow {
    transition: none;
  }
}

/*********************************************
ボタン共通装飾・アニメーション（白>黒）
*********************************************/
.c-btn-wh {
  display: flex;
  justify-content: center;
}

.c-btn-wh-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  width: min(242px, 100%);
  height: 54px;
  background: #fff;
  border: 1px solid #000;
  color: #000;
  text-decoration: none;
  font-size: 20px;
  font-weight: 300;
  overflow: hidden;
  /* iOS Safari */
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-font-smoothing: antialiased;
}

/* 流れる黒背景 */
.c-btn-wh-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  transform: translateX(-100%);
  transition: transform .35s cubic-bezier(.22,.61,.36,1);
  z-index: 1;
}

/* テキスト・矢印（前面） */
.c-btn-wh-txt,
.c-btn-wh-arrow {
  position: relative;
  z-index: 2;
  transition: color .35s ease;
}

/* 矢印 */
.c-btn-wh-arrow::before {
  content: "";
  width: 14px;
  height: 14px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
  display: block;
}

/* iOS含む反転状態（hover/active/focusをまとめる） */
.c-btn-wh-link:hover::before,
.c-btn-wh-link:active::before,
.c-btn-wh-link:focus::before,
.c-btn-wh-link:focus-visible::before {
  transform: translateX(0);
}

.c-btn-wh-link:hover,
.c-btn-wh-link:active,
.c-btn-wh-link:focus,
.c-btn-wh-link:focus-visible {
  color: #fff !important;
}

/* iOSで継承が不安定なため、文字は直接白を指定 */
.c-btn-wh-link:hover .c-btn-wh-txt,
.c-btn-wh-link:active .c-btn-wh-txt,
.c-btn-wh-link:focus .c-btn-wh-txt,
.c-btn-wh-link:focus-visible .c-btn-wh-txt {
  color: #fff;
  -webkit-text-fill-color: #fff;
}

/* iOSでcurrentColor再描画が遅れる対策：矢印も直接白 */
.c-btn-wh-link:hover .c-btn-wh-arrow::before,
.c-btn-wh-link:active .c-btn-wh-arrow::before,
.c-btn-wh-link:focus .c-btn-wh-arrow::before,
.c-btn-wh-link:focus-visible .c-btn-wh-arrow::before {
  border-top-color: #fff;
  border-right-color: #fff;
}

/* visited固定（通常状態の黒を維持） */
.c-btn-wh-link:visited {
  color: #000;
}

/* モーション軽減 */
@media (prefers-reduced-motion: reduce) {
  .c-btn-wh-link::before,
  .c-btn-wh-txt,
  .c-btn-wh-arrow {
    transition: none;
  }
}

/*********************************************
aタグhover アンダーバーアニメーション
*********************************************/
.c-link-underber {
  position: relative;
  display: inline-block;
  text-decoration: none;
  padding-bottom: 1em;
  margin-top: 1em;
}

.c-link-underber::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px; 
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.c-link-underber:hover::after,
.c-link-underber:focus-visible::after {
  transform: scaleX(1);
}

.footer-nav .c-link-underber {
  padding-bottom: 0.05em;
  margin-top: 0.05em;
} 
/*********************************************
aタグhover 透過アニメーション
*********************************************/
.c-link-opacity {
  display: inline-flex;
  align-items: center;
  transition: opacity 0.4s ease;
}

.c-link-opacity:hover,
.c-link-opacity:focus-visible {
  opacity: 0.5;
}

/*********************************************
共通アニメーション
*********************************************/
/* フェードイン */
.fadeIn {
  opacity: 0;
  transition: 1s;
}

.fadeIn.is-show {
  opacity: 1;
}

/* 下からフェードイン */
.fadeIn_up {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1s ease, transform .6s ease;
}

.fadeIn_up.is-show {
  opacity: 1;
  transform: translateY(0);
}

/*********************************************
ヘッダー
*********************************************/
#header {
  width: 100vw;
  height: auto;
  padding: 24px 80px 0;
  z-index: 100;
  position: fixed !important;
  box-sizing: border-box;
  background: transparent;
  color: #000;
  transition: color .35s ease;
}

#header .content-wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

#header .header-logo {
  width: fit-content;
  height: fit-content;
}
#header .header-logo .site-title {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

#header .header-logo .img {
  width: 40px;
  margin-right: 10px;
}

#header .header-logo .txt {
  font-size: 20px;
  font-weight: 500;
}

#header .header-menu ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

#header .header-menu ul li {
  margin-right: 64px;
  line-height: 0;
}

#header .header-menu ul li:last-child {
  margin-right: 0;
}

.header-menu .icon {
  width: 26px;
  height: 26px;
  display: block;
}

.menu-access {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  padding: 0 18px 0 14px;
  border: 1.5px solid rgba(0, 0, 0, .1);
  background: rgba(0, 0, 0, .05);
  border-radius: 999px;
  height: 23px;
  transition: border-color .35s ease, background-color .35s ease, color .35s ease;
}

.menu-icon {
  display: inline-flex;
  align-items: center;
  width: 22px;
}

@media (max-width: 1200px) {
  #header {
    padding: 24px 16px  0 24px;
  }
  #header .header-menu ul li {
    margin-right: 16px;
  }
}
@media (max-width: 768px) {
  #header {
    padding: 5vw 5vw 0 5vw;
  }
  #header .header-logo .img {
    width: 7vw;
    margin-right: 2vw;
  }
  #header .header-logo .txt {
    font-size: 4vw;
  }
  .header-sp-ctrl{
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 3vw;
  }

  .header-sp-pin{
    min-width: 35px;
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .header-sp-pin svg{
    width: 100%;
    height: 100%;
  }
  /* ハンバーガーアイコン */
  .header-sp-menuBtn{
    appearance: none;
    border: 0;
    background: transparent;
    padding: 0;
    width: 40px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: inherit;
  }

  .header-sp-menuIcon{
    position: relative;
    width: 40px;
    height: 20px;
    display: block;
  }

  .header-sp-menuIcon span{
    position: absolute;
    left: 0;
    height: 2px;
    background: currentColor;
    transition:
      top .5s ease,
      width .5s ease,
      transform .5s ease;
    transform-origin: center;
  }

  /* --- 閉じている状態 --- */
  .header-sp-menuIcon span:nth-child(1){
    top: 4px;
    width: 40px;
    transform: rotate(0deg);
  }

  .header-sp-menuIcon span:nth-child(2){
    top: 14px;
    width: 24px;
    transform: rotate(0deg);
  }

  /* --- 開いている状態（×） --- */
  .header-sp-menuBtn.is-active .header-sp-menuIcon span:nth-child(1){
    top: 9px;
    width: 34px; 
    transform: rotate(45deg);
  }

  .header-sp-menuBtn.is-active .header-sp-menuIcon span:nth-child(2){
    top: 9px;
    width: 34px;
    transform: rotate(-45deg);
  }

  html.is-menu-open,
  html.is-menu-open body {
    overflow: hidden;
  }

  /* ハンバーガーメニューの中身 */
  #header.is-menu-open{
    color: #fff;
    z-index: 10000;
  }

  #header.is-menu-open .header-sp-pin{
    display: none;
  }
  
  /* SPメニュー：閉 */
.sp-menu{
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity .9s ease,
    visibility 0s linear .9s; /* opacity終了後にvisibilityを切る */
１}

  /* SPメニュー：開 */
  .sp-menu.is-open{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition:
      opacity .9s ease,
      visibility 0s linear 0s;
  }

  .sp-menu-inner{
    height: 100%;
    padding: 22px 22px 28px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    color: #fff;
    overflow-x: scroll;
  }

  .sp-menu-nav{
    margin-top: 100px;
    margin-bottom: 100px;
  }

  .sp-menu-nav .c-link-underber {
    padding-bottom: 0;
    margin-top: 0;
  }

  .sp-menu-list{
    display: flex;
    flex-direction: column;
    gap: 34px;
    width: fit-content;
    margin: 0 auto;
  }
  
  .sp-menu-item {
    width: fit-content;
  }

  .sp-menu-link{
    display: inline-flex;
    align-items: baseline;
    gap: 12px;
    color: inherit;
    text-decoration: none;
  }

  .sp-menu-en{
    font-size: 20px;
    text-transform: uppercase;
  }
  .sp-menu-item-artist-li .sp-menu-en {
    font-size: 18px;
  }
  .sp-menu-ja{
    font-size: 10px;
  }

  .sp-menu-item-artist .sp-menu-head{
    display: inline-flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 10px;
  }

  .sp-menu-item-artist-ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-left: 7px;
  }
  .sp-menu-bottom{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .sp-menu-bottom-logo{
    width: min(150px, 25vw);
    display: block;
  }

  .sp-menu-info{
    text-align: center;
    font-size: 14px;
    line-height: 1.7;
  }
}



/*********************************************
FVsecだけheaderテキスト・SVGを白に
*********************************************/
#header a {
  color: inherit;
  transition: color .35s ease, opacity .35s ease, border-color .35s ease, background-color .35s ease;
}

#header svg {
  width: 100%;
  height: 100%;
}
#header svg path {
  fill: currentColor;
  transition: fill .35s ease;
}

#header.is-on-fv {
  color: #fff;
}

#header.is-on-fv .menu-access{
  border-color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.10);
}

#header.is-on-fv .c-link-underber::after{
  background: currentColor;
}


/*********************************************
トップページ
*********************************************/
#home.container {
  padding-top: 0;
}
/******** fv ********/
.sec_hone-fv{
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: block;
  margin: 0 -90px;
}

.sec_hone-fv .home-fv{
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none; /* 切替中の誤クリック防止 */
  transition: opacity 1.2s ease;
  will-change: opacity;
  z-index: 1;
  width: 100vw;
  margin: 0 auto;
}

.sec_hone-fv .home-fv.is-active{
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}
.home-fv-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  z-index: 0;
}

.home-fv-inner{
  position: relative;
  z-index: 2;
  min-height: 100svh;
  gap: 138px;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  width: min(1550px, calc(100% - 60px));
  margin: 0 auto;
}

.home-fv-art{
  margin: 0;
  justify-self: center;
  height: min(606px,100vw);
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.home-fv-art img{
  width: auto;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* 下部NEWSバー */
.home-fv-news{
  position: absolute;
  right: 2vw;
  bottom: 36px;
  z-index: 3;
  width: min(720px, calc((100% / 2) - 5vw));;
  height: 43px;
}
.home-fv-news-link{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px 10px 38px;
  border-radius: 999px;
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.35);
  color: #fff!important;
  text-decoration: none;
  backdrop-filter: blur(8px);
  box-sizing: border-box;
  width: 100%;
}
.home-fv-news-txtwrap {
  display: contents;
}
.home-fv-news-label{
  font-size: 12px;
  font-weight: 600;
}
.home-fv-news-date{
  font-size: 14px;
  font-weight: 600;
}
.home-fv-news-txt{
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.home-fv-news-arrow{
  width: 8px;
  min-width: 8px;
  height: 8px;
  min-height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}

/* SCROLL */
.home-fv-scroll{
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 10px;
}

.home-fv-scroll-txt{
  font-size: 12px;
  color: #fff;
  writing-mode: vertical-rl;
}

.home-fv-scroll-line{
  position: relative;
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0);
  overflow: hidden;
}

.home-fv-scroll-line::after{
  content: "";
  position: absolute;
  left: 0;
  top: -60%; /* 上から出てくる */
  width: 100%;
  height: 60%; /* 長さ */
  background: #fff;
  animation: scrollLineFlow 1.6s ease-in-out infinite;
}

/* 下へ流す */
@keyframes scrollLineFlow{
  0%   { transform: translateY(0);    opacity: 0; }
  10%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateY(180%); opacity: 0; }
}

@media (prefers-reduced-motion: reduce){
  .home-fv-scroll-line::after{ animation: none; opacity: .8; top: 20%; }
}

@media (max-width: 1200px){
  .home-fv-inner {
    gap: 4vw;
  }
  .sec_hone-fv {
    margin: 0 -4vw;
  }
}
@media (max-width: 900px) {
  .home-fv-inner{
    gap: 5vw;
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    width: calc(100% - 14vw);
    padding: 80px 7vw 130px;
    min-height: -webkit-fill-available;
    height: -webkit-fill-available;
  }
  .home-fv-logo { 
    width: calc(100svh / 3);
    height: auto;
  }
  .home-fv-logo img {
    height: auto;
  }
  .home-fv-art {
    width: 100%;
    height: auto;
  }
  .home-fv_romero-britto .home-fv-art {
    width: calc(100svh / 2.5);
  }
  .home-fv-art img {
    width: 100%;
    height: auto;
  }
  .home-fv-news {
    bottom: 84px;
    width: 90%;
    margin: 0 calc((10% / 2));
    right: unset;
  }
  .home-fv-news-label{
    font-size: 10px;
  }
  .home-fv-news-date {
    font-size: 12px;
  }
  .home-fv-news-txt {
    font-size: 12px;
  }
  .home-fv-scroll-txt {
    font-size: 7px;
  }
  .home-fv-scroll {
    bottom: -26px;
  }
}

/******** ニュース ********/
.sec_hone-news {
  padding-top: 148px;
}
.sec_hone-news .sec-title {
  margin-bottom: 46px;
}
.sec_hone-news .home-news-inner{
  width: min(1300px, calc(100% - 60px));
  margin: 0 auto;
}

.sec_hone-news .home-news-grid.slick-slider{
  margin: 0 -14px;
  margin-bottom: 64px;
}
.sec_hone-news .home-news-grid .slick-slide{
  padding: 0 14px;
  box-sizing: border-box;
}
@media (max-width: 1200px){
  .sec_hone-news .home-news-inner {
    width: 100%;
  }
  .sec_hone-news  .news-card_title {
    font-size: 1.9vw;
  }
  .sec_hone-news .news-card_date {
    font-size: 1.7vw;
  }
  .sec_hone-news .news-card_meta .badge {
    font-size: 1.4vw;
    height: 2vw;
    padding: 0 0.3em;
  }
}
@media (max-width: 768px){
  .sec_hone-news .home-news-inner {
    margin: 0 -4vw;
    width: 100%;
    padding: 0 4vw;
  }
  .sec_hone-news .home-news-grid.slick-slider {
    margin: 0 -4vw;
    margin-bottom: 64px;
  }
  .sec_hone-news .home-news-grid .slick-slide{
    padding: 0 4vw;
    box-sizing: border-box;
  }
  .sec_hone-news .home-news-grid .slick-list{
    padding: 0 4vw;
  }
  .sec_hone-news .sec-title {
    margin-bottom: 6vw;
  }
  .sec_hone-news .news-card{
    width: 86vw !important;
  }
  .sec_hone-news .news-card_body {
    padding-top: 5vw;
  }
  .sec_hone-news .news-card_title {   
    font-size: 5.3vw;
    margin-bottom: 4vw;
  }
  .sec_hone-news .news-card_date {
    font-size: 14px;
  }
}
/******** メッセージ ********/
.sec_home-message{
  margin-top: 152px;
}

.sec_home-message .home-msg-hero{
  height: clamp(280px, 32vw, 580px);
  background-size: cover;
  background-position: center;
  position: relative;
  margin: 0 -90px;
}

.sec_home-message .home-msg-hero-copy{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 5.2vw, 74px);
  font-weight: 300;
  text-align: center;
  line-height: 1.15;
  white-space: nowrap;
  text-shadow: 0 2px 18px rgba(0,0,0,.7);
}

.sec_home-message .home-msg-inner{
  width: min(1570px, calc(100% - 60px));
  margin: 0 auto;
  position: relative
}

.sec_home-message .home-msg-grid{
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 136px;
  align-items: center;
  margin-top: -110px;
}

.sec_home-message .home-msg-art{
  margin: 0;
  width: 100%;
  aspect-ratio: 1 / 1.15;
  overflow: hidden;
}

.sec_home-message .home-msg-art img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sec_home-message .home-msg-box {
  margin-top: 40px;
}

.sec_home-message .home-msg-title{
  font-size: 42px;
  line-height: 1.5;
}

.sec_home-message .home-msg-txt{
  margin-top: 60px;
}

@media (max-width: 1600px){
  .sec_home-message .home-msg-grid{
    gap: 6vw;
  }
  .sec_home-message .home-msg-box {
    margin-top: 7vw;
  }
  .sec_home-message .home-msg-title {
    font-size: 2.4vw;
  }
  .sec_home-message .home-msg-txt {
    margin-top: 2vw;
  }
}
@media (max-width: 900px){
  .sec_home-message .home-msg-inner {
    width: 100%;
  }
  .sec_home-message .home-msg-grid {
    margin-top: -76px;
  }
}

@media (max-width: 768px){
  .sec_home-message .home-msg-hero {
    height: 50vw;
  }
  .sec_home-message .home-msg-hero-copy{
    font-size: 6.7vw;
  }

  .sec_home-message .home-msg-inner {
    width: calc(100% - 6vw);
  }
  .sec_home-message .home-msg-grid{
    margin-top: -56px;
    grid-template-columns: 1fr;
    gap: 10vw;
  }

  .sec_home-message .home-msg-box {
    margin-top: 0;
  }
  .sec_home-message .home-msg-art {
    width: 51vw;
  }
  .sec_home-message .home-msg-title{
    font-size: 6.9vw;
  }
  .sec_home-message .home-msg-txt {
    margin-top: 4vw;
  }
}


/******** アーティスト ********/
.sec_home-artists{
  padding-top: 210px;
  margin: 0 -15px;
}
.sec_home-artists .sec-title {
  margin-bottom: 0;
}
.sec_home-artists .c-artistlist-inner {
  margin-top: -20px;
  background: #F5F5F5;
  padding: 92px 0 120px;
}
@media (max-width: 1200px) {
  .sec_home-artists .c-artistlist-box {
    width: min(1500px, calc(100% - 60px));
  }
}
@media (max-width: 1000px){
  .sec_home-artists .c-artistlist-inner {
    padding: 0 4vw;
    width: 100%;
    margin: 0 -4vw;
    margin-top: -20px;
  }
  .sec_home-artists .c-artistlist-box {
    width: calc(100% - 7vw);
  }
}
@media (max-width: 768px){
  .sec_home-artists .c-artistlist-box {
    width: calc(100% - 12vw);
  }
}

/******** ABOUT ********/
.sec_home-about{
  padding-top: 184px;
}

.sec_home-about .home-about-inner{
  width: min(1530px, calc(100% - 60px));
  margin: 0 auto;
}

.sec_home-about .home-about-grid{
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 100px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.sec_home-about .home-about-head{
  font-size: 42px;
  line-height: 1.5;
  padding-top: 70px;
}

.sec_home-about .home-about-txt{
  padding-top: 38px;
}

.sec_home-about .home-about-btn{
  margin-top: 66px;
  justify-content: flex-start;
}

.sec_home-about .home-about-art{
  margin: 0;
  width: min(660px, 100%);
  aspect-ratio: 1 / 1.1;
  overflow: hidden;
  justify-self: end;
}

.sec_home-about .home-about-art img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sec_home-about .home-about-bg{
  height: clamp(240px, 28vw, 500px);
  background-size: cover;
  background-position: center;
  margin: 0 -90px;
  margin-top: -140px;
  position: relative;
  z-index: -1;
}

@media (max-width: 1700px){
  .sec_home-about .home-about-inner {
    width: min(100%, calc(100% - 20px));
  }
  .sec_home-about .home-about-grid {
    gap: 4vw;
    grid-template-columns: 1.3fr 1fr;
  }
  .sec_home-about .home-about-head {
    font-size: 2.5vw;

  }
  .sec_home-about .home-about-txt {
    padding-top: 2vw;
  }
  .sec_home-about .home-about-btn {
    margin-top: 2.5vw;
  }
  .sec_home-about .home-about-bg {
    margin-top: -4vw;
  }
}
@media (max-width: 1300px){
  .sec_home-about .home-about-head {
    font-size: 2.5vw;
    padding-top: 0;
  }
}
@media (max-width: 900px){
  .sec_home-about .home-about-art {
    aspect-ratio: 1 / 1.25;
  }
}
@media (max-width: 768px){
  .sec_home-about .sec-title {
    margin-bottom: 6vw;
  }
  .sec_home-about .home-about-grid {
    grid-template-columns: 1fr;
    gap: 19vw;
  }
  .sec_home-about .home-about-inner{
    width: calc(100% - 6vw);
  }
  .sec_home-about .home-about-head{
    font-size: 7vw;
    padding: 0;
  }
  .sec_home-about .home-about-txt {
    padding-top: 6vw;
  }
  .sec_home-about .home-about-art {
    width: 50vw;
  }
  .sec_home-about .home-about-btn {
    margin-top: 10vw;
  }    
  .sec_home-about .home-about-bg {
    height: 40vw;
    margin-top: -18vw;
  }
}




/*********************************************
ACCSESS（共通テンプレ）
*********************************************/
.sec_access {
  margin-top: 270px;
  padding: 76px 0 62px;
  border: 1px solid #D9D9D9;
  margin-bottom: 120px;
}

.sec_access-inner.l-container {
  width: min(1100px, calc(100% - 60px));
}

.sec_access .sec-title {
  margin-bottom: 46px !important;
}

.access-grid {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 84px;
  align-items: center;
}

.access-dl {
  margin: 0;
  display: grid;
  gap: 38px;
  line-height: 1.6;
}

.access-dl_row {
  display: grid;
  grid-template-columns: 4.5em 1fr;
  gap: 24px;
}

.access-dl dt {
  font-weight: 500;
}

.access-note {
  margin-top: 54px;
}

.access-map {
  aspect-ratio: 16 / 10;
  background: #eee;
  overflow: hidden;
}

.access-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
/* responsive */
@media (max-width: 1200px) {
  .access-grid {
    margin: 0 4vw;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 26px;
  }
  .access-map {
    width: min(660px, 100%);
  }
}
  
@media (max-width: 768px) {
  .sec_access {
    padding: 12vw 0 14vw;
    margin: 80vw 0 30vw;
  }
  .sec_access-inner.l-container {
    width: 100%;
  }
  .sec_access .sec-title {
    margin-bottom: 26px !important;
  }
  .access-dl {
    gap: 14px;
  }
  .access-dl_row {
    gap: 14px;
  }
  .access-note {
    margin-top: 34px;
  }
}

/*********************************************
フッター
*********************************************/
.footer {
  background: #000;
  color: #fff;
}

.footer-inner {
  padding: 114px 0;
  width: min(1500px, calc(100% - 60px));
  margin-inline: auto;
}

.footer-main {
  display: flex;
  gap: 150px;
  align-items: center;
  flex-direction: row;
  justify-content: flex-start;
}

.footer-brand {
  display: flex;
  gap: 40px;
  align-items: center;
  padding-left: 50px;
}

.footer-brand_logo {
  width: 80px;
  flex: 0 0 auto;
  display: block;
}

.footer-info {
  line-height: 1.7;
}

.footer-info_row {
  margin: 0;
}

.footer-info .footer-info_row.footer-tel {
  display: flex !important;
}

.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 700px;
}
.footer-nav_group {
  width: 330px;
}
.footer-nav_link {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}
.artist-nav_list {
  padding-left: 6px;
}
.footer-nav_headmain {
  font-size: 18px;
}

.footer-nav_headsub {
  font-size: 10px;
}

.footer-follow {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 10px;
}

.footer-follow_label {
  font-size: 14px;
}

.footer-follow_icons {
  display: flex;
  gap: 8px;
  align-items: center;
}

.footer-follow_icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
}

.footer-svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: #fff;
}

.footer-bottom-inner {
  border-top: 1px solid rgba(255, 255, 255, .5);
  margin-top: 22px;
  padding: 30px 10px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 10px;
}

/* responsive */
@media (max-width: 1200px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 66px;
    display: flex;
    flex-direction: column-reverse;
  }

  .footer-inner {
    padding-bottom: 60px;
  }

  .footer-brand {
    flex-direction: column;
    gap: 14px;
    padding: 0;
  }

  .footer-brand_logo {
    width: min(150px, 25vw);
  }

  .footer-info .footer-info_row.footer-tel {
    display: flex !important;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .footer-info {
    text-align: center;
  }

  .footer-follow {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin-top: 66px;
    padding-left: 10px;
  }

  .footer-bottom-inner {
    flex-direction: row-reverse;
    align-items: center;
    display: flex;
    justify-content: space-between;
  }
}
@media(max-width:768px) {
  .footer-inner {
    width: calc(100% - 10vw);
  }
  .footer-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: auto;
  }

  .footer-bottom-inner {
    font-size: 2.1vw;
    padding: 1.5em 0.3em 0;
  }
}


/*********************************************
index.php（404 NotFound）
*********************************************/
.error404 .title-wrap {
  margin-bottom: 24vw;
}

.error404 .note {
  text-align: center;
  width: 90vw;
  margin: 0 auto;
  margin-bottom: 40vw;
}

@media(max-width:1200px) {
  .error404 .title-wrap {
    width: 700px;
    margin: 0 auto;
    margin-bottom: 8rem;
  }

  .error404 .note {
    width: 700px;
    margin-bottom: 14rem;
    text-align: left;
  }
}