@charset "utf-8";
/* レイアウトのためのCSS */

body {
    font-family: "Goudy Old Style", Garamond, "Big Caslon", "Times New Roman", "Shippori Mincho", 游明朝, YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
    color: #333;
    background: #333;
    line-height:1.75;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%; 
    word-wrap: break-word;
    font-size: 17px;
}
a {
    text-decoration: none;
    outline: none;
}
a:hover, a:active, a:visited{
    text-decoration: none;
}

h2 {
    font-size: calc((32 / 428) * 100vw);
    line-height: 1.5;
    font-family: 'Marcellus', Garamond, "Big Caslon", "Times New Roman", serif;
    font-weight: normal;
    text-align: center;
}
h3 {
    font-size: 1.1rem;
    font-weight: bold;
    text-align: center;
}

@media screen and (min-width:768px) {
    h2 {
        font-size: calc((30 / 768) * 100vw);
    }
    h3 {
        font-size: 1.3rem;
    }
}
@media screen and (min-width:991px) {
    h2 {
        font-size: calc((30 / 991) * 100vw);
    }
}
@media screen and (min-width:1500px) {
    h2 {
        font-size: 3rem;
    }
}

/* fixation - 背景固定 */
.bg_img_fixation{
}
.bg_img_fixation::before {
    content:"";
    display:block;
    position:fixed;
    top:0;
    left:0;
    z-index:-1;
    width:100%;
    height:100vh;
    background-repeat:no-repeat;
    background-position:50% 100%;
    background-image:url(../img/bg_sp.jpg);
    background-size:cover;
}

@media (min-width: 991px){
    .bg_img_fixation{
    }
    .bg_img_fixation::before {
    content:"";
    display:block;
    position:fixed;
    top:0;
    left:0;
    z-index:-10;
    width:100%;
    height:100vh;
    background-repeat:no-repeat;
    background-position:50% 100%;
    background-image:url(../img/bg_pc.jpg);
    background-size:cover;
    }
}

/* heading */
#header {}
.heading-block{
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}
.title-img_sp{
    width: 85vw;
    max-width: 410px;
    margin: 0 auto;
    animation-delay: 1.3s;
}
.title-img_pc {
    height: 80vh;
    animation-delay: 1.5s;
}

@media screen and (min-width:768px) {}
@media screen and (min-width:991px) {}

/* vn-logo */
#vn-logo img{
    width: 105px;
    display: block;
}
#vn-logo{
    height: 70px;
    width:100%;
    position: absolute;
    top: 15px;
    left: 15px;
}

#vn-logo a{
    transition: all .5s;
}
#vn-logo a:hover{
    opacity: 0.7;
}
@media screen and (min-width:991px) { 
    #vn-logo img{
        width: 130px;
    }
    #vn-logo{
        position: absolute;
        left:30px;
        top:30px;
    }
}

/* content */
.content , .intro-content {
    padding: 8vh 8vw 3vh 8vw;
    width:100%;
    margin: 0 auto;
    letter-spacing: 0.03em;
}
.content-end {
    padding: 8vh 8vw 12vh 8vw;
    width:100%;
    margin: 0 auto;
    letter-spacing: 0.03em;
}

@media screen and (min-width:768px){
    .content , .intro-content{
        padding: 60px 70px;
    }
}
@media (min-width: 991px) {
    .content , .intro-content{
        padding: 80px 100px;
    }
    .content-start {
        padding: 15px 100px 80px 100px;
    }
    .content-end {
        padding: 8vh 8vw 18vh 8vw;
    }
}
@media (min-width: 1200px) {
    .content , .intro-content{
        padding: 100px;
    }
    .content-start {
        padding: 50px 100px 100px 100px;
    }
    .content-end {
        padding: 100px 100px 220px 100px;
    }
}
@media (min-width: 1500px) {
    .intro-content {
        padding: 100px 235px;
        }
}


/* slider */
@keyframes infinity-scroll-left {
from {
      transform: translateX(0);
    }
      to {
      transform: translateX(-100%);
    }
}
.scroll-infinity {
    padding-bottom: 2vh;
}
.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
  margin-bottom: 2vh;
}
.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0
}
.scroll-infinity__list--left {
  animation: infinity-scroll-left 40s infinite linear 0.5s both;
}
.scroll-infinity__item {
  width: calc(100vw / 2);
}
.scroll-infinity__item>img {
  width: 95%;
}

