@charset "UTF-8";


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

/* ------------------------------
　　ボタン
------------------------------ */
.btn {
	border: 0;
	background: #666;
	font-weight: bold;
	color: #FFF;
	line-height: 1.2;
	border: 0;
	display: inline-block;
	padding: 8px 15px;
	border-radius: 3px;
}
.btn:hover,
.btn:visited,
a.btn:hover,
a.btn:visited{
	color: #FFF ;
	text-decoration: none;
}
.btn.btn-default:hover,
.btn.btn-default:visited {
	color: #000 !important;
	text-decoration: none;
}
.btn.btn-primary:hover,
.btn.btn-primary:visited {
	color: #FFF !important;
	text-decoration: none;
}

.btn:focus,
.btn:active {
	color: #FFF;
	box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, .5);
}
.btn:hover {
	background-color: #444;
	background-image: linear-gradient(to bottom, #666, #444);
	color: #FFF;
}
.btn:active,
.btn:focus {
	background: #444;
}

/* ボタン　色付き */
.btn-attention {
	border: 0;
	background: #C41134;
	font-weight: bold;
	color: #FFF;
	line-height: 1.2;
	border: 0;
	display: inline-block;
	padding: 8px 15px;
	border-radius: 3px;
}
.btn-attention:hover,
.btn-attention:visited {
	color: #FFF;
	text-decoration: none;
}
.btn-attention:focus,
.btn-attention:active {
	color: #FFF;
	box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, .5);
}
.btn-attention:hover {
	background-color: #910021;
	background-image: linear-gradient(to bottom, #C41134, #910021);
	color: #FFF;
}
.btn-attention:active,
.btn-attention:focus {
	background: #910021;
}

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

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

@media (min-width: 768px) {
	.btn-block-large {
		max-width: 360px;
	}
	.btn-attention-block-large {
		max-width: 360px;
	}
}

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

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

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

/* ------------------------------
　　ラベル
------------------------------ */
.label-new {
	background: #C41134;
    color: #FFF;
}

.label-category {
	background: #444;
    color: #FFF;
}

.label-category a:visited {
	color: #FFF;
}

/* ------------------------------
　　ページタイトル
------------------------------ */


.page-title-wrapper {
	display: table;
	position: relative;
	width: 100%;
	height: 100px;
	color: #FFF;
	background: url(../../images/bg_other.jpg?v=20180410185050) #333 no-repeat center;
	background-size: cover;
}

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

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

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


/* エントリーのブログ名 */
.category_blog_name {
    padding: 5px 0px;
    font-size: 16px;
}
.category_blog_name a {
    display: block;
    color: #000;
}

.category_blog_name a:visited {
    color: #000;
}


@media (max-width: 767px) {
    .entry-title {
        font-size: 24px;

    }
}



.page-description {
	margin: 10px 0;
	font-size: 16px;
	line-height: 1.5;
}

@media (min-width: 768px) {
	.page-title-wrapper {
		height: 270px;
	}
}

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

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

.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 {
	list-style: none;
	margin: -25px 0 60px 0;
	padding: 0;
}
.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;
	border-bottom: 1px solid #E5E5E5;
	color: #333;
}
.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;
	}
}

/* ------------------------------
　　トピックパス
------------------------------ */
.topicpath {
	margin-bottom: 30px;
	padding: 10px 0;
}

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

.topicpath-item {
	float: left;
	padding: 0 10px 0 23px;
	background: url(../../images/marker/icon_arrow.png?v=20180410185050) no-repeat left center;
}
.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;
}

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

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

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

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

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

.main-slider-image {
	height: 300px;
	background: no-repeat center #333;
	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;
}

.main-slider-side-copy {
	margin: 0;
	color: #FFF;
	font-size: 16px;
}

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

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

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

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

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

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

.slick-dots li button {
	content: "";
	position: relative;
	display: inline-block;
	width: 15px;
	height: 15px;
	margin: 0 8px;
	font-size: 0;
	background: #FFF;
	border-radius: 7px;
	border: 1px solid transparent;
}

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

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

.slick-dots li.slick-active button {
	background: #C41134;
}

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

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

@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;
	}
}

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

