/* =========================================
   Design System
========================================= */

:root {

  /* ===== Colors ===== */
  --bg-main: #ffffff;
  --bg-section: #f5f2ed;

  --color-accent: #c98758;
  --color-accent-hover: #a5673d;

  --text-main: #3a332c;
  --text-point: #754c24;	
  --text-sub: #7a6f65;

  /* ===== Layout Width ===== */
  --inner-base: 1100px;
  --inner-wide: 1400px;

  /* ===== Spacing ===== */
  --section-padding: clamp(80px, 7vw, 120px);
  --section-padding-alt: clamp(90px, 8vw, 140px);

  --card-gap: 40px;

  /* ===== Typography ===== */
  --font-min: "Cormorant Garamond", serif;
  --font-ja: "Noto Sans JP", sans-serif;
}


/* =========================================
   Base Typography
========================================= */

body {
  font-family: var(--font-ja);
  font-size: clamp(16px, 1.1vw, 17px);
  line-height: 1.9;
  font-weight: 400;
  color: var(--text-main);
  background: var(--bg-main);
  letter-spacing: 0.03em;
}

@media (max-width: 390px) {
	body {
		line-break: strict;
		overflow-wrap: break-word;
		word-break: normal;
		font-size: 15px;
	}	
}
@media (max-width: 320px) {
	body {
		font-size: 14px;
	}	
}
.sp { display: none; }
br.pc{
	display: inline;
}
@media (max-width: 390px){
  .sp { display: inline; }
  br.pc{ display: none;}
}
/* =========================================
   Heading Styles
========================================= */

/* 明朝見出し */
.heading-min {
  font-family: var(--font-min);
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.2;
}

/* Gothic見出し */
.heading-got {
  font-family: var(--font-got);
  font-weight: 500;
  line-height: 1.6;
}

.main-ttl-en{
	font-family: "Gloock", serif;	
	font-weight: 700;
	letter-spacing: 0.12em;
	color: rgba(117,76,36,0.25);
	font-size: clamp(1.15rem, 0.957rem + 0.86vw, 1.6rem);
	line-height: 1.3;
	margin-bottom: 30px!important;
}

.main-ttl-ja{
  font-family:var(--font-min); 
	color: var(--text-point);
	font-size:clamp(1.8rem, 1.457rem + 1.52vw, 2.6rem);
}
.min-en{
	font-family: "Gloock", serif;	
	font-weight: 400;
	letter-spacing: 0.12em;
	color: rgba(117,76,36,0.25);
	font-size: clamp(1rem, 0.907rem + 0.39vw, 1.2rem);
	line-height: 1.3;		
	margin-bottom: 50px;
}

@media(max-width:360px){
	.main-ttl-ja{
		font-size:1.5rem;		
	}	
}

/* =========================================
   Section Layout
========================================= */

section {
	padding: var(--section-padding) 0;
	position: relative;
}

.section-alt {
	background: var(--bg-section);
	padding: var(--section-padding-alt) 0;
}
.anchor{
	scroll-margin-top: 80px;
}

/* =========================================
   Inner Width
========================================= */

.inner {
  width: 92%;
  max-width: var(--inner-base);
  margin: 0 auto;
}

.inner-wide {
  width: 95%;
  max-width: var(--inner-wide);
  margin: 0 auto;
}

.mt30{
	margin-top: 30px;
}
/* =========================================
   Card / Grid Spacing
========================================= */
.card-wrap {
  display: grid;
  gap: var(--card-gap);
}


/* =========================================
   Button
========================================= */

.btn {
  display: inline-block;
  padding: 16px 48px;
  background: var(--color-accent);
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.08em;
  transition: background 0.3s ease;
}

.btn:hover {
  background: var(--color-accent-hover);
}

.linebtn{
	position:relative;
	color:var(--text-sub);
    padding: 8px 48px;
	display:inline-block;
    text-decoration: none;
    outline: none;	
	margin-top: 20px;
}
.linebtn::before,
.linebtn::after {
	content:'';
	position:absolute;
	border:solid var(--text-sub);
	width:100%;
	height:0;
	transition:all 0.3s ease-in-out;
}
.linebtn::before{
	top:0;
	left:0;
	border-width:1px 0 0 1px;
}

