@charset "utf-8";
/* CSS Document */

@import url(https://fonts.googleapis.com/icon?family=Material+Icons);





/*PCでは無効（改行しない）*/
.sma{
    display: none;
}
/*スマートフォンでは有効（改行する）*/
@media screen and (max-width:768px) {
    .sma{
        display: block;
    }
}


/* img */
@media screen and (min-width: 768px) {
	.sp-only {
		display: none;
	}
}
@media screen and (max-width: 767px) {
	.pc-only {
		display: none;
	}
}



/*--------------------------

#top

----------------------------*/

#top{
	max-width: 70%;
	padding-top: 200px;
	position: relative;
}
#top h2.logo{
	position: absolute;
	top: 22%;
	bottom: 50%;
	transform: translateY(-50%);
	left: -60px;
}
#top h1.title{
	position: absolute;
	top: 26%;
	right: -3%;
	bottom: 50%;
	transform: translateY(-50%);
	font-size: 4rem;
	font-family: var(--head-font-family);
	font-weight: 200;
	/*color: #000;  文字本体の色 */
	line-height: 6rem;
	letter-spacing: 0.15rem;
	color: #636363;
}
.number{
font-size: 9rem;
color:#bfbfbf;
}
#top img{
	display: block;
	width: 85%;
	margin-left: auto;
	margin-bottom: 100px;
}
@media (max-width: 767px){
	#top{
		display: flex;
		flex-wrap: wrap;
		max-width: 100%;
		padding-top: 160px;
	}
	/*#top h2.logo{
		margin-bottom: 0.25em;
		position: relative;
		top: inherit;
		transform: inherit;
	}*/
	
	#top h2.logo{
	position: absolute;
	top:20%;
	bottom: 50%;
	transform: translateY(-50%);
	left: -5px;
}
		#top h2.logo img{
		width: 80%;
		}
	#top img{
		width: 100%;
		margin-left: inherit;
	}
	#top h1.title{
	right: 2%;
}
}





/* into_photo
--------------------------------------------------------- */
/* まずは親セクションを中央寄せ（既に指定済なら不要） */
#into_photo {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center; /* 水平中央 */
  align-items: center;     /* 垂直中央 */
  overflow: hidden;
  background-image: url("../img/into_photo.jpg");
  background-size: cover;        /* 画面全体をカバー（トリミングあり） */
  background-position: center;   /* 被写体が中央に来るように */
  background-repeat: no-repeat;
  overflow: clip;                 /* はみ出し抑止（古い環境は hidden でも可） */
  display: flex;
  justify-content: center;       /* 中央寄せ（横） */
  align-items: center;           /* 中央寄せ（縦） */
  padding: 16px;                 /* 文字が端に付かないように */
}


/* 黒のオーバーレイ */
#into_photo::before {
  content: "";
  position: absolute;
  inset: 0;                   /* 上下左右ぜんぶ0で全体を覆う */
  background: rgba(0, 0, 0, 0.4); /* ← 濃さを 0.15〜0.45 で調整 */
  pointer-events: none;       /* クリックを透過 */
  z-index: 0;
}

/* テキストはオーバーレイの上に */
#into_photo .into_message {
  position: relative;
  z-index: 1;
}



/* テキストブロックを縦に積む（和文 → 英文の順に表示） */
#into_photo .into_message {
  position: relative;
  display: flex;
  flex-direction: column;   /* ← ここがポイント：縦積み */
  align-items: center;      /* 中央揃え */
  justify-content: center;
  gap: 12px;                /* 和文と英文の間隔 */
  padding: 70px 12px 20px;
}

/* 和文（縦書き） */
#into_photo .into_text {
  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: upright;
  line-height: 1.9;
  letter-spacing: 0.15em;
  font-weight: 300;
  font-size: clamp(16px, 2.2vw, 28px);
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

/* 英文（横書き） —— 和文の下に来ます */
#into_photo .into_text_en {
  margin: 0;
  padding-top:60px;
  writing-mode: horizontal-tb; /* 横書き */
  text-orientation: mixed;
  line-height: 1.6;
  letter-spacing: 0.04em;
  font-size: clamp(12px, 1.6vw, 18px);
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
  text-align: center;          /* 中央寄せ */
}
#into_photo .into_img{
margin-top:50px;
    width: 50px;
    height: 50px;
    background-image: url('../img/wing_white.svg');
    background-position: center;
    background-size: contain;
	color: #FFFFFF;
}


