@charset "UTF-8";
/* CSS Document *//* ベース設定 */

html, body {
  margin: 0;
  padding: 0;
ruby-position: under;
}
body {
  font-family: "heisei-kaku-gothic-std", sans-serif;

  color: #8B743D; /* テキストカラー指定 */
  background-color: #fff;
	overflow-x: hidden;
	position: relative;
	 font-feature-settings: "palt";
	font-weight: 300;
}



a {
	text-decoration: none;
	color: #8B743D;
}



button {
  all: unset; /* すべてリセットしてカスタムデザインへ */
  cursor: pointer;
}

.spOnly{
	display: none;
	
}

.pcOnly{
	display:block;
	
}

@media (max-width:768px){
	.spOnly{
		display: block;
	}
	.pcOnly{
	display:none;
	
}
}




.underline-custom {
  position: relative;
  text-decoration: none; /* 元の下線を消す */
}

.underline-custom::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px; /* 下線の位置を調整 */
  width: 100%;
  height: 1px; /* 下線の太さを調整 */
  background-color: #8B743D; /* 下線の色を調整 */
}
.underline-custom:hover::after {
  background-color: #7a6432;
}







/* ヘッダー */


.logo {
  position: fixed; /* スクロールしても固定 */
  left: 0;         /* 左端ぴったり */
  top: 0;          /* 上端ぴったり */
  height: 90vh;    /* 画面の高さの90% → 下に10%余白 */
}

.logo img {
  height: 100%;    /* 親要素に合わせて縦方向にスケーリング */
  width: auto;     /* 比率を維持 */
  display: block;  /* 画像下の余白をなくす */
}

body.menu-open {
  position: fixed;
  width: 100%;
  overflow: hidden;
}


.menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #8B743D;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 9998;
  padding: 0 20px;
  overflow-y: auto;
  pointer-events: none;

  /* 追加：上下左右中央に配置するためのFlexbox */
  display: flex;
  justify-content: center;  /* 横方向中央 */
  align-items: center;      /* 縦方向中央 */
}

.menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

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

  display: flex;             /* 横並び */
  gap: 30px;                 /* テキスト間の余白 */
}

.menu ul li {
  margin-bottom: 0;          /* 横並びなので縦マージンなし */
}

.menu ul li a {
  font-size: 1.1em;
  color: #fff;
  text-decoration: none;
  font-weight:500;
  letter-spacing: 0.2em;
}



 .underline-animation a {
      position: relative;
      display: inline-block;
      cursor: pointer;
    }

    .underline-animation a::after {
      content: '';
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%) scaleX(0);
      transform-origin: center;
      width: 100%;
      height: 1px;
      background-color: #fff; /* 下線の色 */
      transition: transform 0.4s ease;
    }

    .underline-animation a:hover::after {
      transform: translateX(-50%) scaleX(1);
    }



/* ハンバーガー */

.vertical-hamburger {
  position: fixed;
  top: 20px;      /* お好みで上下位置調整 */
  right: 20px;    /* 右端から20px内側 */
  display: flex;
  gap: 6px;
  align-items: flex-start;
  justify-content: center;
  height: 30px;
  background: transparent;
  z-index: 9999;  /* 他の要素より前面に */
	 cursor: pointer;
}


.vertical-hamburger span {
  width: 3px;
  height: 30px;
  background-color: #8B743D; /* ← 通常時の色 */
  display: block;
  border-radius: 1.5px;
  transition: all 0.4s ease, background-color 0.3s ease;
  transform-origin: center;
}

/* メニューが開いている時（active状態）は白に */
.vertical-hamburger.active span {
  background-color: #fff;
}


/* 真ん中の線だけ10px下にずらす */
.vertical-hamburger .middle {
  margin-top: 10px;
}

/* ハンバーガーを開いた状態のクラス */
.vertical-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, -2.5px);
}

