/* ====================
https://www.providesign.co.jp/
2019. providesign

@media (min-width: 576px) {}
@media (min-width: 768px) {}
@media (min-width: 992px) {}
@media (min-width: 1200px) {}
==================== */


/* ====================
ヘッダ header
==================== */
header {
	height: 60px;
	background-color: #000;
	z-index: 10;
	position: relative;
}
.navbar-brand {
	display: inline-block;
	padding: 0;
	margin: 0;
	font-size: 1.25rem;
	line-height: inherit;
	white-space: nowrap;
	height: 60px;
	background-image: url(../images/parts/pts-logo-sp.png);
	background-repeat: no-repeat;
	background-size: auto 50px;
	background-position: center center;
	position: absolute;
	top: 0;
	left: 0;
	right: 30px;
}
@media (min-width: 768px) {
	header {
		height: 118px;
		background-image: url(../images/parts/header-bg.png);
		background-repeat: repeat-x;
		background-size: auto 118px;
		background-position: top left;
		background-color: rgba(255,255,255,0);
		z-index: 10;
	}
	.navbar-brand {
		display: inline-block;
		padding: 0;
		margin: 0;
		font-size: 1.25rem;
		line-height: inherit;
		white-space: nowrap;
		width: 190px;
		height: 112px;
		background-color: #fff;
		background-image: url(../images/parts/pts-logo.png);
		background-repeat: no-repeat;
		background-size: 80% auto;
		background-position: center center;
		position: static;
	}
}
.navbar-dark .navbar-toggler {
	color: rgba(255, 255, 255, 1);
	border-color: rgba(255, 255, 255, 0);
	width: 60px;
	height: 60px;
	position: absolute;
	top: 0;
	right: 0;
}



.navbar-brand span {
	display: none;
}
header .navbar {
	padding: 0;
}

.navbar-expand-md .navbar-nav .nav-link {
	padding-right: 0;
	padding-left: 1rem;
}
@media (min-width: 992px) {
	.navbar-expand-md .navbar-nav .nav-link {
		padding-left: 1rem;
	}
}
@media (min-width: 1200px) {
	.navbar-expand-md .navbar-nav .nav-link {
		padding-left: 1.2rem;
	}
}

header .navbar-collapse ul {
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
	width: 100%;
	height: 100vh;
	position: absolute;
	top: 60px;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(0,0,0,0.8);
	padding-top: 1rem;
}
header .navbar-collapse ul li {
	padding: 0.75rem 3rem;
	position: relative;
}
header .navbar-collapse ul li::before {
	content: '';
	width: 8px;
	height: 8px;
	border-left: 8px solid #fff;
	border-top: 4px solid rgba(255,255,255,0);
	border-bottom: 4px solid rgba(255,255,255,0);
	position: absolute;
	top: 21px;
	left: 45px;
}
@media (min-width: 768px) {
	header .navbar-collapse {
		width: 560px;
		font-size: 0.875rem;
	}
	header .navbar-collapse ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-end;
		align-items: flex-start;
		width: 100%;
		height: 80px;
		position: static;
		background-color: rgba(255,255,255,0);
		padding-top: 0;
	}
	header .navbar-collapse ul li {
		padding: 0;
	}
	header .navbar-collapse ul li::before {
		content: '';
		width: 0;
		height: 0;
		border-left: none;
		border-top: none;
		border-bottom: none;
		position: static;
	}
}
@media (min-width: 992px) {
	header .navbar-collapse {
		width: 800px;
		font-size: 0.875rem;
	}
}
@media (min-width: 1200px) {
	header .navbar-collapse {
		width: 980px;
		font-size: 1rem;
	}
}

.nav-link {
  display: block;
  padding: 0.1rem 1rem;
}
@media (min-width: 992px) {
	.nav-link {
		display: block;
		padding: 0.5rem 1rem;
	}
}

.nav-item {}
.nav-item a ~ ul {
	color: #fff;
	list-style-type: none;
	padding-left: 1rem;
}
@media (min-width: 768px) {
	.nav-item {
		position: relative;
	}
	.nav-item ul {
		position: absolute;
		z-index: 9999;
		top: 100%;
		left: 0;
		right: 0;
		margin: auto;
		padding: 0;
		width: 200%;
		font-size: 95%;
	}
	.nav-item ul li {
		display: block;
		display: none;
		opacity: 0;
		width: 100%;
		background-color: rgba(0,123,255,0.8);
		text-align: left;
	}
	.nav-item ul li a {
		display: block;
		padding: 0.5rem;
		color: #fff;
	}
	.nav-item ul li a:hover {
		background-color: rgba(0,0,0,0.1);
	}
	@-webkit-keyframes fadein {
		0% { opacity:0; }
		75% { opacity:0.5; }
		100% { opacity:1; }
	}
	.nav-item:hover ul li {
		display: block;
		-webkit-animation: fadein 0.4s linear 0s 1;
		opacity: 1
	}
}

.header-sns {
	list-style-type: none;
	padding-left: 0;
	display: flex;
	justify-content: flex-end;
	margin-bottom: 0;
}
.header-sns li {
	width: 1.75rem;
	height: 1.75rem;
}
.header-sns li img {
	margin-bottom: 0;
}

/* ====================
ヘッダメニュー 文字色
==================== */
.navbar-dark .navbar-nav .nav-link {
	color: #fff;
}
.navbar-dark .navbar-nav .nav-link:hover {
	color: #ffeb00;
}

.navbar-light .navbar-nav .nav-link {
	color: #333;
}
.navbar-light .navbar-nav .nav-link:hover {
	color: darkgreen;
}


/* ====================
ヘッダメニュー アクティブ時の文字色
==================== */
#company .navbar-nav .company > a,
#news .navbar-nav .news > a,
#faq .navbar-nav .faq > a,
#policy .navbar-nav .policy > a {
	color: greenyellow;
}


/* ====================
ハンバーガーボタン 閉じる
==================== */

.navbar-light .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M6 6L 24 24M24 6L6 24'/%3E%3C/svg%3E");
}

.navbar-dark .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
	background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M6 6L 24 24M24 6L6 24'/%3E%3C/svg%3E");
}


/* ====================
フッタ footer
==================== */