@keyframes infinity-scroll-right {
from {
  transform: translateX(-100%);
}
  to {
  transform: translateX(0%);
}
}
.scroll-infinity__list--right{
  animation :infinity-scroll-right 40s infinite linear 0.5s both;
}
@media (min-width: 991px){
    .scroll-infinity {
        padding-bottom: 3vh;
    }
    .scroll-infinity__wrap {
      margin-bottom: 3vh;
    }
    .scroll-infinity__item {
      width: calc(100vw / 4.5);
    }
}

/* intro-area */
.intro-bg {}
.intro-img {
    margin-top: -7vh;
}
.intro-img img{
    display: block;
    margin: 0 auto;
    width: 100%;
    animation-delay:.5s;
    position: relative;
    top: 10vh;
}
/* pc用のintro */
.intro-title{
    display: inline-block;
    text-align: left;
    font-style: italic;
    font-size: 1.6rem;
    font-weight: bold;
}
.intro-area h2 {
    margin-bottom: 2vh;
    text-align: left;
}
/* sp用のintro */
.intro-area {
    width: 100%;
    text-align: left;
    letter-spacing: 0.03em;
    margin: 0 auto;
    position: sticky;
    z-index: 3;
    text-shadow:1px 1px 0 #FFF, -1px -1px 0 #FFF,
              -1px 1px 0 #FFF, 1px -1px 0 #FFF,
              0px 1px 0 #FFF,  0-1px 0 #FFF,
              -1px 0 0 #FFF, 1px 0 0 #FFF;
} 
.intro-area p {
    line-height: 1.85;
    font-size: 0.95rem;
    margin-bottom: 10px;
    text-align: justify;
}

@media (min-width:768px){
    .intro-area p {
        line-height: 2;
        font-size: 16px;
    }
    .intro-img img{
        width: 65vw;
        top: 13vh;
    }
}

@media (min-width: 991px){
    .intro-area {
        padding: 0;
    }
    .intro-bg {
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
        gap: 5vw;
    }
    .intro-box {
        width: 60%;
    }
    .intro-img {
        margin-top: -13vh;
    }
    .intro-img img{
        width: 50vw;
        top: 17vh;
    } 
    .intro-box h2{
        text-align: left;
    }
}
@media (min-width: 1200px) {
    .intro-bg{
        gap: 0;
    }
    .intro-img img{
        width: 40vw;
        top: 20vh;
    }
}
@media (min-width: 1500px) {}

/******** news ********/
#news {}
.section-news{
    padding-top: 3vh;
}
.news-area{
    width: 100%;
    background: #fff;    
    border-radius: 15px;
    filter: drop-shadow(0 0 4px rgba(0, 0, 0, .15));
}
.news-text-area {
    padding: 10px 15px;
}
.section-news ul{
    overflow: hidden scroll;
    height: 8rem;
    margin: 0 auto;
}
.section-news ul li{
    border-bottom: dotted 1px #e6643b;
    margin-bottom: 2vh;
    display: flex;
    width: 97%;
}
.section-news ul li .news-date{
    color: #aaa;
    font-size: 0.85rem;
    margin-right: 1.5rem;
}
.section-news ul li .news-head{
    color: #000;
    font-size: 14px;
}
/******** スクロールバー ********/
/*スクロールバーの横幅指定*/
.scrollArea::scrollbar {
    width: 8px;
    height: 8px;   
}
.scrollArea::-webkit-scrollbar {
    width: 8px;
    height: 8px;

}
/*スクロールバーの背景色・角丸指定*/
.scrollArea::scrollbar-track {
    border-radius: 10px;
    background: #f0f0f0;
}
.scrollArea::-webkit-scrollbar-track {
    border-radius: 10px;
    background: #f0f0f0;
}
/*スクロールバーの色・角丸指定*/
.scrollArea::scrollbar-thumb {
    border-radius: 10px;
    background:#e6643b;
}
.scrollArea::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background:#e6643b;
}

.scrollArea a {
    text-decoration: none;
    color: #000;
}

@media (min-width:768px){
    .section-news ul{
        height: 5rem;
    }
}
@media (min-width: 991px) {
    .section-news{
        padding: 0;
        width: 40%;
    }
    .section-news ul{
        height: 42vh;
    }
}

