/* ==========================================================================
   1. ベーススタイル設定
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Noto Serif JP", serif;
    line-height: 1.8;
    color: #220C00;
    background: #FFFDFA;
	letter-spacing: .05em;
	font-size: 15px;
}

.en{
	font-family: "Playfair Display", serif;
}

a {
    text-decoration: none;
	display: block;
	color: #220C00;
}

ul {
    list-style: none;
}

img{
	width: 100%;
	height: auto;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

/* 共通ボタン */
.btn-viewmore, .btn-contact {
    display: inline-block;
    padding: 12px 40px;
    background-color: #111;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: background-color 0.3s ease;
    margin-top: 1.5rem;
}

.btn-viewmore:hover, .btn-contact:hover {
    background-color: #444;
}

/* ==========================================================================
   1.ヘッダー
   ========================================================================== */
.site-header {
  position:fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
}

.header-inner {
  max-width: 1200px;
  height: 82px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo img {
  width: 105px;
  display: block;
}

.header-nav ul {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-nav a {
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-tel {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.tel-icon {
  font-size: 24px;
}

.header-tel strong {
  display: block;
  font-size: 22px;
  line-height: 1;
}

.header-tel small {
  display: block;
  font-size: 11px;
}

.header-btn {
  min-width: 190px;
  padding: 14px 24px;
  color: #fff;
  background: linear-gradient(180deg, #b88a25, #8a640f);
  border: 1px solid #d3b15b;
  border-radius: 3px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 2px 4px rgba(0,0,0,.18);
}

/* PCではスマホメニューを非表示 */
.hamburger,
.sp-menu {
  display: none;
}

.tel-icon{
	background: url(../img/tel-icon.png) top/cover no-repeat;
	width: 30px;
	height: 30px;
}

/* ==========================================================================
   1.ファーストビュー
   ========================================================================== */

.fv img {
  width: 100%;
  display: block;
}
.section{
	padding: 120px 0;
}
.section-top-head{
	text-align: center;
}
.section-top-head h3{
	font-size: 35px;
}
.section-top-head p{
	margin: 40px auto 0;
	max-width: 900px;
	line-height: 2;
	font-size: 18px;
}



/* ==========================
   コンタクト
========================== */

.assessment-section {
  background: url(../img/washi-bg.webp) top/cover no-repeat;
}

.assessment-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.assessment-title {
  text-align: center;
  margin-bottom: 55px;
}

.assessment-title img {
  max-width: 660px;
  width: 100%;
}

.assessment-cards {
  display: flex;
  gap: 50px;
  justify-content: center;
}

.assessment-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  min-height: 120px;
  padding: 22px 60px 22px 40px;
  display: flex;
  align-items: center;
  gap: 28px;
  background: rgba(255,255,255,.78);
  border: 1px solid #b88a25;
  text-decoration: none;
  color: #1f1712;
}

.assessment-card::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 55px;
  height: 55px;
  clip-path: polygon(
	  0 0,
	  0 100%,
	  100% 100%
	);
  background: linear-gradient(135deg, #E5CFAF, #845801);
}

.assessment-icon img {
  width: 82px;
}

.assessment-text {
  flex: 1;
  text-align: center;
}

.assessment-text span {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 40px;
  color: #fff;
  background: linear-gradient(180deg, #b88a25, #8b6110);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
}

.assessment-text strong {
  display: block;
  padding-bottom: 8px;
  border-bottom: 1px solid #b88a25;
  font-size: 23px;
  font-weight: 700;
}

.assessment-text small {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
}

.assessment-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #8b6110;
}

.assessment-arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 52%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 8px solid #fff;
}

.assessment-section .assessment-card:nth-child(1) .assessment-icon img{
	width: 100px;
}


/* ==========================
   買取品目
========================== */

.items-section {
  padding: 90px 0 100px;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 40px;
	font-weight: bold;
  letter-spacing: .08em;
  margin-bottom: 40px;
	position: relative;
	line-height: 1.3;
}
.section-title h2::after{
	background: url("../img/title-underline.webp")center/cover no-repeat;
	width: 200px;
	height: 15px;
	position: absolute;
	content: "";
	left: 50%;
	transform:translateX(-50%);
	bottom: -25px;
	background-size: contain;
}

.section-title img {
  width: 190px;
  margin-bottom: 0;
}

.section-title p {
  font-size: 15px;
  line-height: 2;
  font-weight: 600;
}

.items-flex {
  display: flex;
  gap: 20px;
	flex-wrap: wrap;
}

.items-card {
  border: 1px solid #9b6a22;
  background: rgba(255,255,255,.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
	width: calc(100% / 4 - 15px);
	padding: 30px 20px;
}

.items-card img {
  max-width: 130px;
  height: 125px;
  object-fit: contain;
  margin-bottom: 28px;
}

.items-card h3 {
  font-size: 20px;
  letter-spacing: .06em;
}

.items-btn-wrap {
  text-align: center;
  margin-top: 70px;
}

.items-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
    width:380px;
    height:70px;
    background:#4A2A18;
    color:#fff;
    text-decoration:none;
    margin:0 auto;
    border-radius:4px;
	font-weight: 600;
}
.items-btn .arrow{
    width:34px;
    height:34px;
    border-radius:50%;
    background:#fff;
    position:relative;
    flex-shrink:0;
}
.items-btn .arrow::before{
    content:"";
    position:absolute;
    top:50%;
    left:52%;
    transform:translate(-50%,-50%);
    width:0;
    height:0;
    border-top:4px solid transparent;
    border-bottom:4px solid transparent;
    border-left:6px solid #6A3609;
}


/* ==========================
   参考買取価格
========================== */
.price-section{
  padding:100px 0;
  background:url(../img/washi-bg.webp) center center / cover;
}

.price-flex{
  display: flex;
  gap: 15px;
	justify-content: space-between;
	align-items: center;
}

.price-card{
  display:block;
  text-decoration:none;
  background:#fff;
  transition:.3s;
	width: calc(100% / 4 - 15px);
}

.price-image{
  padding: 5px;
}

.price-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.price-body{
  padding: 10px 20px 20px;
  text-align: center;
}

.price-body h3{
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.price-value{
  padding:14px;
  text-align:center;

  background:
  radial-gradient(
    ellipse at center,
    #d3a332 0%,
    #9a6900 100%
  );

  color:#fff;
	line-height: 1.4;
}
.price-value span{
  display:block;
  font-size:14px;
}
.price-value strong{
  font-size:28px;
  font-weight:700;
}
.price-value strong span{
  display:inline;
  font-size:.7em;
}


/* ==========================
   買取奉行が選ばれる理由
========================== */
.reason-list{
	margin-top: 60px;
}

.reason-item{
  display:flex;
  align-items:stretch;
	margin-bottom: 30px;
}
.reason-item.reverse{
  flex-direction:row-reverse;
}
.reason-image{
  width:40%;
	border: 1px solid #c7a35d;
}
.reason-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.reason-content{
  width:60%;
  padding:60px 50px;
  border:1px solid #c7a35d;
  display:flex;
  flex-direction:column;
  justify-content:center;
	background: #fff;
}
.reason-head{
  display:flex;
  align-items:center;
  gap:30px;
  margin-bottom:30px;
}
.reason-head .num{
	font-size: 50px;
	font-weight: bold;
	color:#a87400;
	line-height: 1;
}
.reason-head span{
  display:block;
  font-size:14px;
}
.reason-head h3{
  font-size:30px;
  font-weight:700;
}
.reason-content p{
  line-height:2.2;
}



/* ==========================
   レスポンシブ
========================== */

.flow-list{
  display:flex;
  gap:30px;
  justify-content:center;
	margin-top: 80px;
}
.flow-card{
  position:relative;
  width:calc((100% - 60px) / 3);
}
.flow-step{
  position:absolute;
  top:-35px;
  left:50%;
  transform:translateX(-50%);
  width:80px;
  height:80px;
  border-radius:50%;
  background:
  radial-gradient(
    circle,
    #cda13c 0%,
    #94640b 100%
  );
  color:#fff;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  z-index:2;
}
.flow-step span{
  font-size:14px;
	line-height: 1;
}
.flow-step strong{
  font-size: 30px;
	line-height: 1;
}
.flow-card-inner{
  background:
  url(../img/flow-bg.webp)
  no-repeat center center;
  background-size:100% 100%;
  padding: 70px 35px 40px;
  text-align:center;
  min-height:520px;
}
.flow-img{
  margin-bottom:30px;
}

.flow-img img{
  width:100%;
  display:block;
}
.flow-card h3{
  font-size: 25px;
  margin-bottom: 15px;
}

.flow-line{
    width: 180px;
    margin: 0 auto 10px;
}

.flow-card p{
  line-height:2;
  font-size:15px;
	font-weight: bold;
}

.flow-btn-wrap{
  text-align:center;
  margin-top:70px;
}




/* ==========================
   よくある質問
========================== */

.white{
	color: #fff;
}

.faq-section {
  background: linear-gradient(
  to bottom,
  #26150E 0%,
  #4A2A18 45%,
  rgba(74, 42, 24, 0.85) 100%
);
}

.faq-list {
  margin-top: 70px;
}

.faq-item {
  margin-bottom: 15px;
}

.faq-question {
  width: 100%;
  min-height: 86px;
  padding: 0 48px 0 70px;
  border: none;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 42px;
  cursor: pointer;
	font-family: "Noto Serif JP", serif;
	color: #220C00;
}

.faq-q {
  width: 46px;
  height: 46px;
  background: #b58a2b;
  color: #fff;
  transform: rotate(45deg);
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: bold;
	position: relative;
}

.faq-q::before {
	position: absolute;
  content: "Q";
  transform: rotate(-45deg);
}

.faq-text {
  flex: 1;
  text-align: left;
  font-size: 18px;
  font-weight: 700;
}

.faq-plus {
  position: relative;
  width: 24px;
  height: 24px;
}

.faq-plus::before,
.faq-plus::after {
  content: "";
  position: absolute;
  background: #9b6a22;
  transition: .3s;
}

.faq-plus::before {
  width: 24px;
  height: 2px;
  top: 11px;
  left: 0;
}

.faq-plus::after {
  width: 2px;
  height: 24px;
  top: 0;
  left: 11px;
}

.faq-item.is-open .faq-plus::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-answer {
  display: none;
  background: #fff;
  padding: 0 70px 32px 158px;
}

.faq-answer p {
  line-height: 2;
}



/* ==========================
  フッター
========================== */

.footer {
  padding: 80px 0 25px;
  background: url("../img/washi-bg.webp") bottom/cover no-repeat;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.footer-logo img {
  width: 220px;
}

.footer-nav {
  margin-top: 70px;
}

.footer-nav ul {
  display: flex;
  justify-content: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav li {
  padding: 0 38px;
  border-right: 1px solid #b88a25;
}

.footer-nav li:first-child {
  border-left: 1px solid #b88a25;
}

.footer-nav a {
  color: #111;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}

.footer-cta {
  margin-top: 60px;
}

.footer-cta img {
  max-width: 720px;
  width: 100%;
  display: block;
  margin: 0 auto;
}

.footer-copy {
  margin-top: 85px;
  font-size: 11px;
  letter-spacing: .08em;
}

.sp_only{
	display: none;
}



/* ==========================
   レスポンシブ
========================== */

@media screen and (max-width: 1024px) {
	
	.hamburger {
    display: block;
  }

  .sp-menu {
    display: block;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: #fdf8ef;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
  }

  .sp-menu.is-active {
    opacity: 1;
    visibility: visible;
  }

  .site-header{
    position: fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
  }

  .header-inner{
    height:70px;
    padding:0 15px;
  }

  .header-logo img{
    width:90px;
  }

  .header-nav,
  .header-contact{
    display:none;
  }

  /* ハンバーガー */

  .hamburger{
    width:42px;
    height:42px;
    padding:0;
    border:none;
    background:none;
    position:relative;
    cursor:pointer;
	  z-index: 10;
  }

  .hamburger span{
    position:absolute;
    left:0;
    width:100%;
    height:2px;
    background:#2c2118;
    transition:.3s;
  }

  .hamburger span:nth-child(1){
    top:10px;
  }

  .hamburger span:nth-child(2){
    top:20px;
  }

  .hamburger span:nth-child(3){
    top:30px;
  }

  /* 開いた時 */

  .hamburger.is-active span:nth-child(1){
    transform:rotate(45deg);
    top:20px;
  }

  .hamburger.is-active span:nth-child(2){
    opacity:0;
  }

  .hamburger.is-active span:nth-child(3){
    transform:rotate(-45deg);
    top:20px;
  }

  /* ==========================
     SP Menu
  ========================== */

  .sp-menu{
    position:fixed;
    top: 0;
    left:0;
    width:100%;
    height:100vh;
    background:#fdf8ef;
    opacity:0;
    visibility:hidden;
    transition:.3s;
    overflow-y:auto;
    padding:40px 25px;
  }

  .sp-menu.is-active{
    opacity:1;
    visibility:visible;
  }

  .sp-menu ul{
    margin:0;
    padding:0;
    list-style:none;
  }

  .sp-menu li{
    border-bottom:1px solid #d9c9a6;
  }

  .sp-menu a{
    display:block;
    padding:18px 0;
    color:#2c2118;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
  }


  .sp-menu a.sp-btn{
    display:flex;
    justify-content:center;
    align-items:center;
    height:58px;
    margin-top:25px;
    background:
    linear-gradient(
      180deg,
      #c89d39 0%,
      #9b6e15 100%
    );
    color:#fff !important;
    border-radius:4px;
    font-weight:bold;
    text-decoration:none;
    box-shadow:
    0 3px 8px rgba(0,0,0,.15);
  }
	.sp-menu-logo{
	  text-align:center;
	  margin-bottom:30px;
	}

	.sp-menu-logo img{
	  width:140px;
	}
}

@media screen and (max-width: 768px) {
	.sp_only{
		display: block;
	}
	.pc_only{
		display: none;
	}
	.section{
		padding: 80px 0;
	}
	.section-top-head h3{
		font-size: 24px;
	}
	.container{
		margin: 0 15px;
	}
	.section-top-head p{
		margin-top: 30px;
	}
	.assessment-cards{
		flex-wrap: wrap;
		gap: 30px;
	}
	.assessment-card{
		max-width: 100%;
		display: flex;
		justify-content: center;
		gap: 10px;
		flex-wrap: wrap;
	}
	.assessment-text{
		flex: inherit;
	}
	.assessment-section .assessment-card:nth-child(1) .assessment-icon img {
		width: 130px;
	}
	.assessment-icon img {
		width: 90px;
	}
	.section-title h2{
		font-size: 32px;
	}
	.items-card{
		width: calc(100% / 2 - 15px);
		padding: 20px 20px;
	}
	.items-card h3{
		font-size: 18px;
	}
	.items-card img{
		margin-bottom: 15px;
	}
	.price-flex{
		flex-wrap: wrap;
		gap: 10px;
	}
	.price-card{
		width: calc(100% / 2 - 15px);
	}
	.price-value strong{
		font-size: 24px;
	}
	.price-value strong span{
		font-size: 14px;
		padding-left: 5px;
	}
	.reason-item{
		flex-wrap: wrap;
	}
	.reason-image, .reason-content{
		width: 100%;
	}
	.reason-content{
		padding: 30px 20px;
	}
	.reason-head h3{
		font-size: 24px;
	}
	.reason-head{
		gap: 15px;
		margin-bottom: 20px;
	}
	.flow-card{
		width: 100%;
		margin-top: 50px;
	}
	.flow-list{
		flex-wrap: wrap;
	}
	.faq-question{
		padding: 0 15px;
		gap: 20px;
	}
	.faq-answer{
		padding: 20px 15px;
	}
	.footer{
		padding: 50px 0 25px;
	}
	.footer-nav ul{
		flex-wrap: wrap;
		gap: 0px 15px;
	}
	.footer-nav li, .footer-nav li:first-child{
		border: none;
		padding: 10px;
	}
	.footer-logo img{
		width: 180px;
	}
	.footer-nav{
		margin-top: 40px;
	}
}

@media screen and (min-width: 769px) {
	.pc_only{
		display: block;
	}
}

