@charset "UTF-8";
/*
  common
*/


/*============================================================
  汎用
============================================================*/
/* margin */
.mBtmNone{ margin-bottom:none;}
.mBtm10{ margin-bottom:10px;}
.mBtm20{ margin-bottom:20px;}
.mBtm30{ margin-bottom:30px;}
.mBtm40{ margin-bottom:40px;}
.mBtm50{ margin-bottom:50px;}
.mBtm60{ margin-bottom:60px;}
.mBtm70{ margin-bottom:70px;}
.mBtm80{ margin-bottom:80px;}

.mTop5{ margin-top:5px;}
.mTop10{ margin-top:10px;}
.mTop20{ margin-top:20px;}
.mTop30{ margin-top:30px;}
.mTop40{ margin-top:40px;}
.mTop50{ margin-top:50px;}
.mTop60{ margin-top:60px;}
.mTop70{ margin-top:70px;}
.mTop80{ margin-top:80px;}

/* padding */
.pBtmNone{ padding-bottom:none;}
.pBtm05{ padding-bottom:5px;}
.pBtm10{ padding-bottom:10px;}
.pBtm20{ padding-bottom:20px;}
.pBtm30{ padding-bottom:30px;}
.pBtm40{ padding-bottom:40px;}
.pBtm50{ padding-bottom:50px;}

.pTop10{ padding-top:10px;}
.pTop20{ padding-top:20px;}
.pTop30{ padding-top:30px;}
.pTop40{ padding-top:40px;}
.pTop50{ padding-top:50px;}

