@charset "utf-8";
/* CSS Document */

html {
	font-size: 62.5%;
	/*ベース10px*/
}

body {
	font-family:'Noto Sans JP', 'Hiragino Sans', 'Meiryo', 'MS Gothic', sans-serif;
	color: var(--color-normal-black);
	-webkit-text-size-adjust: 100%;
	line-height: 1.5;
}

/* ＝＝＝＝＝＝＝共通スタイル＝＝＝＝＝＝＝＝ */

img {
	-webkit-backface-visibility: hidden;
	width: 100%;
	height: auto;
	vertical-align: bottom;
    -webkit-touch-callout:none;
    -webkit-user-select:none;
    -moz-touch-callout:none;
    -moz-user-select:none;
    user-select:none;
}



/*スマホ用改行指定*/
.break {
	display: none;
}

@media screen and (max-width: 639px) {
	.break {
		display: block;
	}
}

/*alpha*/
.alpha:hover {
	filter: alpha(opacity=70);
	opacity: 0.7;
}

/*clearfix*/
.cf:before,
.cf:after {
	content: " ";
	display: table;
}

.cf:after {
	clear: both;
}

.cf {
	zoom: 1;
}

a img:hover {
	opacity: 0.8;
}

.clear {
	clear: both;
}

.fl-right {
	float: right;
}

.fl-left {
	float: left;
}

.align-left {
	text-align: left;
}

.align-right {
	text-align: right;
}

.align-center {
	text-align: center;
}

.bold {
	font-weight: bold;
}

.mb-10 {
	margin-bottom: 10px;
}

.mb-15 {
	margin-bottom: 15px;
}

.mb-20 {
	margin-bottom: 20px;
}

.mb-25 {
	margin-bottom: 25px;
}

.mb-30 {
	margin-bottom: 30px;
}

.mb-35 {
	margin-bottom: 35px;
}

.mb-40 {
	margin-bottom: 40px;
}

/* ＝＝＝＝＝＝＝ヘッダー部分スタイル＝＝＝＝＝＝＝＝ */

header {
	box-sizing: border-box;
}

header .header_bar {
	width: 100%;
	background-color: rgba(255, 255, 255, 0.6);
}

header .header_bar .header_bar_inner {
	max-width: 1000px;
	margin: 0 auto;
	padding: 10px 0;
}

header .header_bar .header_bar_inner img {
	max-width: 305px;
	width: 305px;
}

header .catch {
	max-width: 1000px;
	margin: 0 auto;
	padding-top: 40px;
}

header .catch img {
	max-width: 731px;
}

/*1024px用*/
@media screen and (max-width: 1024px) {

	header .header_bar .header_bar_inner {
		max-width: 1024px;
		margin: 0 auto;
		padding: 10px 20px;
	}

	header .catch {
		max-width: 1000px;
		margin: 0 auto;
		padding: 40px 20px;
		text-align: center;
	}
}

/*スマホ用*/
@media screen and (max-width: 639px) {
	header .header_bar .header_bar_inner {
		text-align: center;
	}

	header .header_bar .header_bar_inner img {
		max-width: 200px;
		width: 200px;
	}
}

/* ＝＝＝＝＝＝＝request部分スタイル＝＝＝＝＝＝＝＝ */
.request {
	background-color: var(--color-main);;
}

.request_inner {
	width: 100%;
	max-width: 960px;
	height: 100%;
	padding: 40px 20px;
	margin: 0px auto 0px;
	box-sizing: border-box;
}

.request_inner p {
	color: #FFF;
	text-align: center;
	font-size: 2.2rem;
	margin-bottom: 20px;
}