/* 背景と文字のコントラストを底上げ（任意） */
#into_photo .into_message::before {
  content: "";
  position: absolute;
  inset: -10px;
  background: radial-gradient(closest-side, rgba(0,0,0,0.35), rgba(0,0,0,0));
  border-radius: 12px;
  z-index: -1;
  pointer-events: none;
}

/* スマホでも同じ “縦積み” を維持（数値だけ微調整） */
@media (max-width: 768px) {
  #into_photo {
    min-height: 52vh;
    padding: 24px 16px;
  }
  #into_photo .into_message {
    gap: 10px;
  }
  #into_photo .into_text {
    font-size: clamp(18px, 5vw, 22px);
  }
  #into_photo .into_text_en {
    font-size: clamp(13px, 3.8vw, 17px);
  }
}




/* ===== セクション全体（中央寄せコンテナ） ===== */
.series-wrap {
  width: 100%;
  padding: clamp(24px, 6vw, 60px) 16px;
  display: flex;
  justify-content: center;
  /* 親でクリップされないように（必要に応じて） */
  overflow: visible; /* 既定で visible のはずですが、明示しておくと安心 */
  margin-top:120px;
}

/* ===== カード ===== */
.series-card{
  position: relative;
  width: min(100%, 980px);
  background: var(--card-bg);
  border-radius: 18px;
  padding: clamp(20px, 5vw, 46px) clamp(20px, 5vw, 56px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  overflow: visible;             /* ← ここがポイント：はみ出し可 */
  background-color: #ffffff;
}

/* ===== 筆記体 ===== */
.series-card::after {
  content: "Hachise produced";
  position: absolute;
  /* カード外に出す：上方向へマイナス配置 */
top: clamp(-53px, -2.7vw, -39px);
  right: clamp(12px, 3vw, 24px);
  font-family: "Italianno", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(32px, 4.8vw, 50px);
  color: #565049;
  opacity: .38;
  letter-spacing: .02em;
  user-select: none;
  pointer-events: none;
  /* 他の装飾より前面に（必要なら） */
  z-index: 1;
}


    /* ===== 見出し行（左に大きな和文＋筆記体"jiyu"、右にサブ） ===== */
    .series-header{
      display: flex;
      align-items: flex-end;                /* ベースラインを揃えやすく */
      gap: clamp(14px, 3vw, 28px);
      margin-bottom: clamp(14px, 3.2vw, 26px);
    }

    /* 「自遊」 */
    .title-ja{
      position: relative;
      margin: 0;
      font-size: clamp(28px, 3.4vw, 36px);
      font-weight: 600;
      letter-spacing: .04em;
      line-height: 1;
      color: #111;
    }
    /* 「自遊」の後ろに薄い "jiyu" を重ねる */
    .title-ja .script{
      position: absolute;
      left: calc(100% + 6px);               /* 「自遊」の直右あたりに重ねる */
      bottom: .1em;
      transform: translateY(10%);
      font-size: 1.9em;                     /* 漢字より大きめ */
      color: #9b948f;                        /* かなり薄いグレージュ */
      opacity: .6;
      white-space: nowrap;
      pointer-events: none;
      user-select: none;
	  font-family: "Italianno", cursive;
  font-weight: 400;
  font-style: normal;
    }

    /* 「シリーズ」 */
    .title-sub{
      margin: 0 0 .15em 0;
      font-size: clamp(14px, 1.6vw, 18px);
      color: #333;
      letter-spacing: .12em;
    }

    /* ===== 本文 ===== */
    .series-body{
      color: var(--ink-muted);
      font-size: clamp(13px, 1.4vw, 16px);
    }
    .series-body p{
      margin: 0;
	  padding: 0 0 0 20px;
    }
    .series-body p + p{
      margin-top: .1em;
    }

    /* ===== レスポンシブ調整（狭幅） ===== */
    @media (max-width: 560px){
      .series-header{
        flex-wrap: wrap;
        gap: 8px 16px;
      }
      .title-ja{
        font-size: 28px;
      }
      .title-ja .script{
        position: static;                   /* 折り返し時は上に流す */
        display: inline-block;
        margin-left: .4em;
        transform: none;
        font-size: 32px;
        opacity: .55;
      }
      .title-sub{
        width: 100%;
        margin-top: -4px;
      }
    }











/* ===== セクション全体 ===== */
.machiya-bath{
  background: #d8d2cd;               /* 背景はこの一色 */
  padding: clamp(24px, 6vw, 64px) 16px;
  color: #1d1a17;
  overflow: hidden;
  font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* =========================================================
   三カラム固定：
   01/03（.point）＝ 左:文章 / 中央:写真 / 右:タイトル
   02（.point--right）＝ 左:タイトル / 中央:写真 / 右:文章
   ========================================================= */

.machiya-bath_box{
    background: #d8d2cd;
	margin-block-start:100px;
	 position: relative;  /* 親に相対基準を作るのを忘れずに */
}


/* ===== 町家浴===== */
.catch{
	width:740px;
margin: 0 auto;
      background: #d8d2cd;
	  padding-block: clamp(40px, 8vw, 120px);
  overflow: hidden;
}

.catch__inner{
  width: min(1200px, 92%);
  margin-inline: auto;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
}

/* 左側の2行コピー */
.catch__lead{
  color: #6d6d6d; /* 落ち着いたグレー */
  font-family: "Hiragino Mincho ProN", "游明朝", YuMincho, serif;
  font-weight: 400;
  line-height: 1.7;
  font-size: clamp(20px, 2.8vw, 36px);
  letter-spacing: 0.12em;
  margin: 0;
  padding-left: clamp(8px, 4vw, 40px);
}

/* 右側の大きな装飾語 */
.catch__word{
  position: absolute;
  inset: 50% auto auto 50%;
  left: 56% !important;              /* 60% → 54% に。6% 左へ寄せる */
transform: translate(-6%, calc(-5% + 20px)) !important;
  margin: 0;
  color: #FFFFFF; /* 淡く大きい文字 */
  font-family: "Hiragino Mincho ProN", "游明朝", YuMincho, serif;
  font-weight: 400;
font-size: clamp(30px, 6vw, 96px) !important;
  line-height: 1;
  letter-spacing: 0.06em;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0.95;
}

/* 横が広い場合は右に寄せる */
@media (min-width: 900px){
  .catch__word{
    left: 60%;
    transform: translate(-5%, -32%);
  }
}

/* スマホでは重なり弱め */
@media (max-width: 520px){
  .catch__word{
  left: 27% !important;   
    transform: translate(-10%, -28%);
	font-size: 40px;
    opacity: 0.85;
  }
}






.bird_left{
  position: absolute;
  top: 30px;     /* ← ここを自由に変更（マイナスもOK） */
  left: 130px;    /* ← 微調整用 */
  }
.tree_left{
  position: absolute;
  top: 100px;     /* ← ここを自由に変更（マイナスもOK） */
  left: 0px;    /* ← 微調整用 */
}
.branch_right{
  position: absolute;
  top: 700px;     /* ← ここを自由に変更（マイナスもOK） */
  right: -20px;
  width:340px;
  height: auto;
}
.branch_left{
  position: absolute;
  top: 1280px;     /* ← ここを自由に変更（マイナスもOK） */
  left: -20px;
  width:360px;
  height: auto;
}
.bird_right{
  position: absolute;
  top: 1380px;     /* ← ここを自由に変更（マイナスもOK） */
  right: 130px;
  z-index: 99;
}

/* 1028px非表示 */
@media (max-width: 1028px) {
  .bird_left,
  .tree_left,
  .branch_right,
  .branch_left,
  .bird_right {
    display: none;
  }
}


/* ▼ 01・03 */
.machiya-bath .point{
  max-width: 1200px;
  margin: clamp(36px, 10vw, 110px) auto;
  display: grid;
  align-items: start;

  /* 固定配置（行落ち防止） */
  grid-template-areas: "body photo title";
  grid-template-columns:
    minmax(260px, 1fr)   /* body（文章） */
    min(66vw, 520px)     /* photo（写真） */
    minmax(180px, 1fr);  /* title（タイトル） */

  column-gap: clamp(16px, 4.5vw, 40px);
  grid-auto-flow: column;
    background: #d8d2cd; 
}

/* ▼ 02のみ反転 */
.machiya-bath .point.point--right{
  grid-template-areas: "title photo body";
  grid-template-columns:
    minmax(180px, 1fr)   /* title（タイトル） */
    min(66vw, 520px)     /* photo（写真） */
    minmax(260px, 1fr);  /* body（文章） */
}

/* ▼ エリア割当（直下の子に適用） */
.machiya-bath .point__title{ grid-area: title; min-width: 0; }
.machiya-bath .point__image{ grid-area: photo; min-width: 0; }
.machiya-bath .point__body { grid-area: body;  min-width: 0; }

/* ===== タイトル領域 ===== */
.machiya-bath .point__title{
  display: grid;
  /* 数字→見出し→縦書きコメント を縦積み or 横並びにする場合は切替可能 */
  grid-auto-flow: row;                 /* ←縦積み（お好みで column に変更可） */
  align-content: start;
  justify-items: start;
  row-gap: clamp(8px, 2vw, 14px);
  position: relative;
  z-index: 2;
      background: #d8d2cd; /* 画像に隠れない保険 */
	    border-bottom: none !important;
  text-decoration: none !important;
}


.point__02{
padding-left: 180px;
}
.machiya-bath .point__num{
  font-family: "Cinzel", "Times New Roman", serif;
  font-weight: 300;
font-size: clamp(70px, 7vw, 110px);
  line-height: 1;
  color: #FFFFFF;
  margin: 0;
}
.machiya-bath .point__titletext{
  font-family: "Noto Serif JP", serif;
font-size: clamp(32px, 10vw, 48px);
  letter-spacing: .06em;
  margin: 0;
}

/* ← タイトル横（または下）に置く 縦書きコメント */
.machiya-bath .point__vtext{
  writing-mode: vertical-rl;   /* 縦書き */
  text-orientation: mixed;
  font-size: clamp(16px, 2.8vw, 20px);
  line-height: 2;              /* 行間を広めに */
  letter-spacing: .08em;
  color: #1d1a17;
  margin: 0;
}

/* ===== 写真 ===== */
.machiya-bath .point__image{
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
}
.machiya-bath .point__image img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 32px;
  box-shadow: 0 8px 22px rgba(0,0,0,.10);
  /* 画像サイズがバラなら下をON
     aspect-ratio: 4 / 5;
     object-fit: cover; */
}
.point{
padding-block-end:120px;
}
.point_photo{
margin: 0 auto;
max-width: 70%;
}
.point_photo__text{
margin-top:320px;
}


/* ===== 文章 ===== */
.machiya-bath .point__body{
  align-self: start;
  color: #1d1a17;
  font-size: clamp(14px, 2.6vw, 16px);
  line-height: 2.0;
  word-break: break-word;
  font-weight: 600;
}

.point__body__03{
margin-top:200px;
}


/* ===== スマホ（縦積み） ===== */
@media (max-width: 768px){
  /* すべて タイトル → 写真 → 文章 の順に縦並び（PCと同じ順にしたければ行ごとに変えてOK） */
  .machiya-bath .point,
  .machiya-bath .point.point--right{
    grid-template-areas:
      "title"
      "photo"
      "body";
    grid-template-columns: 1fr;
    row-gap: 16px;
    margin: clamp(28px, 10vw, 60px) auto;
  }
  .machiya-bath .point__title{
    justify-items: center;
    text-align: center;
  }
  .machiya-bath .point__vtext{
    writing-mode: horizontal-tb; /* SPは読みやすさ重視で横書き */
    line-height: 1.8;
  }
  .machiya-bath .point__body{
    max-width: 640px;
    margin-inline: auto;
  }
  .point_photo__text{
margin-top:20px;
max-width: 84%;
margin:  0 auto;
}
.point__02{
padding-left: 0;
}
.point__body__03{
margin-top:0;
}
}


















/* plan
--------------------------------------------------------- */
#plan .c-title{
	color: #FBFAF6;
}
#plan .c-title::before{
	content: "";
    display: inline-block;
    width: 50px;
    height: 50px;
    background-image: url('../img/wing_white.svg');
    background-position: center;
    background-size: contain;
	position: absolute;
	top: -70%;
	left: 50%;
	transform: translateX(-50%);
}
.plan_box{
background-color: #74745a;
}


