@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0); 
    }
}

:root {

  --vw: 1vw;

}

.vela-lp {

              position:relative;

              width: calc( var(--vw) * 100 );

              left:50%;

              transform: translate(-50%, 0%);

              -webkit-transform: translate(-50%, 0%);

              -ms-transform: translate(-50%, 0%);

              overflow: hidden;

}

.vela-lp {
    background-color: #fdf8f5;
    color: #1c2743;
    font-family: "Noto Sans JP", sans-serif;
}

.pagetop {
  /* 画面の右下に固定 */
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 9999;
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #1c2743;
  /* ホバー時のスムーズな変化 */
  transition: all 0.3s ease;
}

.pagetop:hover {
  background-color: #313f61;
  transform: translateY(-5px); /* ホバー時に少し持ち上げる */
}

.pagetop__arrow {
  /* CSSで上向きの矢印（三角形）を描画 */
  position: absolute;
  top: 55%;
  left: 50%;
  width: 12px;
  height: 12px;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mv {
    width: 100%;
    height: 100%;
    padding: 20% 0;
    display: flex;
    background: url("https://www.pellemorbida.com/lp/2026/20260722vela/0722mainbanner.jpg") no-repeat center /cover;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1.0s ease-in forwards;
    margin-top: 2%;
}

.about h1 {
    color: #1c2743;
    text-decoration: none;
    font-size: 40px;
    font-weight: 300;
    font-family: "Sorts Mill Goudy", "Noto Sans JP", sans-serif;
    letter-spacing: 3px;
    animation: slideInUp 1.2s ease-in forwards;
    text-align: center;
    border-bottom: 2px solid #1c2743;
    margin: 3% 5%;
}

.about h4 {
    width: 85%;
    max-width: 100%;
    text-align: center;
    margin: auto ;
    padding: auto;
    font-size: 85%;
}

.category-title h1 {
    color: #1c2743;
    text-decoration: none;
    font-size: 40px;
    font-weight: 300;
    font-family: "Sorts Mill Goudy", "Noto Sans JP", sans-serif;
    letter-spacing: 3px;
    animation: slideInUp 1.2s ease-in forwards;
    text-align: center;
    border-bottom: 2px solid #1c2743;
    margin: 3% 5%;
}

.title h1 {
    color: #fff;
    text-decoration: none;
    text-align: center;
    font-size: 50px;
    font-weight: 300;
    font-family: "Sorts Mill Goudy", "Noto Sans JP", sans-serif;
    border-bottom: 2px solid transparent;
    letter-spacing: 3px;
    margin-top: 4%;
}

.title h2 {
    color:#fff ;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-size: 75%; 
    font-weight: 400;
    letter-spacing: 3px;
    margin-top: 0.5%;
    animation: slideInUp 1.5s ease-in forwards;
}



.nav h4 {
    width: 85%;
    max-width: 100%;
    text-align: justify;
    margin: auto ;
    padding: auto;
    font-size: 85%;
}

.category1 ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 10%;   
    padding-left: 10%;
}

.category2 ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 10%;
    padding-right: 10%;
}

.select-area ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 90px;   
    padding: 0 5%;
}


.detail-btn {
    color: #fff !important;
    background-color: #1c2743;
    text-decoration: none;
    font-size: 80%;
    font-weight: 300;
    font-family: "Sorts Mill Goudy", "Noto Sans JP", sans-serif;
    line-height: 20px;
    letter-spacing: 1px;
    transition: all 0.3s ease;

    display: block;
    width: 300px;
    margin: 10px auto;
    padding: 20px 20px;
    cursor: pointer;
    text-align: center;

}

.detail-btn:hover {
    background-color: #313f61;
    color: #fff;
}