/* Contrabass-messe-bnr */
.cb_bnr_container {
    position: relative; /* 子要素の絶対配置の基準にする */
    width: 100%; /* 画像の幅に合わせるか、任意のサイズに */
    cursor: pointer; /* ホバーできることを示す */
    border-radius: 15px;
    margin-top: 3vh;
}
.cb_bnr{
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    transition: opacity 0.5s ease;
}

.cb_bnr_text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* 半透明の黒背景 */
    color: #cd9c3d;
    display: flex; /* テキストを中央に配置するためにflexboxを使う */
    justify-content: center; /* 水平方向の中央揃え */
    align-items: center; /* 垂直方向の中央揃え */
    opacity: 0; /* 通常時は非表示 */
    visibility: hidden; /* 通常時は非表示（完全にスペースを占めない） */
    transition: opacity 0.5s ease, visibility 0.5s ease; /* ホバー時の変化を滑らかに */
    text-align: center;
    padding: 10px;
    box-sizing: border-box; /* paddingを含めてwidth/heightを計算 */
    border-radius: 15px;
    font-size: 2rem;
    letter-spacing: 3px;
    font-weight: bold;
}

.cb_bnr_container:hover .cb_bnr_text {
    opacity: 1; /* ホバー時に表示 */
    visibility: visible; /* ホバー時に表示 */
    border-radius: 15px;
}

/* お好みでホバー時に画像を暗くする/拡大するなどのエフェクトも追加可能 */
.cb_bnr_container:hover img {
    /*opacity: 0.7;  /* 画像を少し暗くする */
    /* transform: scale(1.05); */ /* 少し拡大する */
}


/* after-intro */
.custom-shape-divider-top-1728452784 {
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1728452784 svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 35px;
}

.custom-shape-divider-top-1728452784 .shape-fill {
    fill: #FFFFFF;
}
@media (min-width:768px){}
@media (min-width: 991px){
    .custom-shape-divider-top-1728452784 svg {
        height: 100px;
    }
}
@media (min-width:1199px) {
    .custom-shape-divider-top-1728452784 svg {
        height: 170px;
    }
}

/* Other-area */
.section-name {
    margin-bottom: 5vw;
}
.section-name h3 {
    margin-top: 12px;
}
.content-title {
    border-bottom: solid 4px;
    color: #000;
}
.section-name02 {
    margin-bottom: 5vw;
}
.section-name02 h3 {
    margin-top: 12px;
    color: #f3f2e1;
    text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
}
.content-title02 {
    border-bottom: solid 4px #f3f2e1;
    color: #f3f2e1;
    text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
}
.deco-img {
    width: 80px!important;
    display: block;
    margin: 0 auto 5px auto;    
}

@media (min-width:768px){
    .deco-img {
        width: calc((80 / 768) * 100vw)!important;
    }
}
@media (min-width: 991px){
    .deco-img {
        width: calc((130 / 1500) * 100vw)!important;
    }
}
@media (min-width: 1500px){
    .deco-img {
        width: 100px!important;
    }
}


/* instrument-area */
/* Guarneri-area */
.guarneri_area{
    margin-top: 8vh;
}
.guarneri_area01 picture{
    display: flex;
    justify-content: center;
}
.guarneri_area01 img {
    width: 115%;
}
.guarneri_area02 {}
.guarneri_text01 {
    background-color: #b7282e;
    display: inline-block;
    height: 34px;
    line-height: 34px;
    padding: 0 9px;
    color: #fff;
    font-weight: bold;
}
.guarneri_text02 {
    font-size: 2rem;
    font-weight: bold;
    margin-top: 16px;
    line-height: 1.3;
}
.guarneri_text02 span {
    font-size: 75%;
}
.guarneri_text03 {
    font-size: 16px;
    font-weight: bold;
    border-top: solid 1px #957357;
}
.guarneri_text04 {
    margin-top:2vh;
    line-height: 1.75;    
}
@media (min-width:768px) {
    .guarneri_area02 {
        margin-top: -10vh;
    }
}
@media (min-width:991px) {
    .guarneri_area{
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
        gap: 2vw;
        margin-bottom: 0;
        margin-top: 0;
    }
    .guarneri_area01 {
        width: 50%;
    }
    .guarneri_area01 img {
        width: 100%;
        margin-top:3vh;
    }
    .guarneri_area02 {
        margin-top: 0;
        width: 50%;
        line-height: 1.5;    
    }
    .guarneri_text01 {}
    .guarneri_text02 {
        font-size: 2.5rem;
    }
    .guarneri_text03 {
        font-size: 1.5rem;
        padding-top: 8px;
    }
    .guarneri_text04 {
        
    }
    .guarneri_text02, .guarneri_text03, .guarneri_text04 {
        text-shadow:1px 1px 1px#fff, /*文字の右下に影を追加*/
        1px -1px 1px #fff,/*文字の右上に影を追加*/
        -1px 1px 1px #fff,/*文字の左下に影を追加*/
        -1px -1px 1px #fff;/*文字の左上に影を追加*/
    }
}


