@charset "utf-8";/* ←これは文字コード */


/*基本設定★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★*/

/* 画面に隙間ができないようにするおまじない----------------- */
html, body { 
  margin: 0px;
  padding: 0px;
 }

/* サイト全体に係わる設定----------------- */
body {
    font-family: "Kiwi Maru", serif; /* フォントの指定 */
    font-size: 1em; /* フォントサイズの指定 */

    
    line-height:1.8em; /* 行間の指定 */
    background-color: #1d1e2e; /* 背景色の指定 */
    background-image: url(../back.png); /* 外側背景に表示させている画像 */


}

a{
    text-decoration: none; /* リンクの文字に下線を表示させない */
    color: #ffffff; /* リンクの文字には白色 */
}


.kiwi-maru-regular {
  font-family: "Kiwi Maru", serif;
  font-weight: 400;
  font-style: normal;
}



/*コンテンツ内の細々した設定★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★*/

/* 中央のコンテンツ表示部分の設定 ----------------------------*/
#container{ 
   
     
    margin: 0 auto; /* 上下の空きなし、左右中央に表示せよ */
    width: 100%; /* 横幅は画面いっぱいまで広げてくれ */
    max-width :430px; /* ただし、横幅の最大は430ピクセルな */
    background-image: url(back002.png); 
    text-align: center; /* この中にあるものは中央揃えで配置してくれ */
     /* 背景に表示させている画像 */

      background-repeat: repeat-y;   /* ★ 縦方向だけリピート */
    background-position: top center;
    background-size: 100% auto;

    overflow: hidden;
}
/* 画面上部のキービジュアル部分------------------------- */
#keyvisual{ 
    width: 100%; /* 横幅は左右いっぱい */
   
     
   
    background-size:cover; /* 縦横比キープしていっぱいに表示ね */
    background-position: center; /* 画像は中心から表示してね */
}

.top {
    width: 100%;
    height: auto;  /* 中身に合わせて高さ可変にしておくと便利 */
    
    display: flex;
    flex-direction: column;      /* ★ これを追加！縦並びになる */
    justify-content: center;     
    align-items: flex-end;       /* ★ 右寄せのまま */
    padding: 10px 15px 5px 15px; 
    box-sizing: border-box;
}

/* ハンバーガーメニュー＋文字の箱 */
.menu-box {
    display: flex;
    align-items: center;
    gap: 8px; /* ハンバーガーと文字の間の隙間 */
}

/* ハンバーガーメニュー -------------------------------- */
.hamburger {
    width: 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 18px;
}

.hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #333; /* 線の色 */
    border-radius: 2px;
}

/* menu の文字 */
.menu-text {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}






.firstview {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;

    /* ファーストビューらしく下の余白を調整 */
    padding-bottom: 150px;
}






