@charset "UTF-8";
/*
* このcssファイルは直接編集しないでください。
* 必要な変更は元のSassファイルで行ってください。
*/
/* ============================
* base
* ========================= */
/* Basic font size */
html {
	font-size: 16px;
}

/* default setting */
body {
	background-color: #fff;
	color: #716a67;
	font-family: "fot-tsukuardgothic-std", sans-serif;
	font-feature-settings: "palt";
	font-size: 1em;
	font-weight: 400;
	line-height: 1.5;
	min-height: 100vh;
	position: relative;
	box-sizing: border-box;
}
@media screen and (min-width: 768px) {
	body {
		font-size: 1.125rem;
	}
}

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

img {
	border-style: none;
	box-sizing: border-box;
	height: auto;
	object-fit: cover;
	max-width: 100%;
	vertical-align: bottom;
}

li {
	list-style: none;
}

h3 {
	font-size: 1.3rem;
	font-weight: bold;
	letter-spacing: 2px;
	line-height: 1.6rem;
}

p {
	line-height: 1.6;
}

body.is-active .slide-down {
	transition: opacity 0.7s 0.2s, transform 0.7s 0.2s, -webkit-transform 0.7s 0.2s;
}
body.is-active .g-nav__menu-wrap {
	transition: opacity 0.5s, transform 0.5s, -webkit-transform 0.5s;
}

body.is-active .slide-up,
body.is-active .slide-down,
body.is-active .slide-right,
body.is-active .slide-left {
	-webkit-transition: opacity 0.7s 0.2s, -webkit-transform 0.7s 0.2s;
}