/* color */
.cRed { color:#ff3300;}
.cOrg { color:#c60;}
.cGry { color:#666;}
.cBrwn{ color:#553b27;}
.cDred{ color:#990000;}

/* -------------------------------------- */
/* 表示切り替え */
/* -------------------------------------- */
/** visible 選択項目のみ表示 **/
.visible_mb{ display:block;}
.visible_tb{ display:none;}
.visible_pc{ display:none;}

@media only screen and (min-width: 769px) and (max-width: 1200px) {
.visible_mb{ display:none;}
.visible_tb{ display:block;}
.visible_pc{ display:none;}
}

@media only screen and (min-width: 1201px) {
.visible_mb{ display:none;}
.visible_tb{ display:none;}
.visible_pc{ display:block;}
}

/** visible 選択項目のみ表示しない **/
.hidden_mb{ display:none;}
.hidden_tb{ display:block;}
.hidden_pc{ display:block;}

@media only screen and (min-width: 769px) and (max-width: 1200px) {
.hidden_mb{ display:block;}
.hidden_tb{ display:none;}
.hidden_pc{ display:block;}
}

@media only screen and (min-width: 1201px) {
.hidden_mb{ display:block;}
.hidden_tb{ display:block;}
.hidden_pc{ display:none;}
}



ul.commonList{
	padding: 0;
	margin: 0;
}

ul.commonList > li{
	list-style-position:inside;
	text-indent: -1em;
    padding-left: 1em;
    word-break: break-all;
	margin-bottom: 5px;
	

}

ul.commonList > li:last-of-type{
	margin-bottom: 0;
}




	
	
/*============================================================
  ページ用
============================================================*/

.topCom{
	padding-bottom: 60px;
}

.commonBg{
	background: #f8f5ed; /** f0eee9 **/
	padding: 50px 0;
	margin: 100px 0
}

.commonBlk{
	max-width: 880px;
	width: 100%;
	margin: 0 auto 70px;
}

.commonBg .commonBlk{
	max-width: 760px;
	width: 90%;
}

@media screen and (max-width: 767px) {
	.commonBlk{
		width: 90%;
	}
	.commonBg .commonBlk{
		width: 90%;
	}
}


section .commonBlk:last-of-type,
div .commonBlk:last-of-type{
	margin-bottom: 0;
}

.commonBlk .commonTxt{
	padding-bottom: 30px;
}

.commonBlk .commonTxt:last-of-type{
	padding-bottom: 0;
}


/* ======================================
   見出し用共通イメージ
   ====================================== */
.heading-common-img {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto 50px;
  text-align: center;
}

/* picture・img共通設定 */
.heading-common-img picture,
.heading-common-img img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  object-fit: cover;
}



/* ===============================
   ボタン風ナビゲーション
   =============================== */
.nav-buttons {
  max-width: 1080px;
  width: 96%;
  margin: 0 auto;
  font-family: "Hiragino Mincho ProN", "游明朝", serif;
}

.nav-buttons__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-buttons__item {
  width: 100%;
}

.nav-buttons__link {
  display: block;
  padding: 16px 0;
  border: 2px solid #c9a441;
  color: #a67c00;
  background-color: #fff;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  text-align: center;
}

.nav-buttons__link:hover {
  background-color: #c9a441;
  color: #fff;
}


@media screen and (max-width: 767px) {
  .nav-buttons__list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .nav-buttons__link {
    font-size: 15px;
    padding: 14px 0;
  }
}



/* ===============================
   画像＋テキスト汎用ブロック
   =============================== */
.common-media {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 880px;
  width: 100%;
  margin: 0 auto 60px;
  gap: 40px;
  flex-wrap: wrap;
}

.common-media__imgwrap {
  flex: 0 0 300px;
}

.common-media__imgwrap img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0;
}

.common-media__text {
	flex: 1;
	vertical-align: top;
}

.common-media__title {
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: bold;
}

.common-media__desc {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

/** 逆配置 **/
.common-media--reverse {
  flex-direction: row-reverse;
}

@media screen and (max-width: 767px) {
  .common-media {
    flex-direction: column;
  }

  .common-media--reverse {
    flex-direction: column-reverse;
  }

  .common-media__imgwrap {
    flex: none;
    width: 100%;
  }

  .common-media__text {
    width: 100%;
  }
}

/* ======================================
   共通バナーブロック
   ====================================== */
.bana-common-img {
  width: 100%;
  margin: 30px auto;
  text-align: center;
}

/* 最大横幅バリエーション */
.bana-common-img--wide {
  max-width: 1280px;
}
.bana-common-img--narrow {
  max-width: 980px;
}

/* リンク対応（hover時フェード） */
.bana-common-img a {
  display: block;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.bana-common-img a:hover {
  opacity: 0.8;
}

/* 画像・picture共通 */
.bana-common-img picture,
.bana-common-img img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  object-fit: cover;
}


/* ===============================
   画像とテキストリンクボックス
   =============================== */
.card-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; /* 余白 */
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2%;
  box-sizing: border-box;
}

.card-item {
  display: block;
  text-decoration: none;
  border: 1px solid #d4af37;
  background-color: #fff;
  transition: opacity 0.3s ease;
  padding: 16px;
  box-sizing: border-box;
}

.card-item:hover {
  opacity: 0.5;
}

.card-item__img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 12px;
  object-fit: cover;
}

.card-item__title {
  font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #333;
}

.card-item__text {
  font-size: 0.95rem;
  color: #555;
}

@media screen and (max-width: 640px) {
  .card-list-grid {
    gap: 20px;
    padding: 0 3%;
  }

  .card-item {
    padding: 12px;
  }
}



/*============================================================
  フッター
============================================================*/
#footer-new {
  width: 100%;
  background-color: #ececec;
  padding: 40px 0;
  box-sizing: border-box;
  font-size: 15px;
}

.footer-new__inner {
  width: 96%;
  max-width: 1280px;
  margin: 0 auto;
}

.footer-new__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

/* ロゴ */
.footer-new__logo {
  flex: 1 1 280px;
  max-width: 320px;
}

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

.footer-new__text{
	padding-top: 15px;
	font-size: 0.9em;
}

.footer-new__text a{
  transition: background 0.3s ease, color 0.3s ease;
	text-decoration: none;
}

.footer-new__text a:hover{
	text-decoration: none;
	color: #cdbc9d;
}


.footer-new__sns{
	padding-top: 15px;
	display: flex;
    align-items: stretch;
}

.footer-new__sns a{
	display: block;
	border-radius: 16%;
	text-align: center;
	background: #cdbc9d;
	color: #f0eee9;
	width: 34px;
	height: 34px;
	margin-right: 10px;
  transition: background 0.3s ease, color 0.3s ease;
}

.footer-new__sns a:last-of-type{
	margin-right: 0;
}

.footer-new__sns a i{
	font-size: 22px;
	font-weight: bold;
	line-height: 34px;
}

.footer-new__sns a:hover{
  background: #d5cab6;
}

.footer-new__sns a.footer-new__sns-line{
	border-radius: none;
	background: none;
	color: #cdbc9d;
	width: auto;
	height: auto;
}

.footer-new__sns a.footer-new__sns-line i{
	font-size: 34px;
	line-height: 1;
  transition: background 0.3s ease, color 0.3s ease;
}

.footer-new__sns a.footer-new__sns-line:hover i{
	font-size: 34px;
	line-height: 1;
  color: #d5cab6;
}


.footer-new__nav {
  flex: 2 1 400px;
  min-width: 350px;
  display: flex;
  justify-content: flex-end;
  gap: 40px;
}

.footer-new__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-new__nav-item {
  margin-bottom: 8px;
}

.footer-new__nav-item a {
  text-decoration: none;
  color: #333;
  padding: 0;
	font-size: 0.9em;
  transition: background 0.3s ease, color 0.3s ease;
}

.footer-new__nav-item a:hover{
	color: #cdbc9d;
}

/* CTA ボタン */
.footer-new__btn {
  flex: 1 1 150px;
  max-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-new__btn-item {
  display: block;
  padding: 10px 0;
  background: #cdbc9d;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  transition: background 0.3s ease, color 0.3s ease;
}

.footer-new__btn-item:hover {
  background: #d5cab6;
  text-decoration: none;
	color: #fff;
}

/* 下段 */
.footer-new__bottom {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-new__copy {
  margin: 0;
  color: #555;
	font-size: .8em;
}

.footer-new__privacy{}

.footer-new__privacy a {
  text-decoration: none;
  color: #333;
  position: relative;
  padding-right: 18px;
	font-size: .9em;
  transition: background 0.3s ease, color 0.3s ease;
}

.footer-new__privacy a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid #bfa55a;
  border-right: 1px solid #bfa55a;
  transform: translateY(-50%) rotate(45deg);
  transition: right 0.25s ease;
}


.footer-new__privacy a:hover {
	color: #cdbc9d;
}

.footer-new__privacy a:hover::after {
  right: -4px;
}

.footer-new__privacy a:last-of-type{
	margin-left: 20px;
}


/* ================================
   ▼▼▼ タブレット ▼▼▼
   ================================ */
@media screen and (max-width: 1024px) {
  .footer-new__top {
    gap: 24px;
  }

  .footer-new__nav {
    flex: 2 1 350px;
    gap: 24px;
  }
}

@media screen and (max-width: 979px) {
  .footer-new__top {
    gap: 20px;
  }
.footer-new__logo {
  flex: 1 1 200px;
}
	
  .footer-new__nav {
    flex: 2 1 200px;
    gap: 24px;
  }
	
	.footer-new__btn {
	  flex: 1 1 120px;
	}
}

/* ================================
   ▼▼▼ スマホ ▼▼▼
   ================================ */
@media screen and (max-width: 767px) {

  .footer-new__top {
    flex-direction: column;
    text-align: center;
  }

  .footer-new__logo,
  .footer-new__nav,
  .footer-new__btn {
    flex: none;
	  width: 100%;
    max-width: 100%;
  }

	.footer-new__logo img{
		max-width: 320px;
		margin: 0 auto;
		display: block;
	}
	
	
  .footer-new__nav {
    flex-direction: column;
    justify-content: center;
    align-items: center;
	  gap: 0; /* ul 同士のgapを消す */
  }

  
  .footer-new__nav-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 16px;
    justify-content: center;
	  width: 80%;
	  margin: 0;
    row-gap: 0;
  }

  .footer-new__nav-item {
    flex: 1 1 calc(50% - 16px);
    text-align: center;
  }

  .footer-new__nav-item a {
	  display: block;
	  width: 100%;
  }
	
	.footer-new__nav .footer-new__nav-list:first-of-type{
	  border-top: 1px solid #999;
		padding-top: 20px;
	}
	
  .footer-new__sns{
	  justify-content:center;
	}

  .footer-new__btn {
    align-items: center;
  }

  .footer-new__btn-item {
    width: 80%;
  }

  .footer-new__bottom {
    flex-direction: column-reverse;
    text-align: center;
  }
}


	
	
	

	





/*============================================================
  アフターサービス体制
============================================================*/

#afterservice {
  box-sizing: border-box;
}

