@charset "UTF-8";
/* ------------------------------
　　ベース
------------------------------ */
body {
	color: #333;
	font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial, Hiragino Kaku Gothic Pro,ヒラギノ角ゴ Pro W3,Meiryo,メイリオ,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
	background: #FFF;
	font-size: 16px;
}

/* リンクの設定 */
a {
	color: #006DD9;
	text-decoration: none;
	border: none;
}

a:visited {
	color: #7F5AD7;
	text-decoration: none;
}

a:active {
	color: #006DD9;
	text-decoration: none;
}

a:hover {
	color: #006DD9;
	text-decoration: underline;
}

/* コンテナー */
.acms-container {
	max-width: 1140px;
	padding-right: 10px;
	padding-left: 10px;
	padding-right: calc(10px + constant(safe-area-inset-right));
	padding-left: calc(10px + constant(safe-area-inset-left));
}
.acms-container .acms-container {
	padding: 0;
}

.narrow-container {
	max-width: 960px;
	margin: 0 auto;
	padding-right: 10px;
	padding-left: 10px;
	padding-right: calc(10px + constant(safe-area-inset-right));
	padding-left: calc(10px + constant(safe-area-inset-left));
}

.top-bg-white1 {
	padding: 0 0 30px 0;
}
.top-bg-white2, .top-bg-paleblue {
	padding: 30px 0;
}
.top-bg-paleblue {
	border-top: solid 1px #E1EEF3;
	border-bottom: solid 1px #E1EEF3;
	background-color: #F5F8FA;
}
@media screen and (min-width: 768px) {
.top-bg-white1 {
	padding: 30px 0 60px 0;
}
.top-bg-white2, .top-bg-paleblue {
	padding: 60px 0;
}
}

/* フォント */
.en-font, .en-font-bold {
	font-family: Arial, sans-serif;
}
.en-font-bold {
	font-weight: bold;
}

/* ------------------------------
　　アニメーション
------------------------------ */
@-webkit-keyframes fade-in {
	0% {
		display: none;
		opacity: 0;
	}
	20% {
		display: block;
		opacity: 0;
	}
	100% {
		display: block;
		opacity: 1;
	}
}
@keyframes fade-in {
	0% {
		display: none;
		opacity: 0;
	}
	20% {
		display: block;
		opacity: 0;
	}
	100% {
		display: block;
		opacity: 1;
	}
}

/* ------------------------------
　　バナー
------------------------------ */
.banner {
	margin: 0;
	padding: 0;
	list-style: none;
}
.banner a {
	display: block;
	-webkit-transition: opacity .25s ease-out;
	transition: opacity .25s ease-out;
}
.banner a:hover {
	opacity: .6;
}

.banner-list-item {
	margin: 0 0 10px 0;
}

/* トップおすすめ情報バナー */
.top_recommend_bnr ul {
	margin: 30px 0 0 0;
	line-height: 0;
	font-size: 0;
}
.top_recommend_bnr li {
	line-height: 1.15;
	font-size: 14px;
}
.top_recommend_bnr li img {
	margin: 0 auto;
}

@media (min-width: 768px) {
	.top_recommend_bnr li {
		width: 32%;
		margin-left: 2%;
		margin-bottom: 0;
		display: inline-block;
	}
	.top_recommend_bnr li:first-child {
		margin-left: 0;
	}
}

/* ------------------------------
　　ボタン
------------------------------ */
.btn {
	background: #666;
	border: 0;
	color: #FFF;
	font-weight: bold;
	line-height: 1.3;
	border: 0;
	display: inline-block;
	padding: 6px 15px;
	border-radius: 3px;
}
.btn:hover,
.btn:visited {
	color: #FFF;
	text-decoration: none;
}
.btn:focus,
.btn:active {
	color: #FFF;
	-webkit-box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, .5);
	box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, .5);
}
.btn:hover {
	color: #FFF;
	background-color: #444;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#666), to(#444));
	background-image: linear-gradient(to bottom, #666, #444);
}
.btn:active,
.btn:focus {
	background: #444;
}

/* ボタン　色付き */
.btn-attention {
	background: #EF9430;
	border: 0;
	color: #FFF;
	font-weight: bold;
	line-height: 1.3;
	border: 0;
	display: inline-block;
	padding: 6px 15px;
	border-radius: 4px;
	-webkit-transition: opacity .2s ease-out;
	transition: opacity .2s ease-out;
}
.btn-attention:hover,
.btn-attention:visited {
	color: #FFF;
	text-decoration: none;
}
.btn-attention:focus,
.btn-attention:active {
	-webkit-box-shadow: inset 0 1px 8px 0 rgba(0, 0, 0, .3);
	box-shadow: inset 0 1px 8px 0 rgba(0, 0, 0, .3);
}
.btn-attention:hover {
	opacity: .6;
}
.btn-attention:active,
.btn-attention:focus {
	background: #EF9430;
}

/* ボタンサイズ大 */
.btn-large {
	background: #666;
	color: #FFF;
	font-weight: bold;
	line-height: 1.3;
	border: 0;
	display: inline-block;
	padding: 15px 20px;
	text-align: center;
	border-radius: 5px;
	font-size: 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: background-color .25s linear;
	transition: background-color .25s linear;
}
.btn-large:hover,
.btn-large:visited {
	color: #FFF;
	text-decoration: none;
}
.btn-large:focus,
.btn-large:active {
	color: #FFF;
	-webkit-box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, .5);
	box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, .5);
}
.btn-large:hover {
	background: #444;
}
.btn-large:active,
.btn-large:focus {
	background: #444;
}

/* ボタンサイズ大 色付き */
.btn-attention-large {
	background: #EF9430;
	color: #FFF;
	font-weight: bold;
	line-height: 1.3;
	border: 0;
	display: inline-block;
	padding: 15px 20px;
	text-align: center;
	border-radius: 5px;
	font-size: 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: opacity .2s ease-out;
	transition: opacity .2s ease-out;
}
.btn-attention-large:hover,
.btn-attention-large:visited {
	color: #FFF;
	text-decoration: none;
}
.btn-attention-large:focus,
.btn-attention-large:active {
	-webkit-box-shadow: inset 0 1px 8px 0 rgba(0, 0, 0, .3);
	box-shadow: inset 0 1px 8px 0 rgba(0, 0, 0, .3);
}
.btn-attention-large:hover {
	opacity: .6;
}
.btn-attention-large:active,
.btn-attention-large:focus {
	background: #EF9430;
}

/* デスクトップ：最大360pxボタン */
.btn-block-large {
	width: 100%;
	background: #666;
	color: #FFF;
	font-weight: bold;
	line-height: 1.3;
	border: 0;
	display: inline-block;
	padding: 15px 20px;
	text-align: center;
	border-radius: 5px;
	font-size: 18px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: background-color .25s linear;
	transition: background-color .25s linear;
}
.btn-block-large:hover,
.btn-block-large:visited {
	color: #FFF;
	text-decoration: none;
}
.btn-block-large:focus,
.btn-block-large:active {
	color: #FFF;
	-webkit-box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, .5);
	box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, .5);
}
.btn-block-large:hover {
	background: #444;
}
.btn-block-large:active,
.btn-block-large:focus {
	background: #444;
}

/* デスクトップ：最大360pxボタン 色付き */
.btn-attention-block-large {
	width: 100%;
	background: #EF9430;
	color: #FFF;
	font-weight: bold;
	line-height: 1.3;
	border: 0;
	display: inline-block;
	padding: 15px 20px;
	text-align: center;
	border-radius: 5px;
	font-size: 18px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: opacity .2s ease-out;
	transition: opacity .2s ease-out;
}

.entry-column p a.btn-attention-block-large {
	color: #FFF;
	text-decoration: none;
}
.btn-attention-block-large:hover,
.btn-attention-block-large:visited {
	color: #FFF;
	text-decoration: none;
}
.btn-attention-block-large:hover {
	opacity: .6;
}

.btn-search-icon {
	background: url(../../images/marker/sreach-icon.svg) no-repeat calc(50% - 5.5em) 50% #EF9430;
	background-size: auto;
}
.btn-search-icon-top {
	background: url(../../images/marker/sreach-icon.svg) no-repeat calc(0% + 1em) 50% #EF9430;
	background-size: auto;
	padding: 15px 40px;
}
.btn-send-icon {
	background: url(../../images/marker/mail-icon.svg) no-repeat calc(50% + 5em) 50% #EF9430;
	background-size: auto;
}

@media (min-width: 768px) {
	.btn-block-large {
		max-width: 360px;
	}
	.btn-attention-block-large {
		max-width: 460px;
	}
	.top-search-box {
		text-align: center;
	}
	.top-search-box p {
		margin: 0;
	}
}

@media (max-width: 767px) {
	.btn-search-block {
		display: block;
		width: 100%;
		margin: 0 auto;
		padding: 15px 20px;
		font-size: 20px;
	}
	.btn-search-icon-top {
		padding: 15px 40px;
	}
}

/* ボーダーボタン */
.home-btn {
	margin: 20px auto 10px;
}

.btn-border {
	display: inline-block;
	padding: 7px 10px;
	color: #333;
	border: 1px solid #CCC;
	border-radius: 4px;
	font-size: 16px;
}
.btn-border [class*="acms-icon-"] {
	color: #CCC;
	font-size: 14px;
}
.btn-border:hover {
	text-decoration: none;
}

/* ------------------------------
　　カード
------------------------------ */
.card {
	margin: 0 0 40px 0;
	padding: 0;
	list-style: none;
}

.card-item {
	border-bottom: 2px solid #E1EEF3;
}

.card-link {
	display: block;
	margin: 0 -10px;
	padding: 20px 10px 10px 10px;
	color: #333;
}
.card-link:hover {
	text-decoration: none;
	background: #FDFDD5;
	-webkit-transition: background-color .25s linear;
	transition: background-color .25s linear;
}
.card-link:hover,
.card-link:visited,
.card-link:active,
.card-link:focus {
	color: #333;
}

.card-img {
	margin: 0 0 10px 0;
}

.card-img img {
	-webkit-transition: opacity .25s ease-out;
	transition: opacity .25s ease-out;
	margin: 0 auto;
}
.card-img img:hover {
	opacity: .8;
}

.card-title {
	margin: 0;
	font-size: 18px;
	font-weight: bold;
	color: #3381CE;
}
.card-area {
	margin: 5px 0 15px 0;
	font-size: 16px;
	font-weight: bold;
}
.card-kouku {
	font-weight: normal;
	margin-left: 15px;
	color: #779AAE;
}
.top-bg-white1 .card-kouku,
.top-bg-paleblue .card-kouku {
	margin-left: 0;
}
.top-bg-white1 .card-area,
.top-bg-paleblue .card-area {
	margin: 5px 0;
}
.card-land-detail {
	font-size: 16px;
	margin-top: 8px;
	width: 100%;
	border-top: 1px solid #E1EEF3;
}
.card-land-detail th {
	width: 3em;
	font-weight: bold;
}
.card-land-detail th,
.card-land-detail td {
	padding: 8px 0;
	border-bottom: 1px solid #E1EEF3;
}
.card-land-detail th span {
	font-size: 12px;
	letter-spacing: 2px;
	font-weight: bold;
	padding: 3px 6px;
	color: #FFF;
	background-color: #3381CE;
	border-radius: 3px;
}
.card-land-detail td span {
	font-size: 24px;
	font-weight: bold;
	margin-right: 5px;
	color: #FF0004;
}
.card-point {
	clear: both;
	color: #779AAE;
	font-size: 16px;
	margin: 10px 0 15px 0;
}
.card-detail {
	font-size: 13px;
}
.card-detail-btn {
	margin: 0 0 15px 0;
	display: inline-block;
	color: #FFF;
	font-size: 14px;
	background-color: #EF9430;
	border-radius: 4px;
	padding: 10px 15px;
	-webkit-transition: background-color .15s ease-out;
	transition: background-color .15s ease-out;
}
.card-detail-btn:hover {
	background-color: #F4BF7D;
}