/* タイトル */
.module-header {
	position: relative;
	margin: 0;
	padding: 0 0 5px;
	color: #333;
}
.module-header + .summary-custom,
.module-header + .summary-default,
.module-header + .entry-column,
.module-header + .pickup-list,
.module-header + .search-form,
.module-header + .banner {
	margin-top: 10px;
}

.module-heading {
	margin: 0;
	font-size: 18px;
}
.module-heading [class*="acms-icon-"] {
	margin: 0 10px 0 0;
	vertical-align: baseline;
}

a.module-index-link {
	position: absolute;
	bottom: 5px;
	right: 0;
	color: #333;
	font-size: 16px;
}
a.module-index-link [class*="acms-icon-"] {
	color: #CCC;
	font-size: 14px;
}

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

/* 行揃えの設定 */
/* 見出し */
.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;
}

/* ------------------------------
　　リスト
------------------------------ */


@media screen and (min-width: 768px) {
	/* リスト */
	a.acms-list-group-item {
		padding: 10px 20px 10px 10px;
		transition: padding .15s ease-out;
	}
	a.acms-list-group-item:hover {
		padding: 10px 10px 10px 20px;
		transition: padding .25s ease-out;
	}
}

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

.list-results-heading {
	padding: 5px;
	margin: 0 0 10px 0;
	background: #E5E5E5;
}

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

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

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

/* ------------------------------
　　サマリー
------------------------------ */
.summary-default {
	margin: 0 0 20px 0;
	padding: 0;
	list-style: none;
	border-left: 1px solid #E5E5E5;
	border-top: 1px solid #E5E5E5;
}
.summary-default:before,
.summary-default:after {
	content: " ";
	display: table;
}
.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 {
	padding: 10px;
	color: #333;
	border-right: 1px solid #E5E5E5;
	border-bottom: 1px solid #E5E5E5;
	box-sizing: border-box;
	transition: background-color .25s ease-out;
}
.summary-default-item.bl-hover {
	background: #F1F1F1;
}
.acms-entry .summary-default-item {
	padding: 10px;
}
.slick-initialized .summary-default-item {
	width: 280px;
	margin: 2px 10px 2px 2px;
	box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, .08), -1px -1px 1px 1px rgba(0, 0, 0, .08);
	border: 0;
}

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

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

@media screen and (max-width: 767px) {
	.summary-default-image-wrap img {
		width: 60px;
		height: auto;
	}
}

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

/* ------------------------------
　　ピックアップリスト
------------------------------ */
.pickup-list {
	margin: 0;
	padding: 0;
	list-style: none;
}
.pickup-list img {
	display: block;
	transition: opacity .25s ease-out;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}
.pickup-list img:hover {
	opacity: .75;
}

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

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

/* ------------------------------
　　ヘッドライン
------------------------------ */
.headline-item {
	line-height: 1.5;
	transition: background-color .25s ease-out;
}
.headline-item.bl-hover {
	background: #F1F1F1;
}

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

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

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

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

/* ------------------------------
　　レイアウトモジュール
------------------------------ */
/* 背景色 */
.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;
}

/* ------------------------------
　　各モジュール
------------------------------ */
/* フィールドグループ */
.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;
}

.blog_sub_cate {
    display: flex;
    justify-content: center;
    align-items: center;
	flex-wrap: wrap;
}
.blog_sub_cate > div {
    padding: 7px;
}


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

.page-header {
	margin: 0 0 20px 0;
}

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

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

/* タイトル */
.entry-title {
	margin: 25px 0 25px;
}
.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;
	padding: 5px 10px 5px 20px;
	font-size: 2.8rem;
	color: #000;
	border-left: 11px solid #942410;
    font-family: var(--font-family);
    font-weight: var(--font-weight-bold);
}
.entry-column h2.toocurate {
	border-left: 11px solid #3296C8;
}
.entry-column h2.module-heading {
	margin: 0;
	padding: 0;
	border: 0;
}
.entry-column h3 {
	margin: 0 10px 20px 10px;
	padding: 5px 0 11px;
	font-size: 2.2rem;
	color: #49a71d;
    border-bottom: solid 1px #AAA;
    font-weight: var(--font-weight-bold);
}
.entry-column h3.kadai {
	color: #000;
    border-bottom: solid 1px #AAA;
    font-family: var(--font-family);
    font-weight: var(--font-weight-regular);
}

