@charset "utf-8";
/* =============================== */
/* 共通設定 */
/* =============================== */
a > img {
  transition: opacity 0.3s ease-in-out;
}
a:hover > img,
a:focus > img {
  opacity: 0.7;
}

/* =============================== */
/* ヘッダーコンテンツ */
/* =============================== */
.header {
  margin-bottom: 25px;
  background-color: #000;
}

/* メイン画像 */
.header-mv {
  margin-right: auto;
  margin-left: auto;
  max-width: 1000px;
  min-height: 175px;
  background-image: url(../images/pic_header-mv.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
}
.header-mv-heading {
  position: absolute;
  left: -200%;
}
.header-mv-inner {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  max-width: 900px;
}
.header-info-nav {
  position: absolute;
  z-index: 1;
  top: 20px;
  right: 0;
}
.header-info-nav-list {
  display: flex;
  list-style: none;
}
.header-info-nav-item {
  margin-left: 10px;
}
.header-info-nav-link {
  display: block;
  text-decoration: none;
}
.header-info-nav-link > span {
  display: block;
  color: #fff;
  font-size: 10px;
}
.header-info-nav-link:hover img,
.header-info-nav-link:focus img {
  opacity: 1;
}

/* ヘッダーナビ */
.header-nav {
  padding: 0 1rem;
  background-color: #130101;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.header-nav-list {
  display: flex;
  justify-content: space-between;
  margin-right: auto;
  margin-left: auto;
  max-width: 900px;
  list-style: none;
}
.header-nav-item {
}
a.header-nav-link {
  display: block;
  position: relative;
  padding: 1rem 0.5em;
  color: #fff;
  text-decoration: none;
}
a.header-nav-link:hover::after,
a.header-nav-link:focus::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #999;
}
@media not all and (max-width: 768px) {
  .hamburger {
    display: none;
  }
  .sp-drawer {
    display: none;
  }
}
@media (max-width: 768px) {
  .header-mv {
    padding-top: 32%;
    max-width: 1000px;
    min-height: auto;
    background-image: url(../images/pic_header-mv--sp.jpg);
  }
  .header-nav {
    display: none;
  }

  .header-info-nav {
    position: fixed;
    z-index: 99;
    top: auto;
    bottom: 0;
    right: 0;
    width: 100%;
    border-top: 1px solid #aaa;
    background-color: #fff;
  }
  .header-info-nav-list {
    justify-content: flex-end;
  }
  .header-info-nav-item {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 0;
    width: 25%;
  }
  .header-info-nav-link {
    width: 100%;
  }
  .header-info-nav-link > img {
    width: 50%;
    height: auto;
  }
  .header-info-nav-link > span {
    margin-top: -0.5em;
    padding-bottom: 0.25em;
    color: #130101;
    font-size: 3.5vw;
  }
  /* ハンバーガー */
  .hamburger {
    z-index: 20;
    width: 50%;
  }
  .hamburger-btn {
    position: relative;
    display: block;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0;
    border: none;
    background: none;
    outline: none;
    margin-right: auto;
    margin-left: auto;
    padding-top: 100%;
    width: 60%;
    border-radius: 50%;
  }

  .hamburger-line {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 2px;
    background-color: #130101;
  }
  .hamburger-line.line1 {
    top: calc(50% - 20%);
  }
  .hamburger-line.line2 {
  }
  .hamburger-line.line3 {
    top: calc(50% + 20%);
  }
  .hamburger-txt {
    margin-top: -0.5em;
    padding-bottom: 0.25em;
    color: #130101;
    font-size: 3.5vw;
  }

  .hamburger.is-active {
  }
  .hamburger.is-active .hamburger-btn {
    background-color: transparent;
  }
  .hamburger.is-active .line1 {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .hamburger.is-active .line2 {
    transform: translateX(-100vw);
  }
  .hamburger.is-active .line3 {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  /* ドロワーメニュー */
  .sp-drawer {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    padding-bottom: 20%;
    width: 100%;
    height: 100%;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    overflow-y: scroll;
    box-sizing: border-box;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  }
  .sp-drawer.is-open {
    opacity: 1;
    visibility: visible;
  }
  .sp-drawer.is-open + .sp-drawer-overlay {
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
  }
  /* SPナビ */
  .sp-nav {
    font-size: 15px;
    text-align: left;
  }
  .sp-nav-list {
  }
  .sp-nav-item {
  }
  .sp-nav-item + .sp-nav-item {
    border-top: 1px solid #e5e5e5;
  }
  a.sp-nav-link {
    display: block;
    padding: 1em;
    color: #333;
    text-decoration: none;
  }

  /* SPバナー */
  .sp-drawer-bnr-container {
    margin-top: 20px;
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .sp-drawer-bnr {
  }
  .sp-drawer-bnr + .sp-drawer-bnr {
    margin-top: 14px;
  }
  .sp-drawer-bnr--row {
    display: flex;
    justify-content: space-between;
  }
  .sp-drawer-bnr--row > .sp-drawer-bnr-link {
    width: 48%;
  }
  .sp-drawer-bnr-link {
    display: block;
  }
  .sp-drawer-bnr-link img {
    max-width: 100%;
  }

  /* SPサブメニュー */
  .sp-drawer-sub-nav {
    margin-top: 23px;
    padding: 20px;
    border-top: 1px solid #e5e5e5;
    font-size: 12px;
    letter-spacing: 2px;
    line-height: 1;
  }
  .sp-drawer-sub-nav-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin-top: -1.5em;
  }
  .sp-drawer-sub-nav-item {
    margin-top: 1.5em;
    margin-right: 1em;
    padding-right: 1em;
    border-right: 1px solid currentColor;
  }
  a.sp-drawer-sub-nav-link {
    color: #333;
    text-decoration: none;
  }
  .sp-drawer-sub-nav {
  }

  /* SPドロワーフッター */
  .sp-drawer-footer {
    margin-top: 12px;
  }
  .sp-drawer-sns-container {
    display: flex;
    justify-content: center;
  }

  .sp-drawer-sns-link {
    margin: 0 1rem;
    text-decoration: none;
  }

  /* ドロワー閉じるボタン */
  .drawer-close {
    margin-top: 20px;
    text-align: center;
  }
  .drawer-close-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    max-width: 260px;
    width: 100%;
    height: 35px;
    background-color: #000;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.02em;
    line-height: 1;
    cursor: pointer;
  }
  .drawer-close-btn-icon {
    position: relative;
    padding-left: 1.5em;
  }
  .drawer-close-btn-icon::after,
  .drawer-close-btn-icon::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 1em;
    height: 1px;
    background-color: currentColor;
  }
  .drawer-close-btn-icon::after {
    transform: rotate(45deg);
  }
  .drawer-close-btn-icon::before {
    transform: rotate(-45deg);
  }
}