@media (min-width: 768px) {
	.top-list-box {
		border-top: solid 2px #3381CE;
		border-left: solid 1px #779AAE;
		border-right: solid 1px #779AAE;
		border-bottom: solid 1px #779AAE;
		margin-bottom: 25px;
		background-color: #FFF;
	}
	.top-list-box .card-item {
		border-bottom: none;
	}
	.top-list-box .card-link {
		padding: 20px 15px;
	}
}

/* ------------------------------
	リノベーションカード
------------------------------ */
.top-renovation-card {
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 0;
}
.top-renovation-card li {
	border: solid 1px #779AAE;
	display: inline-block;
	width: 100%;
	margin-bottom: 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	vertical-align: top;
}
.renovation-txt {
	font-size: 14px;
}
.top-renovation-card li a {
	display: block;
	color: #333;
	padding: 15px;
}
.top-renovation-card li a:hover {
	text-decoration: none;
	background: #FDFDD5;
	-webkit-transition: background-color .25s linear;
	transition: background-color .25s linear;
}
.top-renovation-card img {
	-webkit-transition: opacity .25s ease-out;
	transition: opacity .25s ease-out;
	margin-bottom: 15px;
}
.top-renovation-card img:hover {
	opacity: .8;
}

@media (min-width: 768px) {
	.top-renovation-card li {
		width: 32%;
		margin-left: 2%;
		margin-bottom: 0;
	}
	.top-renovation-card li:first-child {
		margin-left: 0;
	}
}

/* ------------------------------
　　ヘッドライン
------------------------------ */
.headline-item {
	line-height: 1.5;
}

.headline-link {
	color: #333;
	-webkit-transition: background-color .25s ease-out;
	transition: background-color .25s ease-out;
}
.headline-link:hover,
.headline-link:visited,
.headline-link:active,
.headline-link:focus {
	color: #333;
}
.headline-link:hover {
	padding: 10px;
	background: #F1F1F1;
}

.headline-title {
	margin: 0 10px;
}

.acms-label.information, a.acms-label.information,
.acms-label.seminar, a.acms-label.seminar,
.acms-label.event, a.acms-label.event {
	color: #FFF;
}
.acms-label.information {
	background-color: #E4082D;
}
.acms-label.seminar {
	background-color: #57A6F2;
}
.acms-label.event {
	background-color: #49B94F;
}
.entry-info a.acms-label {
	text-decoration: none;
	margin: 0 3px;
	-webkit-transition: opacity .25s ease-out;
	transition: opacity .25s ease-out;
}
.entry-info a.acms-label:hover {
	opacity: .6;
}

@media screen and (max-width: 479px) {
	/* 画面幅が小さいとき */
	/* ヘッドライン */
	.headline-item {
		padding: 10px 0;
	}
	.headline-title {
		display: block;
		margin: 0;
	}
}

/* ------------------------------
　　リスト
------------------------------ */
@media screen and (min-width: 768px) {
	/* リスト */
	a.list-link.acms-list-group-item {
		padding: 10px 20px 10px 10px;
		-webkit-transition: padding .15s ease-out;
		transition: padding .15s ease-out;
	}
	a.list-link.acms-list-group-item:hover {
		padding: 10px 10px 10px 20px;
		-webkit-transition: padding .25s ease-out;
		transition: padding .25s ease-out;
	}
	/* ラベルがあったとき */
	a.list-link.acms-list-group-label-parent {
		padding: 15px 30px 15px 10px;
		-webkit-transition: padding .15s ease-out;
		transition: padding .15s ease-out;
	}
	a.list-link.acms-list-group-label-parent:hover {
		padding: 15px 30px 15px 20px;
	}
}

.category-list .acms-badge {
	background-color: #D9D9D9;
	color: #333;
}
.acms-list-group-item:hover {
	background: #F6F6F6;
}

/* 検索結果 */
.list-results-wrap {
	margin: 15px 0 15px 0;
	padding: 15px;
	border: 2px solid #E1EEF3;
}

.list-results-heading {
	margin: 0 0 15px 0;
	padding: 8px;
	background: #E1EEF3;
	font-size: 16px;
}

.list-results {
	position: relative;
	margin: 0 0 0 8px;
}

.list-results-item {
	position: absolute;
	width: 100px;
}

.list-results-detail {
	margin: 0;
	padding: 0 0 0 100px;
	font-weight: bold;
}

/* ------------------------------
　　各モジュール
------------------------------ */
.module-section {
	margin: 0 0 30px 0;
}

/* タイトル */
.module-header {
	position: relative;
	margin: 0;
	padding: 0 0 15px 0;
	color: #333;
	border-bottom: 2px solid #3381CE;
}
.module-header + .thumbnail,
.module-header + .summary-default,
.module-header + .entry-column,
.module-header + .card,
.module-header + .search-form,
.module-header + .banner {
	margin-top: 10px;
}
.module-header.side-header {
	padding: 15px 8px;
	text-align: center;
	color: #FFF;
	border-bottom: none;
	background-color: #3381CE;
}
.top-module-header {
	text-align: center;
	margin: 0;
	padding: 0 0 10px 0;
	border-bottom: 2px solid #E1EEF3;
}
.top-heading {
	margin: 0;
	font-size: 28px;
	line-height: 1.0;
}

.top-module-sec {
	text-align: center;
	margin: 0;
	padding: 30px 0;
}
.top-module-sec p {
	margin: 0 0 5px 0;
}
.top-heading-sec {
	margin: 0 0 30px 0;
	font-size: 24px;
	line-height: 1.0;
}

.module-heading {
	margin: 0;
	font-size: 24px;
	line-height: 1.0;
}
.module-header.side-header .module-heading {
	font-size: 16px;
}

.module-heading .en-heading {
	margin-left: 10px;
	font-size: 14px;
	color: #3381CE;
	font-family: Arial, sans-serif;
}
.module-heading [class*="acms-icon-"] {
	margin: 0 10px 0 0;
	vertical-align: baseline;
}

a.module-index-link {
	position: absolute;
	right: 0;
	bottom: 10px;
	color: #333;
	font-size: 14px;
	line-height: 1.0;
}
a.module-index-link [class*="acms-icon-"] {
	color: #EF9430;
	font-size: 14px;
	line-height: 1.0;
	padding-right: 5px;
	vertical-align: top;
}
a.module-index-link:hover {
	text-decoration: none;
	color: #EF9430;
}

/* カスタムフィールドグループ */
.group-list {
	padding: 0 10px;
	list-style: none;
}

/* 行揃えの設定 */
/* 見出し */
.heading-align-left .group-heading {
	text-align: left;
}

.heading-align-center .group-heading {
	text-align: center;
}

.heading-align-right .group-heading {
	text-align: right;
}

/* 概要文 */
.detail-align-left .group-detail {
	text-align: left;
}

.detail-align-center .group-detail {
	text-align: center;
}

.detail-align-right .group-detail {
	text-align: right;
}

/* ボタン */
.btn-align-left .group-btn-wrap {
	text-align: left;
}

.btn-align-center .group-btn-wrap {
	text-align: center;
}

.btn-align-right .group-btn-wrap {
	text-align: right;
}

/* ------------------------------
　　ページタイトル
------------------------------ */
.page-title-wrapper {
	position: relative;
	display: table;
	width: 100%;
	height: 100px;
	color: #333;
	background: #FFF no-repeat center;
	background-size: cover;
	border-top: solid 1px #E1EEF3;
}

.page-title-filter {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0, 0, 0, 0);
}

.page-title-inner {
	position: relative;
	display: table-cell;
	padding: 15px 0;
	vertical-align: middle;
	text-align: center;
}

.page-title {
	margin: 0 0 10px 0;
	font-size: 28px;
	font-weight: bold;
	line-height: 1.2;
}
.page-title a {
	color: #FFF;
}

.page-description {
	margin: 10px 0;
	font-size: 14px;
	line-height: 1.5;
	color: #3381CE;
}

@media (min-width: 768px) {
	.page-title-wrapper {
		height: 150px;
	}
}
@media (min-width: 1024px) {
	.page-title-wrapper {
		border-top: none;
	}
}

/* ------------------------------
　　ページャー
------------------------------ */
.pager {
	margin: 0 -5px 50px -5px;
	padding: 0;
	text-align: center;
	list-style: none;
}
.pager li {
	display: inline-block;
	margin: 0 5px;
}
.pager li.cur {
	/* 現在いる位置 */
	padding: 5px 20px;
	color: #FFF;
	background: #3381CE;
	border-radius: 3px;
}

.pager-link {
	display: block;
	padding: 5px 20px;
	color: #3381CE;
	background: #F5F8FA;
	border-radius: 3px;
}
.pager-link:visited,
.pager-link:focus,
.pager-link:active {
	color: #3381CE;
}
.pager-link:hover {
	color: #FFF;
	text-decoration: none;
	background: #3381CE;
}

.pager-link-forward {
	float: right;
}

.pager-link-prev {
	float: left;
}

@media screen and (min-width: 768px) {
	.pager-link {
		padding: 5px 10px;
	}
	.pager li.cur {
		/* 現在いる位置 */
		padding: 5px 10px;
	}
}

/* 前後リンク */
.serial-nav {
	margin: -25px 0 60px 0;
	padding: 0;
	list-style: none;
}
.serial-nav .serial-nav-item {
	display: block;
	float: none;
}
.serial-nav .serial-nav-item-prev {
	text-align: left;
}
.serial-nav .serial-nav-item-next {
	text-align: right;
}
.serial-nav a {
	display: block;
	padding: 25px 0;
	color: #333;
	border-bottom: 1px solid #E5E5E5;
}
.serial-nav a:hover,
.serial-nav a:visited,
.serial-nav a:focus,
.serial-nav a:active {
	color: inherit;
	text-decoration: none;
}
.serial-nav a:hover {
	background: #E5E5E5;
}

@media screen and (min-width: 768px) {
	.serial-nav {
		margin: 0 0 60px 0;
		border: 0;
	}
	.serial-nav .serial-nav-item-prev {
		float: left;
	}
	.serial-nav .serial-nav-item-next {
		float: right;
	}
	.serial-nav a {
		display: inline;
		border: 0;
	}
	.serial-nav a:hover {
		text-decoration: underline;
		background: 0;
	}
}

/* ------------------------------
　　検索フォーム
------------------------------ */
.search-form .btn-search {
	padding: 10px 20px;
	color: #FFF;
	background: #333;
	border: 1px solid #333;
	border-radius: 0 4px 4px 0;
	-webkit-filter: none;
	filter: none;
	/* IEでのグラデーションを上書き */
	font-size: 16px;
}
.search-form .btn-search:hover,
.search-form .btn-search:active,
.search-form .btn-search:focus {
	background: #666;
}

.search-form input[type="search"] {
	height: 40px;
	padding: 9px 10px;
	font-size: 16px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

input[type="search"].search-form-input {
	padding-top: 5px;
	padding-bottom: 4px;
	font-size: 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/* ------------------------------
　　スライダー
------------------------------ */
.slick-slider {
	padding: 0 0 12px 0;
}
.slick-slider img {
	margin: 0 auto;
}

.fix-height {
	height: 200px;
	/* はじめのちらつき防止 */
	overflow: hidden;
	/* はじめのちらつき防止 */
}

.slick-slide:hover {
	cursor: pointer;
}

.slick-list:focus:focus {
	position: relative;
}
.slick-list:focus:focus:before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	border: 2px dotted #00C2FF;
	content: "";
}

.js-slider .slick-list:focus {
	position: relative;
}
.js-slider .slick-list:focus:before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	border: 2px dotted #00C2FF;
	content: "";
}

