@charset "utf-8";


html, body {
height: 100%; /* HTMLとbodyの高さを画面全体に設定 */
margin: 0;
/*background-color: #fff;*/

}
/* Flexboxをbodyに適用 */
body {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    width: 100%;
    margin: 0;
    background: url(../img/bg_sp02.jpg) center / cover no-repeat fixed;
}
main {
 flex: 1; /* main要素が余白を占有し、フッターを押し下げる */
 margin-top: 85px; /* ロゴの高さに合わせて調整 */
}
footer {
 /* フッターは通常通りに表示される */
 padding: 20px;
 background-color: #f0f0f0;
}
h2 {
    font-size: calc((30 / 428) * 100vw);
    line-height: 1.5;
    font-family: 'Marcellus', Garamond, "Big Caslon", "Times New Roman", serif;
    font-weight: normal;
    color: #fff;
    text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
}
h3 {
    font-size: calc((24 / 428) * 100vw);
}
h3 img{
    width: 100%;
    margin: 2vh 0;
}
.gothic {
    font-family: Lato, "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

@media screen and (min-width:768px) {
    h2 {
        font-size: calc((30 / 768) * 100vw);
    }
    h3 {
        font-size: calc((24 / 768) * 100vw);
    }
}
@media screen and (min-width:991px) {
    main {
        margin-top: 110px;
    }
    h2 {
        font-size: calc((30 / 991) * 100vw);
    }
    h3 {
        font-size: calc((24 / 991) * 100vw);
    }
}
@media screen and (min-width:1500px) {
    h2 {
        font-size: 3rem;
    }
    h3 {
        font-size: 2rem;
    }
}
/* content */
.content{
    padding: 3vh 14px;
    width:100%;
    margin: 0 auto;
    letter-spacing: 0.03em;
}

@media screen and (min-width:768px){
    .content {
        padding: 60px 20px;
    }
}
@media (min-width: 991px) {
    body {
        background: url(../img/bg_pc02.jpg) center / cover no-repeat fixed;
    }
    .content {
        padding: 40px;
    }
}
@media (min-width: 1200px) {
    .content {
        padding: 40px 0;
        max-width: 1200px;
    }
}

/* instrument-item */
.topics-main {
    font-family: "Goudy Old Style", Garamond, "Big Caslon", "Times New Roman", "Shippori Mincho", 游明朝, YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
    padding: 14px 40px;
}
.front-items {
    display: flex;
    max-width: 800px;
    margin: auto auto 6vh auto;
    overflow-x: auto;
}
.front-items::-webkit-scrollbar {
    height: 8px; /* スクロールバーの高さ */
} 
.front-items::-webkit-scrollbar-thumb {
    background: #aaa; /* ツマミの色 */
    border-radius: 6px; /* ツマミ両端の丸み */
} 
.front-items::-webkit-scrollbar-track {
    background: #ddd; /* トラックの色 */
    border-radius: 6px; /* トラック両端の丸み */
} 
.front-items img { /* 画像のスタイル */
    width: 85%;
    /*max-height: 200px;
    object-fit: cover;*/
} 
.item-1 {
    position: relative;
    transition : 0.3s;
    -moz-box-shadow: 5px 5px 10px -5px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 5px 5px 10px -5px rgba(0, 0, 0, 0.5);
    -ms-box-shadow: 5px 5px 10px -5px rgba(0, 0, 0, 0.5);
    box-shadow: 5px 5px 10px -5px rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    width: 60vw;
    padding: 12px;
    margin-bottom: 20px;
    margin-right: 10px;
    flex-shrink: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
}
.item-soon {
    position: relative;
    transition : 0.3s;
    -moz-box-shadow: 5px 5px 10px -5px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 5px 5px 10px -5px rgba(0, 0, 0, 0.5);
    -ms-box-shadow: 5px 5px 10px -5px rgba(0, 0, 0, 0.5);
    box-shadow: 5px 5px 10px -5px rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    width: 60vw;
    padding: 12px;
    margin: 0 auto;
    flex-shrink: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
}
.item-1:hover{
    filter:alpha(opacity=85);/* IE 6,7*/
    -ms-filter: "alpha(opacity=85)";/* IE 8,9 */
    -moz-opacity:0.85;/* FF , Netscape */
    -khtml-opacity: 0.85;/* Safari 1.x */
    opacity:0.85;
    zoom:1;/*IE*/
    transition : 0.3s;
    color: #b8860b;
}
.item-1 a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-indent:-999px;
}
.item-1 p {
    line-height: 1.3;
    flex-grow: 1;
}
/*楽器種*/
.item-text01 {
    font-size: 12px;
}
/*楽器名*/
.item-text02 {
    font-size: calc((24 / 428) * 100vw);
    font-weight: bold;
}
/*備考*/
.item-text03 {
    font-size: 14px;
}
.price_a{
    font-family: Lato, "Noto Sans JP", "游ゴシック Medium", "ヒラギノ角ゴ ProN", "メイリオ", "MS PGothic", sans-serif;
    font-weight: 600;
    padding: 5px 0;
    color: #e73562;
    font-size: 0.9rem;
    line-height: 150%;
}
.price_a:before{
    content:'販売価格';
    color: #e73562;
    margin-right: 0.5rem;
}
.price_a02{
    font-family: Lato, "Noto Sans JP", "游ゴシック Medium", "ヒラギノ角ゴ ProN", "メイリオ", "MS PGothic", sans-serif;
    font-weight: 600;
    padding: 5px 0;
    color: #e73562;
    font-size: 0.9rem;
    line-height: 150%;
}
.price_a02:before{
    content:'通常販売価格';
    color: #e73562;
    margin-right: 0.5rem;
}
.detaile-item {
  font-size: 0.8rem;
  max-width: 100%;
  border: solid 1px #806C68;
  border-radius: 3px;
  text-align: center;
  margin-top: 1vh;
  padding: 3px 0;
}
.item-name {
    font-size: calc((24 / 428) * 100vw);
    font-weight: bold;
    line-height: 1.2;
}
.item-text-2 {
    font-size: 14px;
    padding-top: 5px;
    line-height: 1.3;
}
.item-kome {
    margin-top: 3vh;
    font-size: 12px;
}
.sold{
    display: inline-block;
    padding: 3px 8px;
    border-radius: 3px;
    background-color: #e73562;
    color: #fff;
    position: absolute;
    bottom: 16px;
    right: 18px;
    z-index: 50;
}
.hold{
    display: inline-block;
    padding: 3px 8px;
    border-radius: 3px;
    background-color: #008080;
    color: #fff;
    position: absolute;
    bottom: 16px;
    right: 18px;
    z-index: 50;
}
.triangle_arrow {
  position: relative;
}
.triangle_arrow::after { /* くの字の表示設定 */
  content: "";
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  right: 35px;
  width: 10px;
  height: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
}
@media (min-width:768px){
    .topics-main {
        padding: 14px 24px;
    }
    .front-items{
        display: grid;
        justify-content: center;
        grid-template-columns: repeat(auto-fit, 30%);
        max-width: 100vw;
        gap: 5vh 15px;
        margin: 0 auto 8vh auto;
        overflow-x: visible;
    }
    .item-1{       
        /*box-shadow: none;*/
        width: 100%;
        margin-bottom: 10px;
        padding: 12px;
        text-align: left;
    }
    .item-soon {
        width: 100%;
        margin-bottom: -5vh;
        padding: 12px;
    }
    .item-1 a {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        text-indent:-999px;
    }
    .item-1 p {
        line-height: 1.5;
    }
    .item-1 img {
        width: 100%;
        /*-moz-box-shadow: 5px 5px 10px -5px rgba(0, 0, 0, 0.5);
        -webkit-box-shadow: 5px 5px 10px -5px rgba(0, 0, 0, 0.5);
        -ms-box-shadow: 5px 5px 10px -5px rgba(0, 0, 0, 0.5);
        box-shadow: 5px 5px 10px -5px rgba(0, 0, 0, 0.5);*/
        border-radius: 5px;
    }
    .item-text02 {
        font-size: calc((20 / 768) * 100vw);
    }
    .item-kome {
        text-align: center;
    }
}
@media (min-width: 991px){
    .front-items {
        grid-template-columns: repeat(auto-fit, 32%);
    }
    .item-text02 {
        font-size: 1.35rem;
    }
    .price_a{
        padding: 1vh 0;
    }

}
@media (min-width: 1199px) {
    .topics-main {
        padding: 14px 100px;
    }
    .front-items{
        grid-template-columns: repeat(auto-fit, 19%);
    }
}