.linebtn::after{
	bottom:0;
	right:0;
	border-width:0 1px 1px 0;
}
.linebtn:hover{
	background: #999;
	color: #fff;
}
.linebtn:hover::before,
.linebtn:hover::after{
	width:calc(100% - 2px);
	height:calc(100% - 2px);
	border-color:#666
}


/* =========================================
   Utility
========================================= */

.text-sub {
  color: var(--text-sub);
}

.bg-alt {
  background: var(--bg-section);
}

ul,ol{
	list-style: none;
	padding: 0;
}
a{
	text-decoration: none;
	transition: .4s;
	color: var(--text-main);
}
.pmg p{
	margin-bottom: 10px;
}
.t_center{
	text-align: center;
}
span.ib{
	display: inline-block;
}
/* =========================================
   H1
========================================= */
.visually-hidden{
  position:absolute;
  width:1px;
  height:1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
}

/* =========================================
   Header Layout
========================================= */
#header{
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 999;
	text-shadow: 0 2px 6px rgba(0,0,0,0.35);
	transition: background 0.3s ease, color 0.3s ease;
}
#header a{
	color: #fff;
}

.header-inner {
	width:98%;
	max-width: 1600px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 80px;
}
.header-logo{
	font-family: "Noto Serif JP", serif;
	font-weight: 600;
	font-size: clamp(1.563rem, 1.418rem + 0.61vw, 1.875rem);
	letter-spacing: 0.08em;
	line-height: 1.4;
}
.header-logo small {
  display: block;
	font-size: 12px;
  letter-spacing: 0.2em;
	text-align: center;
}

.m1{
	display: flex;
	align-items: center;
	font-family: var(--font-min);
	font-weight: 600;
}
/* ナビ */
.header-nav{
	margin-right: 36px;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, -4.568rem + 9.09vw, 2.25rem);
}

/* 右側TELエリア */
.header-contact {
  text-align: center;
	line-height: 1.2;
}

/* TEL */
.header-tel {
	font-size: 26px;
	letter-spacing: 0.05em;
}
.header-tel span{
	font-size: 18px;
}

/* 営業時間 */
.header-hours {
	font-size: 12px;
	margin-top: 4px;
	line-height: 1.4;
	color: #fff;
}

/*header 色変え*/
#kasou #header,
#header.is-dark {
	background: var(--bg-main);
	text-shadow: 0 2px 6px rgba(0,0,0,0);
}
#kasou #header a,
#header.is-dark a,
#header.nav-open a {
  color: var(--text-main);
}
#kasou #header .header-hours,
#header.is-dark .header-hours {
  color: var(--text-sub);
}
@media(max-width:1023px){
	.m1{display: none;}
}

@media(max-width:375px){
	.header-inner {
		height: 60px;
	}
	.header-logo{
		font-size: 1.4rem
	}
	.header-logo small {
		font-size: 10.5px;
	}	
}
/*===========================================
	Mobile
==========================================*/
@media(min-width:1024px){
	.openbtn{display: none;}
}
.openbtn{
	position: relative;
	cursor: pointer;
    width: 50px;
    height:50px;
	border-radius: 5px;
}

/*ボタン内側*/
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 10%;
    height: 2px;
    border-radius: 2px;
	background: #fff;
  	width: 80%;
	box-shadow: 0 1px 2px rgba(0,0,0,0.3);
  }

.openbtn span:nth-of-type(1) {
	top:8px;	
}

.openbtn span:nth-of-type(2) {
	top:20px;
}

.openbtn span:nth-of-type(3) {
	top:32px;
}

/*activeクラスが付与されると線が回転して×に*/

.openbtn.active span:nth-of-type(1) {
	background:var(--text-main);
    top: 18px;
    transform: translateY(6px) rotate(-45deg);
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;/*真ん中の線は透過*/
}

.openbtn.active span:nth-of-type(3){
	background:var(--text-main);	
    top: 30px;
    transform: translateY(-6px) rotate(45deg);
}