.main-slider-image {
	height: 200px;
	background-color: #333;
	background-position: right center;
	background-repeat: no-repeat;
	background-size: cover;
}
.main-slider-image a:hover {
	text-decoration: none;
}

.main-slider-text-outer {
	height: 100%;
}

.main-slider-text-wrap {
	display: table;
	width: 100%;
	height: 100%;
}

.main-slider-text-inner {
	display: table-cell;
	padding: 0 20px;
	text-align: center;
	vertical-align: middle;
}

.main-slider-main-copy {
	margin: 0;
	color: #FFF;
	font-weight: bold;
	font-size: 24px;
	text-shadow: 0 0 5px rgba(0, 0, 0, .75);
}

.main-slider-side-copy {
	margin: 0;
	color: #FFF;
	font-size: 16px;
	text-shadow: 0 0 4px rgba(0, 0, 0, .75);
}

.main-slider-btn {
	margin: 20px 0 0 0;
	display: inline-block;
	color: #FFF;
	font-size: 14px;
	background-color: #EF9430;
	border-radius: 4px;
	padding: 10px 15px;
	-webkit-box-shadow: 0 0 3px rgba(0, 0, 0, .3);
	box-shadow: 0 0 3px rgba(0, 0, 0, .3);
	-webkit-transition: background-color .15s ease-out;
	transition: background-color .15s ease-out;
}
.main-slider-btn:hover {
	background-color: #F4BF7D;
}

/* ちらつき防止 */
.slick-track,
.slick-list {
	-webkit-transform: translateZ(0);
	-webkit-perspective: 1000;
}

/* 矢印ナビゲーション */
.slick-prev,
.slick-next {
	position: absolute;
	top: 50%;
	display: block;
	width: 19px;
	height: 60px;
	margin-top: -29px;
	padding: 0;
	color: transparent;
	font-size: 0;
	line-height: 0;
	background: transparent;
	border: none;
	outline: none;
	cursor: pointer;
}
.slick-prev:focus,
.slick-next:focus {
	border: 1px dotted #FFF;
}

.slick-prev {
	left: 10px;
	background: url(../../images/marker/icon_white_arrow_left.png?v=2019110844338) no-repeat;
}

.slick-next {
	right: 10px;
	background: url(../../images/marker/icon_white_arrow_right.png?v=2019110844338) no-repeat;
}

/* ドットのナビゲーション */
.slick-dots {
	position: relative;
	clear: both;
	margin: -35px 0 0 0;
	padding: 0;
	text-align: center;
	list-style: none;
}

.slick-dots li {
	display: inline-block;
}

.slick-dots li button {
	position: relative;
	display: inline-block;
	width: 12px;
	height: 12px;
	margin: 0 8px;
	font-size: 0;
	background: #FFF;
	border: 1px solid transparent;
	border-radius: 6px;
	content: "";
	-webkit-box-shadow: 1px 1px 2px rgba(0,0,0,0.2) inset;
	box-shadow: 1px 1px 2px rgba(0,0,0,0.2) inset;
}

.slick-dots li button:focus {
	border: 1px solid #3381CE;
	outline: 0;
}

.slick-dots li:hover button {
	cursor: pointer;
}

.slick-dots li.slick-active button {
	background: #3381CE;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.slick-dots button {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	border: 0;
	clip: rect(0 0 0 0);
}

#autoplay-btn {
	position: absolute;
	right: 10px;
	bottom: 10px;
	z-index: 1;
	width: 50px;
	height: 50px;
	color: #FFF;
	background: rgba(0, 0, 0, .7);
	border: 0;
	border-radius: 50%;
	outline: 0;
	right: calc(10px + constant(safe-area-inset-right));
}
#autoplay-btn:hover {
	background: rgba(0, 0, 0, .9);
}
#autoplay-btn:active:before,
#autoplay-btn:focus:before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	border: 1px dotted #FFF;
	content: "";
}
#autoplay-btn:after {
	position: absolute;
	top: 15px;
	left: 17px;
	display: block;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 16px;
	height: 20px;
	margin-left: 0;
	border-top: none;
	border-right: 5px solid #FFF;
	border-bottom: none;
	border-left: 5px solid #FFF;
	content: "";
}
#autoplay-btn.active:after {
	left: 15px;
	width: 0;
	height: 0;
	margin-left: 5px;
	border-color: transparent transparent transparent #FFF;
	border-style: solid;
	border-width: 10px 0 10px 15px;
}

@media screen and (min-width: 768px) {
	.slick-prev {
		left: 50px;
	}
	.slick-next {
		right: 50px;
	}
	.fix-height {
		height: 400px;
		/* はじめのちらつき防止 */
	}
	.main-slider-image {
		height: 400px;
	}
	.main-slider-main-copy {
		font-size: 40px;
	}
	.main-slider-side-copy {
		font-size: 24px;
	}
	.main-slider-image {
		background-position: center;
	}
}

/* ------------------------------
　　サマリー
------------------------------ */
.summary-default {
	margin: 0 0 20px 0;
	padding: 0;
	list-style: none;
	border-top: 1px solid #E5E5E5;
	border-left: 1px solid #E5E5E5;
}
.summary-default:before,
.summary-default:after {
	display: table;
	content: " ";
}
.summary-default:after {
	clear: both;
}
.summary-default.slick-initialized {
	margin-right: -20px;
	margin-left: -20px;
	overflow: hidden;
	border: 0;
}
.summary-default .slick-list {
	padding: 0 0 0 20px;
	overflow: inherit;
}
.summary-default .slick-dots {
	margin: 0;
}
.summary-default .slick-dots button {
	background: #E5E5E5;
}
.summary-default .slick-dots .slick-active button {
	background: #C41134;
}

.summary-default-item {
	display: block;
	padding: 0 10px;
	color: #333;
	border-right: 1px solid #E5E5E5;
	border-bottom: 1px solid #E5E5E5;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: background-color .25s ease-out;
	transition: background-color .25s ease-out;
}
.acms-entry .summary-default-item {
	padding: 10px;
}
.slick-initialized .summary-default-item {
	width: 280px;
	margin: 2px 10px 2px 2px;
	border: 0;
	-webkit-box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, .08), -1px -1px 1px 1px rgba(0, 0, 0, .08);
	box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, .08), -1px -1px 1px 1px rgba(0, 0, 0, .08);
}

.summary-default-link {
	display: block;
	margin: 0 -10px;
	padding: 10px;
	color: #333;
	-webkit-transition: background .2s;
	transition: background .2s;
}
.summary-default-link:hover,
.summary-default-link:visited,
.summary-default-link:active,
.summary-default-link:focus {
	color: #333;
}
.summary-default-link:hover {
	text-decoration: none;
	background: #F1F1F1;
}

.summary-title {
	margin: 0 0 10px 0;
	font-size: 16px;
	font-weight: bold;
}

.summary-detail {
	margin: 0;
	line-height: 1.5;
	font-size: 13px;
}

@media screen and (min-width: 480px) {
	.summary-default {
		margin: 0 0 20px 0;
	}
}

/* ------------------------------
　　サムネイル
------------------------------ */
.thumbnail {
	margin: 0;
	padding: 0;
	list-style: none;
}

.thumbnail-item {
	-webkit-transition: opacity .2s;
	transition: opacity .2s;
}
.thumbnail-item:hover {
	opacity: .75;
}

.thumbnail-link {
	display: block;
	color: #333;
}
.thumbnail-link:hover {
	color: #333;
	text-decoration: none;
}
.thumbnail-link:visited {
	color: #333;
}

.thumbnail-img {
	display: block;
	-webkit-transition: opacity .25s ease-out;
	transition: opacity .25s ease-out;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}

.thumbnail-title {
	margin: 5px 0 10px;
	font-weight: bold;
	font-size: 15px;
}

/* ------------------------------
　　トピックパス
------------------------------ */
.topicpath {
	margin-bottom: 30px;
	padding: 10px 0;
	background: #F5F8FA;
	border-top: solid 2px #E1EEF3;
}

.topicpath-list {
	margin: 0 auto;
	list-style: none;
}

.topicpath-item {
	float: left;
	padding: 0 10px 0 23px;
	background: url(../../images/marker/icon_arrow.png?v=2019110844338) no-repeat left center;
	font-size: 14px;
}
.topicpath-item:first-child {
	padding: 0 10px 0 0;
	background: 0;
}

.topicpath-link {
	color: #666;
	font-size: 14px;
}
.topicpath-link:visited,
.topicpath-link:focus,
.topicpath-link:active {
	color: #666;
}

/* ------------------------------
　　エントリー
------------------------------ */
.entry {
	margin: 0 0 25px 0;
	border-bottom: 1px solid #E5E5E5;
}

.page-header {
	margin: 0 0 20px 0;
	border-bottom: solid 2px #3381CE;
}

.entry-info {
	margin-top: 0;
	font-size: 14px;
}

/* カテゴリーと新着ラベル */
.entry-category,
.entry-new {
	font-size: 14px;
}

/* タイトル */
.entry-title {
	margin: 10px 0;
	font-size: 24px;
}
.entry-title a {
	color: #333;
}
.acms-entry h2 .entry-title {
	padding: 0;
}

/* エントリーのスタイル */
.entry-column {
	color: #333;
	word-wrap: break-word;
}
.entry-column h2 {
	margin: 0 10px 25px 10px;
	font-size: 22px;
	color: #3381CE;
	text-align: justify;
}
.entry-column h2.mb5,
.mb5 {
	margin-bottom: 5px;
}
.entry-column h2.mb10,
.mb10 {
	margin-bottom: 10px;
}
.entry-column h2.mb5lr10,
.mb5lr10 {
	margin: 0 10px 5px 10px;
}

.entry-column h2.green-obi,
.entry-column p.green-obi {
	margin: 0 10px 25px 10px;
	color: #FFF;
	background-color: #00A99D;
	border-radius: 6px;
}
.entry-column h2.green-obi {
	padding: 10px;
}
.entry-column p.green-obi {
	padding: 5px 10px;
}

.entry-column .ug-bg-color3 h2 {
	font-size: 20px;
	color: #FFF;
	background-color: #00A99D;
	margin: 0;
	padding: 15px 20px;
	border-radius: 13px 13px 0 0;
}

.entry-column .ug-bg-color2 h2,
.entry-column .ug-bg-color2 h3 {
	text-align: center;
}

.entry-column h2.module-heading {
	margin: 0;
	padding: 0;
	border: 0;
}

.entry-column h3 {
	margin: 0 10px 20px 10px;
	padding-bottom: 10px;
	font-size: 20px;
	color: #333;
	border-bottom: solid 2px #E1EEF3;
	text-align: justify;
}
.entry-column .ug-bg-color h3 {
	border-bottom: solid 2px #FFF;
}

.entry-column h4 {
	margin: 0 10px 20px 10px;
	font-size: 18px;
	color: #333;
	text-align: justify;
}
.entry-column h3.red,
.entry-column h4.red {
	margin: 0 10px;
	color: #FF0004;
	border-bottom: none;
}
.entry-column a:link {
	text-decoration: none;
}
.entry-column a:hover,
.entry-column a:focus,
.entry-column a:active {
	text-decoration: underline;
}
.entry-column a:visited {
	color: #7F5AD7;
	text-decoration: none;
}