.blog ..entry-column h4 {
	font-size: 20px;
    font-family: var(--font-family);
    font-weight: var(--font-weight-bold);
	padding-left: 8px;
	border-left: solid 6px #AAA;
}
.blog .blog_cta_box_wrap .entry-column h4 {
	border-left: none;
}

.entry-column h5 {
	font-size: 18px;
    font-family: var(--font-family);
    font-weight: var(--font-weight-bold);
}
.entry-column h5:before {
	content: "▶︎";
    margin-right: 4px;
    color: #AAA;
}
.entry-column a:link {
	color: #006DD9;
	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: 24px;
	font-size: 16px;
	line-height: 1.8;
	color: #444;
}
.blog .entry-column p {
	font-size: 1.75rem;
	line-height: 200%;
}

/* エントリー内ボタン */
.entry-column p.entry-btn {
	margin-bottom: 10px;
}
.entry-column p.entry-btn a {
	background: #666;
	font-weight: bold;
	color: #FFF;
	line-height: 1.2;
	border: 0;
	display: inline-block;
	padding: 8px 15px;
	border-radius: 3px;
}
.entry-column p.entry-btn a:hover,
.entry-column p.entry-btn a:visited {
	color: #FFF;
	text-decoration: none;
}
.entry-column p.entry-btn a:focus,
.entry-column p.entry-btn a:active {
	color: #FFF;
	box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, .5);
}
.entry-column p.entry-btn a:hover {
	background-color: #444;
	background-image: linear-gradient(to bottom, #666, #444);
	color: #FFF;
}
.entry-column p.entry-btn a:active,
.entry-column p.entry-btn a:focus {
	background: #444;
}

/* 色付きボタン */
.entry-column p.entry-btn-attention a {
	background: #C41134;
	font-weight: bold;
	color: #FFF;
	line-height: 1.2;
	border: 0;
	display: inline-block;
	padding: 8px 15px;
	border-radius: 3px;
}
.entry-column p.entry-btn-attention a:hover,
.entry-column p.entry-btn-attention a:visited {
	color: #FFF;
	text-decoration: none;
}
.entry-column p.entry-btn-attention a:focus,
.entry-column p.entry-btn-attention a:active {
	color: #FFF;
	box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, .5);
}
.entry-column p.entry-btn-attention a:hover {
	background-color: #910021;
	background-image: linear-gradient(to bottom, #C41134, #910021);
	color: #FFF;
}
.entry-column p.entry-btn-attention a:active,
.entry-column p.entry-btn-attention a:focus {
	background: #910021;
}

.entry-column p.summary-title {
	margin: 0 0 10px 0;
}

.entry-column p.summary-detail {
	margin: 0 0 10px 0;
	font-size: 14px;
}

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

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

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


/*後半三角形*/
.toocurete_delta {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 30px 25px 0 25px;
	border-color: #3296C8 transparent transparent transparent;
	display: inline-block;
	animation: blinking 4s ease 0s 1 normal forwards;
	animation-iteration-count:infinite;
}
@keyframes blinking {
	0%,
	50%,
	100% {
		opacity: 1;
		border-color: #3296C8  transparent transparent transparent;
	}

	25%,
	75% {
		opacity: 0;
		border-color: #49a71d transparent transparent transparent;
	}
}

/* テーブル */
.entry-column table {
	width: 100%;
}
.entry-column table.table-history {
	table-layout: fixed;
}

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

.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 th {
	background: #F5F5F5;
}

/* 沿革用テーブル */
.entry-column table.table-history tr {
	background: #FFF;
}

.entry-column table.table-history th,
.entry-column table.table-history td {
	display: block;
}

.entry-column table.table-history th {
	padding: 10px;
}

.entry-column table.table-history td {
	padding: 10px 0;
}

.entry-column table.table-history .table-history-img {
	display: block;
	padding: 0 10px 10px 10px;
	background: #FFF;
}

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

/* 番号付きリスト */
.entry-column ol {
	margin: 0 0 25px 0;
	padding: 0 0 0 2.5em;
}
.entry-column ol li {
	margin: 0 0 5px 0;
	font-size: 16px;
	line-height: 1.5;
}

/* 定義リスト */
.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: 700;
	line-height: 1.2;
    font-family: var(--font-family);
    font-weight: var(--fonyt-weight-bold);
}

