@charset "utf-8";
/* CSS Document */
/*===== スワイパー ======*/
/* スライダー全体の調整 */
.myAppFeatureSwiper {
  width: 100%;
  padding-bottom: 40px;
  /* 下のドット（ページネーション）のスペース */
}
/* 各スライド（画像が入る枠）の調整 */
.myAppFeatureSwiper .swiper-slide {
  text-align: center;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* 画像が枠からはみ出さないように、かつ縦横比を維持 */
.myAppFeatureSwiper .swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  /* 画像の角を少し丸くするときれいに見えます */
}
/* ドット（ページネーション）の色をファミマカラー（緑など）にする場合 */
.myAppFeatureSwiper .swiper-pagination-bullet-active {
  background: #008132;
}
/*===== common ======*/
#famimaphotoapp * {
  min-height: 0vw;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
}
#famimaphotoapp {
  max-width: 954px;
  margin: 0 auto;
  padding: 0;
  position: relative;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
}
#famimaphotoapp img {
  max-width: 100%;
  display: block;
  height: auto;
}
.fee-list dt {
  font-weight: bold;
  font-size: 1.1rem;
  color: #222;
  border-left: 4px solid #4a76a8;
  /* アクセント用の左線 */
  padding-left: 8px;
  margin-bottom: 10px;
}
/* 説明リスト内の補足テキスト */
.fee-note {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 12px;
}
.pricing-table {
  border-collapse: collapse;
  width: 100%;
  border: 1px solid #ccc;
}
/* 【変更】ご要望に基づき、captionを非表示に設定 */
.pricing-table caption {
  display: none;
}
/* ヘッダー行 */
.pricing-table thead tr {
  background-color: #f2f5f8;
  border-bottom: 2px solid #ccc;
}
/* 見出しセル（th）とデータセル（td）共通 */
.pricing-table th, .pricing-table td {
  padding: .3rem .5rem;
  border: 1px solid #ccc;
  color: #333;
}
/* 列見出し（用紙タイプ、サイズ、料金） */
.pricing-table th[scope="col"] {
  font-weight: bold;
  text-align: left;
  background: #bababa;
}
/* 行見出し（白黒、カラー、L判など） */
.pricing-table th[scope="row"] {
  font-weight: normal;
  text-align: left;
  background: #fff;
}
/* 用紙タイプのセル（rowspanで結合される部分） */
.pricing-table td.category-cell {
  vertical-align: middle;
  font-weight: bold;
  background-color: #e5e5e5;
}
/* 料金セルの右寄せ */
.pricing-table .price-cell {
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  background: #fff;
}
/*========================================================
● スライダー左右ナビゲーションボタン（半透明画像 ＋ 元の矢印をそのまま使用）
========================================================*/

/* --- 左右共通設定（ボタン本体の枠と配置ベース） --- */
.swiper-button-next,
.swiper-button-prev {
  width: 40px !important;
  height: 80px !important;
  margin-top: 0 !important;
  transform: translateY(-50%) !important;
  background-image: none !important; /* 本体に直接あたる背景をクリア */
  opacity: 1;              /* 本体は透明にしない（中の矢印をくっきり保つため） */
}

/* --- 【右側ボタン（Next）】 --- */
.swiper-button-next {
  right: 0 !important;
}
/* 背景の半円画像だけを半透明（50%）にして敷く */
.swiper-button-next::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url(/content/dam/img/btn/btn_slide_next.png);
  background-position: center right;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.5; /* ★ここの数値で画像の薄さを調整できます（0.5 = 50%） */
  z-index: 1;
}
/* 【元の矢印】位置だけを半円画像のド真ん中に重ねる調整 */
.swiper-button-next::after {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;         /* ★半円画像に対する矢印の左右位置（微調整用） */
  transform: translateY(-50%) !important;
  margin: 0 !important;         /* 余計なマージンをリセット */
  padding: 0 !important;        /* 過去のpaddingをリセット */
  z-index: 2;                   /* 画像より上に重ねる */
}

/* --- 【左側ボタン（Prev）】 --- */
.swiper-button-prev {
  left: 0 !important;
}
/* 背景の半円画像だけを半透明（50%）にして敷く */
.swiper-button-prev::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url(/content/dam/img/btn/btn_slide_prev.png);
  background-position: center left;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.5; /* ★ここの数値で画像の薄さを調整できます（0.5 = 50%） */
  z-index: 1;
}
/* 【元の矢印】位置だけを半円画像のド真ん中に重ねる調整 */
.swiper-button-prev::after {
  position: absolute !important;
  top: 50% !important;
  right: 50% !important;        /* ★半円画像に対する矢印の左右位置（微調整用） */
  transform: translateY(-50%) !important;
  margin: 0 !important;         /* 余計なマージンをリセット */
  padding: 0 !important;        /* 過去のpaddingをリセット */
  z-index: 2;                   /* 画像より上に重ねる */
}

