@charset "UTF-8";
/*
	Filename: common
	Version: 1.0.1
*/
/*-----------------------------------------------------
	Typography
------------------------------------------------------*/
em {
	font-weight: 700;
}
address {
	font-style: normal;
}
.grad_text {
	background: linear-gradient(
    135deg,
    rgba(230, 224, 207, 1) 0%,
    rgba(208, 178, 136, 1) 48%,
    rgba(208, 135, 34, 1) 75%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
/*-----------------------------------------------------
	Elements
------------------------------------------------------*/
body {
	word-wrap: break-word;
	background: #ede4d5;
}
ul li {
	list-style-type: none;
}
ol li {
	list-style-type: decimal;
}
img {
	vertical-align: bottom;
}
iframe {
	width: 100%;
}

/*-----------------------------------------------------
	Link
------------------------------------------------------*/
a {
	text-decoration: none;
	color: #333;
  transition: all .25s;
}
a > img {
  transition: all .25s;
}
a:hover > img, a:hover{
	opacity: 0.65;
}
a[href^="tel:"] {
  pointer-events: none;
}
.no_link {
  pointer-events: none;
}
/*-----------------------------------------------------
	haeder
------------------------------------------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100px;
}
.header_inner {
  position: relative;
}
.header_logo a {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  display: block;
  width: 80px;
  height: 110px;
  background-image: url("../img/common/logo_w.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
}
.header_nav {
  position: absolute;
  top: 41px;
  right: 80px;
  z-index: 1;
  width: 100%;
}
.header_nav ul.flex {
  align-items: center;
  justify-content: flex-end;
}
.header_nav ul.flex li {
  margin-right: 40px;
}
.header_nav ul.flex li a {
  position: relative;
  display: block;
	font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 750px) {
	header {
		height: 80px;
	}
	.header_nav {
		display: none;
	}
	.header_logo a {
		top: 10px;
		left: 20px;
		width: 58px;
		height: 60px;
	}
}
.hamburger {
	width: 60px ;
	height: 60px;
	display: block;
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 10002;
	padding: 0;
	box-sizing: border-box;
	touch-action: manipulation;
	border: 1px solid #fff;
}
.hamburger__icon {
	position: relative;
	margin-top: 12px;
}
.hamburger__icon, .hamburger__icon::before, .hamburger__icon::after {
	width: 36px;
	height: 1px;
	position: absolute;
	top: 16.5px;
	right: 11px;
	display: block;
	background-color: #fff;
	transition-property: background-color, transform;
	transition-duration: 0.4s;
}
.hamburger__icon::before, .hamburger__icon::after {
	content: "";
	right: 0;
}
.hamburger__icon::before {
	width: 36px;
	top: -12px;
}
.hamburger__icon::after {
	width: 36px;
	top: 12px;
}
.hamburger.active .hamburger__icon {
	background-color: transparent;
}
.hamburger.active .hamburger__icon::before, .hamburger.active .hamburger__icon::after {
	width: 36px;
	height: 1px;
}
.hamburger.active .hamburger__icon::before {
	transform: translateY(12px) rotate(45deg);
}
.hamburger.active .hamburger__icon::after {
	transform: translateY(-12px) rotate(-45deg);
}
.fat-nav {
	top: 0;
	left: 0;
	z-index: 9999;
	position: fixed;
	display: none;
	width: 100%;
	height: 100%;
	overflow-y: auto;
	overflow-x: hidden;
}
.fat-nav__wrapper {
	position: absolute;
	top: 0;
	left: 0;
	display: table;
	table-layout: fixed;
	width: 100%;
	height: 100%;
	padding: 160px 20px 40px;
	background: rgba(0,0,0,.9);
}
.fat-nav .header_logo a {
	position: fixed;
	background-image: url("../img/common/logo_w.svg");
}
.fat-nav ul {
	justify-content: space-between;
	width: 440px;
	margin: 0 auto;
}
.fat-nav ul li {
	width: 50%;
	margin-bottom: 60px;
}
.fat-nav li a {
	display: block;
	font-size: 22px;
	font-weight: 500;
	color: #fff;
	letter-spacing: 0.1em;
}
@media screen and (max-width: 750px) {
	.hamburger {
		width: 40px ;
		height: 40px;
		top: 20px;
		right: 20px;
	}
	.hamburger__icon {
		margin-top: 8px;
	}
	.hamburger__icon, .hamburger__icon::before, .hamburger__icon::after {
		width: 24px;
		height: 1px;
		top: 10px;
		right: 7px;
	}
	.hamburger__icon::before, .hamburger__icon::after {
		right: 0;
	}
	.hamburger__icon::before {
		width: 24px;
		top: -8px;
	}
	.hamburger__icon::after {
		width: 24px;
		top: 8px;
	}
	.hamburger.active .hamburger__icon::before, .hamburger.active .hamburger__icon::after {
		width: 24px;
		height: 1px;
	}
	.hamburger.active .hamburger__icon::before {
		transform: translateY(8px) rotate(45deg);
	}
	.hamburger.active .hamburger__icon::after {
		transform: translateY(-8px) rotate(-45deg);
	}
	.fat-nav__wrapper {
		padding: 140px 20px 40px;
	}
	.fat-nav ul {
		width: 100%;
	}
	.fat-nav ul li {
		width: 100%;
		text-align: center;
	}
}
/*-----------------------------------------------------
	haeder.fixed
------------------------------------------------------*/
body.fixed header {
  background: rgba(0,0,0,.9);
  transition: .5s;
}
body.fixed header .header_logo a, body.fixed .fat-nav .header_logo a {
  top: 15.5px;
  width: 50px;
  height: 69px;
}
@media screen and (max-width: 750px) {
	body.fixed header .header_logo a, body.fixed .fat-nav .header_logo a {
		top: 10px;
		left: 20px;
		width: 58px;
		height: 60px;
	}
}
/*-----------------------------------------------------
	midasi
------------------------------------------------------*/
.midasi_01 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.midasi_01 span {
  display: block;
	margin-bottom: 10px;
	font-family: "Cormorant Garamond", serif;
  font-size: 120px;
  font-weight: 400;
  line-height: 1;
	color: #AB8E64;
}
.midasi_02 {
  font-size: 100px;
  font-weight: 200;
  letter-spacing: 0.1em;
  color: #B2BEBF;
}
.center {
  text-align: center;
}
@media screen and (max-width: 750px) {
	.midasi_01 span {
		margin-bottom: 20px;
		font-size: 40px;
	}
}
/*-----------------------------------------------------
	ボタン
------------------------------------------------------*/
.link_more_01 {
  position: relative;
  display: inline-block;
	min-width: 240px;
	padding: 22px 40px 22px 20px;
	background: #AB8D64;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #fff;
}
.link_more_02 {
  position: relative;
  display: inline-block;
	width: 430px;
	padding: 32px 40px 32px 20px;
	background: #AB8D64;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
	text-align: left;
  color: #fff;
}
.link_more_01::after, .link_more_02::after {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
  z-index: +1;
  width: 7px;
  height: 12px;
  background: url("../img/common/arrow_w.svg") no-repeat center center;
  background-size: cover;
}
.link_more_01:hover, .link_more_02:hover {
  opacity: 1;
	background: #DBBC91;
}
.link_more_01:hover::after, .link_more_02:hover::after, .link_more_03:hover::after {
  opacity: 1;
}
.link_more_03 {
  position: relative;
  display: inline-block;
	min-width: 240px;
	padding: 22px 40px 22px 20px;
	background: #fff;
	font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #AB8E64;
	text-align: left;
}
.link_more_03::after {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
  z-index: +1;
  width: 7px;
  height: 11px;
  background: url("../img/common/arrow_gs.svg") no-repeat center center;
  background-size: cover;
}
.link_more_04 {
  position: relative;
  display: inline-block;
	min-width: 240px;
	padding: 22px 40px 22px 20px;
	background: #AB8E64;
	font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #fff;
	text-align: left;
}
.link_more_04::after {
  content: "";
  display: block;
  position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
  z-index: +1;
  width: 7px;
  height: 11px;
  background: url("../img/common/arrow_w.svg") no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 750px) {
	.link_more_01 {
		display: block;
		min-width: auto;
		max-width: 90%;
		margin-right: auto;
		margin-left: auto;
	}
	.link_more_02 {
		max-width: 90%;
		padding: 24px 40px 24px 20px;
	}
	.link_more_03, .link_more_04 {
		display: block;
		max-width: 90%;
		margin: 0 auto;
		padding: 24px 40px 24px 20px;
	}
}

/*-----------------------------------------------------
	Layout
------------------------------------------------------*/
.flex {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
.wrap {
  width: 1280px;
  margin: 0 auto;
}
@media screen and (max-width: 1320px) {
  .wrap {
    width: calc(100% - 40px);
  }
}

/*-----------------------------------------------------
	#page_mv
------------------------------------------------------*/
#page_mv {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 400px;
}
#page_mv::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.35);
	background-size: cover;
}
#page_mv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
#page_mv .page_title {
  position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
  z-index: 2;
  width: 100%;
  text-align: center;
}
#page_mv .page_title h1, #page_mv .page_title div{
  font-size: 48px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #fff;
}
@media screen and (max-width: 750px) {
	#page_mv {
		height: 300px;
	}
	#page_mv .page_title h1, #page_mv .page_title div {
		font-size: 30px;
	}
}
.breadcrumbs {
	margin-bottom: 60px;
	padding: 15px 0;
  font-size: 13px;
	font-weight: 500;
  line-height: 1.4;
}
.breadcrumbs a { text-decoration: none; }
.breadcrumbs__list {
  display: flex; 
  flex-wrap: wrap;
  gap: 0.25em 0.5em;
  list-style: none;
  margin: 0; padding: 0;
}
@media screen and (max-width: 750px) {
	.breadcrumbs {
		margin-bottom: 20px;
	}
}
/*-----------------------------------------------------
	.main
------------------------------------------------------*/
article {
  padding-bottom: 100px;
}
.main h1 {
	margin-bottom: 60px;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #AB8D64;
}
.main .date {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.1em;
}
.main a {
  color: #333;
}
.main a.link_more_04 {
  color: #fff;
}
.main hr {
  display: block;
  height: 1px;
  border: 0;   
  border-top: 1px solid #AB8D64;
  margin: 3em 0;
  padding: 0;
}
.main h2 {
  margin-bottom: 40px;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #AB8D64;
}
.main h3 {
  margin-bottom: 40px;
	padding: 10px;
	border-bottom: 1px solid #AB8D64;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
	color: #AB8D64;
}
.main h4 {
  display: inline-block;
  margin-bottom: 40px;
  padding: 0 10px;
  background: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
.main p {
  margin-bottom: 40px;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
}
.main ul, .main ol {
  margin-bottom: 40px;
}
.main ul li {
	position: relative;
  margin-bottom: 20px;
	padding-left: 34px;
  list-style-type: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.main ul li::before {
	content: "";
	display: block;
	position: absolute;
	top: 2px;
	left: 0;
	width: 20px;
	height: 20px;
	background: url("../img/common/list_icon.svg") no-repeat center center;
	background-size: cover;
}
.main ol li {
  margin-bottom: 20px;
  margin-left: 20px;
  list-style-type: decimal;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.main figure {
  margin-bottom: 20px;
}
.main .wp-element-caption {
  font-size: 13px;
}
.main figure img {
  max-width: 100%;
  height: auto;
}
.main .table_wrap {
  width: 100%;
  margin-bottom: 30px;
  padding-top: 10px;
  overflow-x: auto;
  white-space: nowrap;
}
.main table {
  width: 100%;
  margin-bottom: 40px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.2em;
  text-align: left;
}
.main table tr th, .main table tr td {
  padding: 25px 15px;
  border: 1px solid #AB8D64;
  vertical-align: middle;
}
.main table tr td:first-child {
  width: 30%;
}
.suuji {
	display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 25px;
	margin-bottom: 100px;
	text-align: center;
}
.suuji_child {
	padding: 50px 5px;
	background: #fff;
	border-radius: 40px;
}
.suuji_p{
	margin-bottom: 20px;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 0.1em;
}
.suuji_h {
	font-size: 30px;
	font-weight: 500;
	color: #DBBC91;
}
.suuji_h span {
	font-size: 70px;
	font-weight: 500;
}
.pdf_btn {
	gap: 25px;
	padding: 30px;
	background: #474440;
}
.pdf_btn::after {
	width: 18px;
}
.pdf_btn .arrow {
	right: 3px;
}
.pdf_btn .arrow img {
	width: 12px;
}
.pdf_btn img {
	width: 100px;
}
.pdf_btn p {
	font-size: 18px;
}
@media screen and (max-width: 1260px) {
	.suuji_h {
		font-size: 2.381vw;
	}
	.suuji_h span {
		font-size: 5.556vw;
	}
}
@media screen and (max-width: 1000px) {
	.suuji {
		grid-template-columns: repeat(2, 1fr);
	}
	.suuji_p{
		font-size: 20px;
	}
	.suuji_h {
		font-size: 30px;
	}
}
@media screen and (max-width: 750px) {
	.suuji {
		gap: 20px;
		margin-bottom: 60px;
	}
	.suuji_child {
		padding: 30px 5px;
	}
	.suuji_p {
		margin-bottom: 10px;
		font-size: 16px;
	}
	.suuji_h {
		font-size: 20px;
	}
	.suuji_h span {
		font-size: 40px;
	}
}
@media screen and (max-width: 480px) {
	.suuji_p {
		font-size: 3.333vw;
	}
	.suuji_h {
		font-size: 4.167vw;
	}
	.suuji_h span {
		font-size: 8.333vw;
	}
}
@media screen and (max-width: 750px) {
  article {
    padding-bottom: 80px;
  }
	.main h1 {
		margin-bottom: 30px;
		font-size: 28px;
	}
  .main h2 {
		margin-bottom: 40px;
    font-size: 24px;
  }
  .main h3 {
    font-size: 20px;
  }
  .main h4 {
    font-size: 18px;
  }
  .main p {
    font-size: 14px;
  }
  .main ul li {
    margin-bottom: 10px;
		font-size: 14px;
  }
  .main ol li {
    margin-bottom: 10px;
		font-size: 14px;
  }
  .main table {
		font-size: 14px;
	}
	.main table tr th, .main table tr td {
		display: block;
		width: 100%;
		padding: 15px 10px;
		border: 1px solid #AB8D64;
		vertical-align: middle;
	}
	.main table tr:first-of-type td:first-child {
		width: 100%;
		border-top: 1px solid #AB8D64;
	}
	.main table tr td:first-child {
		width: 100%;
		background: rgba(255,255,255,.2);
		border-top: none;
		border-bottom: none;
	}
}
/*-----------------------------------------------------
	#service
------------------------------------------------------*/
#service {
	position: relative;
	z-index: 0;
  padding-top: 100px;
  padding-bottom: 160px;
	background: #EDE4D5;
	background: linear-gradient(180deg, rgba(237, 228, 213, 1) 0%, rgba(238, 228, 214, 1) 35%, rgba(255, 255, 255, 1) 100%);
}
.service_img_right {
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
	width: 40%;
}
.service_img_right img, .service_img_left img {
	width: 100%;
	height: auto;
}
.service_img_left {
	position: absolute;
	top: 550px;
	left: 0;
	z-index: -1;
	width: 40%;
}
#service h2 {
	margin-bottom: 25px;
  text-align: center;
}
.service_col {
	justify-content: space-between;
	margin-bottom: 160px;
}
.service_col h3.flex {
	align-items: center;
  gap: 8px;
	margin-bottom: 30px;
	color: #AB8E64;
}
.service_col h3.flex span {
	font-size: 36px;
	font-weight: 500;
	letter-spacing: 0.1em;
  white-space: nowrap;
}
.service_col h3.flex span.en {
	font-family: "Cormorant Garamond", serif;
	font-size: 14px;
}
.service_col h3.flex hr {
  flex-grow: 1;
  border: none;
  border-top: 1px solid #AB8E64;
}
.service_col p {
	margin-bottom: 50px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0.1em;
}
.service_col p:last-of-type {
	margin-bottom: 0;
}
.service_l {
	width: 23.5%;
}
.service_c {
	position: relative; 
	width: 45.3%;
}
.service_c img {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
}
.service_r {
	width: 23.5%;
}
.service_link_top {
	justify-content: space-between;
	margin-bottom: 40px;
}
.service_link_bottom {
	justify-content: space-between;
	margin-bottom: 60px;
}
.service_link {
	width: 49%;
}
.service_btn {
	position: relative;
	z-index: 0;
	gap: 40px;
	align-items: center;
	padding: 50px;
}
.service_btn::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.7);
}
.service_btn::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
	width: 30px;
	height: 100%;
	background: #AB8E64;
}
.service_btn:hover, .service_btn:hover img {
	opacity: 1;
}
.service_btn:hover::before {
	background: rgba(0,0,0,.5);
}
.service_btn:hover::after {
	background: #DBBC91;
}
.service_link_top .service_link .service_btn:nth-of-type(1) {
	margin-bottom: 40px;
	background: url("../img/home/service_bg_01.webp") no-repeat center center;
	background-size: cover;
}
.service_link_top .service_link .service_btn:nth-of-type(2) {
	background: url("../img/home/service_bg_02.webp") no-repeat center center;
	background-size: cover;
}
.service_link_bottom .service_link .service_btn:nth-of-type(1) {
	margin-bottom: 40px;
	background: url("../img/home/service_bg_03.webp") no-repeat center center;
	background-size: cover;
}
.service_link_bottom .service_link .service_btn:nth-of-type(2) {
	margin-bottom: 40px;
	background: url("../img/home/service_bg_04.webp") no-repeat center center;
	background-size: cover;
}
.service_link_bottom .service_link .service_btn:nth-of-type(3) {
	background: url("../img/home/service_bg_05.webp") no-repeat center center;
	background-size: cover;
}
.service_btn .arrow {
	position: absolute;
	top: 50%;
	right: 9px;
	transform: translateY(-50%);
	z-index: 3;
}
.service_btn .arrow img {
	width: 12px;
}
.service_btn img {
	display: block;
	width: 161px;
	height: auto;
}
.service_btn p {
	font-size: 30px;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0.1em;
	color: #fff;
}
.service_photo {
	width: 49%;
}
.service_photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
@media screen and (max-width: 1320px) {
	.service_btn {
		gap: 3.03vw;
		padding: 50px 3.788vw;
	}
	.service_btn img {
		width: 10.197vw;
	}
	.service_btn p {
		font-size: 1.873vw;
	}
}
@media screen and (max-width: 1000px) {
	.service_col {
		margin-bottom: 100px;
	}
	.service_l {
		order: 2;
		width: 48%;
	}
	.service_c {
		position: relative;
		order: 1;
		width: 100%;
		margin-bottom: 70px;
		text-align: center;
	}
	.service_c img {
		position: relative;
		top: 0;
		transform: none;
		width: 70%;
		margin: 0 auto;
	}
	.service_r {
		order: 3;
		width: 48%;
	}
}
@media screen and (max-width: 750px) {
	#service {
		padding-top: 90px;
		padding-bottom: 130px;
	}
	.service_img_right {
		top: 162px;
		width: 42%;
	}
	.service_img_left {
		top: 485px;
		width: 42%;
	}
	#service h2 {
		margin-bottom: 50px;
	}
	.service_col h3.flex span {
		font-size: 26px;
	}
	.service_col h3.flex span.en {
		font-size: 12px;
	}
	.service_col p {
		margin-bottom: 40px;
		font-size: 14px;
	}
	.service_col p:last-of-type {
		margin-bottom: 0;
	}
	.service_l {
		width: 48%;
	}
	.service_c img {
		width: 100%;
	}
	.service_r {
		width: 48%;
	}
	.service_link_top {
		margin-bottom: 25px;
	}
	.service_link_bottom {
		margin-bottom: 25px;
	}
	.service_link {
		width: 100%;
		margin-bottom: 25px;
	}
	.service_btn {
		gap: 25px;
		padding: 30px;
	}
	.service_btn::after {
		width: 18px;
	}
	.service_link_top .service_link .service_btn:nth-of-type(1) {
		margin-bottom: 25px;
	}
	.service_link_bottom .service_link .service_btn:nth-of-type(1) {
		margin-bottom: 25px;
	}
	.service_link_bottom .service_link .service_btn:nth-of-type(2) {
		margin-bottom: 25px;
	}
	.service_link_bottom .service_link .service_btn:nth-of-type(3) {
		background: url("../img/home/service_bg_05.webp") no-repeat center center;
		background-size: cover;
	}
	.service_btn .arrow {
		right: 3px;
	}
	.service_btn .arrow img {
		width: 12px;
	}
	.service_btn img {
		width: 100px;
	}
	.service_btn p {
		font-size: 18px;
	}
	.service_photo {
		width: 100%;
	}
	.service_photo img {
		width: 100%;
		object-fit: contain;
	}
	.service_link_bottom .service_link {
		order: 1;
	}
	.service_link_bottom .service_photo {
		order: 2;
	}
}
@media screen and (max-width: 420px) {
	.service_btn {
		gap: 6.039vw;
		padding: 7.246vw;
	}
	.service_btn img {
		width: 22.155vw;
	}
	.service_btn p {
		font-size: 4.048vw;
	}
}
@media screen and (max-width: 414px) {
	.service_l {
		width: 100%;
		margin-bottom: 40px;
	}
	.service_r {
		width: 100%;
	}
}