.shouhin-btn {
    color:#1c2743 ;
    border:1px solid #1c2743;
    text-decoration: none;
    font-size: 15px;
    font-weight: 300;
    font-family: "Sorts Mill Goudy", "Noto Sans JP", sans-serif;
    line-height: 20px;
    letter-spacing: 1px;
    transition: all 0.3s ease;

    display: block;
    width: 300px;
    margin: 15px auto;
    padding: 10px 10px;
    cursor: pointer;
    text-align: center;
}

.shouhin-btn:hover {
    background-color: #313f61;
    color: #fff;
}

.category-btn {
    position: relative; /* ::after の基準にするため追加 */
    width: 100%;
    box-sizing: border-box;
    text-decoration: none;
    font-size: 120%;
    font-weight: 300;
    font-family: "Sorts Mill Goudy", "Noto Sans JP", sans-serif;
    letter-spacing: 1px;
    padding: 0 5%;
    display: block;
    cursor: pointer;
    text-align: center;
    color: #1c2743;
    margin: 20px auto;
    transition: color 0.3s ease; /* 文字色だけここでtransition */
}

.category-btn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #313f61;
    transform: scaleX(0);
    transform-origin: center; /* 中心から左右に広がる */
    transition: transform 0.3s ease;
}

.category-btn:hover {
    color: #313f61;
}

.category-btn:hover::after {
    transform: scaleX(1);
}

.movie {
    background-color: #000;
    width: 80%;
    max-width: 750px;
    margin: 40px auto;
    padding: 0px 100px ;
    box-sizing: border-box;
    border-radius: 10px;
}

.movie video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    text-align: center;
}

.scroll-block {
    transform: translateY(100px);
    transition: all 1.5s;
    opacity: 0;
    
}

.blockIn {
    transform: translateY(0px);
    opacity: 1;
}

.select-area {
    margin: 40px auto;
    display: flex;
    align-items: center;
    height: 100px;
    padding: 0 ;
    box-sizing: border-box;
    border-bottom: 2px solid #1c2743;
    border-top: 2px solid #1c2743;

}

.select-area ul {
    display: flex;
    justify-content: center;
    gap: 70px;
    width: 100%;
    padding: 0 50px;
    margin: 0;
    list-style: none;

}

.select-btn {
    color: #1c2743;
    text-decoration: none;
    font-size: 20px;
    font-weight: 300;
    font-family: "Sorts Mill Goudy", "Noto Sans JP", sans-serif;
    line-height: 20px;
    letter-spacing: 3px;
    cursor: pointer;
}

/* ボタンの中のリンク（aタグ）の見た目を整える */
.select-btn a {
    color: #1c2743;            /* 文字色を白にする */
    text-decoration: none;  /* 下線を消す */
    display: block;         /* ボタンのエリア全体をクリックできるようにする */
}

.select-btn:hover {
    
    color: #313f61;
}

/* ホバーしたときの色の変化もaタグに対してかける */
.select-btn a:hover {
    color: #a0aec0;         /* ホバー時の色 */
}

