/**
 * 共通css
 */

/**
 * フォント
 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
/* font-family: "Noto Serif JP", serif; */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/* font-family: "Noto Sans JP", sans-serif; */
@import url("https://fonts.googleapis.com/css2?family=Staatliches&display=swap");
/* font-family: "Staatliches", sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
/* font-family: "Oswald", sans-serif; */

/*
 * カラー
 */
:root {
  --color-white: #ffffff;
  --color-black: #121212;
  --color-light-gold: #f9f9f6;
  --color-dark-gray: #606060;
  --color-background: #ffffff;
  --color-text: #121212;
  --padding-inline: 16px;
  --column-gap: 4px;
  --row-gap: 32px;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  color: var(--color-text);
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  background-color: var(--color-background);
  border-top: 8px solid var(--color-black);
  @media screen and (min-width:769px) {
  }
}

.sp-only {
  @media screen and (min-width:769px) {
    display: none;
  }
}
.tb-only {
  @media screen and (min-width:961px) {
    display: none;
  }
}
.pc-only {
  @media screen and (max-width:768px) {
    display: none;
  }
}

/**
 * ヘッダー
 */
header {
  position: relative;
  margin: 0;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-inline: var(--padding-inline);
  @media screen and (min-width: 769px) {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  /* ロゴ */
  .logo {
    a {
      display: inline-block;
    }
    img {
      margin-left: 0;
      max-width: 560px;
      height: 56px;
      line-height: 0;
      @media screen and (min-width: 769px) {
        height: 88px;
      }
    }
    small {
      font-size: 11px;
      @media screen and (min-width: 769px) {
        font-size: 16px;
      }
    }
  }
  /* PC メニュー */
  .pc-menu {
    display: none;
    position: absolute;
    top: 50%;
    right: 24px;
    font-family: "Oswald", "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 24px;
    ol {
      display: flex;
      flex-flow: row;
      justify-content: flex-end;
      align-items: center;
      column-gap: 24px;
      margin: 0;
      padding: 0;
      list-style-type: none;
    }
    @media screen and (min-width:769px) {
      display: block;
      float: right;
    }
    li {
      img {
        width: 32px;
        height: 32px;
      }
    }
  }
}
/**
* スマホメニューボタン
*/
.sp-menu {
  position: fixed;
  top: 16px;
  right: 16px;
  background-color: rgba(0, 0, 0, 0.80);
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  z-index: 999;
  .openbtn-area {
    transition: all 0.6s;
    width: 50px;
    height: 50px;
  }
  span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background: var(--color-white);
    width: 45%;
    &:nth-of-type(1) {
      top: 15px;
    }
    &:nth-of-type(2) {
      top: 23px;
    }
    &:nth-of-type(3) {
      top: 31px;
    }
  }
  &.active {
    background-color: transparent;
    .openbtn-area {
      transform: rotate(360deg);
    }
    span {
      background-color: var(--color-white);
      &:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
      }
      &:nth-of-type(2) {
        opacity: 0;
      }
      &:nth-of-type(3) {
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
      }
    }
  }
}

/**
* スマホメニュー
*/
.sp-nav {
  position: fixed;
  z-index: 500;
  top: 0;
  right: -120%;
  padding-top: 24px;
  width: 88%;
  height: 100vh;
  color: var(--color-white);
  background: rgba(0, 0, 0, 0.8);
  transition: all 0.6s;
  filter: drop-shadow(2px 0 6px rgba(0, 0, 0, 0.88));
  .sp-nav-logo {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 72%;
  }
  &.panelactive {
    right: 0;
    #sp-g-nav-list {
      position: fixed;
      z-index: 999;
      width: 100%;
      height: 100vh;
      overflow: auto;
      -webkit-overflow-scrolling: touch;
    }
  }
  h2 {
    padding-left: 24px;
    svg {
      margin-inline: auto;
      max-width: 80%;
      path {
        fill: var(--color-white);
      }
    }
  }
  ul {
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    li {
      list-style: none;
      text-align: center;
      a {
        color: var(--color-white);
        text-decoration: none;
        padding: 10px;
        display: block;
        text-transform: uppercase;
        letter-spacing: 0.1em;
      }
      svg {
        width: 32px;
        height: 32px;
        path {
          fill: #FFFFFF;
        }
      }
    }
  }
}

/**
 * フッター
 */
footer {
  padding-top: 64px;
  width: 100%;
  @media screen and (min-width: 769px) {
    padding-top: 128px;
  }
  .footer-sns {
    margin-bottom: 80px;
    text-align: center;
    a {
      display: inline-block;
    }
    img {
      margin-inline: auto;
      width: 32px;
      height: auto;
      @media screen and (min-width:769px) {
        width: 56px;
      }
    }
  }
  .footer-menu {
    margin-bottom: 24px;
    @media screen and (min-width:769px) {
      margin-bottom: 40px;
    }
    ol {
      display: flex;
      flex-flow: row;
      justify-content: flex-start;
      align-items: center;
      column-gap: 16px;
      margin: 0 auto;
      padding: 0;
      font-family: "Oswald", "Noto Sans JP", sans-serif;
      font-weight: 500;
      font-size: 18px;
      list-style-type: none;
      @media screen and (min-width:769px) {
        column-gap: 32px;
        font-size: 24px;
      }
      li {
        margin: 0;
        padding: 0;
      }
    }
  }
  .footer-logo {
    margin: 0;
    padding: 0;
    text-align: right;
    img {
      margin-left: auto;
      margin-right: 0;
      max-width: 80%;
    }
  }
  .copy {
    padding-top: 12px;
    padding-bottom: 12px;
    font-family: "Oswald", "Noto Sans JP", sans-serif;
    font-size: 11px;
    text-align: center;
    color: var(--color-white);
    background-color: var(--color-black);
    @media screen and (min-width: 769px) {
      padding-top: 24px;
      padding-bottom: 24px;
    }
  }
}