/* maintenance */
.repair-area {
    color: #fff;
    width: 100%;
    background-image:url(../img/bg_sp.jpg);
    background-position: center;
    background-size:cover;
    padding: 16px;
    border-radius: 15px;
    margin: 0 auto;
}
.event-area-repair {
    display: flex;
    flex-direction: column;
}

.event-area-repair img {
    width: 100%;
    display: block;
    margin: 2vh auto;
    transition: 0.4s;
    border-radius: 15px;
}

.event-area img {
    width: 100%!important;
    display: block;
    margin: 2vh auto;
    transition: 0.4s;
    border-radius: 15px;
}
.event-area img:hover {
    opacity: 0.7;
    transition: 0.4s;
    cursor: pointer; 
}
.event-area-repair-text01 {
    text-align: center;
    line-height: 1.25;
    margin: 1vh 0;
}
.event-area-repair h2 {
    text-align: center;
}
.event-area-repair-text02 {
    font-size:14px;
    line-height: 1.5;
    text-align: justify;
    margin-bottom: 3vh;
}
table{
    width: 100%;
    margin-bottom: 3vh;
    color: #333;
}
table , td, th {
    border-collapse: collapse;
}
th {
    width: 30%;
    padding: 8px;
    text-align: center;
}
td {
    padding: 8px;
}
th , .t_shop {
    background: rgba(255, 250, 240, 0.9);    
}
.space_tate{
    width: 5px;
    padding: 2px;
    background: n;
}
.space_yoko{
    height: 5px;
    padding: 0;
} 
@media (min-width: 991px) {
    .repair-area {
        padding: 32px 48px;
        max-width: 1200px;
        margin: 3vh auto;
    }
    .event-area-repair {
        flex-direction: row;
        gap: 2vw;
        align-items: center;
    }
    .event-area-repair img {
        width: 50%;
    }
    .event-area-repair h2 {
        text-align: left!important;
    }
    .event-area-repair-text01 {
        text-align: left;
    }
    .event-area-repair-text02 {
        margin-top: 2vh;
    }
    td {
        padding: 10px;
    }
}