.picture {
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

.picture img {
    width: 100%;
    max-width: 2000px;
    height: auto;
    display: block;
}

.picture2 {
    width: 100%;
    margin: 0;
    box-sizing: border-box;
}

.picture2 img {
    width: 100%;
    display: block;
}

.shousai {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 2% 5%;
}

/* 左側の画像ブロック（全体の2の割合） */
.shousai .scroll-block:nth-child(1) {
    flex: 2; 
    min-width: 0; /* flexアイテムの縮みによる崩れを防ぐ魔法のコード */
}

/* 右側のテキストブロック（全体の1の割合） */
.shousai .scroll-block:nth-child(2) {
    flex: 1;
    min-width: 0;
    display: flex;
}

.shousai2 {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 5% 5%;
}

/* 左側の画像ブロック（全体の2の割合） */
.shousai2 .scroll-block:nth-child(1) {
    flex: 1; 
    min-width: 0; /* flexアイテムの縮みによる崩れを防ぐ魔法のコード */
    display: flex;
}

/* 右側のテキストブロック（全体の1の割合） */
.shousai2 .scroll-block:nth-child(2) {
    flex: 2;
    min-width: 0;
}

.nav {
    width: 100%;
    height: 100%;
    background-color: #ffffff65;
    color: #1c2743;
    padding: 30px; 
    box-sizing: border-box;

    justify-content:center ;
}

.nav h1{
    color: #1c2743;
    text-decoration: none;
    text-align: center;
    font-size: 40px;
    font-weight: 300;
    font-family: "Sorts Mill Goudy", "Noto Sans JP", sans-serif;
    letter-spacing: 3px;
    margin-top: 4%;
    border-bottom: 1px solid #1c2743;
}
.category {
    display: flex;
    align-items: center;
    gap: 5%;
}

html {
  scroll-behavior: smooth;
}

/* ===================================================
   スマホ表示（画面幅767px以下）の時のスタイル
   =================================================== */
@media screen and (max-width: 767px) {
  
  /* スマホの時だけ適用したいデザインをここに書きます */

.mv {
    padding: 5% 0;
    height: 600px;
    background: url("https://www.pellemorbida.com/lp/2026/20260722vela/mainbanner_tate.jpg") no-repeat center /cover;
    background-size: contain; /* 画像全体を表示 */
    align-items: center;
}

h1 {
    color: #1c2743;
    text-decoration: none;
    font-size: 30%;
    font-weight: 300;
    font-family: "Sorts Mill Goudy", "Noto Sans JP", sans-serif;
    letter-spacing: 3px;
    animation: slideInUp 1.2s ease-in forwards;
    text-align: center;
    border-bottom: 2px solid #1c2743;
    margin: 3% 5%;
}

h3 {
    color: #1c2743;
    text-align: center;
    max-width: 900px;
    margin: 20px auto;
    font-size: 15px
}

.movie {
    width: 100%;
}

.detail-btn {
    background-color: #1c2743;
    text-decoration: none;
    font-size: 70%;
    font-weight: 300;
    font-family: "Sorts Mill Goudy", "Noto Sans JP", sans-serif;
    line-height: 20px;
    letter-spacing: 1px;
    transition: all 0.3s ease;

    display: block;
    width: 200px;
    margin: 10px auto;
    padding: 20px 20px;
    cursor: pointer;
    text-align: center;

    color: #fff;

}

.detail-btn:hover {
    background-color: #313f61;
    color: #fff;
}

.select-area {
    width: 100%;
    margin: 25px auto;
    height: auto;
    padding: 20px 0 ;
    border-bottom: 1px solid #1c2743;
    border-top: 1px solid #1c2743;

}

.select-area ul {
    gap: 20px;
    width: 100%;
    padding: 0;
    margin: 0;
}

.select-btn {
    white-space: nowrap;
    font-size: 15px;
    font-weight: 300;
    line-height: 15px;
    letter-spacing: 1px;
}

.shousai {
    flex-direction: column;
}

.shousai2 {
    flex-direction: column-reverse;
}

.nav h1{
    font-size: 30px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-top: 4%;
    border-bottom: 1px solid #1c2743;
}
.category {
    font-size: 5px;
    margin: 10%;
    display: initial;
    align-items: center;
    gap: initial;
    margin: 0 10%;
    padding: 0 10%;
}

.category-btn {
    font-size: 18px;

}

ul {
    gap: 35px;
}
.about h4 {
    margin: 5% 10%;
    padding-right: 4%;
    text-align: justify;
}

.nav h4 {
    width: 85%;
    font-size: 13px;
}

.shouhin-btn {
    font-size: 70%;
    width: 83%;
    margin: 15px auto;
    padding: 10px 10px;
}

.category1 ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 10%;
    padding-left: initial;
    padding: 0 10%;
}

.category2 ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 10%;
    padding-right: initial;
    padding: 0 10%;
}

.category-title {
    font-size: 30%;
}

.fs-l-main {
    margin-top: initial !important;
}
}