/* ナビゲーションボタン全体のホバー効果（ボタンエリアに触れたら画像だけ少し濃くする） */
.swiper-button-next:hover::before,
.swiper-button-prev:hover::before {
  opacity: 0.8;
  transition: opacity 0.2s;
}
:root {
  --swiper-navigation-size: 35px;
}
/*===============================================
●pc.css 画面の横幅が737px以上
===============================================*/
@media screen and (min-width:737px) {
  /*===== common ======*/
  #famimaphotoapp .pc-none {
    display: none;
  }
  /*===== お知らせ欄 ======*/
  #famimaphotoapp .pc-btn {
    margin: 1rem 0;
  }
  #famimaphotoapp .pc-btn a {
    display: block;
    padding: 1.5rem;
    background: #eee;
    font-size: 1rem;
    text-align: left;
    color: #0073A8;
  }
  /*===== app dlbtn ======*/
  #famimaphotoapp .fphoto-dlbtn {
    background: #008132;
    font-size: clamp(1.125rem, 0.727rem + 0.86vw, 1.375rem);
    padding: 15px;
    font-weight: bold;
    margin: 0 0 1rem;
  }
  #famimaphotoapp .fphoto-dlbtn .pc-area {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
  }
  #famimaphotoapp .fphoto-dlbtn .btnarea {
    display: flex;
    align-items: center;
    width: 40%;
  }
  #famimaphotoapp .fphoto-dlbtn .btnarea p {
    margin: 0 0 0 10px;
  }
  #famimaphotoapp .fphoto-dlbtn .btnarea div {
    display: flex;
    align-items: center;
    margin: 0 20px 0 0;
  }
  #famimaphotoapp .fphoto-dlbtn .dltxt {
    color: #fff;
  }
  /*===== main ======*/
  #famimaphotoapp .main {
    width: 100%;
    height: auto;
    position: relative;
  }
  #famimaphotoapp h3 {
    border-left: 5px solid #dcdcdc;
    padding-left: 10px;
    margin-bottom: 10px;
  }
  #famimaphotoapp h4 {
    background: #fff;
    text-align: center;
    padding: 15px;
    border-radius: 10px;
  }
  /*===== item-list ======*/
  #famimaphotoapp .item-list {
    margin-top: 1.5rem;
  }
  #famimaphotoapp .item-list ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem 1rem;
  }
  #famimaphotoapp .item-list ul .item {
    background: #dcdcdc;
    padding: 15px;
    display: flex;
    flex-direction: column;
  }
  #famimaphotoapp .item-list ul .item.mb0 {
    margin-bottom: 0;
  }
  #famimaphotoapp .item-list .txt {
    margin: 10px 0;
    font-size: 1rem;
  }
  #famimaphotoapp .item-list .grow.txt {
    min-height: 8em;
  }
  #famimaphotoapp .item-list .fee-list {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }
  #famimaphotoapp .item-list .fee-list.mta div:last-child {
    margin-top: auto;
  }
  #famimaphotoapp .item-list dt {
    margin: 10px 0;
    font-size: 1rem;
    font-weight: 600;
    border-left: 5px solid #313131;
    padding-left: 5px;
    margin-bottom: 10px;
    height: 20px;
  }
  #famimaphotoapp .item-list .list {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 5px;
  }
  #famimaphotoapp .item-list .list::before {
    content: "・";
    position: relative;
    margin-right: 5px;
  }
  #famimaphotoapp .item-list .ind {
    font-size: 1rem;
    text-indent: 40px;
  }
  #famimaphotoapp .item-list .note {
    line-height: 1.2;
    margin: 5px 0 0;
  }
  #famimaphotoapp .item-list .btn {
    width: 100%;
    margin: 0 auto 15px;
  }
  #famimaphotoapp .item-list .btn a {
    display: block;
    position: relative;
    border: 2px solid #0171a6;
    background-color: #0171a6;
    color: #fff;
    padding: 4px 40px 4px 40px;
    text-align: center;
    border-radius: 50px;
    font-size: 0.94rem;
  }
  #famimaphotoapp .item-list .btn a::after {
    position: absolute;
    content: "\e905";
    font-family: "icn_font";
    font-weight: normal;
    font-size: 0.866666rem;
    right: 0;
    top: 50%;
    left: 92%;
    transform: translate(-50%, -50%);
  }
  #famimaphotoapp .item-list .btn a:hover {
    opacity: 0.7;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
  #famimaphotoapp .ly-mod-btn.ly-ta-c.ly-icn-blank.ly-mt20.ly-pc-mb15.ly-bg-fill.ly-bg-white.icon_none {
    width: 80%;
    margin: auto;
  }
  #famimaphotoapp .ly-mod-layout-7clmspl {
    margin: 0 0 30px;
  }
  #famimaphotoapp .ly-mod-layout-clm {
    margin-left: 0.5%;
  }
  /*===== FAQ（よくあるご質問） ======*/
  #famimaphotoapp .faq {
    width: 100%;
    margin: 0 0 30px;
  }
  #famimaphotoapp .faq dl {
    width: 90%;
    margin: 0 auto;
  }
  #famimaphotoapp .faq dt {
    font-weight: bold;
    margin: 0 0 5px;
  }
  #famimaphotoapp .faq dt:nth-of-type(2), #famimaphotoapp .faq dt:nth-of-type(3) {
    font-weight: bold;
    margin: 10px 0 5px;
  }
  /*===== accordionボタン ======*/
  #famimaphotoapp .accordion {
    max-width: 954px;
    width: 100%;
  }
  #famimaphotoapp .toggle {
    display: none;
  }
  #famimaphotoapp .title, #famimaphotoapp .content {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: all 0.3s;
  }
  #famimaphotoapp .option {
    position: relative;
    margin: 0 auto 10px;
    width: 100%;
  }
  #famimaphotoapp .title {
    border: solid 1px #ccc;
    font-weight: bold;
    padding: 1.7%;
    display: block;
    cursor: pointer;
    margin: 0 auto;
  }
  #famimaphotoapp .title::after, #famimaphotoapp .title::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    left: 90%;
    bottom: 0;
    margin: auto;
    width: 2px;
    height: 0.8em;
    background-color: #313131;
    transition: all 0.3s;
  }
  #famimaphotoapp .title::after {
    transform: rotate(90deg);
  }
  #famimaphotoapp .content {
    max-height: 0;
    overflow: hidden;
  }
  #famimaphotoapp .content p {
    padding: 10px 0;
    margin: 0 20px;
  }
  #famimaphotoapp .toggle:checked + .title + .content {
    max-height: 500px;
    transition: all .3s;
  }
  #famimaphotoapp .toggle:checked + .title::before {
    transform: rotate(90deg) !important;
  }
  /*===== 利用規約 ======*/
  #famimaphotoapp .ly-mod-link {
    display: block;
  }
  a.ly-mod-btn.ly-icn-blank span {
    top: 33%;
  }
  .ly-wrp-slide-area .ly-mainarea-slide {
    margin-bottom: 0;
  }
}
/*===============================================
●sp.css  画面の横幅が736pxまで
===============================================*/
@media screen and (max-width:736px) {
  #famimaphotoapp .sp-none {
    display: none;
  }
  #famimaphotoapp {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
  }
  #famimaphotoapp .ly-sp-fs12 {
    font-size: 0.8rem;
  }
  /*===== スワイパー ======*/
  .myAppFeatureSwiper {
    width: 80%;
  }
  /*===== お知らせ欄 ======*/
  #famimaphotoapp .pc-btn {
    margin: 0 0 1.5rem;
  }
  #famimaphotoapp .pc-btn a {
    display: block;
    padding: 1rem;
    background: #eee;
    font-size: 0.87rem;
    text-align: left;
    color: #0073A8;
  }
  /*===== fp dlbtn ======*/
  #famimaphotoapp .fphoto-dlbtn {
    background: #008132;
    font-size: clamp(0.813rem, 0.764rem + 0.24vw, 0.875rem);
    padding: 12px;
    font-weight: bold;
    width: 100%;
    box-sizing: border-box;
  }
  #famimaphotoapp .fphoto-dlbtn section {
    margin-bottom: 0;
  }
  #famimaphotoapp .fphoto-dlbtn .btnarea {
    display: flex;
    align-items: center;
    width: 30%;
  }
  #famimaphotoapp .fphoto-dlbtn .btnarea p {
    margin: 0 0 0 10px;
  }
  #famimaphotoapp .fphoto-dlbtn .dltxt {
    color: #fff;
    text-align: left;
    font-size: 1rem;
  }
  #famimaphotoapp .fphoto-dlbtn .app-link02-btn {
    display: grid;
    grid-template-columns: 200px auto;
    align-items: center;
    justify-content: center;
  }
  #famimaphotoapp .fphoto-dlbtn .app-link02-btn .app-box2 img {
    width: 90%;
    margin: 0 auto;
  }
  /*===== main ======*/
  #famimaphotoapp .main {
    width: 100%;
    height: auto;
    position: relative;
  }
  #famimaphotoapp h3 {
    border-left: 5px solid #dcdcdc;
    padding-left: 10px;
    margin-bottom: 10px;
  }
  #famimaphotoapp h4 {
    background: #fff;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
  }
  /*===== item-list ======*/
  #famimaphotoapp .item-list {
    margin: 0 0 30px;
  }
  #famimaphotoapp .item-list ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 10px 0 0;
    padding: 10px;
  }
  #famimaphotoapp .item-list ul .item {
    width: 100%;
    background: #dcdcdc;
    padding: 15px;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
  }
  #famimaphotoapp .item-list ul .item.mb0:last-of-type {
    margin-bottom: 0;
  }
  #famimaphotoapp .ly-pc-fs14.ly-mb30.ly-pc-mt10 {
    padding: 0 10px;
  }
  #famimaphotoapp .item-list .txt {
    margin: 10px 0;
  }
  #famimaphotoapp .item-list .grow {
    flex-grow: 1;
  }
  #famimaphotoapp .item-list dt {
    margin: 10px 0;
    font-weight: 600;
    border-left: 5px solid #313131;
    padding-left: 5px;
    margin-bottom: 10px;
    height: 20px;
  }
  #famimaphotoapp .item-list .list {
    margin-bottom: 5px;
  }
  #famimaphotoapp .item-list .list::before {
    content: "・";
    position: relative;
    margin-right: 5px;
  }
  #famimaphotoapp .item-list .ind {
    text-indent: 40px;
  }
  #famimaphotoapp .item-list .note {
    line-height: 1.1;
    margin: 5px 0 12px;
  }
  #famimaphotoapp .item-list .btn {
    width: 100%;
    margin: 0 auto;
  }
  #famimaphotoapp .item-list .btn.pic {
    width: 100%;
    margin: 0 auto 15px;
  }
  #famimaphotoapp .item-list .btn a {
    display: block;
    position: relative;
    border: 2px solid #0171a6;
    background-color: #0171a6;
    color: #fff;
    padding: 4px 40px 4px 40px;
    text-align: center;
    border-radius: 50px;
  }
  #famimaphotoapp .item-list .btn a::after {
    position: absolute;
    content: "\e905";
    font-family: "icn_font";
    font-weight: normal;
    right: 0;
    top: 50%;
    left: 92%;
    transform: translate(-50%, -50%);
  }
  #famimaphotoapp .ly-mod-layout-clm {
    margin: 0 1% 1.5%;
  }
  #famimaphotoapp .ly-mod-layout-6clmspl {
    margin: 0 10px 30px;
  }
  /*===== FAQ（よくあるご質問） ======*/
  #famimaphotoapp .faq {
    margin: 0 0 30px;
  }
  #famimaphotoapp .faq dl {
    width: 90%;
    margin: 0 auto;
  }
  #famimaphotoapp .faq dt {
    font-weight: bold;
    margin: 0 0 5px;
  }
  #famimaphotoapp .faq dt:nth-of-type(2), #famimaphotoapp .faq dt:nth-of-type(3) {
    font-weight: bold;
    margin: 10px 0 5px;
  }
  /*===== accordionボタン ======*/
  #famimaphotoapp .accordion {
    max-width: 100%;
    width: 100%;
  }
  #famimaphotoapp .toggle {
    display: none;
  }
  #famimaphotoapp .title, #famimaphotoapp .content {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: all 0.3s;
  }
  #famimaphotoapp .option {
    position: relative;
    margin: 0 auto 10px;
    width: 100%;
  }
  #famimaphotoapp .option label span {
    display: block;
    width: 92%;
  }
  #famimaphotoapp .title {
    border: solid 1px #ccc;
    font-weight: bold;
    padding: 1.7%;
    display: block;
    cursor: pointer;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  }
  #famimaphotoapp .title::after, #famimaphotoapp .title::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    left: 90%;
    bottom: 0;
    margin: auto;
    width: 2px;
    height: 0.8em;
    background-color: #313131;
    transition: all 0.3s;
  }
  #famimaphotoapp .title::after {
    transform: rotate(90deg);
  }
  #famimaphotoapp .content {
    max-height: 0;
    overflow: hidden;
  }
  #famimaphotoapp .content p {
    padding: 10px 0;
    margin: 0 10px;
  }
  #famimaphotoapp .toggle:checked + .title + .content {
    max-height: 500px;
    transition: all .3s;
  }
  #famimaphotoapp .toggle:checked + .title::before {
    transform: rotate(90deg) !important;
  }
  /*===== 利用規約 ======*/
  #famimaphotoapp .ly-mod-link {
    display: block;
  }
  a.ly-mod-btn.ly-icn-blank span {
    top: 35%;
  }
  .ly-wrp-slide-area .ly-mainarea-slide {
    margin-bottom: 0;
  }
}