/* ============================
   ページ内リンクボタン
============================ */
.afterservice__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 100px;
}

/* ボタン本体 */
.afterservice__nav-item {
  flex: 1 1 calc(50% - 20px);
  background: linear-gradient(180deg, rgba(191, 151, 79, 1) 0%, rgba(200, 158, 83, 1) 59%, rgba(237, 193, 116, 1) 100%);
  color: #fff;
  text-decoration: none !important;
  border-radius: 10px;
  padding: 18px;
  box-sizing: border-box;
  
  display: flex;
  flex-direction: row; 
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  
  min-height: 80px;
  transition: opacity 0.3s ease;
}

.afterservice__nav-item:hover {
  opacity: 0.9;
  color: #fff !important;
}

.afterservice__nav-icon {
  font-size: 1rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}


.afterservice__nav-text {
  font-size: 1.25rem;
  line-height: 1.25;
  font-family: "Hiragino Mincho ProN", "游明朝", serif;
  font-weight: bold;
  text-align: left;
}

@media (max-width: 767px) {
  .afterservice__nav {
    gap: 10px; /* スマホ時は少し詰めると綺麗です */
  }

  .afterservice__nav-item {
    flex: 1 1 100%;
    padding: 20px 15px;
    min-height: 70px;
  }

  .afterservice__nav-icon {
    font-size: 1.2rem;
  }

  .afterservice__nav-text {
    font-size: 1.1rem;
  }

  .afterservice__nav .hidden_mb {
    display: none;
  }
}