/* ============================
* 共通
* ========================= */
.common {
	padding: 4rem 0;
}
@media screen and (min-width: 992px) {
	.common {
		padding: 5rem 0;
	}
}
.common:nth-of-type(odd):not(:first-of-type) {
	background-color: #fff;
}
.common:nth-of-type(even) {
	background-color: #e5e2de;
}
.common__inner {
	padding: 0 20px;
	width: 100%;
}
@media screen and (min-width: 992px) {
	.common__inner {
		padding: 0 40px;
		width: 100%;
	}
}
@media screen and (min-width: 1200px) {
	.common__inner {
		max-width: 1100px;
		margin: 0 auto;
		padding: 0;
	}
}
.sec-title {
	font-size: 1.4rem;
	font-weight: bold;
	font-family: "Cagliostro", sans-serif;
	letter-spacing: 0.2em;
	line-height: 1;
	margin: 0 auto 3rem auto;
	text-align: center;
	width: fit-content;
	display: block;
	padding: 0 2em 1rem;
	background-image: repeating-linear-gradient(90deg, #b0cab4 0px, #b0cab4 12px, rgba(0, 0, 0, 0) 12px, rgba(0, 0, 0, 0) 20px);
	background-size: 20px 2px;
	background-repeat: repeat-x;
	background-position: center bottom;
}
@media screen and (min-width: 768px) {
	.sec-title {
		font-size: 1.7rem;
		padding: 20px 40px;
		background-size: 20px 4px;
	}
}

.sec-text {
	font-size: 1rem;
	font-weight: bold;
	line-height: 1.5;
	margin-bottom: 3rem;
}

/* ============================
* 改行
* ========================= */
.sp_br {
	display: none;
}
@media screen and (min-width: 576px) {
	.sp_br {
		display: block;
	}
}

@media screen and (min-width: 576px) {
	.noneSp {
		display: none;
	}
}

/* ============================
* header
* ========================= */
.g-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	pointer-events: none;
}
.g-header__wrap {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 120px;
	opacity: 1;
}
.g-header__logo {
	width: 100%;
}
.g-header__logo a {
	color: #716a67;
	display: flex;
	align-items: center;
}
.g-header__logo span {
	font-size: 1rem;
	font-weight: bold;
	letter-spacing: 0.1em;
}
.g-header__menu-btn {
	display: none;
}
@media screen and (min-width: 992px) {
	.g-header__menu-btn {
		display: flex;
		align-items: center;
		justify-content: flex-end;
		width: 60px;
		padding: 10px;
		z-index: 9999;
	}
}
.g-header__menu-btn__trigger {
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 10px;
	width: 100%;
	height: 100%;
	position: relative;
}
.g-header__menu-btn__trigger span {
	display: inline-block;
	transition: all 0.4s;
}
.g-header__menu-btn__trigger span:nth-child(odd) {
	background: #b0cab4;
	height: 2px;
	width: 100%;
}
.g-header__menu-btn__trigger span:nth-child(2) {
	color: #b0cab4;
	font-size: 0.8rem;
	font-weight: bold;
	text-transform: uppercase;
}
.g-header__menu-btn__trigger:hover {
	opacity: 1;
}
.g-header__menu-btn .is-active span {
	position: absolute;
}
.g-header__menu-btn .is-active span:nth-child(1) {
	transform: translate(0%, -50%) rotate(-45deg);
	top: 50%;
	left: 50%;
}
.g-header__menu-btn .is-active span:nth-child(2) {
	opacity: 0;
}
.g-header__menu-btn .is-active span:nth-child(3) {
	transform: translate(0%, 50%) rotate(45deg);
	top: 50%;
	left: 50%;
}
.g-header__menu {
	pointer-events: all;
	position: relative;
	font-size: 0.9rem;
	margin: 0 20px;
	opacity: 1;
	z-index: 1;
}
@media screen and (min-width: 992px) {
	.g-header__menu {
		margin: inherit;
		pointer-events: none;
		position: absolute;
		top: 80px;
		opacity: 0;
	}
}
.g-header__menu.js-drawer {
	background-color: #e5e2de;
	color: #716a67;
	box-sizing: border-box;
	display: block;
	height: calc(100vh - 80px);
	overflow-y: auto;
	opacity: 0;
	padding: 40px 40px 150px;
	width: 100%;
	transition: 0.5s;
	opacity: 1;
	pointer-events: all;
	position: absolute;
	top: 80px;
	right: 0;
}
.g-header__menu-list {
	display: flex;
	gap: 20px;
}
@media screen and (min-width: 992px) {
	.g-header__menu-list {
		flex-direction: column;
		gap: 30px;
	}
}
.g-header__menu-item {
	display: inline-block;
	transition: 0.3s;
}
.g-header__menu-item:not(:last-child) {
	margin-right: 10px;
}
@media screen and (min-width: 992px) {
	.g-header__menu-item:not(:last-child) {
		margin-right: 20px;
	}
}
.g-header__menu-item a {
	display: block;
	font-size: 1rem;
	font-weight: bold;
	line-height: 1.1;
	letter-spacing: 1px;
	transition: color 0.3s;
	position: relative;
}
@media screen and (min-width: 992px) {
	.g-header__menu-item a {
		color: #716a67;
		font-size: 1.5rem;
	}
}
.g-header__menu-item a:after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 50%;
	width: 0;
	height: 3px;
	transition: 0.3s;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #b0cab4;
}
.g-header__menu-item a:hover:after {
	width: 100%;
}

.g-header.is-active .g-nav {
	pointer-events: auto;
	opacity: 1;
}
.g-header.is-active .g-nav__btn {
	transform: scale(1, -1);
}
.g-header.is-active .g-nav__menu {
	pointer-events: auto;
	opacity: 1;
}
.g-header.is-active .g-nav__menu-wrap {
	opacity: 1;
	transform: translateY(0);
}

.pageup {
	position: fixed;
	right: 3rem;
	bottom: 2.2rem;
	width: 40px;
	height: 40px;
	cursor: pointer;
	opacity: 0;
	pointer-events: none;
	-webkit-transition: opacity 0.2s;
	transition: opacity 0.2s;
	z-index: 100;
}

.pageup:before {
	content: "";
	position: absolute;
	top: 50%;
	right: 50%;
	display: block;
	width: 18px;
	height: 18px;
	margin-top: -8px;
	border-top: 2.5px var(--color-text) solid;
	border-right: 2.5px var(--color-text) solid;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transform-origin: right top;
	transform-origin: right top;
}

.pageup.is-active {
	opacity: 1;
	pointer-events: auto;
}