/* ---------- ① キービジュアル画像箱 ---------- */
.kv-box {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.fv-item {
    position: relative;   /* ★ 重ねるために必須 */
    width: 90%;
    max-width: 380px;
    margin-top: 20px;

}

.fv-side-img {
   width: 70%;
    height: auto;
    display: block;
    border-radius: 12px;  
    transform: translateX(140px) rotate(-15deg) translatey(50px);
    
}


.kv-img {
    width: 100%;
    height: auto;        /* → 縦横比そのままの大きな画像 */
    display: block;
    border-radius: 8px;  /* 角丸にしたい場合だけ。このままでOK */
}

.fv-word-images {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.fv-word {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards;
}

/* 順番制御 */
.fv-word:nth-child(1) {
    animation-delay: 0.3s;
}
.fv-word:nth-child(2) {
    animation-delay: 0.9s;
}
.fv-word:nth-child(3) {
    animation-delay: 1.5s;
}
.fv-word:nth-child(4) {
    animation-delay: 2.1s;
}
.fv-word:nth-child(5) {
    animation-delay: 2.7s;
}
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.fv-word {
    position: absolute;
    width: 100px; /* まずは基準サイズ */
}
.fv-word:nth-child(1) {
    left: 1%;
    top: 400px;

    
}
.fv-word:nth-child(2) {
    left: 30%;
    top: 420px;
    
}
.fv-word:nth-child(3) {
    left: 25%;
    top: 530px;
    
}
.fv-word:nth-child(4) {
    left: 50%;
    top: 540px;
    
}
.fv-word:nth-child(5) {
    left: 75%;
    top: 520px;
    
}




.fv-content {
    width: 90%;
    max-width: 380px;
    margin-top: 20px;

    display: flex;
    align-items: center;
    gap: 15px;

    padding: 15px;
   
    border-radius: 10px;
}

.fv-text-box {
    
     position: absolute;   /* ★ 画像の上に乗せる */
    
    left: 0;
    top: 5px;
    bottom: 0;

    width: 100%;
    padding: 20px;

   
    box-sizing: border-box;
}



.fv-text {
    font-size: 28px;
    line-height: 0.7; 
    color: #5c2626;
    text-align: left;
    margin-bottom: 30px
    
}
.fv-text {
    opacity: 0;
    transform: translateY(10px);
}
.fv-text.is-show {
    animation: textFadeUp 0.6s ease-out forwards;
}

@keyframes textFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.fv-text:nth-child(1) { animation-delay: 3.0s; }
.fv-text:nth-child(2) { animation-delay: 4.0s; }
.fv-text:nth-child(3) { animation-delay: 5.0s; }
.fv-text:nth-child(4) { animation-delay: 6.0s; }
.fv-text:nth-child(5) { animation-delay: 7.0s; }

.fv-text:nth-child(6) { animation-delay: 9.0s; }
.fv-text:nth-child(7) { animation-delay: 10.0s; }
.fv-text:nth-child(8) { animation-delay: 11.0s; }
.fv-text:nth-child(9) { animation-delay: 12.0s; }



.fv-text.break {
    margin-bottom: 80px; /* ここだけ広く */
}


.fv-text + .fv-text {
    margin-top: 6px;
}


.fv-dashed-line {
    width: 90%;
    max-width: 380px;
    margin: 20px auto 0 auto;   /* 上に余白を取る */

    border-bottom: 2px dashed #333;
}


.btn btn-link {
    color: #85311a;
    transform: translateX(50px);
}


.text-section {
    width: 90%;
    max-width: 380px;
    margin: 40px auto 0 auto;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
    margin-bottom: 150px;
}



/* 題名 */
.section-title {
    font-size: 28px;
    font-weight: bold;
    margin: 20px 0 16px 0;
    color: #5c2626;
}

/* コミ出し */
.section-lead {
    font-size: 24px;
    font-weight: 500;
    margin: 50px 0 8px 0;
    color: #7b3f3f;
}

/* 本文 */
.section-body {
    font-size: 16px;
    line-height: 1.7;
    margin: 5px 0 0 0;
    color: #7b3f3f;
}
.section-img {
    
    max-width: 300px;
    margin: -10px auto -10px auto
}








.main-03{
  font-size: 20px;
}

.voice-section {
    margin: 100px 0;
}

.voice-list {
    display: flex;
    flex-direction: column;
    
}

.voice-img {
    width: 100%;
    max-width: 360px;
}

/* 左寄り */
.voice-img.left {
    align-self: flex-start;
}

/* 右寄り */
.voice-img.right {
    align-self: flex-end;
    margin-top: 60px;
    margin-bottom: 15px;
}
.shift-right{
  margin-left: 15px;
}
.shift-right-02{
  margin-left: 11px;
}
.shift-right-03{
  margin-left: 10px;
}
.shift-right-04{
  margin-left: 9px;
}





.image-anim {
  position: relative;
  width: 300px;   /* 任意 */
  height: 200px;  /* 任意 */
  margin-top: -140px;
  margin-left: 60px;
  margin-bottom: 50px;
}

.image-anim img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;

  opacity: 0;
  animation: frameAnim 1.8s infinite;
}



/* 表示タイミングをずらす */
.image-anim img:nth-child(1) {
  animation-delay: 0s;
}

.image-anim img:nth-child(2) {
  animation-delay: 0.6s;
}

.image-anim img:nth-child(3) {
  animation-delay: 1.2s;
}
@keyframes frameAnim {
  0%   { opacity: 1; }
  33%  { opacity: 1; }
  34%  { opacity: 0; }
  100% { opacity: 0; }
}


.carousel-caption h5 {
  margin-bottom: -75px; /* 下にずらす */
  color: #681111;
}



.product {
  max-width: 720px;
  margin: 80px auto;
  padding: 0 16px;
}

/* 見出し */
.product-title {
  font-size: 32px;   /* 一番大きい文字 */
  font-weight: bold;
  text-align: center;
  margin-bottom: 32px;
}

/* 商品画像 */
.product-image {
  display: block;
  margin: 0 auto 32px;
  max-width: 100%;
}

/* 商品説明 */
.product-text {
  text-align: left;
  font-size: 18px;
  line-height: -5px;
}

.product-text p {
  margin-bottom: 16px;
}


.purchase {
  text-align: center;
  margin: 80px 0 64px;
}

.purchase-link {
  display: inline-block;
  font-size: 18px;
  color: #681111;
  text-decoration: none;
  border-bottom: 1px solid #681111;
  
  
}

.purchase-link:hover {
  opacity: 0.6;
}




/* 見出し */
.company-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 24px;
  color: #681111;
}

/* リンクリスト */
.company-links {
  list-style: none;
  padding: 0;
  
  color: #321010;
}

.company-footer {
    background-image: url("backgrund001.png");
    background-size: cover;
    background-position: left top;
    padding: 80px 20px 60px;
}
.footer-inner {
    max-width: 600px;
    margin: 0 ;
    padding-left: 20px;
    padding-right: 20px;
    text-align: left;
}


.company-links a {
    text-decoration: underline;
    color: #681111;

}






.botton a{
    text-decoration: underline;
    color: #681111;
    position: relative;
    bottom: -75px;
    right: -80px;
    
}

.kv-image{
    max-width: 300px;
    position: relative;
    
    bottom: -60px;
    right: -60px;
    list-style: none;
    padding: 0;
}



.carousel-indicators button.active {
  background-color: #7e3535 !important;
}



.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1); /* 白↔黒反転 */
}