/* =============================== */
/* ページメインコンテンツ */
/* =============================== */
#wrap {
  max-width: 100%;
}

.page-container {
  display: flex;
  justify-content: space-between;
}
.page-container #main {
  float: none;
}
.page-container img {
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
}
.page-container table {
  width: 100%;
}
@media (max-width: 768px) {
  .page-container {
    display: block;
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .page-container #main {
    margin-right: auto;
    margin-left: auto;
    padding-right: 0;
    padding-left: 0;
    max-width: 100%;
  }
}

@media(min-width: 768px){
  a[href="tel:"]{
    pointer-events: none;
  }
}

/*まずはお決まりのボックスサイズ算出をborer-boxに */
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;/*rem算出をしやすくするために*/
}

.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

a.btn-border {
  border: 2px solid #395638;
  border-radius: 0;
  background: #ffffff;
}

a.btn-border:hover {
  color: #ffffff;
  background: #395638;
}





/* =============================== */
/* サイドバーコンテンツ */
/* =============================== */
.page-sidebar {
  margin-right: 20px;
  width: 220px;
}

.sidebar-bnr-list {
}
.sidebar-bnr-link {
  display: block;
}
.sidebar-bnr-link + .sidebar-bnr-link {
  margin-top: 15px;
}

.sidebar-bnr-link img {
  max-width: 100%;
}

/* オカリナ楽譜検索 */
.score-search {
  padding: 20px 14px;
  background-color: #e7e1de;
}
.score-search-ttl {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho",
    serif;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
}
.score-search-form {
  margin-top: 15px;
}
.score-search-input {
  display: flex;
  padding: 0.5em 0.75em;
  border: 1px solid #bfbfbf;
  border-radius: 5px;
  background-color: #fff;
}
.score-search-input > input {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;

  flex-grow: 1;
}
.score-search-input > button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
}

/* 人気のキーワード */
.score-keywords {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #fff;
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 1.7;
}
.score-keywords-ttl {
  padding-left: 5px;
  font-weight: 500;
}
.score-keywords-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin-top: -0.5em;
  margin-left: -0.5em;
  padding-top: 0.5em;
}
.score-keywords-item {
  padding-top: 0.5em;
  padding-left: 0.5em;
}
a.score-keywords-link {
  display: inline-block;
  padding: 2px 0.9em 0;
  border-radius: 1.5em;
  background-color: #fff;

  color: #333;
  text-decoration: none;
}