.plan{
	position: relative;
	color: #fff;
}
.plan_text{
font-size: 1.65rem;
}
.plan_textBox{
	display: flex;
	flex-direction: row-reverse;
	margin-bottom: 40px;
}

.plan_textTitle{
	-ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
	margin-left: 40px;
	font-size: 32px;
	font-weight: 400;
	white-space: nowrap;
}

.plan_renovationBox{
	margin-top: 60px;
	padding:40px;
	text-align: center;
	border: 1px solid #333;
	position: relative;
}

.plan_renovationTitle{
	font-size: 24px;
	margin-bottom: 10px;
}

/* 擬似要素の共通スタイル */
.plan_renovationBox::after,
.plan_renovationBox::before,
.plan_renovationBox span::after,
.plan_renovationBox span::before {
  background-color: #989269;
  content: '';
  display: block;
  position: absolute;
  z-index: 10;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
}
/* 左上へ配置 */
.plan_renovationBox::after {
    width: 0px;
    height: 2px;
    top: -1px;
    left: -1px;
}
/* 右下へ配置 */
.plan_renovationBox::before {
    width: 0px;
    height: 2px;
    right: -1px;
    bottom: -1px;
}
/* 左下へ配置 */
.plan_renovationBox span::after {
    width: 2px;
    height: 0px;
    left: -1px;
    bottom: -1px;
}
/* 右上へ配置 */
.plan_renovationBox span::before {
    width: 2px;
    height: 0px;
    top: -1px;
    right: -1px;
}
 
