@charset "UTF-8";


/*========/ 共通タイトル /========*/
.top-h2 {
	color: var(--red);
	font-size: 4.8rem;
	line-height: 4.2rem;
	font-family: 'Oswald';
}
.top-h2::first-letter {
  color: #fff;
  text-shadow:
    -1px -1px 0 var(--red),
    1px -1px 0 var(--red),
    -1px 1px 0 var(--red),
    1px 1px 0 var(--red),
    0 0 2px var(--red);
}
.top-h2 span {
	display: block;
	color: #000;
	font-size: 1.6rem;
	font-weight: 600;
	font-family: "Noto Sans JP", sans-serif;
}


/*========/ hero /========*/
.hero {
	position: relative;
	transform:skewY(-10deg);
	transform-origin: left;
}
.hero::before,
.hero::after {
	content: "";
	width: 100%;
	height: 1px;
	background-color: var(--red);
	position: absolute;
	left: 0;
}
.hero::before {
	bottom: 20px;
	transform: skewY(20deg);
}
.hero::after { bottom: -25px; }
.hero .hero-inner {
	width:100%;
	height:calc( 100vh - 100px );
	min-height: 680px;
	display:block;
	overflow:hidden;
}
.hero .hero-img {
    width: 100%;
    height: 100%;
	min-height: calc( 100vh - 100px );
    object-fit: cover;
	transform:skewY(10deg) scale(1.2);
}
.hero .hero-copy {
	color: white;
	font-size: 4.8rem;
	font-weight: bold;
	line-height: 5.3rem;
	position: absolute;
	top: 180px;
	left: 50%;
	z-index: 2;
	writing-mode: vertical-rl;
	transform: translateX(-50%) skewY(10deg); 
}

@media screen and (max-width:880px){
	.hero {
		margin-bottom: 85px;
		transform-origin: right;
	}
	.hero .hero-inner { height:calc( 100vh - 180px ); }
	.hero .hero-img { min-height: calc( 100vh - 180px ); }
	.hero .hero-copy { top: 100px; }
}
/*========/ aboutus /========*/
.aboutus { padding: 0 40px; }
.aboutus .p-red {
	margin-top: 40px;
	color: var(--red);
	font-size: 2.4rem;
	line-height: 3.8rem;
	font-style: italic;
	font-weight: 900;
}
.aboutus .aboutus-image {
	width: calc(100% + 80px);
	height: 250px;
	margin: 40px -40px;
	overflow: visible;
	position: relative;
}
.aboutus .aboutus-image::after {
	content: "";
	width: 100%;
	height: 100%;
	background-color: #EAEAEA;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	transform: skewY(-10deg);
}
.aboutus .aboutus-image p {
	width: calc(100% - 20px);
	height: 250px;
	overflow: hidden;
	border-radius: 0 10px 10px 0;
	position: relative;
	z-index: 1;
}
.aboutus .aboutus-image p img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.aboutus .top-h2 { text-align: end; }
.aboutus .common-btn { margin-top: 40px; }


