*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	font-size: 62.5%;
}

body {
	font-size: min(1.11vw, 1.6rem);
	font-family: "Noto Sans JP", sans-serif;
	line-height: 1.5;
	color: #170D03;
	font-weight: 400;
}

@media screen and (max-width: 767px) {
	body {
		font-size: min(4.27vw, 3.2rem);
	}
}

body.is-fixed {
	position: fixed;
	width: 100%;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

a {
	text-decoration: none;
	transition: all 0.5s;
}

a:hover {
	opacity: 0.7;
}

@media screen and (max-width: 767px) {
	.u-pc {
		display: none !important;
	}
}

@media screen and (min-width: 768px) {
	.u-sp {
		display: none !important;
	}
}

.u-ff-kanit {
	font-family: "Kanit", sans-serif;
}

.u-ff-yuji {
	font-family: "Yuji Boku", serif;
}

.u-ff-zen {
	font-family: "Zen Kurenaido", sans-serif;
}

/* content */
.l-content {
	width: 100%;
	background: #FFF;
}

.l-content__body {
	display: flex;
}

@media screen and (max-width: 767px) {
	.l-content__body {
		display: block;
	}
}

.l-content__inner {
	max-width: 767px;
	margin: 0 auto;
}

/* header */
.l-header {
	position: relative;
	top: 0;
	left: 0;
	width: 290px;
	z-index: 99999;
	background: #FFF;
	border-right: 1px solid #170D03;
}

@media screen and (max-width: 1440px) {
	.l-header {
		width: 20.14vw;
	}
}

@media screen and (max-width: 767px) {
	.l-header {
		position: fixed;
		width: 100%;
		height: 47px;
		border-right: none;
		border-bottom: 1px solid #170D03;
	}
}

.l-header__inner {
	height: 100%;
	padding: 15px 0;
}

@media screen and (max-width: 1440px) {
	.l-header__inner {
		padding: 1.04vw 0;
	}
}

.l-header__img-wrap {
	margin: 0 auto;
	width: 56.9%;
}

@media screen and (max-width: 767px) {
	.l-header__img-wrap {
		position: absolute;
		top: 10px;
		left: 18px;
		width: 52px;
	}
}

.l-header__img-wrap img {
	display: block;
}

.l-header__nav {
	margin-top: 53px;
	background: #FFF;
}

@media screen and (max-width: 1440px) {
	.l-header__nav {
		margin-top: 3.68vw;
	}
}

@media screen and (max-width: 767px) {
	.l-header__nav {
		position: fixed;
		top: 0;
		right: -100%;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		width: 100%;
		height: 100%;
		margin-top: 0;
		transition: all .5s;
		z-index: 1;
	}
}

@media screen and (max-width: 767px) {
	.is-open .l-header__nav {
		right: 0;
	}
}

@media screen and (max-width: 767px) {
	.l-header__nav-item {
		width: 100%;
	}
}

.l-header__nav-item:not(:first-of-type) {
	margin-top: 14px;
}

@media screen and (max-width: 1440px) {
	.l-header__nav-item:not(:first-of-type) {
		margin-top: 0.97vw;
	}
}

@media screen and (max-width: 767px) {
	.l-header__nav-item:not(:first-of-type) {
		margin-top: min(3.73vw, 14px);
	}
}

.l-header__nav-item.is-current {
	background: #D9D9D9;
}

.l-header__nav-item.is-current a {
	color: #858585;
	pointer-events: none;
}

.l-header__nav-item a {
	display: block;
	padding: 5px 20px;
	font-size: 2.4rem;
	color: #170D03;
	text-align: center;
}

@media screen and (max-width: 1440px) {
	.l-header__nav-item a {
		padding: 0.35vw 1.39vw;
		font-size: 1.67vw;
	}
}

@media screen and (max-width: 767px) {
	.l-header__nav-item a {
		padding: min(1.33vw, 5px) min(5.33vw, 20px);
		font-size: min(6.4vw, 2.4rem);
	}
}

.l-header__trigger {
	display: none;
	position: fixed;
	top: 18px;
	right: 18px;
	width: 22px;
	height: 11px;
	transition: .5s all;
	cursor: pointer;
	z-index: 20;
}

@media screen and (max-width: 767px) {
	.l-header__trigger {
		display: block;
	}
}

.l-header__trigger span {
	display: block;
	position: absolute;
	right: 0;
	width: 22px;
	height: 1px;
	background-color: #170D03;
	transition: all .5s;
}

.is-open .l-header__trigger span {
	right: auto;
	left: 0;
}

.l-header__trigger span:first-of-type {
	top: 0;
}

.is-open .l-header__trigger span:first-of-type {
	top: -6px;
	-webkit-transform: translateY(10px) rotate(-315deg);
	transform: translateY(10px) rotate(-315deg);
}

.l-header__trigger span:nth-of-type(2) {
	top: 5px;
}

.is-open .l-header__trigger span:nth-child(2) {
	opacity: 0;
}

.l-header__trigger span:last-of-type {
	bottom: 0;
}

.is-open .l-header__trigger span:nth-child(3) {
	bottom: -4px;
	-webkit-transform: translateY(-10px) rotate(315deg);
	transform: translateY(-10px) rotate(315deg);
}

.l-header__trigger p {
	position: absolute;
	bottom: -13px;
	left: 0;
	font-size: 0.8rem;
	transition: all .5s;
}

.is-open .l-header__trigger p {
	opacity: 0;
}


/* KV */
.l-main-content {
	width: calc(100% - min(20.14vw, 290px));
	overflow: hidden;
	background: #FFF;
}

@media screen and (max-width: 767px) {
	.l-main-content {
		width: 100%;
		margin-top: 47px;
	}
}

.l-main-content__inner {
	width: 100%;
	background: #FFF;
}

.p-kv-area {
	width: 100%;
}

@media screen and (max-width: 767px) {
	.p-kv-area {
		height: auto;
		padding-left: 0;
	}
}

.p-kv {
	position: relative;
	max-width: 1149px;
	width: 100%;
	margin: 0 auto;
}

.p-kv__inner {
	position: relative;
}

/* TOP */
.p-kv__inner {
  position: relative;
}

@media screen and (max-width: 767px) {
	.p-kv__inner {
		overflow: hidden;
	}
}



.top .p-kv__img-wrap {
	position: absolute;
	top: 0;
	left: min(4.86vw, 70px);
	transform: rotate(-17deg);
	width: 260px;
	width: min(18.75vw, 270px);
	z-index: 0;
}

@media screen and (max-width: 767px) {
	.top .p-kv__img-wrap {
		top: min(2.67vw, 20px);
		left: min(2.67vw, 20px);
		transform: rotate(-8deg);
		width: 36vw;
	}
}

.top .p-kv__inner-body {
	position: relative;
	width: min(48.61vw, 700px);
	margin-left: min(22.01vw, 317px);
	padding: min(10.07vw, 145px) 20px;
}

@media screen and (max-width: 767px) {
	.top .p-kv__inner-body {
		width: auto;
		margin-left: min(34.67vw, 260px);
		padding: min(37.33vw, 280px) min(2.67vw, 20px) min(13.33vw, 100px);
	}
}

.top .p-kv__sub-heading {
	font-size: min(1.11vw, 1.6rem);
}

@media screen and (max-width: 767px) {
	.top .p-kv__sub-heading {
		font-size: min(3.2vw, 2.4rem);
	}
}

.top .c-heading-02 {
	font-size: min(2.43vw, 3.5rem);
}

@media screen and (max-width: 767px) {
	.top .c-heading-02 {
		font-size: min(4.27vw, 3.2rem);
	}
}

.top .p-kv__title-wrap {
	position: relative;
	margin-top: min(15.28vw, 220px);
}

@media screen and (max-width: 767px) {
	.top .p-kv__title-wrap {
		margin-top: min(21.33vw, 160px);
	}
}

.top .p-kv__title-wrap::before,
.top .p-kv__title-wrap::after {
	position: absolute;
	content: '';
	width: min(47.22vw, 680px);
	height: 3px;
	background: #AF1929;
	left: -20px;
}

@media screen and (max-width: 767px) {
	.top .p-kv__title-wrap::before,
	.top .p-kv__title-wrap::after {
		width: min(60vw, 450px);
		left: -10px;
	}
}

.top .p-kv__title-wrap::before {
	top: max(-3.82vw, -55px);
	transform: rotate(-10deg);
}

@media screen and (max-width: 767px) {
	.top .p-kv__title-wrap::before {
		top: max(-6.67vw, -50px);
	}
}

.top .p-kv__title-wrap::after {
	bottom: max(-3.82vw, -55px);
	transform: rotate(10deg);
}

@media screen and (max-width: 767px) {
	.top .p-kv__title-wrap::after {
		bottom: max(-6.67vw, -50px);
	}
}

.top .c-heading-01 {
	font-size: min(6.18vw, 8.9rem);
}

@media screen and (max-width: 767px) {
	.top .c-heading-01 {
		font-size: min(8vw, 6rem);
	}
}

.top .p-kv__text-wrap {
	margin-top: min(11.39vw, 164px);
}

@media screen and (max-width: 767px) {
	.top .p-kv__text-wrap {
		margin-top: min(17.6vw, 132px);
	}
}

.top .p-kv__text {
	font-size: min(1.67vw, 2.4rem);
	text-align: end;
}

@media screen and (max-width: 767px) {
	.top .p-kv__text {
		font-size: min(3.2vw, 2.4rem);
		text-align: left;
	}
}

.top .p-kv__sub-text-wrap {
	display: flex;
	justify-content: end;
	margin-top: 13px;
}

@media screen and (max-width: 767px) {
	.top .p-kv__sub-text-wrap {
		justify-content: start;
	}
}

.top .p-kv__sub-text-wrap span {
	font-size: min(0.56vw, 0.8rem);
}

@media screen and (max-width: 767px) {
	.top .p-kv__sub-text-wrap span {
		font-size: min(2.13vw, 1.6rem);
	}
}



/* about */
.about .p-kv__img-wrap {
	position: absolute;
	top: 0;
	left: min(4.86vw, 70px);
	transform: rotate(-17deg);
	width: min(19.79vw, 285px);
	z-index: 0;
	opacity: 0.4;
}

@media screen and (max-width: 767px) {
	.about .p-kv__img-wrap {
		top: min(2.67vw, 20px);
		left: min(2.67vw, 20px);
		transform: rotate(-8deg);
		width: 36vw;
	}
}

.about .p-kv__inner-body {
	position: relative;
	width: min(49.17vw, 708px);
	margin: 0 auto;
	padding: min(10.42vw, 150px) 20px;
}

@media screen and (max-width: 767px) {
	.about .p-kv__inner-body {
		width: 100%;
		padding: min(10.42vw, 150px) 18px;
	}
}

.about .p-kv__heading-wrap {
	color: #CE5C17;
	text-align: center;
}

.about .p-kv__sub-heading {
	font-size: min(0.69vw, 1rem);
	font-weight: 500;
}

@media screen and (max-width: 767px) {
	.about .p-kv__sub-heading {
		font-size: min(2.67vw, 2rem);
	}
}

.about .c-heading-02 {
	font-size: min(2.22vw, 3.2rem);
	font-weight: 700;
	line-height: min(2.22vw, 3.2rem);
}

@media screen and (max-width: 767px) {
	.about .c-heading-02 {
		font-size: min(6.4vw, 4.8rem);
		margin-top: 0;
		line-height: 1.5;
	}
}

.about .c-heading-03 {
	margin-top: min(3.47vw, 50px);
	font-size: min(1.67vw, 2.4rem);
	font-weight: 500;
}

@media screen and (max-width: 767px) {
	.about .c-heading-03 {
		margin-top: min(6.93vw, 52px);
		font-size: min(5.33vw, 4rem);
	}
}

.about .p-kv__text-wrap {
	margin-top: min(1.39vw, 20px);
}

@media screen and (max-width: 767px) {
	.about .p-kv__text-wrap {
		margin-top: min(5.33vw, 40px);
	}
}

.about .p-kv__text {
	font-weight: 500;
}

.about .p-kv__text:last-of-type {
	margin-top: min(1.39vw, 20px);
}

@media screen and (max-width: 767px) {
	.about .p-kv__text:last-of-type {
		margin-top: min(5.33vw, 40px);
	}
}

.about .p-kv__button-wrap {
	margin-top: min(1.74vw, 25px);
	display: flex;
	justify-content: center;
}

@media screen and (max-width: 767px) {
	.about .p-kv__button-wrap {
			margin-top: min(5.33vw, 40px);
	}
}

.about .p-kv__button {
	position: relative;
	display: inline-block;
	padding: min(1.25vw, 18px) min(4.03vw, 58px);
	color: #AD1B29;
	font-size: min(1.25vw, 18px);
	font-weight: 700;
	border: 1px solid #AD1B29;
	border-radius: 56px;
	text-align: center;
}

@media screen and (max-width: 767px) {
	.about .p-kv__button {
		padding: min(4.8vw, 36px) min(15.47vw, 116px);
		font-size: min(4.8vw, 36px);
	}
}

.about .p-kv__button::after {
	position: absolute;
	top: 50%;
	right: min(0.9vw, 13px);
	transform: translateY(-50%);
	content: '';
	width: min(1.67vw, 24px);
	height: min(1.67vw, 24px);
	background: url(./assets/img/icon-arrow.svg) no-repeat top left / 100% auto;
}

@media screen and (max-width: 767px) {
	.about .p-kv__button::after {
		right: min(3.47vw, 26px);
		width: min(6.4vw, 48px);
		height: min(6.4vw, 48px);
	}
}

.about .p-kv__text-wrap-02 {
	margin-top: min(3.47vw, 50px);
	padding: min(0.69vw, 10px) min(1.39vw, 20px);
	border: 1px solid #170D03;
}

@media screen and (max-width: 767px) {
	.about .p-kv__text-wrap-02 {
		margin-top: min(8vw, 60px);
		padding: min(2.67vw, 20px);
	}
}

.about .p-kv__text-wrap-02 > .p-kv__text {
	margin-top: 0;
}

.about .p-kv__text-wrap-inner {
	margin-top: min(0.56vw, 8px);
	text-align: center;
}

@media screen and (max-width: 767px) {
	.about .p-kv__text-wrap-inner {
		margin-top: min(2.13vw, 16px);
	}
}

.about .p-kv__text-wrap-inner .p-kv__text:not(:first-of-type) {
	margin-top: min(0.56vw, 8px);
}

@media screen and (max-width: 767px) {
	.about .p-kv__text-wrap-inner .p-kv__text:not(:first-of-type) {
		margin-top: min(2.13vw, 16px);
	}
}

.about .p-kv__text-wrap-inner .p-kv__text a {
	color: #170D03;
	text-decoration: underline;
}

.about .p-kv__text-wrap-inner .p-kv__text:first-of-type {
	font-size: min(1.39vw, 20px);
	font-weight: 500;
}

@media screen and (max-width: 767px) {
	.about .p-kv__text-wrap-inner .p-kv__text:first-of-type {
		font-size: min(5.33vw, 40px);
	}
}



/* profile */
.profile .p-kv__img-wrap {
	position: absolute;
	bottom: max(-1.74vw, -25px);
	right: max(-3.82vw, -55px);
	transform: rotate(6deg);
	width: min(19.79vw, 285px);
	z-index: 0;
	opacity: 0.4;
}

@media screen and (max-width: 767px) {
	.profile .p-kv__img-wrap {
		bottom: max(-4vw, -30px);
		right: max(-9.33vw, -70px);
		width: 36vw;
	}
}

.profile .p-kv__inner-body {
	position: relative;
	width: min(45vw, 648px);
	margin: 0 auto;
	padding: min(10.42vw, 150px) 20px;
}

@media screen and (max-width: 767px) {
	.profile .p-kv__inner-body {
		width: 100%;
		padding: min(10.42vw, 150px) 18px;
	}
}

.profile .p-kv__heading-wrap {
	color: #198BAF;
	text-align: center;
}

.profile .p-kv__sub-heading {
	font-size: min(0.69vw, 1rem);
	font-weight: 500;
}

@media screen and (max-width: 767px) {
	.profile .p-kv__sub-heading {
		font-size: min(2.67vw, 2rem);
	}
}

.profile .c-heading-02 {
	font-size: min(2.22vw, 3.2rem);
	font-weight: 700;
	line-height: min(2.22vw, 3.2rem);
}

@media screen and (max-width: 767px) {
	.profile .c-heading-02 {
		font-size: min(6.4vw, 4.8rem);
		margin-top: 0;
		line-height: 1.5;
	}
}

.profile .p-kv__detail-wrap {
	margin-top: min(3.47vw, 50px);
}

@media screen and (max-width: 767px) {
	.profile .p-kv__detail-wrap {
		margin-top: min(6.93vw, 52px);
	}
}

.profile .p-kv__detail-wrap dl {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.profile .p-kv__detail-wrap dt {
  width: 20%;
  padding: min(1.39vw, 20px) min(1.39vw, 20px) min(1.39vw, 20px) 0;
  border-bottom: 1px solid #DCDCDC;
}

@media screen and (max-width: 767px) {
	.profile .p-kv__detail-wrap dt {
		width: 25%;
		padding: min(5.33vw, 40px) min(5.33vw, 40px) min(5.33vw, 40px) 0;
	}
}

.profile .p-kv__detail-wrap dl:first-of-type dt {
  padding: 0 min(1.39vw, 20px) min(1.39vw, 20px) 0;
}

@media screen and (max-width: 767px) {
	.profile .p-kv__detail-wrap dl:first-of-type dt {
		padding: 0 min(5.33vw, 40px) min(5.33vw, 40px) 0;
	}
}

.profile .p-kv__detail-wrap dd {
  width: 80%;
  padding: min(1.39vw, 20px) 0;
  border-bottom: 1px solid #DCDCDC;
}

@media screen and (max-width: 767px) {
	.profile .p-kv__detail-wrap dd {
		width: 75%;
		padding: min(5.33vw, 40px) 0;
	}
}

.profile .p-kv__detail-wrap dl:first-of-type dd {
  padding: 0 0 min(1.39vw, 20px) 0;
}

@media screen and (max-width: 767px) {
	.profile .p-kv__detail-wrap dl:first-of-type dd {
		padding: 0 0 min(5.33vw, 40px) 0;
	}
}

.profile .p-kv__detail-wrap dd span {
	font-size: min(0.97vw, 14px);
}

@media screen and (max-width: 767px) {
	.profile .p-kv__detail-wrap dd span {
		font-size: min(3.73vw, 28px);
	}
}



/* access */
.access .p-kv__img-wrap {
	position: absolute;
	top: max(-12.85vw, -185px);
	left: max(-3.82vw, -55px);
	transform: rotate(135deg);
	width: min(19.79vw, 285px);
	z-index: 0;
	opacity: 0.4;
}

@media screen and (max-width: 767px) {
	.access .p-kv__img-wrap {
		top: max(-40vw, -300px);
		left: max(-16vw, -120px);
		width: 40vw;
	}
}

.access .p-kv__inner-body {
	position: relative;
	width: min(50.69vw, 730px);
	margin: 0 auto;
	padding: min(10.42vw, 150px) 20px;
}

@media screen and (max-width: 767px) {
	.access .p-kv__inner-body {
		width: 100%;
		padding: min(10.42vw, 150px) 18px;
	}
}

.access .p-kv__heading-wrap {
	color: #19AF28;
	text-align: center;
}

.access .p-kv__sub-heading {
	font-size: min(0.69vw, 1rem);
	font-weight: 500;
}

@media screen and (max-width: 767px) {
	.access .p-kv__sub-heading {
		font-size: min(2.67vw, 2rem);
	}
}

.access .c-heading-02 {
	font-size: min(2.22vw, 3.2rem);
	font-weight: 700;
	line-height: min(2.22vw, 3.2rem);
}

@media screen and (max-width: 767px) {
	.access .c-heading-02 {
		font-size: min(6.4vw, 4.8rem);
		margin-top: 0;
		line-height: 1.5;
	}
}

.access .p-kv__map-wrap {
	margin-top: min(3.47vw, 50px);
}

@media screen and (max-width: 767px) {
	.access .p-kv__map-wrap {
		margin-top: min(6.93vw, 52px);
	}
}

.access .p-kv__map {
	aspect-ratio: 16 / 9;
	width: 100%;
	height: auto;
	vertical-align: bottom;
}

.access .p-kv__detail-wrap {
	margin: min(2.08vw, 30px) auto 0;
	width: min(45vw, 648px);
}

@media screen and (max-width: 767px) {
	.access .p-kv__detail-wrap {
		margin: min(6.93vw, 52px) auto 0;
		width: 100%;
	}
}

.access .p-kv__detail-wrap dl {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.access .p-kv__detail-wrap dt {
  width: 20%;
  padding: min(1.39vw, 20px) min(1.39vw, 20px) min(1.39vw, 20px) 0;
  border-bottom: 1px solid #DCDCDC;
}

@media screen and (max-width: 767px) {
	.access .p-kv__detail-wrap dt {
		width: 25%;
		padding: min(5.33vw, 40px) min(5.33vw, 40px) min(5.33vw, 40px) 0;
	}
}

.access .p-kv__detail-wrap dl:first-of-type dt {
  padding: 0 min(1.39vw, 20px) min(1.39vw, 20px) 0;
}

@media screen and (max-width: 767px) {
	.access .p-kv__detail-wrap dl:first-of-type dt {
		padding: 0 min(5.33vw, 40px) min(5.33vw, 40px) 0;
	}
}

.access .p-kv__detail-wrap dd {
  width: 80%;
  padding: min(1.39vw, 20px) 0;
  border-bottom: 1px solid #DCDCDC;
}

@media screen and (max-width: 767px) {
	.access .p-kv__detail-wrap dd {
		width: 75%;
		padding: min(5.33vw, 40px) 0;
	}
}

.access .p-kv__detail-wrap dl:first-of-type dd {
  padding: 0 0 min(1.39vw, 20px) 0;
}

@media screen and (max-width: 767px) {
	.access .p-kv__detail-wrap dl:first-of-type dd {
		padding: 0 0 min(5.33vw, 40px) 0;
	}
}

.access .p-kv__contact-wrap {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	width: min(42.36vw, 610px);
	margin: min(3.47vw, 50px) auto 0;
	padding: min(1.04vw, 15px) min(2.08vw, 30px);
	border: 1px solid #170D03;
}

@media screen and (max-width: 767px) {
	.access .p-kv__contact-wrap {
		grid-template-columns: 1fr;
		width: 100%;
		margin-top: min(8vw, 60px);
		padding: min(4vw, 30px);
	}
}

.access .p-kv__contact-wrap .p-kv__text-wrap {
	border-right: 1px solid #170D03;
}

@media screen and (max-width: 767px) {
	.access .p-kv__contact-wrap .p-kv__text-wrap {
		position: relative;
		border-right: none;
		padding-bottom: min(2.93vw, 22px);
	}
}

@media screen and (max-width: 767px) {
	.access .p-kv__contact-wrap .p-kv__text-wrap::after {
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		content: '';
		width: min(13.33vw, 100px);
		height: 1px;
		background: #170D03;
	}
}

.access .p-kv__contact-wrap .p-kv__text {
	text-align: center;
}

.access .p-kv__contact-item {
	display: flex;
	justify-content: center;
	text-align: center;
}

@media screen and (max-width: 767px) {
	.access .p-kv__contact-item {
		margin-top: min(2.67vw, 20px);
	}
}

.access .p-kv__contact-item a {
	position: relative;
	display: inline-block;
	color: #CE5C17;
	padding-right: min(2.78vw, 40px);
}

@media screen and (max-width: 767px) {
	.access .p-kv__contact-item a {
		padding-right: min(10.67vw, 80px);
	}
}

.access .p-kv__contact-item a::after {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	content: '';
	width: min(1.67vw, 24px);
	height: min(1.46vw, 21px);
	background: url(./assets/img/icon-mail.svg) no-repeat top left / 100% auto;
}

@media screen and (max-width: 767px) {
	.access .p-kv__contact-item a::after {
		width: min(6.4vw, 48px);
		height: min(5.6vw, 42px);
	}
}



/* works */
.works .p-kv__img-wrap {
	position: absolute;
	top: max(-2.78vw, -40px);
	left: min(27.78vw, 400px);
	transform: rotate(5deg);
	width: min(25vw, 360px);
	z-index: 0;
	opacity: 0.4;
}

@media screen and (max-width: 767px) {
	.works .p-kv__img-wrap {
		top: max(-40vw, -300px);
		left: max(-16vw, -120px);
		width: 40vw;
	}
}

.works .p-kv__inner-body {
	position: relative;
	width: min(76.39vw, 1100px);
	margin: 0 auto;
	padding: min(10.42vw, 150px) 20px;
}

@media screen and (max-width: 767px) {
	.works .p-kv__inner-body {
		width: 100%;
		padding: min(10.42vw, 150px) 18px;
	}
}

.works .p-kv__heading-wrap {
	color: #AE1B29;
	text-align: center;
}

.works .p-kv__sub-heading {
	font-size: min(0.69vw, 1rem);
	font-weight: 500;
}

@media screen and (max-width: 767px) {
	.works .p-kv__sub-heading {
		font-size: min(2.67vw, 2rem);
	}
}

.works .c-heading-02 {
	font-size: min(2.22vw, 3.2rem);
	font-weight: 700;
	line-height: min(2.22vw, 3.2rem);
}

@media screen and (max-width: 767px) {
	.works .c-heading-02 {
		font-size: min(6.4vw, 4.8rem);
		margin-top: 0;
		line-height: 1.5;
	}
}

/* works slider */
.works .p-kv__slider-area {
	margin-top: min(3.47vw, 50px);
}

@media screen and (max-width: 767px) {
	.works .p-kv__slider-area {
		margin-top: min(6.93vw, 52px);
	}
}

.p-kv__slider-wrap {
  opacity: 0;
  transition: opacity .3s linear;
}

.p-kv__slider-wrap.slick-initialized{
  opacity: 1;
}

.p-kv__slider-wrap.slick-dotted.slick-slider {
	margin-bottom: 0;
}

.p-kv__slider-wrap .slick-prev,
.p-kv__slider-wrap .slick-next {
	width: min(1.04vw, 15px);
	height: min(1.04vw, 15px);
	border-right: 1px solid #170D03;
	border-bottom: 1px solid #170D03;
}

.p-kv__slider-wrap .slick-prev {
	transform: rotate(135deg);
	left: max(-1.74vw, -25px);
}

.p-kv__slider-wrap .slick-next {
	transform: rotate(-45deg);
	right: max(-1.74vw, -25px);
}

.p-kv__slider-wrap .slick-slide {
	margin: 0 min(1.04vw, 15px);
	border-radius: 15px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.p-kv__slider-wrap .slick-track {
	padding-bottom: min(0.69vw, 10px);
}

.p-kv__slider-wrap .slick-slide a {
	position: relative;
}

.p-kv__slider-wrap .slick-slide a img {
	border-radius: 15px;
	width: 100%;
}

.p-kv__slider-text-wrap {
	position: absolute;
	bottom: min(11.11vw, 160px);
	left: 0;
}

.p-kv__slider-text-wrap span {
	display: inline-block;
	padding: min(0.35vw, 5px) min(0.69vw, 10px);
	border-radius: 0 40px 40px 0;
	background: #EFE6E6;
	color: #170D03;
	font-size: min(0.56vw, 8px);
}

.p-kv__slider-text-wrap span:last-of-type {
	margin-top: min(0.21vw, 3px);
}

.p-kv__slider-wrap .slick-dots {
	bottom: max(-1.53vw, -22px);
}

.p-kv__slider-wrap .slick-dots li,
.p-kv__slider-wrap .slick-dots li button {
	width: min(0.97vw, 14px);
	height: min(0.97vw, 14px);
}

.p-kv__slider-wrap .slick-dots li {
	margin: 0;
}

.p-kv__slider-wrap .slick-dots li:not(:first-of-type) {
	margin-left: min(0.56vw, 8px);
}

.p-kv__slider-wrap .slick-dots li button::before {
	font-size: 0;
	line-height: 1.5;
	width: min(0.97vw, 14px);
	height: min(0.97vw, 14px);
	background: #D9D9D9;
	border-radius: 50%;
	opacity: 1;
}
.p-kv__slider-wrap .slick-dots li.slick-active button::before {
	background: #AE1B29;
}

.slick-prev::before, .slick-next::before {
	font-size: 0;
	opacity: 1;
}


/* works scroll */
.p-kv__scroll-area {
	overflow: hidden;
	overflow-y: scroll;
	max-height: calc(100vh - 297px);
	margin-top: min(6.93vw, 52px);
	padding: 0 10px min(2.67vw, 20px);
}

.p-kv__scroll-area::-webkit-scrollbar {
	border: 1px solid #ACABAA;
	width: min(2.67vw, 10px);
}

.p-kv__scroll-area::-webkit-scrollbar-thumb {
	background: #D9D9D9;
}

.p-kv__scroll-item {
	border-radius: 15px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.p-kv__scroll-item:not(:first-of-type) {
	margin-top: min(5.33vw, 40px);
}

.p-kv__scroll-item a {
	position: relative;
	display: block;
}

.p-kv__scroll-item a img {
	border-radius: 15px;
	width: 100%;
}

.p-kv__scroll-text-wrap {
	position: absolute;
	bottom: min(42.67vw, 320px);
	left: 0;
}

.p-kv__scroll-text-wrap span {
	display: inline-block;
	padding: min(1.33vw, 10px) min(2.67vw, 20px);
	border-radius: 0 40px 40px 0;
	background: #EFE6E6;
	color: #170D03;
	font-size: min(2.13vw, 16px);
}

.p-kv__scroll-text-wrap span:last-of-type {
	margin-top: min(0.8vw, 6px);
}


/* modal */
.p-modal {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	transition: .5s all;
	opacity: 0;
	visibility: hidden;
	z-index: 100001;
}

.p-modal.is-show {
	opacity: 1;
	visibility: visible;
}

.p-modal__bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
	opacity: 0.4;
	cursor: pointer;
}

.p-modal__contents-wrap {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: flex;
	align-items: center;
	justify-content: center;
}

.p-modal__body {
	background: #FFF;
	padding: min(2.08vw, 30px);
	text-align: center;
}

.p-modal.modal--01 .p-modal__contents-wrap {
	max-width: 300px;
}

.p-modal.modal--02 .p-modal__contents-wrap {
	max-width: 300px;
}

.p-modal.modal--03 .p-modal__contents-wrap {
	max-width: 500px;
}

.p-modal.modal--04 .p-modal__contents-wrap {
	max-width: 500px;
}



/* footer */
.l-footer {
	position: relative;
	background: #FFF;
	border-top: 1px solid #170D03;
}

.l-footer__inner {
	position: relative;
	display: flex;
	align-items: center;
	padding: 8px 15px;
}

@media screen and (max-width: 1000px) {
	.l-footer__inner {
		justify-content: space-between;
	}
}

@media screen and (max-width: 767px) {
	.l-footer__inner {
		justify-content: center;
		padding: 10px 18px;
	}
}

.l-footer__content-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.l-footer__img-wrap {
	max-width: 82px;
	margin-right: 7px;
}

@media screen and (max-width: 767px) {
	.l-footer__img-wrap {
		max-width: 39px;
	}
}

.l-footer__img-wrap img {
	display: block;
}

.l-footer__text,
.l-footer__copy-text {
	font-size: 1rem;
	font-weight: bold;
}

@media screen and (max-width: 767px) {
	.l-footer__text:last-of-type {
		margin-top: 5px;
	}
}

.l-footer__copy-wrap {
	position: absolute;
	top: 50%;
	left: calc(50% + 145px);
	transform: translate(-50%, -50%);
}

@media screen and (max-width: 1440px) {
	.l-footer__copy-wrap {
		left: calc(50% + 10.07vw);
	}
}

@media screen and (max-width: 1000px) {
	.l-footer__copy-wrap {
		position: static;
		transform: translate(0, 0);
	}
}
