@charset "utf-8";


/* RESET */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:'';content:none}table{border-collapse:collapse;border-spacing:0}

*:focus {outline:0;}

/* padding,border内側設定 */
*{box-sizing:border-box;}

/* HTML5 */
article, aside, figure, figcaption, footer, header, nav, section{display: block;}

/*------------------------------------------------------------
	BASE
------------------------------------------------------------*/

html,body {margin:0px;padding:0px;height:100%;width:100%;-webkit-text-size-adjust:none;}

a:link {color:inherit;text-decoration:none;}
a:hover {color:inherit;text-decoration:none;}
a:active {color:inherit;text-decoration:none;}
a:visited {color:inherit;text-decoration:none;}


img, video, iframe {max-width: 100%;height: auto;vertical-align: bottom;}


:root {
	--brown: #b98700;
	--grey1: #fafafa;
	--grey2: #f8f8f8;
	--grey3: #f4f4f4;
	--grey4: #f0f0f0;
	--grey5: #ececec;
	--grey6: #e5e5e5;
	--grey7: #d6d6d6;
	--grey8: #b4b4b4;
	--grey9: #8c8c8c;
	--grey10: #606060;
	--black: #282828;
	--white: #fff;
	--crimson: 'Crimson Text', serif;
	--mont: 'Montserrat', sans-serif;
	--bizm: 'BIZ UDPMincho', serif;
	--serif: "Noto Serif JP", serif;
	--gothic: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "MS Pゴシック", "MS PGothic", sans-serif;
}

body {
	font-family: var(--gothic);
	font-size: 12px;
	font-weight: 400;
	color: var(--black);
	line-height: 2;
	position: relative;
	z-index: 100;
	width: 100%;
	height: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	word-wrap : break-word;
	overflow-wrap : break-word;
}

.pcb {display: block;}
.spb {display: none;}
.pcf {display: flex;}
.spf {display: none;}
.pcg {display: grid;}
.spg {display: none;}
.pcib {display: inline-block;}
.spib {display: none;}
.pcif {display: inline-flex;}
.spif {display: none;}
.pcig {display: inline-grid;}
.spig {display: none;}

@media screen and (max-width: 800px) {
	.spb {display: block;}
	.pcb {display: none !important;}
	.spf {display: flex;}
	.pcf {display: none !important;}
	.spg {display: grid;}
	.pcg {display: none !important;}
	.spib {display: inline-block;}
	.pcib {display: none !important;}
	.spif {display: inline-flex;}
	.pcif {display: none !important;}
	.spig {display: inline-grid;}
	.pcig {display: none !important;}
}


/*------------------------------------------------------------
	COMMON
------------------------------------------------------------*/




.btn-contact {
	position: fixed;
	top: 30px;
	right: 30px;
	z-index: 100;
	transition: 0.5s;
}
.btn-contact .inner {
	display: flex;
	gap: 20px;
	opacity: 0;
	transition: 0.5s;
/*
	animation: fadeIn 0.5s linear 0.5s forwards;
*/
}
.showbtn .btn-contact .inner {
	opacity: 1;
}
.hiddenbtn .btn-contact {
	opacity: 0;
	visibility: hidden;
}
.btn-contact a {
	text-align: center;
	position: relative;
	display: flex;
	width: 220px;
	height: 52px;
	color: var(--white);
	background: var(--brown);
	border: 1px solid var(--brown);
	z-index: 2;
	font-size: 15px;
	font-weight: 700;
	line-height: 22px;
	letter-spacing: -0.04em;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: 0.3s;
}
.btn-contact a:hover {
	color: var(--brown);
	background: var(--white);
}


.btn-contact a span {
	position: relative;
	display: inline-block;
	padding-left: 17px;
	z-index: 1;
}
.btn-contact a span::before {
	content: '';
	display: block;
	border-style: solid;
	border-width: 7px 4px 0 4px;
	border-color: currentcolor transparent transparent transparent;
	position: absolute;
	top: 7px;
	left: 0;
}

@media screen and (max-width: 800px) {
	.btn-contact {
		width: 100%;
		top: auto;
		bottom: 0;
		right: 0;
		height: 40px;
	}
	.btn-contact a {
		width: 100%;
		height: 40px;
	}
	.btn-contact a.label0 {
		display: none;
	}
	.btn-contact a:hover {
		color: var(--white);
		background: var(--brown);
	}
	.btn-contact a:first-child {
		display: none;
	}
	

}


/*------------------------------------------------------------
	HEADER
------------------------------------------------------------*/

#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index:1000;
}

#header .logo {
	position: absolute;
	left: 30px;
	top: 30px;
	display: block;
}
#header .logo img {
	width: auto;
	height: 70px;
}
#header .tel {
	display: none;
	position: absolute;
	top: 30px;
	right: 30px;
	line-height: 1;
	font-size: 28px;
	font-family: var(--crimson);
	text-align: right;
}
#header .tel a {
	display: block;
}
#header .tel img {
	width: 24px;
	height: 24px;
	margin-right: 4px;
	vertical-align: -4px;
}
#header .tel span {
	display: block;
	font-size: 14px;
	line-height: 1;
}


@media screen and (max-width: 800px) {
	#header .logo {
		left: 12px;
		top: 12px;
	}

	#header .logo img {
		height: 38px;
	}
	#header .tel {
		right: 12px;
		top: 10px;
		font-size: 18px;
	}
	#header .tel img {
		width: 16px;
		height: 16px;
		margin-right: 2px;
	}
	#header .tel span {
		font-size: 10px;
	}
}

/*------------------------------------------------------------
	FOOTER
------------------------------------------------------------*/


#footer {
	width:100%;
	position: relative;
	z-index: 2;
	background: #fff;
}
#footer .footer-wrap {
	padding: 60px 50px;
	font-family: var(--mont);
	font-weight: 500;
	font-size: 11px;
	line-height: 18px;
}
#footer .footer-wrap .copyright {
	font-size: 9px;
	line-height: 18px;
}
#footer .footer-wrap .logo {
	display: inline-block;
	margin-bottom: 20px;
	transition: 0.3s;
}
#footer .footer-wrap .logo:hover {
	opacity: 0.6;
}
#footer .footer-wrap .logo img {
	height: 50px;
	width: auto;
}
@media screen and (max-width: 800px) {
	#footer .footer-wrap {
		padding: 60px 26px;
		font-size: 10px;
	}
}

/*------------------------------------------------------------
	MV
------------------------------------------------------------*/


#mv {
	width: 100%;
	position: relative;
	z-index: 2;
	background: #fff;
}
#mv .mv-wrap {
	position: relative;
	width: 100%;
	overflow: hidden;
}
#mv .mv-wrap .bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	min-width: 1000px;
}
#mv .mv-wrap .txt {
	position: relative;
	z-index: 1;
	text-align: center;
	padding: 230px 30px 120px;
}
#mv .mv-wrap .txt h1 {
	font-family: var(--bizm);
	font-size: 48px;
	font-weight: 400;
	line-height: 1.4;
	letter-spacing: -0.04em;
}
#mv .mv-wrap .txt h2 {
	font-family: var(--bizm);
	font-size: 30px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.05em;
	margin-bottom: 40px;
}
#mv .mv-wrap .txt .btn {
	margin-top: 100px;
}
#mv .mv-wrap .txt .btn p {
	font-family: var(--bizm);
	font-size: 18px;
	line-height: 1;
	font-weight: 400;
	letter-spacing: 0.05em;
	margin-bottom: 20px;
}
#mv .mv-wrap .txt .btn a {
	font-size: 15px;
	line-height: 24px;
	font-weight: 700;
	letter-spacing: -0.05em;
	background-color: var(--brown);
	color: var(--white);
	border: 1px solid var(--brown);
	width: 276px;
	padding: 12px 0;
	display: inline-block;
	transition: 0.3s;
}
#mv .mv-wrap .txt .btn a:hover {
	background-color: var(--white);
	color: var(--brown);
}
@media screen and (max-width: 800px) {
	#mv .mv-wrap .bg {
		top: 50px;
		left: calc(-100vw * 26 / 375);
		width: calc(100vw * 1202 / 375);
		max-width: calc(100vw * 1202 / 375);
	}
	#mv .mv-wrap .txt {
		padding: 140px 23px 200px;
	}
	#mv .mv-wrap .txt h1 {
		font-size: 38px;
		line-height: 54px;
	}
	#mv .mv-wrap .txt .btn p {
		font-size: 16px;
		line-height: 1;
		white-space: nowrap;
	}
	#mv .mv-wrap .txt h2 {
		font-size: 20px;
		line-height: 1;
		margin-bottom: 30px;
	}
	#mv .mv-wrap .txt .btn {
		margin-top: 60px;
	}
}
/*------------------------------------------------------------
	MAIN
------------------------------------------------------------*/
#main {
	position: relative;
	z-index: 2;
	background: #fff;
}