/* ハンバーガー展開メニュー全体 */
#g-nav{
    position:fixed;
    z-index: 88;
	top:-200%;
    left:0;
	width:100%;
    height: 100%;/*ナビの高さ*/
	background:var(--bg-section);
	transition: all 0.6s;
	padding-top: 150px;
}
#g-nav.panelactive{
    top: 0;
}

/* メニューリスト */
.menuwrap{
	width: 90%;
	max-width: 450px;
	margin: 0 auto;
}
.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.menu-list li{
	padding: 0 2rem 10px;
	border-bottom: 1px dotted var(--text-sub);
	position: relative;
	
}
.menu-list li::before{
	position: absolute;
	content: '\f054';
	font-family: "Font Awesome 6 Free";
	font-weight: 600;
	right: 2rem;
	top: 0;
	transition: .4s;
}
.menu-list li a {
  text-decoration: none;
  color: #333; /* サイト全体文字色に合わせる */
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.3s;
	font-family: var(--font-min);
	display: block;
}

.menu-list li:hover::before{
	right: 1rem;
	transition: .4s;
}
.menu-list li a:hover {
  color: #c98758; /* サイトアクセント色 */
}

/* CTAボタン */
.mobile-cta {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-top: 40px;
}

/* 電話ボタン */

.btn-phone {
	display: block;
	text-align: center;
	color: #c98758;
	color: var(--color-accent);
	padding: 15px 0;
	border-radius: 12px;
	font-size: 1.5rem;
	letter-spacing: 0;
	line-height: 1;
	margin-bottom: 0.625rem;
	font-weight: 600;
	transition: 0.3s;
}
.btn-phone .num{
	font-size: clamp(2rem, 1.882rem + 0.5vw, 2.2rem);
}
.btn-phone:hover {
	background: #e2d8cc;
}

/* WEB問い合わせボタン */
.btn-web {
	display: block;
	text-align: center;
	background: var(--color-accent); /* サイトアクセント色 */
	color: #fff;
	padding: 15px 0;
	border-radius: 12px;
	font-weight: bold;
	text-decoration: none;
	transition: 0.3s;
}

.btn-web:hover {
  background: var(--color-accent-hover);
}

@media(max-width:375px){
	#g-nav{
		padding-top: 80px;
	}	
	.menu-list li a {
	  font-size: .98rem;
	}
	.btn-phone {
		font-size: 1.1rem;
	}	
	.btn-phone .num{
		font-size: 1.5rem
	}
	.mobile-cta {
		gap: 10px;
		margin-top: 25px;
	}	
	.btn-web{
		margin-bottom: 30px;
	}
}

/*============================================
 FootCTA
============================================*/
#footcta {
    position: relative;
    background:
        linear-gradient(to top, transparent 50%, #fff 50%), /* 上半分透明/背景色 */
        url('../img/footer-bg.jpg') no-repeat center center;    /* 下半分に画像 */
    background-size: cover, cover; /* 画像サイズ調整 */
}