.overlay {
	display: block;
	pointer-events: none;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: #b0cab4;
	opacity: 0;
	transition: opacity 0.3s;
	z-index: 0;
}
.overlay.is-active {
	pointer-events: auto;
	opacity: 0.7;
	z-index: 500;
}
.overlay.is-alert {
	opacity: 0.5;
	z-index: 2000;
	background-color: #CEDDD0;
}

body.is-active .slide-up,
body.is-active .slide-down,
body.is-active .slide-right,
body.is-active .slide-left {
	-webkit-transition: opacity 0.7s 0.2s, -webkit-transform 0.7s 0.2s;
}

body.is-active .fadein {
	opacity: 1;
	-webkit-transition: opacity 0.5s 0.2s;
	transition: opacity 0.5s 0.2s;
}

body.is-active .g-header__logo {
	-webkit-transition: opacity 0.4s 0.1s, -webkit-transform 0.4s 0.1s;
	transition: opacity 0.4s 0.1s, -webkit-transform 0.4s 0.1s;
	transition: transform 0.4s 0.1s, opacity 0.4s 0.1s;
	transition: transform 0.4s 0.1s, opacity 0.4s 0.1s, -webkit-transform 0.4s 0.1s;
}

.g-header.is-down:not(.is-hometop) .g-header__logo {
	opacity: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

/* ============================
* gnav
* ========================= */
.g-nav {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	flex: 1 1 20%;
	height: 100%;
}
.g-nav__btn {
	display: inline-block;
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	position: relative;
	transition: transform 0.5s, -webkit-transform 0.5s;
	transform-origin: center center;
	z-index: 2;
	cursor: pointer;
	pointer-events: all;
}
.g-nav__toggle-arr {
	position: absolute;
	bottom: 50%;
	right: 50%;
	border-right: 4px #716a67 solid;
	border-bottom: 4px #716a67 solid;
	width: 28px;
	height: 28px;
	margin-bottom: -12px;
	transform: rotate(45deg);
	transform-origin: right bottom;
}
@media screen and (min-width: 992px) {
	.g-nav__toggle-arr {
		width: 24px;
		height: 24px;
		border-width: 3px;
		margin-bottom: -10px;
	}
}
@media screen and (min-width: 576px) {
	.g-nav__toggle-arr {
		width: 20px;
		height: 20px;
		border-width: 3px;
		margin-bottom: -9px;
	}
}
.g-nav__menu {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	right: -2rem;
	opacity: 0;
	transition: opacity 0.3s;
	z-index: 1;
}
.g-nav__menu-wrap {
	margin: 0 auto;
	max-height: 100vh;
	overflow: auto;
	padding: 0;
	width: 100%;
	padding: 7.8rem 2rem 2rem;
	opacity: 0;
	transform: translateY(-30px);
	width: 320px;
}
.g-nav__menu-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
@media screen and (min-width: 992px) {
	.g-nav__menu-list {
		gap: 20px;
	}
}
.g-nav__menu-item {
	display: inline-block;
	transition: 0.3s;
}
.g-nav__menu-item:not(:last-child) {
	margin-right: 10px;
}
@media screen and (min-width: 992px) {
	.g-nav__menu-item:not(:last-child) {
		margin-right: 20px;
	}
}
.g-nav__menu-item a {
	color: #fff;
	display: block;
	font-family: "Cagliostro", sans-serif;
	font-size: 1rem;
	font-weight: bold;
	line-height: 1.1;
	letter-spacing: 1px;
	transition: color 0.3s;
	position: relative;
}
@media screen and (min-width: 992px) {
	.g-nav__menu-item a {
		color: #716a67;
		font-size: 1.5rem;
	}
}
.g-nav__menu-item a:after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 50%;
	width: 0;
	height: 3px;
	transition: 0.3s;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #fff;
}
.g-nav__menu-item a:hover:after {
	width: 100%;
}

/* 画像を拡大 */
.zoomIn a:hover img {
	transform: scale(1.2);
}
.zoomIn img {
	transform: scale(1);
	transition: 0.3s ease-in-out;
}
.zoomIn .mask {
	display: block;
	line-height: 0;
	overflow: hidden;
	height: 100%;
}