/* カートボタン */
.sidebar-cart-btn-wrap {
}

a.sidebar-cart-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.75em 1.375em;
  border: 1px solid currentColor;
  color: #3d2b1d;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.02em;
  text-decoration: none;
}
a.sidebar-cart-btn > img {
  margin-right: 1em;
}
@media (max-width: 768px) {
  .page-sidebar {
    display: none;
  }
  /* 楽譜検索 */
  .sp-score-search {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

/* 営業日カレンダー */
.workday-calendar {
}
.workday-calendar-ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1em;
  border-top: 1px solid #e6e6e6;
  font-size: 16px;
}

.workday-calendar-ttl > span {
  margin-left: 0.8em;
  line-height: 1;
}
.workday-calendar iframe {
  width: 100%;
  border: 1px solid #e6e6e6;
}

/* ------------------------------- */
/* 商品カテゴリ */
/* ------------------------------- */
.item-cat-nav {
}
.item-cat-nav-heading {
  padding: 0.5em 1em 0.4em;
  background-color: #130101;
  color: #fff;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho",
    serif;
  font-size: 17px;
  font-weight: bold;
}

.item-cat-list {
  margin-top: 10px;
  list-style: none;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.2;
}
.item-cat-item {
  border-top: 1px solid #d3d1cf;
}
a.item-cat-ttl {
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 1.5em;
  min-height: 52px;
  color: #333;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}
.item-cat-ttl::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 0.7em;
  transform: translateY(-50%) rotate(135deg);
  width: 0.35em;
  height: 0.35em;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
}
.item-cat-ttl > img {
  padding-right: 0.5em;
  padding-left: 0.2em;
}
.item-cat-ttl.is-active {
  background-color: #d7d0cd;
}
.item-cat-ttl.is-active::after {
  transform: translate(-40%, -50%) rotate(45deg);
}

.item-cat-child-list {
  list-style: none;
  background-color: #f0edeb;
  font-size: 14px;
}
.item-cat-child-item {
}

a.item-cat-child-link {
  display: block;
  padding-right: 1.25em;
  padding-left: 1.25em;
  color: #333;
  text-decoration: none;
  /* 通常は非表示 */
  opacity: 0;
  visibility: hidden;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 0;
  transition: 0.3s ease-in-out;
}

/* 子カテゴリオープン時 */
.item-cat-child-list.is-active .item-cat-child-item + .item-cat-child-item {
  border-top: 1px solid #d3d1cf;
}
.item-cat-child-list.is-active .item-cat-child-link {
  opacity: 1;
  visibility: visible;
  padding-top: 1.25em;
  padding-bottom: 1.25em;
  line-height: 1.2;
}

.sp-drawer-cat {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.sp-drawer-cat-overlay {
  display: none;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sp-drawer-cat.is-open {
  opacity: 1;
  visibility: visible;
}
.sp-drawer-cat.is-open + .sp-drawer-cat-overlay {
  display: block;
}

/* SP用商品検索 */
.sp-drawer-search-input {
  display: flex;
  margin: 25px 1rem 0;
  padding: 0.5em 0.75em;
  border-radius: 5px;
  background-color: #f4f4f4;
}
.sp-drawer-search-input > input {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  flex-grow: 1;
}
.sp-drawer-search-input > input::placeholder {
  color: #bfbfbf;
  font-size: 11px;
}
.sp-drawer-search-input > input::-webkit-input-placeholder {
  color: #bfbfbf;
  font-size: 11px;
}
.sp-drawer-search-input > input:-ms-input-placeholder {
  color: #bfbfbf;
  font-size: 11px;
}
.sp-drawer-search-input > button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
}
.movie-wrap iframe{
  width:100%;
}

@media not all and (max-width: 768px) {
  .sp-drawer-cat {
    /* display: none; */
  }
  .sp-item-cat-nav-heading {
    display: none;
  }
  .sp-item-cat {
    display: none;
  }
  .sp-drawer-sns-container {
    display: none;
  }
  .sp-drawer-search-input {
    margin-right: auto;
    margin-left: auto;
    max-width: 300px;
  }
  .pc-search-close {
    padding: 20px;
  }
  .pc-search-close .drawer-close-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    max-width: 90px;
    width: 100%;
    height: 25px;
    border-radius: 1.5em;
    border: 2px solid currentColor;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.02em;
    line-height: 1;
    cursor: pointer;
  }
  .pc-search-close .drawer-close-btn-icon {
    position: relative;
    padding-left: 1.5em;
  }
  .pc-search-close .drawer-close-btn-icon::after,
  .pc-search-close .drawer-close-btn-icon::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 1em;
    height: 2px;
    background-color: currentColor;
  }
  .pc-search-close .drawer-close-btn-icon::after {
    transform: rotate(45deg);
  }
  .pc-search-close .drawer-close-btn-icon::before {
    transform: rotate(-45deg);
  }
}
@media (max-width: 768px) {
  .sp-drawer-cat {
    padding-bottom: 50px;
    height: 100%;
    background-color: #fff;
    font-size: 15px;
    text-align: left;
    overflow-y: scroll;
  }

  .item-cat-nav {
    margin-top: 0;
  }

  .item-cat-nav-heading {
    display: none;
  }
  .sp-item-cat-nav-heading {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 1em;
    padding-left: 1em;
    width: 100%;
    height: 50px;
    background-color: #fff;
    box-sizing: border-box;
  }
  .sp-item-cat-nav-heading-txt {
    font-weight: bold;
  }
  .sp-item-cat-nav-heading-close {
    position: relative;
    width: 18px;
    height: 18px;
    cursor: pointer;
  }
  .sp-item-cat-nav-heading-close::after,
  .sp-item-cat-nav-heading-close::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 20px;
    height: 2px;
    background: #000;
  }
  .sp-item-cat-nav-heading-close::after {
    transform: rotate(45deg);
  }
  .sp-item-cat-nav-heading-close::before {
    transform: rotate(-45deg);
  }

  .item-cat-list {
    margin-top: 50px;
    font-size: 15px;
  }

  a.item-cat-ttl {
    padding-left: 1em;
    font-weight: normal;
  }
  .item-cat-ttl::after,
  .item-cat-ttl::before {
    right: 1rem;
    width: 0.5em;
    height: 0.5em;
  }
  .item-cat-ttl.is-active {
    background-color: #fff;
  }

  .item-cat-ttl > img {
    display: none;
  }

  .item-cat-child-list {
    font-size: 1em;
  }
}

