@charset "utf-8";
@import url("global.css");

/*---------------------------------------------------------------------------------------
	トップページ
----------------------------------------------------------------------------------------*/

.top-message {
	position: relative;
	width: 100%;
	background: url(../images/index/about-back.jpg) no-repeat center bottom;
    background-size: cover;
    margin-bottom: 2em;
}
.top-message::after {
    content: ' ';
    position: absolute;
	background-color: rgba(0,0,0,0.6);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.top-message .section-bk-inner {
	z-index: 1;
	padding: 3em 0;
	color: var(--white);
    font-family: var(--mincho);
}
.top-message .section-bk-inner .hl01 {
    border-bottom: 3px solid var(--line3);
}

.top-message .section-bk-inner p {
	font-size: var(--large);
}
.bnr-jasmin {
	border: 1px solid var(--line3);
	margin-top: 2em;
	margin-bottom: 3em;
}
.service-img {
}
.service-img {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.service-img li {
    width: 32%;
    margin-top: 1em;
}
.service-img li a {
	text-decoration: none;
}
.service-img li a[target="_blank"]:after {
	display: none;
}
.service-img li h3{
	margin-top: .5em;
}
.service-img li p{
}

.shop-box > div {
   display: flex;
   background: var(--key-l);
    justify-content: space-between;
}
.shop-box > div > figure {
	width: 40%;
}
.shop-box > div > div {
	padding: 1em 1em 1em 0;
	width: 57%;
}
/*------------------------------ responsive ------------------------------*/
@media screen and (max-width: 768px) {

	.top-message .section-bk-inner {
		font-size: medium;
	}
	.service-img {
	}
	.service-img li {
	}

	.shop-box > div {
		padding: 0;
	    display: block;
	}
	.shop-box > div > figure {
		width: 100%;
		margin-bottom: 1em;
	}
	.shop-box > div > div {
		padding: 0 1em 1em;
		width: 100%;
	}

}

