@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700;900&family=Noto+Serif+JP:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap");

/*
A1MinchoStd Bold-83pv 代替
font-family: 'Noto Serif JP', serif;
font-weight: 400;
font-weight: 700;

小塚ゴシック Pr6N 代替
font-family: 'Noto Sans JP', sans-serif;
font-weight: 400;
font-weight: 700;
font-weight: 900;

DIN Light 代替
font-family: 'Montserrat', sans-serif;
font-weight: 300;
*/

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;
  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: block;
}
.sp_view {
  display: none;
}
img {
  vertical-align: bottom;
  height: auto;
}

a {
  color: #111;
}
a:visited {
  color: #111; 
}


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; /* メインビジュアルより少し遅らせる */
}


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

/* SPでは少しスピード落とす */
@media (max-width: 768px) {
  .fv__flow--left .fv__flow-inner,
  .fv__flow--right .fv__flow-inner {
    animation-duration: 45s;
  }
}
#fv .fv__logo {
  position: absolute;
  top: 15px;
  left: 20px;
  z-index: 50;
}
#fv .fv__logo img {
  width: 400px;
  max-width: 40vw;
  height: auto;
  display: block;
}

#fv .navi {
  position: absolute;
  right: 20px;
  top: 23%;
  z-index: 3;
}
#fv .navi li {
  list-style: none;
  text-align: right;
  height: 12px;
  margin-bottom: 26px;
}
#fv .navi li img {
  height: 12px;
}

#aisatu {
  width: 90%;
  max-width: 1500px;
  overflow: hidden;
  background: #fff;
  position: relative;
  text-align: right;
  margin: 40px auto 120px;
}
#aisatu .sign {
  width: 50%;
  margin-left: auto;
}
#content_wrapper {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
}
.login_wrapper {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between; /*左右寄せ*/
  flex-wrap: nowrap;
}
.login_wrapper .funclub_midashi {
  width: 38.1%;
}
.login_wrapper .funclub_midashi img {
  width: 100%;
}
.login {
  width: 39.83%;
  height: 180px;
  display: flex;
  list-style: none;
  margin-top: 50px;
}
.login li:first-child {
  width: 42.5%;
  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: 62px;
}

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

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

/*news*/
.news_wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  margin-top: 235px;
  margin-bottom: 120px;
}
.news_wrapper .news_list {
  width: 47.45%;
}
.news_wrapper .news_list li {
  width: 100%;
  list-style: none;
  border-bottom: 1px solid #666;
  margin-bottom: 55px;
  padding-bottom: 3px;
  display: flex;
}
.news_wrapper .news_list li .date {
  width: 150px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  white-space: nowrap;
}
.news_wrapper .news_list li .title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 18px;
line-height:1.5;
width:100%;
text-align:left;

  /* 省略表示（…） */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news_wrapper .news_list li .title a{
  color: #111;
text-decoration:none;

}
.news_wrapper .news_midashi {
  width: 40.25%;
}
.news_wrapper .news_midashi img {
  width: 100%;
  margin-top: 70px;
}
.news_wrapper .viewmore {
  width: 100%;
  text-align: right;
}
.news_wrapper .viewmore img {
  width: 175px;
}

/*footer*/
footer {
  position: relative;
  width: 100%;
  height: 310px;
  overflow: hidden;
  padding-top: 30px;
  background-color: #fff;
}
footer .sns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 220px;
  margin-left: 45px;
}
footer .sns li {
  width: 28%;
  list-style: none;
}
footer .sns li img {
  width: 100%;
}
footer .bottom_logo {
  position: absolute;
  top: 50px;
  right: 45px;
  width: 450px;
}
footer .bottom_menu {
  position: absolute;
  left: 50%;
  bottom: 90px;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  list-style: none;
  font-size: 12px;
  width: 570px;
  margin: 0 auto;
}
footer .bottom_menu a {
  text-decoration: none;
  color: #000;
}
footer .bottom_menu a:hover {
  opacity: 0.7;
}
footer .copyright {
  position: absolute;
  left: 0;
  bottom: 40px;
  font-size: 12px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}
footer.nobg {
  background: none;
}
/*下層*/