#logo-1 {
	background: var(--grey1);
}
#logo-1 .logo-1-wrap {
	padding: 60px 0 54px;
}
#logo-1 .logo-list {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
}
.our-client {
	font-size: 20px;
	line-height: 1.3;
	letter-spacing: -0.03em;
	color: var(--grey9);
	margin: 0 0 40px;
	text-align: center;
	font-family: var(--crimson);
}
.our-client::before {
	content: '';
	display: inline-block;
	height: 1px;
	width: 60px;
	background: var(--grey7);
	margin-right: 10px;
	vertical-align: middle;
}
.our-client::after {
	content: '';
	display: inline-block;
	height: 1px;
	width: 60px;
	background: var(--grey7);
	margin-left: 10px;
	vertical-align: middle;
}

.B-title {
	font-family: var(--bizm);
	font-size: 24px;
	line-height: 38px;
	display: flex;
	align-items: center;
	gap: 10px;
	justify-content: center;
	text-align: center;
	margin-bottom: 80px;
}
.B-title::after {
	content: '';
	display: block;
	width: 60px;
	height: 1px;
	background: var(--brown);
}
.B-title::before {
	content: '';
	display: block;
	width: 60px;
	height: 1px;
	background: var(--brown);
}
.B-subtitle {
	font-family: var(--bizm);
	font-size: 30px;
	line-height: 56px;
	text-align: center;
	text-decoration: underline;
	text-underline-offset: 15px;
	text-decoration-color: var(--brown);
	text-decoration-thickness: 1px;
	margin-bottom: 80px;
}
.B-title + .B-subtitle {
	margin-top: -40px;
}


@media screen and (max-width: 800px) {
	#logo-1 .logo-1-wrap {
		padding: 30px 0;
	}
	#logo-1 .logo-list {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
	}
	.our-client {
		margin-bottom: 20px;
	}
	.B-title {
		font-size: 20px;
		line-height: 30px;
		margin-bottom: 40px;
	}
	.B-title::after {
		width: 40px;
	}
	.B-title::before {
		width: 40px;
	}
	.B-subtitle {
		font-family: var(--bizm);
		font-size: 26px;
		line-height: 50px;
		text-align: center;
		text-decoration: underline;
		text-underline-offset: 15px;
		text-decoration-color: var(--brown);
		text-decoration-thickness: 1px;
		margin-bottom: 50px;
	}
	.B-title + .B-subtitle {
		margin-top: -20px;
	}
}

#client {
	padding: 40px 0 0;
	width: 100%;
	overflow: hidden;
}
#client .title {
	text-align: center;
	font-family: var(--bizm);
	margin-bottom: 100px;
}
#client .title h2 {
	font-family: var(--serif);
	font-size: 24px;
	line-height: 34px;
	display: flex;
	align-items: flex-start;
	gap: 30px;
	white-space: nowrap;
	justify-content: center;
}
#client .title h2 span {
	padding-top: 54px;
}
#client .title h2 big {
	display: block;
	font-size: 100px;
	line-height: 1.44;
	position: relative;
}
#client .title h2 + p {
	font-size: 16px;
	line-height: 30px;
	margin-top: 20px;
}
#client .client-voice {
	max-width: 987px;
	padding: 0 30px;
	margin: auto;
	font-family: var(--bizm);
}
#client .client-voice li {
	display: grid;
	grid-template-columns: 310px auto;
	gap: 50px;
}
#client .client-voice li:not(:first-child) {
	margin-top: 100px;
}

#client .client-voice li:nth-child(odd) {
	direction: rtl;
}
#client .client-voice li .txt {
	direction: ltr;
}
#client .client-voice li .txt h4 {
	font-size: 13px;
	line-height: 24px;
	letter-spacing: 0.05em;
	padding-bottom: 1em;
	margin-bottom: 24px;
	position: relative;
}
#client .client-voice li .txt h4::before {
	content: '';
	display: block;
	height: 1px;
	width: calc(100% + 50px);
	background: var(--grey7);
	position: absolute;
	bottom: 0;
	left: -50px;
}
#client .client-voice li:nth-child(odd) .txt h4::before {
	left: 0;
}
#client .client-voice li .txt h4::after {
	content: '';
	display: block;
	height: 1px;
	width: 100vw;
	background: var(--brown);
	position: absolute;
	bottom: 0;
	left: 100%;
}
#client .client-voice li:nth-child(odd) .txt h4::after {
	left: auto;
	right: 100%;
}

#client .client-voice li .txt h3 {
	font-size: 24px;
	line-height: 34px;
	color: var(--brown);
	margin-bottom: 20px;
}
#client .client-voice li .txt p {
	font-size: 13px;
	line-height: 24px;
	letter-spacing: 0.05em;
}
#client .our-client {
	font-size: 20px;
	line-height: 1.3;
	letter-spacing: -0.03em;
	color: var(--grey9);
	margin: 100px 0 50px;
	text-align: center;
	font-family: var(--crimson);
}
#client .our-client::before {
	content: '';
	display: inline-block;
	height: 1px;
	width: 60px;
	background: var(--grey7);
	margin-right: 10px;
	vertical-align: middle;
}
#client .our-client::after {
	content: '';
	display: inline-block;
	height: 1px;
	width: 60px;
	background: var(--grey7);
	margin-left: 10px;
	vertical-align: middle;
}
.logo-carousel.reverse {
	margin-top: 10px;
}
.logo-carousel .logo-carousel-list {
	display: block;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
	height: 82px;
	position: relative;
}
.logo-carousel .logo-carousel-item {
	white-space: nowrap;
	position: absolute;
	top: 0;
	left: 0;
	width: auto;
	animation: carousel linear infinite;
}
.logo-carousel.reverse .logo-carousel-item {
	animation-direction: reverse;
}
.logo-carousel .logo-carousel-item img {
	display: inline-block;
	width: 112px;
	max-width: none;
	height: 70px;
	object-fit: contain;
	margin-right: 25px;
}
#logo-1 .logo-carousel.reverse {
	margin-top: 10px;
}

#logo-1 .logo-carousel .logo-carousel-list {
	height: 70px;
}
#logo-1 .logo-carousel .logo-carousel-item {
	background: var(--grey1);
}
#logo-1 .logo-carousel .logo-carousel-item img {
	width: 112px;
	height: 70px;
	margin-right: 25px;
	mix-blend-mode: multiply;
}

@keyframes carousel {
	0% { transform: translateX(300%); }
	100% { transform: translateX(-100%)}
}


#client .diff-title {
	font-family: var(--bizm);
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	margin-top: 120px;
	margin-bottom: 60px;
	font-size: 24px;
	line-height: 1;
	gap: 10px;
}
#client .diff-title::before,
#client .diff-title::after {
	content: '';
	height: 1px;
	width: 60px;
	display: inline-block;
	background: var(--brown);
}
#client .scrollx {
	width: 100%;
	overflow: scroll;
	padding: 0 26px 40px;
}
#client .diff-list {
	width: 100%;
	min-width: 893px;
	display: flex;
	gap: 32px;
	justify-content: center;
}
#client .diff-list li {
	max-width: 352px;
	min-width: 281px;
	padding: 49px 29px 29px;
	background: var(--grey4);
	border: 1px solid var(--grey4);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
}
#client .diff-list li.comp {
	background: var(--white);
	border: 1px solid var(--brown);
}
#client .diff-list li h2 {
	height: 84px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--bizm);
	font-size: 24px;
	line-height: 34px;
	text-align: center;
}
#client .diff-list li h2 img {
	width: 121px;
}
#client .diff-list li * + .txt {
	margin-top: 43px;
}
#client .diff-list .txt {
	font-family: var(--bizm);
}
#client .diff-list .txt h3 {
	font-size: 18px;
	line-height: 1;
	padding-bottom: 8px;
	margin-bottom: 20px;
	position: relative;
}
#client .diff-list .txt h3::after {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	background: var(--grey8);
	position: absolute;
	bottom: 0;
	left: 0;
}
#client .diff-list .txt p {
	font-size: 13px;
	line-height: 24px;
}
#client .diff-list .txt p.price {
	font-size: 18px;
	line-height: 34px;
	text-align: center;
}
#client .diff-list .txt p.price strong {
	font-size: 24px;
	font-family: var(--bizm);
	font-weight: 400;
}

