*,
*::before,
*::after {
	box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
	border: 0;
	font: inherit;
	font-size: 100%;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}

html {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

li,
dd {
	list-style-type: none;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
	display: block;
}

img {
	border: none;
	vertical-align: bottom;
}

a {
	cursor: pointer;
	text-decoration: none;
}

body {
	color: #fff;
	font-family: "Cantarell", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
}

img {
	height: auto;
	max-width: 100%;
}

a {
	color: inherit;
}

.l-wrapper {
	background-color: #1e1e1e;
	overflow: hidden;
}

.l-header {
	background-color: #1e1e1e;
	height: 64px;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 30;
}

.l-header__inner {
	align-items: center;
	display: flex;
	height: inherit;
	justify-content: space-between;
	padding-left: 16px;
	padding-right: 16px;
	width: 100%;
}

.l-header__logo img {
	width: 80px;
}

.l-header__open {
	margin-left: auto;
	margin-top: 6px;
}

.l-main {
	margin-top: 64px;
}

.l-footer {
	margin-top: 60px;
}

.l-footer__inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 650px;
	padding-left: 20px;
	padding-right: 20px;
}

.l-footer__logo {
	margin: 0 auto;
	width: 250px;
}

.l-footer__divider {
	background-color: #696969;
	border: none;
	height: 1px;
}

.l-footer__copyright {
	display: block;
	margin-bottom: 8px;
	text-align: center;
}

.c-drawer-icon {
	background-color: #1e1e1e;
	height: 27px;
	position: relative;
	width: 32px;
}

.c-drawer-icon.is-checked .c-drawer-icon__bar:nth-of-type(1) {
	top: 10px;
	transform: rotate(45deg);
}

.c-drawer-icon.is-checked .c-drawer-icon__bar:nth-of-type(2) {
	display: none;
}

.c-drawer-icon.is-checked .c-drawer-icon__bar:nth-of-type(3) {
	top: 10px;
	transform: rotate(-45deg);
}

.c-drawer-icon__bar {
	background-color: #696969;
	height: 1px;
	left: 0;
	position: absolute;
	transition: transform 0.3s linear, top 0.3s linear;
	width: 32px;
}

.c-drawer-icon__bar:nth-child(1) {
	top: 0;
}

.c-drawer-icon__bar:nth-child(2) {
	top: 50%;
	transform: translateY(-50%);
}

.c-drawer-icon__bar:nth-child(3) {
	bottom: 0;
}

.c-section-title {
	display: inline-block;
	font-size: 28px;
	position: relative;
}

.c-work-card__line {
	background-color: #696969;
	height: 1px;
	width: 100%;
}

.c-work-card__image {
	border-radius: 16px;
	margin-top: 32px;
	width: 100%;
}

.c-work-card__title {
	font-size: 24px;
	margin-top: 24px;
}

.c-work-card__text {
	margin-top: 8px;
	text-align: justify;
}

.c-work-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 12px;
}

.c-work-card__tag {
	border: 1px solid #696969;
	border-radius: 6px;
	padding: 2px 12px;
}

.c-work-card__link {
	margin-top: 24px;
}

.c-work-card__anchor {
	cursor: pointer;
	padding-right: 30px;
	position: relative;
}

.c-work-card__anchor::after {
	background: url(../img/arrow.svg) no-repeat center;
	background-size: contain;
	content: "";
	height: 12px;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 8px;
}

.c-sns-icons {
	display: flex;
	gap: 12px;
	justify-content: center;
	margin-top: 22px;
}

.c-sns-icons__link {
	font-size: 24px;
}

.p-header-nav {
	display: none;
}

.p-drawer-content {
	background-color: #1e1e1e;
	height: calc(100dvh - 64px);
	left: 0;
	overflow-y: auto;
	padding-bottom: 60px;
	padding-top: 60px;
	position: fixed;
	top: 64px;
	transform: translateY(-100%);
	transition: transform 0.3s;
	width: 100%;
	z-index: 20;
}

.p-drawer-content.is-checked {
	transform: translateY(0);
}

.p-drawer-content__menu {
	margin-left: auto;
	margin-right: auto;
	width: -moz-fit-content;
	width: fit-content;
}

.p-drawer-content__link {
	display: block;
	padding-bottom: 20px;
	padding-top: 20px;
	text-align: center;
}

.p-first-view {
	height: calc(100vh - 64px);
	overflow: hidden;
	position: relative;
}

.p-first-view__background-image {
	left: 50%;
	min-height: 100%;
	min-width: 100%;
	position: absolute;
	top: 0;
	transform: translateX(-50%);
	-o-object-fit: cover;
	object-fit: cover;
	z-index: 0;
}

.p-first-view__inner {
	align-items: center;
	display: flex;
	height: 100%;
	margin-left: auto;
	margin-right: auto;
	max-width: 650px;
	padding-left: 20px;
	padding-right: 20px;
	position: relative;
	text-align: justify;
	width: 100%;
}

.p-first-view__catchcopy {
	text-align: justify;
	width: 100%;
}

.p-first-view__catchcopy-title {
	font-size: 32px;
}

.p-first-view__catchcopy-text {
	margin-top: 10px;
}

.p-works {
	margin-top: 64px;
}

.p-works__inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 650px;
	padding-left: 20px;
	padding-right: 20px;
}

.p-works__list {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

@media screen and (min-width: 768px) {

.l-header__inner {
	padding-left: 64px;
	padding-right: 64px;
}

.l-header__open {
	display: none;
}

.l-footer {
	margin-top: 80px;
}

.l-footer__inner {
	max-width: 1280px;
}

.l-footer__logo {
	width: 300px;
}

.l-footer__copyright {
	margin-bottom: 20px;
	margin-top: 20px;
}

.c-work-card__content {
	align-items: center;
	display: flex;
	gap: 80px;
}

.c-work-card__image {
	margin-top: 48px;
	width: 48%;
}

.c-work-card__title {
	font-size: 32px;
	margin-top: 0;
}

.c-work-card__tags {
	margin-top: 16px;
}

.c-work-card__link {
	margin-top: 32px;
}

.p-header-nav {
	align-items: center;
	display: flex;
	gap: 32px;
	margin-left: auto;
}

.p-first-view__inner {
	margin-left: 0;
	max-width: 740px;
	padding-left: 64px;
	padding-right: 64px;
}

.p-first-view__catchcopy-title {
	font-size: 56px;
}

.p-first-view__catchcopy-text {
	font-size: 18px;
}

.p-works {
	margin-top: 112px;
}

.p-works__inner {
	max-width: 1280px;
	padding-left: 64px;
	padding-right: 64px;
}

.p-works__list {
	gap: 48px;
}

}

