@charset "utf-8";

/*___________スマホ用CSS_____________*/
@media screen and (max-width: 767px) {
  /*ウィンドウ幅が最大767pxまでの場合に適用*/

  html {
    box-sizing: border-box;
    height: 100%;
    -webkit-text-size-adjust: 100%; /* iOSの勝手な文字拡大を抑える */
    text-size-adjust: 100%;
  }

  *,
  *::before,
  *::after {
    box-sizing: inherit;
  }

  body {
    min-height: 100%;
    margin: 0; /* ブラウザ標準の余白事故を消す */
    overflow-x: clip;
    background-color: #fff;
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    font-style: normal;
    line-height: 2em;
    color: #4b4242;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.8;
  }

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

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

  .pc_view {
    display: none;
  }
  .sp_view {
    display: block;
  }

  img {
    vertical-align: bottom;
    height: auto;
  }

  a img {
    -webkit-transition: 0.8s;
    -moz-transition: 0.8s;
    -o-transition: 0.8s;
    -ms-transition: 0.8s;
    transition: 0.8s;
  }

  a img:hover {
    opacity: 0.6;
    filter: alpha(opacity=60);
    -moz-opacity: 0.6;
  }

  /*FV*/
  #fv {
    width: 100%;
    height: 110vh;
    overflow: hidden;
    background: #fff;
    position: relative;

    /* 画像の“表示枠(fv__stage)”を中央に置くため */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .fv__stage {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  .fv__img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 上下余白NGを守る */
    object-position: center;
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0;
    animation: fvFadeIn 2s ease-out forwards;
  }

  /* ロゴと流れるテキストを少し遅らせて表示 */
  #fv .fv__logo,
  #fv .fv__flow {
    opacity: 0;
    animation: fadeIn 0.9s ease-out forwards;
    animation-delay: 1.2s; /* メインビジュアルより少し遅らせる */
  }

  /*ハンバーガーメニュー*/
  nav.NavMenu {
    position: fixed; /*表示位置を固定*/
    z-index: 5; /*重ね順を変更*/
    top: 0; /*表示位置を指定*/
    right: 0; /*表示位置を指定*/
    background: #fff; /*背景を白にする*/
    color: #000; /*文字色を黒にする*/
    text-align: center; /*テキストを中央揃え*/
    width: 36%; /*全幅表示*/
    height: 100vh;
    transform: translateX(100%); /*ナビを上に隠す*/
    transition: all 0.6s; /*アニメーションの時間を指定*/
  }
  nav.NavMenu ul {
    background: #fff;
    width: 100%;
    margin: 0 auto;
    padding: 80px 22px 0;
  }

  nav.NavMenu ul li {
    font-size: 1em;
    list-style-type: none;
    padding: 0;
    width: 100%;
    text-align: right;
  }

  nav.NavMenu ul li a {
    display: block; /*クリックできる領域を広げる*/
    color: #555;
    padding: 0.5em 0;
    text-decoration: none;
  }
  nav.NavMenu ul li a img {
    height: 11px;
  }
  nav.NavMenu.active {
    transform: translateY(0%); /*ナビを表示する*/
  }

  .Toggle {
    display: block;
    position: fixed; /* bodyに対しての絶対位置指定 */
    right: 13px;
    top: 7px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    z-index: 10;
  }

  .Toggle span {
    display: block;
    position: absolute;
    width: 30px;
    border-bottom: solid 1px #000;
    -webkit-transition: 0.35s ease-in-out; /*変化の速度を指定*/
    -moz-transition: 0.35s ease-in-out; /*変化の速度を指定*/
    transition: 0.35s ease-in-out; /*変化の速度を指定*/
    left: 6px;
  }

  .Toggle span:nth-child(1) {
    top: 9px;
  }

  .Toggle span:nth-child(2) {
    top: 18px;
  }

  .Toggle span:nth-child(3) {
    top: 27px;
  }

  /* 最初のspanをマイナス45度に */
  .Toggle.active span:nth-child(1) {
    top: 18px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  /* 2番目透過 */
  .Toggle.active span:nth-child(2) {
    opacity: 0;
    border-color: #0c743f;
  }
  /* 3番目のspanを45度に */
  .Toggle.active span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  /* =============================
   FV flowing title animation
   ============================= */
  .fv__flow {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    display: flex;
    pointer-events: none;
    z-index: 2;
    height: 24vh;
    align-items: center;
  }

  .fv__flow-inner {
    display: flex;
    width: max-content;
  }

  .fv__flow-inner img {
    height: 24vh;
    width: auto;
    display: block;
    flex-shrink: 0;
  }

  /* 上段（左へ流れる） */
  .fv__flow--left {
    top: 2.5%;
  }

  /* 下段（右へ流れる） */
  .fv__flow--right {
    bottom: 7%;
  }

  .fv__flow--left .fv__flow-inner {
    animation: flow-left 40s linear infinite;
  }

  .fv__flow--right .fv__flow-inner {
    animation: flow-right 45s linear infinite;
  }

  @keyframes flow-left {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-50%);
    }
  }

  @keyframes flow-right {
    from {
      transform: translateX(-50%);
    }
    to {
      transform: translateX(0);
    }
  }

  #fv .fv__logo {
    position: absolute;
    top: 3.846vw;
    left: 5.128vw;
    z-index: 50;
  }
  #fv .fv__logo img {
    width: 100%;
    max-width: 60vw;
    height: auto;
    display: block;
  }

  #fv .navi {
    position: absolute;
    right: 5.128vw;
    top: 23%;
    z-index: 3;
  }
  #fv .navi li {
    list-style: none;
    text-align: right;
    height: 3.077vw;
    margin-bottom: 6.667vw;
  }
  #fv .navi li img {
    height: 3.077vw;
  }

  #aisatu {
    width: 90%;
    max-width: 384.615vw;
    overflow: hidden;
    background: #fff;
    position: relative;
    text-align: right;
    margin: 40px auto 120px;
  }
  #aisatu .sign {
    width: 100%;
  }
  #content_wrapper {
    width: 90%;
    max-width: 302.564vw;
    margin: 0 auto;
  }
  .login_wrapper {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: space-between; /*左右寄せ*/
    flex-wrap: nowrap;
  }
  .login_wrapper .funclub_midashi {
    width: 36%;
  }
  .login_wrapper .funclub_midashi img {
    width: 100%;
  }
  .login {
    width: 47%;
    height: 21vw;
    display: flex;
    list-style: none;
    margin-top: 0;
  }
  .login li:first-child {
    width: 49%;
    text-align: left;
    border-right: 2px solid #666;
  }
  .login li:last-child {
    width: 57.5%;
    text-align: right;
  }
  .login li:first-child img {
    width: 63%;
    margin-top: 8vw;
  }

  .login li:last-child img {
    width: 69%;
    margin-top: 8vw;
  }

  @keyframes fvFadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  /*news*/
  .news_wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 20vw;
    margin-bottom: 30.769vw;
  }
  .news_wrapper .news_list {
    width: 100%;
  }
  .news_wrapper .news_list li {
    width: 100%;
    list-style: none;
    border-bottom: 1px solid #666;
    margin-bottom: 5vw;
    padding-bottom: 0.769vw;
    display: flex;
  }
  .news_wrapper .news_list li .date {
position:relative;
    top:-2px;
    width: 27vw;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 3vw;
    white-space: nowrap;
  }
  .news_wrapper .news_list li .title {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 3vw;


    /* 省略表示（…） */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .news_wrapper .news_midashi {
    width: 40.25%;
    margin-bottom: 30px;
  }
  .news_wrapper .news_midashi img {
    width: 100%;
    margin-top: 12vw;
  }
  .news_wrapper .viewmore {
    width: 100%;
    text-align: right;
  }
  .news_wrapper .viewmore img {
    width: 30vw;
  }

  /*footer*/
  footer {
    position: relative;
    width: 100%;
    margin: 0;
    height: 77vw;
    overflow: hidden;
    padding-top: 7%;
    background-color: #fff;
  }
  footer .sns {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 33vw;
    margin-left: 33.5%;
  }
  footer .sns li {
    width: 28%;
    list-style: none;
  }
  footer .sns li img {
    width: 100%;
  }
  footer .bottom_logo {
    position: relative;
    top: auto;
    right: auto;
    margin-top: 10%;
    margin-left: 10%;
    width: 80%;
  }
  footer .bottom_menu {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    display: block;
    justify-content: space-between;
    flex-wrap: nowrap;
    list-style: none;
    font-size: 3vw;
    width: 100%;
    margin: 6% 0;
    text-align: center;
  }
  footer .bottom_menu a {
    text-decoration: none;
    color: #000;
  }
  footer .bottom_menu a:hover {
    opacity: 0.7;
  }
  footer .copyright {
    position: absolute;
    left: 0;
    bottom: 3vw;
    font-size: 3.077vw;
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }
  footer.nobg {
    background: none;
  }
  /*下層*/

  #lower_fv {
    width: 100%;
    height: 153.846vw;
    overflow: hidden;
    position: relative;
  }

  .lower_img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 上下余白NGを守る */
    object-position: top center;
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0;
    animation: fvFadeIn 2s ease-out forwards;
  }

  #lower_fv .navi {
    position: fixed;
    right: 5.128vw;
    top: 38.462vw;
    z-index: 3;
  }
  #lower_fv .navi li {
    list-style: none;
    text-align: right;
    height: 3.077vw;
    margin-bottom: 6.667vw;
  }
  #lower_fv .navi li img {
    height: 3.077vw;
  }
  #lower_fv .fv__logo {
    position: absolute;
    top: 3.846vw;
    left: 5.128vw;
    z-index: 50;
  }
  #lower_fv .fv__logo img {
    width: 100%;
    max-width: 60vw;
    height: auto;
    display: block;
  }

  .lower_midashi {
    margin-top: 30vw;
    margin-bottom: 26vw;
    text-align: center;
  }
  .lower_midashi img {
    width: 35.59%;
  }
  #lower_content_wrapper {
    width: 90%;
    max-width: none;
    margin: 0 auto 100px;
  }

  /*news一覧ページ*/

  .lower_news_wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    margin-bottom: 3vw;
  }
  .lower_news_wrapper .news_list {
    width: 100%;
  }
  .lower_news_wrapper .news_list li {
    width: 100%;
    list-style: none;
    border-bottom: 1px solid #666;
    margin-bottom: 5vw;
    padding-bottom: 0.769vw;
    display: flex;
  }
  .lower_news_wrapper .news_list li .date {
position:relative;
    top:-2px;
    width: 27vw;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 3vw;
    white-space: nowrap;
  }
  .lower_news_wrapper .news_list li .title {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 3vw;
    /* 省略表示（…） */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }




  /*ページャー*/
  .news_pager {
    width: 100%;
    display: flex;
    justify-content: center; /* 左右中央 */
    margin: 0 auto;
  }
  .news_pager .pager__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3.59vw; /* 丸同士の間隔 */
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .news_pager .pager__link {
    width: 9.744vw;
    height: 9.744vw;
    border-radius: 256.154vw;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-size: 3.59vw;
    line-height: 1;
    text-decoration: none;

    border: 1px solid #cfcfcf;
    color: #111;
    /*background: #fff;*/
  }

  .news_pager .pager__link.is-current {
    background: #2b2b2b;
    border-color: #2b2b2b;
    color: #fff;
  }

  .news_pager .pager__link.is-dots {
    border-color: #cfcfcf;
    color: #111;
    pointer-events: none;
  }

  .news_pager .pager__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #111;
    font-size: 4.615vw;
    line-height: 1;
    padding: 0 0.513vw;
  }

  .news_pager .pager__arrow:hover,
  .news_pager .pager__link:hover {
    opacity: 0.7;
  }

  /*news詳細ページ*/
  #lower_fv.news_detail {
    width: 100%;
    height: 70vw;
    overflow: hidden;
    position: relative;
  }

  body.news_detail {
    position: relative;
    background: none; /* 直指定は消す */
  }

  body.news_detail::before {
    content: "";
    position: fixed; /* スクロールしても固定 */
    inset: 0;
    background-image: url(../img/lower_fv_zoom.jpg);
    background-size: cover;
    background-position: 62% top;
    background-repeat: no-repeat;
    opacity: 0.25; /* ← ここで透過調整 */
    z-index: -1; /* コンテンツの背面 */
  }
  #lower_fv .navi.top_right {
    position: fixed;
    top: 3.846vw;
  }
  #lower_fv .fv_lower_midashi {
    max-width: none;
    width: 90%;
    margin: 0 auto;
    text-align: left;
    margin-top: 33vw;
  }
  #lower_fv .fv_lower_midashi img {
    width: 36%;
  }
  .lower_news_detail_wrapper {
    margin-bottom: 7.692vw;
  }
  .lower_news_detail_wrapper .news_midashi_wrap {
    display: flex;
    justify-content: space-between; /*左右寄せ*/
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .lower_news_detail_wrapper .news_midashi_wrap .news_midashi {
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    font-size: 5.641vw;
    letter-spacing: 0.03em;
    line-height: 1.5;
    width: 100%;
  }
  .lower_news_detail_wrapper .news_midashi_wrap .news_date {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 4.103vw;
    text-align: left;
    width: 100%;
  }
  .lower_news_detail_wrapper .news_honbun {
    font-family: "Noto Serif JP", serif;
    font-weight: 700;
    font-size: 4.103vw;
    letter-spacing: 0.03em;
    line-height: 1.9em;
    margin: 8vw 0 0 0;
  }
  .lower_news_detail_wrapper .news_honbun p {
    margin-bottom: 1.5em;
  }
  .lower_news_detail_wrapper .news_detail_pager {
    position: relative;
    top: 8vw;
    display: flex;
    justify-content: space-between; /*左右寄せ*/
    flex-wrap: wrap;
    list-style: none;
    border-top: 1px solid #000;
    margin: 7.692vw 0 0 0;
    padding: 3vw 0 0 0;
    font-size: 3.6vw;
    font-weight: 500;
    letter-spacing: 0.1em;
  }
  .lower_news_detail_wrapper .news_detail_pager a {
    text-decoration: none;
  }

  /*ショップ一覧*/
  body.shop_list {
    background-color: #f7f8f8;
  }
  .lower_shop_wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 8vw;
    width: 100%;
  }

  .lower_shop_wrapper li {
    width: 48%;
    list-style: none;
    margin: 0 0 9vw;
  }
  .lower_shop_wrapper::after {
    content: "";
    width: 48%;
  }
  .lower_shop_wrapper .product_image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
  }
  .lower_shop_wrapper .product_image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
  }
  .lower_shop_wrapper .product_name {
    font-size: 3vw;
    line-height: 1.7em;
    margin-top: 4vw;
  }
  .lower_shop_wrapper .product_price {
    font-size: 4.4vw;
    font-weight: 600;
    line-height: 1.7em;
    margin-top: 1vw;
  }
  .lower_shop_wrapper .product_price span {
    font-size: 3vw;
    font-weight: 600;
    line-height: 1.7em;
    margin-top: 2.051vw;
    margin-left: 3px;
  }
  .lower_shop_wrapper a.detail_btn {
    display: block;
    height: 10vw;
    width: 100%;
    margin: 8px 0 0;
    border-radius: 8.974vw;
    border: 1px solid #4d4d4d;
    background-color: #fff;
    line-height: 10vw;
    text-decoration: none;
    text-align: center;
    font-size: 4vw;
    color: #000;
  }
  .lower_shop_wrapper a.detail_btn:hover {
    opacity: 0.7;
  }

  /*ショップ詳細*/

  /*shop detail*/
  #shop_detail_wrapp {
    width: 100%;
    margin-bottom: 7.692vw;
  }
  .shop_detail_photo {
    overflow: hidden;
    position: relative;
    float: none;
    width: 100%;
    /*aspect-ratio: 1 / 1;*/
    /*background-color:#E5E5E5;*/
    margin-bottom: 20px;
  }

  .shop_detail_photo img {
    width: 100%;
    height: auto;
  }
  #shop_detail_left {
    overflow: hidden;
    position: relative;
    float: none;
    width: 100%;
    text-align: left;
  }
  .shop_detail_title {
    text-align: left;
    width: 100%;
    font-size: 5vw;
    margin-bottom: 2.564vw;
    line-height: 1.6em;
    font-weight: 700;
  }
  .shop_detail_price {
    text-align: left;
    width: 100%;
    font-size: 150%;
    margin-bottom: 5%;
  }
  .shop_detail_price span {
    font-size: 70%;
  }
  .shop_detail_txt {
    text-align: left;
    font-size: 4.359vw;
    line-height: 1.8em;
    margin-bottom: 10%;
    color: #000;
    letter-spacing: 0.1em;
  }
  #cart_option_wrapp {
    width: 100%;
    text-align: left;
    margin-bottom: 3.5%;
  }
  #cart_option_wrapp .cart_qty {
    background-color: #eee;
    width: 12.821vw;
    padding: 1.282vw;
    margin-right: 5.128vw;
    text-align: center;
  }
  #cart_option_wrapp .cart_pcode {
    background-color: #eee;
    width: 12.821vw;
    padding: 1.282vw;
    margin-right: 5.128vw;
    text-align: center;
  }
  .submit_btn {
    background-color: #fff;
    border: 1px solid #4d4d4d;
    width: 100%;
    height: 12vw;
    line-height: 12vw;
    text-align: center;
    border-radius: 20.513vw;
    color: #000;
  }
  .submit_btn:hover {
    background-color: #eee;
  }
  .shop_back_btn {
    float: left;
    width: 100%;
    text-align: center;
    margin: 5% auto 0;
  }
  .shop_back_btn img {
    width: 17.949vw;
  }
  /*商品スライダー*/

  .slick02 {
    margin-bottom: 0.256vw;
  }

  .thumbnail {
    margin-top: 5.128vw;
  }

  /* slickの枠は左寄せで詰める */
  .thumbnail .slick-list {
    overflow: hidden;
    padding: 0 !important;
  }

  .thumbnail .slick-track {
    margin-left: 0 !important; /* 左寄せ */
    display: flex !important; /* 1列固定（折り返し防止） */
  }

  /* サムネ間隔 */
  .thumbnail .slick-slide {
    float: none !important; /* floatレイアウトを無効化して折り返しを防ぐ */
    height: auto;
    margin-right: 5.128vw;
  }

  .thumbnail .slick-slide:last-child {
    margin-right: 0;
  }

  .thumbnail-img {
    margin: 0; /* 余計な余白を消す */
  }

  .thumbnail-img img {
    display: block;
    width: 100%;
    height: auto;
  }

  .slick-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .shop_detail_pager {
    clear: both;
    display: block;
    position: relative;
    top: 8vw;
    margin: 7.692vw 0 0 0;
    padding: 3vw 0 0 0;
    font-size: 3.6vw;
    font-weight: 500;
    letter-spacing: 0.1em;
    width: 100%;
    text-align: center;
  }
  .shop_detail_pager a {
    text-decoration: none;
  }

  /*dairy一覧ぺージ*/
  body.dairy_list {
    position: relative;
    background: #fef7f6;
  }
  #lower_fv .fv_dialy_midashi {
    max-width: none;
    width: 90%;
    margin: 0 auto;
    text-align: center;
    margin-top: 33vw;
  }
  #lower_fv .fv_dialy_midashi img {
    width: 39%;
  }
  .lower_news_detail_wrapper .dairy_list {
    width: 100%;
    margin-bottom: 15.385vw;
  }
  .dairy_list li.border_bottom {
    display: flex;
    justify-content: space-between; /*左右寄せ*/
    flex-wrap: wrap;
    align-items: flex-start;
    border-bottom: 1px solid #595757;
    margin-bottom: 5.128vw;
    padding-bottom: 5.128vw;
  }
  .dairy_list li .dialy_image {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    margin: 5vw 0;
  }
  .dairy_list li .dialy_image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
  }
  .dairy_list li .dialy_txt_right {
    width: 100%;
    color: #333;
    margin-bottom: 5vw;
  }
  .dairy_list li .dialy_txt_right .dialy_date {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 4vw;
    text-align: left;
    line-height: 1em;
  }
  .dairy_list li .dialy_txt_right .dialy_title {
    font-size: 5vw;
    font-weight: 500;
    line-height: 1.6em;
    margin: 1.795vw 0 0 0;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* 約30文字 */
    overflow: hidden;
  }
  .dairy_list li .dialy_txt_right .dialy_overview {
    font-size: 4vw;
    font-weight: 500;
    line-height: 1.8em;
    margin: 3.59vw 0 3vw;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3; /* 約150文字 */
    overflow: hidden;
  }
  .dairy_list li .dialy_txt_right a.viewmore img {
    width: 30.769vw;
    float: right;
    margin-top: 4.615vw;
  }

  /*dairy詳細ぺージ*/

  /*ビデオ一覧*/
  body.video_list {
    background-color: #f9f5ef;
  }

  #lower_content_wrapper .video_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 3.75%; /* (100 - 30.5*3) / 2 */
    margin-bottom: 5vw;
  }
  #lower_content_wrapper .video_list li {
    width: 48%;
    list-style: none;
    margin-bottom: 10.256vw;
  }
  #lower_content_wrapper .video_list li .video_image {
    width: 100%;
    aspect-ratio: 597 / 392;
  }
  #lower_content_wrapper .video_list li .video_image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
  }
  #lower_content_wrapper .video_list li .date {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 3vw;
    line-height: 2.5em;
  }
  #lower_content_wrapper .video_list li .title {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 4vw;
    line-height: 1.6em;
  }
  /*ビデオ詳細*/
  .lower_video_detail_wrapper {
    margin-bottom: 7.692vw;
  }
  .lower_video_detail_wrapper .video_midashi {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 4vw;
    line-height: 1.6em;
    margin-bottom: 10.256vw;
  }
  .lower_video_detail_wrapper .video_detail_pager {
    position: relative;
    top: 8vw;
    margin: 0;
    padding: 0;
    font-size: 4vw;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-align: center;
  }
  .lower_video_detail_wrapper .video_detail_pager a {
    text-decoration: none;
  }
  .lower_video_detail_wrapper .video {
    width: 100%;
  }
  .lower_video_detail_wrapper .video iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    display: block;
  }

  /*FUN CLUB*/
  .lower_img.fc {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 上下余白NGを守る */
    object-position: 75% top;
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0;
    animation: fvFadeIn 2s ease-out forwards;
  }

  #lower_fc_content_wrapper {
    width: 90%;
    max-width: none;
    margin: 0 auto 80px;
  }
  #lower_fc_content_wrapper .lower_fc_midashi {
    display: flex;
    justify-content: space-between; /*左右寄せ*/
    flex-wrap: wrap;
    align-items: center;
    margin-top: 33vw;
    margin-bottom: 10vw;
  }
  #lower_fc_content_wrapper .lower_fc_midashi .midashi {
    width: 100%;
  }
  #lower_fc_content_wrapper .lower_fc_midashi .midashi img {
    width: 45%;
  }
  #lower_fc_content_wrapper .lower_fc_midashi .midashi_right {
    width: 100%;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 4vw;
    line-height: 1.8em;
    margin: 7vw 0 10vw;
  }
  #lower_fc_content_wrapper .btn_wrap {
    display: flex;
    justify-content: space-between;
    list-style: none;
    align-items: center;
    vertical-align: top;
    margin: 6.154vw 0 0 0;
  }
  #lower_fc_content_wrapper .btn_wrap .join {
    display: block;
    width: 48%;
    height: 29.487vw;
    margin: 0;
  }
  #lower_fc_content_wrapper .btn_wrap .login {
    display: block;
    width: 48%;
    height: 29.487vw;
    margin: 0;
  }
  #lower_fc_content_wrapper .btn_wrap .join img,
  #lower_fc_content_wrapper .btn_wrap .login img {
    width: 100%;
  }
  /*メンバーカード*/
  #member_card_wrap {
    width: 100%;
    margin: 0 auto 26vw;
  }
  #member_card_wrap .member_card_midashi {
    width: 60%;
    margin: 0 20%;
  }

  #member_card_wrap .member_card {
    position: relative;
    width: 100%;
    margin: 30px auto 0;
  }
  #member_card_wrap .member_card img {
    width: 100%;
  }
  #member_card_wrap .member_card .menber_detail {
    position: absolute;
    left: 45%;
    transform: translateX(-50%);
    bottom: 12%;
    border-collapse: collapse;
  }
  #member_card_wrap .member_card .menber_detail th {
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    text-align: right;
    padding-right: 3.846vw;
    font-size: 2.6vw;
    line-height: 1.5em;
  }
  #member_card_wrap .member_card .menber_detail td {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 600;
    text-align: left;
    font-size: 2.6vw;
    line-height: 1.5em;
  }

  /*MEMBER CONTENTS*/
  #member_content_wrap {
    width: 100%;
    margin: 0 0 25vw;
  }
  #member_content_wrap .member_content_midashi {
    width: 60%;
    margin: 0 20%;
  }
  #member_content_wrap .member_contents_index {
    display: flex;
    justify-content: center; /* 最終行(2つ)を左右センター寄せ */
    flex-wrap: wrap;
    align-items: flex-start; /*要素の高さ揃えない*/
    list-style: none;
    margin-top: 20vw;
  }
  #member_content_wrap .member_contents_index li {
    width: 33.3333%;
    margin-bottom: 30px;
    text-align: center;
  }
  #member_content_wrap .member_contents_index li img {
    width: 70%;
  }

  /*MEMBER SHIP*/
  #member_ship_wrap {
    width: 100%;
  }
  #member_ship_wrap .member_ship_midashi {
    width: 60%;
    margin: 0 20%;
  }
  #member_ship_wrap .member_ship_txt {
    width: 100%;
    text-align: center;
  }
  #member_ship_wrap .member_ship_txt .txt01 {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 5vw;
    margin-top: 10vw;
  }
  #member_ship_wrap .member_ship_txt .txt02 {
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    font-size: 4.615vw;
    margin-top: 7.692vw;
  }
  #member_ship_wrap .member_ship_txt .note {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 3vw;
    margin-top: 1.282vw;
  }
  #member_ship_wrap .benefits {
    width: 100%;
    margin-top: 13vw;
  }

  /*ギャラリー一覧*/
  .lower_img.gallery {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 上下余白NGを守る */
    object-position: 40% top;
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0;
    animation: fvFadeIn 2s ease-out forwards;
  }
  .gallery_midashi {
    margin-top: 33vw;
    margin-bottom: 33vw;
    text-align: center;
  }
  .gallery_midashi img {
    width: 57%;
  }
  .lower_shop_wrapper.gallery li {
    width: 31%;
    list-style: none;
    margin: 0 0 3vw;
  }

  /*ギャラリー詳細*/

  #lower_fv .fv_lgallery_midashi {
    max-width: none;
    width: 90%;
    margin: 0 auto;
    text-align: left;
    margin-top: 33vw;
  }
  #lower_fv .fv_lgallery_midashi img {
    width: 60%;
  }
  .work_photo img {
    width: 100%;
    margin-bottom: 10.256vw;
  }
  .gallery_title {
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    font-size: 6.41vw;
    width: 100%;
    text-align: center;
    margin-bottom: 10.256vw;
  }
  .gallery_date {
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    font-size: 4.359vw;
    width: 100%;
    text-align: center;
  }
  .gallery_material {
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    font-size: 4.359vw;
    width: 100%;
    text-align: center;
  }
  .gallery_size {
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
    font-size: 4.359vw;
    width: 100%;
    text-align: center;
    margin-bottom: 20.513vw;
  }

  /*メンバーズオンリー*/
  .lower_img.only {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 上下余白NGを守る */
    object-position: 70% top;
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0;
    animation: fvFadeIn 2s ease-out forwards;
  }
  .members_only_box {
    position: relative;
    top: -55vw;
    width: 100%;
    height: 110vw;
    background-color: #fff;
    z-index: 4;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    padding: 8vw 5%;
    margin-bottom: -35vw;
  }
  #lower_members_only_wrapper {
    width: 90%;
    max-width: none;
    margin: 0 auto;
  }
  #lower_members_only_wrapper .members_only_logo {
    width: 100%;
    text-align: center;
    margin-bottom: 10vw;
  }
  #lower_members_only_wrapper .members_only_logo img {
    width: 90%;
  }
  .members_only_box .txt01 {
    width: 100%;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 4.6vw;
    margin-bottom: 9.231vw;
  }
  .members_only_box .txt02 {
    width: 100%;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 4vw;
    line-height: 1.7em;
    margin-bottom: 12vw;
  }
  #lower_members_only_wrapper .btn_wrap {
    display: flex;
    justify-content: space-between;
    list-style: none;
    align-items: center;
    vertical-align: top;
    margin: 24px 0 0;
    width: 100%;
  }
  #lower_members_only_wrapper .btn_wrap .join {
    display: block;
    width: 48%;
    height: auto;
    margin: 0;
  }
  #lower_members_only_wrapper .btn_wrap .login {
    display: block;
    width: 48%;
    height: auto;
    margin: 0;
  }
  #lower_members_only_wrapper .btn_wrap .join img,
  #lower_members_only_wrapper .btn_wrap .login img {
    width: 100%;
  }

  /*FAQ*/
  #lower_fv .fv_faq_midashi {
    max-width: none;
    width: 90%;
    margin: 0 auto;
    text-align: center;
    margin-top: 33vw;
  }
  #lower_fv .fv_faq_midashi img {
    width: 25%;
  }
  /* コンテナ */
  .faq {
    width: 100%;
    margin: 0 auto;
    border-radius: 1.538vw;
    overflow: hidden;
    background: #fff;
  }

  /* 1行（Q） */
  .faq-item {
  }
  .faq-item:first-child {
    border-top: none;
  }

  .faq-q {
    list-style: none;
    display: grid;
    grid-template-columns: 36px 1fr 40px;
    align-items: center;
    padding: 1.282vw 3.333vw 1.282vw 7.692vw;
    cursor: pointer;
    user-select: none;
    border-bottom: 1px solid #000;
    background-color: #f7f8f8;
    margin-top: 3.333vw;
  }
  .faq-q::-webkit-details-marker {
    display: none;
  } /* Safari */

  /* Q. ラベル */
  .faq-q-label img {
    position: relative;
    top: -2.564vw;
    width: 3.333vw;
  }

  /* 質問テキスト */
  .faq-q-text {
    color: #222;
    line-height: 1.4;
    font-weight: 500;
    font-size: 3.6vw;
  }

  /* 右端の + */
  .faq-icon {
    width: 7.179vw;
    height: 7.179vw;
    border-radius: 0.769vw;
    position: relative;
    justify-self: end;
  }
  .faq-icon::before,
  .faq-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 3.077vw;
    height: 0.256vw;
    background: #222;
    transform: translate(-50%, -50%);
    opacity: 0.9;
  }
  .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  /* 開いた時：+ を - に */
  .faq-item[open] .faq-icon::after {
    opacity: 0;
  }

  /* A（ふわっと開く） */
  .faq-a {
    display: grid;
    grid-template-rows: 0fr;
    transition:
      grid-template-rows 260ms ease,
      opacity 260ms ease;
    opacity: 0;
    border-left: 3px solid #f9f9f9;
    border-right: 3px solid #f9f9f9;
    border-bottom: 3px solid #f9f9f9;
  }

  .faq-item[open] .faq-a {
    grid-template-rows: 1fr;
    opacity: 1;
  }

  .faq-a-inner {
    overflow: hidden; /* 閉じた時に中身を隠す */
    padding: 3.59vw 3.59vw 3.59vw 5.128vw; /* Qラベル分を左に空ける */
  }

  .faq-a p {
    margin: 0;
    color: #333;
    line-height: 1.6;
    font-weight: 500;
    font-size: 3.6vw;
  }

  /* 控えめホバー（任意） */
  @media (hover: hover) {
    .faq-q:hover {
      background: #fafafa;
    }
  }
}