/* instrument-item */
.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;
}
.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;
    color: #fff;
}
.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){
    .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) {
    .front-items{
        grid-template-columns: repeat(auto-fit, 18%);
    }
}
/* brand-area */
#brand ul {
    margin: 0 auto;
    list-style: none;
    display: flex;
    gap: 6vh 5%;
    flex-wrap: wrap;
    justify-content: space-around;
}
#brand li {
    margin: 0 auto;
}
#brand li img {
    display: block;
    width: 120px;
    height: 60px;
    object-fit: contain;
}
.sp-size img {
    height: 80px!important;
}
#brand li a {
    transition: all .3s ease-out;
}
#brand li a:hover{
    opacity: .6;
}
@media (min-width: 991px){
    #brand li img {
        width: 180px;
        height: 90px;
    }
    .sp-size img {
        height: 105px!important;
    }
}

/* naminami */
/*--naminamiの直下のセクションに変更--*/
#sp-event {
    position: relative;
}
.custom-shape-divider-bottom-1726477472 {
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}
.custom-shape-divider-bottom-1726477472 svg {
    position: relative;
    display: block;
    width: calc(107% + 1.3px);
    height: 55px;
}
.custom-shape-divider-bottom-1726477472 .shape-fill {
    fill: #FFFFFF;
    /*filter: drop-shadow(3px 3px 3px #333);*/
}
@media (min-width: 991px){
    /* naminami */
    .custom-shape-divider-bottom-1726477472 {
        top: -147px;
    }
    .custom-shape-divider-bottom-1726477472 svg {
        height: 150px;
    }
}
/* /.naminami */


/* event-area */
.container {
    font-family: Lato, "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    max-width: 980px;
    margin: 0 auto;
}
.container img {
    width: 100%;
}
.data {
    font-weight: bold;
    text-align: left;
    margin-bottom: 2vh;
    border: 1px #a9a9a9 solid;
    display: inline-block;
    padding: 5px 20px;
}

/* campaign-area */
.cam-eve {
    display: flex;
    width: 100%;
    gap: 8vw;
    flex-direction: column;
}

.campaign01, .campaign02 {
    width: 100%;
}
.campaign01 {
    margin-bottom: 5vh;
}
.cam-eve img {
    width: 100%;
}
.cam-eve-title {
    font-size: 25px;
    line-height: 1.4;
    margin: 2vh 0;
    font-weight: bold;
}

@media (min-width:768px){
    .cam-eve-title {
        font-size: calc((30 / 768) * 100vw);
    }
}
@media (min-width: 991px){
    .cam-eve-title {
        font-size: calc((30 / 991) * 100vw);
    }
    .cam-eve {
        flex-direction: row;
    }
    .campaign01, .campaign02 {
        width: 50%;
    }
    .campaign01 {
        margin-bottom: 0;
    }
}
@media (min-width: 1199px) {
    .cam-eve-title {
        font-size: calc((28 / 1200) * 100vw);
    }
}