.entry-column dd {
	margin-left: 0;
	margin-bottom: 20px;
	font-size: 16px;
	line-height: 1.5;
}

/* 引用 */
.entry-column blockquote {
	margin-bottom: 30px;
	padding: 15px 20px 15px 16px;
	font-size: 88%;
	line-height: 1.5;
	border-left: 4px solid #BFBFBF;
	background: #EFEFEF;
	box-sizing: border-box;
}

/* ソースコード */
.entry-column pre {
	width: 100%;
	margin: 0 0 30px 0;
	box-sizing: border-box;
}
.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 .caption {
	margin: 5px 0 20px 0 !important;
	font-size: 13px !important;
}

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

@media screen and (min-width: 480px) {
	.entry-column .table-history-img {
		float: right;
	}
}

@media screen and (min-width: 768px) {
	.entry-column th,
	.entry-column td {
		display: table-cell;
		padding: 10px;
		text-align: left;
		font-size: 90%;
		border-top: 1px solid #DFDFDF;
	}
	.entry-column tr:last-child {
		border-bottom: 1px solid #DFDFDF;
	}
    .entry-column th {
		background: inherit;
	}
	.entry-column tr:nth-child(odd) {
		background: #F5F5F5;
	}
}

/* エントリーフッター */
.entry-footer {
	margin: 60px 0 20px 0;
	padding: 10px;
}
footer.entry-footer {
    border-top: solid 2px #DDD;
}

/* タグ */
.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: inline;
	list-style: none;
	float: right;
	margin: 0;
	padding: 0;
}

.share-item {
	display: inline-block;
	margin: 0 0 0 20px;
	vertical-align: top;
}
.share-item a {
	color: #999;
	text-decoration: none;
}
.share-item [class*="acms-icon"] {
	font-size: 16px;
	vertical-align: middle;
}
.share-item .share-item-facebook {
	/* Facebook */
	position: relative;
	display: block;
	width: 22px;
	height: 22px;
	line-height: 1.2;
	color: #FFF;
	text-align: center;
	font-size: 16px;
	border-radius: 4px;
	color: #000;
	background-color: #FFF;
}
.share-item .share-item-facebook:before {
	vertical-align: middle;
}
.share-item .share-item-facebook:focus:before {
	content: "";
	position: absolute;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
	border: 1px dotted #333;
}
.share-item .share-item-twitter {
	/* Twitter */
	position: relative;
	display: block;
	width: 22px;
	height: 22px;
	line-height: 1.2;
	color: #FFF;
	text-align: center;
	font-size: 16px;
	border-radius: 4px;
	color: #000;
	background-color: #FFF;
}
.share-item .share-item-twitter:before {
	vertical-align: middle;
}
.share-item .share-item-twitter:focus:before {
	content: "";
	position: absolute;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
	border: 1px dotted #333;
}
.share-item .share-item-gplus {
	/* Google + */
	position: relative;
	display: block;
	width: 22px;
	height: 22px;
	line-height: 1.2;
	color: #FFF;
	text-align: center;
	font-size: 16px;
	background: #DD4B39;
	border-radius: 4px;
}
.share-item .share-item-gplus:before {
	vertical-align: middle;
}
.share-item .share-item-gplus:focus:before {
	content: "";
	position: absolute;
	top: -1px;
	right: -1px;
	bottom: -1px;
	left: -1px;
	border: 1px dotted #333;
}

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

.continue-link a {
	display: inline-block;
	padding: 10px;
	color: #FFF;
	line-height: 1.5;
	font-weight: bold;
	border-radius: 3px;
	background: #767676;
}
.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;
	}
}

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

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



/* 記事一覧 */
.summary-custom {
	margin: 0 0 40px 0;
	padding: 0;
	list-style: none;
}
.summary-custom li {
	border: solid 1px #DDD;
}