/* hover */
.plan_renovationBox:hover::after,
.plan_renovationBox:hover::before {
  width: 100%;
  width: calc(100% + 1px);
}
 
.plan_renovationBox:hover span::after,
.plan_renovationBox:hover span::before {
  height: 100%;
  height: calc(100% + 1px);
}


.plan_renovationText{
font-size: 1.65rem;
}
.plan_renovationText a{
	color: #FFFFFF;
}




.plan_renovationText a::after {
	position: absolute;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background: #000000;
	bottom: 4px; /*アンダーラインが現れ始める位置（aタグの下辺からの高さ）*/
	opacity: 0;
	visibility: hidden;
	transition: 0.3s;
}

.plan_renovationText a:hover::after {
	visibility: visible;
	bottom: 0px;
	opacity: 1;
}

@media screen and (max-width: 768px){
	
	.plan_textBox{
		display: block;
		flex-direction: row-reverse;
		margin-bottom: 40px;
	}
	
	.plan_textTitle{
		-ms-writing-mode: tb-rl;
		writing-mode: vertical-rl;
		margin-left: 20px;
		font-size: 32px;
		font-weight: 400;
		float: right;
	}
	
	.plan_renovationBox{
		margin-top: 40px;
		padding:30px;
		text-align: center;
		border: 1px solid #333;
		position: relative;
	}
	
	.plan_renovationTitle{
		font-size: 20px;
		margin-bottom: 10px;
	}
}