/* ============================
   有人対応
============================ */
.contact-card {
  background-color: #fff;
  border-radius: 12px;
  max-width: 650px;
  margin: 30px auto 0;	
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  overflow: hidden;
}

/* ヘッダー部分 */
.contact-card__header {
  background: #c9a441;
  color: #fff;
  padding: 10px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  font-family: "Hiragino Mincho ProN", "游明朝", serif;
}

/* コンテンツ部分 */
.contact-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center; /* これで子要素がすべて中央に寄ります */
  text-align: center;
}

/* 時間表示の行 */
.contact-card__time-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.contact-card__label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #666;
}

.contact-card__time {
  color: #000;
  font-size: 1.8rem;
  font-weight: bold;
}

/* 説明文 */
.contact-card__note {
  font-size: 0.95rem;
  color: #444;
  margin: 0;
  line-height: 1.6;
}

/* レスポンシブ（スマホ） */
@media (max-width: 767px) {
  .contact-card {
    margin: 20px 15px 0; /* 左右に少し余白を作る */
  }

  .contact-card__time-row {
    flex-direction: column; /* スマホでは「対応時間」と「10時〜18時」を縦並びに */
    gap: 5px;
  }

  .contact-card__time {
    font-size: 1.5rem;
  }
}


/*============================================================
  ラッピング
============================================================*/
#wrapping{}

#wrapping .notes{
	margin: 80px auto;
	border-top: 1px solid #444;
	padding-top: 70px;
}

#wrapping .notes ul{
	font-size: 0.8em;
}

#wrapping .notes .commonList span{
	color: #cc0000;
}


/* ===============================
   ベルト調整
   =============================== */
#belt{}

#belt .common-media{
	width: 100%;
    align-items: stretch;
}

#belt .notes{
	padding-top: 30px;
	margin-top: 30px;
	border-top: 1px solid #444;
}




/* ===============================
   ショッピングローン
   =============================== */
#shoppingloan{}
#shoppingloan #topImg{
	margin-bottom: 80px;
}

#shoppingloan > .topCom{
	font-size: 1.05em;
}

/* --- ローン ステップ--- */
#loan-steps {
	width: 96%;
  max-width: 1080px;
  margin: 0 auto;
}

#loan-steps .loan-step {
  display: flex;
  border: 2px solid #006036;
  background-color: white;
  margin-bottom: 20px;
  border-radius: 2px;
  overflow: hidden;
}