.summary-custom-entry {
}
.summary-custom-entry:hover {
	background: #F5F5F5;
	transition: background-color .25s linear;
}

.photo {
}

.photo-title {
	margin: 0 0 1rem;
	font-size: 2.6rem;
        font-family: var(--font-family);
    font-weight: var(--font-weight-bold);
	line-height: 120%;
	color:#3296C8;
}
.photo-title a,
.photo-title a:visited{
	color:#3296C8;
}

.pickup-title {
	color: #333;
	font-size: 13px;
	line-height: 120%;
}
.pickup-title.top {
	font-size: 15px;
	line-height: 120%;
}



@media screen and (max-width: 767px) {
	/* 物件情報 */
	.realestate-search th,
	.realestate-search td {
		display: block;
		box-sizing: border-box;
	}
	.realestate-search input {
		box-sizing: border-box;
	}
}


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

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

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

.form-btn-return {
	float: left;
}

.form-btn-send {
	float: right;
}

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

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

@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 #C41134;
}

.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"] {
	font-size: 16px;
	padding: 14px 5px 10px 5px;
}

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

.contact-box select {
	font-size: 16px;
	padding: 11px 30px 11px 10px;
	vertical-align: top;
}

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

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

.invalid {
	background: #FFEBEE !important;
}

/* ------------------------------
　　ヘッダー
------------------------------ */




/* ------------------------------
　　フッター
------------------------------ */



/* BLOG 関連製品用*/
.blog .title_n_cate {
    background-color: #DDD;
	color: #222;
}
.blog .title_n_cate.blog_new {
    background-color: rgba(220, 42, 11, 0.94);
}


.related_product .title_n {
	border-top: none;
    color: #FFF;
}
.related_product .title_n .title_n_cate, 
.related_product .title_n .title_n_text {
    font-size: 1.6rem;
	background-color: #3296C8;
}
.related_product {
    border:solid 3px #DDD;
}




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

.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;
	text-align: center;
	line-height: 1.5;
	font-size: 19px;
	color: #FFF;
	border-radius: 4px;
	background: #3B5999;
}
.sns-list-item .sns-list-facebook:before {
	vertical-align: middle;
}

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

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

.sns-list-item .sns-list-youtube {
	/* YouTube */
	display: block;
	width: 30px;
	height: 30px;
	text-align: center;
	line-height: 1.5;
	font-size: 19px;
	color: #FFF;
	border-radius: 4px;
	background: #CD201F;
}
.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;
		transition: opacity .25s linear;
	}
}








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



/* TOP  */

.recoCate a {
	transition: 0.5S;
	display: block;
	box-shadow: #FFF 0 0px 0px;
	border-radius: 3px;
}
.recoCate a:hover {
	box-shadow: #666 0 1px 8px;
}

.recoCate_title {
	font-size: 2rem;
	line-height: 120%;
    font-family: var(--font-family);
    font-weight: var(--font-weight-bold);
}


.blog_list_wrap {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 24px 36px; 
}
.blog_list_wrap a{ 
    border: none;
	text-decoration: none;
}

@media (max-width: 979px) {
}
@media (max-width: 639px) {
}




/* 関連エントリー　*/
.acms-thumbnail h3 {
	font-size: 1.4rem;
	margin-top: 0;
	line-height: 115%;
	margin-bottom: 0.5rem;
}
.acms-thumbnail .blogName {
	font-size: 1rem;
	margin-bottom: 0rem;
	color: #777;
	display: inline-block;
}
.acms-thumbnail {
	border: none;
	padding: 0;
	margin-bottom: 40px;
}
.acms-thumbnail:hover {
	border: none;
	box-shadow: none;
}

.acms-page-header {
	margin-top: 0;
	margin-bottom: 30px;
	border-bottom: none;
	padding-top: 10px;
	padding-bottom: 15px;
}
.categoly_hedder {
	padding: 43% 0 0 0;
    background-position: center center;
    background-size: cover;
    position: relative;
}

@media (max-width:640px) {
    .categoly_hedder {
        padding: 120% 0 0 0;
    }
}