/* =============================== */
/* フッターコンテンツ */
/* =============================== */
.footer {
  background-color: #d7d0cd;
  text-align: left;
}

.footer-inner {
  display: flex;
  margin-right: auto;
  margin-left: auto;
  padding: 30px 1rem;
  max-width: 900px;
}
.footer-main {
  display: flex;
  flex: 1 1 0;
}

.footer-info {
  padding-left: 30px;
  font-size: 15px;
  letter-spacing: 0.02em;
}
.footer-txt {
}
.footer-tel {
  padding-left: 0.2em;
  font-size: 20px;
}

.footer-side {
  flex-basis: 370px;
  padding-left: 35px;
  max-width: 370px;
  border-left: 1px solid #130101;
  box-sizing: border-box;
}
.footer-nav {
  display: flex;
  font-size: 15px;
  letter-spacing: 0.02em;
  line-height: 2;
}
.footer-nav-list {
  list-style: none;
}
.footer-nav-list + .footer-nav-list {
  margin-left: auto;
  padding-left: 1em;
}

.footer-nav-item {
}
a.footer-nav-link {
  color: #000;
  text-decoration: none;
}

/* copyright */
.footer-copyright {
  background-color: #000;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.02em;
  line-height: 2.3;
  text-align: center;
}

@media (max-width: 768px) {
  .footer-main {
    display: block;
    text-align: center;
  }
  .footer-info {
    padding-top: 30px;
    padding-left: 0;
  }
  .footer-side {
    display: none;
  }
}

/* PAGE TO TOP */
.page-to-top {
  position: fixed;
  right: 2rem;
  bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  border-radius: 15px;
  background-color: #000;
  color: #fff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.page-to-top.is-show {
  opacity: 1;
  visibility: visible;
}

.page-to-top-btn {
  margin-top: 15%;
  width: 25%;
  height: 25%;
  border-radius: 2px;
  border-right: 4px solid currentColor;
  border-bottom: 4px solid currentColor;
  transform: rotate(-135deg);
}
@media (max-width: 768px) {
  .page-to-top {
    right: 1em;
    bottom: 25px;
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }
}

/* =============================== */
/* 共通クラス設定 */
/* =============================== */
/* margin-top */
.mt20 {
  margin-top: 20px;
}
.mt25 {
  margin-top: 25px;
}
.mt30 {
  margin-top: 30px;
}

/* margin-bottom */
.mb20 {
  margin-bottom: 20px;
}
.mb25 {
  margin-bottom: 25px;
}
.mb30 {
  margin-bottom: 30px;
}

.bnr-wrap {
  display: block;
}
.bnr-wrap > img {
  max-width: 100%;
}

/* 等倍テーブル */
.fixed-table {
  table-layout: fixed;
}

.fixed-table td {
  width: 100%;
}