/* photos
--------------------------------------------------------- */
section#photos {
  width: 100%;
/*  max-width: 950px;
  margin-inline-start: auto;
  margin-inline-end: auto;
  margin-block-end: 180px;	
	padding-block-end: 150px;*/
	padding-block-start: 200px;
	text-align: center;
}

#photos .photo_wrap {
   margin: 0 auto;
   width: 100%;
   max-width: 950px;
   padding-block-end: 150px;
}

#photos .flex {
  display: -webkit-flex;
  display: flex;
  flex-flow: row wrap;
  -webkit-align-items: center;
  align-items: center;
  justify-content: space-between!important;
  margin-top: 80px;
	/*max-width: 800px;*/
  margin: 0 auto;
}

/*▼写真のアスペクト比3：2の場合　他のサイズにする場合は調整してください。*/
#photos .flex .w495 {
  width: 49.5%;/*写真1/2サイズ*/
}
#photos .flex .w304 {
  width: 30%;/*写真1/3サイズ（縦）*/
}
#photos .flex .w685 {
  width: 67.5%;/*写真2/3サイズ（横）*/
}
#photos .flex .w326 {
  width: 32%;/*縦の写真3枚並びの場合こちら*/
}
#photos .flex img {
  margin-top: 1rem;
  display: block;
}
.box3 {
  display: none;
  margin-top: 50px;
}
/*もっと見るボタン*/
.photo_btn {
  font-family: "Sorts Mill Goudy", serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
  display: inline-block;
  font-size: 24px;
  line-height: 2;
  padding: 5px 80px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center!important;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.05em;
  color: #000000;
  margin-top: 70px;
  background: none;
  border: 1px solid #000000;
}