/* 本文 */
.entry-column p {
	margin-top: 0;
	margin-bottom: 30px;
	line-height: 1.7;
	text-align: justify;
}
.entry-column p.entry-danger-text,
.entry-column p.entry-danger-text-large {
	color: #FF0004;
	font-weight: bold;
}
.entry-column p.entry-danger-text-large {
	font-size: 16px;
}
.entry-column p.summary-title {
	margin: 0 0 10px 0;
}
.entry-column p.summary-detail {
	margin: 0 0 10px 0;
	font-size: 14px;
}

.entry-column p.mb0, .mb0 {
	margin-bottom: 0px;
}
.entry-column p.mb5, .mb5 {
	margin-bottom: 5px;
}
.entry-column p.mb10, .mb10 {
	margin-bottom: 10px;
}
.entry-column p.mb20, .mb20 {
	margin-bottom: 20px;
}
.entry-column p.mb25, .mb25 {
	margin-bottom: 25px;
}
.entry-column p.mb30, .mb30 {
	margin-bottom: 30px;
}
.entry-column p.mb40, .mb40 {
	margin-bottom: 40px;
}
.entry-column p.mb50, .mb50 {
	margin-bottom: 50px;
}
.entry-column p.mb60, .mb60 {
	margin-bottom: 60px;
}
.entry-column p.mb100 {
	margin-bottom: 100px;
}
.entry-column p.small,
.small {
	font-size: 14px;
}
.entry-column p.large {
	font-weight: bold;
	font-size: 18px;
}
.entry-column p.large2,
.entry-column ul.large2 li {
	font-weight: bold;
	font-size: 18px;
}
.entry-column p.red,
.red {
	color: #FF0004;
}
.entry-column p.blue,
.blue {
	color: #193366;
}
.entry-column p.center {
	text-align: center;
}
.entry-column p.left {
	text-align: left;
}
.entry-column p.right {
	text-align: right;
}
.entry-column p.line-height1,
.entry-column ul.line-height1 li {
	line-height: 1.0;
}
.entry-column p.red-obi {
	padding: 4px 8px;
	background-color: #FF0004;
	color: #fff;
}
.red-obi2 {
	padding: 2px 4px;
	border: solid 1px #FF0004;
	margin-right: 5px;
}
.orange-obi {
	padding: 6px 8px;
	background-color: #F8B429;
	color: #fff;
	font-size: 16px!important;
}
.txt12 {
	font-weight: normal;
	font-size: 12px;
}
.txt16 {
	font-weight: bold;
	font-size: 16px;
}
.txt18 {
	font-weight: bold;
	font-size: 18px;
}
.txt20 {
	font-weight: bold;
	font-size: 20px;
}
.txt24 {
	font-weight: bold;
	font-size: 24px;
}
.txt30 {
	font-weight: bold;
	font-size: 30px;
}
.txt34 {
	font-weight: bold;
	font-size: 34px;
}
.entry-column p span.small {
	font-size: 14px;
}
.entry-column p.blue-box-text {
	font-size: 15px;
	line-height: 1.2;
	font-weight: bold;
	text-align: center;
	background-color: #F5F8FA;
	border: solid 2px #E1EEF3;
	padding: 15px 10px;
	margin-bottom: 20px;
}

/* エントリー内コンテナー */
.entry-container {
	margin: 0 5px;
}

[class^=column-table] .entry-container {
	margin-bottom: 30px;
	overflow-x: auto;
}

[class^=column-table] table {
	margin-bottom: 0;
}

/* テーブル */
.entry-column table {
	width: 100%;
	border-collapse: collapse;
}

.entry-column th,
.entry-column td {
	display: block;
	padding: 5px 10px;
	color: #333;
	line-height: 1.5;
	text-align: left;
	vertical-align: top;
	border-top: 1px solid #DFDFDF;
	font-size: 16px;
}

.entry-column .acms-table-responsive {
	border-top: 0;
	border-bottom: 0;
}
.entry-column .acms-table-responsive th,
.entry-column .acms-table-responsive td {
	display: table-cell;
	white-space: nowrap;
}
.entry-column .acms-table-responsive table {
	margin: 0;
}

.entry-column .acms-table-responsive.zeh-table th,
.entry-column .acms-table-responsive.zeh-table td {
  border: solid 1px #DFDFDF;
}
.entry-column .acms-table-responsive.zeh-table tr {
  background-color: #fff;
}
.entry-column th {
	background: #F5F5F5;
}

.entry-column .entry-custom-table {
	margin-bottom: 25px;
}

.entry-column .formula-table td {
  background-color: #fff;
  border: none;
  font-weight: bold;
  padding: 0 5px;
  text-align: center;
  vertical-align: middle;
}
.entry-column .formula-table td span.ttl {
  border: solid 1px #3381CE;
  color: #3381CE;
  display: block;
  font-size: 13px;
  line-height: 1.0;
  margin-bottom: 5px;
  padding: 4px;
}

@media screen and (min-width: 768px) {
  .entry-column th,
  .entry-column td {
    display: table-cell;
    padding: 15px 20px;
    text-align: left;
    border-top: 1px solid #DFDFDF;
  }
  .entry-column .acms-table-responsive.zeh-table th,
  .entry-column .acms-table-responsive.zeh-table td {
    padding: 10px;
    font-size: 14px;
  }
  .entry-column th {
    background: inherit;
  }
  .entry-column tr:nth-child(odd) {
    background: #F5F5F5;
  }
  .entry-column .acms-table-responsive.zeh-table tr {
    background-color: #fff;
  }
  .entry-column .acms-table-responsive.zeh-table th {
    background: #F5F5F5;
  }
}

/* リスト */
.entry-column ul {
	margin: 0 10px 25px 10px;
	padding: 0 0 0 1.5em;
}
.entry-column ul li {
	margin: 0 0 5px 0;
	font-size: 16px;
	line-height: 1.5;
}
.entry-column ul.summary-default {
	padding: 0;
}
.entry-column ul.summary-default li {
	margin: 0;
}

