@charset "utf-8";


/* -- SECTION: Link
-------------------------------------------------------------------------------- */
a,input[type="submit"] {
	color: inherit;
	text-decoration: none;
	transition: all 0.3s ease;
}
a:hover,a:active,a:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
	opacity: 0.7;
}
a:focus {
	outline: 1px solid #ea5532;
}
a:hover,a:active {
	outline: none;
}
[class^="btn-"] {
	font-size: 1.8rem;
	font-weight: 700;
	color: #fff;
	background-color: #ea5532;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 60px;
	margin: auto;
	cursor: pointer;
	border-radius: 99px;
	box-shadow: 4px 4px 8px rgba(0,0,0,0.08);
	position: relative;
}
.btn-orange {
	background-color: #ea5532;
}
.btn-gray {
	background-color: #404040;
}
.btn-white {
	color: #404040;
	background-color: #fff;
	border: solid 1px #404040;
}
.btn-line {
	font-size: 1.5rem;
	color: #ea5532;
	background-color: #fff;
	width: 172px;
	height: 38px;
	border: solid 1px #ea5532;
}
[class^="btn-"]::after {
	content: "";
	display: block;
	width: 9px;
	height: 9px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	position: absolute;
	top: 50%;
	right: 24px;
	transform: translateY(-50%) rotate(45deg);
	transition: right 0.3s ease;
}
[class^="btn-"]:hover::after {
	right: 18px;
}
.btn-white::after {
	border-top: 2px solid #404040;
	border-right: 2px solid #404040;
}
.btn-line::after {
	width: 6px;
	height: 6px;
	border-top: 2px solid #ea5532;
	border-right: 2px solid #ea5532;
	right: 16px;
}
.btn-line:hover::after {
	right: 12px;
}

@media screen and (min-width: 768px) {
	[class^="btn-"] {
		max-width: 280px;
	}
}

@media screen and (max-width: 767px) {
	[class^="btn-"] {
		max-width: 380px;
	}
}



/* -- SECTION: Headerer
-------------------------------------------------------------------------------- */
header {
	background: #fff;
	width: 100%;
}

@media screen and (min-width: 768px) {
	header {
		height: 66px;
		position: relative;
	}
	header .site-logo {
		width: 190px;
		position: absolute;
		top: 12px;
		left: 40px;
	}
	header #naviButton,
	header .main-nav-list {
		display: none;
	}
	#globalNav {
		position: absolute;
		top: 13px;
		right: 40px;
	}
	header .cta-list {
		display: flex;
		column-gap: 24px;
	}
	header .cta-list a[class^="btn-"] {
		font-size: 1.5rem;
		width: 194px;
		height: 40px;
	}
	header .cta-list a::after {
		width: 7px;
		height: 7px;
		right: 20px;
	}
	header .cta-list a:hover::after {
		right: 16px;
	}
}