.vertical-hamburger.active span:nth-child(2) {
	transform: translate(0, 10px);
  opacity: 0; /* 真ん中は消す */
}

.vertical-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(-10px, -2.5px);
}





/* ページ遷移 */
body.page-enter {
  opacity: 0;
  transition: all 0.6s ease;
  visibility: hidden;
}

body.page-enter.page-enter-active {
  opacity: 1;
  visibility: visible;
}

body.page-exit.active {
  opacity: 0;
  transition: all 0.6s ease;
}



/* メインビジュアル */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5vw;
  text-align: center;
  box-sizing: border-box;
	
	padding-left: clamp(80px, 8vw, 140px); /* ロゴ幅に合わせる */
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.hero h2 {
  font-size: clamp(18px, 3vw, 36px);
  color: #8B743D;
  margin: 200px 0 0;
	  letter-spacing: 0.1em;
	font-weight: 700;
	
}



span.sub-jp{
  display: block;     /* 下に表示させる */
  font-size: 0.6em;    /* 小さくする */
	font-weight: 400;
	margin: -20px 0 0 0;
	padding: 0;
	letter-spacing: 0.1em;
	
}



.line {
  width: 1px;
  height: 190px; /* 最大高さ */
  background-color: #8B743D;
  margin: 50px auto 2px;
  transform-origin: top;
  transform: scaleY(0);
}

.dotted-circle-line {
  width: 2px;
  height: 50px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px; /* 点の間隔調整 */
}

.dotted-circle-line .dot {
  width: 2px;   /* 点のサイズ */
  height: 2px;
  border-radius: 50%;
  background-color: #8B743D;
  opacity: 0; /* 初期は見えない */
}





/*/////////////////////////////////////////////  */


/* セクション */
.section {
  display: flex;
  justify-content: center;  /* 右側領域内で中央揃え */
padding-left: clamp(60px, 2vw, 140px); /* ロゴ幅に合わせる */

}

.section h2 {
  font-size: 1.8em;
  letter-spacing: 0.13em;
	font-weight: 700;
  color: #8B743D;
  margin: 100px 0 40px 0;
	
}



.section h3 {
  font-size: 1.5em;
	margin-bottom: 30px;
	margin-top: 50px;
	letter-spacing: 0.1em;
	font-weight: 700;

	
}



.lefter {
	text-align: left;
	
}

.center{
	text-align: center;
	
}

#toha h3.center{
	text-align: center;
	line-height: 1.6em;
	font-size: 1.2em;
	letter-spacing: 0.15em;
	font-weight: 600;
}

.section h4{
  font-size: 1.2em;
	letter-spacing: 0.1em;
	margin: 0;
	padding: 0;
	
	
	
}

.section p {
  font-size: 1em;
	letter-spacing: 0.1em;
	margin: 0;
	padding: 0;
	
}

.section dt{
	font-size: 1.2em;
	font-weight: 600;
	letter-spacing: 0.1em;
	margin: 0 0 30px 0;
	padding: 0;
	
}

.section span.sub-jp{
  display: block;     /* 下に表示させる */
  font-size: 0.6em;    /* 小さくする */
	font-weight: 400;
	margin-top: 0.5em;
}

.section dd{
	margin: 0;
	padding: 0;
	letter-spacing: 0.1em;
	font-weight: 300;
	
}





.clearfix{
	clear: both;
}



.container {
max-width: 1024px;       /* コンテンツ幅固定 */
  width: 100%;
  padding: 2rem;
	margin: 0 auto;
	
}



#list .container {
 position: relative;
}







/*///////////////////////////////////////////// ボタン01 */

.custom-button {
	
  margin: 0 auto;           /* ← 中央揃えの基本 */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 360px;
  height: 80px;
  background-color: #8B743D;
  font-weight: bold;
  font-size: 16px;
letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  padding-right: 0; /* ドットとラインのスペース確保 */
  box-sizing: border-box;
  overflow: visible;
transition: 0.4s ease;
	color: #fff;
}