.request_inner .btn {
	width: 100%;
	position: relative;
	display: block;
	padding: 15px 0 8px 10%;
	text-decoration: none;
	margin: 0 auto;
	color: var(--color-main);;
	font-size: 4rem;
	font-weight: bold;
	background-color: #FFF;
	border-radius: 40px;
	box-sizing: border-box;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.request_inner .btn:after {
	position: absolute;
	top: 15%;
	right: 10%;
	content: '\f0a9';
	color: var(--color-main);;
	font-size: 4rem;
	font-family: "Font Awesome 5 Free";
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

.request_inner .btn:hover {
    opacity: 0.8;
}

.request_inner .btn:hover:after {
	color: #FFF;
}

.request_break {
	display: none;
}

@media screen and (max-width: 896px) {
	.request_inner .btn {
		font-size: 3.2rem;
		padding: 12px 0 8px 10%;
	}

	.request_inner .btn:after {
		font-size: 3.2rem;
		top: 18%;
		right: 10%;
	}

	.request_inner .btn:hover {
		background-color: #FFF;
		color: var(--color-main);;
	}

	.request_inner .btn:hover:after {
		color: var(--color-main);;
	}

}

@media screen and (max-width: 749px) {
	.request_inner p {
		font-size: 1.6rem;
	}

	.request_inner .btn {
		font-size: 2.8rem;
		line-height: 1.25em;
		padding: 20px 0 15px 10%;
	}

	.request_inner .btn:after {
		font-size: 2.8rem;
		top: 25%;
		right: 10%;
	}
}

@media screen and (max-width: 639px) {

	.request_inner .btn {
		font-size: 2.5rem;
		line-height: 1.25em;
		padding: 20px 0 15px 8%;
	}

	.request_inner .btn:after {
		font-size: 2.5rem;
		top: 28%;
		right: 8%;
	}
}

@media screen and (max-width: 549px) {
	.request_inner .btn {
		font-size: 2.8rem;
		line-height: 1.25em;
		padding: 20px 0 15px 7%;
	}

	.request_inner .btn:after {
		font-size: 5.1rem;
		top: 34%;
		right: 7%;
	}

	.request_break {
		display: block;
	}
}

@media screen and (max-width: 359px) {
	.request_inner .btn {
		font-size: 2.3rem;
		line-height: 1.25em;
		padding: 20px 0 15px 7%;
	}

	.request_inner .btn:after {
		font-size: 4.3rem;
		top: 34%;
		right: 7%;
	}
}

/* ＝＝＝＝＝＝＝コンテンツ内容汎用＝＝＝＝＝＝＝＝ */
.contentarea {}

.contentarea_grey {
	background-color: #faf9f9;
}

.contentarea_inner {
	width: 100%;
	max-width: 1000px;
	height: 100%;
	padding: 100px 0;
	margin: 0px auto 0px;
	box-sizing: border-box;
	font-size: 1.6rem;
}

.no_padding-top {
	padding-top: 0 !important;
}

.content_tit {
	margin-bottom: 50px;
}

.content_tit h2 {
	font-size: 4rem;
	color: var(--color-main);;
	line-height: 1.35em;
	font-weight: bold;
	text-align: center;
	position: relative;
}

.content_tit h2 span {
	font-size: 6rem;
	font-weight: bold;
}

.content_tit h2:before {
	content: '';
	position: absolute;
	bottom: -15px;
	display: inline-block;
	width: 215px;
	height: 5px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: var(--color-main);;
}

h3.statement {
	font-size: 2.2rem;
	font-weight: bold;
	line-height: 1.9em;
	text-align: center;
	margin-bottom: 30px;
}

h3.statement span {
	border-bottom: solid 2px var(--color-normal-black);
	font-weight: bold;
}

.statement_txt {
	text-align: center;
}

.last_statement_txt {
	text-align: center;
	font-size: 1.7rem;
	line-height: 1.9em
}

/*タブレット用*/
@media screen and (min-width:640px) and (max-width:959px) {

	.contentarea_inner {
		padding: 100px 20px;
	}

	.content_tit h2 {
		font-size: 3.5rem;
		line-height: 1.25em;
	}

	.content_tit h2 span {
		font-size: 5.4rem;
	}
}

/*スマホ用*/
@media screen and (max-width: 639px) {

	.contentarea_inner {
		padding: 60px 10px;
	}

	.content_tit {
		margin-bottom: 40px;
	}

	.content_tit h2 {
		font-size: 2.5rem;
		line-height: 1.25em;
	}

	.content_tit h2 span.large {
		font-size: 3.5rem;
	}

	h3.statement {
		font-size: 1.9rem;
		line-height: 1.9em;
		text-align: left;
		margin-bottom: 15px;
	}

	h3.statement br.release {
		display: none;
	}

	.statement_txt {
		text-align: left;
	}

	.last_statement_txt {
		text-align: left;
		font-size: 1.5rem;
	}

}

/*スマホ320px用*/
@media screen and (max-width: 320px) {
	.content_tit h2 {
		font-size: 1.9rem;
	}

	.content_tit h2 span.large {
		font-size: 3rem;
	}

	h3.statement {
		font-size: 1.7rem;
	}
}

/* ＝＝＝＝＝＝＝コンテンツ内容01＝＝＝＝＝＝＝＝ */

.att_content .att {
	width: 100%;
	background-color: #f4f1f1;
	padding: 23px 20px;
	margin-bottom: 20px;
	box-sizing: border-box;
	border-radius: 10px;
}

.att_content .att:last-of-type {
	margin-bottom: 50px;
}

.att_content .att p {
	padding-left: 60px;
	position: relative;
	display: block;
	font-size: 2.3rem;
	line-height: 1.25em;
}

.att_content .att p span {
	color: var(--color-main);;
	font-size: 3rem;
	font-weight: bold;
}

.att_content .att p:before {
	position: absolute;
	top: 2px;
	left: 0;
	content: '\f14a';
	color: var(--color-main);;
	font-size: 5.3rem;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
}

.att_content .att p .annot_ic {
	font-size: 1rem;
	font-weight: normal;
}

.att_content .att p .annot {
	font-size: 1.2rem;
	font-weight: normal;
}

.site {
	position: relative;
	display: inline-block;
	margin-top: 40px;
	padding: 25px 20px;
	width: 100%;
	max-width: 100%;
	font-size: 1.6rem;
	background: #FFF;
	border: solid 4px #f4f1f1;
	box-sizing: border-box;
	border-radius: 10px;
}

.site:before {
	content: "";
	position: absolute;
	top: -74px;
	left: 50%;
	margin-left: -38px;
	border: 38px solid transparent;
	border-bottom: 38px solid #FFF;
	z-index: 2;
}

.site:after {
	content: "";
	position: absolute;
	top: -80px;
	left: 50%;
	margin-left: -38px;
	border: 38px solid transparent;
	border-bottom: 38px solid #f4f1f1;
	z-index: 1;
}

.site h3 {
	font-size: 2.8rem;
	text-align: center;
}

.site .hp_list {
	display: flex;
	flex-wrap: wrap;
	margin: 15px 0 10px;
	box-sizing: border-box;
}

.site .hp_list .hp {
	width: 32%;
	margin-right: 2%;
	box-sizing: border-box;
	text-align: center;
}

.site .hp_list .hp:nth-of-type(3n) {
	margin-right: 0;
}

/*スマホ用*/
@media screen and (max-width: 639px) {
	.att_content .att p {
		padding-left: 45px;
		font-size: 1.8rem;
		line-height: 1.35em;
	}

	.att_content .att p span {
		color: var(--color-main);;
		font-size: 2.2rem;
		font-weight: bold;
	}

	.att_content .att p:before {
		font-size: 4rem;
	}

	.site {
		padding: 15px 10px;
	}

	.site h3 {
		font-size: 1.8rem;
	}

	.site .hp_list .hp p {
		font-size: 1.2rem;
	}
}

/* ＝＝＝＝＝＝＝コンテンツ内容02＝＝＝＝＝＝＝＝ */

.feature_content {
	display: flex;
	width: 100%;
	max-width: 1000px;
	box-sizing: border-box;
	margin-top: 100px;
}

.feature_content .feature {
	display: block;
	position: relative;
	background-color: #f4f1f1;
	padding: 20px;
	width: 32%;
	margin-right: 2%;
	border-radius: 10px;
	box-sizing: border-box;
	text-align: center;
}

.feature_content .feature:nth-of-type(3n) {
	margin-right: 0;
}

.feature .feature_icon {
	position: absolute;
	width: 100%;
	max-width: 185px;
	text-align: center;
	margin: 0 auto;
	left: 0;
	right: 0;
	top: -50px;
	margin-bottom: 50px;
}

.feature h3 {
	padding-top: 130px;
	font-size: 2rem;
	color: var(--color-main);;
	text-align: left;
	margin-bottom: 20px;
}

.feature p {
	text-align: left;
}

/*スマホ用*/
@media screen and (max-width: 639px) {
	.feature_content {
		display: block;
		width: 100%;
		margin-top: 80px;
	}

	.feature_content .feature {
		width: 100%;
		margin-right: 0;
		margin-bottom: 60px;
	}

	.feature_content .feature:nth-of-type(3n) {
		margin-right: 0;
		margin-bottom: 0;
	}

	.feature .feature_icon {
		width: 100%;
		max-width: 120px;
		top: -40px;
	}

	.feature h3 {
		padding-top: 70px;
		font-size: 1.8rem;
		color: var(--color-main);;
		text-align: left;
		margin-bottom: 10px;
	}
}

/* ＝＝＝＝＝＝＝コンテンツ内容03＝＝＝＝＝＝＝＝ */

.ex_input {
	padding: 20px;
	background-color: #FFF;
	box-sizing: border-box;
	border: solid 4px #f4f1f1;
	border-radius: 10px;
	margin-bottom: 100px;
}

.hearing {
	display: flex;
	width: 100%;
	padding: 20px;
	background-color: #FFF;
	box-sizing: border-box;
	border: solid 4px #f4f1f1;
	border-radius: 10px;
	margin-bottom: 100px;
}

.hearing .hearing_txt {
	width: 100%;
	max-width: 728px;
}

.hearing .hearing_txt h4 {
	font-size: 2rem;
	color: var(--color-main);;
	margin-bottom: 20px;
}

.hearing .hearing_img {
	width: 100%;
	max-width: 232px;
}

.ad-id-pl {
	width: 100%;
	margin: 40px 0;
}

.caret-down {
	margin: 30px auto;
	width: 100%;
	max-width: 143px;
	text-align: center;
}

.ad-id-pl_conclusion {
	width: 100%;
	border: 5px solid var(--color-main);;
	padding: 20px;
	text-align: center;
}

.ad-id-pl_conclusion {
	width: 100%;
	max-width: 100%;
	border: 5px solid var(--color-main);;
	border-radius: 25px;
	padding: 10px 20px;
	box-sizing: border-box;
	text-align: center;
}

.ad-id-pl_conclusion h3 {
	font-size: 4.8rem;
	font-weight: bold;
	line-height: 1.25em;
	color: var(--color-main);;
}

.ad-id-pl_conclusion p {
	font-size: 1.8rem;
	color: var(--color-main);;
}

/*タブレット用*/
@media screen and (min-width:640px) and (max-width:959px) {
	.ad-id-pl_conclusion h3 {
		font-size: 3rem;
	}
}

/*スマホ用*/
@media screen and (max-width: 639px) {
	.ex_input {
		padding: 10px;
		margin-bottom: 60px;
	}

	.hearing {
		display: block;
		padding: 20px;
		margin-bottom: 60px;
	}

	.hearing .hearing_txt {
		width: 100%;
		max-width: 100%;
		margin-bottom: 10px;
	}

	.hearing .hearing_txt h4 {
		font-size: 1.8rem;
	}

	.hearing .hearing_img {
		width: 100%;
		max-width: 100%;
		text-align: center;
	}

	.hearing .hearing_img img {
		width: 80%;
	}

	.ad-id-pl {
		width: 100%;
		margin: 20px 0;
	}

	.ad-id-pl_txt {
		text-align: left;
	}

	.ad-id-pl_conclusion h3 {
		font-size: 2.2rem;
	}

	.ad-id-pl_conclusion p {
		font-size: 1.4rem;
	}
}

/* ＝＝＝＝＝＝＝コンテンツ内容04＝＝＝＝＝＝＝＝ */

.condition_content {
	width: 100%;
	background-color: #FFF;
	box-sizing: border-box;
	border: solid 4px #f4f1f1;
	border-radius: 10px;
	margin-top: 20px;
	margin-bottom: 100px;
}

.condition_content .condition {
	display: flex;
	width: 100%;
	box-sizing: border-box;
	padding: 40px 20px;
}

.condition_content .condition:nth-child(even) {
	background-color: #faf9f9;
}

.condition .condition_img {
	width: 100%;
	max-width: 226px;
	box-sizing: border-box;
}

.condition .condition_txt {
	width: 100%;
	max-width: 774px;
	box-sizing: border-box;
	padding: 0 0 0 20px;
}

.condition .condition_txt h3 {
	font-size: 2.4rem;
	color: var(--color-main);;
}

.condition .condition_txt p {
	font-size: 2rem;
}

.condition .condition_txt p.note {
	font-size: 1.6rem;
	color: var(--color-main);;
}

.adjustment {
	display: flex;
	width: 100%;
	padding: 20px;
	background-color: #FFF;
	box-sizing: border-box;
	border: solid 4px #f4f1f1;
	border-radius: 10px;
}

.adjustment .adjustment_txt {
	width: 100%;
	max-width: 728px;
}

.adjustment .adjustment_txt h4 {
	font-size: 2rem;
	color: var(--color-main);;
	margin-bottom: 20px;
}

.adjustment .adjustment_img {
	width: 100%;
	max-width: 232px;
}

.site_sp {
	padding: 25px 20px;
	width: 100%;
	max-width: 100%;
	font-size: 1.6rem;
	background: #FFF;
	border: solid 4px #f4f1f1;
	box-sizing: border-box;
	border-radius: 10px;
	margin-bottom: 20px;
}

.site_sp h3 {
	font-size: 2rem;
	text-align: center;
}

.site_sp .hp_sp_list {
	display: flex;
	flex-wrap: wrap;
	margin: 15px 0 10px;
	box-sizing: border-box;
}

.site_sp .hp_sp_list .hp:nth-of-type(3n) {
	margin-right: 0;
}

.site_sp .hp_sp_list .hp {
	width: 32%;
	margin-right: 2%;
	box-sizing: border-box;
	text-align: center;
	margin-top: 20px;
}

.site_sp .hp_sp_list .hp:nth-child(-n+3) {
	margin-top: 0;

}

/*スマホ用*/

@media screen and (max-width: 639px) {
	.condition_content {
		margin-bottom: 60px;
	}

	.condition_content .condition {
		display: block;
		width: 100%;
		padding: 20px;
	}

	.condition .condition_img {
		width: 100%;
		max-width: 100%;
		text-align: center;
		margin-bottom: 20px;
	}

	.condition .condition_img img {
		width: 80%;
		text-align: center;
	}

	.condition .condition_txt {
		width: 100%;
		max-width: 100%;
		box-sizing: border-box;
		padding: 0;
	}

	.condition .condition_txt h3 {
		font-size: 1.8rem;
		font-weight: bold;
		color: var(--color-main);;
	}

	.condition .condition_txt p {
		font-size: 1.6rem;
	}

	.adjustment {
		display: block;
		padding: 20px;
		margin-bottom: 60px;
	}

	.adjustment .adjustment_txt {
		width: 100%;
		max-width: 100%;
		margin-bottom: 10px;
	}

	.adjustment .adjustment_txt h4 {
		font-size: 1.8rem;
	}

	.adjustment .adjustment_img {
		width: 100%;
		max-width: 100%;
		text-align: center;
	}

	.adjustment .adjustment_img img {
		width: 80%;
	}

	.site_sp {
		padding: 15px 10px;
	}

	.site_sp h3 {
		font-size: 1.8rem;
	}

	.site_sp .hp_sp_list .hp p {
		font-size: 1.2rem;
	}
}


/* ＝＝＝＝＝＝＝コンテンツ内容05＝＝＝＝＝＝＝＝ */
.fee-structure {
	display: flex;
	width: 100%;
	padding: 20px;
	background-color: #FFF;
	box-sizing: border-box;
	border: solid 4px #f4f1f1;
	border-radius: 10px;
	margin-bottom: 100px;
}

.fee-structure .fee-structure_txt {
	width: 100%;
	max-width: 728px;
}

.fee-structure .fee-structure_txt h4 {
	font-size: 2rem;
	color: var(--color-main);;
	margin-bottom: 20px;
}

.fee-structure .fee-structure_img {
	width: 100%;
	max-width: 232px;
}

.company-hp {
	display: flex;
	width: 100%;
	padding: 20px;
	background-color: #FFF;
	box-sizing: border-box;
	border: solid 4px #f4f1f1;
	border-radius: 10px;
	margin-bottom: 100px;
}

.company-hp .company-hp_txt {
	width: 100%;
	max-width: 500px;
	padding-left: 20px;
	box-sizing: border-box;
}

.company-hp .company-hp_txt h4 {
	font-size: 2rem;
	color: var(--color-main);;
	margin-bottom: 20px;
}

.company-hp .company-hp_img {
	width: 100%;
	max-width: 460px;
}

.attract-control {
	display: flex;
	width: 100%;
	padding: 20px;
	background-color: #FFF;
	box-sizing: border-box;
	border: solid 4px #f4f1f1;
	border-radius: 10px;
}

.attract-control .attract-control_txt {
	width: 100%;
	max-width: 728px;
}

.attract-control .attract-control_txt h4 {
	font-size: 2rem;
	color: var(--color-main);;
	margin-bottom: 20px;
}

.attract-control .attract-control_img {
	width: 100%;
	max-width: 232px;
}


/*スマホ用*/
@media screen and (max-width: 639px) {
	.fee-structure {
		display: block;
		padding: 20px;
		margin-bottom: 60px;
	}

	.fee-structure .fee-structure_txt {
		width: 100%;
		max-width: 100%;
		margin-bottom: 10px;
	}

	.fee-structure .fee-structure_txt h4 {
		font-size: 1.8rem;
	}

	.fee-structure .fee-structure_img {
		width: 100%;
		max-width: 100%;
		text-align: center;
	}

	.fee-structure .fee-structure_img img {
		width: 80%;
	}

	.company-hp {
		flex-direction: column;
		padding: 20px;
		margin-bottom: 60px;
	}

	.company-hp .company-hp_txt {
		order: 1;
		width: 100%;
		max-width: 100%;
		padding-left: 0;
		margin-bottom: 10px;
	}

	.company-hp .company-hp_txt h4 {
		font-size: 1.8rem;
	}

	.company-hp .company-hp_img {
		order: 2;
		width: 100%;
		max-width: 100%;
		text-align: center;
	}

	.company-hp .company-hp_img img {
		width: 80%;
	}

	.attract-control {
		display: block;
		padding: 20px;
	}

	.attract-control .attract-control_txt {
		width: 100%;
		max-width: 100%;
		margin-bottom: 10px;
	}

	.attract-control .attract-control_txt h4 {
		font-size: 1.8rem;
	}

	.attract-control .attract-control_img {
		width: 100%;
		max-width: 100%;
		text-align: center;
	}

	.attract-control .attract-control_img img {
		width: 80%;
	}
}

/* ＝＝＝＝＝＝＝コンテンツ内容06＝＝＝＝＝＝＝＝ */

/* ＝＝＝＝＝＝＝コンテンツ内容07＝＝＝＝＝＝＝＝ */
.townlife {
	padding: 0;
	width: 100%;
	max-width: 100%;
	font-size: 2.4rem;
	border: solid 2px #f4f1f1;
	box-sizing: border-box;
	border-radius: 10px;
}

.townlife dl,
.townlife dt,
.townlife dd {
	box-sizing: border-box;
}

.townlife dl {
	display: flex;
	flex-wrap: wrap;
}

.townlife dl dt {
	width: 22.5%;
	padding: 15px 20px;
	border-radius: 8px 0 0 0;
	background-color: #faf9f9;
	border-bottom: 1px solid #faf9f9;
	text-align: center;
}

.townlife dl dd {
	width: 77.5%;
	padding: 15px 20px;
	border-bottom: 1px solid #faf9f9;
}

.townlife dl dt:last-of-type {
	border-bottom: initial;
	border-radius: 0 0 0 8px;
}

.townlife dl dd:last-of-type {
	border-bottom: initial;
}

/*タブレット用*/
@media screen and (min-width:640px) and (max-width:959px) {
	.townlife {
		font-size: 1.8rem;
	}
}

/*スマホ用*/
@media screen and (max-width: 639px) {
	.townlife {
		font-size: 1.6rem;
	}

	.townlife dl {
		display: block;
	}

	.townlife dl dt {
		width: 100%;
		padding: 15px 20px;
		border-radius: 0;
		border-bottom: initial;
		text-align: left;
	}

	.townlife dl dt:first-of-type {
		border-radius: 8px 8px 0 0;
	}

	.townlife dl dt:last-of-type {
		border-radius: 0 0 0 0;
	}

	.townlife dl dd {
		width: 100%;
		padding: 15px 20px;
		border-bottom: initial;
	}
}

/* ＝＝＝＝＝＝＝コンテンツ内容08＝＝＝＝＝＝＝＝ */
.last {
	padding: 40px 0;
	margin-bottom: 30px;
}

h2.last_word {
	margin: 0;
	position: relative;
	font-weight: normal;
	font-size: 3rem;
	color: var(--color-main);;
	text-align: center;
	background-color: #fff;
}

h2.last_word:before {
	content: '';
	height: 160px;
	width: 26%;
	border: solid 4px var(--color-main);;
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	z-index: -1;
}

/*スマホ用*/
@media screen and (max-width: 639px) {
	.last {
		padding: 40px 0;
		margin-bottom: 30px;
	}

	h2.last_word {
		margin: 0;
		position: relative;
		font-weight: bold;
		font-size: 1.8rem;
		color: var(--color-main);;
		text-align: center;
		background-color: #fff;
	}

	h2.last_word:before {
		content: '';
		height: 120px;
		width: 40%;
		border: solid 4px var(--color-main);;
		display: block;
		position: absolute;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		margin: auto;
		z-index: -1;
	}
}

/* ＝＝＝＝＝＝＝foote部分スタイル＝＝＝＝＝＝＝＝ */

footer {
	background-color: var(--color-main);;
	color: #fff;
}

footer .fotter_inner {
	padding: 0 0 40px 0;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	box-sizing: border-box;
}

footer .copyright {
	text-align: center;
}

/*PAGE TOP*/
#page_top {
	width: 50px;
	height: 50px;
	position: fixed;
	right: 20px;
	bottom: 50px;
	background: #d3d3d3;
	border-radius: 50%;
}

#page_top a {
	position: relative;
	display: block;
	width: 50px;
	height: 50px;
	text-decoration: none;
}