/*ページタイトル*/
.page-title-entry {
    padding-top: 0;
}
.page-header_inner {
    position: absolute;
    top:0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
   align-content: center;
   justify-content: center;
}
.page-header_inner_in {
    padding: 0 10px;
}
@media (min-width:1200px) {
    .page-header_inner_in h1 {
        font-size: 4.5rem;
    }
}
.page-header_inner_in h1,
.page-header_inner_in p{
    color: #FFF;
}



/*ブロック*/
	.summary_wrap {
		display: flex;
		flex-wrap:wrap;
		justify-content:space-between;
	}
	.summary_wrap > .summary_box {
		box-shadow: 0px 0px 3px #999;
    	border-radius: 3px;
	}
	
	
	:root {
	  --space: 26px;
	}
	
	
	.col_2 {
		width: calc((100% - var(--space)) / 2);
	}
	.col_3 {
		width: calc((100% - var(--space)*2) / 3);
	}
	.col_4 {
		width: calc((100% - var(--space)*3) / 4);
	}
	.col_5 {
		width: calc((100% - var(--space)*4) / 5);
	}
	.col_6 {
		width: calc((100% - var(--space)*5) / 6);
	}
@media screen and (max-width: 767px) {
	.col_2 {
		width: 100%;
	}
	.col_3 {
		width: 100%;
	}
	.col_4 {
		width: calc((100% - var(--space)) / 2);
	}
	.col_5 {
		width: calc((100% - var(--space)) / 2);
	}
	.col_6 {
		width: calc((100% - var(--space)) / 2);
	}
}
	
	

	.summary-title a ,
	.summary-title a:visited {
		color: #3296C8;
		font-size: 2.2rem;
    font-family: var(--font-family);
    font-weight: var(--font-weight-bold);
		line-height: 115%;
	}
	.summary_box {
		padding-bottom: 5rem;
		position: relative;
	}
	.summary_box .image {
		border-radius: 3px 3px 0px 0px;
	}

	.summary-heading {
		font-size: 1.8rem;
		margin-bottom: 1.2rem;
    font-family: var(--font-family);
    font-weight: var(--font-weight-bold);
		color: #000;
		line-height: 125%;
	}
	.summary-body {
		padding: 3.2rem;
		line-height: 170%;
		color: #666;
		font-size: 1.36rem;
	}
	.summary-detail {
		color: #666;
		line-height: 180%;
	}

	.summary-footer {
		width:100%;
		bottom: 1px;
		position: absolute;
		padding: 10px 3px 10px 10px;
		border-top: solid 1px #DDD;
		display: flex;
		align-items:center;
        justify-content: flex-end;
	}
	.summary-tag {
		width: calc(100% - 10rem);
		overflow: hidden;
		font-size: 1.3rem;
	}
	.summary-moredetail {
		width: 9.5rem;
		font-size: 1.2rem;
    font-family: var(--font-family);
    font-weight: var(--font-weight-bold);
		text-align: right;
	}



ul.blog-pager  {
	text-align: center;
}


.blog-pager li {
	display: inline-block;
	margin: 0 5px;
	text-align: center;
}

.blog-pager li > a > span {
	font-size: 3rem;
}
.blog-pager li > a,
.blog-pager li > span {
	display: block;
	padding: 5px 10px ;
	background-color: transparent;
	border: 0px solid #FFF;
	font-size: 2rem;
	transition: 0.5s;
}
.blog-pager li > span > a {
	transition: 0.5s;
	box-shadow: #888 0px 1px 3px;
}


/* サイドエントリーリスト */

.entryList {
	font-size: 1.3rem;
	line-height: 120%;
}
em {
    font-family: var(--font-family);
    font-weight: var(--font-weight-bold);
    font-style: normal;
}




.blog h3.relation_title {
    font-size: 1.6rem;
}

/*イントロテキスト*/
.blog_intro_text {
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: solid 3px #DDD;
    border-bottom: solid 3px #DDD;
    font-family: var(--font-family);
    font-weight: var(--font-weight-bold);
    margin-left: 10px;
    margin-right: 10px;
    font-weight: 600;
}

.entry-column .blog_intro_text  p:last-child{
    margin-bottom: 0; 
}