#loan-steps .loan-step-number {
  width: 10%;
  background: #006036;
background: linear-gradient(180deg, rgba(0, 96, 54, 1) 0%, rgba(0, 125, 71, 1) 100%);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px 0;
}

#loan-steps .loan-step-text {
  font-size: 12px;
  margin-bottom: 4px;
}

#loan-steps .loan-step-num {
  font-size: 1.5em;
  font-weight: bold;
}

#loan-steps .loan-step-content {
  flex: 1;
  padding: 10px 20px;
}

#loan-steps .loan-step-title {
  font-family: "Hiragino Mincho ProN", "游明朝", serif;
  font-size: 1.4em;
  margin: 0 0 6px 0;
}

#loan-steps .loan-step-desc {
  font-size: 14px;
  margin: 0;
}

#loan-steps .loan-arrow {
  text-align: center;
  margin: 20px 0;
  /*height: 20px;*/
  position: relative;
}

#loan-steps .loan-arrow::after {
  content: "";
  display: block;
  width: 40px;
  height: 20px;
  margin: 0 auto;
  background: #007D47;
background: linear-gradient(180deg, rgba(0, 125, 71, 1) 0%, rgba(0, 145, 82, 1) 100%);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

@media screen and (max-width: 768px) {
  #loan-steps .loan-step {
    flex-direction: column;
  }
  #loan-steps .loan-step-number {
    width: 100%;
    flex-direction: row;
    justify-content: center;
    padding: 8px 0;
  }
  #loan-steps .loan-step-text {
    margin-bottom: 0;
    margin-right: 6px;
    font-size: 14px;
  }
  #loan-steps .loan-step-num {
    font-size: 16px;
  }
}

/* --- ローン notes --- */
#shoppingloan .notes{
	margin: 80px auto;
	max-width: 1080px;
}

#shoppingloan .notes ul{
	font-size: 1em;
}

#shoppingloan .notes .commonList span{
	color: #cc0000;
}


/* --- ローン faq --- */

#shoppingloan .faq-accordion {
    margin: 2rem auto 0;
	width: 100%;
}

#shoppingloan .faq-accordion .loan-toggle {
    display: none;
}

#shoppingloan .faq-accordion .loan-faq-blk {
    position: relative;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #999;
	background: #fff;
	line-height: 1.4;
}

#shoppingloan .faq-accordion .loan-question,
#shoppingloan .faq-accordion .loan-answer {
    transform: translateZ(0);
    transition: all 0.3s;
}

#shoppingloan .faq-accordion .loan-question {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 2.2rem 0.8rem 1rem;
}


#shoppingloan .faq-accordion .loan-question span,
#shoppingloan .faq-accordion .loan-answer span {
    font-size: 150%;
    color: #c30a01;
    width: 1.2em;
    flex-shrink: 0;
}


#shoppingloan .faq-accordion .loan-question:after,
#shoppingloan .faq-accordion .loan-question:before {
    content: "";
    position: absolute;
    right: 1.25rem;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 2px;
    height: 0.75rem;
    background-color: #999;
    transition: all 0.3s;
}

#shoppingloan .faq-accordion .loan-question:after {
    transform: rotate(90deg);
}

#shoppingloan .faq-accordion .loan-answer {
    max-height: 0;
    overflow: hidden;
}

#shoppingloan .faq-accordion .loan-answer div {
    display: flex; 
    align-items: flex-start;    /* ← 上揃え */
    gap: 0.6rem;
    padding: 1.5rem 1rem 1.5rem;
    line-height: 1.8;
    border-top: 1px solid #999;
}

#shoppingloan .faq-accordion .loan-toggle:checked + .loan-question + .loan-answer {
    max-height: 500px;
    transition: all 1.5s;
}

#shoppingloan .faq-accordion .loan-toggle:checked + .loan-question:before {
    transform: rotate(90deg) !important;
}


/*============================================================
  ブランド一覧
============================================================*/
#brands-lineup{}

#brands-lineup .lineup-lits ul{
	display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
	width: 100%;
	max-width: 650px;
	padding: 0;
	margin: 0 auto;
}