@media screen and (max-width: 800px) {
	#client {
		padding: 100px 0 0;
	}
	#client .title h2 {
		flex-direction: column;
		text-align: center;
		justify-content: center;
		align-items: center;
		gap: 0;
	}
	#client .title h2 span {
		padding: 0;
		font-size: 26px;
		line-height: 32px;
	}
	#client .title h2 big {
		font-size: 80px;
		line-height: 111px;
		margin-top: -13px;
	}
	#client .title h2 + p {
		margin-top: 10px;
		font-size: 13px;
		line-height: 24px;
		text-align: left;
		padding: 0 26px;
		letter-spacing: 0.05em;
	}

	#lplogos .logo-wrap {
		padding: 55px 0;
	}
	#logo-1 .logo-carousel .logo-carousel-list {
		height: 70px;
	}
	#logo-1 .logo-carousel .logo-carousel-item img {
		width: 112px;
		height: 70px;
		margin-right: 20px;
	}
	#client .diff-title {
		margin-top: 100px;
		font-size: 20px;
		line-height: 1.5;
		margin-bottom: 40px;
	}
	#client .diff-title::before, #client .diff-title::after {
		width: 46px;
	}
	#client .diff-list {
		gap: 25px;
	}
	#client .diff-list li {
		padding: 39px 23px 29px;
		gap: 20px;
	}
	#client .diff-list li h2 {
		height: 67px;
		font-size: 19px;
		line-height: 27px;
	}
	#client .diff-list li h2 img {
		width: 96px;
	}
	#client .diff-list li * + .txt {
		margin-top: 33px;
	}
	#client .diff-list .txt h3 {
		font-size: 14px;
		padding-bottom: 7px;
		margin-bottom: 16px;
	}
	#client .diff-list .txt p.price {
		font-size: 14px;
		line-height: 27px;
	}
	#client .diff-list .txt p.price strong {
		font-size: 19px;
	}
	#client .client-voice {
		padding: 0 26px;
	}
	#client .client-voice li {
		grid-template-columns: 1fr;
		gap: 0;
	}
	#client .client-voice li .txt .pic {
		text-align: center;
		margin-bottom: 25px;
	}
	#client .client-voice li .txt .pic img {
		width: 236px;
	}
	#client .client-voice li .txt h3 {
		font-size: 20px;
		line-height: 1.5;
	}
	#client .client-voice li:not(:first-child) {
		margin-top: 60px;
	}
	#client .client-voice li .txt h4::before {
		left: 0;
	}
	#client .client-voice li .txt h4::after {
		left: auto;
		right: 100%;
	}
	#client .client-voice li:nth-child(odd) {
		direction: ltr;
	}
}

#process {
	padding: 140px 0;
}
#process .process-item.last {
	background: #B987001a;
}
#process .process-item .inner {
	max-width: 988px;
	margin: auto;
	display: grid;
	grid-template-columns: 82px auto;
	gap: 50px;
	position: relative;
	align-items: flex-start;
	overflow: hidden;
	padding: 0 30px 80px;
}
#process .process-item.last .inner {
	padding: 100px 30px;
}
#process .process-item .inner::before {
	content: '';
	position: absolute;
	top: 1px;
	left: 71px;
	width: 1px;
	height: 100%;
	background: var(--brown);
}
#process .process-item.last .inner::before {
	top: auto;
	bottom: calc(100% - 100px - 81px);
}
#process .process-item .icon {
	position: relative;
	z-index: 1;
	height: 82px;
	border-radius: 50%;
	border: 1px solid var(--brown);
	background: var(--white);
	display: flex;
	align-items: center;
	justify-content: center;
}
#process .process-item .icon img {
	width: 41px;
}
#process .process-item .detail {
	font-family: var(--bizm);
}
#process .process-item .detail h4 {
	color: var(--brown);
	font-size: 16px;
	line-height: 1;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: .5em;
	margin-bottom: 1.75em;
}
#process .process-item .detail h3 {
	font-size: 24px;
	line-height: 1;
	margin-bottom: 40px;
}
#process .process-item .detail h3 small {
	font-size: 18px;
	margin-left: 12px;
}
#process .process-item .detail > p {
	font-size: 15px;
	line-height: 26px;
	letter-spacing: 0.05em;
}
#process .process-item .detail ul {
	margin-top: 40px;
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 25px;
}
#process .process-item .detail ul li {
	padding: 20px;
	min-height: 200px;
	background: var(--white);
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	font-size: 15px;
	line-height: 26px;
	letter-spacing: 0.05em;
}
#process .process-item .detail ul li h5 {
	width: 120px;
	height: 50px;
	border: 1px solid #b4b4b4;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media screen and (max-width: 800px) {
	#process {
		padding: 100px 0;
	}
	#process .process-item .inner {
		display: block;
		position: relative;
		padding: 0 26px 60px;
	}
	#process .process-item .inner::before {
		display: none;
	}
	#process .process-item .icon {
		position: absolute;
		top: 0;
		left: 26px;
		width: 50px;
		height: 50px;
	}
	#process .process-item .icon img {
		width: 25px;
	}
	#process .process-item .detail h4 {
		padding-left: 62px;
		padding-top: 14px;
		margin-bottom: 50px;
	}
	#process .process-item .detail h3 {
		font-size: 20px;
		margin-bottom: 30px;
	}
	#process .process-item .detail h3 small {
		font-size: 13px;
	}
	#process .process-item .detail > p {
		font-size: 13px;
		line-height: 24px;
	}
	#process .process-item .detail ul {
		grid-template-columns: 1fr;
		gap: 12px;
	}
	#process .process-item .detail ul li {
		box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
		gap: 16px;
		font-size: 13px;
		line-height: 22px;
		min-height: 0;
		padding: 22px 19px;
		justify-content: flex-start;
	}
	#process .process-item .detail ul li h5 {
		width: 95px;
		height: 33px;
	}
	#process .process-item .detail ul li p {
		font-family: var(--bizm);
		flex-grow: 1;
	}
	#process .process-item.last .inner {
		padding: 30px 26px;
	}
	#process .process-item.last .inner .icon {
		top: 30px;
	}
}




#story {
	padding: 100px 0 120px;
	background: #ededed;
}
#story .story-mv img {
	width: 100%;
}
#story .story-mv .txt {
	font-family: var(--serif);
	padding: 40px 30px 0;
	max-width: 1180px;
	margin: auto;
	position: relative;
	font-size: 15px;
	line-height: 26px;
}
#story .story-mv .txt .tag {
	text-align: right;
	position: absolute;
	top: 40px;
	right: 30px;
}
#story .story-mv .txt p {
	font-family: var(--bizm);
	letter-spacing: 0.05em;
	margin-top: 50px;
	width: 100%;
	max-width: 705px;
}
#story .content {
	max-width: 988px;
	margin: auto;
	padding: 0 30px;
}
#story .step {
	display: flex;
	flex-direction: column;
	gap: 70px;
	margin: 100px 0;
	font-family: var(--bizm);
}
#story .step li {
	display: grid;
	grid-template-columns: 348px auto;
}
#story .step li h3 {
	font-size: 24px;
	line-height: 1;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
#story .step li h3 span {
	color: var(--brown);
}
#story .step li p {
	font-size: 15px;
	line-height: 26px;
	letter-spacing: 0.05em;
}
#story .step li p + p {
	margin-top: 26px;
}
#story .logo {
	margin-bottom: 60px;
}
#story .logo-proposals p {
	font-family: var(--serif);
	font-size: 15px;
	line-height: 22px;
	margin-bottom: 30px;
}
#story .logo-proposals ul {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 26px;
}
#story .creative {
	font-family: var(--bizm);
	margin-top: 100px;
	display: grid;
	grid-template-columns: 348px auto;
}
#story .creative h3 {
	font-size: 24px;
	line-height: 40px;
}
#story .creative p {
	font-size: 15px;
	line-height: 26px;
	letter-spacing: 0.05em;
}
#story .creative p + p {
	margin-top: 26px;
}
#story .gallery {
	padding: 0 30px;
	max-width: 1180px;
	margin: 100px auto 120px;
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 20px 24px;
}