/**
 * ページの左右余白
 */
.contents-full {
  padding-inline: 16px;
  @media screen and (min-width: 769px) {
    padding-inline: 48px;
  }
}
.contents-1280 {
  margin-inline: auto;
  padding-inline: 16px;
  max-width: 1280px;
  @media screen and (min-width: 769px) {
    padding-inline: 48px;
  }
}
.contents-960 {
  margin-inline: auto;
  padding-inline: 16px;
  max-width: 960px;
  @media screen and (min-width: 769px) {
    padding-inline: 48px;
  }
}
.contents-800 {
  margin-inline: auto;
  padding-inline: 16px;
  max-width: 800px;
  @media screen and (min-width: 769px) {
    padding-inline: 48px;
  }
}
.contents-640 {
  margin-inline: auto;
  padding-inline: 16px;
  max-width: 640px;
  @media screen and (min-width: 769px) {
    padding-inline: 48px;
  }
}
.section-slide {
  overflow-x: hidden;
}


/**
 * リンク
 */
a {
  position: relative;
  text-decoration: none;
  color: inherit;
  &.hover-underline {
    display: inline-block;
    &::after {
      position: absolute;
      bottom: -2px;
      left: 0;
      content: '';
      width: 100%;
      height: 1px;
      background: var(--color-text);
      transform: scale(0, 1);
      transform-origin: left top;
      transition: transform .3s;
    }
    &:hover {
      &::after {
        transform: scale(1, 1);
      }
    }
  }
  img {
    transition: all 0.6s;
    &:hover {
      opacity: 0.8;
    }
  }
}

/**
 * 余白
 */
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }

/**
 * フォント
 */
.text-bold { font-weight: bold; }

/**
 * 文字揃え
 */
.texr-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/**
 * タイトル
 */
h2 {
  text-wrap: inherit;
}
.section-title {
  margin: 0;
  padding: 0;
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 40px;
  @media screen and (min-width: 769px) {
    margin-bottom: 16px;
    font-size: 80px;
  }
}

/**
 * スライド
 */
.slide {
  /* 画像 */
  img {
    margin-bottom: 8px;
  }
  /* キャッチコピー */
  .catch-wrap {
    padding-inline: 8px;
  }
  h3 {
    margin: 0 auto 16px auto;
    padding: 0;
    font-family: "Noto Serif JP", serif;
    font-size: 16px;
    font-weight: 500;
  }
  /* 名前・投稿日時 */
  h4 {
    margin: 0 auto;
    padding: 0;
    font-size: 16px;
    font-weight: 300;
    text-align: right;
  }
}

/**
 * フォーム
 */
input, select, textarea {
  width: 100%;
  font-size: 16px;
}
input[type=text], input[type=email] {
  padding: .375rem .75rem;
}
select {
  padding: 4px 8px;
}
textarea {
  padding: 4px 8px;
}
input[type=submit] {
  appearance: none;
  box-shadow: none;
  padding: 8px 24px;
  width: auto;
  color: var(--color-white);
  background-color: var(--color-black);
  border: 1px solid var(--color-black);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.6s;
  @media screen and (min-width:769px) {
    padding: 16px 72px;
  }
  &:hover {
    color: var(--color-black);
    background-color: var(--color-white);
  }
}
.button-group {
  text-align: center;
}

/**
 * back button
 */
.button-back {
  text-align: center;
  a {
    color: var(--color-black);
    text-decoration: none;
  }
}

/**
 * お問い合わせボタン
 */
.button-contact {
  display: block;
  margin: 0 auto;
  padding: 24px 24px;
  width: 100%;
  color: var(--color-white);
  font-size: 21px;
  font-weight: 700;
  text-align: center;
  background-color: var(--color-black);
  border: 1px solid var(--color-black);
  border-radius: 4px;
  transition: all 0.6s;
  span  {
    filter: drop-shadow(0px 0px 8px rgba(255, 240, 166, 0.72));
  }
  &:hover {
    color: var(--color-black);
    background-color: var(--color-white);
  }
}

/*
 * アーティストのSNSアイコン
 */
.person-sns {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 24px;
  position: relative;
  @media screen and (min-width:769px) {
    column-gap: 40px;
  }
  .sns-icon {
    img {
      width: 32px;
      height: auto;
      max-height: 32px;
      @media screen and (min-width:769px) {
        width: 56px;
        max-height: 56px;
      }
    }  
  }
}

/**
 * アニメーション
 */
.fadein-up {
  --animate-duration: 2.4s;
  opacity: 0;
}

/**
 * more link
 */
.link-more {
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 700;
}