#footer-nav {
	list-style-type: none;
	padding-left: 0;
	display: flex;
	justify-content: center;
}
#footer-nav li {
	padding: 0.5rem 0;
}
#footer-nav li:not(:last-child)::after {
	content: "／";
	padding: 0 1.5rem;
	color: #007bff;
}
footer .navbar-brand {
  display: inline-block;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  line-height: inherit;
  white-space: nowrap;
	width: 250px;
	height: 60px;
	background-image: url(../images/parts/pts-logo-footer.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;
}

.footer-sns {
	list-style-type: none;
	padding-left: 0;
	display: flex;
	justify-content: flex-end;
}
.footer-sns li {
	width: 1.75rem;
	height: 1.75rem;
}

.footer-submenu {
	list-style-type: none;
	padding-left: 0;
	display: flex;
	justify-content: flex-end;
}

#news #footer-nav .news > a,
#faq #footer-nav .faq > a,
#policy #footer-nav .policy > a {
	color: palevioletred;
}

footer #copy {
	font-size: 0.875rem;
	color: #fff;
	text-align: center;
	padding: 0.5rem 0;
}
footer #copy a {
	color: #fff;
}

.pagetop a {
	position: fixed;
	bottom: 0;
	right: 0;
	width: 3rem;
	height: 3rem;
	background-image: url(../images/parts/pts-pagetop.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;
}
@media (min-width: 768px) {
	.pagetop a {
		bottom: 0.5rem;
		right: 0.5rem;
		width: 5rem;
		height: 5rem;
	}
}
.pagetop span {
	display: none;
}


/* ====================
パンくず
==================== */
.breadcrumb {
	background-color: transparent;
	justify-content: flex-end;
	padding: 0.75rem 0 0;
	font-size: 0.75rem;
}
.breadcrumb-item + .breadcrumb-item::before {
	content: "＞";
}

/* サンプル2 */
.split-3,
.split-4,
.split-5,
.split-6 {
	list-style-type: none;
	padding-left: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: stretch;
}

.split-3 li {
	margin-bottom: 1.5rem;
	width: 100%;
}
@media (min-width: 576px) {
	.split-3 li {
		width: 80%;
		margin-right: 10%;
		margin-left: 10%;
	}
}
@media (min-width: 768px) {
	.split-3 li {
		width: 47%;
		margin-right: 6%;
		margin-left: 0;
	}
	.split-3 li:nth-child(2n) {
		margin-right: 0;
	}
}
@media (min-width: 992px) {
	.split-3 li {
		width: 30%;
		margin-right: 5%;
	}
	.split-3 li:nth-child(2n) {
		margin-right: 5%;
	}
	.split-3 li:nth-child(3n) {
		margin-right: 0;
	}
}
@media (min-width: 1200px) {
	.split-3 li {
		width: 30%;
		margin-right: 5%;
	}
	.split-3 li:nth-child(3n) {
		margin-right: 0;
	}
}

.split-4 li {
	margin-bottom: 1.5rem;
	width: 100%;
}
@media (min-width: 576px) {
}
@media (min-width: 768px) {
	.split-4 li {
		width: 48%;
		margin-right: 4%;
	}
	.split-4 li:nth-child(2n) {
		margin-right: 0;
	}
}
@media (min-width: 992px) {
	.split-4 li {
		width: 30%;
		margin-right: 5%;
	}
	.split-4 li:nth-child(2n) {
		margin-right: 5%;
	}
	.split-4 li:nth-child(3n) {
		margin-right: 0;
	}
}
@media (min-width: 1200px) {
	.split-4 li {
		width: 22%;
		margin-right: 4%;
	}
	.split-4 li:nth-child(2n) {
		margin-right: 4%;
	}
	.split-4 li:nth-child(3n) {
		margin-right: 4%;
	}
	.split-4 li:nth-child(4n) {
		margin-right: 0;
	}
}


/* ====================
よくある質問 faq
==================== */

.faq {}
.faq dl {
	padding: 1rem;
	border-bottom: 1px dashed #bbc3c3;
}
.faq dl:first-child {
	border-top: 1px dashed #bbc3c3;
	padding-top: 2rem;
}
.faq dt,
.faq dd {
	text-indent: -2.5rem;
	padding-left: 2.5rem;
}
.faq dt::before,
.faq dd::before {
	font-family: sans-serif;
	font-size: 1rem;
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	text-indent: 0;
	margin-right: 0.5rem;
	font-weight: bold;
}
.faq dt {
	font-size: 1.25rem;
	margin-bottom: 1.5rem;
}
.faq dt::before {
	content: 'Q';
	color: #fff;
	background-color: #05afd2;
}
.faq dd {}
.faq dd::before {
	content: 'A';
	color: #fff;
	background-color: #f58c00;
}
@media (min-width: 576px) {
	.faq {}
	.faq dl {}
	.faq dt,
	.faq dd {}
	.faq dt::before,
	.faq dd::before {}
	.faq dt {}
	.faq dt::before {}
	.faq dd {}
	.faq dd::before {}
}
@media (min-width: 768px) {
	.faq {}
	.faq dl {}
	.faq dt,
	.faq dd {
		text-indent: -3rem;
		padding-left: 3rem;
	}
	.faq dt::before,
	.faq dd::before {
		width: 2.5rem;
		height: 2.5rem;
	}
	.faq dt {}
	.faq dt::before {}
	.faq dd {}
	.faq dd::before {}
}
@media (min-width: 992px) {
	.faq {
		padding: 0 3.5rem;
	}
	.faq dl {
		padding: 1rem 2rem;
	}
	.faq dt,
	.faq dd {
		text-indent: -3.5rem;
		padding-left: 3.5rem;
	}
	.faq dt::before,
	.faq dd::before {
		width: 3rem;
		height: 3rem;
		font-size: 1.5rem;
		margin-bottom: -8px;
	}
	.faq dt {}
	.faq dt::before {}
	.faq dd {}
	.faq dd::before {}
}
@media (min-width: 1200px) {
	.faq {}
	.faq dl {}
	.faq dt,
	.faq dd {}
	.faq dt::before,
	.faq dd::before {}
	.faq dt {}
	.faq dt::before {}
	.faq dd {}
	.faq dd::before {}
}

/* ====================
よくある質問 faq 回答の表示・非表示切替
==================== */
.faq-h {}
.faq-h input {
	display: none;
}
.faq-h dd {
	height: 0;
	overflow: hidden;
	opacity: 0;
	transition: 0.5s;
}
.faq-h input:checked ~ dt {
	background-image: url(../images/parts/ico-aw6c-u.png);
}
.faq-h input:checked ~ dd {
	height: auto;
	opacity: 1;
}
.faq-h label {
	width: 100%;
	height: 100%;
	cursor: pointer;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}
.faq-h {}

.faq-h dl {
	padding: 1rem;
	border-bottom: 1px solid #ddd;
	position: relative;
}
.faq-h dt,
.faq-h dd {
	text-indent: -2.5rem;
	padding-left: 2.5rem;
}
.faq-h dt::before,
.faq-h dd::before {
	font-family: sans-serif;
	font-size: 1.25rem;
	width: 2rem;
	height: 2rem;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	text-indent: 0;
	margin-right: 0.5rem;
}
.faq-h dt {
	margin-bottom: 1rem;
	background-image: url(../images/parts/ico-aw6c-b.png);
	background-repeat: no-repeat;
	background-size: 2rem auto;
	background-position: top 10px right;
}
.faq-h dt::before {
	content: 'Q';
	color: blue;
	background-color: peachpuff;
	border: 2px solid red;
}
.faq-h dd {}
.faq-h dd::before {
	content: 'A';
	color: white;
	background-color: blueviolet;
	border: 2px solid lightblue;
}
@media (min-width: 576px) {
	.faq-h dl {}
	.faq-h dt,
	.faq-h dd {}
	.faq-h dt::before,
	.faq-h dd::before {}
	.faq-h dt {}
	.faq-h dt::before {}
	.faq-h dd {}
	.faq-h dd::before {}
}
@media (min-width: 768px) {
	.faq-h dl {}
	.faq-h dt,
	.faq-h dd {
		text-indent: -3rem;
		padding-left: 3rem;
	}
	.faq-h dt::before,
	.faq-h dd::before {
		width: 2.5rem;
		height: 2.5rem;
	}
	.faq-h dt {}
	.faq-h dt::before {}
	.faq-h dd {}
	.faq-h dd::before {}
}
@media (min-width: 992px) {
	.faq-h dl {
		padding: 1rem 2rem;
	}
	.faq-h dt,
	.faq-h dd {}
	.faq-h dt::before,
	.faq-h dd::before {}
	.faq-h dt {}
	.faq-h dt::before {}
	.faq-h dd {}
	.faq-h dd::before {}
}
@media (min-width: 1200px) {
	.faq-h dl {}
	.faq-h dt,
	.faq-h dd {}
	.faq-h dt::before,
	.faq-h dd::before {}
	.faq-h dt {}
	.faq-h dt::before {}
	.faq-h dd {}
	.faq-h dd::before {}
}






/* ====================
共通クラス
==================== */
@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);
body {
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", "MS PGothic", "MS Pゴシック", "Meiryo", "メイリオ", "Osaka", "arial", "helvetica", "sans-serif";
}