@media screen and (max-width: 800px) {
	#story {
		padding: 60px 0;
	}
	#story .story-mv .txt {
		padding: 20px 26px 0;
		font-size: 13px;
		line-height: 24px;
	}
	#story .story-mv .txt .tag {
		position: static;
		margin-top: 12px;
		text-align: left;
		display: block;
	}
	#story .story-mv .txt p {
		margin-top: 30px;
	}
	#story .content {
		padding: 0 26px;
	}
	#story .step {
		gap: 50px;
		margin: 70px 0;
	}
	#story .step li {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	#story .step li h3 {
		font-size: 20px;
		line-height: 1;
		gap: 16px;
	}
	#story .step li p {
		font-size: 13px;
		line-height: 24px;
	}
	#story .logo {
		margin-bottom: 20px;
	}
	#story .logo-proposals p {
		font-size: 13px;
		line-height: 19px;
		margin-bottom: 12px;
	}
	#story .logo-proposals ul {
		gap: 9px;
	}
	#story .creative {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	#story .creative h3 {
		font-size: 20px;
		line-height: 30px;
	}
	#story .creative p {
		font-size: 13px;
		line-height: 24px;
	}
	#story .gallery {
		margin: 70px 0 0;
		gap: 12px;
		grid-template-columns: 1fr;
	}
}

#diff {
	padding: 120px 0;
}
#diff .diff-list {
	max-width: 988px;
	margin: auto;
	padding: 0 30px;
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 30px;
}
#diff .diff-list li {
	background: rgb(244,244,244);
	padding: 40px;
	font-family: var(--bizm);
}
#diff .diff-list li h2 {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	height: 68px;
	font-size: 24px;
	line-height: 34px;
	margin-bottom: 20px;
}
#diff .grid {
	margin-top: 50px;
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 20px;
}
#diff .diff-list li {
	display: flex;
	flex-direction: column;
	gap: 20px;
	justify-content: space-between;
}
#diff .diff-list li .upper {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
#diff .diff-list li h3 {
	font-size: 18px;
	line-height: 26px;
	letter-spacing: 0.05em;
	padding-bottom: 8px;
	margin-bottom: 20px;
	border-bottom: 1px solid #b4b4b4;
}
#diff .diff-list li p {
	font-size: 15px;
	line-height: 26px;
}
#diff .diff-list li p.price {
	margin-top: -2px;
	font-size: 18px;
	line-height: 34px;
	text-align: center;
}
#diff .diff-list li p.price strong {
	font-size: 24px;
	line-height: 34px;
}


#diff .diff-list li.comp {
	grid-area: 1 / 1 / 2 / 3;
	background: var(--white);
	border: 2px solid var(--brown);
	box-shadow: 0px 0px 7.5px rgba(0, 0, 0, 0.160784);
	padding: 50px;
}
#diff .diff-list li.comp h2 {
	height: auto;
}
#diff .diff-list li.comp h2 img {
	width: 121px;
}
#diff .diff-list li.comp h3 {
	text-align: center;
}
#diff .diff-list li.comp p.price {
	margin-top: 22px;
}

@media screen and (max-width: 800px) {
	#diff {
		padding: 100px 0;
	}
	#diff .diff-list {
		padding: 0 26px;
		gap: 20px 9px;
	}
	#diff .grid {
		grid-template-columns: 1fr;
	}
	#diff .diff-list li {
		padding: 30px 10px 20px;
	}
	#diff .diff-list li.comp {
		padding: 40px 24px 30px;
	}
	#diff .diff-list li h2 {
		font-size: 16px;
		line-height: 27px;
		height: 54px;
		margin-bottom: 0;
	}
	#diff .diff-list li h3 {
		font-size: 14px;
		line-height: 20px;
		padding-bottom: 6px;
		margin-bottom: 10px;
	}
	#diff .diff-list li p {
		font-size: 12px;
		line-height: 22px;
	}
	#diff .diff-list li p.price {
		font-size: 13px;
		line-height: 27px;
	}
	#diff .diff-list li p.price strong {
		font-size: 16px;
		line-height: 27px;
	}
	#diff .diff-list li.comp h2 img {
		width: 96px;
	}
	#diff .grid {
		margin-top: 10px;
	}
	#diff .diff-list li.comp h3 {
		text-align: left;
	}
	#diff .diff-list li.comp p.price {
		margin-top: 14px;
	}
	#diff .diff-list li.comp p.price {
		font-size: 14px;
		line-height: 27px;
	}
	#diff .diff-list li.comp p.price strong {
		font-size: 19px;
		line-height: 27px;
	}
}



#point {
	padding: 180px 0 0;
}
#point .desc {
	margin-bottom: 110px;
	text-align: center;
	padding: 0 30px;
}
#point .desc p {
	font-family: var(--bizm);
	font-size: 22px;
	line-height: 42px;
	letter-spacing: 0.05em;
}
#point .desc p strong {
	color: var(--brown);
	text-decoration: underline;
	text-underline-offset: .4em;
	text-decoration-thickness: 1px;
}
#point .nayami {
	padding: 0 30px;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 150px;
	justify-content: center;
}
#point .nayami li {
	width: 100%;
	max-width: 289px;
	min-width: 280px;
	margin-top: 57px;
	border: 1px solid var(--brown);
	padding: 87px 20px 29px;
	text-align: center;
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
#point .nayami li p {
	font-size: 15px;
	line-height: 26px;
	font-family: var(--serif);
}
#point .nayami li p.answer {
	color: var(--brown);
	font-weight: 700;
	font-size: 16px;
	line-height: 30px;
}
#point .nayami li .icon {
	width: 114px;
	height: 114px;
	display: block;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%,-50%);
	background: #fff;
	border-radius: 50%;
	border: 1px solid var(--brown);
	z-index: 1;
}
#point .title {
	text-align: center;
	margin-bottom: 100px;
}
#point .title .inner {
	display: inline-flex;
	width: 568px;
	height: 168px;
	justify-content: center;
	align-items: center;
	position: relative;
}
#point .title .inner::before {
	content: '';
	display: block;
	height: 100%;
	width: 100px;
	position: absolute;
	top: 0;
	left: 0;
	border: 1px solid var(--brown);
	border-right: none;
}
#point .title .inner::after {
	content: '';
	display: block;
	height: 100%;
	width: 100px;
	position: absolute;
	top: 0;
	right: 0;
	border: 1px solid var(--brown);
	border-left: none;

}

#point .title .inner h1 {
	font-family: var(--bizm);
	font-size: 30px;
	line-height: 38px;
}
#point .title .inner h1 strong {
	display: block;
	color: var(--brown);
}
#point .point-list {
	display: grid;
	padding: 0 30px;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 16px;
	max-width: 1540px;
	margin: auto;
}
#point .point-list li a {
	display: block;
	height: 100%;
	position: relative;
	padding: 30px;
	padding-bottom: 70px;
	background: var(--grey2);
	text-align: center;
	font-family: var(--bizm);
}
#point .point-list li a::after {
	content: '';
	width: 0px;
	height: 0px;
	border-style: solid;
	border-width: 23px 20px 0 20px;
	border-color: var(--brown) transparent transparent transparent;
	transform: rotate(0deg);
	position: absolute;
	left: 50%;
	bottom: 20px;
	margin-left: -20px;
}
#point .point-list li h4 {
	color: var(--brown);
	font-family: var(--crimson);
	font-size: 20px;
	line-height: 1.2;
	letter-spacing: -0.03em;
	position: relative;
	margin-bottom: 1.5em;
}
#point .point-list li h4::before {
	content: '';
	display: inline-block;
	height: 1px;
	width: 100%;
	background: currentcolor;
	position: absolute;
	top: 12px;
	left: 0;
}
#point .point-list li h4 span {
	position: relative;
	padding: 0 30px;
	display: inline-block;
	background: var(--grey2);
}
#point .point-list li h3 {
	font-size: 22px;
	line-height: 30px;
	margin-bottom: 1em;
}
#point .point-list li p {
	font-size: 14px;
	line-height: 24px;
	letter-spacing: 0.05em;
}
#point .point-wrap {
	padding: 100px 30px 0;
}
body:not(.home) #point .point-wrap:first-child {
	padding-top: 0;
}
#point .point-wrap > h3 {
	font-family: var(--bizm);
	font-size: 18px;
	line-height: 26px;
	text-align: center;
	margin-bottom: 2em;
}
#point .point-wrap > h3 span {
	font-family: var(--crimson);
	font-size: 20px;
	line-height: 26px;
	letter-spacing: -0.03em;
	color: var(--brown);
}
#point .point-wrap > h3 span::after {
	content: '';
	display: inline-block;
	width: 30px;
	height: 1px;
	background: var(--brown);
	vertical-align: 5px;
	margin: 0 8px;
}
#point .point-wrap > h2 {
	font-size: 30px;
	font-family: var(--bizm);
	line-height: 38px;
	text-align: center;
	margin-bottom: 2em;
}
#point .point-wrap > h2 span {
	display: inline-block;
	border-bottom: 1px solid var(--brown);
}
#point .point-wrap > h2 + p {
	text-align: center;
	font-size: 16px;
	line-height: 30px;
	letter-spacing: 0.05em;
}
#point .point-wrap .flex1 {
	display: flex;
	max-width: 996px;
	margin: auto;
	gap: 0;
	margin-bottom: 50px;
	align-items: center;
}
#point .point-wrap .flex1 .img {
	width: 50%;
	text-align: right;
}
#point .point-wrap .flex1 .img img {
	max-width: 469px;
}
#point .point-wrap .flex1 .txt {
	padding-left: 50px;
	width: 50%;
	font-family: var(--bizm);
	font-size: 15px;
	line-height: 26px;
	letter-spacing: 0.05em;
}
#point .point-wrap .flex1 .txt p + p {
	margin-top: 24px;
}
#point .point-wrap .box1 {
	padding: 50px 40px 50px 50px;
	max-width: 928px;
	margin: auto;
	background: var(--grey3);
	display: flex;
	align-items: center;
	gap: 40px;
}
#point .point-wrap .box1 .img {
	flex: 1;
}
#point .point-wrap .box1 .txt {
	width: 238px;
}
#point .point-wrap .box1 .txt h3 {
	font-size: 15px;
	font-weight: 700;
	line-height: 22px;
	letter-spacing: -0.05em;
}
#point .point-wrap .box1 .txt p {
	font-size: 14px;
	line-height: 24px;
	letter-spacing: 0.05em;
	font-family: var(--bizm);
	margin-top: 20px;
}
#point .point-wrap .box1 .txt p.note {
	font-family: var(--gothic);
	font-size: 10px;
	line-height: 1.6;
	margin-top: 20px;
	letter-spacing: 0.05em;
}
#point .point-wrap .box2 {
	padding: 50px;
	max-width: 928px;
	margin: auto;
	margin-top: 6px;
	background: var(--grey3);
}
#point .point-wrap .box2 h3 {
	font-size: 15px;
	font-weight: 700;
	line-height: 22px;
	letter-spacing: -0.05em;
}

