@charset "UTF-8";

/* ========================================
  共通スタイル
======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: inherit;
}

p {
	color: #614400 !important;
}


.sp_only{
	display:none;
}
.pc_only{
	display:block;
}

@media screen and (max-width: 768px) {
.sp_only{
	display:block;
}
.pc_only{
	display:none;
}
}


/* ========================================
  FV - ファーストビュー
======================================== */
.fv {
  width: 100%;
}

.fv__bg {
  width: 100%;
  min-height: 100vh;
  background-image: url(../img/fv-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.fv__content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
}

.fv__title {
  font-family: "Zen Old Mincho", serif;
  font-size: 5.6rem;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 40px;
  background: linear-gradient(90deg, #C78C00 0%, #614400 81.25%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fv__text {
  margin-bottom: 50px;
}

.fv__text p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  color: #8b7335;
  line-height: 2;
  margin-bottom: 16px;
}

.fv__text p:last-child {
  margin-bottom: 0;
}

.fv__btn {
  display: inline-block;
  font-family: "Noto Serif JP", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #614400;
  background: linear-gradient(91deg, #F0D28E 22.56%, #E3B854 96.4%);
  box-shadow: 0 8px 0 0 rgba(0, 0, 0, 0.19);
  padding: 20px 60px;
  border: none;
  outline: none;
  border-radius: 50px;
  transition: opacity 0.3s ease;
}

.fv__btn:hover {
  opacity: 0.8;
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
}

.modal-content {
  background: rgba(255, 255, 255, 0.98);
  margin: 10% auto;
  padding: 40px 36px;
  width: min(90%, 560px);
  max-width: 560px;
  border-radius: 40px;
  position: relative;
  border: 2px solid rgba(186, 147, 72, 0.9);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  color: #3a2b18;
}

.modal-content h2 {
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
}

.closeBtn {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  color: rgba(0, 0, 0, 0.55);
  padding: 4px 8px 12px 8px;
  transition: color 0.2s ease;
}

.closeBtn:hover {
  color: rgba(0, 0, 0, 0.85);
}


.info-row {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  gap: 24px;
}

.info-row span {
  flex: 0 0 60px;
  text-align: right;
  padding-right: 12px;
}

.info-row a {
  flex: 1;
  color: #000;
  text-decoration: underline;
  text-align: right;
}

/* モーダル内の電話番号を読みやすく */
.modal .info-row a[href^="tel:"] {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: right;
}
/* FV - SP */
@media screen and (max-width: 768px) {
  .modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0 auto;
    max-width: 90%;
  }

  .fv__bg {
    min-height: auto;
    aspect-ratio: 393 / 852;
    background-image: url("../img/fv-bg_sp.png"); /* SP用画像に差し替え */
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    align-items: flex-start;
  }

  .fv__content {
    padding: 40px 20px;
	text-align: center;
  }

  .fv__title {
    font-size: 3.8rem;
    margin-bottom: 24px;
  }

  .fv__text {
    margin-bottom: 30px;
  }

  .fv__text p {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #8b7335;
  }

  .fv__btn {
    font-size: 1.6rem;
    padding: 16px 40px;
  }

  .modal-content {
    padding: 40px 16px;
  }
}

/* ========================================
  SEC01 - セクション1
======================================== */
.sec01 {
  width: 100%;
  padding: 100px 0;
  background-color: #fff;
}

.sec01__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.sec01__text {
  flex: 1;
}

.sec01__title {
  font-family: "Zen Old Mincho", serif;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 40px;
  background: linear-gradient(90deg, #C78C00 0%, #614400 81.25%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sec01__body p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  color: #555;
  line-height: 2;
  margin-bottom: 20px;
}

.sec01__body p:last-child {
  margin-bottom: 0;
}

.sec01__image {
  flex-shrink: 0;
  width: 45%;
  max-width: 500px;
}

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

.sec04__content1{
	text-align: center;
	margin-bottom: 80px;
}

.vimeo {
  width: 90%;
  max-width: 900px; /* 任意（大きくなりすぎ防止） */
  aspect-ratio: 16 / 9;
}


/* SEC01 - SP */
@media screen and (max-width: 768px) {
  .sec01 {
    padding: 60px 0;
  }

  .sec01__inner {
    flex-direction: column;
    padding: 0 20px;
    gap: 40px;
  }

  .sec01__title {
    font-size: 3rem;
    margin-bottom: 24px;
	  text-align: center;
  }

  .sec01__body p {
    font-size: 1.4rem;
    margin-bottom: 16px;
  }

  .sec01__image {
    width: 100%;
    max-width: 100%;
  }
}

/* ========================================
  SEC02 - セクション2
======================================== */
.sec02 {
  width: 100%;
  padding: 100px 0;
  background: linear-gradient(180deg, var(--Color-White, #FFF) 50%, #FCF6E7 100%);
}

.sec02__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.sec02__header {
  text-align: center;
  margin-bottom: 60px;
}

.sec02__title {
  font-family: "Zen Old Mincho", serif;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 30px;
  background: linear-gradient(90deg, #C78C00 0%, #614400 81.25%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sec02__lead p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  color: #555;
  line-height: 2;
}

.sec02__cards {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.sec02__card {
  flex: 1;
  background-color: #fff;
  border: 1px solid #c9b370;
  border-radius: 16px;
  padding: 40px 30px;
}

.sec02__card-num {
  display: block;
  font-family: "Pinyon Script", cursive;
  font-size: 8rem;
  color: #c9a84c;
  line-height: 1;
  margin-bottom: 16px;
}

.sec02__card-image {
  width: 100%;
  aspect-ratio: 4 / 2;
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #e0e0e0;
}

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

.sec02__card-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #8b7335;
  line-height: 1.4;
  margin-bottom: 16px;
}

.sec02__card-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  color: #555;
  line-height: 1.8;
}

/* SEC02 - SP */
@media screen and (max-width: 768px) {
  .sec02 {
    padding: 60px 0;
  }

  .sec02__inner {
    padding: 0 20px;
  }

  .sec02__header {
    margin-bottom: 40px;
  }

  .sec02__title {
    
    font-size: 3rem;
    margin-bottom: 24px;
	  text-align: center;
  }

  .sec02__lead p {
    font-size: 1.4rem;
	  text-align: left;
  }

  .sec02__cards {
    flex-direction: column;
    gap: 20px;
  }

  .sec02__card {
    padding: 30px 20px;
  }

  .sec02__card-num {
    font-size: 6rem;
  }

  .sec02__card-image {
    aspect-ratio: 16 / 9;
  }

  .sec02__card-title {
    font-size: 2rem;
    margin-bottom: 16px;
  }

  .sec02__card-text {
    font-size: 1.4rem;
  }
}

/* ========================================
  SEC03 - セクション3
======================================== */
.sec03 {
  width: 100%;
  padding: 100px 0 0;
  background-color: #fff;
}

.sec03__inner {
  width: 100%;
}

.sec03__header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
  margin-bottom: 60px;

  background-image: url("../img/sec03-middle.png");
  background-repeat: no-repeat;
  background-position:  right bottom;
  background-size: contain;
}

.sec03__num {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-family: "Pinyon Script", cursive;
  font-size: 10rem;
  line-height: 1;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #C78C00 0%, #614400 81.25%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sec03__num::before,
.sec03__num::after {
  content: "";
  flex: 1;
  max-width: 200px;
  height: 1px;
  background: linear-gradient(90deg, #C78C00 0%, #614400 81.25%);
}

.sec03__catch {
  font-family: "Zen Old Mincho", serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #C78C00 0%, #614400 81.25%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sec03__label {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  background: #614400;
  padding: 8px 24px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.sec03__title {
  font-family: "Zen Old Mincho", serif;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 30px;
  background: linear-gradient(90deg, #C78C00 0%, #614400 81.25%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sec03__lead p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  color: #555;
  line-height: 2;
}

.sec03__middle-image {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 60px;
  padding: 0 40px;
}

.sec03__middle-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.sec03__image {
  width: 100%;
}

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

/* SEC03 - SP */
@media screen and (max-width: 768px) {
  .sec03 {
    padding: 60px 0 0;
  }

  .sec03__header {
    padding: 0 20px;
    margin-bottom: 40px;
  background-image: none;
}
  }

  .sec03__num {
    font-size: 6rem;
    margin-bottom: 16px;
    gap: 20px;
  }

  .sec03__num::before,
  .sec03__num::after {
    max-width: 80px;
  }

  .sec03__catch {
    font-size: 2.4rem;
    margin-bottom: 16px;
  }

  .sec03__label {
    font-size: 1.2rem;
    padding: 6px 20px;
    margin-bottom: 16px;
  }

  .sec03__title {
    
    font-size: 3rem;
    margin-bottom: 24px;
	  text-align: center;
  }

  .sec03__lead p {
    font-size: 1.4rem;
	  
	  text-align: left;
  }

  .sec03__middle-image {
    padding: 0 20px;
    margin-bottom: 40px;
  }

  .sec03__middle-image img {
    border-radius: 8px;
  }
}

/* ========================================
  SEC04 - セクション4
======================================== */
.sec04 {
  width: 100%;
  padding: 100px 0;
  background: linear-gradient(180deg, var(--Color-White, #FFF) 50%, #FCF6E7 100%);
}

.sec04__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.sec04__title {
  font-family: "Zen Old Mincho", serif;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 50px;
  background: linear-gradient(90deg, #C78C00 0%, #614400 81.25%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sec04__box {
  background-color: #fff;
  border: 1px solid #c9b370;
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 60px;
}

.sec04__box-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #614400;
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-bottom: 20px;
}

.sec04__box-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  color: #555;
  line-height: 2;
}

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

.sec04__text {
  flex: 1;
}

.sec04__text p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  color: #555;
  line-height: 2;
  margin-bottom: 16px;
}

.sec04__text p:last-child {
  margin-bottom: 0;
}

.sec04__image {
  flex-shrink: 0;
  width: 45%;
  max-width: 500px;
}

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

/* SEC04 - SP */
@media screen and (max-width: 768px) {
  .sec04 {
    padding: 60px 0;
  }

  .sec04__inner {
    padding: 0 20px;
  }

  .sec04__title {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }

  .sec04__box {
    padding: 24px;
    margin-bottom: 40px;
  }

  .sec04__box-title {
    font-size: 1.6rem;
    margin-bottom: 16px;
  }

  .sec04__box-text {
    font-size: 1.4rem;
  }

  .sec04__content {
    flex-direction: column;
    gap: 30px;
  }

  .sec04__text p {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }

  .sec04__image {
    width: 100%;
    max-width: 100%;
  }
}

/* ========================================
  SEC05 - セクション5（CTA）
======================================== */
.sec05 {
  width: 100%;
}

.sec05__bg {
  width: 100%;
  background-image: url(../img/sec05-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
}

.sec05__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.sec05__title {
  font-family: "Zen Old Mincho", serif;
  font-size: 4rem;
  font-weight: 900;
  color: #faf5e8;
  line-height: 1.4;
  margin-bottom: 40px;
}

.sec05__text {
  margin-bottom: 30px;
}

.sec05__text p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  color: #faf5e8 !important;
  line-height: 2;
  margin-bottom: 20px;
}

.sec05__text p:last-child {
  margin-bottom: 0;
}

.sec05__note {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  color: #faf5e8 !important;
  margin-bottom: 40px;
}

.sec05__btns {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.sec05__btn {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 20px 50px;
  border-radius: 50px;
  transition: opacity 0.3s ease;
}

.sec05__btn:hover {
  opacity: 0.8;
}

.sec05__btn--gold {
  color: #614400;
  background: linear-gradient(90deg, #c9a84c 0%, #a68932 100%);
}

.sec05__btn--outline {
  color: #faf5e8;
  background-color: rgba(0, 0, 0, 0.3);
  border: 2px solid #faf5e8;
}

/* SEC05 - SP */
@media screen and (max-width: 768px) {
  .sec05__bg {
    padding: 60px 0;
  }

  .sec05__inner {
    padding: 0 20px;
  }

  .sec05__title {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }

  .sec05__text p {
    font-size: 1.4rem;
    margin-bottom: 16px;
	  
	  text-align: left;
  }

  .sec05__note {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }

  .sec05__btns {
    flex-direction: column;
    gap: 16px;
  }

  .sec05__btn {
    font-size: 1.6rem;
    padding: 16px 40px;
    width: 100%;
  }
}

/* ========================================
  SEC06 - セクション6
======================================== */
.sec06 {
  width: 100%;
  padding: 100px 0 0;
  background-color: #fff;
}

.sec06__inner {
  width: 100%;
}

.sec06__header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
  margin-bottom: 60px;
	

  background-image: url("../img/sec06-middle.png");
  background-repeat: no-repeat;
  background-position:  left bottom;
  background-size: contain;
}

.sec06__num {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-family: "Pinyon Script", cursive;
  font-size: 10rem;
  line-height: 1;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #C78C00 0%, #614400 81.25%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sec06__num::before,
.sec06__num::after {
  content: "";
  flex: 1;
  max-width: 200px;
  height: 1px;
  background: linear-gradient(90deg, #C78C00 0%, #614400 81.25%);
}

.sec06__catch {
  font-family: "Zen Old Mincho", serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #C78C00 0%, #614400 81.25%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sec06__label {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  background: #614400;
  padding: 8px 24px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.sec06__title {
  font-family: "Zen Old Mincho", serif;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 30px;
  background: linear-gradient(90deg, #C78C00 0%, #614400 81.25%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sec06__lead p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  color: #555;
  line-height: 2;
  margin-bottom: 20px;
}

.sec06__lead p:last-child {
  margin-bottom: 0;
}

.sec06__middle-image {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 60px;
  padding: 0 40px;
}

.sec06__middle-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.sec06__image {
  width: 100%;
}

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

/* SEC06 - SP */
@media screen and (max-width: 768px) {
  .sec06 {
    padding: 60px 0 0;
  }

  .sec06__header {
    padding: 0 20px;
    margin-bottom: 40px;
	  background-image: none;
  }

  .sec06__num {
    font-size: 6rem;
    margin-bottom: 16px;
    gap: 20px;
  }

  .sec06__num::before,
  .sec06__num::after {
    max-width: 80px;
  }

  .sec06__catch {
    font-size: 2.4rem;
    margin-bottom: 16px;
  }

  .sec06__label {
    font-size: 1.2rem;
    padding: 6px 20px;
    margin-bottom: 16px;
  }

  .sec06__title {
    font-size: 3rem;
    margin-bottom: 24px;
	  text-align: center;
  }

  .sec06__lead p {
    font-size: 1.4rem;
    margin-bottom: 16px;
	  
	  text-align: left;
  }

  .sec06__middle-image {
    padding: 0 20px;
    margin-bottom: 40px;
  }

  .sec06__middle-image img {
    border-radius: 8px;
  }
}

/* ========================================
  SEC07 - セクション7
======================================== */
.sec07 {
  width: 100%;
  padding: 100px 0;
  background: linear-gradient(180deg, var(--Color-White, #FFF) 50%, #FCF6E7 100%);
}

.sec07__inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

.sec07__title {
  font-family: "Zen Old Mincho", serif;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 50px;
  background: linear-gradient(90deg, #C78C00 0%, #614400 81.25%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sec07__cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 50px;
}

.sec07__card {
  display: flex;
  align-items: stretch;
  background-color: #fff;
  border: 1px solid #c9b370;
  border-radius: 12px;
  overflow: hidden;
}

.sec07__card-image {
  flex-shrink: 0;
  width: 300px;
}

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

.sec07__card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 40px;
}

.sec07__card-title {
  font-family: "Zen Old Mincho", serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #8b7335;
  margin-bottom: 16px;
}

.sec07__card-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  color: #555;
  line-height: 1.9;
}

.sec07__btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.sec07__btn {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 18px 50px;
  border-radius: 50px;
  transition: opacity 0.3s ease;
}

.sec07__btn:hover {
  opacity: 0.8;
}

.sec07__btn--gold {
  color: #fff;
  background: linear-gradient(to right, #c9a84c 0%, #a68932 100%);
}

.sec07__btn--outline {
  color: #8b7335;
  background-color: #fff;
  border: 2px solid #c9b370;
}

.sec07__note {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #8b7335;
  text-align: center;
  line-height: 1.8;
}

/* SEC07 - SP */
@media screen and (max-width: 768px) {
  .sec07 {
    padding: 60px 0;
  }

  .sec07__inner {
    padding: 0 20px;
  }

  .sec07__title {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }

  .sec07__cards {
    gap: 16px;
    margin-bottom: 40px;
  }

  .sec07__card {
    flex-direction: column;
  }

  .sec07__card-image {
    width: 100%;
    height: 180px;
  }

  .sec07__card-content {
    padding: 20px;
  }

  .sec07__card-title {
    font-size: 2.2rem;
    margin-bottom: 12px;
  }

  .sec07__card-text {
    font-size: 1.4rem;
  }

  .sec07__btns {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
  }

  .sec07__btn {
    font-size: 1.5rem;
    padding: 16px 40px;
    width: 100%;
    text-align: center;
  }

  .sec07__note {
    font-size: 1.4rem;
  }
}

/* ========================================
  SEC08 - セクション8
======================================== */
.sec08 {
  width: 100%;
  padding: 100px 0 0;
  background-color: #fff;
}

.sec08__inner {
  width: 100%;
}

.sec08__header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
  margin-bottom: 60px;
	

  background-image: url("../img/sec08-middle.png");
  background-repeat: no-repeat;
  background-position:  right bottom;
  background-size: contain;
}

.sec08__num {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-family: "Pinyon Script", cursive;
  font-size: 10rem;
  line-height: 1;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #C78C00 0%, #614400 81.25%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sec08__num::before,
.sec08__num::after {
  content: "";
  flex: 1;
  max-width: 200px;
  height: 1px;
  background: linear-gradient(90deg, #C78C00 0%, #614400 81.25%);
}

.sec08__catch {
  font-family: "Zen Old Mincho", serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #C78C00 0%, #614400 81.25%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sec08__label {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  background: #614400;
  padding: 8px 24px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.sec08__title {
  font-family: "Zen Old Mincho", serif;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 30px;
  background: linear-gradient(90deg, #C78C00 0%, #614400 81.25%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sec08__lead p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  color: #555;
  line-height: 2;
  margin-bottom: 20px;
}

.sec08__lead p:last-child {
  margin-bottom: 0;
}

.sec08__middle-image {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 60px;
  padding: 0 40px;
}

.sec08__middle-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.sec08__image {
  width: 100%;
}

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

/* SEC08 - SP */
@media screen and (max-width: 768px) {
  .sec08 {
    padding: 60px 0 0;
  }

  .sec08__header {
    padding: 0 20px;
    margin-bottom: 40px;
	  background-image: none;
  }

  .sec08__num {
    font-size: 6rem;
    margin-bottom: 16px;
    gap: 20px;
  }

  .sec08__num::before,
  .sec08__num::after {
    max-width: 80px;
  }

  .sec08__catch {
    font-size: 2.4rem;
    margin-bottom: 16px;
  }

  .sec08__label {
    font-size: 1.2rem;
    padding: 6px 20px;
    margin-bottom: 16px;
  }

  .sec08__title {
    font-size: 3rem;
    margin-bottom: 24px;
	  text-align: center;
  }

  .sec08__lead p {
    font-size: 1.4rem;
    margin-bottom: 16px;
	  
	  text-align: left;
  }

  .sec08__middle-image {
    padding: 0 20px;
    margin-bottom: 40px;
  }

  .sec08__middle-image img {
    border-radius: 8px;
  }
}

/* ========================================
  SEC09 - セクション9
======================================== */
.sec09 {
  width: 100%;
  padding: 100px 0;
  background: linear-gradient(180deg, var(--Color-White, #FFF) 50%, #FCF6E7 100%);
}

.sec09__inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

.sec09__title {
  font-family: "Zen Old Mincho", serif;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 50px;
  background: linear-gradient(90deg, #C78C00 0%, #614400 81.25%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sec09__cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 50px;
}

.sec09__card {
  display: flex;
  align-items: stretch;
  background-color: #fff;
  border: 1px solid #c9b370;
  border-radius: 12px;
  overflow: hidden;
}

.sec09__card-image {
  flex-shrink: 0;
  width: 300px;
}

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

.sec09__card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 40px;
}

.sec09__card-title {
  font-family: "Zen Old Mincho", serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #8b7335;
  margin-bottom: 16px;
}

.sec09__card-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  color: #555;
  line-height: 1.9;
}

.sec09__btns {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.sec09__btn {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 18px 50px;
  border-radius: 50px;
  transition: opacity 0.3s ease;
}

.sec09__btn:hover {
  opacity: 0.8;
}

.sec09__btn--gold {
  color: #fff;
  background: linear-gradient(to right, #c9a84c 0%, #a68932 100%);
}

.sec09__btn--outline {
  color: #8b7335;
  background-color: #fff;
  border: 2px solid #c9b370;
}

/* SEC09 - SP */
@media screen and (max-width: 768px) {
  .sec09 {
    padding: 60px 0;
  }

  .sec09__inner {
    padding: 0 20px;
  }

  .sec09__title {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }

  .sec09__cards {
    gap: 16px;
    margin-bottom: 40px;
  }

  .sec09__card {
    flex-direction: column;
  }

  .sec09__card-image {
    width: 100%;
    height: 180px;
  }

  .sec09__card-content {
    padding: 20px;
  }

  .sec09__card-title {
    font-size: 2.2rem;
    margin-bottom: 12px;
  }

  .sec09__card-text {
    font-size: 1.4rem;
  }

  .sec09__btns {
    flex-direction: column;
    gap: 16px;
  }

  .sec09__btn {
    font-size: 1.5rem;
    padding: 16px 40px;
    width: 100%;
    text-align: center;
  }
}

/* ========================================
  SEC10 - セクション10
======================================== */
.sec10 {
  width: 100%;
  padding: 100px 0;
  background-color: #fff;
}

.sec10__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.sec10__header {
  text-align: center;
  margin-bottom: 60px;
}

.sec10__subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #C78C00 0%, #614400 81.25%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sec10__title {
  font-family: "Zen Old Mincho", serif;
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 40px;
  background: linear-gradient(90deg, #C78C00 0%, #614400 81.25%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sec10__lead p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  color: #555;
  line-height: 2;
  margin-bottom: 16px;
}

.sec10__lead p:last-child {
  margin-bottom: 0;
}

.sec10__content {
  display: flex;
  border: 1px solid #c9b370;
  border-radius: 12px;
  overflow: hidden;
}

.sec10__info {
  flex: 1;
  padding: 40px;
}

.sec10__info-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 30px;
  background: linear-gradient(90deg, #C78C00 0%, #614400 81.25%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sec10__info-block {
  margin-bottom: 30px;
}

.sec10__info-subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #614400;
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-bottom: 16px;
}

.sec10__info-list {
  list-style: none;
}

.sec10__info-list li {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  color: #555;
  line-height: 1.8;
  padding-left: 1em;
  position: relative;
}

.sec10__info-list li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.sec10__info-btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
}

.sec10__info-btn {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 16px 30px;
  border-radius: 50px;
  text-align: center;
  transition: opacity 0.3s ease;
}

.sec10__info-btn:hover {
  opacity: 0.8;
}

.sec10__info-btn--gold {
  color: #fff;
  background: linear-gradient(90deg, #c9a84c 0%, #a68932 100%);
}

.sec10__info-btn--outline {
  color: #8b7335;
  background-color: #fff;
  border: 2px solid #c9b370;
}

.sec10__image {
  flex-shrink: 0;
  width: 50%;
}

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

/* SEC10 - SP */
@media screen and (max-width: 768px) {
  .sec10 {
    padding: 60px 0;
  }

  .sec10__inner {
    padding: 0 20px;
  }

  .sec10__header {
    margin-bottom: 40px;
  }

  .sec10__subtitle {
    font-size: 1.4rem;
    margin-bottom: 16px;
  }

  .sec10__title {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }

  .sec10__lead p {
    font-size: 1.4rem;
	  
	  text-align: left;
  }

  .sec10__content {
    flex-direction: column;
  }

  .sec10__info {
    padding: 24px;
  }

  .sec10__info-title {
    font-size: 2rem;
    margin-bottom: 24px;
  }

  .sec10__info-subtitle {
    font-size: 1.4rem;
  }

  .sec10__info-list li {
    font-size: 1.3rem;
  }

  .sec10__info-btn {
    font-size: 1.3rem;
    padding: 14px 24px;
  }

  .sec10__image {
    width: 100%;
  }
}

/* ========================================
  SEC11 - セクション11（画像のみ）
======================================== */
.sec11 {
  width: 100%;
}

.sec11__image {
  width: 100%;
}

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

/* ========================================
  SEC12 - セクション12
======================================== */
.sec12 {
  width: 100%;
  padding: 100px 0 0;
  background-color: #fff;
}

.sec12__inner {
  width: 100%;
}

.sec12__header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
  margin-bottom: 60px;
	

  background-image: url("../img/sec12-middle.png");
  background-repeat: no-repeat;
  background-position:  left bottom;
  background-size: contain;
}

.sec12__script {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-family: "Pinyon Script", cursive;
  font-size: 8rem;
  line-height: 1;
  margin-bottom: 30px;
  background: linear-gradient(90deg, #C78C00 0%, #614400 81.25%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sec12__script::before,
.sec12__script::after {
  content: "";
  flex: 1;
  max-width: 200px;
  height: 1px;
  background: linear-gradient(90deg, #C78C00 0%, #614400 81.25%);
}

.sec12__catch {
  font-family: "Zen Old Mincho", serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #C78C00 0%, #614400 81.25%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sec12__label {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  background: #614400;
  padding: 8px 24px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.sec12__title {
  font-family: "Zen Old Mincho", serif;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 30px;
  background: linear-gradient(90deg, #C78C00 0%, #614400 81.25%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sec12__lead p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  color: #555;
  line-height: 2;
  margin-bottom: 20px;
}

.sec12__lead p:last-child {
  margin-bottom: 0;
}

.sec12__middle-image {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 60px;
  padding: 0 40px;
}

.sec12__middle-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.sec12__image {
  width: 100%;
}

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

/* SEC12 - SP */
@media screen and (max-width: 768px) {
  .sec12 {
    padding: 60px 0 0;
  }

  .sec12__header {
    padding: 0 20px;
    margin-bottom: 40px;
	  background-image: none;
  }

  .sec12__script {
    font-size: 5rem;
    margin-bottom: 20px;
    gap: 20px;
  }

  .sec12__script::before,
  .sec12__script::after {
    max-width: 80px;
  }

  .sec12__catch {
    font-size: 2.4rem;
    margin-bottom: 16px;
  }

  .sec12__label {
    font-size: 1.2rem;
    padding: 6px 20px;
    margin-bottom: 16px;
  }

  .sec12__title {
    font-size: 3rem;
    margin-bottom: 24px;
	  text-align: center;
  }

  .sec12__lead p {
    font-size: 1.4rem;
    margin-bottom: 16px;
	  
	  text-align: left;
  }

  .sec12__middle-image {
    padding: 0 20px;
    margin-bottom: 40px;
  }

  .sec12__middle-image img {
    border-radius: 8px;
  }
}

/* ========================================
  SEC13 - セクション13
======================================== */
.sec13 {
  width: 100%;
  padding: 100px 0;
  background: linear-gradient(180deg, var(--Color-White, #FFF) 50%, #FCF6E7 100%);
}

.sec13__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.sec13__title {
  font-family: "Zen Old Mincho", serif;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 50px;
  background: linear-gradient(90deg, #C78C00 0%, #614400 81.25%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sec13__cards {
  display: flex;
  justify-content: space-between;
  gap: 2%;
  margin-bottom: 60px;
}

.sec13__card {
  flex: 1;
  background-color: #fff;
  border: 1px solid #c9b370;
  border-radius: 16px;
  padding: 2%;
  text-align: center;
}

.sec13__card-title {
  font-family: "Zen Old Mincho", serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #C78C00 0%, #614400 81.25%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sec13__card-image {
  width: 100%;
  margin-bottom: 20px;
}

.sec13__card-image img {
  width: 100%;
  height: auto;
}

.sec13__card-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  color: #555;
  line-height: 1.8;
}

.sec13__btns {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.sec13__btn {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 20px 50px;
  border-radius: 50px;
  transition: opacity 0.3s ease;
}

.sec13__btn:hover {
  opacity: 0.8;
}

.sec13__btn--gold {
  color: #fff;
  background: linear-gradient(90deg, #c9a84c 0%, #a68932 100%);
  border: none;
  outline: none;
}

.sec13__btn--outline {
  color: #8b7335;
  background-color: #fff;
  border: 2px solid #c9b370;
}

/* SEC13 - SP */
@media screen and (max-width: 768px) {
  .sec13 {
    padding: 60px 0;
  }

  .sec13__inner {
    padding: 0 20px;
  }

  .sec13__title {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }

  .sec13__cards {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }

  .sec13__card {
    padding: 24px;
  }

  .sec13__card-title {
    font-size: 2rem;
    margin-bottom: 16px;
  }

  .sec13__card-text {
    font-size: 1.3rem;
  }

  .sec13__btns {
    flex-direction: column;
    gap: 16px;
  }

  .sec13__btn {
    font-size: 1.6rem;
    padding: 16px 40px;
    width: 100%;
	  text-align: center;
  }
}

/* ========================================
  SEC14 - セクション14（お客様の声）
======================================== */
.sec14 {
  width: 100%;
  padding: 100px 0;
  background-color: #fff;
}

.sec14__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.sec14__header {
  margin-bottom: 50px;
}

.sec14__title {
  font-family: "Zen Old Mincho", serif;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #C78C00 0%, #614400 81.25%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
	
}

.sec14__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  color: #555;
  line-height: 2;
}

.sec14__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.sec14__card {
  border: none;
  border-top: 1px solid #ccc;
  padding: 30px;
  background-color: #fff;
}

.sec14__card-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
  background: linear-gradient(90deg, #C78C00 0%, #614400 81.25%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sec14__card-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.sec14__card-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sec14__card-icon {
  width: 24px;
  height: auto;
}

.sec14__card-name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  color: #555;
}

/* SEC14 - SP */
@media screen and (max-width: 768px) {
  .sec14 {
    padding: 60px 0;
  }

  .sec14__inner {
    padding: 0 20px;
  }

  .sec14__header {
    margin-bottom: 30px;
  }

  .sec14__title {
    font-size: 3rem;
    margin-bottom: 24px;
	  text-align: center;
  }

  .sec14__lead {
    font-size: 1.4rem;
  }

  .sec14__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sec14__card {
    padding: 24px;
  }

  .sec14__card-title {
    font-size: 1.4rem;
  }

  .sec14__card-text {
    font-size: 1.3rem;
  }
}

/* ========================================
  SEC15 - セクション15（創業者メッセージ）
======================================== */
.sec15 {
  width: 100%;
}

.sec15__inner {
  display: flex;
}

.sec15__image {
  flex-shrink: 0;
  width: 50%;
}

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

.sec15__content {
  flex: 1;
  background: linear-gradient(180deg, var(--Color-White, #FFF) 50%, #FCF6E7 100%);
  padding: 80px 60px;
}

.sec15__subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
  background: linear-gradient(90deg, #C78C00 0%, #614400 81.25%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sec15__title {
  font-family: "Zen Old Mincho", serif;
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 40px;
  background: linear-gradient(90deg, #C78C00 0%, #614400 81.25%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sec15__text {
  margin-bottom: 40px;
}

.sec15__text p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  color: #555;
  line-height: 2;
  margin-bottom: 20px;
}

.sec15__text p:last-child {
  margin-bottom: 0;
}

.sec15__author {
  text-align: right;
}

.sec15__author-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 8px;
  color: #614400;
}

.sec15__author-name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(90deg, #C78C00 0%, #614400 81.25%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* SEC15 - SP */
@media screen and (max-width: 768px) {
  .sec15__inner {
    flex-direction: column;
  }

  .sec15__image {
    width: 100%;
  }

  .sec15__content {
    padding: 40px 20px;
  }

  .sec15__subtitle {
    font-size: 1.4rem;
  }

  .sec15__title {
    font-size: 3rem;
    margin-bottom: 24px;
	  text-align: center;
  }

  .sec15__text {
    margin-bottom: 30px;
  }

  .sec15__text p {
    font-size: 1.4rem;
    margin-bottom: 16px;
  }

  .sec15__author-title {
    font-size: 1.2rem;
  }

  .sec15__author-name {
    font-size: 1.8rem;
  }
}

/* ========================================
  SEC16 - セクション16（よくあるご質問）
======================================== */
.sec16 {
  width: 100%;
  padding: 100px 0;
  background-color: #fff;
}

.sec16__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 60px;
}

.sec16__header {
  flex-shrink: 0;
  width: 35%;
}

.sec16__title {
  font-family: "Zen Old Mincho", serif;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #C78C00 0%, #614400 81.25%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sec16__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  color: #555;
  line-height: 2;
}

.sec16__faq {
  flex: 1;
}

.sec16__faq-item {
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid #ccc;
}

.sec16__faq-item:last-child {
  padding-bottom: 0;
}

.sec16__faq-q {
  font-family: "Noto Serif JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.6;
  margin-bottom: 16px;
  color: #614400;
}

.sec16__faq-a p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  color: #555;
  line-height: 2;
}

/* SEC16 - SP */
@media screen and (max-width: 768px) {
  .sec16 {
    padding: 60px 0;
  }

  .sec16__inner {
    flex-direction: column;
    padding: 0 20px;
    gap: 40px;
  }

  .sec16__header {
    width: 100%;
  }

  .sec16__title {
    font-size: 3rem;
    margin-bottom: 24px;
	  text-align: center;
  }

  .sec16__lead {
    font-size: 1.4rem;
  }

  .sec16__faq-item {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .sec16__faq-q {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }

  .sec16__faq-a p {
    font-size: 1.3rem;
  }
}

/* ========================================
  SEC17 - セクション17
======================================== */
.sec17 {
  width: 100%;
  padding: 100px 0;
  background: linear-gradient(180deg, var(--Color-White, #FFF) 50%, #FCF6E7 100%);
}

.sec17__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

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

.sec17__title {
  font-family: "Zen Old Mincho", serif;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 30px;
  background: linear-gradient(90deg, #C78C00 0%, #614400 81.25%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sec17__lead p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  color: #8b7335;
  line-height: 2;
}

.sec17__cards {
  display: flex;
  gap: 2%;
  align-items: stretch;
	margin-bottom: 80px;
}

.sec17__card {
  flex: 1;
  background-color: #fff;
  border: 1px solid #c9b370;
  border-radius: 16px;
    display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  padding: 2% ;
  min-height: 420px; 
}

.sec17__card-num {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #8b7335;
  padding-bottom: 10px;
  border-bottom: 1px solid #c9b370;
  margin-bottom: 20px;
}

.sec17__card-title {
  font-family: "Zen Old Mincho", serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 16px;
  background: linear-gradient(90deg, #C78C00 0%, #614400 81.25%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sec17__card-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.sec17__card-image {
  width: 100%;
	margin-bottom: 0px;
}

.sec17__card-image img {
  display: block;
  max-width: 100%;
  height: auto;
}

.sec17__btns {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.sec17__btn {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 20px 50px;
  border-radius: 50px;
  transition: opacity 0.3s ease;
}

.sec17__btn:hover {
  opacity: 0.8;
}

.sec17__btn--gold {
  color: #fff;
  background: linear-gradient(90deg, #c9a84c 0%, #a68932 100%);
}

.sec17__btn--outline {
  color: #8b7335;
  background-color: #fff;
  border: 2px solid #c9b370;
}

/* SEC17 - SP */
@media screen and (max-width: 768px) {
  .sec17 {
    padding: 60px 0;
  }

  .sec17__inner {
    padding: 0 20px;
  }

  .sec17__header {
    margin-bottom: 30px;
  }

  .sec17__title {
    font-size: 3rem;
    margin-bottom: 24px;
	  text-align: center;
  }

  .sec17__lead p {
    font-size: 1.4rem;
	  
	  text-align: left;
  }

  .sec17__cards {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }

  .sec17__card {
    padding: 24px;
  }

  .sec17__card-title {
    font-size: 2rem;
  }

  .sec17__card-text {
    font-size: 1.3rem;
  }

  .sec17__btns {
    flex-direction: column;
    gap: 16px;
  }

  .sec17__btn {
    font-size: 1.6rem;
    padding: 16px 40px;
    width: 100%;
	  text-align: center;
  }
}

/* ========================================
  SEC18 - セクション18（店舗情報）
======================================== */
.sec18 {
  width: 100%;
}

.sec18__bg {
  width: 100%;
  background-image: url(../img/sec18-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
}

.sec18__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 60px;
}

.sec18__title {
  flex-shrink: 0;
  font-family: "Zen Old Mincho", serif;
  font-size: 4rem;
  font-weight: 900;
  color: #faf5e8;
  line-height: 1.4;
}

.sec18__content {
  flex: 1;
}

.sec18__shop-name {
  font-family: "Zen Old Mincho", serif;
  font-size: 3rem;
  font-weight: 700;
  color: #faf5e8;
  padding-bottom: 8px;
  border-bottom: 1px solid #faf5e8;
  margin-bottom: 30px;
}

.sec18__info {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

.sec18__info-block {
  flex: 1;
}

.sec18__info-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #faf5e8;
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-bottom: 16px;
}

.sec18__info-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  color: #faf5e8 !important;
  line-height: 1.8;
  margin-bottom: 16px;
}

.sec18__info-text:last-child {
  margin-bottom: 0;
}

.sec18__info-list {
  list-style: none;
}

.sec18__info-list li {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  color: #faf5e8;
  line-height: 1.8;
  padding-left: 1em;
  position: relative;
}

.sec18__info-list li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.sec18__btns {
  display: flex;
  gap: 20px;
}

.sec18__btn {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 20px 50px;
  border: none;
  outline: none;
  border-radius: 50px;
  transition: opacity 0.3s ease;
}

.sec18__btn:hover {
  opacity: 0.8;
}

.sec18__btn--gold {
  color: #614400;
  background: linear-gradient(90deg, #c9a84c 0%, #a68932 100%);
}

.sec18__btn--outline {
  color: #faf5e8;
  background-color: rgba(0, 0, 0, 0.3);
  border: 2px solid #faf5e8;
}

.sec18__info-text a {
  color: #fff;
  text-decoration: underline;
}

/* SEC18 - SP */
@media screen and (max-width: 768px) {
  .sec18__bg {
    padding: 60px 0;
  }

  .sec18__inner {
    flex-direction: column;
    padding: 0 20px;
    gap: 30px;
  }

  .sec18__title {
    font-size: 2.4rem;
  }

  .sec18__shop-name {
    font-size: 2rem;
    padding-bottom: 12px;
    margin-bottom: 24px;
  }

  .sec18__info {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
  }

  .sec18__info-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }

  .sec18__info-text {
    font-size: 1.3rem;
  }

  .sec18__info-list li {
    font-size: 1.3rem;
  }

  .sec18__btns {
    flex-direction: column;
    gap: 16px;
  }

  .sec18__btn {
    font-size: 1.6rem;
    padding: 16px 40px;
    width: 100%;
    text-align: center;
  }
}

/* ========================================
  FOOTER
======================================== */
.footer {
  width: 100%;
  padding: 40px 0;
  background-color: #fff;
}

.footer__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  text-align: center;
}

.footer__copyright {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 16px;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 30px;
  list-style: none;
}

.footer__links a {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  color: #333;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

.footer__links a:hover {
  opacity: 0.7;
}

/* FOOTER - SP */
@media screen and (max-width: 768px) {
  .footer {
    padding: 30px 0;
  }

  .footer__inner {
    padding: 0 20px;
  }

  .footer__copyright {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  .footer__links {
    gap: 20px;
  }

  .footer__links a {
    font-size: 1.2rem;
  }
}