html{
	scroll-behavior: smooth;
}

a {
	color: #333; 
	transition-duration: 0.3s;
}
a:hover {
	color: #4d4d4d;
	transition-duration: 0.3s;
}

.anchor-sp {
	margin-top: -70px;
	padding-top: 70px;
}
@media (min-width: 768px) {
	.anchor-sp {
		margin-top: 0;
		padding-top: 0;
	}
}
@media (min-width: 768px) {
	.anchor {			/* ページ内リンクのズレを解消するクラス */
		margin-top: -88px;
		padding-top: 88px;
	}
}

img {
	max-width: 100%;
	margin-bottom: 0.5rem;
}

/* ライトボックスの画像の右下につく虫メガネとかの画像
親領域に「position: relative;」を忘れずに！ */
img.zoom {
	width: 35px;
	height: 35px;
	position: absolute;
	right: 0;
	bottom: 0;
	margin-bottom: 0;
}

/* 文字幅を狭く */
.narrow {
	letter-spacing: -0.1em;
}

.font-mincho {
	font-family: 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', '游明朝', 'Yu Mincho', 'ＭＳ Ｐ明朝', 'MS PMincho', serif !important;
}
.font-gothic {
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "MS PGothic", "MS Pゴシック", "Meiryo", "メイリオ", "Osaka", "arial", "helvetica", "sans-serif";
}
.font-marugo {
	
}

/* ハンバーガーボタンを×にする。 */
#accordion .card-header a[data-toggle="collapse"].collapsed::after {
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: "\f078";/* chevron-down */
	float: right;
}
#accordion .card-header a[data-toggle="collapse"]::after {
	font-family: 'Font Awesome 5 Free';
	font-weight: 900;
	content: "\f077";/* chevron-up */
	float: right;
}

/* 埋め込み領域 (YouTube, GoogleMap, GoogleCalender... ) */
.movie-frame {
	position: relative;
	width: 100%;
	height: 100%;
	padding-top: 56.25%;
}
.movie-frame iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}


/* body */

#content { margin-top: 70px; }
@media (min-width: 768px) {
	#content { margin-top: 0; }
}


.beta-alpha-gamma {}
.beta-alpha-gamma #beta {
	width: 100%;
	margin-top: 70px;
}
.beta-alpha-gamma #alpha { width: 100%; }
.beta-alpha-gamma #gamma { width: 100%; }

.alpha_beta_gamma {}
.alpha_beta_gamma #alpha { width: 100%; }
.alpha_beta_gamma #beta { width: 100%; }
.alpha_beta_gamma #gamma { width: 100%; }

.beta-alpha_gamma {}
.beta-alpha_gamma #beta {
	widows: 100%;
	margin-top: 70px;
}
.beta-alpha_gamma #alpha { width: 100%; }
.beta-alpha_gamma #gamma { width: 100%; }


.alpha_beta-gamma {}
.alpha_beta-gamma #alpha {
	width: 100%;
	margin-bottom: 2rem;
}
.alpha_beta-gamma #beta {
	width: 100%;
	margin-bottom: 2rem;
}
.alpha_beta-gamma #gamma {
	width: 100%;
	margin-bottom: 2rem;
}

@media (min-width: 992px) {
	.beta-alpha-gamma {}
	.beta-alpha-gamma #beta {
		width: 100%;
		margin-top: 0;
	}
	.beta-alpha-gamma #alpha { width: 100%; }
	.beta-alpha-gamma #gamma { width: 100%; }

	.alpha_beta_gamma {}
	.alpha_beta_gamma #alpha { width: 60%; }
	.alpha_beta_gamma #beta { width: 20%; }
	.alpha_beta_gamma #gamma { width: 20%; }

	.beta-alpha_gamma {}
	.beta-alpha_gamma #beta {
		widows: 100%;
		margin-top: 0;
	}
	.beta-alpha_gamma #alpha { width: 80%; }
	.beta-alpha_gamma #gamma { width: 20%; }

	.alpha_beta-gamma {}
	.alpha_beta-gamma #alpha { width: 78%; }
	.alpha_beta-gamma #beta { width: 20%; }
	.alpha_beta-gamma #gamma { width: 100%; }
}