.custom-button .btn-line {
  position: absolute;
  top: 50%;
  right: 0; /* ドット6個分+間隔分避ける */
  transform: translateY(-50%);
  width: 30px;
  height: 1.5px;
  background-color: white;
  z-index: 1;
}

.custom-button .btn-dots {
  position: absolute;
  top: 50%;
  right: -32px;
  transform: translateY(-50%);
  display: flex;
  gap: 5px;
  z-index: 2;
  pointer-events: none;
}

.custom-button .btn-dot {
  width: 2px;
  height: 2px;
  background-color: #8B743D;
  border-radius: 50%;
}

.custom-button:hover {
  background-color: #7a6432; 
	letter-spacing: 0.3em;
	transition: 0.4s ease;
}




/*///////////////////////////////////////////// ボタン02 */

.custom-button02 {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 280px;
  height: 50px;
  background-color: #8B743D;
  color: white;
  font-weight: bold;
  font-size: 16px;
letter-spacing: 0.1em;
  border: none;
  cursor: pointer;


  padding-right: 0; /* ドットとラインのスペース確保 */
  box-sizing: border-box;
  overflow: visible;
	
	transition: 0.4s ease;
}

.custom-button02 .btn-line {
  position: absolute;
  top: 50%;
  right: 0; /* ドット6個分+間隔分避ける */
  transform: translateY(-50%);
  width: 30px;
  height: 1.5px;
  background-color: white;
  z-index: 1;
}

.custom-button02 .btn-dots {
  position: absolute;
  top: 50%;
  right: -32px;
  transform: translateY(-50%);
  display: flex;
  gap: 5px;
  z-index: 2;
  pointer-events: none;
}

.custom-button02 .btn-dot {
  width: 2px;
  height: 2px;
  background-color: #8B743D;
  border-radius: 50%;
}

.custom-button02:hover {
	transition: 0.4s ease;
  background-color: #7a6432; 
		letter-spacing: 0.3em;
}

/*/////////////////////////////////////////////itembtn  */

.item_btn{
	margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 280px;
  height: 50px;
  background-color: #8B743D;
  font-size: 16px;
letter-spacing: 0.1em;
  border: none;
  cursor: pointer;

  box-sizing: border-box;
  overflow: visible;
	
	transition: 0.4s ease;
	margin-bottom: 10%;
}


.item_btn:hover {
	transition: 0.4s ease;
  background-color: #7a6432; 
		letter-spacing: 0.3em;
}

.item_btn a {
	color: #fff;
	font-weight: 400;
}






/* デザインとは */

#toha{
	margin: 0 auto;
	padding-top: 0;
	padding-bottom: 0;
	overflow: hidden;
}

.tohaP {
  max-width: 1024px;
	min-width: 760px;
	margin: 0 auto;
  min-height: 300px;
  padding: 30px;
  background-image: url("../img/bg.svg");
  background-repeat: repeat;           /* ← 縦横どちらにも繰り返す */
  background-size: 198px auto;         /* ← 各ブロックの横幅は198px、高さは自動 */
  background-position: left top;       /* ← 繰り返しの起点 */
  box-sizing: border-box;
}

.tohaP img {
  width: 100%;
}


/* 透過白ベース */
.base {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9); /* 白の90%透過 */
  padding: 20px; /* 内側に余白を追加 */
  box-sizing: border-box;
}

/* 画像は横幅いっぱいに */
.base img {
  width: 100%;
  height: auto;
}


.base-chker {
	 background-image: url("../img/bg.svg");
	 background-color: rgba(255,255,255,0.6);
  background-blend-mode: lighten;
  background-repeat: repeat;           /* ← 縦横どちらにも繰り返す */
  background-size: 198px auto;         /* ← 各ブロックの横幅は198px、高さは自動 */
  background-position: left top;       /* ← 繰り返しの起点 */
	margin-top: 80px;
		max-width: 100%;
	overflow: hidden;
	height: 400px;
	 padding-left: clamp(60px, 2vw, 140px); /* ロゴ幅に合わせる */
}