/*次のアクション*/
.next_action_wrap {
    background-color:#fff;
    padding: 50px 15px 30px;
}

.next_action_wrap h3 {
    font-size: 220%;
}
.next_action_wrap_inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 480px));
    gap: 80px;
    margin-left: auto;
    margin-right: auto;
	place-content: center;
}
@media screen and (max-width: 767px) {
    .next_action_wrap_inner {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
}
.next_action_wrap h4 {
    margin-bottom: 0;
    font-family: var(--font-family);
    font-weight: va(--font-weight-bold);
    font-size: 20px;
    padding-bottom: 8px;
    border-bottom: solid 1px #CCC;
}
.next_action_wrap .blog_deltablog_delta {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 15px 0 15px;
    border-color: #a4c730 transparent transparent transparent;
    display: inline-block;
    margin-bottom: 25px;
}
.next_action_wrap a {
	text-decoration: none;
}
.related_blog{
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    font-size: 14px;
    color: #222;
}
.related_blog > div {
    margin-bottom: 30px;
}
.blog_related_product {
    color: #222;
} 


/* CTボックスA */
.blog_cta_box {
    border-radius: 10px;
    border: solid 1px #DDD;
    background-color: #FFF;
    padding: 40px;
}
.blog_cta_box_wrap h4 {
    font-size: 160% !important;
}
.blog_cta_box_inner {
    display: flex;
    column-gap: 20px;
}
.blog_cta_box_inner * {
    margin: 0 !important;
}
.blog_cta_box_inner > div:nth-of-type(1){
    width: 40%;
}
.blog_cta_box_inner > div:nth-of-type(2) {
    width: 60%;
}
.blog_cta_box_inner .blog_cta_text {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}
.blog_cta_box_inner .blog_cta_text p {
    font-size: 14px !important;
    line-height: 1.6 !important;
}

@media screen and (max-width: 767px) {
    .blog_cta_box {
        padding: 20px;
    }
  .blog_cta_box_inner {
    display: block;
    }
    .blog_cta_box_inner > div:nth-of-type(1){
        width: 100%;
        margin-bottom: 10px !important;
    }
    .blog_cta_box_inner > div:nth-of-type(2) {
        width: 100%;
    }
    .cta_btn {
        text-align: center;
    }
}


.blog_gta_box{
        box-shadow: rgba(0,0,0,0.2) 0 1px 1px, rgba(0,0,0,0.05) 0 1px 2px 2px;
    border-radius: 6px;
    background-color: #FFF;
    margin-left: 0;
    margin-right: 0;
}
.blog_gta_box .blog_gta_box_inner{
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.blog_gta_box .blog_cta_text p {
    font-size: 14px;
    line-height: 1.6;
}
@media screen and (max-width: 767px) {

    .blog_gta_box .blog_gta_box_inner{
        display: block;
     }
}

.acms-entry p.miniText {
    font-size: 12px;
    color: #888;
}

.interview_name {
    display: block;
    font-family: var(--font-family);
    font-weight: var(--font-weight-bold);
    font-size: 80%;
    margin-bottom: 4px;
    color: #222;
}




/*　カテゴリートップのリンク色*/
.blog_category_miro .photo-title {
    color: #988e00;
}
.blog_category_asana .photo-title {
    color: #f15a00;
}



/*　カスタムユニット：ポップアップビデオ*/
/*Xの位置がずれるので修正*/
.modal-video-close-btn {
	top: -45px !important;
	right: -45px !important;
	width: 45px !important;
	height: 45px !important;
}
.video_popup_wrap {
    cursor: pointer;
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center center;
    margin-left: auto;
    margin-right: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5));
    border-radius: 18px;
}
.video_popup_size_SS {
    max-width: 320px;
    position: relative;
}
.video_popup_size_S {
    max-width: 480px;
    position: relative;
}
.video_popup_size_M {
    max-width: 640px;
    position: relative;
}
.video_popup_size_L {
    max-width: 100%;
    position: relative;
}
.caption_play_video_label {
    display: inline-block;
    padding: 5px 7px;
    background: rgba(221,221,221,1.00);
    margin-right: 5px;
    border-radius: 5px;
    font-size: 80%;
}
.modal-video-body {
    max-width: calc( 100% - 60px ) !important;
}