#lower_fv {
  width: 100%;
  height: 600px;
  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: 20px;
  top: 150px;
  z-index: 3;
}
#lower_fv .navi li {
  list-style: none;
  text-align: right;
  height: 12px;
  margin-bottom: 26px;
}
#lower_fv .navi li img {
  height: 12px;
}
#lower_fv .fv__logo {
  position: absolute;
  top: 15px;
  left: 20px;
  z-index: 50;
}
#lower_fv .fv__logo img {
  width: 400px;
  max-width: 40vw;
  height: auto;
  display: block;
}
.lower_midashi {
  margin-top: 220px;
  margin-bottom: 170px;
  text-align: center;
}
.lower_midashi img {
  width: 35.59%;
}
#lower_content_wrapper {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto 170px;
}

/*news一覧ページ*/

.lower_news_wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  margin-bottom: 30px;
}
.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: 55px;
  padding-bottom: 3px;
  display: flex;
}
.lower_news_wrapper .news_list li .date {
  width: 150px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  white-space: nowrap;
}
.lower_news_wrapper .news_list li .title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 18px;
  /* 省略表示（…） */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
line-height:1.5;
}
.lower_news_wrapper .news_list li .title a{
color:#111;
text-decoration:none;
}


/*ページャー*/
.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: 14px; /* 丸同士の間隔 */
  list-style: none;
  margin: 0;
  padding: 0;
}

.news_pager .pager__link {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 14px;
  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: 18px;
  line-height: 1;
  padding: 0 2px;
}

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

/*news詳細ページ*/
#lower_fv.news_detail {
  width: 100%;
  height: 450px;
  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: top center;
  background-repeat: no-repeat;
  opacity: 0.25; /* ← ここで透過調整 */
  z-index: -1; /* コンテンツの背面 */
}
#lower_fv .navi.top_right {
  position: fixed;
  top: 15px;
}
#lower_fv .fv_lower_midashi {
  max-width: 1180px;
  width: 90%;
  margin: 0 auto;
  text-align: left;
  margin-top: 200px;
}
#lower_fv .fv_lower_midashi img {
  width: 36%;
}
.lower_news_detail_wrapper {
  margin-bottom: 30px;
}
.lower_news_detail_wrapper .news_midashi_wrap {
  display: flex;
  justify-content: space-between; /*左右寄せ*/
  flex-wrap: nowrap;
  align-items: flex-start;
}
.lower_news_detail_wrapper .news_midashi_wrap .news_midashi {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.03em;
}
.lower_news_detail_wrapper .news_midashi_wrap .news_date {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  text-align: right;
}
.lower_news_detail_wrapper .news_honbun {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.03em;
  line-height: 1.9em;
  margin: 50px 0 0 0;
}
.lower_news_detail_wrapper .news_honbun p {
  margin-bottom: 1.5em;
}
.lower_news_detail_wrapper .news_detail_pager {
  position: relative;
  top: 50px;
  display: flex;
  justify-content: space-between; /*左右寄せ*/
  flex-wrap: wrap;
  list-style: none;
  border-top: 1px solid #000;
  margin: 30px 0 0 0;
  padding: 20px 0 0 0;
  font-size: 16px;
  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: 30px;
  width: 100%;
}

.lower_shop_wrapper li {
  width: 31%;
  list-style: none;
  margin: 0 0 50px;
}
.lower_shop_wrapper::after {
  content: "";
  width: 31%;
}
.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: 18px;
  line-height: 1.7em;
  margin-top: 20px;
}
.lower_shop_wrapper .product_price {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.7em;
  margin-top: 8px;
}
.lower_shop_wrapper .product_price span {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7em;
  margin-top: 8px;
}
.lower_shop_wrapper a.detail_btn {
  display: block;
  height: 60px;
  width: 84%;
  margin: 15px 8% 0;
  border-radius: 35px;
  border: 1px solid #4d4d4d;
  background-color: #fff;
  line-height: 60px;
  text-decoration: none;
  text-align: center;
  font-size: 20px;
  color: #000;
}
.lower_shop_wrapper a.detail_btn:hover {
  opacity: 0.7;
}

/*ショップ詳細*/

/*shop detail*/
#shop_detail_wrapp {
  width: 100%;
  margin-bottom: 30px;
}

.shop_detail_photo {
  overflow: hidden;
  position: relative;
  float: left;
  width: 48%;
  /*aspect-ratio: 1 / 1;*/
  /*background-color:#E5E5E5;*/
}