.base-chker-list {
 background-image: url("../img/bg.svg");
	 background-color: rgba(255,255,255,0.6);
  background-blend-mode: lighten;
  background-repeat: repeat;           /* ← 縦横どちらにも繰り返す */
  background-size: 198px auto;         /* ← 各ブロックの横幅は198px、高さは自動 */
  background-position: left top;       /* ← 繰り返しの起点 */
	margin-top: 80px;
		max-width: 100%;
	overflow: hidden;
	height: 200px;
	 padding-left: clamp(60px, 2vw, 140px); /* ロゴ幅に合わせる */
}



/* 自分たちのこと */



#about{
	width: 1024px;
margin: 0 auto;
	padding-top: 0;
	padding-bottom: 0;
	overflow: hidden;
}


#about .dt-s{
	font-size: 1em;
	margin-bottom: 10px;
	
	font-weight: 500;
}

#about .dt-s:last-of-type{
	margin-top: 30px;
}


.about_plofile{
	float: left;
	width:260px;
	margin-top: 50px;
	
	


}

.about_plofile img{
	height: 160px;
}



.about_plofile dt{
	margin: 0 0 5px 0;
	padding: 0;
	letter-spacing: 0.1em;
	font-size: 1em;
	font-weight: 500;
	
	
}

.about_plofile dd{
	margin:0;
	padding: 0;
	letter-spacing: 0.08em;
	font-size: 0.6em;
	
	
	
}

.about_txt ul{
	width:520px;
	clear: both;
	list-style: none;
	margin: 0;
	padding: 20px 0 0;
	font-size: 0.8em;
	letter-spacing: 0.1em;
}


.about_txt ul::before{
	 content: "";
  display: block;
  border-bottom: 1px dotted #8B743D;
  margin:0 0 30px; /* 下線の余白（任意） */
	
}
.about_txt ul::after{
	 content: "";
  display: block;
  border-bottom: 1px dotted #8B743D;
	padding: 0;
margin:30px 0 0; /* 下線の余白（任意） */
	
}

#about .contactBtnBox{
	font-size: 0.8em;
	font-weight: 600;
	letter-spacing: 0.03em;
	clear: both;
	width:auto;
	text-align: left;
	padding-top: 50px;
	
}



#service{
margin: 0 auto;
	padding-top: 0;
	padding-bottom: 0;
	overflow: hidden;
}


#service .base-chker {

	 background-image: url("../img/bg.svg");
	 background-color: rgba(255,255,255,0.6);
  background-blend-mode: lighten;
  background-repeat: repeat;           /* ← 縦横どちらにも繰り返す */
  background-size: 198px auto;         /* ← 各ブロックの横幅は198px、高さは自動 */
  background-position: left top;       /* ← 繰り返しの起点 */
	margin-top: 80px;
	width: 100%;
	height: 100px;
	 padding-left: clamp(60px, 2vw, 140px); /* ロゴ幅に合わせる */

}


#service .container p{
	margin: 5px 0 30px 0 ;
	padding: 0;
}





#service .serviceBl::after{
	 content: "";
  display: block;
 border-bottom: 1px dotted #8B743D;
	padding: 30px 0 0;
margin:10px 0 0; /* 下線の余白（任意） */

}

#service .serviceBl:last-of-type::after{

  border-bottom:none;

}

#service h3 {
	font-weight: 300;
	
}

#service h3::after{
 content: "";
  display: block;
	border-bottom: thick double #8B743D;
  
	padding: 0;
margin:5px 0 0; /* 下線の余白（任意） */

	
}
#service dl{
	float: left;
	margin-top: 95px;
	width: 50%;
	position: relative;
}



#service dd{
	margin-top: 30px;
	margin-bottom: 150px;
}