.entry-column ul.check_list,
.entry-column ul.side_list {
	list-style: none;
}
.entry-column ul.check_list li {
	font-size: 18px;
	position: relative;
	font-weight: bold;
	color: #3498db;
}
.entry-column ul.check_list li::after {
	display: block;
	content: '';
	position: absolute;
	top: .5em;
	left: -1em;
	width: 8px;
	height: 3px;
	border-left: 2px solid #EF9430;
	border-bottom: 2px solid #EF9430;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.entry-column ul.side_list,
.entry-column ul.circle_list,
.entry-column ul.fukidasi_list {
	font-size: 0;
}
.entry-column ul.side_list li,
.entry-column ul.circle_list li,
.entry-column ul.fukidasi_list li {
	display: inline-block;
	font-weight: bold;
}
.entry-column ul.side_list li {
	color: #3498db;
	font-size: 16px;
	background: #FFF;
	border: solid 1px #3498db;
	margin: 0 10px 10px 0;
	padding: 3px 8px;
	border-radius: 3px;
}
.entry-column ul.fukidasi_list li {
	color: #3498db;
	font-size: 16px;
	background-color: #FCF7A5;
	margin: 0 10px 10px 0;
	padding: 20px;
	border-radius: 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
}
.entry-column ul.circle_list li {
	color: #FFF;
	font-size: 18px;
	line-height: 1.2;
	background-color: #F8B429;
	margin: 0 10px 10px 0;
	padding: 30px 20px;
	border-radius: 50%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 125px;
	height: 125px;
	position: relative;
}
.entry-column ul.circle_list li span {
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	display: inline-block;
	width: 125px;
	text-align: center;
}
.entry-column ul.inline-list,
.entry-column ul.annotation-list {
	list-style: none;
	padding: 0;
}
.entry-column ul.inline-list li {
	display: inline-block;
	padding: 0 10px;
}
.entry-column ul.annotation-list li {
	display: inline-block;
	font-size: 12px;
	margin: 0 5px 0 0;
}
.entry-column ul.center {
	text-align: center;
}

/* 番号付きリスト */
.entry-column ol {
	margin: 0 10px 25px 10px;
	padding: 0 0 0 2em;
}
.entry-column ol li {
	margin: 0 0 5px 0;
	font-size: 16px;
	line-height: 1.5;
}
.entry-column ol.price-nom-list {
	counter-reset:number; /*数字をリセット*/
	list-style-type: none!important; /*数字を一旦消す*/
	padding:0.5em;
	background: #f5faff;
}
.entry-column ol.price-nom-list li {
	position: relative;
	padding-left: 30px;
	line-height: 1.5em;
	padding: 0.5em 0.5em 0.5em 34px;
	font-size: 18px;
	font-weight: bold;
	border-bottom: dashed 1px #3498DB;
}
.entry-column ol.price-nom-list li:last-of-type {
	border-bottom: none; /*最後のliの線だけ消す*/
}
.entry-column ol.price-nom-list li:before{
	/* 以下数字をつける */
	position: absolute;
	counter-increment: number;
	content: counter(number);
	/*以下数字のデザイン変える*/
	display:inline-block;
	background: #3498DB;
	color: white;
	font-family: 'Avenir','Arial Black','Arial',sans-serif;
	font-weight:bold;
	font-size: 15px;
	border-radius: 8%;
	left: 0;
	width: 25px;
	height: 25px;
	line-height: 25px;
	text-align: center;
	/*以下 上下中央寄せのため*/
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.entry-column ol.price-nom-list li br {
	display: block;
}
.entry-column ol.price-nom-list li span {
	display: none;
}
	
@media screen and (min-width: 768px) {
	.entry-column ol.price-nom-list li br {
		display: none;
	}
	.entry-column ol.price-nom-list li span {
		display: inline;
	}
}
/* 定義リスト */
.entry-column dl {
	margin-top: 0;
	margin-bottom: 30px;
	font-size: 16px;
	line-height: 1.5;
}
.entry-column dt {
	margin: 0 0 5px 0;
	font-size: 16px;
	font-weight: bold;
	line-height: 1.2;
}
.entry-column dd {
	margin-bottom: 10px;
	margin-left: 0;
	line-height: 1.5;
	font-size: 16px;
}

.entry-column .ug-bg-color3 dl {
	margin-bottom: 10px;
}
.entry-column .ug-bg-color3 dt,
.entry-column .ug-bg-color3 dd {
	display: inline-block;
	margin-bottom: 0;
	vertical-align: bottom;
	margin-bottom: 10px;
}
.entry-column .ug-bg-color3 dt {
	font-size: 12px;
	background-color: #333;
	padding: 5px 10px;
	margin-right: 5px;
	color: #FFF;
	font-weight: normal;
	line-height: 1.2;
	text-align: center;
}
.entry-column .ug-bg-color3 dd {
	margin-right: 10px;
	line-height: 1.0;
	font-size: 14px;
}

.entry-column dl.faq {
	margin-bottom: 30px;
}
.entry-column dl.faq dt {
	font-size: 18px;
	font-weight: bold;
	margin: 0 0 20px 2.4em;
	color: #3381CE;
}
.entry-column dl.faq dd {
	padding: 10px;
	border: solid 4px #E1EEF3;
	border-radius: 12px;
}
.entry-column dl.faq dd span {
	display: block;
	font-weight: bold;
	padding-bottom: 5px;
	margin-bottom: 10px;
	border-bottom: solid 2px #E1EEF3;
}
.entry-column dl.faq dt:before,
.entry-column dl.faq dd span:before {
	font-size: 24px;
	line-height: 1.0;
}
.entry-column dl.faq dt:before {
	padding: 2px 6px;
	border-radius: 0.2em;
	background: #3381CE;
	content: 'Q';
	color: #FFF;
	margin: 0 0.4em 0 -1.7em;
}
.entry-column dl.faq dd span:before {
	content: 'A';
	color: #3381CE;
	margin: 0 10px 0 0;
}


@media screen and (min-width: 1024px) {
	.entry-column .ug-bg-color3 dl span br {
		display: none;
	}
}

/* 引用 */
.entry-column blockquote {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	margin-bottom: 30px;
	padding: 20px 10px 20px 20px;
	line-height: 1.8;
	background: #F5F5F5;
	border-left: 5px solid #DEDEDE;
	font-size: 14px;
}

.entry-column .column-quote-auto blockquote {
	padding: 10px;
	border: 1px solid #D0D0D0;
}

.entry-column .column-quote-auto .quoteTitleLink {
	color: #333;
}

@media screen and (min-width: 480px) {
	/* 引用 */
	.entry-column blockquote {
		padding: 20px 20px 20px 30px;
	}
	.entry-column .column-quote-auto blockquote {
		padding: 15px;
	}
}

/* ソースコード */
.entry-column pre {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 100%;
	margin: 0 0 30px 0;
	font-family: Menlo, Monaco, "Courier New", monospace;
}
.entry-column pre ol {
	margin: 0;
	padding: 0 0 0 2.5em;
}
.entry-column pre ol li {
	line-height: 1.5;
}

/* 区切り線 */
.entry-column hr {
	border: 0;
	border-bottom: 1px solid #E5E5E5;
}
.entry-column .ug-bg-color3 hr {
	border-bottom: none;
}

/* 下矢印 */
.yajirushi-down {
	position: relative;
	height: 35px;
}
.yajirushi-down-center {
	position: relative;
	height: 50px;
}
.yajirushi-down::before,
.yajirushi-down-center::before {
	content: "";
	display: block;
	position: absolute;
	top: 0px;
	left: 50%;
	width: 0;
	height: 0;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	border-bottom-width: 0;
}
.yajirushi-down::before {
	border: 18px solid transparent;
	border-top: 18px solid #3381CE;
}
.yajirushi-down-center::before {
	border: 30px solid transparent;
	border-top: 30px solid #F8B429;
}
@media screen and (min-width: 480px) {
	.yajirushi-down::before {
		left: 12%;
	}
}

/* ユニット */
.entry-column .caption {
	margin: 0 0 20px 0;
	font-size: 13px;
}

.column-file-auto + .caption {
	margin-left: 10px;
}

.column-module {
	margin: 0 10px;
}

/* ユニットグループ */
.ug-bg-color {
	margin: 0 10px 25px 10px;
	padding: 20px 10px;
	background: #E1EEF3;
	border-radius: 18px;
}
.ug-bg-color *:last-child {
	margin-bottom: 0;
}
.ug-bg-color h2 {
	margin-bottom: 10px;
	padding-top: 0;
	padding-bottom: 0;
}
.ug-bg-color h3,
.ug-bg-color h4 {
	color: #3381CE;
	margin-bottom: 10px;
}
.ug-bg-color2 {
	margin: 0 10px 25px 10px;
	padding: 15px 5px;
	background: #FFF;
	border: solid 8px #F8B429;
	text-align: center;
	border-radius: 20px;
}
.ug-line-2col {
	margin: 0 10px 20px 10px;
	padding-top: 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border: solid 8px #E1EEF3;
	border-radius: 14px;
}
.ug-line-blue {
  margin: 0 10px 20px 10px;
  padding-top: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: solid 4px #E1EEF3;
  border-radius: 8px;
}
.ug-bg-white {
	margin: 0 10px 25px 10px;
	padding: 20px 5px;
	background: #FFF;
	border-radius: 9px;
}
.ug-bg-color3 {
	margin: 0 10px 25px 10px;
	border: solid 4px #00A99D;
	border-radius: 18px;
}
.ug-bg-color3-inner {
	padding: 25px 10px 0 10px;
}

.bg-gray,
.bg-yellow {
	margin-left: 10px;
	margin-right: 10px;
	padding: 10px 5px;
	border-radius: 8px;
}
.bg-gray {
	background-color: #EFEFEF;
}
.bg-yellow {
	background-color: #FCF7A5;
}

@media screen and (min-width: 480px) {
	.ug-bg-color {
		padding: 25px 15px;
	}
	.ug-bg-color2 {
		padding: 30px 20px;
	}
	.ug-line-2col {
		float: left;
		width: 48%;
		margin: 0 1% 20px 1%;
	}
}

/* 会社概要 */
.ug-company-copy p {
	font-size: 18px;
}

/* 優良土地情報 */
.small-no-img {
	width: 100%;
	height: auto;
}
.land-table {
	border-right: none;
}
.land-table th {
	padding: 4px 10px;
	border-right: 1px solid #dfdfdf;
}
.land-table td {
	padding: 8px 10px;
	border-right: 1px solid #dfdfdf;
}
.entry-column .land-list {
	margin: 0 0 25px 0;
	padding: 0;
	font-size: 0;
	line-height: 0;
}
.entry-column .land-list li {
	display: inline-block;
	margin: 5px;
	line-height: 1.0;
}

/* スタッフ紹介 */
.entry-column .staff-list {
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-direction: row;
	    -webkit-box-orient: horizontal;
	    -webkit-box-direction: normal;
	    flex-direction: row;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	margin: 0 10px 30px;
	padding: 0;
	list-style: none;
	border-top: 1px solid #EEE;
}

.entry-column .staff-item {
	width: 50%;
	margin: 0;
}

.entry-column .staff-inner {
	display: -ms-flexbox;
	display: -webkit-box;
	display: flex;
	-ms-flex-direction: column;
	    -webkit-box-orient: vertical;
	    -webkit-box-direction: normal;
	    flex-direction: column;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 20px 10px;
	border-bottom: 1px solid #EEE;
}

.entry-column .staff-body {
	-ms-flex-order: 2;
	-webkit-box-ordinal-group: 3;
	order: 2;
	margin: 0 0 20px 0;
}

.entry-column .staff-name {
	margin: 0 0 15px 0;
	padding: 0;
	line-height: 1.3;
	text-align: center;
	background: 0;
	font-size: 20px;
}

.entry-column .staff-job {
	margin: 15px 0 5px 0;
	font-size: 14px;
	line-height: 1.3;
	text-align: center;
}

.entry-column .staff-profile {
	margin: 0;
	font-size: 14px;
}

.entry-column .staff-img-wrap {
	-ms-flex-order: 1;
	-webkit-box-ordinal-group: 2;
	order: 1;
}

.entry-column .staff-img {
	display: block;
	margin: 0 auto;
	border-radius: 100%;
}

@media screen and (min-width: 768px) {
	.entry-column .staff-item {
		width: 25%;
	}
	.entry-column .staff-body {
		margin: 0;
	}
}

/* エントリーフッター */
.entry-footer {
	margin: 0 0 20px 0;
	padding: 10px;
	background: #F5F5F5;
}

/* タグ */
.entry-tag {
	margin: 0 0 5px 0;
}

.entry-tag-icon {
	float: left;
	color: #707070;
}

.entry-tag-item {
	float: left;
	margin: 0 0 0 10px;
}

/* SNSシェア */
.share-wrapper {
	float: right;
}

.share-text {
	display: inline;
	float: left;
	margin: 0;
}

/* SNSシェアボタン */
.share-list {
	display: -ms-inline-flexbox;
	display: -webkit-inline-box;
	display: inline-flex;
	float: right;
	margin: 0;
	padding: 0;
	list-style: none;
}

.share-item {
	display: inline-block;
	margin: 0 0 0 15px;
	vertical-align: top;
}
.share-item a {
	color: #999;
	text-decoration: none;
}
.share-item [class*="acms-icon"] {
	font-size: 22px;
	vertical-align: middle;
}
.share-item .share-item-facebook {
	/* Facebook */
	position: relative;
	color: #1877F2;
	line-height: 1.2;
}
.share-item .share-item-facebook:before {
	vertical-align: middle;
}
.share-item .share-item-facebook:focus:before {
	position: absolute;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
	border: 1px dotted #333;
	content: "";
}
.share-item .share-item-twitter {
	/* Twitter */
	position: relative;
	color: #55ACEE;
	line-height: 1.2;
}
.share-item .share-item-twitter:before {
	vertical-align: middle;
}
.share-item .share-item-twitter:focus:before {
	position: absolute;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
	border: 1px dotted #333;
	content: "";
}

/* 続きを読むボタン */
.continue-link {
	margin: 0;
	font-size: 16px;
}

.continue-link a {
	display: inline-block;
	padding: 10px;
	color: #FFF;
	font-weight: bold;
	line-height: 1.5;
	background: #767676;
	border-radius: 3px;
}
.continue-link a [class*="acms-icon"] {
	margin: 0 10px 0 0;
}
.continue-link a:link,
.continue-link a:visited {
	color: #FFF;
}
.continue-link a:hover,
.continue-link a:focus,
.continue-link a:active {
	color: #FFF;
	text-decoration: none;
	background: #AAA;
}

@media screen and (min-width: 768px) {
	/* タグ */
	.entry-tag {
		margin: 0;
	}
	/* 続きを読むボタン */
	.continue-link a {
		padding: 5px 10px;
		font-weight: normal;
	}
}

/* ------------------------------
　　テキストユニットのエディターの設定
------------------------------ */
/* エントリー内ボタン */
.entry-column,
.entryFormLiteEditor {
	/* 色付きボタン */
}
.entry-column .entry-btn-default,
.entryFormLiteEditor .entry-btn-default {
	background: #666;
	color: #FFF;
	font-weight: bold;
	line-height: 1.3;
	border: 0;
	display: inline-block;
	padding: 6px 15px;
	border-radius: 3px;
}
.entry-column .entry-btn-default:hover,
.entry-column .entry-btn-default:visited,
.entryFormLiteEditor .entry-btn-default:hover,
.entryFormLiteEditor .entry-btn-default:visited {
	color: #FFF;
	text-decoration: none;
}
.entry-column .entry-btn-default:focus,
.entry-column .entry-btn-default:active,
.entryFormLiteEditor .entry-btn-default:focus,
.entryFormLiteEditor .entry-btn-default:active {
	color: #FFF;
	-webkit-box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, .5);
	box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, .5);
}
.entry-column .entry-btn-default:hover,
.entryFormLiteEditor .entry-btn-default:hover {
	color: #FFF;
	background-color: #444;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#666), to(#444));
	background-image: linear-gradient(to bottom, #666, #444);
}
.entry-column .entry-btn-default:active,
.entry-column .entry-btn-default:focus,
.entryFormLiteEditor .entry-btn-default:active,
.entryFormLiteEditor .entry-btn-default:focus {
	background: #444;
}
.entry-column .entry-btn-attention,
.entryFormLiteEditor .entry-btn-attention {
	background: #FF0004;
	color: #FFF;
	font-weight: bold;
	line-height: 1.3;
	border: 0;
	display: inline-block;
	padding: 6px 15px;
	border-radius: 3px;
}
.entry-column .entry-btn-attention:hover,
.entry-column .entry-btn-attention:visited,
.entryFormLiteEditor .entry-btn-attention:hover,
.entryFormLiteEditor .entry-btn-attention:visited {
	color: #FFF;
	text-decoration: none;
}
.entry-column .entry-btn-attention:focus,
.entry-column .entry-btn-attention:active,
.entryFormLiteEditor .entry-btn-attention:focus,
.entryFormLiteEditor .entry-btn-attention:active {
	color: #FFF;
	-webkit-box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, .5);
	box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, .5);
}
.entry-column .entry-btn-attention:hover,
.entryFormLiteEditor .entry-btn-attention:hover {
	color: #FFF;
	background-color: #910021;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#C41134), to(#910021));
	background-image: linear-gradient(to bottom, #C41134, #910021);
}
.entry-column .entry-btn-attention:active,
.entry-column .entry-btn-attention:focus,
.entryFormLiteEditor .entry-btn-attention:active,
.entryFormLiteEditor .entry-btn-attention:focus {
	background: #910021;
}

/* ------------------------------
　　編集ページ
------------------------------ */
.field-title {
	padding: 0 10px;
}

.field-title:first-child {
	margin: 0 0 10px 0;
}

.field-table-inner {
	width: 100%;
}
.field-table-inner th,
.field-table-inner td {
	border: 0;
}

/* ------------------------------
　　レイアウトモジュール
------------------------------ */
/* 背景色 */
.layout-bg {
	padding: 20px 0;
	background: #F6F6F6;
}

.layout-space {
	padding: 20px 0;
}

/* カラムの中央寄せ */
.center-col {
	float: none;
	margin: 0 auto;
}

/* 見出し */
.section-heading {
	margin: 20px 0 40px 0;
	font-size: 28px;
}
.section-heading a {
	color: #333;
}

/* 画像表示用 */
.img-box img {

}
.small-img {
	width: 60%;
	height: auto;
}
.silhouette-img {
	width: 60%;
	height: auto;
	margin-top: 20px;
}
@media screen and (min-width: 480px) {
	.small-img {
		width: 100%;
	}
}

/* ------------------------------
　　各モジュール
------------------------------ */
/* フィールドグループ */
.group-heading {
	margin: 0 0 20px 0;
	font-size: 18px;
	line-height: 1.2;
}

.group-detail {
	margin: 0 0 30px 0;
	font-size: 16px;
	line-height: 1.7;
}

/* ヘッドライン */
.lp-headline {
	font-size: 16px;
}

/* ------------------------------
　　フッター
------------------------------ */
/* お問い合わせ誘導エリア */
.lp-suggest-box {
	padding: 50px 0;
}

.lp-suggest-text {
	margin: 30px 0 10px 0;
}

.lp-suggest-tel {
	margin: 0;
	color: #C38A00;
	font-weight: bold;
	font-size: 34px;
}
.lp-suggest-tel a {
	color: #C38A00;
}

.btn-shadow {
	-webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .5);
	box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .5);
}