#point .point-wrap .box2 .flow {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	text-align: center;
	gap: 24px;
	width: 100%;
	margin-top: 50px;
}
#point .point-wrap .box2 .flow .icon {
	position: relative;
	margin-bottom: 20px;
	padding-bottom: 25px;
	border-bottom: 1px solid var(--brown);
}
#point .point-wrap .box2 .flow li:not(:first-child) .icon::after {
	content: '';
	display: block;
	position: absolute;
	bottom: -4px;
	left: -16px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 4px 0 4px 8px;
	border-color: transparent transparent transparent var(--brown);
}
#point .point-wrap .box2 .flow h4 {
	font-size: 14px;
	line-height: 18px;
	letter-spacing: 0.05em;
	font-family: var(--bizm);
}
#point .point-wrap .box2 > p {
	text-align: center;
	margin-top: 40px;
	font-size: 14px;
	line-height: 24px;
	letter-spacing: 0.05em;
	font-family: var(--bizm);
}
#point .point-wrap .flex2 {
	display: flex;
	max-width: 736px;
	margin: auto;
	gap: 32px;
	margin-top: 100px;
	margin-bottom: 50px;
}
#point .point-wrap .flex2 .img {
	flex: 1;
}
#point .point-wrap .flex2 .txt {
	flex: 1;
	font-family: var(--bizm);
	font-size: 14px;
	line-height: 24px;
	letter-spacing: 0.05em;
}
#point .point-wrap .flex2 .txt h3 {
	font-size: 24px;
	line-height: 34px;
	letter-spacing: 0;
}
#point .point-wrap .flex2 .txt * + p {
	margin-top: 24px;
}

#point .point-wrap .flex3 {
	display: flex;
	max-width: 1122px;
	margin: auto;
	gap: 35px;
	margin-bottom: 80px;
	margin-top: 100px;
}
#point .point-wrap .works-logo + .flex3 {
	margin-top: 80px;
}
#point .point-wrap .flex3 .img {
	width: 258px;
}
#point .point-wrap .flex3 .txt {
	flex: 1;
	font-family: var(--bizm);
	font-size: 14px;
	line-height: 24px;
	letter-spacing: 0.05em;
}
#point .point-wrap .flex3 .txt h3 {
	font-size: 18px;
	line-height: 26px;
	letter-spacing: 0.05em;
	position: relative;
	padding-bottom: 0.65em;
	margin-bottom: 0.7em;
}
#point .point-wrap .flex3 .txt h3::after {
	content: '';
	display: block;
	width: 30px;
	height: 1px;
	position: absolute;
	bottom: 0;
	left: 0;
	background: var(--grey8);
}
#point .point-wrap .flex3 .txt p + p {
	margin-top: 24px;
}
#point .point-wrap .flex3 .img img.sp {
	display: none;
}
#point .point-wrap .works-logo {
	display: grid;
	max-width: 1122px;
	margin: auto;
	grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
	justify-content: center;
	gap: 32px;
}
#point .point-wrap .works-item a {
	display: block;
	background: rgb(248,248,248);
	padding: 20px;
	font-size: 13px;
	line-height: 20px;
	font-weight: 700;
	height: 100%;
}
#point .point-wrap .works-item a img {
	margin-bottom: 20px;
}
#point .point-wrap .works-item a h3 {
	white-space: pre-wrap;
}
#point .point-wrap > p {
	max-width: 928px;
	padding: 0;
	margin: auto;
	font-size: 14px;
	line-height: 24px;
	letter-spacing: 0.05em;
	font-family: var(--bizm);
}
.logo-carousel-2 {
	margin-top: 10px;
}
.logo-carousel-2 .logo-carousel-list {
	display: block;
	width: 100%;
	max-width: 100%;
	overflow: hidden;
	height: 274px;
	position: relative;
}
.logo-carousel-2 .logo-carousel-item {
	white-space: nowrap;
	position: absolute;
	top: 0;
	left: 0;
	width: auto;
	animation: carousel linear infinite;
}
.logo-carousel-2 .logo-carousel-item img {
	display: inline-block;
	width: auto;
	max-width: none;
	height: 274px;
}
.branding-slide {
	max-width: 1088px;
	margin: auto;
	margin-top: 80px;
	margin-bottom: 100px;
	padding: 0 80px;
}
.branding-slide .branding-img {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 20px;
}
.branding-slide .branding-img .img img {
	width: 100%;
	height: auto;
	aspect-ratio: 454/303;
	object-fit: cover;
}
.branding-slide .branding-txt {
	font-family: var(--serif);
	display: grid;
	grid-template-columns: repeat(2,1fr);
	font-size: 15px;
	line-height: 26px;
	margin-top: 20px;
}
.branding-slide .branding-txt p {
	text-align: right;
}
.branding-slide .slick-prev,
.branding-slide .slick-next {
	font-size: 0;
	line-height: 0;
	position: absolute;
	top: 313px;
	display: block;
	width: 20px;
	height: 40px;
	padding: 0;
	transform: translate(0, -50%);
	cursor: pointer;
	color: transparent;
	border: none;
	outline: none;
	background: transparent;
	overflow: hidden;
}
.branding-slide .slick-prev {
	left: 0;
}
.branding-slide .slick-next {
	right: 0;
}
.branding-slide .slick-prev::before {
	content: '';
	display: block;
	width: 30px;
	height: 30px;
	border: none;
	border-top: 1px solid rgb(180,180,180);
	border-left: 1px solid rgb(180,180,180);
	left: 0;
	bottom: auto;
	right: auto;
	top: 50%;
	position: absolute;
	transform: rotate(-45deg);
	transform-origin: left top;
}
.branding-slide .slick-next::before {
	content: '';
	display: block;
	width: 30px;
	height: 30px;
	border: none;
	border-top: 1px solid var(--grey8);
	border-right: 1px solid var(--grey8);
	left: auto;
	bottom: auto;
	right: 0;
	top: 50%;
	position: absolute;
	transform: rotate(45deg);
	transform-origin: right top;
}