.policy_ill{
	width: 45%;
	float: left;
	text-align: right;
	margin-top: 100px;
	
}



#service .contactBtnBox{
		font-size: 0.8em;
	font-weight: 600;
	letter-spacing: 0.03em;
	position: absolute;
	clear: both;
	width: 50%;
	text-align: left;
bottom:0;
	left: 0;
	

}


/* フッター */
.site-footer {
  color: #8B743D;
	margin: 0 auto;
  font-size: 1em;
	padding-left: clamp(60px, 2vw, 140px); 
	
	
}

.site-footer dt::before{
 content: "";
  display: block;
  border-bottom: 1px solid #8B743D;
  margin:30px 0; /* 下線の余白（任意） */
	

}

.site-footer dt{
	font-size: 1.2em;
	font-weight: 600;
	letter-spacing: 0.1em;
	margin: 0 0 20px 0;
	padding: 0;
}

.site-footer dd{
	font-size: 0.8em;
	margin-bottom: -5%;
	margin: 10px 0 0;
	padding: 0;
	letter-spacing: 0.1em;
	line-height: 1.6em;
}

.site-footer span.copyright{
	 display: block; /* spanなので blockにする */
  text-align: right;
  font-size: 0.6em;
  color: #8B743D;
	letter-spacing: 0.1em;
}


.footer-bg {
  width: 100%;
	height: 50px;
	display: block;
  background-image: url("../img/bg.svg");
  background-color: rgba(255,255,255,0);
  background-blend-mode: lighten;
  background-repeat: repeat;
  background-size: 198px auto;
  background-position: left top;
  z-index: -1;
}

/*
footer::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: 90px;
  background-image: url("../img/bg.svg");
  background-color: rgba(255,255,255,0);
  background-blend-mode: lighten;
  background-repeat: repeat;
  background-size: 198px auto;
  background-position: left top;
  z-index: -1;

}*/



#page-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  display: none; /* 最初は非表示 */
}


#page-top a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #8B743D;
}

#page-top .arrow {
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(-45deg); /* 上向き斜め線 */
  margin-bottom: 8px;
}

#page-top .text {
  writing-mode: vertical-rl;
  font-size: 14px;
  letter-spacing: 0.1em;
}



/*///////////////////////////////////////////////titlearea/////*/

.title-area{
height: 30vh;
text-align: center;
	 padding-left: clamp(60px, 2vw, 140px); /* ロゴ幅に合わせる */
	  display: flex;
  justify-content: center;  /* 横方向中央 */
  align-items: center;      /* 縦方向中央 */
}




/*///////////////////////////////////////////////item/////*/

#list p{
	margin: 0;
	padding: 0;
	
}


#list h3{
	font-size: 0.9em;
	letter-spacing: 0.1em;
	line-height: 1.3em;
	text-align: left;
	margin: 10px 0 0 0;
	padding: 0;
	font-weight:normal;

	
}

#list h4{
	font-size: 0.6em;
	text-align: left;
	margin: 10px 0 0 ;
	padding: 0;
	color: #8B743D;
	font-weight: 400;
}


.category{
	display:inline-block;
	background-color: #8B743D;
	text-align: center;
	z-index: 98;
	width: auto;
	margin: 10px 0 0 0;
	padding: 0.2em 0.5em;
	
}


.category p{
	color: #fff;
	font-weight: 600;
	font-style:italic;
	font-size:0.6rem;
}



/* デフォルト：3カラム固定 */
.item-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