/* ------------------------------
　　メインカラム
------------------------------ */
.main:before,
.main:after {
	display: table;
	content: " ";
}

.main:after {
	clear: both;
}

.top-main-inner {
	width: 100%;
}
.main-inner {
	width: 100%;
	max-width: 820px;
}
.main-inner.is-space-left {
	float: right;
}
.main-inner.is-space-right {
	float: left;
}
.main-inner.is-space-center {
	margin: 0 auto;
}

/* ------------------------------
　　サイドカラム
------------------------------ */
.side-title {
	margin-top: 0;
	font-size: 18px;
}

/* ------------------------------
　　物件情報
------------------------------ */
/* 地図 */
.realestate-map {
	overflow: hidden;
}

.realestate-map .js-s2d-ready,
.realestate-map [class*="column-map-"] {
	width: auto !important;
	max-width: 100%;
}

.realestate-map img[class*="column-map-"] {
	width: auto !important;
	max-width: 100%;
	height: auto;
}

.realestate-map-entry {
	margin: 0 10px;
}
.entry-column.map-wrapper {
	margin: 30px 0 0 0;
}
.entry-column table.realestate-search {
	margin: 20px 0 30px 0;
	border-bottom: 2px solid #E1EEF3;
}
.entry-column table.realestate-search th,
.entry-column table.realestate-search td {
	background-color: #F5F8FA;
	border-top: 2px solid #E1EEF3;
}
.entry-column table.realestate-search th {
	color: #3381CE;
	font-size: 16px;
}

@media screen and (min-width: 1024px) {
	.table-nowrap {
		white-space: nowrap;
	}
}