/* Access */
.map {
    border: 0;
    width: 100%;
    height: 40vh;
    margin-bottom: 3vh;
}
.access-info {
    background-color: #f5f5f5;
    padding:3vh 6vw 0 6vw;
}
.access-text{
    font-family: Lato, "Noto Sans JP", "游ゴシック Medium", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    text-align: left;
}
.access-text h2 {
    font-size: calc((32 / 428) * 100vw);
    line-height: 1.5;
    font-family: 'Marcellus', serif;
    font-weight: normal;
    margin: 2vh 0;
    line-height: 1.25;
    text-align: left;
}
.access-text h3{
    font-size: 18px;
    padding-bottom: 5px;
    line-height: 1.5;
    text-align: left;
}
.access-text p{
    font-size: 14px;
}
.access-venue {
    font-size: 20px!important;
    display: inline-block;
    border: solid 1px #999;
    padding: 0 10px;
    font-weight: bold;
    text-align: center;
    font-family: 'Marcellus', serif;
}
.access-text a{
    color: #000;
    transition: all .5s;
    text-decoration: none;
}
.access-text a:hover{
    color: #e6643b;
}
.access-hr {
    width:100%;
    margin-bottom: 4vh;
}
.access-sns {
    font-size: 22px!important;
    margin: 11px 0;
}
@media (min-width:768px) {
    .access-text h2 {
        font-size: calc((28 / 768) * 100vw);
    }
}
@media (min-width: 991px){
    #access .pc-fair {
        max-width: 70vw;
        justify-content: center;
        margin: 0 auto;
    }
    .access-text h2 {
        font-size: calc((28 / 991) * 100vw);
    }
    .access-flex01 {
        order: 2;
        width: 50%;
    }
    .access-flex02 {
        order: 1;
        width: 50%;
    }
    .pc-fair{
        display: flex;
        width: 100%;
        justify-content: center;
        column-gap: 8vw;
        margin-top: 8vh;
    }
    .pc-fair-one{
        width: 100%;
    }
}

/* Outline */
.information-text{
    font-family: Lato, "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    padding: 25px;
    text-align: center;
    opacity: 1;
}
.information-text h3{
    font-size: 18px;
    padding-bottom: 5px;
}
.information-text p , .information-text li{
    margin: 10px 0 18px 0;
    font-size: 14px;
}
.information-text ul{
    text-align: justify;
    list-style: disc;
    padding-left: 25px;
}
.information-text li{
    line-height: 1.3;
}
.headline {
  position: relative;
}
.headline:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  background-color: #e6643b;
  border-radius: 2px;
  height: 6px;
  transition: all 0.5s;
  transition-delay: 2s;
}

.headline.isActive:after {
  width: 100%;
}

@media screen and (min-width:768px){
    .information-text{
        padding: 70px;
    }
    .information-text ul{
        padding-left: 20px;
    }
}


/* 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;
    }

@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;
    }    
}

/*========== 汎用css ==========*/
.mt-6{
    margin-top: 6px;
}
.mt-18{
    margin-top: 18px;
}
.mt-32{
    margin-top: 32px;
}
.mt-6vh{
    margin-top: 6vh;
}
.mt-10vh{
    margin-top: 10vh;
}
.mt-14vh{
    margin-top: 14vh;
}
.mb-10{
    margin-bottom: 10px;
}
.mb-18{
    margin-bottom: 18px;
}
.mb-24{
    margin-bottom: 24px;
}
.mb-32{
    margin-bottom: 32px;
}
.mb-1vh{
    margin-bottom: 1vh;
}
.mb-3vh{
    margin-bottom: 3vh;
}
.mb-10vh{
    margin-bottom: 10vh;
}
.pt-12vh{
    padding-top: 12vh;
}
.pb-10vh {
    padding-bottom: 10vh;
}
.fs-10{
    font-size: 10px;
}
.fs-12{
    font-size: 12px;
}
.fs-18{
    font-size: 18px;
}
.fs-20{
    font-size: 20px;
}
.fw-b{
    font-weight: bold;
}
.ta-c{
    text-align: center !important; 
}

.mincho {
    font-family: "Times New Roman", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", serif;
}
.gothic {
    font-family: Lato, "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.gothic02 {
    font-family: Meiryo, sans-serif;
    letter-spacing: 3px;
}
.back-wh{
    background-color: #fff;    
}
.camp-kome {
    font-size: 12px!important;
    line-height: 1.5;
}


.sp_hid{ display: none; }
.pc_hid{ display: inline-block; }

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
 
 @media only screen and (min-width: 768px){}

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 990px) {
    .sp_hid{ display: block; }
    .pc_hid{ display: none; }
    .pc { display: none !important; }
    .sp { display: block !important; }
}