/* 三角形の矢印(clip-path) */
.photo_btn::before {
  border-right: 1px solid #000000;;
  border-top: 1px solid #000000;;
  bottom: 0;
  content: "";
  height: 10px;
  margin: auto;
  position: absolute;
  right: 20px;
  top: 0;
  transform: rotate(135deg);
  width: 10px;
}

.photo_btn:hover{
	color: #333;
	background-color: #FBFAF6;;
}

.photo__txet{
width:80%;
margin: 0 auto;
padding: 30px 0;
text-align: left;
font-size: 1.65rem;
line-height: 3.5rem;
}

/*スマホ表示*/
@media screen and (max-width: 767px) {
  #photos .flex {
    flex-flow: column wrap;
    padding-left: 10px;
    padding-right: 10px;
  }
  #photos .flex .w495, #photos .flex .w304, #photos .flex .w685, #photos .flex .w326 {
    width: 100%;
  }
	
  #photos .photo_wrap {
    margin: 0 auto;
    width: 96%;
    max-width: 960px;
    padding-block-end: 80px;
  }
	
  section#photos {
	  width: 100%;
	/*  max-width: 950px;
	  margin-inline-start: auto;
	  margin-inline-end: auto;
	  margin-block-end: 180px;	
		padding-block-end: 150px;*/
		padding-block-start: 120px;
		text-align: center;
	}
	.photo__txet{
width:94%;
}
}






/* map
--------------------------------------------------------- */
.map_box{
background-color: #b1a595;
}

section#map {
margin-block-start:120px;
}

#map .c-title{
	color: #FBFAF6;
}

#map .c-title::before{
	content: "";
    display: inline-block;
    width: 50px;
    height: 50px;
    background-image: url('../img/wing_white.svg');
    background-position: center;
    background-size: contain;
	position: absolute;
	top: -70%;
	left: 50%;
	transform: translateX(-50%);
}





/*--------------------------------------------------
area 周辺情報
----------------------------------------------------*/
.area_box{
background-color: #b1a595;
}
#area .c-title{
	color: #FBFAF6;
}

#area .c-title::before{
	content: "";
    display: inline-block;
    width: 50px;
    height: 50px;
    background-image: url('../img/wing_white.svg');
    background-position: center;
    background-size: contain;
	position: absolute;
	top: -70%;
	left: 50%;
	transform: translateX(-50%);
}
.area{
	position: relative;
	color: #FFFFFF;
}

.area_textBox{
	display: flex;
	flex-direction: row-reverse;
	margin-bottom: 40px;
}
.area_text{
font-size: 1.65rem;
}
.area_title{
	-ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
	margin-left: 40px;
	font-size: 32px;
	font-weight: 400;
	white-space: nowrap;
}

.area_map{
	width: 100%;
	display: flex;
	justify-content: center;
}
.area_map_text{
max-width: 950px;
margin: 0 auto;
padding:50px 0 10px;
text-align: center;
font-size: 1.65rem;
}

/* point 地域写真 */
section#area .spot_wrap {
	max-width: 1000px;
	margin: 0px auto;
	padding: 0px;
}
/* content */

section#area .spot_wrap .spot_content .list {
	padding-block-start: 60px;
}
section#area .spot_wrap .spot_content .list-item {
	margin: 50px auto;
	padding: 0px 25px;
	text-align: center;
		max-width: 550px;
}
section#area .spot_wrap .spot_content .list-item h4{
	font-size: 1.15em;
	font-weight: 600;
	line-height: 1.6;
	border-bottom: solid #999 1px;
	letter-spacing: 0.1em;
	margin-bottom: 20px;
}
section#area .spot_wrap .spot_content .list-item h4 span{
	font-size: 0.75em;
	display: block;
	margin-bottom: 10px;
	font-weight: 400;
}


section#area .spot_wrap .spot_content .list-item .image {
	display: block;
	width: 100%;
	max-width: 300px;
	margin: 0px auto 20px auto;
	/*border-radius: 100%;*/
}
section#area .spot_wrap .spot_content .list-item .text {
	line-height: 1.6;
	font-size: 1.4rem;
	font-weight: normal;
	text-align: left;
}

@media (min-width: 768px) {
	
section#area .spot_wrap .spot_content .list {
		display: flex;
		justify-content: center;
	align-items: flex-start;

	}