#page_top a:before {
	font-family: "Font Awesome 5 Free";
	content: "\f102";
	/*アイコン*/
	font-weight: bold;
	font-size: 3rem;
	color: #fff;
	/*アイコンの色*/
	position: absolute;
	width: 25px;
	height: 45px;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	text-align: center;
}
	/*スマホ用*/
	@media screen and (max-width: 639px) {

		footer .fotter_inner {
			padding: 0;
			width: 100%;
			margin: 0 auto;
		}

		footer .copyright {
			font-size: 8px;
			text-align: center;
			padding: 0 0 40px 0;
		}
	}


/* 20250306 静追加分 */

.fv__bg-mokume {
    background-image: url(../img/img_mokume_bg.webp);
    background-repeat: repeat;
    padding-bottom: 8px;
    width: 100%;
    justify-content: center;
}

.fv__main {
    width: 100%;
    margin: 0 auto;
}
@media screen and (min-width: 1000px) {
    .fv__main {
        width: 80%;
    }
}
@media screen and (min-width: 1500px) {
    .fv__main {
        width: 70%;
    }
}
@media screen and (min-width: 1800px) {
    .fv__main {
        width: 60%;
    }
}


.cta__bg {
    background-color: var(--color-main);
    padding: 40px 0;
}
.cta__btn {
    display: flex;
    background-color: white;
    color: var(--color-main);
    border-radius: 100px;
    padding: 20px;
    align-items: center;
    justify-content: center;
    width: 80%;
    max-width: 560px;
    margin: 0 auto;
    text-decoration: none;
}
.cta__btn:hover {
    opacity: 0.9;
}
.cta__text {
    text-align: center;
    font-size: var(--font-size-3xl);
    font-weight: 700;
}
.cta__icon {
    width: var(--font-size-4xl);
}