/*-----------------------------------------------------
	#message
------------------------------------------------------*/
#message {
	position: relative;
  padding-top: 75px;
	background: url("../img/common/message_bg.webp") no-repeat top center;
	background-size: cover;
}
.name_bg {
	position: absolute;
	bottom: 80px;
	left: 0;
	width: 100%;
	font-family: "Cormorant Garamond", serif;
	font-size: 313px;
	font-weight: 400;
	line-height: 1;
	color: rgba(255,255,255,.2);
	text-align: center;
}
@media screen and (max-width: 1440px) {
	.name_bg {
		font-size: 21.736vw;
	}
}
#message .wrap {
  width: 1220px;
}
.message {
	justify-content: space-between;
}
.message_photo {
	width: 44%;
	text-align: center;
}
.message_photo img {
	max-width: 100%;
}
.message_text {
	width: 51%;
	padding-top: 35px;
	padding-bottom: 35px;
}
#message h2 {
	margin-bottom: 80px;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 0.1em;
}
#message h2 span {
	display: block;
	margin-bottom: 10px;
	font-family: "Cormorant Garamond", serif;
	font-size: 80px;
	font-weight: 400;
	letter-spacing: 0;
}
.message_text .name {
	gap: 20px;
	align-items: center;
	margin-bottom: 40px;
	padding-bottom: 20px;
	border-bottom: 1px solid #333;
}
.message_text .name span {
	font-size: 30px;
	font-weight: 400;
	letter-spacing: 0.1em;
}
.message_text .name span.katagaki {
	font-size: 16px;
}
.message_text p {
	margin-bottom: 40px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 2;
	letter-spacing: 0.1em;
}
.message_tb {
	display: none;
}
@media screen and (max-width: 1260px) {
	#message .wrap {
		width: calc(100% - 40px);
	}
	.message {
		align-items: flex-end;
	}
	.message_text {
		padding-top: 0;
		padding-bottom: 10%;
	}
}
@media screen and (max-width: 1000px) {
	.message_pc {
		display: none;
	}
	.message_tb {
		display: block;
	}
	#message {
		padding-top: 82px;
	}
	.name_bg {
		position: absolute;
		top: 107vw;
		bottom: auto;
		left: -20px;
		transform: rotate(-90deg);
		transform-origin: left top;
		white-space: nowrap;
	}
	.message_photo {
		width: 100%;
		margin-bottom: 40px;
	}
	.message_photo img {
		max-width: 100%;
	}
	.message_text {
		width: 100%;
		padding-top: 0;
		padding-bottom: 88px;
	}
	#message h2 {
		text-align: center;
	}
}
@media screen and (max-width: 750px) {
	.name_bg {
		top: 47%;
		font-size: 128px;
	}
	.message_photo img {
		max-width: 70%;
	}
	#message h2 {
		margin-bottom: 40px;
	}
	#message h2 span {
		margin-bottom: 20px;
		font-size: 40px;
	}
}
/*-----------------------------------------------------
	form
------------------------------------------------------*/
.form_area {
  width: 80%;
}
table.cform {
  width: 100%;
}
table.cform tr th {
  display: block;
  width: 100%;
	padding: 0;
	border: none;
  text-align: left;
}
table.cform tr th p, table.cform tr td p {
  margin-bottom: 0;
}
table.cform tr td {
  display: block;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 30px;
	padding-left: 0;
  border: none;
}
.form_area input[type="text"], .form_area input[type="date"], .form_area input[type="email"] {
  width: 50%;
  padding: 15px;
  background: #fff;
  border: 1px solid #AB8D64;
  border-radius: 3px;
  transition: all .3s;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  outline: none;
  appearance: none;
}
.form_area select {
  width: 50%;
  padding: 15px;
  background: #fff;
  border: 1px solid #AB8D64;
  border-radius: 3px;
  transition: all .3s;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  outline: none;
}
.form_area textarea {
  width: 100%;
  padding: 15px;
  background: #fff;
  border: 1px solid #AB8D64;
  border-radius: 3px;
  transition: all .3s;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  outline: none;
  appearance: none;
}
.form_area input[type="text"]:focus, .form_area input[type="date"]:focus, .form_area input[type="email"]:focus, .form_area select:focus, .form_area textarea:focus {
  box-shadow: 0 0 7px #AB8D64;
  border: 1px solid #AB8D64;
}
.form_area .submit_btn {
  margin-bottom: 0;
}
.form_area .submit_btn input {
	display: block;
  max-width: 100%;
  width: 250px;
  outline: none;
  appearance: none;
  border: none;
  background: #AB8D64;
  border-radius: 3em;
	margin: 0 auto;
  padding: 12px 30px 16px;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  color: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
}
.form_area .submit_btn input:hover {
  background: #AB8D64;
  opacity: 1;
  transition: all 0.3s ease;
}
.wpcf7-spinner {
  display: none;
}
@media screen and (max-width: 1320px) {
	.form_area {
		width: 100%;
	}
}
@media screen and (max-width: 750px) {
  .form_area {
    width: 100%;
  }
  .form_area input[type="text"], .form_area input[type="date"], .form_area input[type="email"], .form_area select {
    width: 100%;
  }
}
/*-----------------------------------------------------
	property
------------------------------------------------------*/
.main.property {
	padding-right: 20%;
	padding-left: 20%;
}
.property_img {
	margin-bottom: 30px;
}
.property_img img {
	max-width: 100%;
}
.main.property .units {
	margin-bottom: 10px;
	font-size: 20px;
	font-weight: 400;
	letter-spacing: 0.1em;
}
.main.property .year {
	font-size: 20px;
	font-weight: 400;
	letter-spacing: 0.1em;
}
@media screen and (max-width: 750px) {
	.main.property {
		padding-right: 0;
		padding-left: 0;
	}
}
.archive_list {
	display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}