@media screen and (max-width: 800px) {
	#point {
		padding: 100px 0 0;
	}
	#point .desc {
		margin-bottom: 60px;
	}
	#point .desc p {
		font-size: 18px;
		line-height: 2;
	}
	#point .nayami {
		gap: 30px;
		margin-bottom: 100px;
	}
	#point .nayami li {
		max-width: 323px;
		padding: 77px 26px 30px;
	}
	#point .title {
		margin-bottom: 50px;
		padding: 0 26px;
	}
	#point .title .inner {
		width: 100%;
		max-width: 323px;
		height: 152px;
	}
	#point .title .inner::before {
		width: 88px;
	}
	#point .title .inner::after {
		width: 88px;
	}
	
	#point .title .inner h1 {
		font-size: 26px;
		line-height: 32px;
	}
	
	#point .point-list {
		padding: 0 26px;
		grid-template-columns: 1fr;
		gap: 20px;
	}
	#point .point-list li a {
		padding: 30px 11px 63px;
		background: var(--grey2);
		text-align: center;
		font-family: var(--bizm);
	}
	#point .point-list li h4 {
		max-width: 257px;
		margin-left: auto;
		margin-right: auto;
	}
	#point .point-list li h4 span {
		padding: 0 14px;
	}
	#point .point-wrap {
		padding: 100px 0 0;
	}
	#point .point-wrap > h3 {
		text-align: center;
		margin-bottom: 20px;
	}
	#point .point-wrap > h3 span {
		display: block;
		position: relative;
		padding-bottom: 16px;
		font-size: 20px;
		line-height: 1.3;
		letter-spacing: -0.03em;
	}
	#point .point-wrap > h3 span::after {
		width: 1px;
		height: 16px;
		vertical-align: 0;
		margin: 0;
		position: absolute;
		bottom: 0;
		left: 50%;
	}
	#point .point-wrap > h2 {
		font-size: 26px;
		line-height: 50px;
		margin-bottom: 40px;
	}
	#point .point-wrap > h2 span {
		border: none;
		text-decoration: underline;
		text-decoration-thickness: 1px;
		text-underline-offset: .4em;
		text-decoration-color: var(--brown);
	}
	#point .point-wrap > h2 + p {
		font-size: 13px;
		line-height: 24px;
		padding: 0 26px;
		text-align: left;
	}
	#point .point-wrap .flex1 {
		max-width: 322px;
		flex-direction: column;
		gap: 30px;
		margin-bottom: 0;
	}
	#point .point-wrap .flex1 .img {
		width: 100%;
		text-align: center;
	}
	#point .point-wrap .flex1 .img img {
		width: 100%;
	}
	#point .point-wrap .flex1 .txt {
		width: 100%;
		padding: 0;
		font-size: 13px;
		line-height: 24px;
	}
	#point .point-wrap .box1 {
		padding: 30px 26px;
		flex-direction: column;
		gap: 30px;
	}
	#point .point-wrap .box1 .txt {
		width: 100%;
	}
	#point .point-wrap .box1 .txt h3 {
		text-align: center;
	}
	#point .point-wrap .box1 .txt p {
		font-size: 13px;
	}
	#point .point-wrap .box2 {
		padding: 30px 26px;
		text-align: center;
	}
	#point .point-wrap .box2 .flow {
		grid-template-columns: 1fr;
		display: inline-grid;
		margin-top: 30px;
		width: auto;
	}
	#point .point-wrap .box2 .flow li {
		display: grid;
		grid-template-columns: 89px auto;
		align-items: center;
	}
	#point .point-wrap .box2 .flow .icon {
		padding-bottom: 0;
		margin-bottom: 0;
		border: none;
		padding-right: 10px;
		border-right: 1px solid var(--brown);
	}
	#point .point-wrap .box2 .flow h4 {
		padding-left: 22px;
		white-space: nowrap;
	}
	#point .point-wrap .box2 .flow h4 br {
		display: none;
	}
	#point .point-wrap .box2 .flow li:not(:first-child) .icon::after {
		top: -16px;
		bottom: auto;
		left: 84px;
		right: auto;
		transform: rotate(90deg);
	}
	#point .point-wrap .box2 > p {
		font-size: 13px;
		margin-top: 30px;
	}
	#point .point-wrap .flex2 {
		flex-direction: column;
		margin-top: 50px;
		padding: 0 26px;
		gap: 25px;
		margin-bottom: 0;
	}
	#point .point-wrap .flex2 .txt {
		order: 1;
		font-size: 13px;
		text-align: center;
	}
	#point .point-wrap .flex2 .txt h3 {
		font-size: 18px;
		line-height: 28px;
	}
	#point .point-wrap .flex3 {
		flex-direction: column;
		padding: 0 26px;
		text-align: center;
		margin-bottom: 0;
		margin-top: 40px;
		gap: 30px;
	}
	#point .point-wrap .flex3 .img {
		width: 100%;
	}
	#point .point-wrap .flex3 .img img {
		width: 236px;
	}
	#point .point-wrap .flex3 .txt {
		font-size: 13px;
		line-height: 24px;
		margin-bottom: 30px;
	}
	#point .point-wrap .flex3 .txt h3 {
		font-size: 16px;
		line-height: 24px;
	}
	#point .point-wrap .flex3 .txt h3::after {
		left: 50%;
		margin-left: -15px;
	}
	#point .point-wrap .flex3 .txt p {
		text-align: left;
	}
	#point .point-wrap .works-logo {
		grid-template-columns: repeat(2,1fr);
		padding: 0 11px;
		gap: 10px;
	}
	#point .point-wrap .works-item a {
		padding: 10px;
		font-size: 12px;
		line-height: 18px;
	}
	#point .point-wrap .works-item a img {
		margin-bottom: 10px;
	}
	#point .point-wrap .works-logo + .flex3 {
		margin-top: 50px;
	}
	#point #point3.point-wrap {
		padding-bottom: 0;
	}
	.branding-slide {
		margin-top: 60px;
		padding: 0 26px;
		margin-bottom: 0;
	}
	.branding-slide .branding-img {
		gap: 12px;
		grid-template-columns: repeat(3,1fr);
	}
	.branding-slide .branding-img .img:first-child {
		grid-area: 1 / 1 / 2 / 4;
	}
	.branding-slide .slick-prev,
	.branding-slide .slick-next {
		top: calc((100vw - 52px) * 108 / 323);
		width: 10px;
		height: 20px;
	}
	.branding-slide .slick-prev {
		left: 8px;
	}
	.branding-slide .slick-next {
		right: 8px;
	}
	.branding-slide .slick-prev::before {
		border-width: 2px;
	}
	.branding-slide .slick-next::before {
		border-width: 2px;
	}
	.branding-slide .branding-txt {
		font-size: 13px;
		line-height: 19px;
		grid-template-columns: 1fr;
		gap: 12px;
	}
	.branding-slide .branding-txt p {
		text-align: left;
	}
}



#logo {
	padding: 40px 80px 200px;
}
#logo h2 {
	text-align: center;
	font-family: var(--bizm);
	font-size: 24px;
	line-height: 38px;
}
#logo h2::before {
	content: '';
	display: inline-block;
	width: 60px;
	height: 1px;
	background: var(--brown);
	vertical-align: 8px;
	margin-right: 10px;
}
#logo h2::after {
	content: '';
	display: inline-block;
	width: 60px;
	height: 1px;
	background: var(--brown);
	vertical-align: 8px;
	margin-left: 10px;
}
#logo .logo-slide {
	margin-top: 100px;
}
#logo .slick-dotted.slick-slider {
	margin-bottom: 0;
	padding-bottom: 60px;
}
#logo .slide-item a {
	display: grid;
	grid-template-columns: 1fr 1fr;
}
#logo .slick-prev,
#logo .slick-next {
	font-size: 0;
	line-height: 0;
	position: absolute;
	top: 50%;
	display: block;
	width: 15px;
	height: 30px;
	padding: 0;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	cursor: pointer;
	color: transparent;
	border: none;
	outline: none;
	background: transparent;
	overflow: hidden;
}
#logo .slick-prev {
	left: -45px;
}
#logo .slick-next {
	right: -45px;
}
#logo .slick-prev::before {
	content: '';
	display: block;
	width: 30px;
	height: 30px;
	border: none;
	border-top: 1px solid var(--grey8);
	border-left: 1px solid var(--grey8);
	left: 0;
	bottom: auto;
	right: auto;
	top: 50%;
	position: absolute;
	transform: rotate(-45deg);
	transform-origin: left top;
}
#logo .slick-next::before {
	content: '';
	display: block;
	width: 30px;
	height: 30px;
	border: none;
	border-top: 1px solid var(--grey8);
	border-right: 1px solid var(--grey8);
	left: auto;
	bottom: auto;
	right: 0;
	top: 50%;
	position: absolute;
	transform: rotate(45deg);
	transform-origin: right top;
}