/* 幅が狭くなったら JS で .is-narrow を付けて切り替える */
.item-wrap.is-narrow {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.item {
	position: relative;
  padding: 20px;
  margin: 20px 0; /* 上下に10pxの余白 */
  background: #f9f9f9;
}

@media (max-width: 768px) {
  .item {
    background: transparent;
  }
}


/* 右の縦線 */
.item::after {
  content: '';
  position: absolute;
  top: 20px; /* 上の余白と合わせる */
  right: 0;
  width: 1px;
  height: calc(100% - 40px); /* 上下の余白の合計分を引く */
  background-color: #D3CCBA;
}


/* 最後のカラムには線を表示しない */
.item.last-column::after {
  display: none;
}


.item img{
	width: 100%;      /* 高さを固定 */
  object-fit: cover;     /* はみ出す部分をカット */
	margin: 0;
	padding: 0;
}







.listBt{
 webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
	width: 100%;
	font-size: 0.9rem;
	font-weight: 600;
	margin-bottom: 5%;

}
.listBt:hover .lineArrow_r {
	  border-bottom: 1px solid #A0A0A0;
	  border-right: 1px solid #A0A0A0;
  }
  .listBt:hover .lineArrow_l  {
	border-bottom: 1px solid #A0A0A0;
	border-left: 1px solid #A0A0A0;
}
  .listBt:hover {
	  color: #A0A0A0;
  }
.lineArrow_r {
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #8B743D;
  border-right: 1px solid #8B743D;
transform: rotate(-45deg)
}


.lineArrow_l {
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #8B743D;
  border-left: 1px solid #8B743D;
  transform: rotate(45deg);
  margin: 4px 8px 0 0;
}
.lineArrow_r,
.lineArrow_l {
  display: inline-block;
}


  .next{
	position: absolute;
	right: 5%;
  }
  .prev{
	position: absolute;
	left: 5%;
  }

.arrow_list{
	position: absolute;
	
}



/*////////////////////////////////////////////////////*/


#work .container{
	position: relative;
	padding: 0 5%;
}

#work .base-chker {
	margin-top: 0;
	height: 100px;
}






#work .container h3 {
  font-size: 1.4em;
	letter-spacing: 0.15em;
	margin-bottom: 0;

	
}

#work .container h4 {
  font-size: 1em;
	letter-spacing: 0.15em;
	margin-bottom: 0;
	margin-top:10px;
	font-weight: 300;

	
}


#work .container .sub-jp {
	margin-bottom: 50px;
	margin-top:0;

	
}
.item-category{
	position: relative;
	display:inline-block;
	background-color:#8B743D;

	padding: 0.5em;
	line-height: 0;
	margin-top: 5%;
}


.item-category p{
	color: #fff;
	font-weight: 600;
	font-style:italic;
	font-size:0.8rem;
	letter-spacing: 0.1em;
}


#work .container img{
	max-width: 100%;
}


#work .container dt{
	font-size: 1.2em;
	font-weight: 600;
	letter-spacing: 0.1em;
	padding: 0;
	width: 100%;
	margin: 50px auto 30px;
	
}

#work .container dd{
	font-size: 1em;
	padding: 0;
	letter-spacing: 0.1em;
	font-weight: 300;
		width: 100%;
	margin: 0 auto;
}

.item_btn{
	font-size: 0.8em;
	letter-spacing: 0.1em;
	font-weight: 700;
		
}


/*////////////////////////////////////////////////////*/












/* レスポンシブ対応 */

@media(min-width: 768px){
  a[href^="tel:"]{
    pointer-events: none;
  }
}


	/* スマホ基本リセット・タイポ */