.archive_list_child {
	background: url("../img/common/gold_bg.webp");
}
.archive_list_child img {
  display: block;
  width: 100%;
  height: 340px;
	object-fit: cover;
}
.archive_list_child .lineup_text {
	margin-bottom: 10px;
	padding: 15px 10px;
	text-align: center;
}
.archive_list_child .lineup_text h3 {
	margin-bottom: 15px;
	padding-bottom: 13px;
	border-bottom: 1px solid #fff;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: 0.1em;
	color: #fff;
}
.archive_list_child .num, .archive_list_child .date {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0.1em;
	color: #fff;
}
.archive_list_child .num {
	margin-bottom: 5px;
}
@media screen and (max-width: 1100px) {
	.archive_list {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media screen and (max-width: 1000px) {
	.archive_list img {
		height: 40vw;
	}
}
@media screen and (max-width: 750px) {
	.archive_list {
		grid-template-columns: repeat(2, 1fr);
	}
	.archive_list img {
		height: 39.067vw;
	}
	.archive_list .lineup_text {
		margin-bottom: 20px;
		padding: 15px 5px;
	}
	.archive_list .lineup_text h3 {
		margin-bottom: 10px;
		padding-bottom: 10px;
		font-size: 12px;
	}
	.archive_list .num, .archive_list .date {
		font-size: 12px;
	}
}
/*-----------------------------------------------------
	#news
------------------------------------------------------*/
.news_list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}
.news_list img {
	width: 100%;
	height: 300px;
	object-fit: cover;
	margin-bottom: 10px;
}
.news_list .date {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
}
.news_list h2 {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.1em;
	color: #AB8D64;
}
@media screen and (max-width: 1000px) {
	.news_list {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media screen and (max-width: 750px) {
	.news_list {
		grid-template-columns: repeat(1, 1fr);
	}
	.news_list img {
		height: 60vw;
	}
}
/*-----------------------------------------------------
	ページネーション
------------------------------------------------------*/
.pagination {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 40px;
}
a.page-numbers, .pagination .current {
  display: block;
  margin: 0 3px;
	padding: 7px 9px;
	border: 1px solid #AB8D64;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
	text-decoration: none;
  color: #AB8D64;
}
span.page-numbers.dots {
  margin-right: 10px;
  margin-left: 10px;
  font-size: 14px;
}
.pagination .current, a.page-numbers:hover {
	background: #F5F5F5;
	border: 1px solid #AB8D64;
	color: #AB8D64;
  opacity: 1;
}
a.page-numbers.next, a.page-numbers.prev {
  position: relative;
  width: 27.78px;
  height: 30px;
  margin: 0 10px;
  background: #AB8D64;
  border: 1px solid #AB8D64;
  color: #fff;
}
a.page-numbers.next {
  margin-right: 0;
}
a.page-numbers.prev {
  margin-left: 0;
}
a.page-numbers.next img, 
a.page-numbers.prev img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
}
a.page-numbers.prev img {
  transform: translate(-50%, -50%) scaleX(-1);
  -webkit-transform: translate(-50%, -50%) scaleX(-1);
}
a.page-numbers.next:hover, a.page-numbers.prev:hover {
	background: #AB8D64;
  opacity: .6;
}
@media screen and (max-width: 750px) {
  .pagination {
    margin-bottom: 80px;
  }
}


/*-----------------------------------------------------
	#cv
------------------------------------------------------*/
#cv {
	padding: 120px 0;
	background: #1E1E1E;
}
#cv .wrap {
	justify-content: space-between;
	width: 1145px;
}
.cv_l {
	width: 435px;
	text-align: left;
}
.cv_l h2 {
	margin-bottom: 40px;
	font-size: 20px;
	font-weight: 500;
	color: #fff;
}
.cv_l h2 span {
	display: block;
	margin-bottom: 10px;
	font-family: "Cormorant Garamond", serif;
	font-size: 120px;
	font-weight: 400;
	color: #DBBC91;
}
.cv_l p {
	font-size: 36px;
	font-weight: 400;
	line-height: 2;
	color: #fff;
}
.cv_r {
	width: 53%;
}
.cv_link {
	width: 100%;
	margin-bottom: 24px;
	border: 1px solid #DBBC91;
}
.cv_link:last-of-type {
	margin-bottom: 0;
}
.cv_icon {
	width: 96px;
}
.cv_icon img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.cv_text {
	position: relative;
	width: calc(100% - 96px);
	padding: 34px 24px;
	font-size: 28px;
	font-weight: 500;
	color: #DBBC91;
}
.cv_text::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 24px;
	transform: translateY(-50%);
	width: 15px;
	height: 26px;
	background: url("../img/common/arrow_g.svg") no-repeat center center;
	background-size: cover;
}
@media screen and (max-width: 1185px) {
	#cv .wrap {
		width: calc(100% - 40px);
	}
}
@media screen and (max-width: 1000px) {
	.cv_l {
		width: 100%;
		margin-bottom: 60px;
		text-align: center;
	}
	.cv_r {
		width: 100%;
		padding: 0 10%;
	}
}
@media screen and (max-width: 750px) {
	#cv {
		padding: 100px 0;
	}
	.cv_l h2 {
		margin-bottom: 40px;
	}
	.cv_l h2 span {
		margin-bottom: 20px;
		font-size: 40px;
	}
	.cv_l p {
		font-size: 30px;
	}
	.cv_r {
		padding: 0;
	}
	.cv_link {
		margin-bottom: 16px;
	}
	.cv_link:last-of-type {
		margin-bottom: 0;
	}
	.cv_icon {
		width: 61px;
	}
	.cv_text {
		width: calc(100% - 61px);
		padding: 20px 15px;
		font-size: 20px;
	}
	.cv_text::after {
		right: 15px;
		height: 7px;
	}
}
@media screen and (max-width: 430px) {
	.cv_l {
		margin-bottom: 13.953vw;
	}
	.cv_l p {
		font-size: 6.977vw;
	}
}
/*-----------------------------------------------------
	footer
------------------------------------------------------*/
footer {
	padding-top: 84px;
	padding-bottom: 10px;
	background: #ede4d5;
}
.footer_l {
	width: 33%;
	padding-right: 40px;
	text-align: center;
}
.footer_l h2 {
	margin-top: 40px;
	margin-bottom: 30px;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 20px;
	font-weight: 400;
	letter-spacing: 0.08em;
}
.footer_l address, .footer_l p, .footer_l a {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.08em;
	line-height: 1.6;
	text-align: left;
}
.footer_r {
	width: 67%;
	padding-top: 100px;
}
.footer_nav {
	gap: 20px 40px;
	margin-bottom: 40px;
	padding-bottom: 40px;
	border-bottom: 1px solid #AB8E64;
}
.footer_r .footer_nav:nth-of-type(2) {
	gap: 20px 40px;
}
.footer_r .footer_nav:nth-of-type(2) li {
	margin-left: 20px;
	list-style-type: disc;
}
.footer_r .footer_nav:nth-of-type(2) li:first-child {
	width: 100%;
	margin-left: 0;
	list-style-type: none;
}
.footer_r .footer_nav:last-of-type {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}
.footer_nav li a {
	display: block;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0.1em;
}
footer small {
	display: block;
	margin: 60px auto 0;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 2.4;
	text-align: center;
}
@media screen and (max-width: 1000px) {
	.footer_l {
		width: 100%;
		padding-right: 0;
		text-align: center;
	}
	.footer_l address, .footer_l p, .footer_l a {
		text-align: center;
	}
	.footer_r {
		width: 100%;
		padding-top: 60px;
		text-align: center;
	}
}
@media screen and (max-width: 750px) {
	footer {
		padding-top: 70px;
		padding-bottom: 30px;
	}
	.footer_l img {
		width: 80px;
		height: auto;
	}
	.footer_l address, .footer_l p, .footer_l a {
		font-size: 12px;
	}
	.footer_nav {
		justify-content: center;
		gap: 30px 40px;
	}
	.footer_r .footer_nav:nth-of-type(2) {
		justify-content: flex-start;
		gap: 20px 0;
	}
	.footer_r .footer_nav:nth-of-type(2) li {
		width: 30%;
		margin-left: 20px;
		list-style-type: disc;
		text-align: left;
		line-height: 1.4;
	}
	.footer_r .footer_nav:nth-of-type(2) li:first-child {
		width: 100%;
		margin-left: 0;
		list-style-type: none;
		text-align: center;
	}
	footer small {
		margin: 20px auto 0;
	}
}
@media screen and (max-width: 650px) {
	.footer_r .footer_nav:nth-of-type(2) {
		justify-content: space-between;
	}
	.footer_r .footer_nav:nth-of-type(2) li {
		width: 43%;
	}
}
/*-----------------------------------------------------
	others
------------------------------------------------------*/
.ani {
  visibility: hidden;
}
.tb {
	display: none !important;
}
.sp {
	display: none !important;
}

/*---------------------------------------------------------------------------------------------------------------------------------------------------------------
	~750px SP
----------------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width: 750px) {
	/*-----------------------------------------------------
		Elements
	------------------------------------------------------*/	
  img {
    max-width: 100%;
    height: auto;
  }
	/*-----------------------------------------------------
		Elements
	------------------------------------------------------*/
	body {
		word-wrap: break-word;
	}
	a[href^="tel:"] {
		pointer-events: auto;
	}
	/*-----------------------------------------------------
		others
	------------------------------------------------------*/
	.tb {
		display: block !important;
	}
	.pc {
		display: none !important;
	}
}

@media screen and (max-width: 414px) {
  .tb {
		display: none !important;
	}
  .sp {
		display: block !important;
	}
}