#logo .slick-dots {
	bottom: 0;
	display: flex;
	justify-content: center;
	gap: 10px;
}
#logo .slick-dots li {
	margin: 0;
	width: 10px;
	height: 10px;
}
#logo .slick-dots li button {
	padding: 0;
	width: 10px;
	height: 10px;
}
#logo .slick-dots li button::before {
	content: '';
	width: 10px;
	height: 10px;
	line-height: 1;
	background: var(--grey7);
	transition: 0.3s;
	opacity: 1;
}
#logo .slick-dots li.slick-active button::before {
	background: var(--brown);
}
#logo .logo-list {
	margin-top: 100px;
	text-align: center;
}
#logo .logo-list .logo-group {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	overflow: hidden;
}
#logo .logo-list .logo-group > div {
	opacity: 1;
	transition: 0.5s opacity 0.5s;
}
#logo .logo-list .logo-group.hidden {
	height: 0;
}
#logo .logo-list .open + .logo-group.hidden {
	margin-top: 32px;
	height: auto;
}
#logo .logo-list .logo-group.hidden > div {
	opacity: 0;
}
#logo .logo-list .open + .logo-group.hidden > div {
	opacity: 1;
}
#logo .logo-list .logo-group + .logo-group {
	margin-top: 32px;
}
#logo .logo-list .logo-group a {
	display: block;
	height: 100%;
	background: var(--grey2);
	padding: 20px;
	text-align: left;
}
#logo .logo-list .logo-group a h3 {
	margin-top: 20px;
	font-size: 13px;
	font-weight: 700;
	line-height: 20px;
	margin-bottom: 10px;
}
#logo .logo-list .logo-group a p {
	font-size: 13px;
	line-height: 20px;
	letter-spacing: -0.04em;
}
#logo .logo-list .logo-group a .btn {
	text-align: center;
	margin-top: 20px;
}
#logo .logo-list .logo-group a .btn span {
	display: inline-flex;
	width: 76px;
	height: 26px;
	justify-content: center;
	align-items: center;
	font-weight: 700;
	font-size: 13px;
	border-bottom: 1px solid var(--black);
	transition: 0.3s;
}
#logo .logo-list .logo-group a:hover .btn span {
	color: #fff;
	background: var(--black);
}

#logo .logo-more {
	display: inline-block;
	background: none;
	border-radius: 0;
	border: none;
	border-bottom: 1px solid currentcolor;
	padding: 0;
	padding-left: 1em;
	padding-bottom: 10px;
	font-size: 15px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: -0.04em;
	position: relative;
	cursor: pointer;
	margin: auto;
	margin-top: 50px;
}
#logo .logo-more:hover {
	color: var(--brown);
}
#logo .logo-more::before {
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 8px 4px 0 4px;
	border-color: currentcolor transparent transparent transparent;
	position: absolute;
	top: 3px;
	left: 0;
}
#logo .logo-list .logo-group.hidden + .logo-more {
	display: none;
}
#logo .logo-list .logo-group.hidden.opened + .logo-more {
	display: inline-block;
}
@media screen and (max-width: 800px) {
	#logo {
		padding: 100px 0 0;
	}
	body:not(.home) #logo {
		padding-top: 0;
	}
	#logo h2 {
		font-size: 20px;
		line-height: 34px;
	}
	#logo h2::before {
		width: 33px;
	}
	#logo h2::after {
		width: 33px;
	}
	#logo #logo-list-wrap {
		padding: 0 40px;
	}
	#logo .logo-slide {
		margin-top: 45px;
	}
	#logo .slick-dotted.slick-slider {
		padding-bottom: 40px;
	}
	#logo .slide-item a {
		grid-template-columns: 1fr;
	}
	#logo .slick-prev {
		left: -27px;
	}
	#logo .slick-next {
		right: -27px;
	}
	#logo .logo-list {
		padding: 0 10px 120px;
	}
	body:not(.home) #logo .logo-list {
		margin-top: 70px;
	}
	#logo .logo-list .logo-group {
		gap: 10px;
		grid-template-columns: repeat(2, 1fr);
	}
	#logo .logo-list .open + .logo-group.hidden {
		margin-top: 10px;
	}
	#logo .logo-list .logo-group + .logo-group {
		margin-top: 10px;
	}
	#logo .logo-list .logo-group a {
		padding: 10px 10px 20px;
	}
	#logo .logo-list .logo-group a h3 {
		font-size: 12px;
		line-height: 18px;
		margin: 10px 0 4px;
	}
	#logo .logo-list .logo-group a p {
		font-size: 12px;
		line-height: 18px;
	}
}

/*------------------------------------------------------------
	CONTACT
------------------------------------------------------------*/
#contact {
	padding: 100px 0 0;
	margin-top: -160px;
}
#contact .contact-wrap {
	background: var(--grey4);
	padding: 100px 30px 140px;
}
#contact h2.wp-block-heading {
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 5px;
	font-weight: 700;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: -0.04em;
	color: var(--brown);
	margin-bottom: 50px;
}
#contact h2.wp-block-heading strong {
	font-family: var(--crimson);
	font-size: 44px;
	line-height: 50px;
	letter-spacing: -0.03em;
	font-weight: 400;
	color: var(--black);
}
#contact .col2 {
	display: flex;
	gap: 30px;
	padding-bottom: 50px;
}
#contact .col2 .left {
	flex-basis: 445px;
}
#contact .col2 .left img.sp {
	display: none;
}
#contact .col2 .right {
	flex: 1 0 0;
	padding: 30px;
	background: var(--white);
}
#contact .col2 .right input {
	border: 1px solid #b4b4b4;
}

#contact > input,
.tabcon {
	display: none;
}
.tabcon {
	animation: fadeIn 0.7s ease-in-out;
}
#contact .labels {
	margin: auto;
	max-width: 928px;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	text-align: center;
}
#contact .labels a {
	color: #b4b4b4;
	border-bottom: 3px solid #b4b4b4;
	font-size: 13px;
	line-height: 1;
	padding-bottom: 30px;
	cursor: pointer;
	transition: 0.3s;
}
#contact .labels a span {
	font-family: var(--crimson);
	font-size: 30px;
	line-height: 1.3;
	display: block;
	margin-bottom: 2px;
}
#contact #tab0:checked ~ .labels label.label0,
#contact #tab1:checked ~ .labels label.label1 {
	border-color: var(--brown);
	color: var(--black);
}
#tab0:checked ~ .contact-wrap .tab0,
#tab1:checked ~ .contact-wrap .tab1 {
	display: block;
}
.contact-wrap .tabcon h2 strong {
	color: var(--black);
	font-family: var(--crimson);
	font-size: 44px;
	line-height: 1;
	display: block;
	font-weight: 400;
	letter-spacing: -0.03em;
}
.contact-wrap .tabcon h2 {
	text-align: center;
	font-size: 16px;
	font-weight: 700;
	color: var(--brown);
	letter-spacing: -0.04em;
	margin-bottom: 50px;
}
.contact-wrap .tabcon h3 {
	text-align: center;
	font-size: 15px;
	letter-spacing: -0.04em;
	margin-bottom: 50px;
}
.contact-wrap .tabcon h3 strong {
	font-family: var(--bizm);
	font-size: 28px;
	line-height: 1;
	display: block;
	letter-spacing: 0;
	margin-bottom: 30px;
}
.contact-wrap .tabcon h3 br {
	display: none;
}
.contact-form {
	max-width: 928px;
	margin: auto;
	font-size: 15px;
	line-height: 22px;
}
.contact-form p {
	letter-spacing: -0.04em;
}
.contact-form p + p {
	margin-top: 24px;
}
.contact-form select,
.contact-form input[type=tel],
.contact-form input[type=text],
.contact-form input[type=email] {
	width: 100%;
	border: none;
	box-shadow: none;
	padding: 12px 20px;
	color: var(--black);
	font-size: 16px;
	line-height: 26px;
	letter-spacing: 0;
	font-weight: 700;
	color: #333;
	background-color: #fff;
	margin: 6px 0 0;
	border-radius: 0;
	-webkit-appearance: none;
	appearance: none;
}
.contact-form select {
	padding-left: 34px;
	font-weight: 400;
	background: #fff url(images/lp/icon-select.svg) left 20px center/9px 8px no-repeat;
}
.contact-form select.wpcf7-not-valid {
	background: pink url(images/lp/icon-select.svg) left 20px center/9px 8px no-repeat;
}
.contact-form input::-webkit-input-placeholder {
	color: var(--grey8);
}
.contact-form input:-moz-placeholder{
	color: var(--grey8);
}
.contact-form input::-moz-placeholder{
	color: var(--grey8);
}
.contact-form input:-ms-input-placeholder {
	color: var(--grey8);
}
.contact-form .wpcf7-checkbox {
	margin-top: 20px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.contact-form .req {
	color: var(--brown);
}
.contact-form .acceptance {
	text-align: center;
	position: relative;
	margin-bottom: 50px;
}
.contact-form .acceptance a {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 2px;
}
.contact-form .acceptance a:hover {
	text-decoration: none;
}
.contact-form input[type=checkbox] {
	position: absolute;
	opacity: 0;
	visibility: hidden;
	display: none;
}
.contact-form input[type=checkbox] + span {
	position: relative;
	padding: 0 0 0 35px;
	display: block;
	min-width: 100%;
}
.contact-form input[type=checkbox] + span::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -12px;
	height: 24px;
	width: 24px;
	box-sizing: border-box;
	background-color: #fff;
	border: 1px solid #a6a6a6;
	border-radius: 0;
	z-index: 1;
}
.contact-form input[type=checkbox] + span::after {
	content: '';
	opacity: 0;
	box-sizing: border-box;
	margin-top: 1px;
	width: 12px;
	height: 8px;
	border-left: 3px solid var(--brown);
	border-bottom: 3px solid var(--brown);
	position: absolute;
	top: 9px;
	left: 12px;
	transform: translate(-50%,-50%) rotate(-45deg);
	z-index: 2;
	transition: .3s;
}
.contact-form input[type=checkbox]:checked + span::after {
	opacity: 1;
}