@media screen and (max-width: 768px) {
  html, body {
    font-size: 16px;
    line-height: 1.6;
  }

	.hero .container{
		  padding-left: 2vw;
	  padding-right: 2vw;
	}
	
  .container {
    margin: 0 auto;
    width: 100%;
	  overflow: hidden;
	  padding-left: 2vw;
	  padding-right: 2vw;
  }

	.base-chker{
	padding: 0;
	margin: 0;
}

	
	
  /* ヘッダー・ロゴ・ハンバーガー */
  .site-header {
    position: relative;
    height: 60px;
  }
	
	

	.logo{
		margin-top: 20px;
	}
	

  .logo img {
display: block;
    width: auto;/* 縦横比維持 */
	  height: 35vh;
    transform-origin:right top; /* 回転の基準を左上に */
	  transform:rotate(-90deg);
	  
  }
	
	
	
  .vertical-hamburger {
    top: 15px;
    right: 16px;
  }

  /* メニュー（ドロワー風） */

	
  .menu {
    background-color: #8B743D;
	  width: 100%;
	  margin: 0;
	  padding: 0;
  }
  .menu ul {
    flex-direction: column;
    gap: 24px;
	  margin: 0;
	  padding: 0;
  }
  .menu ul li a {
    font-size: 1.2em;
    color: #fff;
	  
  }

  /* ヒーロー */
  .hero {
    height: 100vh;
    padding: 60px 0;
  }
  .hero h2 {
    font-size: clamp(20px, 6vw, 28px);
    margin: 0 0 24px 0;
  }
  .line {
    height: 100px;
  }
  .dotted-circle-line {
    height: 30px;
    gap: 3px;
  }

  /* 各セクション */
  .section {
    padding: 0;
	  width: 100%;
	  padding-left: 0; 
  }
  .section h2 {
    font-size: 1.5em;
    margin: 40px 0 20px;
  }
  .section h3 {
    font-size: 1.1em;
    margin: 30px 0 15px;
  }

  /* toha*/
	
	
	
#toha{
	padding: 0 10%;
}

	
  .tohaP {
    padding: 3%;
	max-width: 100%;
	min-width: 100%;
    background-size: auto;
    background-position: center top;
  }
  .base {
	  width: 100%;

	}
  .base img{
	  width: 100%;
	}
	

	
  /* about プロフィール‐列から縦並びへ */
	
	
#about{
	padding: 0 10%;
}
	
  .about_plofile {
    float: none;
    width: 100%;
    margin: 24px 0;
    text-align: center;
  }
  .about_plofile img {
    height: auto;
    max-width: 120px;
    margin: 0 auto 16px auto;
  }
  .about_plofile dt, .about_plofile dd {
    margin: 0;
    padding: 0;
  }

	

.about_txt ul{
	width:100%;
	font-size: 0.8em;
}
	
	
	
  .contactBtnBox {
    position: static;
    width: 100%;
    text-align: center;
    margin-top: 32px;
  }

  /* ボタン */
  .custom-button, .custom-button02 {
    width: 100%;
    max-width: none;
    font-size: 1em;
    padding: 14px 0;
    margin: 16px 0;
  }
  .custom-button .btn-dots, .custom-button02 .btn-dots {
    right: -16px;
    gap: 4px;
  }

	
	
	
	
	
  /* サービス部分 */
	
#service .base-chker {
padding-left: 0;	
}	
	
#service {
	padding: 0 10%;
}	
  #service dl, .policy_ill {
    float: none;
    width: 100%;
    margin: 24px 0;
    text-align: left;
  }
  .policy_ill img {
    width: 100%;
  }
  #service .contactBtnBox {
    position: static;
    width: 100%;
    margin-top: 24px;
  }

  /* アイテムリスト */
  .item-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .item {
    margin: 0;
    border: none;
    padding: 16px;
    background: #f5f5f5;
  }
  .item::after {
    display: none;
  }

  /* リストのテキスト */
  #list h3 {
    font-size: 1em;
  }
  #list h4 {
    font-size: 0.9em;
  }

  /* フッター */
  .site-footer {
    text-align: center;
	  padding-left: 0;
	  margin: 0;
  }
	.site-footer dt::before{
 content: "";
  display: block;
  border-bottom: 1px solid #8B743D;
  margin:30px 0; /* 下線の余白（任意） */
		padding: 0;
	

}
	
	
	
  .site-footer dd {
    font-size: 0.9em;
	  margin-bottom: 10%;
  }
	.site-footer span.copyright{
margin: 0 auto 10px;
		text-align: center;
		
}

  #page-top {
    right: 16px;
    bottom: 16px;
  }
}