#gamma ul.sub-menu-b {
	list-style-type: none;
	padding-left: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	text-align: center;
}
#gamma ul.sub-menu-b li {
	display: inline-block;
	margin-bottom: 1rem;
	width: 45%;
}
@media (min-width: 576px) {
	#gamma ul.sub-menu-b li {}
}
@media (min-width: 768px) {
	#gamma ul.sub-menu-b li {
		width: 30%;
	}
}
@media (min-width: 992px) {
	#gamma ul.sub-menu-b li {
		width: 15%;
	}
}
@media (min-width: 1200px) {
	#gamma ul.sub-menu-b li {}
}

#gamma ul.sub-menu-b li a {
	display: block;
	border: 1px solid #359a00;
	padding: 0.25rem 0;
	font-size: 1.125rem;
}
#gamma ul.sub-menu-b li a:hover {
	background-color: #359a00;
	color: #fff;
	text-decoration: none;
	transition-duration: 0.3s;
}


#beta ul.sub-menu-t {
	list-style-type: none;
	padding-left: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	text-align: center;
}
#beta ul.sub-menu-t li {
	width: 42%;
	margin: 0.5rem;
}
@media (min-width: 576px) {
	#beta ul.sub-menu-t li {
		width: 27%;
	}
}
@media (min-width: 768px) {
	#beta ul.sub-menu-t li {
		width: 23%;
	}
}
@media (min-width: 992px) {
	#beta ul.sub-menu-t li {
		width: 14%;
	}
}
@media (min-width: 1200px) {
	#beta ul.sub-menu-t li {
		width: 13%;
	}
}

#beta ul.sub-menu-t li a {
	color: #fff;
	display: block;
	padding: 0.5rem 0;
}


.heading-title {
	font-size: 1.875rem;
	margin-bottom: 1rem;
}

.page-title {
	font-size: 2.25rem;
	color: #6f42c1;
}

.page-title-a {
	margin-bottom: 2rem;
	text-align: center;
	line-height: 1.07;
	position: relative;
}
.page-title-a .h2-ja {
	font-size: 1.5rem;
}
.page-title-a .h2-en {
	font-size: 0.75rem;
	font-family: 'Lato', sans-serif;
}
.page-title-a::before {
	content: "";
	width: 20px;
	height: 4px;
	background-color: #d30012;
	border-radius: 4px;
	position: absolute;
	bottom: 28px;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
}
@media (min-width: 768px) {
	.page-title-a .h2-ja {
		font-size: 2.125rem;
	}
	.page-title-a .h2-en {
		font-size: 1rem;
	}
}

.page-title-b {
	font-size: 2.125rem;
	font-family: 'Lato', sans-serif;
	margin-bottom: 1rem;
	position: relative;
}
.page-title-b::before {
	content: "";
	width: 20px;
	height: 4px;
	background-color: #d30012;
	border-radius: 4px;
	position: absolute;
	top: 40px;
	left: 0;
}

.page-title-c {
	font-size: 1.5rem;
	position: relative;
	padding-left: 2rem;
	margin-bottom: 1.5rem;
	font-weight: 700;
}
.page-title-c::before {
	content: "";
	width: 24px;
	height: 24px;
	border-top: 12px solid #f23581;
	border-right: 12px solid #728282;
	border-bottom: 12px solid #262626;
	border-left: 12px solid #da1167;
	position: absolute;
	top: 1px;
	left: 0;
}

.page-title-d {
	font-size: 1.5rem;
	display: inline-block;
	padding: 0.5rem 1rem 0.1rem;
	height: 50px;
	position: relative;
}
.page-title-d::before,
.page-title-d::after {
	content: '';
	position: absolute;
	top: 0;
	width: 1rem;
	height: 50px;
	border-top: 2px solid #3cb371;
	border-bottom: 2px solid #3cb371;
}
.page-title-d::before {
	left: -2rem;
	border-left: 2px solid #3cb371;
}
.page-title-d::after {
	right: -2rem;
	border-right: 2px solid #3cb371;
}

.page-title-e {
	font-size: 1.5rem;
	border-left: 6px solid #3cb371;
	padding-left: 1rem;
}


.title-a {
	font-size: 1.25rem;
	background-color: #afeeee;
	color: #000080;
	height: 50px;
	padding: 10px 3rem;
	display: inline-block;
	position: relative;
}
.title-a::before,
.title-a::after {
	content: '';
	height: 50px;
	width: 20px;
	border-top: 25px solid #afeeee;
	border-bottom: 25px solid #afeeee;
	position: absolute;
}
.title-a::before {
	border-left: 20px solid rgba(255,255,255,0);
	top: 0;
	left: -20px;
}
.title-a::after {
	border-right: 20px solid rgba(255,255,255,0);
	top: 0;
	right: -20px;
}

.title-b {
	display: inline-block;
	position: relative;
	z-index: 1;
	padding: 0.75rem 2rem 0.1rem 2rem;
}
.title-b::before {
	border: 3px solid #db7093;
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	bottom: 0px;
	z-index: -1;
	transform: skewX(-20deg);
	background-color: transparent;
	content: "";
}