.contact-form .btn-submit {
	margin-top: 30px;
	text-align: center;
	position: relative;
}
.contact-form .btn-submit .wpcf7-spinner {
	position: absolute;
	top: 0;
	left: 0;
}
.contact-form .btn-submit input {
	width: 100%;
	max-width: 480px;
	font-size: 18px;
	font-weight: 400;
	line-height: 22px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	height: 80px;
	padding: 0 0 0 35px;
	border: 1px solid var(--brown);
	color: var(--white);
	transition: 0.3s;
	background: var(--brown) url(images/lp/icon-send-w.svg) right calc(50% + 40px) center/24px auto no-repeat;
	cursor: pointer;
}
.contact-form .tab0 .btn-submit input {
	border-color: var(--brown);
	color: var(--white);
	background: var(--brown) url(images/lp/icon-download-w.svg) right calc(50% + 100px) center/17px auto no-repeat;
}
.contact-form .btn-submit input:hover {
	color: var(--white);
	background: var(--black) url(images/lp/icon-send-w.svg) right calc(50% + 32px) center/24px auto no-repeat;
}
.contact-form .tab0 .btn-submit input:hover {
	border-color: var(--black);
	background: var(--black) url(images/lp/icon-download-w.svg) right calc(50% + 100px) center/17px auto no-repeat;
}

.contact-form .btn-submit input[disabled]:hover {
	color: var(--white);
	background: var(--brown) url(images/lp/icon-send-w.svg) right calc(50% + 32px) center/24px auto no-repeat;
}
.contact-form .tab0 .btn-submit input[disabled]:hover {
	color: var(--white);
	border-color: var(--brown);
	background: var(--brown) url(images/lp/icon-download-w.svg) right calc(50% + 100px) center/17px auto no-repeat;
}

.contact-form textarea {
	width: 100%;
	height: 206px;
	padding: 12px 20px;
	font-size: 16px;
	line-height: 26px;
	color: var(--black);
	letter-spacing: 0;
	font-weight: 700;
	background-color: #fff;
	border: none;
	box-shadow: none;
	margin: 6px 0 0;
}
.contact-form textarea::-webkit-input-placeholder{
	color: var(--grey8);
}
.contact-form textarea:-moz-placeholder{
	color: var(--grey8);
}
.contact-form textarea::-moz-placeholder{
	color: var(--grey8);
}
.contact-form textarea:-ms-input-placeholder {
	color: var(--grey8);
}

.contact-form div.wpcf7-validation-errors {
    border:none;
	color:#f00;
}
.contact-form span.wpcf7-not-valid-tip {
}
.contact-form .wpcf7-not-valid {
    background:pink;
}
.contact-form div.wpcf7-mail-sent-ok {
    border:none;
	color:#fff;
}
.contact-form div.wpcf7-response-output {
	margin:0;
	padding:1em 0 0;
	text-align:center;
}
.contact-form .wpcf7-list-item {
	width: auto;
	margin-left: 0;
}
.contact-form .note {
	text-align: center;
}

@media screen and (max-width: 800px) {

	#contact {
		padding: 100px 0 0;
		margin-top: -100px;
	}
	#contact .contact-wrap {
		padding: 80px 26px 100px;
	}
	#contact .col2 {
		flex-direction: column;
		gap: 30px;
		padding-bottom: 50px;
	}
	#contact .col2 .left {
		flex-basis: 100%;
		text-align: center;
	}
	#contact .col2 .left img.pc {
		display: none;
	}
	#contact .col2 .left img.sp {
		display: inline-block;
	}

	#contact .col2 .right {
		flex-basis: 100%;
		padding: 20px;
	}
	#contact .labels a {
		font-size: 10px;
		line-height: 1;
		padding-bottom: 20px;
	}
	#contact .labels a span {
		font-size: 20px;
	}

	.contact-wrap > h2 strong {
		font-size: 40px;
	}
	.contact-wrap .tabcon h3 br {
		display: block;
	}
	.contact-wrap .tabcon h3 strong {
		font-size: 24px;
	}
	.contact-form .btn-submit input {
		margin-bottom: 0;
	}
	.contact-form textarea::-webkit-input-placeholder{
		font-size: 14px;
	}
	.contact-form textarea:-moz-placeholder{
		font-size: 14px;
	}
	.contact-form textarea::-moz-placeholder{
		font-size: 14px;
	}
	.contact-form textarea:-ms-input-placeholder {
		font-size: 14px;
	}
	#contact h2.wp-block-heading {
		gap: 2px;
	}
	#contact h2.wp-block-heading strong {
		font-size: 40px;
	}
}


.vbox-container .vbox-inline {
	max-width: 800px;
	width: 90%;
	height: auto;
}
#contents-wrap {
	width: 100%;
	max-width: 800px;
	padding: 50px;
	margin: 0 auto;
	position: relative;
}
#contents-wrap h1 {
	text-align: center;
	font-family: var(--bizm);
	font-size: 32px;
	margin-bottom: 40px;
}
#contents-wrap p {
	font-family: var(--bizm);
	font-size: 14px;
	line-height: 24px;
	letter-spacing: 0.05em;
}
#contents-wrap * + p {
	margin-top: 24px;
}

#contents-wrap dl {
	width: 100%;
	padding: 20px;
	border: 1px solid currentcolor;
	margin: 50px 0 0;
	font-size: 14px;
	line-height: 24px;
}
#contents-wrap dl::after {
	content: "";
	display: block;
	clear: both;
}
#contents-wrap dt {
	width: 120px;
	float: left;
	margin-bottom: 0.2em;
}
#contents-wrap dd {
	width: calc(100% - 120px);
	float: left;
	margin-bottom: 0.2em;
}
@media screen and (max-width: 800px) {

	#contents-wrap {
		padding: 20px;
	}
	#contents-wrap p {
		font-size: 13px;
	}
	#contents-wrap dl {
		margin-top: 30px;
	}
	#contents-wrap dt {
		width: 100%;
		float: none;
		margin-bottom: 0;
	}
	#contents-wrap * + dt {
		margin-top: 0.5em;
	}
	#contents-wrap dd {
		width: 100%;
		float: none;
		margin-bottom: 0;
	}
}

/*------------------------------------------------------------
	LOGO LISTS
------------------------------------------------------------*/

#contents-logo-lists,
#contents-logo-lists-2 {
	width:100%;
	max-width:1240px;
	margin:0 auto;
	padding:10rem 0 5rem;
}


#thanks .sec-wrap {
	padding: 0 0 0;
	position: relative;
}

/*------------------------------------------------------------
	Thanks
------------------------------------------------------------*/



#thanks .inner {
	text-align: center;
	padding: 200px 0 0;
	height: 700px;
	max-width: 1002px;
	margin: auto;
}
#thanks .inner h1 {
	font-size: 30px;
	font-weight: 300;
	font-family: var(--bizm);
	margin-bottom: 50px;
	line-height: 1;
}
#thanks .inner p {
	font-family: var(--bizm);
	line-height: 2;
	font-size: 15px;
	letter-spacing: 0.05em;
}
#thanks .inner p + p {
	margin-top: 1em;
}