.ctabox {
    background-color: #fff;
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.ctalead {
    font-size: 1rem;
    margin-bottom: 40px;
    line-height: 1.6;
	font-weight: 600;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
}
.cta_btn {
    width: 100%;
    max-width: 28.75rem;
    background: #f5f2ed;
    background: var(--bg-section);
    padding: 2.5rem clamp(1.8rem, 1.476rem + 1.37vw, 2.5rem);
    position: relative;
    text-align: center;
}
.cta_btn a {
    width: 100%;
    height: 100%;
	display: block;
}
.cta_btn a::before {
    content: "";
    width: 2.5rem;
    height: 0.25rem;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 0;
    background: #c98758;
    background: var(--color-accent);
}
.cta_btn .ttl {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    line-height: 1;
	font-weight: 600;
}
.cta_tel .tel {
    color: #c98758;
    color: var(--color-accent);
    font-size: 1.5rem;
    letter-spacing: 0;
    line-height: 1;
    margin-bottom: 0.625rem;
    display: block;
	font-weight: 600;
}
.cta_tel .num{
	font-size: 2.2rem;
}
.cta_btn .btn-org {
    border-radius: 9999px;
    color: #fff;
    background-color: #c98758;
    background-color: var(--color-accent);
	border: 1px solid var(--color-accent);
    font-size: 1.25rem;
    letter-spacing: 0.06em;
    padding: 1.5rem;
    line-height: 1.4;
    height: auto;
    width: 100%;
    display: block;
    max-width: 344px;
    margin-left: auto;
    margin-right: auto;
    transition: all .4s ease-out;
}
.cta_btn .btn-org:hover{
	background-color: #fff;
	color: var(--color-accent);
    transition: all .4s ease-out;
}
@media(max-width:1023px){
	.cta-buttons {
		flex-wrap: wrap;
	}	
	.cta_tel .tel {
		font-size: clamp(1.1rem, 0.864rem + 0.99vw, 1.5rem);
	}
	.cta_tel .num{
		font-size: clamp(1.8rem, 1.564rem + 0.99vw, 2.2rem);
	}
}
@media(max-width:449px){
	.ctabox {
    	padding: 50px 20px;
	}
}
@media(max-width:390px){
	.cta_btn {
		padding: 1.8rem 1rem;
	}
	.cta_btn .ttl {
		font-size: 1.1rem;
	}
	.cta_tel .tel {
		font-size: 1rem;
	}
	.cta_tel .num{
		font-size: 1.5rem;
	}	
	.cta_btn .btn-org {
		font-size: 1.15rem;
		padding: 0.8rem 1.5rem;	
	}
}
@media(max-width:360px){
	.cta_btn {
		padding: 1.5rem .8rem;
	}
	.cta_btn .ttl {
		font-size: 1.05rem;
	}
	.cta_tel .tel {
		font-size: .98rem;
	}
	.cta_tel .num{
		font-size: 1.32rem;
	}	
	.cta_btn .btn-org {
		font-size: 1.1rem;
		padding: 0.5rem 1.3rem;	
	}
}
/*============================================
	Footer
============================================*/
#footer{
	background: #3a3029;
	padding: 40px 0;
	color: #fff;
}
.footerlogo{
	text-align: center;
	font-family: var(--font-min);
	margin-bottom: 20px;
}
.footerlogo h3{
	font-size: 2.25rem;
}
.footerlogo p{
	font-size: .95rem;
}
.footerinfo{
	text-align: center;
	font-size: .95rem;
	margin-bottom: 20px;
}
.footernav{
	border-top: 1px solid #c98758;
	padding: 15px 0;
}
.footernav ul{
	display: flex;
	justify-content: center;
	gap:15px;
}
.footernav a{
	color: #fff;
}

.copy{
	padding-bottom:10px;
	background: #3a3029;
	color: var(--text-sub);
	text-align: center;
	font-size: 13px;
}
@media(max-width:449px){
	.footernav ul{
		flex-wrap: wrap
	}	
}
@media(max-width:375px){
	.footerlogo h3 {
		font-size: 1.85rem;
	}
}
/*============================================
	page-top
============================================*/
#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	border-radius: 5px;
	width: 60px;
	height: 60px;
	color: #fff;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:0.6rem;
	transition:all 0.3s;
	position: relative;
}

#page-top a::after{
	position: absolute;
	content: '';
	display: block;
	width:40%;
	aspect-ratio:1/1;
	transform: rotate(-45deg);
	border-top:1px solid #808080;
	border-right:1px solid #808080;
	bottom: 15px;
}


#page-top a::before{
	position: absolute;
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    border-bottom: 1px solid #808080;
    bottom: 10px;
}

#page-top a:hover::after{
	animation: loop2 800ms linear infinite;
}

@keyframes loop2 {
	
	0%{transform: translateY(0) rotate(-45deg);}
	50%{transform: translateY(-10px) rotate(-45deg);}
  100%{transform: translateY(0) rotate(-45deg);}
}

/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 30px;
	bottom:18px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}

/*　上に上がる動き　*/

#page-top.UpMove{
	animation: UpAnime-pagetop 0.5s forwards;
}
@keyframes UpAnime-pagetop{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove{
	animation: DownAnime-pagetop 0.5s forwards;
}
@keyframes DownAnime-pagetop{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}



@media(max-width:800px){
	
	#page-top {
		right: 10px;
    	bottom: 10px;
	}
	
	#page-top a {
    	width: 40px;
		height: 40px;
	}
	
}