@media screen and (max-width:880px){
	.aboutus { padding: 0 20px; }
	.aboutus .aboutus-image {
		width: calc(100% + 40px);
		margin: 40px -20px;
	}
}
/*========/ service /========*/
.service {
	margin-top: 50px;
	background-color: var(--red);
	transform: skewY(10deg);
    transform-origin: top left;
}
.service .service-inner {
	padding: 40px 40px 80px;
	transform: skewY(-10deg);
}
.service .service-inner .top-h2{ color: #fff; }
.service .service-inner .top-h2::first-letter {
  color: var(--red);
  text-shadow:
    -1px -1px 0 #fff,
    1px -1px 0 #fff,
    -1px 1px 0 #fff,
    1px 1px 0 #fff,
    0 0 2px #fff;
}
.service .service-inner .top-h2 span { color: #fff; }
.service .service-inner ol { margin-top: 70px; }
.service .service-inner ol > li + li { margin-top: 36px; }

/*アコーディオン番号*/
.service .service-inner > ol {
	counter-reset: listnum;
	list-style: none;
}

/* クリック領域 */
.service .title_btn {
	padding: 10px 20px;
	border: solid 1px #fff;
	border-radius: 60px;
	color: #000;
	text-align: center;
	font-size: 1.6rem;
	font-weight: 600;
	background-color: #fff;
	position: relative;
	cursor: pointer;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
	user-select: none;
}
.service .title_btn::before{
	content: counter(listnum, decimal-leading-zero) ".";
	counter-increment: listnum;
	padding-right: 4px;
	color: #000;
	font-size: 1.6rem;
	line-height: 0;
	font-weight: 600;
	font-family: 'Oswald';
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
.service .title_btn .text-red {
	color: var(--red);
	font-size: 2rem;
	letter-spacing: 0.1rem;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
.service .title_btn .arrow-circle {
	width: 24px;
	height: 24px;
	display: inline-block;
	border-radius: 50%;
	background-color: #000;
	position: absolute;
	top: 50%;
	right: 16px;
	transform: translateY(-50%);
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
.service .title_btn .arrow-circle::after {
	content: "";
	width: 0;
	height: 0;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-left: 7px solid #fff;
	background: transparent;
	position: absolute;
	top: 50%;
	left: 55%;
	transform: translate(-55%, -50%);
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
.service .title_btn.open .arrow-circle::after {
  transform: translate(-60%, -40%) rotate(90deg);
}
.service .title_btn:hover {
	color: #fff;
	background-color: var(--red);
}
.service .title_btn:hover .text-red { color: #fff; }
.service .title_btn:hover .arrow-circle { background-color: #fff; }
.service .title_btn:hover .arrow-circle::after { border-left: 8px solid var(--red); }
.service .title_btn:hover::before{ color: #fff; }

/* クリックして出てくる部分 */
/* 共通 */
.service .text_box {
	margin-top: 20px;
	padding: 40px 25px;
	display: none;
	background-color: #fff;
	border-radius: 10px;
}
.service .text_box .text_box-title {
	width: 100px;
	height: 100px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	border: solid 3px #fff;
	border-radius: 50%;
	box-sizing: border-box;
	justify-content: center;
	align-items: center;
	color: #fff;
	text-align: center;
	font-size: 3.6rem;
	line-height: 3.2rem;
	font-family: 'Oswald';
	font-weight: 300;
	background-color: var(--red);
	position: relative;
	z-index: 10;
}
.service .text_box .text_box-title span{
	display: block;
	font-size: 1.8rem;
	font-weight: 600;
	font-family: "Noto Sans JP", sans-serif;
}
.service .text_box .text_box-image {
	width: 100%;
	height: 200px;
    margin-top: -25px;
	border-radius: 10px;
	overflow: hidden;
}
.service .text_box .text_box-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service .attention-text {
	margin-top: 20px;
	display: flex;
	gap: 8px;
}
.service .attention-text p {
	font-size: 1.2rem;
	line-height: 2.2rem;
}

/* service01 */
.service .ser_01 dl { margin-top: 40px; }
.service .ser_01 dl dt {
	display: inline-block;
	color: var(--red);
	font-size: 2.8rem;
	line-height: 4.2rem;
	font-weight: 600;
	position: relative;
	z-index: 1;
}
.service .ser_01 dl dt::before{
	content: "";
	height: 20%;
	background-color: #FFFF00;
	position: absolute;
	left: 0;
	right: -10px;
	bottom: 0;
	z-index: -1;
}
.service .ser_01 dl dd { margin-top: 10px; }
.service .ser_01 dl dd ul {
	margin-top: 20px;
	list-style: none;
}
.service .ser_01 dl dd ul li {
	padding: 20px 10px 20px 20px;
	display: flex;
	gap: 20px;
	border-bottom: 1px solid #000;
	align-items: center;
}
.service .ser_01 dl dd ul li:first-child { border-top: 1px solid #000; }
.service .ser_01 dl dd ul li > p {
	width: 90px;
	font-size: 2.4rem;
	font-weight: 600;
}
.service .ser_01 dl dd ul li > .image {
    width: 90px;
    height: 65px;
    overflow: hidden;
}
.service .ser_01 dl dd ul li > .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service .ser_01 dl dd ul li > div p {
	font-size: 1.6rem;
	font-weight: 600;
}
.service .ser_01 dl dd ul li > div p:first-child {
	display: flex;
	gap: 8px;
	align-items: self-start;
}
.service .ser_01 dl dd ul li > div p:last-child { line-height: 3.6rem; }
.service .ser_01 dl dd ul li > div p .attention { font-size: 1.2rem; }
.service .ser_01 dl dd ul li > div p .price {
	padding-right: 4px;
	font-size: 3.6rem;
	font-family: 'Oswald';
}
.service .ser_01 dl dd ul li > div p .price span { font-family: "Noto Sans JP", sans-serif; }

/* service02 */
.service .ser_02 .text_box > div { margin-top: 40px; }
.service .ser_02 ul {
	margin-top: 20px;
	list-style: none;
}
.service .ser_02 ul li {
	padding: 20px 10px 20px 20px;
	display: flex;
	gap: 20px;
	border-bottom: 1px solid #000;
	align-items: center;
}
.service .ser_02 ul li:first-child { border-top: 1px solid #000; }
.service .ser_02 ul li > p {
	width: 90px;
	font-size: 2.4rem;
	font-weight: 600;
}
.service .ser_02 ul li > div p {
	font-size: 1.6rem;
	font-weight: 600;
}
.service .ser_02 ul li > div p:first-child {
	display: flex;
	gap: 8px;
	align-items: self-start;
}
.service .ser_02 ul li > div p:last-child { line-height: 3.6rem; }
.service .ser_02 ul li > div p .attention { font-size: 1.2rem; }
.service .ser_02 ul li > div p .price {
	padding-right: 4px;
	font-size: 3.6rem;
	font-family: 'Oswald';
}
.service .ser_02 ul li > div p .price span { font-family: "Noto Sans JP", sans-serif; }

/* service03-04 */
.service .ser_03 .text_box > div ,
.service .ser_04 .text_box > div { margin-top: 40px; }
.service .ser_03 .price-text ,
.service .ser_04 .price-text {
	margin: 20px;
	padding-bottom: 10px;
	line-height: 2rem;
	font-weight: 600;
}
.service .ser_03 .price-text > div ,
.service .ser_04 .price-text > div {
	display: flex;
	gap: 6px;
	justify-content: center;
	align-items: flex-end;
}
.service .ser_03 .price-text > div p:first-child ,
.service .ser_04 .price-text > div p:first-child { text-align: end; }
.service .ser_03 .price-text > div p:last-child ,
.service .ser_04 .price-text > div p:last-child {
	margin-bottom: -8px;
	line-height: 3.6rem;
}
.service .ser_03 .price-text > div p .attention ,
.service .ser_04 .price-text > div p .attention { font-size: 1.2rem; }
.service .ser_03 .price-text > div p .price ,
.service .ser_04 .price-text > div p .price {
	padding-right: 4px;
	font-size: 3.6rem;
	font-family: 'Oswald';
}
.service .ser_03 .price-text > div p .price span ,
.service .ser_04 .price-text > div p .price span { font-family: "Noto Sans JP", sans-serif; }
.service .ser_03 .price-text > p ,
.service .ser_04 .price-text > p {
	margin-top: 10px;
	text-align: center;
	font-size: 1.2rem;
}

/* service05 */
.service .ser_05 .text_box > div { margin-top: 40px; }
.service .ser_05 .price-text {
	margin: 20px;
	padding-bottom: 10px;
	line-height: 2rem;
	font-weight: 600;
}
.service .ser_05 .price-text ul { list-style: none; }
.service .ser_05 .price-text ul li + li { margin-top: 40px;  }
.service .ser_05 .price-text ul li div {
	display: flex;
	gap: 6px;
	justify-content: center;
	align-items: flex-end;
}
.service .ser_05 .price-text ul li div p:first-child { text-align: end; }
.service .ser_05 .price-text ul li div p:last-child {
	margin-bottom: -8px;
	line-height: 3.6rem;
}
.service .ser_05 .price-text ul li div p .attention { font-size: 1.2rem; }
.service .ser_05 .price-text ul li div p .price {
	padding-right: 4px;
	font-size: 3.6rem;
	font-family: 'Oswald';
}
.service .ser_05 .price-text ul li div p .price span { font-family: "Noto Sans JP", sans-serif; }
.service .ser_05 .price-text ul li p {
	margin-top: 10px;
	text-align: center;
	font-size: 1.2rem;
}

/* special-Notice */
.service .service-inner > p {
	margin-top: 40px;
	text-align: center;
	color: #fff;
	font-size: 1.4rem;
}
/* special-btn */
.service .special-btn {
	margin-top: 40px;
	padding-top: 40px;
	border-top: 1px solid #fff;
	text-align: center;
}
.service .special-btn .text {
	display: inline-block;
	color: #fff;
	font-weight: 600;
	line-height: 2.7rem;
	position: relative;
}
.service .special-btn .text::before {
	content: "";
	width: 40px;
	height: 90%;
	background: #fff;
	clip-path: polygon(20% 0, 0 0, 80% 100%);
	position: absolute;
	top: 5px;
	left: -25px;
}
.service .special-btn .text::after {
	content: "";
	width: 40px;
	height: 90%;
	background: #fff;
	clip-path: polygon(100% 0, 80% 0, 20% 100%);
	position: absolute;
	top: 5px;
	right: -25px;
}
.service .special-btn .btn-box {
	max-width: 400px;
	width: 100%;
	margin: 0 auto;
}
.service .special-btn .btn-box a:hover { opacity: 0.7; }

@media screen and (min-width:800px){
	.service .special-btn .btn-box  { margin-top: -15px; }
}


@media screen and (max-width:880px){
	.service .service-inner { padding: 40px 20px 120px; }
}
/*========/ Instagram /========*/
.Instagram {
	margin-top: 60px;
	padding: 0 40px;
}
.Instagram > div { margin-top: 40px; }

@media screen and (max-width:880px){
	.Instagram { padding: 0 20px; }
}
/*========/ promise /========*/
.promise {
	margin-top: 110px;
	background-color: #F4F4F4;
	position: relative;
	transform: skewY(10deg);
    transform-origin: top left;
}
.promise .top-h2::first-letter { color: #F4F4F4; }
.promise::before,
.promise::after {
	content: "";
	width: 100%;
	height: 1px;
	background-color: var(--red);
	position: absolute;
	left: 0;
}
.promise::before { top: -25px; }
.promise::after {
	top: 10px;
	transform: skewY(-20deg);
}
.promise .promise-inner {
	padding: 100px 40px 80px;
	transform: skewY(-10deg);
}
.promise .promise-inner > p { margin-top: 40px; }
.promise .promise-inner ul {
	margin-top: 40px;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: space-between;
	list-style: none;
}
.promise .promise-inner ul li {
	width: calc((100% / 2) - 50px);
	padding: 20px;
	background-color: #fff;
	border-radius: 8px;
}
.promise .promise-inner ul li .promise-icon {
    width: 55px;
    height: 55px;
	margin: 0 auto 20px;
    display: block;
    vertical-align: middle;
	background-color: #000;
    border-radius: 50%;
	position: relative;
}
.promise .promise-inner ul li .promise-icon::after {
	color: #fff;
	font-size: 3rem;
	font-family: 'icomoon';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.promise .promise-inner ul li .icon-promise-01::after { content: "\e901"; }
.promise .promise-inner ul li .icon-promise-02::after { content: "\e902"; }
.promise .promise-inner ul li .icon-promise-03::after { content: "\e903"; }
.promise .promise-inner ul li .icon-promise-04::after { content: "\e904"; }
.promise .promise-inner ul li .icon-promise-05::after { content: "\e905"; }
.promise .promise-inner ul li .icon-promise-06::after {
	content: "\e906";
	font-size: 20px;
}
.promise .promise-inner ul li .copy {
	text-align: center;
	font-size: 1.8rem;
	line-height: 2.6rem;
	font-weight: 600;
}
.promise .promise-inner ul li .text {
	min-height: 110px;
	margin-top: 10px;
	font-size: 1.4rem;
	line-height: 2rem;
}


@media screen and (max-width:880px){
	.promise .promise-inner { padding: 100px 20px 80px; }
}

/*========/ works /========*/
.works {
	background-color: var(--red);
	transform: skewY(10deg);
    transform-origin: top left;
}
.works .works-inner {
	padding: 80px 0px;
	transform: skewY(-10deg);
}
.works .top-h2 {
	padding: 0 40px;
	color: #fff;
}
.works .top-h2::first-letter {
  color: var(--red);
  text-shadow:
    -1px -1px 0 #fff,
    1px -1px 0 #fff,
    -1px 1px 0 #fff,
    1px 1px 0 #fff,
    0 0 2px #fff;
}
.works .top-h2 span { color: #fff; }

/* スライダー */
.works .works-slider {
	margin: 40px 0;
}
.works .works-slider .splide__slide {
	padding: 25px;
	border-radius: 10px;
	background-color: #fff;
}
.works .works-slider .splide__slide > p {
	margin-bottom: 20px;
	text-align: center;
	font-size: 2rem;
	font-weight: 600;
}
.works .works-slider .splide__slide .works-before .text,
.works .works-slider .splide__slide .works-after .text {
	width: 90px;
	height: 35px;
	padding-left: 20px;
	display: flex;
    align-items: anchor-center;
	color: #fff;
	font-size: 1.6rem;
	font-weight: 800;
	font-style: italic;
	font-family: "Noto Sans JP", sans-serif;
	background-color: #000;
	position: relative;
	left: -5px;
}
.works .works-slider .splide__slide .works-after .text { background-color: var(--red); }
.works .works-slider .splide__slide .works-before .text::after {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	right: -20px;
	border-right: 20px solid transparent;
	border-top: 35px solid #000;
}
.works .works-slider .splide__slide .works-after .text::after {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	right: -20px;
	border-right: 20px solid transparent;
	border-top: 35px solid var(--red);
}
.works .works-slider .splide__slide div .image {
	width: 100%;
	height: 200px;
	margin-top: -25px;
	border-radius: 10px;
	overflow: hidden;
}
.works .works-slider .splide__slide div .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.works .works-slider .splide__slide .works-before {
	margin-bottom: 60px;
	position: relative;
}
.works .works-slider .splide__slide .works-before::after {
    content: "";
    width: 140px;
    height: 60px;
    margin: auto;
    background: url(../../img/works-arrow.svg) no-repeat center;
    background-repeat: no-repeat;
    background-size: contain;
	position: absolute;
	left: 50%;
	bottom: -60px;
	transform: translateX(-50%);
}

/* スライダー矢印 */
.works .works-slider .button {
	width: 40px;
	height: 40px;
	top: 56%;
	opacity: 1;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
/* 矢印共通 */
.works .works-slider button::before {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
	color: #fff;
    border-radius: 50%;
    vertical-align: middle;
	font-size: 1.2rem;
	font-family: 'icomoon';
	background-color: #000;
}
/* 前の矢印 */
.works .works-slider .prev::before { content: "\a903"; }
/* 次の矢印 */
.works .works-slider .next::before { content: "\a904"; }

.works .common-btn { padding: 0 40px; }


@media screen and (max-width:880px){
	.works .top-h2 { padding: 0 20px; }
	.works .common-btn { padding: 0 20px; }
}
/*========/ workflow /========*/
.workflow {
	margin-bottom: 80px;
	background-color: #F4F4F4;
	transform: skewY(10deg);
    transform-origin: top left;
}
.workflow .workflow-inner {
	padding: 80px 0 30px;
	transform: skewY(-10deg);
}
.workflow .top-h2::first-letter { color: #F4F4F4; }
.workflow h2 { padding: 0 40px; }
.workflow ol {
	padding: 0 40px;
	margin-top: 40px;
	list-style: none;
}
.workflow ol li {
	display: flex;
	gap: 10px;
}
.workflow ol li h3 {
	min-width: 70px;
	width: 70px;
	max-height: 70px;
	height: 70px;
	display: flex;
	flex-direction: column;
	border-radius: 50%;
	box-sizing: border-box;
	justify-content: center;
	align-items: center;
	color: #fff;
	text-align: center;
	font-size: 1.5rem;
	line-height: 2.4rem;
	font-weight: 600;
	font-family: 'Oswald';
	background-color: var(--red);
	position: relative;
	z-index: 10;
}
.workflow ol li h3 span{
	display: block;
	font-size: 2.6rem;
	font-weight: 400;
}
.workflow ol li dl {
	width: 100%;
	padding-bottom: 30px;
	position: relative;
}
.workflow ol li dl::before {
    content: "";
    width: 1px;
    height: 100%;
    display: block;
    background: var(--red);
    position: absolute;
    left: -45px;
    top: 0;
}
.workflow ol li dl dt {
	color: var(--red);
	font-size: 2.2rem;
	font-weight: 600;
}
.workflow ol li dl dd { margin-top: 5px; }
.workflow ol li dl dd > p { line-height: 2.2rem; }
.workflow ol li dl dd > div { margin-top: 20px; }
.workflow ol li dl dd > div p {
	padding-bottom: 5px;
	font-size: 1.8rem;
	font-weight: 600;
}
.workflow ol li dl dd > div ul li + li { margin-top: 10px; }
.workflow ol li dl dd > div ul li a {
	width: 100%;
	min-height: 60px;
	padding: 0 50px 0 15px;
	display: inline-flex;
	border: 1px solid #ABABAB;
	border-radius: 10px;
	align-items: center;
	color: #000;
	font-size: 1.6rem;
	font-family: "Noto Sans JP", sans-serif;
	background-color: #fff;
	position: relative;
}
.workflow ol li dl dd > div ul li a::after {
	content: "\a901"; /* IcoMoonのコードを使う */
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
	color: #fff;
    border-radius: 50%;
    vertical-align: middle;
	font-size: 0.8rem;
	font-family: 'icomoon'; /* IcoMoonのフォント名 */
	background-color: #000;
	position: absolute;
    right: 16px;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}
.workflow ol li dl dd > div ul .tel-btn a span { color: var(--red); }
.workflow ol li dl dd > div ul .line-btn a span { color: #4CC764; }
.workflow .image {
	width: calc(100% - 40px);
	height: 220px;
	margin-top: 100px;
	display: block;
	overflow: hidden;
	transform: skewY(-10deg);
	transform-origin: bottom left;
}
.workflow ol li dl dd > div ul li a:hover::after { background-color: var(--red); }
.workflow .image img {
	width: 100%;
	height: 100%;
	min-height: 220px;
	object-fit: cover;
	transform: skewY(10deg) scale(1.5);
}


@media screen and (max-width:880px){
	.workflow h2 { padding: 0 20px; }
	.workflow .image { width: calc(100% - 20px); }
	.workflow ol { padding: 0 20px; }
}
/*========/ area /========*/
.area { padding: 0 40px; }
.area .area-block { margin-top: 40px; }
.area .area-block h3 {
	font-size: 2rem;
	font-weight: 600;
}
.area .area-block .area-list {
	margin-top: 10px;
	list-style: none;
}
.area .area-block .area-list li {
	display: inline;
	line-height: 3rem;
}
.area .area-block .area-list li + li::before { content: ' / '; }
.area .area-block .shop-list {
	margin-top: 20px;
	position: relative;
}
.area .area-block .shop-list section:first-child { border-top: 1px solid #C0C0C0; }
.area .area-block .shop-list section {
	padding: 5px 0;
	border-bottom: 1px solid #C0C0C0;
}
.area .area-block .shop-list section h4 {
	width: calc(100% - 160px);
	margin: 5px 0;
	display: flex;
	align-items: center;
	color: var(--red);
	font-size: 2rem;
	font-weight: 600;
}
.area .area-block .shop-list section h4 a {
	color: var(--red);
	line-height: normal;
	font-weight: 600;
	position: relative;
}
.area .area-block .shop-list section h4 a::before {
	content: "";
	width: 0;
	height: 1px;
	background: var(--red);
	position: absolute;
	left: 0;
	bottom: -3px;
	transition: 0.3s;
}
.area .area-block .shop-list section h4 a:hover::before { width: 100%; }
.area .area-block .shop-list section h4 span {
    display: inline-block;
    width: 24px;
    height: 24px;
	margin-right: 8px;
    line-height: 24px;
    text-align: center;
    color: #fff;
    border-radius: 50%;
    background-color: var(--red);
    font-weight: bold;
    font-size: 1.6rem;
    vertical-align: middle;
}
.area .area-block .shop-list section .shop-info {
	width: calc(100% - 160px);
	color: #000;
	line-height: 2.4rem;
	font-family: "Noto Sans JP", sans-serif;
}
.area .area-block .shop-list section .shop-info a { color: #000; }
.area .area-block .shop-list section .shop-info a:hover { color: var(--red); }
.area .area-block .shop-list .area-image {
    position: absolute;
	top: 50%;
	left: auto;
	right: 0;
	transform: translateY(-50%);
}
.area .area-block .shop-list .area-image img {
	max-width: 160px;
	max-height: 220px;
}

@media screen and (max-width:880px){
	.area { padding: 0 20px; }
}