/* ============================
* footer
* ========================= */
.footer .copyright {
	color: #e5e2de;
	background-color: #8f8b8a;
	font-size: 0.7rem;
	padding: 10px;
	width: 100%;
	text-align: center;
}

/* ============================
* HOME page
* ========================= */
.mv {
	background: #b0cab4;
	width: 100%;
	height: 100vh;
	text-align: center;
	position: relative;
	z-index: 10;
}
@media screen and (min-width: 768px) {
	.mv {
		height: auto;
	}
}
@media screen and (min-width: 1200px) {
	.mv {
		height: 100vh;
	}
}
.mv__img {
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.mv__img img {
	height: 100%;
	width: 100%;
}
@media screen and (min-width: 768px) {
	.mv__img img {
		width: 100%;
		height: auto;
	}
}
@media screen and (min-width: 992px) {
	.mv__img img {
		height: 100%;
	}
}
.mv__text {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	padding: 14vh 0;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, 0);
	z-index: 1;
}
@media screen and (min-width: 768px) {
	.mv__text {
		padding: 4vh 0;
	}
}
@media screen and (min-width: 1200px) {
	.mv__text {
		padding: 8vh 0;
	}
}
@media screen and (min-width: 1600px) {
	.mv__text {
		padding: 6vh 0;
	}
}
.mv__about {
	color: #716a67;
	font-family: "Cagliostro", sans-serif;
	font-weight: bold;
	text-shadow: 4px 4px 4px rgba(51, 51, 51, 0.3);
}
.mv__about__name {
	font-size: 8vw;
	letter-spacing: 0.4rem;
	line-height: 1;
}
@media screen and (min-width: 768px) {
	.mv__about__name {
		font-size: 2rem;
	}
}
@media screen and (min-width: 992px) {
	.mv__about__name {
		font-size: 2.5rem;
	}
}
@media screen and (min-width: 1200px) {
	.mv__about__name {
		font-size: 3rem;
	}
}
@media screen and (min-width: 1600px) {
	.mv__about__name {
		font-size: 4rem;
	}
}
.mv__about__profession {
	font-size: 4vw;
	padding-top: 6px;
	letter-spacing: 2px;
	line-height: 1;
}
@media screen and (min-width: 576px) {
	.mv__about__profession {
		font-size: 3vw;
	}
}
@media screen and (min-width: 768px) {
	.mv__about__profession {
		font-size: 1.5rem;
		padding-top: 1rem;
	}
}
.mv__catch {
	background: rgba(255, 255, 255, 0.7);
	font-size: 8vw;
	font-weight: bold;
	line-height: 1.2;
	padding: 0.5rem 0 0.625rem;
	width: 100%;
}
@media screen and (min-width: 768px) {
	.mv__catch {
		font-size: 4vw;
	}
}
.mv__catch span {
	font-size: 150%;
	padding: 0 0.2em;
}
@media screen and (min-width: 768px) {
	.mv__catch br {
		display: none;
	}
}