@media screen and (max-width: 767px) {
	header {
		height: 60px;
		border-bottom: solid 1px #d5d5d5;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 9;
	}
	main {
		padding-top: 60px;
	}
	header .site-logo {
		width: 100px;
		position: absolute;
		top: 19px;
		left: 16px;
	}
	#globalNav {
		background: #f1eeec;
		overflow: hidden;
		width: 100%;
		height: 0;
		position: absolute;
		top: 60px;
		left: 0;
		transition: all 0.3s ease;
	}
	#globalNav.is-open {
		height: calc(100vh - 60px);
	}
	#globalNav .main-nav-list {
		padding: 36px 24px 40px;
	}
	#globalNav .main-nav-list li a {
		font-size: 1.8rem;
		font-weight: 700;
		text-align: left;
		display: block;
		padding: 28px 0;
		border-bottom: solid 1px #e4dbd7;
		position: relative;
	}
	#globalNav .main-nav-list li a::after {
		content: "";
		display: block;
		width: 9px;
		height: 9px;
		border-top: 2px solid #ea5532;
		border-right: 2px solid #ea5532;
		position: absolute;
		top: 50%;
		right: 3px;
		transform: translateY(-50%) rotate(45deg);
		transition: right 0.3s ease;
	}
	#globalNav .cta-list a {
		width: 280px;
	}
	#naviButton {
		width: 60px;
		height: 60px;
		position: absolute;
		top: 0;
		right: 0;
	}
	.visually-hidden {
		font-size: 0;
		white-space: nowrap;
		display: block;
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
	}
	#naviButton::before,
	#naviButton::after,
	#naviButton span::before {
		content: "";
		background: #ea5532;
		width: 24px;
		height: 2px;
		margin: auto;
		position: absolute;
		transition: all 0.3s ease;
		inset: 0;
	}
	#naviButton::before {
		transform: translateY(-9px);
	}
	#naviButton::after {
		transform: translateY(9px);
	}
	#naviButton span::before {
		width: 16px;
		right: 19px;
		left: auto;
	}
	#naviButton[aria-expanded="true"]::before,
	#naviButton[aria-expanded="true"]::after {
		width: 30px;
	}
	#naviButton[aria-expanded="true"]::before {
		transform: rotate(225deg);
	}
	#naviButton[aria-expanded="true"]::after {
		transform: rotate(-45deg);
	}
	#naviButton[aria-expanded="true"] span::before {
		opacity: 0;
	}
}



/* -- SECTION: Footer
-------------------------------------------------------------------------------- */
footer {
	background: #f1eeec;
	text-align: center;
	padding: 40px 24px 24px;
}
footer nav ul li a {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.46;
}
footer small {
	font-size: 1.2rem;
	display: block;
	margin-top: 24px;
}

@media screen and (min-width: 768px) {
	footer nav ul {
		display: flex;
		justify-content: center;
	}
	footer nav ul li a {
		font-weight: 700;
		display: inline-block;
		padding: 4px 24px;
		position: relative;
	}
	footer nav ul li:not(:last-child) a::before {
		content: "";
		background: #e4dbd7;
		width: 1px;
		height: 14px;
		position: absolute;
		top: 50%;
		right: 0;
		transform: translateY(-50%);
	}
}

@media screen and (max-width: 767px) {
	footer nav ul {
		text-align: left;
		display: block;
	}
	footer nav ul li a {
		display: block;
		padding: 7px 0;
	}
}



/* -- SECTION: Contents
-------------------------------------------------------------------------------- */
main {
	font-size: 1.5rem;
	line-height: 1.46;
	text-align: left;
}
main > section,
article > section,
main > aside,
main > div:not(#mainVisual) {
	width: 100%;
	max-width: 1048px;
	margin: 0 auto;
	padding: 80px 24px;
	position: relative;
	container-type: inline-size;
}
section.bg-wide + section.bg-wide {
	padding-top: 0;
}
[class^="bg-triangle"]::before {
	content: "";
	display: block;
	position: absolute;
	z-index: -1;
	aspect-ratio: 3 / 1;
}
.bg-triangle-left::before {
	background: linear-gradient(90deg, rgba(234, 133, 50, 0.3) 0%, rgba(234, 85, 50, 0.3) 100%);
	clip-path: polygon(0 0, 100% 0, 0 100%);
}
.bg-triangle-right::before {
	background: linear-gradient(270deg, rgba(234, 133, 50, 0.3) 0%, rgba(234, 85, 50, 0.3) 100%);
	clip-path: polygon(100% 0, 100% 100%, 0 0);
}
#Home section h2,
.line-title {
	line-height: 1.5;
	text-align: center;
	white-space: nowrap;
	word-break: keep-all;
	overflow-wrap: break-word;
	margin-bottom: 48px;
	padding-bottom: 12px;
	position: relative;
}
#Home section h2::after,
.line-title::after {
	content: "";
	background: #ea5532;
	width: 80px;
	height: 2px;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}