.title-c {
	font-size: 1.25rem;
	display: inline-block;
	background: -moz-linear-gradient(left, #87ceeb, #6a5acd);
	background: -webkit-linear-gradient(left, #87ceeb, #6a5acd);
	background: linear-gradient(to right, #87ceeb, #6a5acd);
	color: #fff;
	padding: 0.75rem 2rem 0.1rem;
	position: relative;
}

.title-d {
	font-size: 1.25rem;
	display: inline-block;
	color: #010079;
	padding: 0.75rem 2rem 0.1rem;
	background: -webkit-repeating-linear-gradient(-45deg, #cce7ff, #cce7ff 3px,#e9f4ff 3px, #e9f4ff 7px);
	background: repeating-linear-gradient(-45deg, #cce7ff, #cce7ff 3px,#e9f4ff 3px, #e9f4ff 7px);
}

.title-e {
	font-size: 1.25rem;
	background-color: #e0ffff;
	padding: 0.75rem 3rem 0.1rem 2rem;
	display: inline-block;
	position: relative;
}
.title-e::after {
	content: '';
	width: 20px;
	height: 20px;
	border-left: 10px solid #add8e6;
	border-bottom: 10px solid #add8e6;
	border-top: 10px solid #fff;
	border-right: 10px solid #fff;
	position: absolute;
	top: 0;
	right: 0;
}

.title-f {
	font-size: 1.25rem;
	background-color: #f0fff0;
	padding: 0.75rem 2rem 0.1rem 3rem;
	display: inline-block;
	position: relative;
}
.title-f::before {
	content: '';
	width: 40px;
	height: 40px;
	border-top: 20px solid #ff6347;
	border-left: 20px solid #ff6347;
	border-right: 20px solid rgba(255,255,255,0);
	border-bottom: 20px solid rgba(255,255,255,0);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
}
.title-f::after {
	content: 'new';
	font-size: 0.75rem;
	color: #fff;
	font-weight: bold;
	transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	position: absolute;
	top: 5px;
	left: 2px;
	z-index: 4;
}

.title-g {
	font-size: 1.25rem;
	display: inline-block;
	position: relative;
}
.title-g::before {
	content: "";
	height: 1px;
	width: 200px;
	background: #dc143c;
	display: block;
	transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	position: absolute;
	top: 10px;
	left: 10px;
	z-index: -1;
}
.title-g span {
	background-color: #fff;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}

/* ====================
問い合わせフォーム form
==================== */
.ime-act { ime-mode: active; }
.ime-dbl { ime-mode: disabled; }

.custom-select {
	-webkit-appearance: none;
	-moz-appearance: none;
}

.form-tel {
	display: inline-block;
	border-width: 2px;
	border-style: solid;
	border-radius: 1.5rem;
	font-size: 1.5rem;
}
.form-tel a {
	display: block;
	padding: 0.75rem 1.5rem 0.75rem 3.5rem;
	background-image: url(../images/parts/pts-tel.png);
	background-repeat: no-repeat;
	background-size: 2rem auto;
	background-position: left 1rem center;
}
.form-tel a:hover {
	text-decoration: none;
	opacity: 0.7;
}

table.form-table {
	text-align: center;
	width: auto;
	margin: 0 auto 2rem;
	border-top: 1px solid #ddd;
}
table.form-table tr {
	border-bottom: 1px solid #ddd;
}
table.form-table th,
table.form-table td {
	white-space: nowrap;
	text-align: left;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}
table.form-table th {
	padding-left: 1rem;
	padding-right: 1rem;
}
table.form-table td {
	padding-left: 1rem;
	padding-right: 1rem;
}
@media (min-width: 768px) {
	table.form-table th {
		padding-left: 3rem;
		padding-right: 1rem;
	}
	table.form-table td {
		padding-left: 1rem;
		padding-right: 3rem;
	}
}

.thanks-txt {
	border-width: 2px;
	border-style: solid;
	border-radius: 1rem;
	text-align: center;
	margin: 3rem auto 6rem;
	padding: 3rem 1rem;
	width: 100%;
}
@media (min-width: 576px) {
	.thanks-txt {
		width: 90%;
		padding: 3rem 0;
	}
}
@media (min-width: 768px) {
	.thanks-txt {
		width: 80%;
	}
}
@media (min-width: 992px) {
	.thanks-txt {
		width: 70%;
	}
}
@media (min-width: 1200px) {
	.thanks-txt {
		width: 60%;
	}
}



/* ====================
表 table
==================== */

table.table21 {
	width: 100%;
	border-width: 1px;
	border-style: solid;
	border-color: #ffa4aa;
}
table.table21 thead {}
table.table21 tbody {}
table.table21 tfoot {}
table.table21 tr {}
table.table21 th,
table.table21 td {
	padding: 0.25rem 0.5rem;
	display: block;
	width: 100%;
}
table.table21 th {
	background-color: rgba(255,164,170,0.1);
}
table.table21 td {}
table.table21 tr:not(:last-child) {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #ffa4aa;
}
@media (min-width: 768px) {
	table.table21 th,
	table.table21 td {
		padding: 0.75rem 1.5rem;
		display: table-cell;
	}
	table.table21 th {
		width: 30%;
		border-right-width: 1px;
		border-right-style: solid;
		border-right-color: #ffa4aa;
	}
	table.table21 td {
		width: 70%;
	}
}


table.table22 {
	width: 100%;
	border-width: 1px;
	border-style: solid;
	border-color: #098ea6;
}
table.table22 thead {}
table.table22 tbody {}
table.table22 tfoot {}
table.table22 tr {}
table.table22 th,
table.table22 td {
	padding: 0.25rem 0.5rem;
	display: block;
	width: 100%;
}
table.table22 th {
	background-color: #098ea6;
	color: #fff;
}
table.table22 td {}
table.table22 tr:not(:last-child) th {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #fff;
}
table.table22 tr:not(:last-child) td {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #098ea6;
}
@media (min-width: 768px) {
	table.table22 th,
	table.table22 td {
		padding: 0.75rem 1.5rem;
		display: table-cell;
	}
	table.table22 th {
		width: 20%;
	}
	table.table22 td {
		width: 80%;
	}
}


table.table23 {
	border-top: 1px solid #ffc778;
	width: 100%;
}
table.table23 thead {}
table.table23 tbody {}
table.table23 tfoot {}
table.table23 tr {
	border-bottom: 1px solid #ffc778;
}
table.table23 th,
table.table23 td {
	padding: 0.25rem 0.5rem;
	display: block;
	width: 100%;
}
table.table23 th {
	background-color: rgba(255,199,120,0.1)
}
table.table23 td {
	margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
	table.table23 th,
	table.table23 td {
		padding: 0.75rem 1.5rem;
		display: table-cell;
	}
	table.table23 th {
		width: 20%;
		background-color: transparent;
	}
	table.table23 td {
		width: 80%;
		margin-bottom: 0;
	}
}


table.table24 {
	width: 100%;
}
table.table24 thead {}
table.table24 tbody {}
table.table24 tfoot {}
table.table24 tr {}
table.table24 th,
table.table24 td {
	padding: 0.25rem 0.5rem;
	display: block;
	width: 100%;
}
table.table24 th {
	background-color: rgba(184,225,215,0.2)
}
table.table24 td {}
@media (min-width: 768px) {
	table.table24 th,
	table.table24 td {
		padding: 0.75rem 1.5rem;
		display: table-cell;
	}
	table.table24 th {
		border-right-width: 2px;
		border-right-style: solid;
		border-right-color: #b8e1d7;
		width: 30%;
		background-color: transparent;
	}
	table.table24 td {
		width: 70%;
	}
}


table.table31 {
	width: 100%;
	border: 1px solid #f89174;
}
table.table31 thead {}
table.table31 thead th {
	background-color: #f89174;
	color: #fff;
}
table.table31 tbody {}
table.table31 tfoot {}
table.table31 tbody tr {}
table.table31 tbody tr:nth-child(2n) {
	background-color: rgba(248,145,116,0.1);
}
table.table31 thead th,
table.table31 tbody td {
	padding: 0.75rem 1.5rem;
	white-space: nowrap;
}
table.table31 tbody td {}
@media (min-width: 768px) {
	table.table31 thead th,
	table.table31 tbody td {
		white-space: normal;
	}
}


table.table32 {
	width: 100%;
	border-top: 1px solid #0462c9;
	border-left: 1px solid #0462c9;
}
table.table32 thead {}
table.table32 thead th {
	background-color: #0462c9;
	color: #fff;
	text-align: center;
}
table.table32 thead th:not(:last-child) {
	border-right: 1px solid #fff;
}
table.table32 tbody {}
table.table32 tbody th {
	background-color: rgba(4,98,201,0.1);
}
table.table32 tfoot {
	background-color: rgba(4,98,201,0.2);
	font-weight: bold;
}
table.table32 tfoot th {
	text-align: center;
}
table.table32 tr {}
table.table32 th,
table.table32 td {
	padding: 0.75rem 1.5rem;
	white-space: nowrap;
	border-bottom: 1px solid #0462c9;
	border-right: 1px solid #0462c9;
}
table.table32 th {}
table.table32 td {
	text-align: right;
}
@media (min-width: 768px) {
	table.table32 th,
	table.table32 td {
		white-space: normal;
	}
}

/* ====================
ムーヴァブルタイプ Movable Type
==================== */

.pagination {
	justify-content: center;
}
.pagination li {
	white-space: nowrap;
}

.widget {
	border: 1px solid #17a2b8;
	margin-bottom: 1.5rem;
}
.widget .widget-header {
	font-size: 1.25rem;
	text-align: center;
	color: #fff;
	background-color: #17a2b8;
	padding: 0.5rem 0;
}
.widget .widget-content {
	padding: 0.5rem;
}
.widget .meta-title {}
.widget .meta-date {
	font-size: 0.875rem;
	padding-left: 1rem;
}
.widget ul {
	list-style-type: none;
	padding: 0.5rem;
}
.widget ul li {
	line-height: 1.3;
	margin-bottom: 0.5rem;
}
.widget ul li a {
	display: block;
}
.widget ul li a::before {
	font-family: "Font Awesome 5 Free";
	content: '\f0da';
	font-weight: 900;
	font-size: 1rem;
	color: #17a2b8;
	padding-right: 0.5rem;
}
.widget ul li a:hover {
	text-decoration: none;
	color: #17a2b8;
}
.widget .quantity {
	font-size: 0.875rem;
}
.widget .quantity::before {
	content: '（';
}
.widget .quantity::after {
	content: '）';
}



/* es-std */
.es-std > * {}
.es-std .asset-header {}
.es-std .meta-date {
	margin-right: 1rem;
}
.es-std .meta-category {
	width: 7rem;
	text-align: center;
}
.es-std .meta-category a {
	display: block;
	white-space: nowrap;
	background-color: #17a2b8;
	color: #fff;
	border-radius: 0.25rem;
	padding: 0.25rem 0;
}
.es-std .asset-name {
	color: #007bff;
	font-size: 1.5rem;
	line-height: 1.2;
	margin-bottom: 1rem;
}
.es-std .asset-body {}
.es-std .asset-image {
	margin-bottom: 1rem;
}
.es-std .btn-continue {}
@media (min-width: 576px) {
	.es-std > * {}
	.es-std .asset-header {}
	.es-std .meta-date {}
	.es-std .meta-category {}
	.es-std .meta-category a {}
	.es-std .asset-name {}
	.es-std .asset-body {}
	.es-std .asset-image {}
	.es-std .btn-continue {}
}
@media (min-width: 768px) {
	.es-std > * {}
	.es-std .asset-header {}
	.es-std .meta-date {}
	.es-std .meta-category {}
	.es-std .meta-category a {}
	.es-std .asset-name {}
	.es-std .asset-body {}
	.es-std .asset-image {
		width: 80%;
		margin-left: auto;
		margin-right: auto;
	}
	.es-std .btn-continue {}
}
@media (min-width: 992px) {
	.es-std > * {}
	.es-std .asset-header {}
	.es-std .meta-date {}
	.es-std .meta-category {}
	.es-std .meta-category a {}
	.es-std .asset-name {}
	.es-std .asset-body {}
	.es-std .asset-image {}
	.es-std .btn-continue {}
}
@media (min-width: 1200px) {
	.es-std > * {}
	.es-std .asset-header {}
	.es-std .meta-date {}
	.es-std .meta-category {}
	.es-std .meta-category a {}
	.es-std .asset-name {}
	.es-std .asset-body {}
	.es-std .asset-image {
		width: 60%;
	}
	.es-std .btn-continue {}
}

/* es-row1 */
.es-row1 > * {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	margin-top: 0.75rem;
	margin-bottom: 0.75rem;
	border-bottom: 1px solid #ddd;
}
.es-row1 .asset-header {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
}
.es-row1 .meta-date {
	white-space: normal;
	margin-right: 1rem;
}
.es-row1 .meta-category {
	width: 7rem;
	text-align: center;
}
.es-row1 .meta-category a {
	display: block;
	white-space: nowrap;
	background-color: #17a2b8;
	color: #fff;
	border-radius: 0.25rem;
	padding: 0.25rem 0;
}
.es-row1 .asset-name {
	font-size: 1.125rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.es-row1 .asset-name a {
	color: #007bff;
}
.es-row1 .asset-body {}
.es-row1 .asset-image { display: none; }
.es-row1 .btn-continue { display: none; }

@media (min-width: 576px) {
	.es-row1 .asset-header {
		padding-left: 1rem;
		padding-right: 1rem;
	}
	.es-row1 .meta-date {
		width: 23%;
		margin-right: 0;
	}
	.es-row1 .meta-category {
		width: 23%;
	}
	.es-row1 .asset-name {
		width: 100%;
	}
}
@media (min-width: 768px) {
	.es-row1 .asset-header {
		flex-wrap: nowrap;
		justify-content: space-between;
	}
	.es-row1 .meta-date {
		width: 17%;
	}
	.es-row1 .meta-category {
		width: 17%;
	}
	.es-row1 .asset-name {
		width: 60%;
	}
}
@media (min-width: 992px) {
	.es-row1 .asset-header {
		padding-left: 2rem;
		padding-right: 2rem;
	}
	.es-row1 .meta-date {
		width: 13%;
	}
	.es-row1 .meta-category {
		width: 13%;
	}
	.es-row1 .asset-name {
		width: 68%;
	}
}
@media (min-width: 1200px) {
	.es-row1 .asset-header {
		padding-left: 2rem;
		padding-right: 2rem;
	}
	.es-row1 .meta-date {
		width: 11%;
	}
	.es-row1 .meta-category {
		width: 11%;
	}
	.es-row1 .asset-name {
		width: 74%;
	}
}


/* es-row2 */
.es-row2 > * {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	margin-top: 0.75rem;
	margin-bottom: 0.75rem;
	border-bottom: 1px solid #ddd;
}
.es-row2 .asset-header {}
.es-row2 .meta-date {
	width: 7rem;
}
.es-row2 .meta-category {
	width: 7rem;
	text-align: center;
}
.es-row2 .meta-category a {
	display: block;
	white-space: nowrap;
	background-color: #17a2b8;
	color: #fff;
	border-radius: 0.25rem;
	padding: 0.25rem 0;
}
.es-row2 .asset-name {
	font-size: 1.5rem;
	line-height: 1.2;
	margin-bottom: 1rem;
}
.es-row2 .asset-name a {
	color: #007bff;
}
.es-row2 .asset-body {
	height: 4.5rem;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: 1rem;
}
.es-row2 .asset-image {
	width: 70%;
	margin: 0 auto 1rem auto;
}
.es-row2 .asset-image a {
	display: block;
	width: 100%;
	height: 50vw;
	background-image: url(../images/temp/flower_04.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}
.es-row2 .asset-image span {
	display: none;
}
.es-row2 .btn-continue {}
.es-row2 .btn-continue a {
	display: inline-block;
	padding: 0.25rem 1rem;
	background-color: #007bff;
	border-radius: 0.25rem;
	color: #fff;
}
.es-row2 .btn-continue a::before {
	font-family: "Font Awesome 5 Free";
	content: '\f0da';
	font-weight: 900;
	font-size: 1rem;
	color: #fff;
	padding-right: 0.5rem;
}
.es-row2 .btn-continue a:hover {
	text-decoration: none;
	background-color: #0069d9;
}
.es-row2 .category-title {
	display: inline-block;
	border-bottom: 3px solid #007bff;
	padding: 0 1rem;
	margin-bottom: 2rem;
}

@media (min-width: 576px) {
	.es-row2 > * {}
	.es-row2 .asset-header {}
	.es-row2 .meta-date {}
	.es-row2 .meta-category {}
	.es-row2 .asset-name {}
	.es-row2 .asset-body {}
	.es-row2 .asset-image {}
	.es-row2 .btn-continue {}
}
@media (min-width: 768px) {
	.es-row2 > * {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
	}
	.es-row2 .asset-header {}
	.es-row2 .meta-date {}
	.es-row2 .meta-category {}
	.es-row2 .asset-name {}
	.es-row2 .asset-body {}
	.es-row2 .asset-image {
		width: 30%;
		margin: 0.5rem 0 0 0;
	}
	.es-row2 .asset-image a {
		height: 10rem;
	}
	.es-row2 .btn-continue {}
}
@media (min-width: 992px) {
	.es-row2 > * {}
	.es-row2 .asset-header {}
	.es-row2 .meta-date {}
	.es-row2 .meta-category {}
	.es-row2 .asset-name {}
	.es-row2 .asset-body {}
	.es-row2 .asset-image {
		width: 25%;
	}
	.es-row2 .asset-image a {
		height: 12rem;
	}
	.es-row2 .btn-continue {}
}
@media (min-width: 1200px) {
	.es-row2 > * {}
	.es-row2 .asset-header {}
	.es-row2 .meta-date {}
	.es-row2 .meta-category {}
	.es-row2 .asset-name {}
	.es-row2 .asset-body {}
	.es-row2 .asset-image {}
	.es-row2 .asset-image a {}
	.es-row2 .btn-continue {}
}

/* es-col1 */
.es-col1 {}
.es-col1 > * {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding-bottom: 1rem;
	margin-bottom: 2rem;
	border-bottom: 1px solid #ddd;
}
.es-col1 .asset-header {
	width: 48%;
}
.es-col1 .meta-date {
	font-size: 0.875rem;
	text-align: right;
	margin-bottom: 1rem;
}
.es-col1 .meta-category {
	margin-bottom: 1rem;
	background-color: #17a2b8;
	border-radius: 0.25rem;
	text-align: center;
}
.es-col1 .meta-category a {
	display: block;
	padding: 0.25rem 0;
	color: #fff;
}
.es-col1 .asset-name {
	width: 100%;
	font-size: 1.5rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.es-col1 .asset-name a {
	color: #007bff;
}
.es-col1 .asset-body {}
.es-col1 .asset-image {
	width: 48%;
	height: 30vw;
	margin-bottom: 1rem;
}
.es-col1 .asset-image a {
	display: block;
	background-image: url(../images/temp/flower_09.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	width: 100%;
	height: 100%;
}
.es-col1 .asset-image a:hover {}
.es-col1 .asset-image span {
	display: none;
}
.es-col1 .btn-continue {}

@media (min-width: 576px) {
	.es-col1 > * {}
	.es-col1 .asset-header {}
	.es-col1 .meta-date {}
	.es-col1 .meta-category {}
	.es-col1 .asset-name {}
	.es-col1 .asset-body {}
	.es-col1 .asset-image {
		height: 10rem;
	}
	.es-col1 .asset-image a {}
	.es-col1 .asset-image a:hover {}
	.es-col1 .asset-image span {}
	.es-col1 .btn-continue {}
}
@media (min-width: 768px) {
	.es-col1 > * {
		border-bottom: 0;
	}
	.es-col1 .asset-header {
		width: 100%;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.es-col1 .meta-date {}
	.es-col1 .meta-category {
		width: 60%;
	}
	.es-col1 .asset-name {}
	.es-col1 .asset-body {}
	.es-col1 .asset-image {
		width: 100%;
		height: 13.5rem;
	}
	.es-col1 .asset-image a {}
	.es-col1 .asset-image a:hover {}
	.es-col1 .asset-image span {}
	.es-col1 .btn-continue {}
}
@media (min-width: 992px) {
	.es-col1 > * {}
	.es-col1 .asset-header {}
	.es-col1 .meta-date {}
	.es-col1 .meta-category {}
	.es-col1 .asset-name {}
	.es-col1 .asset-body {}
	.es-col1 .asset-image {}
	.es-col1 .asset-image a {}
	.es-col1 .asset-image a:hover {}
	.es-col1 .asset-image span {}
	.es-col1 .btn-continue {}
}
@media (min-width: 1200px) {
	.es-col1 > * {}
	.es-col1 .asset-header {}
	.es-col1 .meta-date {}
	.es-col1 .meta-category {}
	.es-col1 .asset-name {}
	.es-col1 .asset-body {}
	.es-col1 .asset-image {
		height: 11rem;
	}
	.es-col1 .asset-image a {}
	.es-col1 .asset-image a:hover {}
	.es-col1 .asset-image span {}
	.es-col1 .btn-continue {}
}



/* es-col2 */
.es-col2 {}
.es-col2 > * {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding-bottom: 1rem;
	margin-bottom: 2rem;
	border-bottom: 1px solid #ddd;
}
.es-col2 .asset-header {
	width: 48%;
}
.es-col2 .meta-date {
	font-size: 0.875rem;
	text-align: right;
	margin-bottom: 1rem;
}
.es-col2 .meta-category {
	margin-bottom: 1rem;
	background-color: #17a2b8;
	border-radius: 0.25rem;
	text-align: center;
}
.es-col2 .meta-category a {
	display: block;
	padding: 0.25rem 0;
	color: #fff;
}
.es-col2 .asset-name {
	width: 100%;
	font-size: 1.5rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.es-col2 .asset-name a {
	color: #007bff;
}
.es-col2 .asset-body {
	line-height: 1.2;
	height: 3.6rem;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-bottom: 1rem;
}
.es-col2 .asset-image {
	width: 48%;
	height: 30vw;
	margin-bottom: 1rem;
}
.es-col2 .asset-image a {
	display: block;
	background-image: url(../images/temp/flower_09.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	width: 100%;
	height: 100%;
}
.es-col2 .asset-image a:hover {}
.es-col2 .asset-image span {
	display: none;
}

.es-col2 .btn-continue {}
.es-col2 .btn-continue a {
	display: inline-block;
	padding: 0.25rem 1rem;
	background-color: #007bff;
	border-radius: 0.25rem;
	color: #fff;
}
.es-col2 .btn-continue a::before {
	font-family: "Font Awesome 5 Free";
	content: '\f0da';
	font-weight: 900;
	font-size: 1rem;
	color: #fff;
	padding-right: 0.5rem;
}
.es-col2 .btn-continue a:hover {
	text-decoration: none;
	background-color: #0069d9;
}

@media (min-width: 576px) {
	.es-col2 > * {}
	.es-col2 .asset-header {}
	.es-col2 .meta-date {}
	.es-col2 .meta-category {}
	.es-col2 .asset-name {}
	.es-col2 .asset-body {}
	.es-col2 .asset-image {
		height: 10rem;
	}
	.es-col2 .asset-image a {}
	.es-col2 .asset-image a:hover {}
	.es-col2 .asset-image span {}
	.es-col2 .btn-continue {}
}
@media (min-width: 768px) {
	.es-col2 > * {
		border-bottom: 0;
	}
	.es-col2 .asset-header {
		width: 100%;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.es-col2 .meta-date {}
	.es-col2 .meta-category {
		width: 60%;
	}
	.es-col2 .asset-name {}
	.es-col2 .asset-body {}
	.es-col2 .asset-image {
		width: 100%;
		height: 13.5rem;
	}
	.es-col5 .asset-image a {}
	.es-col5 .asset-image a:hover {}
	.es-col5 .asset-image span {}
	.es-col5 .btn-continue {}
}
@media (min-width: 992px) {
	.es-col2 > * {}
	.es-col2 .asset-header {}
	.es-col2 .meta-date {}
	.es-col2 .meta-category {}
	.es-col2 .asset-name {}
	.es-col2 .asset-body {}
	.es-col2 .asset-image {}
	.es-col2 .asset-image a {}
	.es-col2 .asset-image a:hover {}
	.es-col2 .asset-image span {}
	.es-col2 .btn-continue {}
}
@media (min-width: 1200px) {
	.es-col2 > * {}
	.es-col2 .asset-header {}
	.es-col2 .meta-date {}
	.es-col2 .meta-category {}
	.es-col2 .asset-name {}
	.es-col2 .asset-body {}
	.es-col2 .asset-image {
		height: 11rem;
	}
	.es-col2 .asset-image a {}
	.es-col2 .asset-image a:hover {}
	.es-col2 .asset-image span {}
	.es-col2 .btn-continue {}
}


/* 背景画像を固定させる */
.bg-fix::before {
	content: "";
	background-image: url(../images/temp/flower_05.jpg);
	background-repeat: no-repeat;
	background-size: 1200px auto;
	background-position: top center;
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 66vw;
	z-index: -1;
}


/* ボタン */
[class^="button-"] a {
	display: inline-block;
	background-color: #333;
	border-radius: 0.25rem;
	color: #fff !important;
	text-decoration: none;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all  0.5s ease;
}
[class^="button-"] a:hover {
	background-color: #d30012;
}

.button-more {
	text-align: right;
	font-family: 'Lato', sans-serif;
}
.button-more a {
	background-image: url(../images/parts/ico-aw.png);
	background-repeat: no-repeat;
	background-size: 25px auto;
	background-position: center right 12px;
	padding: 10px 51px 12px 13px;
}

.button-inquiry {
	text-align: center;
	margin-bottom: 0;
	font-weight: 700;
}
.button-inquiry a {
	line-height: 1;
	padding: 1.25rem 0 1.125rem;
	font-size: 1.125rem;
	width: 100%;
}
@media (min-width: 576px) {
	.button-inquiry a {
		width: 320px;
	}
}

.button-inquiry2 {
	text-align: center;
	margin-bottom: 0;
	font-weight: 700;
}
.button-inquiry2 a {
	line-height: 1;
	padding: 1.25rem 0 1.125rem;
	font-size: 1.125rem;
	width: 100%;
}