/* 物件情報 */
.realestate-search input {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

@media screen and (max-width: 767px) {
	.realestate-search th,
	.realestate-search td {
		display: block;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}
	.realestate-search input {
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}
}

/* ------------------------------
　　お問い合わせ
------------------------------ */
.contact-box .message-group {
	margin: 0 0 35px 0;
}

.contact-box .message-text {
	color: #FF0004;
	font-weight: bold;
}

.contact-box .contact-no {
	margin: 0;
	color: #333;
	font-weight: bold;
	font-size: 36px;
	line-height: 1.0;
	margin-bottom: 5px;
}
.contact-box .contact-no a {
	color: inherit;
}

.contact-box h2 {
	margin: 0 0 25px 0;
	font-size: 20px;
	color: #3381CE;
}
.contact-box h3 {
	margin: 0 0 20px 0;
	font-size: 16px;
	color: #333;
}
.contact-box p {
	margin-top: 0;
	margin-bottom: 30px;
	line-height: 1.7;
}

.contact-box .error-text {
	/* エラー文 */
	margin: 5px 0 0 0;
	color: #FF0004;
}

.contact-form {
	width: 100%;
	margin: 0 0 20px 0;
	padding: 0;
	list-style: none;
	background: #F5F8FA;
}
.contact-form th, .contact-form td {
	border-top: 2px solid #FFF;
}
.contact-form th {
	background: #E1EEF3;
}

.contact-form-group {
	background: #E1EEF3;
}

.contact-form-label {
	display: block;
	margin: 0;
	padding: 10px 10px 0 10px;
	text-align: left;
}

.contact-form-control {
	display: block;
	padding: 10px;
	border-bottom: 1px solid #FFF;
}

.contact-form-label {
	font-weight: bold;
}

.contact-form-grid {
	margin: 0 -5px;
}

.contact-form-col,
.acms-entry .contact-form-col {
	margin: 0 0 10px 0;
	padding: 0 5px;
}
.contact-form-col:last-child,
.acms-entry .contact-form-col:last-child {
	margin: 0;
}

@media screen and (min-width: 768px) {
	.contact-form {
		display: table;
		width: 100%;
	}
	.contact-form th {
		background: none;
	}
	.contact-form tr:nth-child(odd) {
		background: #E1EEF3;
	}
	.contact-form-group {
		display: table-row;
	}
	.contact-form-label,
	.contact-form-control {
		display: table-cell;
	}
	.contact-form-label {
		width: 33.33333%;
		padding: 15px;
		vertical-align: top;
		border-bottom: 1px solid #FFF;
	}
	.contact-form-control {
		width: 66.66667%;
		padding: 15px;
	}
	.contact-form-col {
		margin: 0;
	}
}

/* ステップ
------------------------------ */
.contact-box .mail-step {
	margin: 0 0 35px 0;
	padding: 0 10px;
	background: #F5F5F5;
	/* カウンターの設定 */
	counter-reset: mailStep;
}

.contact-box .mail-step-item {
	float: left;
	margin: 0 10px;
	padding: 18px 0 14px;
	color: #999;
	font-weight: bold;
	list-style: none;
	border-bottom: 4px solid transparent;
	font-size: 16px;
}
.contact-box .mail-step-item:before {
	content: counter(mailStep) ".";
	/* カウンターの設定 */
	counter-increment: mailStep;
}

.contact-box .mail-step-item-current {
	color: #333;
	border-bottom: 4px solid #333;
}

@media screen and (min-width: 768px) {
	.contact-box .mail-step {
		height: 60px;
	}
}

/* 送信ボタン
------------------------------ */
.form-btn-box {
	margin: 0 0 50px 0;
	text-align: center;
}

.form-btn {
	display: inline-block;
}

@media screen and (min-width: 768px) {
	.form-btn-send {
		width: 100%;
		max-width: 360px;
	}
}

/* ラベル
------------------------------ */
.label-required {
	margin: 0 5px;
	padding: 2px 8px;
	color: #FFF;
	background: #FF0004;
	border-radius: 3px;
	font-size: 12px;
}

@media screen and (min-width: 768px) {
	.label-required {
		float: right;
	}
}

/* フォーム要素
------------------------------ */
.contact-box select[required]:required {
	border: 1px solid #C49511;
}

.contact-box select.focused:invalid {
	border: 1px solid #FF0004;
}

.contact-box select[required]:valid {
	border: 1px solid #A7A7AA;
}

.contact-box input[required]:required,
.contact-box textarea[required]:required {
	background: #FFFDEB;
}

.contact-box input.focused:invalid,
.contact-box textarea.focused:invalid {
	background: #FFEBEE;
}

.contact-box input[required]:valid,
.contact-box textarea[required]:valid {
	background: #FFF;
}

.contact-box input[type="text"],
.contact-box input[type="password"],
.contact-box input[type="datetime"],
.contact-box input[type="datetime-local"],
.contact-box input[type="date"],
.contact-box input[type="month"],
.contact-box input[type="time"],
.contact-box input[type="week"],
.contact-box input[type="number"],
.contact-box input[type="email"],
.contact-box input[type="url"],
.contact-box input[type="search"],
.contact-box input[type="tel"],
.acms-form input[type="search"] {
	font-size: 16px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0 5px;
}

.contact-box textarea {
	font-size: 16px;
	padding: 5px 5px 4px;
}

.contact-box select,.acms-form select {
	min-height: 32px;
	padding-top: 6px;
	padding-bottom: 5px;
	font-size: 16px;
	vertical-align: top;
}


/* バリデーター
------------------------------ */
.valid-mark {
	display: none;
}

.valid-mark.valid {
	display: inline;
	float: right;
	color: #5CB85C;
}

.invalid {
	background: #FFEBEE !important;
}

/* ------------------------------
　　ヘッダー
------------------------------ */
/* サイト名 */
.site-name {
	font-size: 24px;
	color: #C41134;
	font-weight: bold;
	text-align: center;
	margin: 0.67em 0;
}
.header-stack .site-name {
	margin: 30px 0 20px;
}
.site-name a {
	color: #C41134;
	-webkit-transition: all .25s;
	transition: all .25s;
}
.site-name a:hover,
.site-name a:focus,
.site-name a:active,
.site-name a:visited {
	color: #C41134;
}
.site-name a:hover {
	opacity: .6;
}

.site-logo {
	display: inline-block;
	width: 90px;
	height: auto;
	margin: 0 10px 0 0;
	vertical-align: middle;
}

.site-name-text {
	display: inline-block;
	vertical-align: middle;
	overflow: hidden;
	white-space: nowrap;
	text-indent: 100%;
	width: 192px;
	height: 26px;
	background: url(../../images/web-logo-txt.svg) no-repeat;
	background-size: contain;
}

.edit-link {
	display: inline-block;
	vertical-align: middle;
	font-size: 14px;
}

.header-nav {
	position: relative;
	display: none;
}

@media (min-width: 768px) {
	.header-stack .site-name {
		text-align: center;
	}
	.site-logo {
		width: 197px;
	}
	.site-name-text {
		width: 384px;
		height: 51px;
	}
	.header {
		display: table;
		width: 100%;
	}
	.header-stack .header {
		display: block;
	}
	.header-logo {
		width: 100%;
		vertical-align: middle;
	}
	.header-stack .header-logo {
		display: block;
	}
	.header-nav {
		display: none;
		vertical-align: middle;
	}
	.header-stack .header-nav {
		display: block;
		width: 100%;
		margin: 0 0 15px 0;
	}
}

@media (min-width: 1024px) {
	.site-name {
		text-align: left;
	}
	.header-logo {
		display: table-cell;
		width: 60%;
	}
	.header-stack .header-logo {
		display: block;
		width: 100%;
	}
	.header-nav {
		display: table-cell;
		width: 40%;
	}
	.header-stack .header-nav {
		display: block;
		width: 100%;
		margin: 0 0 15px 0;
	}
}

/* ------------------------------
　　ナビゲーション
------------------------------ */
.header-logo {
	/* 固定したときの高さを保つ */
	padding: 48px 0 0 0;
}

.site-header {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 9999;
	width: 100%;
	padding: 0 5px;
	background: #3381CE;
	padding: 0 calc(5px + constant(safe-area-inset-right)) 0 calc(5px + constant(safe-area-inset-left));
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/* モバイル時ナビゲーションボタン */
.nav-menu-btn {
	display: inline-block;
	height: 44px;
	padding: 7px 5px;
	font-size: 20px;
	color: #FFF;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
a .nav-menu-btn {
	color: #FFF;
}
.nav-menu-btn:hover {
	color: #FFF;
	text-decoration: none;
}
.nav-menu-btn .acms-icon-sort {
	display: inline-block;
}

.nav-menu-btn-text {
	display: inline-block;
	margin: 0 0 0 5px;
	color: #FFF;
	font-weight: bold;
	vertical-align: middle;
	font-size: 11px;
}

/* モバイル時ヘッダー アイコン */
.nav-menu-action {
	display: table;
	float: right;
	margin: 0;
	padding: 0;
}

.nav-menu-action-item {
	display: table-cell;
	width: 44px;
	height: 44px;
	color: #FFF;
	text-align: center;
	vertical-align: middle;
	font-size: 20px;
}

.nav-menu-action-link {
	color: #FFF;
}
.nav-menu-action-link:hover,
.nav-menu-action-link:active,
.nav-menu-action-link:visited,
.nav-menu-action-link:focus {
	color: #FFF;
	text-decoration: none;
}

.navbar {
	display: none;
	width: 100%;
}
.navbar.acms-admin-module-edit-wrapper {
	z-index: 1;
}
.navbar ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.navbar li a {
	display: block;
	padding: 10px;
	color: #333;
	font-size: 16px;
}
.navbar li a:hover,
.navbar li a:focus,
.navbar li a:active {
	color: #FFF;
	text-decoration: none;
	background: #C41134;
}

@media (min-width: 1024px) {
	.head-wrapper {
		border-bottom: solid 8px #3381CE;
	}
	.header {
		height: 100px;
	}
	.navbar {
		display: inline-block;
		vertical-align: middle;
	}
	.navbar > ul {
		float: right;
		padding: 0;
		list-style: none;
	}
	.header-stack .navbar > ul {
		display: table;
		float: none;
		width: 100%;
		table-layout: fixed;
		padding: 15px 0;
	}
	.navbar li {
		position: relative;
		float: left;
		margin: 0 10px;
		text-align: center;
		vertical-align: middle;
	}
	.header-stack .navbar li.navbar-btn {
		padding: 0 10px;
	}
	.header-stack .navbar li {
		display: table-cell;
		float: none;
		border-left: 2px solid #EEE;
	}
	.header-stack .navbar li:last-child {
		border-right: 2px solid #EEE;
	}
	.navbar li ul {
		/* 二階層目 */
		position: absolute;
		left: 0;
		display: none;
		min-width: 200px;
	}
	.navbar li li {
		margin: 0;
	}
	.header-stack .navbar li li,
	.header-stack .navbar li li:last-child {
		display: block;
		border-left: 0;
		border-right: 0;
	}
	.navbar li a {
		/* 一階層目のリンクのみ */
		padding: 0;
		-webkit-transition: all .25s;
		transition: all .25s;
		font-weight: bold;
	}
	.navbar li a:hover,
	.navbar li a:focus,
	.navbar li a:active {
		color: #333;
		background: transparent;
	}
	.header-stack .navbar li a {
		display: block;
		padding: 15px 5px;
		font-size: 14px;
	}
	.navbar li.stay a {
		/* 一階層目のリンクのみ */
		color: #EF9430;
	}
	.navbar li.stay a.btn-attention {
		border: 0;
	}
	.navbar li:hover ul {
		/* 二階層目 */
		z-index: 10000;
		display: block;
		-webkit-animation: .8s fade-in;
		animation: .8s fade-in;
	}
	.navbar li:hover a {
		/* 一階層目のリンクのみ */
		color: #EF9430;
	}
	.navbar li:hover a.btn-attention {
		border: 0;
	}
	.navbar li:hover li a {
		border: 0;
	}
	.navbar li li {
		/* 二階層目以降 */
		display: block;
		float: none;
		text-align: left;
		background: #3381CE;
		border: 0;
		border-top: 1px solid #E1EEF3;
	}
	.navbar li li a {
		margin: 0;
		padding: 10px 15px;
		color: #FFF !important;
		border: 0;
		font-weight: normal;
	}
	.navbar li li a:hover {
		color: #FFF;
		background: #EF9430;
		border: 0;
	}
	.navbar a.btn-attention {
		/* ボタン（色付き） */
		background: #C41134;
		color: #FFF;
		font-weight: bold;
		line-height: 1.3;
		border: 0;
		display: inline-block;
		padding: 6px 15px;
		border-radius: 3px;
		border: 0;
	}
	.navbar a.btn-attention:hover,
	.navbar a.btn-attention:visited {
		color: #FFF;
		text-decoration: none;
	}
	.navbar a.btn-attention:focus,
	.navbar a.btn-attention:active {
		color: #FFF;
		-webkit-box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, .5);
		box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, .5);
	}
	.navbar a.btn-attention:hover {
		color: #FFF;
		background-color: #910021;
		background-image: -webkit-gradient(linear, left top, left bottom, from(#C41134), to(#910021));
		background-image: linear-gradient(to bottom, #C41134, #910021);
		border: 0;
	}
	.navbar a.btn-attention:active,
	.navbar a.btn-attention:focus {
		background: #910021;
	}
}

@media (min-width: 1024px) {
	.header-logo {
		padding: 0;
	}
	.navbar ul li a {
		font-size: 14px;
	}
}

@media (min-width: 1440px) {
	.navbar ul li a {
		font-size: 16px;
	}
}

/* ------------------------------
　　ヘッダーサイドメニュー
------------------------------ */
.navbar-side {
	position: absolute;
	top: 25px;
	right: 0;
	text-align: right;
	width: 100%;
}

.navbar-side-tel {
	color: #193366;
	font-size: 28px;
	margin: 0;
	display: block;
	float: right;
}
.free-dial-icon {
	content: "";
	width: 45px;
	height: 25px;
	display: inline-block;
	background: url(../../images/marker/free-dial-icon.svg) no-repeat;
	margin-right: 6px;
}
.navbar-side-mail {
	margin: 0;
}
.navbar-side-mail a {
	margin: 0 0 10px 20px;
	display: block;
	float: right;
	background-color: #EF9430;
	padding: 8px 16px;
	border-radius: 4px;
	color: #FFF;
	font-weight: bold;
	text-decoration: none;
	-webkit-transition: opacity .2s ease-out;
	transition: opacity .2s ease-out;
}
.navbar-side-mail a:hover {
	opacity: .6;
}
.mail-icon {
	content: "";
	width: 16px;
	height: 12px;
	display: inline-block;
	background: url(../../images/marker/mail-icon.svg) no-repeat;
	margin-right: 10px;
}
.navbar-side-detail {
	clear: both;
	font-size: 0;
}
.navbar-side-detail dt, .navbar-side-detail dd {
	display: inline-block;
}
.navbar-side-detail dt {
	font-size: 12px;
	font-weight: bold;
	color: #FFF;
	background-color: #3381CE;
	border-radius: 2px;
	padding: 2px 5px;
	margin: 0 0 0 15px;
}
.navbar-side-detail dt:first-child {
	margin: 0;
}
.navbar-side-detail dd {
	font-size: 14px;
	padding: 0;
	margin: 0 0 0 5px;
}

.navbar-side-list {
	display: inline-block;
	margin: 0;
	padding: 0;
	overflow: hidden;
	list-style: none;
	background: #333;
	border-radius: 0 0 4px 4px;
}

.navbar-side-item {
	position: relative;
	display: inline-block;
	color: #FFF;
}
.navbar-side-item:before {
	position: absolute;
	top: 5px;
	bottom: 0;
	left: 0;
	display: block;
	height: 1em;
	border-left: 1px dotted #FFF;
	content: "";
}
.navbar-side-item:first-child:before {
	content: none;
}

.navbar-side-link {
	display: inline-block;
	padding: 4px 14px 4px 10px;
	color: #FFF;
}
.navbar-side-link [class*="acms-icon"] {
	margin: -2px 5px 0 0;
}
.navbar-side-link:hover,
.navbar-side-link:visited,
.navbar-side-link:active,
.navbar-side-link:focus {
	color: #FFF;
}
.navbar-side-link:hover [class*="acms-icon"] {
	text-decoration: none;
}

/* ------------------------------
　　モバイルメニュー
------------------------------ */
/* トグルメニューアイコン */
.icon-toggle-menu {
	position: relative;
	display: inline-block;
	width: 18px;
	height: 2px;
	margin: 6px 0;
	vertical-align: middle;
	background-color: #FFF;
	border-radius: 1px;
	-webkit-transition: .1s all;
	transition: .1s all;
}
.icon-toggle-menu:before,
.icon-toggle-menu:after {
	position: absolute;
	display: block;
	width: 18px;
	height: 2px;
	background-color: #FFF;
	border-radius: 1px;
	-webkit-transition: .3s all;
	transition: .3s all;
	content: "";
}
.icon-toggle-menu:before {
	top: -6px;
}
.icon-toggle-menu:after {
	bottom: -6px;
}
[aria-expanded=true] .icon-toggle-menu {
	background: transparent;
}
[aria-expanded=true] .icon-toggle-menu:before {
	width: 22px;
	-webkit-transform: translate(-2px, 6px) rotate(45deg);
	transform: translate(-2px, 6px) rotate(45deg);
}
[aria-expanded=true] .icon-toggle-menu:after {
	width: 22px;
	-webkit-transform: translate(-2px, -6px) rotate(-45deg);
	transform: translate(-2px, -6px) rotate(-45deg);
}

/* ナビゲーションバー */
@media (max-width: 1023px) {
	.is-locked {
		overflow: hidden;
	}
	.mobile-nav {
		position: fixed;
		top: 0;
		left: 0;
		z-index: 1000;
		display: none;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		width: 100%;
		height: 100%;
		padding-top: 48px;
		background-color: #FFF;
		opacity: 0;
		-webkit-transition-timing-function: cubic-bezier(.25, .46, .45, .94);
		transition-timing-function: cubic-bezier(.25, .46, .45, .94);
		-webkit-transition-duration: .3s;
		transition-duration: .3s;
		-webkit-transition-property: all;
		transition-property: all;
	}
	.mobile-nav.is-active {
		display: block;
	}
	.mobile-nav.is-opened {
		opacity: 1;
	}
	.mobile-nav-inner {
		display: -ms-flexbox;
		display: -webkit-box;
		display: flex;
		-ms-flex-align: start;
		-webkit-box-align: start;
		align-items: start;
		-ms-flex-pack: center;
		-webkit-box-pack: center;
		justify-content: center;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		width: 100%;
		height: 100%;
		padding: 30px 0;
		overflow-y: scroll;
		-webkit-overflow-scrolling: touch;
	}
	.mobile-navbar-list {
		margin: 0;
		padding: 0;
		line-height: 2.4;
		text-align: center;
		list-style: none;
		font-size: 16px;
	}
	.mobile-navbar-list br {
		display: none;
	}
	.mobile-navbar-list a:not(.btn-attention),
	.mobile-navbar-list a:not(.btn-attention):hover,
	.mobile-navbar-list a:not(.btn-attention):visited,
	.mobile-navbar-list a:not(.btn-attention):active,
	.mobile-navbar-list a:not(.btn-attention):focus {
		color: #333;
	}
	.mobile-navbar-list .mobile-navbar-list {
		display: none;
	}
	.mobile-nav-side {
		margin: 20px 0;
		text-align: center;
	}
	.mobile-nav-side-list {
		margin: 0;
		padding: 0;
		list-style: none;
	}
	.mobile-nav-side-item {
		display: block;
		margin: 0 0 10px 0;
	}
	.mobile-nav-side-link {
		color: #333;
	}
	.mobile-nav-side-link:hover,
	.mobile-nav-side-link:visited,
	.mobile-nav-side-link:active,
	.mobile-nav-side-link:focus {
		color: #333;
	}
	.mobile-navbar-footer {
		margin: 15px 0 0 0;
	}
}

/* ------------------------------
　　フッター
------------------------------ */
/* お問い合わせ誘導エリア */
.suggest-box {
	background: #DDD;
}

.suggest-inner {
	display: table;
	width: 100%;
	padding: 15px 0;
}

.suggest-item {
	width: 100%;
	margin: 0 auto;
	padding: 0;
}

.suggest-text {
	margin: 0 0 10px 0;
	line-height: 1.5;
	font-size: 14px;
}

.suggest-tel {
	margin: 0 0 10px 0;
	color: #666;
	font-weight: bold;
	font-size: 24px;
}
.suggest-tel a {
	color: inherit;
}

.suggest-btn {
	margin: 0;
}

@media screen and (min-width: 768px) {
	.suggest-inner {
		padding: 0;
	}
	.suggest-item {
		padding: 30px 10px;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}
	.suggest-tel {
		margin: 0;
	}
	.suggest-half {
		display: table-cell;
		width: 50%;
		vertical-align: middle;
	}
}

/* フッター内サイトマップ */
.foot-wrapper {
	padding: 30px 0 0 0;
	border-top: solid 2px #E1EEF3;
	background-color: #F5F8FA;
}

.company-about {
	margin: 0 0 30px 0;
}

.company-name {
	margin: 0 0 10px 0;
	font-size: 16px;
	font-style: normal;
	font-weight: bold;
	color: #3381CE;
}

.company-detail {
	margin: 0 0 5px 0;
	padding: 0;
	font-size: 14px;
	font-style: normal;
}
.company-detail a:hover {
	text-decoration: underline;
}

/* フッターナビゲーション */
.footer-nav {
	float: right;
	width: 100%;
	margin: 0 -10px;
}

.footer-nav-item {
	display: block;
	float: left;
	width: 25%;
	margin: 0 0 20px 0;
	padding: 0 10px;
	vertical-align: top;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.copyright .footer-nav-item {
	float: none;
	width: 100%;
	margin: 0 0 10px 0;
	padding: 0 10px;
	vertical-align: top;
}

.footer-nav-title {
	margin: 0 0 8px 0;
	font-size: 15px;
	position: relative;
	padding-left: 15px;
}
.footer-nav-title span {
	color: #CCC;
	position: absolute;
	left: 0;
	top: 1px;
	padding: 0;
}

.footer-nav-list {
	margin: 0;
	padding: 0;
	color: #333;
	list-style: none;
	font-size: 14px;
}
.footer-nav-list li {
	position: relative;
	margin-bottom: 8px;
	padding-left: 15px;
}
.footer-nav-list li.footer-nav-ttl {
	font-weight: bold;
	font-size: 15px;
}
.footer-nav-list li.footer-nav-last {
	margin-bottom: 25px;
}
.footer-nav-list li span {
	position: absolute;
	left: 0;
	top: 1px;
	color: #EF9430;
	padding: 0;
}
.footer-nav-list li.footer-nav-ttl span {
	color: #EF9430;
}
.footer-nav-list a {
	color: #333;
}
.copyright .footer-nav-list {
	font-size: 0;
}
.copyright .footer-nav-list li {
	display: inline-block;
	font-size: 14px;
	line-height: 1.2;
	padding: 0 10px;
	margin-bottom: 10px;
	border-left: solid 1px #FFF;
}
.copyright .footer-nav-list li span {
	display: none;
}
.copyright .footer-nav-list li:first-child {
	border-left: none;
}
.copyright .footer-nav-list a {
	color: #FFF;
}

@media screen and (max-width: 767px) {
	.footer-nav, .footer-nav-list {
		display: none;
	}
}

/* ページの上に戻るボタン */
.page-top a:focus {
	display: block;
}

.page-top-btn {
	position: fixed;
	right: 20px;
	bottom: 100px;
	z-index: 1000;
	display: block;
	width: 80px;
	height: 70px;
	overflow: hidden;
	white-space: nowrap;
	text-indent: 100%;
	background: url(../../images/marker/page-top-icon.svg) no-repeat center;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	right: calc(20px + constant(safe-area-inset-right));
	opacity: 0;
	-webkit-transition: opacity .2s ease-out;
	transition: opacity .2s ease-out;
}
.no-js .page-top-btn {
	/* jsが無効の環境のとき */
	opacity: .6;
}

.page-top-btn-appear {
	opacity: 1;
}

@media screen and (max-width: 767px) {
	.page-top-btn {
		display: none;
	}
}

@media screen and (min-width: 768px) {
	.page-top-btn:hover {
		opacity: .8;
		-webkit-transition: opacity .25s linear;
		transition: opacity .25s linear;
	}
}

/* フッター内各SNSアカウントのリンク集 */
.sns-list {
	margin: 0 -5px 30px 15px;
	padding: 0;
	list-style: none;
}

.sns-list-item {
	float: left;
	margin: 0 5px;
}
.sns-list-item a:hover,
.sns-list-item a:visited,
.sns-list-item a:active,
.sns-list-item a:focus {
	text-decoration: none;
}

/* 各種SNSボタン */
.sns-list-item .sns-list-facebook {
	/* Facebook */
	display: block;
	width: 30px;
	height: 30px;
	color: #FFF;
	line-height: 1.5;
	text-align: center;
	background: #1877F2;
	border-radius: 4px;
	font-size: 19px;
}
.sns-list-item .sns-list-facebook:before {
	vertical-align: middle;
}

.sns-list-item .sns-list-twitter {
	/* Twitter */
	display: block;
	width: 30px;
	height: 30px;
	color: #FFF;
	line-height: 1.5;
	text-align: center;
	background: #55ACEE;
	border-radius: 4px;
	font-size: 19px;
}
.sns-list-item .sns-list-twitter:before {
	vertical-align: middle;
}

.sns-list-item .sns-list-youtube {
	/* YouTube */
	display: block;
	width: 30px;
	height: 30px;
	color: #FFF;
	line-height: 1.5;
	text-align: center;
	background: #CD201F;
	border-radius: 4px;
	font-size: 19px;
}
.sns-list-item .sns-list-youtube:before {
	vertical-align: middle;
}

@media screen and (min-width: 768px) {
	.sns-list {
		float: right;
		margin: 0 -10px;
	}
	.sns-list-item {
		margin: 10px;
	}
	.sns-list-item a:hover {
		opacity: .8;
		-webkit-transition: opacity .25s linear;
		transition: opacity .25s linear;
	}
}

/* 著作権表示 */
.copyright {
	margin: 0;
	padding: 20px 0 25px 0;
	color: #FFF;
	background-color: #3381CE;
	text-align: center;
}

.copyright-text {
	margin: 0 auto;
	padding: 0;
	font-size: 17px;
}

.copryright-logo {
	vertical-align: middle;
}

@media screen and (max-width: 767px) {
	.copyright-text {
		font-size: 12px;
	}
}


/* キャンペーン情報 */
.top-campaign-bg {
	background-image: url(../../images/campain-bg.png);
	padding: 3px;
}
.top-campaign-shell {
	border: solid 2px #D1C49F;
	padding: 10px;
}
.top-campaign-shell h3.top-heading-sec {
	line-height: 1.2;
	border-bottom: solid 1px #D1C49F;
	padding-bottom: 30px;
  font-size: 20px;
}
.top-campaign-shell h3.top-heading-sec br {
  display: none;
}
.top-campaign-shell h4 {
	font-size: 18px;
	line-height: 1.2;
	margin-bottom: 10px;
}
.top-campaign-shell h4 span {
  display: block;
  font-size: 20px;
  margin-bottom: 14px;
}
.top-campaign-house {
	border: solid 2px #FFF;
	background-color: #FFF;
	margin-top: 30px;
}
.top-campaign-house h4 {
	font-size: 16px;
	line-height: 1.2;
	color: #9B774A;
	margin: 8px 10px;
}
.top-campaign-shell ul {
	margin: 0;
	padding: 0;
	font-size: 0;
	line-height: 0;
}
.top-campaign-shell li {
	margin: 0;
	padding: 0;
	list-style: none;
}
.top-campaign-shell li img {
	max-width: 100%;
}
.top-campaign-house ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.top-campaign-house li {
	width: 100%;
}
.top-campaign-shell h3.campaign-heading {
	font-size: 20px;
	line-height: 1.2;
	background-color: #ED1C24;
	color: #FFF;
	padding: 8px 10px;
	margin: 40px 0 15px 0;
}
.top-campaign-offer,
.top-campaign-offer2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.top-campaign-offer li {
  width: 100%;
  margin-bottom: 10px;
}
.top-campaign-offer2 li {
  font-size: 18px;
  line-height: 1.2;
  background-color: #FFF;
  -webkit-box-shadow:  0 0 4px rgba(0,0,0,0.15);
  box-shadow:  0 0 4px rgba(0,0,0,0.15);
  border: solid 4px #FFF;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
}
.top-campaign-offer li:last-child,
.top-campaign-offer2 li:last-child {
  margin-bottom: 0;
}
.top-campaign-offer2 li::before{
  content: "";
  border: solid 1px #D3C39D;
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
}
.top-campaign-offer2 li::after{
  content: "";
  border: solid 1px #D3C39D;
  position: absolute;
  top: 5px;
  left: 5px;
  width: calc(100% - 12px);
  height: calc(100% - 12px);
}
.border-double {
  padding: 18px;
  color: #604C3F;
  width: 100%;
}
.border-double p {
  font-weight: bold;
  margin-bottom: 10px;
}
.border-double p.mb3 {
  margin-bottom: 3px;
}
.border-double p.mb0 {
  margin-bottom: 0;
}
.border-double p span {
  font-size: 32px;
  color: #ED1C24;
}
.border-double p.small {
  font-weight: normal;
  font-size: 12px;
  margin-bottom: 0;
}
@media screen and (max-width:767px) {
	.SP {
		display: block;
	}
  
	.top-h1 {
		font-size: 22px;
		padding: 0 10px;
		margin: 25px auto 50px;
	}
}

@media screen and (min-width: 768px) {
  .top-campaign-shell {
    padding: 30px;
  }
  .top-campaign-shell h3.top-heading-sec {
    font-size: 24px;
  }
  .top-campaign-shell h3.top-heading-sec br {
    display: inherit;
  }
  .top-campaign-house li {
    width: 50%;
  }
  .top-campaign-offer,
  .top-campaign-offer2 {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .top-campaign-offer li {
    width: 32%;
    margin-bottom: 0;
  }
  .top-campaign-offer2 li {
    margin-bottom: 0;
  }
}

/* トップページ施工実績 */
.top-works img {
  max-width: 100%;
  height: auto;
}
.top-works .top-module-header {
  margin-top: 20px;
}
.top-works ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.top-works .btn-attention {
  padding: 15px 40px;
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}
.top-works ul li:first-child {
  margin: 0 0 20px 0;
}

@media screen and (min-width: 768px) {
  .top-works .top-module-header {
    margin-top: 0;
    text-align: left;
  }
  .top-works-txt {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 40px;
  }
  .top-works ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .top-works ul li:first-child {
    margin: 0 20px 0 0;
  }
  .top-works .btn-attention {
    width: auto;
  }
}