@charset "utf-8";
/* CSS Document */
p {color: #555;}
p.car {font-family: cardo, serif;}

h1 {
    font-size: 2rem;
    line-height: 1.5em;
    /*font-style: oblique;*/
    letter-spacing: 0.04em;
    color: #555;
    font-family: cardo, serif;
}

.c_head1 {
        position: absolute;
        top: 171px;
        width: 100%;
        text-align: center;
        left: 0;
}

h1.c_head1 + p {
    font-size: 1.3rem;
    line-height: 1.5em !important;
    margin-top: 1.5em;
    color: #555;
    font-family: cardo, serif;
    letter-spacing: 0.04em;
    text-align: center;
}

h2 {
    font-size: 1.6rem;
    line-height: 1.5em;
    letter-spacing: 0.04em;
    color: #555;
    font-family: cardo, serif;
    border-bottom: 2px solid #c79a13;
    margin-top: 3em;
    margin-bottom: 2em;
    padding-bottom: 0.5em;
    text-align: left;
}

h2 span {
    font-size: 1.1rem;
}

h3 {
    font-size: 1.4rem;
    line-height: 1.5em;
    letter-spacing: 0.04em;
    color: #555;
    font-family: cardo, serif;
    margin-top: 1.5em;
    margin-bottom: 1.5em;
}
figure + h3 {
    margin-top: 3em;
}

/*.video_wrapper {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.video_wrapper > video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    min-width: 100%;
    min-height: 100%;
}

.video_wrapper {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.video_wrapper > video {
  position: absolute;
  inset: 0;           
  width: 100%;
  height: 100%;
  object-fit: cover; 
  object-position: center;
}*/

.video_wrapper {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.video_wrapper > video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  object-fit: cover; /* PCは迫力重視 */
}

.c_sec {
    margin-top: 50px;
    text-align: center;
}

[class^="btn_"] {
    display: flex;
    justify-content: space-between;
    width: 700px;
    margin: 50px auto 0;
}

[class^="btn_"] div:first-of-type {
    flex-basis: 30%;
}

[class^="btn_"] div:last-of-type {
    flex-basis: 65%;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px 0;
}

[class^="btn_"] div:last-of-type p {
    margin-bottom: 0;
    font-family: cardo, serif;
    font-size: 1.2rem;
}

[class^="btn_"] div:last-of-type p.tit {
    font-size: 1.5rem;
    line-height: 1.5em;
}


[class^="btn_"] img {
    width: 100%;
}


.bgBe {
    background: #dbc6af;
}

.bgRe {
    background: #802428;
}

.cWh {
    color: #fff;
}

a:hover {
    opacity: 0.7;
}

.c_slide2 .slide_inner li img {
    height:622px;
}

.txt_store {text-align: center;}

.img_main {
    margin-bottom: 70px;
}

.ul_item_4 {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 0 4%;
}

.ul_item_4 li {
    flex-basis: 22%;
}

.ul_item_4 li img {
    width: 100%;
}

.ul_item_4 li p {
    margin-top: 10px;
    font-family: cardo, serif;
}

.box_type_h3 {
    width: 650px;
    margin: 0 auto;
    text-align: left;
}

.box_type_h3_inner {
    width: 100%;
    border-top: 2px dashed #c79a13;
    padding: 50px 0;
}

.back_btn {
    display: block;
    padding: 20px 0;
    font-size: 1.2rem;
    line-height: 1em;
    background: #c79a13;
    font-family: cardo, serif;
    text-align: center;
    text-decoration: none;
    color: #fff;
    width: 600px;
    margin: auto;
}

.craftmanship p {
    font-family: cardo, serif;
    font-size: 1.2rem;
    line-height: 1.8em;
    color: #555;
}

/*image*/

.image-container {

}

.fade-image {
  opacity: 0;
  transform: translateY(0px);
  transition: opacity 2s ease, transform 2s ease;
}

.fade-image.visible {
  opacity: 1;
  transform: translateY(0);
}

.image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 1s ease-in-out;
}

.slideshow {
  position: relative;
  width: 1170px;
  height: 780px;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover; /* 画像を枠いっぱいに */
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.slide.active {
  opacity: 1;
}

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

h1 {
    font-size: 1.5rem;
}

.c_head1  {
    position: relative;
    top: auto;
}

h1.c_head1 + p {
    font-size: 1.0rem;
}

h2 {
    font-size: 1.4rem;
    margin-top: 1.5em;
} 

h3 {
    font-size: 1.2rem;
    margin-top: 1em !important;
    margin-bottom: 0.5em !important;
} 

/*.video_wrapper {
    width: 100%;
    height: auto;            ラッパーも動画に合わせて伸縮 
  }
  .video_wrapper > video {
    position: static;
    transform: none;
    width: 100%;
    height: auto;
    object-fit: contain;
  }*/
  
  .video_wrapper {
    width: 100%;   /* 横スクロール防止 */
    height: auto;  /* 高さは動画比率に合わせて可変 */
  }
  .video_wrapper > video {
    position: static;   /* 中央寄せ解除 */
    transform: none;
    width: 100%;        /* 横幅いっぱい */
    height: auto;       /* アスペクト比を保持 */
    object-fit: contain; /* 全体表示（黒帯出てもOK） */
  }
  
  .c_sec {
    text-align: left;
}

[class^="btn_"] {
    width: 100%;
    margin: 50px auto 0;
}

[class^="btn_"] div:last-of-type p {
    margin-bottom: 0;
    font-family: cardo, serif;
    font-size: 0.9rem;
}

[class^="btn_"] div:last-of-type p.tit {
    font-size: 1rem;
    line-height: 1.2em;
}

.c_slide2 .slide_inner li img {
    height:427px;
}

.txt_store {text-align: left;}

.ul_item_4 li {
    flex-basis: 48%;
}

.box_type_h3 {
    width: 100%;
}

.craftmanship p {
    font-size: 1.0rem;
    line-height: 1.8em;
}

.slideshow {
  position: relative;
  width: 600px;
  height: 400px;
  overflow: hidden;
}

}

.taL {
    text-align: left !important;
}

figure {width: 100%;}

a.store {
    font-weight: bold;
}