/* BUTTON */
.normal-btn {
    position: relative;
    display: inline-block; 
    /*ボタンの形状*/
    padding: 2vh 60px;
    border-radius:70px;
    text-decoration: none;    
    color: #fff;
    /*アニメーションの指定*/ 
    transition: all 0.6s ease-out;
    /*text-shadow: 3px 3px 5px #000;*/
    background-color: #cd9c3d;
    /*その他*/ 
    text-align: center;
    width: 100%;
    font-size: 14px;
    margin: 3vh 0;
}
.normal-btn::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 22px;
  height: 22px;
  margin: auto;
  border-radius: 20px;
  background-color: #fff;
}
.normal-btn::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 25px;
  width: 0;
  height: 0;
  margin: auto;
  border-top: 6px solid transparent;
  border-right: 0 solid transparent;
  border-left: 9px solid #e6643b;
  border-bottom: 6px solid transparent;
  box-sizing: border-box;
}
.normal-btn:hover{
    /*ボタンの形状*/
    border-color: transparent;
    color: #fff;
    /*背景の色と形状*/
    background-color:rgba(230,100,60,1);
    /*ボックスの影*/   
    box-shadow: 3px 3px 8px #fff;
    text-shadow: none;
}


/* logo */
#topics-header { 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    z-index: 100; /* 他の要素より手前に表示するために、大きな値を設定 */
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
}
.topics-logo { 
    width: 230px; 
    padding-top: 9px; 
    padding-left: 9px;
    transition: .4s;
}
.topics-logo:hover { 
    opacity: 0.5;
}

.topics-logo02 {
    width: 100%;
    display: flex;
    justify-content: space-between;    
}
.strm_logo { 
    width: 158px; 
    padding-top: 9px; 
    padding-left: 9px;
    transition: .4s;
}
.cbm_logo {
    width: 200px;
    padding-top: 9px;
    padding-right: 9px;
    transition: .4s;
}
.strm_logo:hover, .cbm_logo:hover { 
    opacity: 0.5;
}
.topics-area {
    background-image:url(../img/bg_sp.jpg);
    background-position: center;
    background-size:cover;
    height: 50px;
    display: flex;
    align-items: center;
    padding-left: 14px;
}
.topics-copy {
    font-size: 18px;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 6px;
}
.topics-text {

}
.kome {
    font-size: 12px;
    margin-top: 20px;
}

@media (min-width: 991px) {
    .topics-logo {
        width: 300px;
    }

    .strm_logo {
        width: 320px;
        padding-top: 14px; 
        padding-left: 14px;
    }
    .cbm_logo {
        width: 360px;
        padding-top: 14px; 
        padding-right: 14px;
    }
    .topics-area {
        background-image:url(../img/bg_pc.jpg);
        background-position: center;
        background-size:cover;
        height: 100px;
        padding-left: 100px;
    }
    .topics-copy {
        font-size: 22px;
    }
}
@media (min-width: 1200px) {}



/* footer */
.footer-area{ 
  width: 100%; 
  text-align: center; 
  background-color: #efefef; 
  padding-bottom: 2vh;
}
.footer-sns{ 
  padding-top: 3vh; 
  display: flex; 
  justify-content: center;
}
.footer-sns p{ 
  font-family: 'Open Sans', sans-serif; 
  font-weight: 700; 
  font-style: italic;
}
.footer-sns p span::after{ 
  display: inline-block; 
  content: ""; 
  background: #000; 
  width: 1.5rem; 
  height: 1px; 
  margin: auto 0.7rem 0.25rem 0.7rem;
}
ul.footer-sns-list{ 
  width: 22.3333vw; 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  padding-left: 8px;
}
ul.footer-sns-list li img{ 
  height: 20px;
  transition: all .5s;
}
.footer-sns li{ 
  list-style: none;
}
.footer-logo { 
  width:70%; 
  margin-top: 1vh; 
  transition: all .5s;
}
.footer-logo:hover , ul.footer-sns-list li img:hover{
  opacity: 0.6;
}
small { 
    font-size: 10px;
}

.pc { display: none !important; }
.sp { display: block !important; }
}
@media screen and (min-width:768px){ 
  ul.footer-sns-list{
    width: 13.3333vw; 
  } 
  .footer-logo {
    width: 45%; 
  }
}

@media (min-width: 991px){ 
    ul.footer-sns-list{
    padding-left: 22px; 
    } 
    .footer-logo {
    width: 30vw; 
    }
    .pc { display: block !important; }
    .sp { display: none !important; }
}

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