#brands-lineup .lineup-lits ul li{
	box-sizing: border-box;
	display: block;
	flex: 0 0 calc((100% - 40px) / 3 - 0.1px);
	border-radius: 12px;
	border: 1px solid #999;
	margin: 0;
	padding: 0;
	background: #fff;
}

#brands-lineup .lineup-lits ul li img{
	display: block;
	width: 100%;
	border-radius: 12px 12px 0 0;
}

#brands-lineup .lineup-lits ul li p{
	padding: 5px 7px;
	text-align: center;
	font-family: "Hiragino Mincho ProN", "游明朝", serif;
	font-size: 1.06em;
}


#brands-lineup .lineup-lits ul li a{
	display: block;
	text-decoration: none;
	color: #000;
	transition: opacity 0.3s ease;
}

#brands-lineup .lineup-lits ul li a:hover{
  opacity: 0.5;
}


@media (max-width: 768px) {
    #brands-lineup .lineup-lits ul li {
        flex: 0 0 calc((100% - 20px) / 2 - 0.1px);
    }
}

@media (max-width: 621px) {
	#brands-lineup .lineup-lits ul{
		gap: 40px;
	}

    #brands-lineup .lineup-lits ul li {
        flex: 0 0 100%;
    }
}



/*============================================================
  商品詳細アフターサービス
============================================================*/
.detail-service{
	width: 100%;
	max-width: 1180px;
	margin: 50px auto;
}

.detail-service h3{
	background: #333;
	display: block;
	text-align: center;
	color: #fff;
	width: 100%;
	padding: 10px 0;
	margin: 0 auto 50px;
}

.detail-service h4{
	text-align: center;
	font-size: 1.46em;
	margin-bottom: 30px;
}

@media (max-width: 768px) {
	.detail-service h4{
		text-align: left;
		font-size: 1.3em;
	}
}


.detail-service > .commonBlk {
	border-bottom: 1px solid #999;
	padding-bottom: 20px;
	margin-bottom: 60px;
}

.detail-service > .commonBlk_last{
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 70px;
}


#btnWrap_detail-after{
	padding-top: 30px;
}

/** btn_detail-after **/
.btn_detail-after {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	min-height: 130px;
	color: #fff;
	font-size: 18px;
	text-decoration: none;
	overflow: hidden;
	background-image: url("https://file001.shop-pro.jp/PA01520/267/img/img-bg-movement.jpg");
	background-size: cover;
	background-position: center;
	max-width: 1180px;
	margin: 0 auto;
}

.btn_detail-after::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  transition: background 0.3s ease;
}


.btn_detail-after span,
.btn_detail-after {
	position: relative;
	z-index: 2;
	font-size: 1.16em;
}

.btn_detail-after:hover::before {
	background: rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
	.btn_detail-after {
		min-height: 140px;
		max-width: 90%;
	}
	.btn_detail-after span,
	.btn_detail-after {
		font-size: 1.1em;
	}
}


/* ============================
   ウォッチメンテンス
============================ */
#maintenance{}


/* ============================
   決済関連
============================ */
table.creditcard-list {
  border-collapse: collapse; /* ← 線の二重化防止 */
  width: auto;
	max-width: 600px;
}


table.creditcard-list .table-heading th {
  background: #e6e6e6;
  color: #000;
  text-align: center;
  font-weight: bold;
  border: 1px solid #ccc;
  padding: 5px;
}

table.creditcard-list th {
  background: #f2f2f2; /* 薄い灰色 */
  color: #000;          /* 黒文字 */
  border: 1px solid #ccc;
  padding: 5px;
	min-width: 100px;
}

/* 通常セル */
table.creditcard-list td {
  border: 1px solid #ccc;
  padding: 10px;
}

/* ===== スマホ表示 ===== */
@media screen and (max-width: 640px) {

  table.creditcard-list {
    width: 100%;
  }

  table.creditcard-list th,
  table.creditcard-list td {
    display: block;
    width: 100%;
	min-width: auto;
	  border-bottom: none;
  }
	
  table.creditcard-list .table-heading {
    display: none;
  }

  table.creditcard-list .last td:last-child {
    width: 100%;
	  border-bottom: 1px solid #ccc;
  }
}