section#area .spot_wrap .spot_content .list-item {
		margin: 0px;
		width: calc(100% / 3);
	padding: 0px 15px;
	}
}

@media screen and (max-width: 768px){

	.area_textBox{
		display: block;
		flex-direction: row-reverse;
		margin-bottom: 40px;
	}

	.area_title{
		-ms-writing-mode: tb-rl;
		writing-mode: vertical-rl;
		margin-left: 20px;
		font-size: 32px;
		font-weight: 400;
		float: right;
	}
	
	section#area .spot_wrap .spot_content .list {
		padding-block-start: 0px;
	}
	
}


/* deg360
--------------------------------------------------------- */
.deg360_box{
background-color: #625047;
}
#deg360 .c-title{
	color: #FBFAF6;
}
#deg360 .c-title::before{
	content: "";
    display: inline-block;
    width: 50px;
    height: 50px;
    background-image: url('../img/wing_white.svg');
    background-position: center;
    background-size: contain;
	position: absolute;
	top: -70%;
	left: 50%;
	transform: translateX(-50%);
}
section#deg360 {
	width: 100%;
	background-color: #625047;
	padding-block-start:180px;
	color: #ffffff;
}
section#deg360 .innerWrap{
	padding-block-end:100px;
}
section#deg360 p {
	text-align: center;
	margin-block-end: 20px;
	font-size: 1.55rem;
	letter-spacing: 0.05rem;
	line-height: 1.8;
}
section#deg360 .camera_box {
	max-width: 1080px;
	margin-inline-start: auto;
	margin-inline-end: auto;
}
section#deg360 p {
	text-align: center;
	margin-block-end: 20px;
	font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
	/* deg360 */
	section#deg360 {
		width: 94%;
  margin-inline: auto;
		padding-block-end:5px;
	}
	section#deg360 .camera_box iframe {
		height: 440px;
	}
}





/* details　物件概要
---------------------------------------------------------------*/
section#details {
padding-top:180px;
}
#details table {
	box-sizing: border-box;
	border-collapse: collapse;
	width: 100%;
}
#details table th,
#details table td {
	border-block-end: 1px solid #212A2D;
	vertical-align: middle;
	font-style: normal;
	text-align: justify;
	line-height: 2;
}
#details table td {
padding: 10px;
}
#details table th {
	width: 15%;
	font-weight: bold;
}
#details table a {
	padding: 0 .5em;
	text-decoration: underline;
	color: var(--accent-color);
	transition: .5s all;
}
#details table a:hover {
	opacity: .5;
}

@media screen and (max-width: 767px) {
	#details table {
		width: 100%;
	}
	#details table th,
	#details table td {
		display: block;
		width: 100%;
		padding-left: 1em;
		padding-right: 1em;
		border-block-end: 0px;
		line-height: 3.5rem;
	}
	#details table th {
		mix-blend-mode: multiply;
		background-color: #e0dfd3;
	}
}

/*　#inquiry
--------------------------------------------------------- */
#inquiry {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	position: relative;
	font-size: 1.8rem;
}
#inquiry a{
	min-width: 300px;
	padding: 20px 50px;
	overflow: hidden;
	border: 2px solid #45516b;
	position: relative;
	color: #45516b;
	z-index: 1;
}
#inquiry a::before {
	content: ">";
	position: absolute;
	right: 10px;
	z-index: 1;
}
#inquiry a:hover {
	color: #fff;
	background:#45516b;
}


/* section#service 
--------------------------------------------------------- */

#service ul {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  gap: 27px;
  grid-template-columns: repeat(auto-fill, minmax(302px, 1fr));
  text-align: center;
}
#service p {
  text-align: center;
  margin-bottom: 1.6rem;
}

#service img{
  max-width: 280px;
}

/*繧ｹ繝槭�陦ｨ遉ｺ*/
@media screen and (max-width: 767px) {
  #service ul {
    padding-left: 10px;
    padding-right: 10px;
  }
  #service p {
    padding-left: 10px;
    padding-right: 10px;
    text-align: justify;
  }
    #service img{
	max-width: 320px;
	}
}

/* Google Map
--------------------------------------------------------- */
section#gmap {
	margin: 0 auto;
	width: 100%;
	max-width: 100%;
	padding-top: 60px;
}