.shop_detail_photo img {
  width: 100%;
  height: auto;
}
#shop_detail_left {
  overflow: hidden;
  position: relative;
  float: right;
  width: 48%;
  text-align: left;
}
.shop_detail_title {
  text-align: left;
  width: 100%;
  font-size: 24px;
  margin-bottom: 10px;
  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: 17px;
  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: 50px;
  padding: 5px;
  margin-right: 20px;
  text-align: center;
}
#cart_option_wrapp .cart_pcode {
  background-color: #eee;
  width: 50px;
  padding: 5px;
  margin-right: 20px;
  text-align: center;
}
.submit_btn {
  background-color: #fff;
  border: 1px solid #4d4d4d;
  width: 50%;
  height: 60px;
  line-height: 58px;
  text-align: center;
  border-radius: 80px;
  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: 70px;
}
/*商品スライダー*/

.slick02 {
  margin-bottom: 1px;
}

.thumbnail {
  margin-top: 20px;
}

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

.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: 50px;
  margin: 0;
  padding: 0;
  font-size: 16px;
  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: 1180px;
  width: 90%;
  margin: 0 auto;
  text-align: center;
  margin-top: 200px;
}
#lower_fv .fv_dialy_midashi img {
  width: 39%;
}
.lower_news_detail_wrapper .dairy_list {
  width: 100%;
  margin-bottom: 60px;
}
.dairy_list li.border_bottom {
  display: flex;
  justify-content: space-between; /*左右寄せ*/
  flex-wrap: nowrap;
  align-items: flex-start;
  border-bottom: 1px solid #595757;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.dairy_list li .dialy_image {
  width: 300px;
  height: 300px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.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: calc(100% - 355px);
  color: #333;
}
.dairy_list li .dialy_txt_right .dialy_date {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  line-height: 1em;
}
.dairy_list li .dialy_txt_right .dialy_title {
  font-size: 20px;
  font-weight: 500;
  line-height: 2em;
  margin: 7px 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: 16px;
  font-weight: 500;
  line-height: 1.8em;
  margin: 14px 0;

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

/*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: 50px;
}
#lower_content_wrapper .video_list li {
  width: 30.5%;
  list-style: none;
  margin-bottom: 40px;
}
#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: 16px;
  line-height: 2.5em;
}
#lower_content_wrapper .video_list li .title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7em;
}

.lower_video_detail_wrapper {
  margin-bottom: 30px;
}
.lower_video_detail_wrapper .video_midashi {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 20px;
  margin-bottom: 40px;
}
.lower_video_detail_wrapper .video_detail_pager {
  position: relative;
  top: 50px;
  margin: 0;
  padding: 0;
  font-size: 16px;
  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_fc_content_wrapper {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto 120px;
}
#lower_fc_content_wrapper .lower_fc_midashi {
  display: flex;
  justify-content: space-between; /*左右寄せ*/
  flex-wrap: nowrap;
  align-items: center;
  margin-top: 220px;
  margin-bottom: 200px;
}
#lower_fc_content_wrapper .lower_fc_midashi .midashi {
  width: 37%;
}
#lower_fc_content_wrapper .lower_fc_midashi .midashi img {
  width: 100%;
}
#lower_fc_content_wrapper .lower_fc_midashi .midashi_right {
  width: 50%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.8em;
}
#lower_fc_content_wrapper .btn_wrap {
  display: flex;
  justify-content: space-between;
  list-style: none;
  align-items: center;
  vertical-align: top;
  margin: 24px 0 0 0;
}
#lower_fc_content_wrapper .btn_wrap .join {
  display: block;
  width: 45%;
  height: 115px;
  margin: 0;
}
#lower_fc_content_wrapper .btn_wrap .login {
  display: block;
  width: 45%;
  height: 115px;
  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 170px;
}
#member_card_wrap .member_card_midashi {
  width: 45%;
  margin: 0 27.5%;
}

#member_card_wrap .member_card {
  position: relative;
  width: 690px;
  margin: 40px 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.9%;
  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: 15px;
  font-size: 14px;
  line-height: 2em;
}
#member_card_wrap .member_card .menber_detail td {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  text-align: left;
  font-size: 14px;
  line-height: 2em;
}