.onayami__bg {
    padding: 56px 0;
    background-color: var(--color-light-secondary);
}
.onayami__cont {
    display: flex;
    justify-content: center;
    border: solid var(--border-sm) var(--color-normal-black);
    background-color: white;
    width: 95%;
    max-width: 600px;
    margin: 0 auto;

}
.onayami__ul {
    padding: var(--spacing-3xl) 10px var(--spacing-3xl) 40px;
    justify-content: center;
}
.onayami__li {
    list-style-type: disc;
    font-size: var(--font-size-2xl);
    font-weight: 700;
    margin: var(--spacing-md) auto;
}
.orange {
    color: var(--color-main);
    font-weight: 700;
}

.kaiketsu__bg {
    background-color: white;
}
.kaiketsu__inner {
    margin: 0 auto;
    width: 95%;
    max-width: 520px;
    text-align: center;
    justify-content: center;
}
.kaiketsu__triangle {
    color: var(--color-normal-black);
    font-size: var(--font-size-4xl);
}
.kaiketsu__matomete-text {
    display: inline-block;
    background-color: var(--color-main);
    color: white;
    font-size: var(--font-size-4xl);
    font-weight: 700;
    padding: var(--spacing-3xs) var(--spacing-md);
    width: auto;
    white-space: nowrap;
}
.kaiketsu__townlife-nara-text {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin-top: var(--spacing-2xl);
}
.kaiketsu__cont {
    display: flex;
    gap: var(--spacing-3xs);
    margin: var(--spacing-md);
    padding: 0 var(--spacing-lg);
    justify-content: center;
}
.kaiketsu__item {
    border: var(--color-normal-black)     solid var(--border-md);
    padding: var(--spacing-md);
    border-radius: var(--font-size-xs);
    min-width: 80px;
}
.kaiketsu__item-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    white-space: nowrap;
}
.kaiketsu__zero {
    font-size: var(--font-size-3xl);
    font-weight: 700;
}