/* カスタムユニット：フレックス */
.fx_wrap_wrap {
    margin-left: 10px;
    margin-right: 10px;
}
.fx_wrap {
    display: grid;
}
.fx_wrap h2, .fx_wrap h3, .fx_wrap h4, .fx_wrap h5, .fx_wrap h9, .fx_wrap p, .fx_wrap dt, .fx_wrap dd, .fx_wrap li {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

@media only screen and (max-width: 797px) {
    
    .fx_wrap.fx_column_sm_1 {
        grid-template-columns: 1fr;
    }
    .fx_wrap.fx_column_sm_2 {
        grid-template-columns: 1fr 1fr;
    }
    .fx_wrap.fx_column_sm_3 {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .fx_wrap.fx_column_sm_4 {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
    .fx_wrap.fx_column_sm_5 {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }
    .fx_wrap.fx_column_sm_6 {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    }
}

@media only screen and (min-width: 798px) {
    .fx_wrap.fx_column_md_1 {
        grid-template-columns: 1fr;
    }
    .fx_wrap.fx_column_md_2 {
        grid-template-columns: 1fr 1fr;
    }
    .fx_wrap.fx_column_md_3 {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .fx_wrap.fx_column_md_4 {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
    .fx_wrap.fx_column_md_5 {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }
    .fx_wrap.fx_column_md_6 {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    }

}

@media only screen and (min-width: 1000px) {
    
    
    .fx_wrap.fx_column_lg_1 {
        grid-template-columns: 1fr;
    }
    .fx_wrap.fx_column_lg_2 {
        grid-template-columns: 1fr 1fr;
    }
    .fx_wrap.fx_column_lg_3 {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .fx_wrap.fx_column_lg_4 {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
    .fx_wrap.fx_column_lg_5 {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    }
    .fx_wrap.fx_column_lg_6 {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    }
    
}
@media only screen and (max-width: 767px) {
    .fx_wrap.fx_gap_x_1 {
        column-gap: 10px;
    }
    .fx_wrap.fx_gap_x_2 {
        column-gap: 20px;
    }
    .fx_wrap.fx_gap_x_3 {
        column-gap: 30px;
    }
    .fx_wrap.fx_gap_x_4 {
        column-gap: 40px;
    }
    .fx_wrap.fx_gap_x_5 {
        column-gap: 50px;
    }
    .fx_wrap.fx_gap_x_6 {
        column-gap: 60px;
    }
    .fx_wrap.fx_gap_y_1 {
        row-gap: 10px;
    }
    .fx_wrap.fx_gap_y_2 {
        row-gap: 20px;
    }
    .fx_wrap.fx_gap_y_3 {
        row-gap: 30px;
    }
    .fx_wrap.fx_gap_y_4 {
        row-gap: 40px;
    }
    .fx_wrap.fx_gap_y_5 {
        row-gap: 50px;
    }
    .fx_wrap.fx_gap_y_6 {
        row-gap: 60px;
    }
}

@media only screen and (min-width: 768px) {
    .fx_wrap.fx_gap_x_1 {
        column-gap: 15px;
    }
    .fx_wrap.fx_gap_x_2 {
        column-gap: 30px;
    }
    .fx_wrap.fx_gap_x_3 {
        column-gap: 45px;
    }
    .fx_wrap.fx_gap_x_4 {
        column-gap: 60px;
    }
    .fx_wrap.fx_gap_x_5 {
        column-gap: 75px;
    }
    .fx_wrap.fx_gap_x_6 {
        column-gap: 90px;
    }
    .fx_wrap.fx_gap_y_1 {
        row-gap: 15px;
    }
    .fx_wrap.fx_gap_y_2 {
        row-gap: 30px;
    }
    .fx_wrap.fx_gap_y_3 {
        row-gap: 45px;
    }
    .fx_wrap.fx_gap_y_4 {
        row-gap: 60px;
    }
    .fx_wrap.fx_gap_y_5 {
        row-gap: 75px;
    }
    .fx_wrap.fx_gap_y_6 {
        row-gap: 90px;
    }
}