/*MEMBER CONTENTS*/
#member_content_wrap {
  width: 100%;
  margin: 0 0 220px;
}
#member_content_wrap .member_content_midashi {
  width: 43%;
  margin: 0 28.5%;
}
#member_content_wrap .member_contents_index {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-items: flex-start; /*要素の高さ揃えない*/
  list-style: none;
  margin-top: 78px;
}
#member_content_wrap .member_contents_index li {
  width: 10%;
}
#member_content_wrap .member_contents_index li img {
  width: 100%;
}

/*MEMBER SHIP*/
#member_ship_wrap {
  width: 100%;
}
#member_ship_wrap .member_ship_midashi {
  width: 43%;
  margin: 0 28.5%;
}
#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: 22px;
  margin-top: 75px;
}
#member_ship_wrap .member_ship_txt .txt02 {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 18px;
  margin-top: 30px;
}
#member_ship_wrap .member_ship_txt .note {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  margin-top: 5px;
}
#member_ship_wrap .benefits {
  width: 100%;
  margin-top: 75px;
}

/*ギャラリー一覧*/
.gallery_midashi {
  margin-top: 170px;
  margin-bottom: 150px;
  text-align: center;
}
.gallery_midashi img {
  width: 57%;
}
.lower_shop_wrapper.gallery li {
  width: 31%;
  list-style: none;
  margin: 0 0 40px;
}

/*ギャラリー詳細*/
#lower_fv .fv_lgallery_midashi {
  max-width: 1180px;
  width: 90%;
  margin: 0 auto;
  text-align: left;
  margin-top: 200px;
}
#lower_fv .fv_lgallery_midashi img {
  width: 60%;
}
.work_photo img {
  width: 100%;
  margin-bottom: 40px;
}
.gallery_title {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 25px;
  width: 100%;
  text-align: center;
  margin-bottom: 40px;
}
.gallery_date {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 17px;
  width: 100%;
  text-align: center;
}
.gallery_material {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 17px;
  width: 100%;
  text-align: center;
}
.gallery_size {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 17px;
  width: 100%;
  text-align: center;
  margin-bottom: 80px;
}

/*メンバーズオンリー*/
.members_only_box {
  position: relative;
  top: -110px;
  width: 100%;
  height: 600px;
  background-color: #fff;
  z-index: 4;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  padding: 80px 0;
}
#lower_members_only_wrapper {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
}
#lower_members_only_wrapper .members_only_logo {
  width: 100%;
  text-align: center;
  margin-bottom: 80px;
}
#lower_members_only_wrapper .members_only_logo img {
  width: 38%;
}
.members_only_box .txt01 {
  width: 100%;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 26px;
  margin-bottom: 36px;
}
.members_only_box .txt02 {
  width: 100%;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.7em;
  margin-bottom: 70px;
}
#lower_members_only_wrapper .btn_wrap {
  display: flex;
  justify-content: space-between;
  list-style: none;
  align-items: center;
  vertical-align: top;
  margin: 24px 25% 0;
  width: 50%;
}
#lower_members_only_wrapper .btn_wrap .join {
  display: block;
  width: 46%;
  height: 115px;
  margin: 0;
}
#lower_members_only_wrapper .btn_wrap .login {
  display: block;
  width: 46%;
  height: 115px;
  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: 1180px;
  width: 90%;
  margin: 0 auto;
  text-align: center;
  margin-top: 200px;
}
#lower_fv .fv_faq_midashi img {
  width: 25%;
}
/* コンテナ */
.faq {
  width: 100%;
  margin: 0 auto;
  border-radius: 6px;
  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: 5px 13px 5px 30px;
  cursor: pointer;
  user-select: none;
  border-bottom: 1px solid #000;
  background-color: #f7f8f8;
  margin-top: 13px;
}
.faq-q::-webkit-details-marker {
  display: none;
} /* Safari */

/* Q. ラベル */
.faq-q-label img {
  position: relative;
  top: -10px;
  width: 13px;
}

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

/* 右端の + */
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 3px;
  position: relative;
  justify-self: end;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 1px;
  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: 14px 14px 14px 20px; /* Qラベル分を左に空ける */
}

.faq-a p {
  margin: 0;
  color: #333;
  line-height: 1.8;
  font-weight: 500;
  font-size: 16px;
}

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