.home__title {
	font-size: 1.6rem;
	font-weight: bold;
	font-family: "Cagliostro", sans-serif;
	letter-spacing: 0.2em;
	line-height: 1;
	margin: 0 auto;
	margin-bottom: 3rem;
	text-align: center;
	width: fit-content;
	display: block;
	padding: 0 2em 1rem;
	background-image: repeating-linear-gradient(90deg, #b0cab4 0px, #b0cab4 12px, rgba(0, 0, 0, 0) 12px, rgba(0, 0, 0, 0) 20px);
	background-size: 20px 2px;
	background-repeat: repeat-x;
	background-position: center bottom;
}
@media screen and (min-width: 768px) {
	.home__title {
		background-size: 20px 4px;
		font-size: 1.5rem;
	}
}
@media screen and (min-width: 992px) {
	.home__title {
		font-size: 3rem;
		margin-bottom: 5rem;
		padding: 20px 40px;
	}
}
.home__view-more {
	width: fit-content;
	height: 100%;
	margin: 60px auto 0 auto;
	text-align: center;
}
@media screen and (min-width: 992px) {
	.home__view-more {
		margin-top: 80px;
	}
}
.home__view-more a {
	background: #b0cab4;
	border-radius: 100ch;
	color: #fff;
	display: block;
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 1;
	padding: 20px 40px;
	text-decoration: none !important;
	transition: padding-bottom 0.2s, margin-bottom 0.2s;
}
.home__view-more a:hover {
	background: #8f8b8a;
	opacity: 0.7;
}
@media screen and (min-width: 576px) {
	.home__view-more a {
		padding: 20px 60px;
	}
}

.about__inner {
	background: linear-gradient(180deg, #b0cab4 0%, #e5e2de 100%) center center no-repeat;
}
.about__headline {
	background-image: repeating-linear-gradient(90deg, #EFEDEB 0px, #EFEDEB 12px, rgba(0, 0, 0, 0) 12px, rgba(0, 0, 0, 0) 20px);
}
.about__button {
	margin: 80px auto 0 auto;
	width: fit-content;
}
.about__button a {
	color: #fff;
	background-color: #b0cab4;
	border-radius: 100vh;
	display: block;
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 1;
	padding: 20px 40px;
}
.about__button a:hover {
	background: #8f8b8a;
	opacity: 0.7;
}
@media screen and (min-width: 576px) {
	.about__button a {
		padding: 20px 60px;
	}
}

.about-info {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 80px;
	text-align: center;
	padding: 100px 0;
}
.about-info__img {
	margin: 0 2.5rem;
}
@media screen and (min-width: 768px) {
	.about-info__img {
		width: 300px;
		margin: 0 auto;
	}
}
@media screen and (min-width: 992px) {
	.about-info__img {
		width: 20%;
	}
}
.about-info__img img {
	border-radius: 30% 70% 70% 30%/30% 30% 70% 70%;
}
.about-info__text {
	display: flex;
	flex-direction: column;
	gap: 40px;
	margin-top: 40px;
}
.about-info__name {
	display: flex;
	flex-direction: column;
	font-weight: bold;
	line-height: 1;
}
.about-info__name .name-ja {
	font-size: 1.4rem;
}
@media screen and (min-width: 576px) {
	.about-info__name .name-ja {
		font-size: 1.8rem;
	}
}
.about-info__name .name-en {
	font-size: 1rem;
	padding-top: 10px;
}
@media screen and (min-width: 576px) {
	.about-info__name .name-en {
		font-size: 1.6rem;
	}
}
.about-info__profession {
	font-size: 1rem;
	line-height: 1.5;
}
.about-info__outline {
	font-size: 1rem;
	line-height: 1.5;
	text-align: left;
}
.about-info__outline + .about-info__outline {
	padding-top: 1.25rem;
}
@media screen and (min-width: 576px) {
	.about-info__outline {
		text-align: center;
	}
}

.about-info-skill__title {
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 1;
	padding-bottom: 1.25rem;
}

.works {
	background: #e5e2de;
}
.works__content {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}
.works__content:not(:last-child) {
	margin-bottom: 80px;
}
@media screen and (min-width: 992px) {
	.works__content {
		gap: 60px;
	}
}
.works__img {
	height: 80vh;
	overflow-y: scroll;
	scroll-snap-type: y;
	touch-action: pan-y;
	-webkit-overflow-scrolling: touch;
	cursor: grab;
}
@media screen and (min-width: 992px) {
	.works__img {
		max-height: 900px;
	}
}
.works__img img {
	width: 100%;
	scroll-snap-align: start;
	max-block-size: none;
}
.works__results {
	padding-top: 1.25rem;
}
.works__results span {
	font-size: 2rem;
	font-weight: bold;
}
.works__text {
	width: 100%;
}
.works__title-wrapper {
	text-align: center;
}
.works__title {
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 1;
}
@media screen and (min-width: 992px) {
	.works__title {
		font-size: 3rem;
	}
}
.works__note {
	font-size: 1rem;
	line-height: 1;
	margin-top: 10px;
}

.work-detail {
	display: flex;
	flex-direction: column;
	gap: 40px;
}
.work-detail__git {
	text-align: center;
}
.work-detail__git a {
	color: #716a67;
	display: block;
	background: linear-gradient(to right, #b0cab4 0%, #b0cab4 5px, transparent 5px);
	background-repeat: repeat-x;
	background-size: 100%;
	padding-left: 10px;
}
.work-detail__contents {
	display: flex;
	flex-direction: column;
	gap: 40px;
}
.work-detail__item {
	display: flex;
	gap: 10px;
}
.work-detail__item:not(:first-child) {
	flex-direction: column;
}
.work-detail__item:first-child {
	flex-direction: row;
	align-items: center;
}
.work-detail__name {
	font-size: 1rem;
	font-weight: bold;
	line-height: 1;
}
.work-detail__text {
	font-size: 1rem;
	line-height: 1.6;
}
.work-detail__text strong {
	font-size: 120%;
	font-weight: bold;
}
.work-detail__link {
	border-bottom: 2px solid #716a67;
	color: #716a67;
	font-size: 1rem;
	font-weight: bold;
	line-height: 1;
	margin: 0 auto;
	padding: 0 0.2rem 0.4rem 0.2rem;
	text-align: center;
	width: fit-content;
	text-decoration: none !important;
	transition: padding-bottom 0.2s, margin-bottom 0.2s;
}
.work-detail__link:hover {
	padding-bottom: 0.2rem;
	margin-bottom: 0.2rem;
}
@media screen and (min-width: 992px) {
	.work-detail__link {
		border-bottom: 4px solid #716a67;
	}
}

.work-private {
	margin-top: 80px;
	padding-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
	.work-private {
		padding-bottom: 3.75rem;
	}
}
.work-private__heading {
	font-size: 1.5rem;
	font-weight: bold;
	padding-bottom: 1.25rem;
	text-align: center;
}
.work-private__heading small {
	font-size: 1rem;
}
@media screen and (min-width: 992px) {
	.work-private__heading small {
		font-size: 70%;
	}
}
@media screen and (min-width: 992px) {
	.work-private__heading {
		font-size: 2rem;
	}
}
.work-private__desc {
	padding-bottom: 2.5rem;
}
.work-private__list {
	padding-left: 1.5rem;
	text-align: left;
}
.work-private__item {
	font-size: 1.125rem;
	list-style: circle;
}
.work-private__item + .work-private__item {
	padding-top: 1rem;
}
.work-private__title {
	font-size: 1.125rem;
	font-weight: bold;
}
.work-private__detail {
	padding-top: 0.625rem;
}
.work-private__text {
	font-size: 1rem;
}
.work-private__text strong {
	font-size: 120%;
	font-weight: bold;
}
.work-private__note {
	font-size: 0.875rem;
	padding-top: 1rem;
}

.home-service__main-wrap {
	display: flex;
	flex-direction: column;
	gap: 3rem;
}
@media screen and (min-width: 576px) {
	.home-service__main-wrap {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 80px;
	}
}
.home-service__main-content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 1.25rem;
}
@media screen and (min-width: 576px) {
	.home-service__main-content {
		gap: 2.5rem;
	}
}
.home-service__main-headline {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.home-service__main-img {
	margin-left: 40px;
	width: calc(100% - 40px);
	box-shadow: 10px 10px 2px #EFEDEB;
}
.home-service__main-title {
	background: #b0cab4;
	color: #fff;
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 1.2;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: -20px;
	padding: 10px 20px;
	word-break: break-word;
}
@media screen and (min-width: 992px) {
	.home-service__main-title {
		line-height: 1;
		padding: 20px 30px;
	}
}
.home-service__main-text {
	font-size: 1rem;
	line-height: 1.8;
}
.home-service__main-text p:not(:first-child) {
	padding-top: 1.25rem;
}
@media screen and (min-width: 992px) {
	.home-service__main-text p:not(:first-child) {
		padding-top: 2.5rem;
	}
}
.home-service__secondary-wrap {
	margin-top: 80px;
}
.home-service__table {
	border-collapse: separate;
	border-spacing: 5px;
	margin: 40px auto;
}
@media screen and (min-width: 992px) {
	.home-service__table {
		width: 80%;
	}
}
.home-service__table-item:nth-child(odd) {
	background-color: #EFEDEB;
}
.home-service__table-item th {
	background-color: #CEDDD0;
	border-radius: 4px;
	color: #fff;
	font-size: 1rem;
	line-height: 1.2;
	padding: 10px;
	text-align: center;
	width: 55%;
}
@media screen and (min-width: 576px) {
	.home-service__table-item th {
		padding: 20px;
	}
}
.home-service__table-item td {
	border-radius: 4px;
	padding: 10px;
	text-align: center;
	width: 45%;
	line-height: 1.2;
}
@media screen and (min-width: 576px) {
	.home-service__table-item td {
		padding: 20px;
	}
}

/*お問い合わせ*/
.contact {
	/*配置*/
	text-align: center;
}
.contact .lead {
	font-size: 1rem;
	line-height: 1.8;
	margin-bottom: 40px;
}
.contact .contact-btn {
	color: #fff;
	background: #b0cab4;
	border-radius: 100vh;
	display: inline-block;
	font-size: 1.2rem;
	font-weight: bold;
	text-align: center;
	width: auto;
	padding: 16px 40px;
	margin: 0 auto;
}
@media screen and (min-width: 576px) {
	.contact .contact-btn {
		font-size: 1.4rem;
		padding: 20px 40px;
	}
}
.contact .contact-btn:hover {
	background: #716a67;
	opacity: 0.6;
}
.contact .contact-list p {
	font-size: 1rem;
}
@media screen and (min-width: 576px) {
	.contact .contact-list p {
		font-size: 1.4rem;
	}
}

.about-me {
	text-align: center;
}
.about-me__inner {
	background: linear-gradient(180deg, #b0cab4 0%, #CEDDD0 100%) center center no-repeat;
}
.about-me__title {
	background-image: repeating-linear-gradient(90deg, #EFEDEB 0px, #EFEDEB 12px, rgba(0, 0, 0, 0) 12px, rgba(0, 0, 0, 0) 20px);
}

.about-skill {
	background: linear-gradient(180deg, #CEDDD0 0%, #EFEDEB 100%) center center no-repeat;
	padding: 100px 0;
}
.about-skill__title {
	font-family: "Cagliostro", sans-serif;
	font-size: 2rem;
	font-weight: bold;
	line-height: 1;
	margin-bottom: 80px;
}
.about-skill__sub-title {
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 1;
	margin-bottom: 2rem;
}
.about-skill__content {
	margin-bottom: 80px;
}
.about-skill__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
@media screen and (min-width: 768px) {
	.about-skill__list {
		display: flex;
		flex-wrap: wrap;
	}
}
.about-skill__list:not(:last-child) {
	margin-bottom: 60px;
}
.about-skill__list.skill-others {
	margin-bottom: 0;
}
.about-skill__item {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.about-skill__icon {
	aspect-ratio: 1/1;
	width: 80px;
	height: 80px;
	margin-left: auto;
	margin-right: auto;
}
@media screen and (min-width: 768px) {
	.about-skill__icon {
		width: 80px;
		height: 80px;
	}
}
@media screen and (min-width: 992px) {
	.about-skill__icon {
		width: 120px;
		height: 120px;
	}
}
.about-skill__icon img {
	aspect-ratio: 1/1;
	width: 100%;
	height: auto;
}
@media screen and (min-width: 768px) {
	.about-skill__icon img {
		width: 100%;
	}
}
.about-skill__name {
	font-size: 1.2rem;
	font-weight: bold;
	line-height: 1;
	margin-top: 30px;
}
.about-skill__name small {
	font-size: 70%;
}
.about-skill__desc {
	font-size: 1rem;
	line-height: 1;
	margin-top: 1rem;
}
.about-skill__note {
	font-size: 0.8rem;
	margin-top: 20px;
	text-align: start;
}

.skill-detail {
	padding-bottom: 2.5rem;
	padding-left: 1.5rem;
	text-align: left;
}
@media screen and (min-width: 768px) {
	.skill-detail {
		padding-bottom: 3.75rem;
	}
}
.skill-detail__item {
	font-size: 1.125rem;
	list-style: circle;
}
.skill-detail__item + .skill-detail__item {
	padding-top: 0.625rem;
}

/*年表*/
.timeline {
	text-align: center;
	margin-top: 3rem;
}
.timeline__list {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}
@media screen and (min-width: 992px) {
	.timeline__list {
		align-items: center;
		gap: 2.5rem;
	}
}
.timeline__list__item {
	font-size: 1rem;
	line-height: 1.8;
	display: flex;
	align-items: center;
	text-align: center;
	justify-content: center;
	gap: 1.25rem;
	/*吹き出し*/
}
@media screen and (min-width: 768px) {
	.timeline__list__item {
		justify-content: space-between;
		gap: 2.5rem;
	}
}
.timeline__list__item .date {
	background: #b0cab4;
	font-weight: bold;
	border-radius: 100vh;
	width: 80px;
	height: 80px;
	/*配置*/
	display: flex;
	align-content: center;
	flex-wrap: wrap;
	justify-content: center;
}
.timeline__list__item .date p {
	color: #fff;
	font-size: 1.2rem;
	padding: 10px;
}
.timeline__list__item .content {
	background: #8f8b8a;
	border-radius: 1rem;
	display: flex;
	justify-content: center;
	align-content: center;
	flex-wrap: wrap;
	padding: 16px 20px;
	width: calc(100% - 100px);
}
@media screen and (min-width: 576px) {
	.timeline__list__item .content {
		width: calc(100% - 120px);
		padding: 16px 20px;
	}
}
@media screen and (min-width: 992px) {
	.timeline__list__item .content {
		width: 600px;
		padding: 20px;
		min-height: 80px;
	}
}
.timeline__list__item .content p {
	color: #fff;
	font-size: 1rem;
	vertical-align: middle;
}

.about-history {
	background: url(../img/history01.png) center center/auto 100% no-repeat, linear-gradient(180deg, #e5e2de 0%, #fff 100%);
	padding: 100px 0;
}

.my-custom-class {
	width: 50px; /* 例えば幅を100pxに設定 */
	height: auto; /* 高さを自動調整 */
	/* その他の必要なスタイル */
}

.works-detail {
	background-color: #e5e2de;
}
.works-detail__gallery {
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	gap: 40px 40px;
	align-items: start;
}
@media screen and (min-width: 768px) {
	.works-detail__gallery {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media screen and (min-width: 992px) {
	.works-detail__gallery {
		grid-template-columns: repeat(3, 1fr);
	}
}
.works-detail__item-img {
	height: 220px;
	margin-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
	.works-detail__item-img {
		margin-bottom: 1.875rem;
	}
}
.works-detail__item-img a {
	display: block;
	width: 100%;
	height: 100%;
}
.works-detail__item-img a img {
	width: 100%;
	height: 100%;
	box-shadow: 10px 10px 2px 0 rgb(206.3010843373, 221.2089156627, 208.2887951807);
}
.works-detail__item-detail {
	text-align: center;
	line-height: 1.5;
}
.works-detail__item-detail dt {
	font-size: 1rem;
	font-weight: bold;
	margin-bottom: 4px;
}
@media screen and (min-width: 576px) {
	.works-detail__item-detail dt {
		font-size: 1.2rem;
		margin-bottom: 10px;
	}
}
.works-detail__item-detail dd {
	font-size: 1rem;
	line-height: 1.2;
}
.works-detail__git a {
	color: #716a67;
	display: block;
	background: linear-gradient(to right, #b0cab4 0%, #b0cab4 5px, transparent 5px);
	background-repeat: repeat-x;
	background-size: 100%;
	padding-left: 10px;
	margin-top: 4px;
}
@media screen and (min-width: 576px) {
	.works-detail__git a {
		margin-top: 10px;
	}
}
.works-detail__git a:hover {
	background: linear-gradient(to right, #b0cab4 0%, #b0cab4 5px, transparent);
}

.contact-form {
	background-color: #e5e2de;
}