#footerBanner {
	visibility: hidden;
	opacity: 0;
	position: sticky;
	position: -webkit-sticky;
	bottom: 0;
	z-index: -9;
	transition: opacity 0.3s ease;
}
#footerBanner.is-visible {
	visibility: visible;
	opacity: 1;
	z-index: 8;
}
.emp {
	color: #ea5532;
}
.note li {
	text-indent: -1em;
	margin-left: 1em;
}
.brake-words {
	white-space: pre-wrap;
	word-break: keep-all;
	overflow-wrap: break-word;
}

@media screen and (min-width: 768px) {
	.bg-wide::after {
		content: "";
		background-color: #f8f6f4;
		width: 100vw;
		height: 100%;
		position: absolute;
		top: 0;
		left: 50%;
		z-index: -2;
		transform: translateX(-50%);
	}
	[class^="bg-triangle"]::before {
		width: 45.85vw;
		margin-top: -80px;
	}
	.bg-triangle-left::before {
		left: 50%;
		transform: translateX(-50vw);
	}
	.bg-triangle-right::before {
		right: 50%;
		transform: translateX(50vw);
	}
	#Home section h2,
	.line-title {
		font-size: 3.6rem;
	}
	#footerBanner {
		display: flex;
		column-gap: 16px;
		align-items: center;
		justify-content: center;
		padding: 20px 0;
	}
	#footerBanner.bg-wide::after {
		content: "";
		background-color: rgba(248, 246, 244, 0.9);
	}
	#footerBanner p {
		font-size: 1.8rem;
		text-align: center;
		flex: 0 1 auto;
	}
	#footerBanner ul {
		flex: 0 1 280px;
	}
	.is-sp {
		display: none;
	}
}

@media screen and (max-width: 767px) {
	.bg-wide {
		background-color: #f8f6f4;
		z-index: 1;
	}
	[class^="bg-triangle"] {
		overflow: hidden;
	}
	[class^="bg-triangle"]::before {
		width: 440px;
		top: 0;
	}
	.bg-triangle-left::before {
		left: 0;
	}
	.bg-triangle-right::before {
		right: 0;
	}
	#Home section h2,
	.line-title {
		font-size: 2.4rem;
	}
	#footerBanner {
		background-color: rgba(248, 246, 244, 0.9);
		text-align: center;
		padding: 8px 0;
	}
	#footerBanner p {
		font-size: 1.2rem;
		display: inline-block;
		padding: 0 20px;
		position: relative;
	}
	#footerBanner p::after,
	#footerBanner p::before {
		content: "";
		background-color: #ea5532;
		width: 2px;
		height: 16px;
		position: absolute;
		top: 0;
	}
	#footerBanner p::after {
		right: 0;
		transform: rotate(35deg);
	}
	#footerBanner p::before {
		left: 0;
		transform: rotate(-35deg);
	}
	#footerBanner ul {
		width: 156px;
		margin: 8px auto 0;
	}
	#footerBanner ul a {
		font-size: 1.2rem;
		height: 42px;
	}
	#footerBanner ul a::after {
		width: 6px;
		height: 6px;
		right: 16px;
	}
	.is-pc {
		display: none;
	}
}

/* -- MEMO: Case study other cases -- */
.other-case-item {
	background-color: #fff;
	overflow: hidden;
	max-width: 484px;
	margin: auto;
	padding: 0 0 24px;
	border: solid 1px #e4dbd7;
	border-radius: 8px;
	box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.1);
}
.other-case-item h3 {
	font-size: 2rem;
	margin: 16px 24px 0;
}
.other-case-item figure {
	display: block;
	margin: 0 -1px;
}
.other-case-item dl {
	padding: 12px 24px 0;
}
.other-case-item p {
	text-align: center;
	margin-top: 16px;
}
.other-case-item dt {
	font-size: 1.2rem;
	line-height: 22px;
	color: #fff;
	text-align: center;
	width: 40px;
	height: 22px;
	border-radius: 99px;
}
.other-case-item dt:nth-of-type(1) {
	background-color: #404040;
}
.other-case-item dt:nth-of-type(2) {
	background-color: #ea5532;
}
.other-case-item dd {
	margin: -22px 0 0 48px;
}
