*,
*::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 {
	border: 0;
	font-size: 100%;
	font-weight: normal;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}

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

ol,
ul {
	list-style: none;
}

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

a {
	color: inherit;
	text-decoration: none;
}

button {
	background: transparent;
	border: none;
	box-shadow: none;
	cursor: pointer;
	font: inherit;
	margin: 0;
	padding: 0;
}

input,
select,
textarea {
	color: inherit;
	font: inherit;
	vertical-align: top;
}

body {
	background: #fff;
	color: #333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.6;
}

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

a {
	color: inherit;
}

.l-header {
	background: #4a4a4a;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 999;
}

.l-header__inner {
	align-items: center;
	display: flex;
	flex-direction: row;
	height: 80px;
	justify-content: space-between;
	margin-left: auto;
	margin-right: auto;
	padding: 16px 15px;
}

.l-header-logo {
	color: #fff;
	display: inline-block;
	font-size: 18px;
	font-weight: bold;
}

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

.c-header-nav__link {
	transition: opacity 0.3s;
}

.c-header-nav__link:hover {
	opacity: 0.6;
}

.c-header-nav__link img {
	background: #fff;
	border-radius: 4px;
	width: 30px;
}

.c-drawer-icon {
	height: 21px;
	position: relative;
	width: 36px;
	z-index: 51;
}

.c-drawer-icon.is-checked .c-drawer-icon__bar {
	transition: transform 0.3s linear, top 0.3s linear;
}

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

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

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

.c-drawer-icon__bar {
	background: #fff;
	border-radius: 6px;
	height: 4px;
	left: 0;
	position: absolute;
	top: 0;
	transition: transform 0.3s linear, top 0.3s linear;
	width: 36px;
}

.c-drawer-icon__bar:nth-last-of-type(2) {
	top: 10px;
}

.c-drawer-icon__bar:nth-last-of-type(3) {
	top: 20px;
}

.c-drawer-content {
	background: #4a4a4a;
	height: 100%;
	padding: 130px 40px 40px;
	position: fixed;
	right: 0;
	top: 0;
	transform: translateX(100%);
	transition: transform 0.3s;
	width: 320px;
	z-index: 50;
}

.c-drawer-content.is-checked {
	transform: translateX(0);
}

.c-drawer-content__menu {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 30px;
	justify-content: center;
	max-width: 250px;
}

.c-drawer-content__link {
	color: #fff;
	font-weight: bold;
}

.c-drawer-content__link img {
	background: #fff;
	border-radius: 4px;
	width: 30px;
}

.c-section {
	padding-block: 50px;
}

.c-section__inner {
	margin: 0 auto;
	max-width: 600px;
	padding-inline: 15px;
}

.c-section__head {
	display: flex;
	flex-direction: column;
}

.c-section__head-main {
	font-family: "Oswald", sans-serif;
	font-size: 36px;
	letter-spacing: 0.1em;
}

.c-section__head-sub {
	font-size: 12px;
}

.c-section__lead-text {
	margin-top: 30px;
}

.c-button {
	background: #82afc8;
	border-radius: 60px;
	color: #fff;
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.48px;
	line-height: 1.7;
	margin-top: 28px;
	min-width: 180px;
	padding: 10px 28px;
	text-align: center;
	transition: transform 0.3s;
}

.c-button:hover {
	transform: scale(1.1);
}

.fade-in {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 1s;
}

.fade-in.is-in-view {
	opacity: 1;
}

.fade-in-up {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 1s, transform 1s;
}

.fade-in-up.is-in-view {
	opacity: 1;
	transform: translateY(0);
}

.fade-in-down {
	opacity: 0;
	transform: translateY(-24px);
	transition: opacity 1s, transform 1s;
}

.fade-in-down.is-in-view {
	opacity: 1;
	transform: translateY(0);
}

.p-fv {
	padding-top: 80px;
	position: relative;
}

.p-fv__contents {
	background: url(/assets/img/sp/fv_bg.png) no-repeat center center;
	background-size: 100% auto;
	bottom: 20%;
	height: 180px;
	left: 0;
	padding: 30px 20px 20px;
	position: absolute;
	width: 100%;
}

.p-fv__heading {
	display: flex;
	flex-direction: column;
	gap: 8px;
	justify-content: center;
}

.p-fv__heading-main {
	display: inline-block;
	font-family: "Oswald", sans-serif;
	font-size: 36px;
}

.p-fv__heading-sub {
	display: inline-block;
	font-size: 14px;
}

.p-service {
	background: #fafafa;
}

.p-service__contents {
	margin-top: 40px;
}

.p-service__list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.p-service__item {
	background: #fff;
	border-radius: 10px;
	box-shadow: 1px 1px 4px 1px #4a4a4a;
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin-inline: auto;
	max-width: 400px;
	padding: 30px 40px;
	width: 100%;
}

.p-service__item-img {
	text-align: center;
}

.p-service__item-img img {
	width: 100px;
}

.p-service__item-name {
	font-size: 14px;
	font-weight: bold;
	text-align: center;
}

.p-service__item-text {
	font-size: 14px;
}

.p-works__slider {
	padding-bottom: 30px;
	position: relative;
}

.p-works__swiper {
	border-radius: 10px;
	margin-top: 30px;
}

.p-works__slide {
	opacity: 0.3; /* 左右のスライドを薄くする */
	transform: scale(0.8); /* 左右のスライドを小さくする */
	transition: 0.7s; /* ゆっくり小さくさせる */
}

.p-works-item__img {
	border-radius: 5px;
	overflow: hidden;
}

.p-works-item__img img {
	border-radius: 5px;
	cursor: pointer;
	transition: transform 0.3s;
}

.p-works-item__img img:hover {
	transform: scale(1.1);
}

.swiper-slide-active {
	opacity: 1; /* 中央のスライドは薄くしない */
	transform: scale(1); /* 中央のスライドは小さくしない */
	z-index: 1; /* 中央のスライドを一番上にする */
}

.swiper-button-next,
.swiper-button-prev {
	margin-top: 0;
}

.swiper-button-next::after,
.swiper-button-prev::after {
	display: none;
}

.p-works-prev {
	background: url(/assets/img/sp/prev-icon.png) no-repeat center center/contain;
	content: "";
	height: 40px;
	left: -10px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
}

.p-works-next {
	background: url(/assets/img/sp/next-icon.png) no-repeat center center/contain;
	content: "";
	height: 40px;
	position: absolute;
	right: -10px;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
}

.p-works-pagination {
	bottom: -20px;
	content: "";
	display: flex;
	gap: 3px;
	justify-content: center;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
}

.p-works-pagination .swiper-pagination-bullet {
	background: #707070;
	height: 10px;
	margin-left: 0;
	margin-right: 0;
	opacity: 1;
	width: 10px;
}

.p-works-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: #82afc8;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
	left: 50%;
}

.p-works-button {
	text-align: center;
}

.p-works-modal {
	background: #fff;
	border: none;
	border-radius: 10px;
	height: calc(100% - 40px);
	inset: 0;
	margin: auto;
	max-width: calc(100% - 30px);
	overflow: auto;
	padding: 10px;
	position: fixed;
	z-index: 60;
}

.p-works-modal::backdrop {
	background: #000;
	opacity: 0.7;
}

.p-works-modal__img {
	text-align: center;
}

.p-works-modal__img img {
	border-radius: 10px;
	width: 100%;
}

.p-works-modal__body {
	margin-top: 10px;
}

.p-works-modal__title {
	font-size: 18px;
	font-weight: bold;
	text-align: center;
}

.p-works-modal__contents {
	display: flex;
	flex-direction: column;
	font-size: 14px;
	gap: 14px;
	margin-top: 10px;
}

.p-works-modal__skill-title {
	font-weight: bold;
}

.p-works-modal__pass-s {
	font-size: 12px;
	font-weight: bold;
}

.p-works-modal__buttons {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 20px;
	justify-content: center;
	margin-top: 20px;
}

.p-works-modal__url {
	margin-top: 0;
	width: 200px;
}

.p-works-modal__url a {
	display: inline-block;
	font-weight: bold;
	outline: none;
	padding: 0 20px;
	width: 100%;
}

.p-works-modal__close {
	margin-top: 0;
	width: 200px;
}

.p-works-modal__no-scroll {
	overflow: hidden;
}

.p-about {
	background: #fafafa;
}

.p-about__container {
	display: flex;
	flex-direction: column;
	gap: 40px;
	margin-left: auto;
	margin-right: auto;
	max-width: 400px;
}

.p-about__img {
	margin-top: 30px;
	text-align: center;
}

.p-about__img img {
	border-radius: 10px;
	box-shadow: 2px 2px 6px 1px #4a4a4a;
	width: 300px;
}

.p-about__text {
	font-size: 14px;
}

.p-skill {
	margin-top: 30px;
}

.p-skill__container {
	border-radius: 10px;
	box-shadow: 1px 1px 4px 1px #4a4a4a;
	margin-left: auto;
	margin-right: auto;
	margin-top: 30px;
	max-width: 400px;
	padding: 30px 20px;
}

.p-skill__items {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(2, 120px);
	justify-content: space-around;
}

.p-skill-item {
	align-items: center;
	display: flex;
	flex-direction: row;
	gap: 10px;
}

.p-skill-item__img img {
	min-width: 40px;
	width: 40px;
}

.p-skill-item__text {
	font-size: 14px;
}

.p-flow {
	background: #fafafa;
}

.p-flow__list {
	display: flex;
	flex-direction: column;
	gap: 40px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 60px;
	max-width: 400px;
}

.p-flow__item {
	background: #fafafa;
	border-radius: 10px;
	box-shadow: 1px 1px 4px 1px #4a4a4a;
	padding: 40px 20px 20px;
	position: relative;
}

.p-flow__item-num {
	align-items: center;
	background-color: #82afc8;
	border-radius: 10px;
	color: #fff;
	content: "";
	display: flex;
	font-size: 24px;
	font-weight: bold;
	height: 48px;
	justify-content: center;
	left: 50%;
	position: absolute;
	top: -24px;
	transform: translateX(-50%);
	width: 48px;
}

.p-flow__item-img {
	text-align: center;
}

.p-flow__item-img img {
	width: 100px;
}

.p-flow__item-name {
	font-weight: bold;
	margin-top: 20px;
	text-align: center;
}

.p-flow__item-text {
	font-size: 14px;
	letter-spacing: 0.05em;
	margin-top: 10px;
}

.p-price-box {
	margin-top: 30px;
}

.p-price-items {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 30px;
	max-width: 400px;
}

.p-price-item {
	background: #fafafa;
	border-radius: 10px;
	box-shadow: 1px 1px 4px 1px #4a4a4a;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding: 20px;
}

.p-price-item__price {
	font-weight: bold;
}

.p-price__text {
	margin-top: 30px;
}

.p-contact {
	background: #fafafa;
}

.p-contact__head-text {
	display: inline-block;
	margin-top: 20px;
}

.p-contact-form {
	background: #fff;
	border-radius: 20px;
	box-shadow: 1px 1px 4px 1px #4a4a4a;
	margin-left: auto;
	margin-right: auto;
	margin-top: 20px;
	max-width: 700px;
	padding: 30px 20px;
}

.p-contact-form__fields {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.p-contact-field {
	display: flex;
	flex-direction: column;
	gap: 12px;
	justify-content: center;
}

.p-contact-field__head {
	align-items: center;
	display: flex;
	gap: 10px;
}

.p-contact-form__label {
	font-weight: bold;
}

.p-contact-form__tag {
	background: #82afc8;
	border-radius: 2px;
	color: #fff;
	display: inline-block;
	font-size: 11px;
	font-weight: bold;
	line-height: 1;
	padding: 6px 8px;
}

.p-contact-form__radio {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.p-form-radio {
	cursor: pointer;
}

.p-form-radio__input {
	clip: rect(0, 0, 0, 0);
	height: 1px;
	overflow: hidden;
	position: absolute;
	width: 1px;
}

.p-form-radio__input:checked + .p-form-radio__text::after {
	opacity: 1;
}

.p-form-radio__input:focus + .p-form-radio__text::before {
	border-color: #82afc8;
}

.p-form-radio__text {
	padding-left: 34px;
	position: relative;
	vertical-align: middle;
}

.p-form-radio__text::before,
.p-form-radio__text::after {
	border-radius: 50%;
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.p-form-radio__text::before {
	background: #fff;
	border: 2px solid #111;
	height: 24px;
	left: 0;
	transition: border-color 0.3s;
	width: 24px;
}

.p-form-radio__text::after {
	background: #82afc8;
	height: 10px;
	left: 7px;
	opacity: 0;
	width: 10px;
}

.p-form-text {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: #fff;
	border: 2px solid #111;
	border-radius: 5px;
	box-shadow: none;
	color: #adadad;
	padding: 13px 14px 12px;
	transition: border-color 0.3s;
	width: 100%;
}

.p-form-text:hover,
.p-form-text:focus {
	border-color: #82afc8;
	outline: none;
}

.p-form-textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: #fff;
	border: 2px solid #111;
	border-radius: 5px;
	height: 180px;
	padding: 14px;
	resize: none; /* 右下の線(ボックスの大きさを変えられる)を消す*/
	transition: border-color 0.3s;
	width: 100%;
}

.p-form-textarea:hover,
.p-form-textarea:focus {
	border-color: #82afc8;
	outline: none;
}

.p-contact-form__privacy {
	margin-top: 30px;
	text-align: center;
}

.p-contact-form__privacy-text {
	font-size: 14px;
	margin-bottom: 10px;
	text-align: left;
}

.p-form-checkbox {
	cursor: pointer;
}

.p-form-checkbox:hover .p-form-checkbox__text::before {
	border-color: #82afc8;
}

.p-form-checkbox__input {
	clip: rect(0, 0, 0, 0);
	height: 1px;
	overflow: hidden;
	position: absolute;
	width: 1px;
}

.p-form-checkbox__input:checked + .p-form-checkbox__text::after {
	opacity: 1;
}

.p-form-checkbox__input:focus + .p-form-checkbox__text::before {
	border-color: #82afc8;
}

.p-form-checkbox__text {
	font-size: 14px;
	font-weight: bold;
	padding-left: 30px;
	position: relative;
}

.p-form-checkbox__text::before,
.p-form-checkbox__text::after {
	content: "";
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.p-form-checkbox__text::before {
	border: 1px solid #111;
	border-radius: 1px;
	height: 20px;
	transition: border-color 0.3s;
	width: 20px;
}

.p-form-checkbox__text::after {
	background: url(/assets/img/sp/privacy-check-icon.png) no-repeat center center/contain;
	height: 16px;
	left: 2px;
	opacity: 0;
	width: 16px;
}

.p-contact-form__button {
	text-align: center;
}

.p-contact-form__submit {
	background: #707070;
	margin-top: 20px;
	transition: background-color 0.4s;
}

.p-contact-form__submit:hover {
	background: #82afc8;
	transform: scale(1);
}

.p-contact-form__submit.-active {
	background: #82afc8;
}

.p-contact-form__submit.-active:hover {
	opacity: 0.8;
}

.p-contact-message {
	display: none;
	margin-top: 40px;
	text-align: center;
}

.p-contact-message.--error {
	color: red;
	margin-top: 10px;
}

.p-footer {
	background: #4a4a4a;
	padding: 10px;
	text-align: center;
}

.p-footer__copy {
	color: #fff;
	font-size: 11px;
}

.p-to-top {
	bottom: 10px;
	opacity: 0;
	position: fixed;
	right: 10px;
	transition: opacity 0.3s, visibility 0.3s;
	visibility: hidden;
	width: min(13.3333333333%, 50px);
}

.p-to-top.is-show {
	opacity: 1;
	visibility: visible;
}

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

.l-header__inner {
	height: 90px;
	max-width: 1280px;
	padding: 10px 30px;
}

.c-header-nav {
	display: flex;
	flex-direction: row;
	gap: 7px;
}

.c-header-nav__link {
	color: #fff;
	font-weight: bold;
	padding: 7px 5px;
}

.c-header-nav__none {
	display: none;
}

.p-fv__contents {
	background: url(/assets/img/pc/fv_bg.png) no-repeat center center;
	background-size: 100% auto;
	height: 168px;
	max-width: 70%;
	padding: 16px 20px 30px 100px;
}

.p-works-prev {
	left: -50px;
}

.p-works-next {
	right: -50px;
}

.p-works-modal {
	padding: 30px 100px;
}

.p-works-modal__img img {
	width: 600px;
}

.p-works-modal__body {
	margin-top: 16px;
}

.p-works-modal__title {
	font-size: 22px;
}

.p-works-modal__contents {
	font-size: 18px;
	margin-top: 20px;
}

.p-works-modal__pass-s {
	font-size: 14px;
}

.p-works-modal__buttons {
	flex-direction: row;
	gap: 30px;
	margin-top: 40px;
}

}

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

.l-header__inner {
	height: 90px;
	max-width: 1280px;
	padding: 20px 40px;
}

.l-header-logo {
	font-size: 24px;
}

.c-header-nav {
	display: flex;
	flex-direction: row;
	gap: 15px;
}

.c-header-nav__link {
	color: #fff;
	font-weight: bold;
	padding: 14px 10px;
}

.c-header-nav__none {
	display: none;
}

.c-section__inner {
	max-width: 1000px;
}

.c-section__head-main {
	font-size: 50px;
}

.c-section__head-sub {
	font-size: 16px;
}

.c-section__lead-text {
	font-size: 20px;
}

.c-button {
	font-size: 20px;
	padding: 20px 40px;
	width: 240px;
}

.p-fv {
	padding-top: 90px;
}

.p-fv__contents {
	background: url(/assets/img/pc/fv_bg.png) no-repeat center center;
	background-size: 100% auto;
	height: 168px;
	max-width: 70%;
	padding: 16px 20px 30px 100px;
}

.p-fv__heading-main {
	font-size: 42px;
}

.p-fv__heading-sub {
	font-size: 18px;
}

.p-service__list {
	flex-direction: row;
}

.p-service__item-name {
	font-size: 18px;
}

.p-service__item-text {
	font-size: 16px;
}

.p-works-prev {
	left: -50px;
}

.p-works-next {
	right: -50px;
}

.p-works-modal {
	max-width: 1280px;
	padding: 40px 150px;
}

.p-works-modal__img img {
	width: 700px;
}

.p-works-modal__body {
	margin-top: 20px;
}

.p-works-modal__title {
	font-size: 34px;
}

.p-works-modal__contents {
	font-size: 28px;
	margin-top: 30px;
}

.p-works-modal__pass-s {
	font-size: 20px;
}

.p-works-modal__buttons {
	flex-direction: row;
	gap: 40px;
	margin-top: 40px;
}

.p-works-modal__url {
	width: 300px;
}

.p-works-modal__close {
	width: 300px;
}

.p-about__container {
	align-items: center;
	flex-direction: row-reverse;
	justify-content: space-around;
	margin-top: 30px;
	max-width: 100%;
}

.p-about__img {
	margin-top: 0;
}

.p-about__img img {
	width: 400px;
}

.p-about__text-contents {
	width: 50%;
}

.p-about__text {
	font-size: 20px;
}

.p-skill__container {
	max-width: 100%;
	padding: 80px 30px;
}

.p-skill__items {
	gap: 50px 20px;
	grid-template-columns: repeat(5, 1fr);
}

.p-skill-item {
	flex-direction: column;
}

.p-skill-item__img img {
	width: 80px;
}

.p-skill-item__text {
	font-size: 20px;
}

.p-flow__list {
	flex-direction: row;
	gap: 20px;
	max-width: 100%;
}

.p-flow__item {
	max-width: 227px;
	padding: 60px 20px 20px;
}

.p-flow__item-name {
	font-size: 18px;
}

.p-price-box {
	margin-top: 60px;
}

.p-price-items {
	gap: 24px;
	max-width: 700px;
}

.p-price-item {
	padding: 26px 60px;
}

.p-price-item__text {
	font-size: 26px;
}

.p-price-item__price {
	font-size: 26px;
}

.p-price__text {
	font-size: 20px;
}

.p-contact__head-text {
	font-size: 20px;
	margin-top: 40px;
}

.p-contact-form {
	margin-top: 40px;
	padding: 60px 60px;
}

.p-contact-field {
	flex-direction: row;
	gap: 30px;
	justify-content: flex-start;
}

.p-contact-field__head {
	align-items: flex-start;
	justify-content: left;
	width: 300px;
}

.p-contact-form__item {
	width: 100%;
}

.p-form-radio__text {
	width: 100%;
}

.p-contact-message {
	font-size: 20px;
}

.p-footer {
	padding: 18px;
}

.p-footer__copy {
	font-size: 14px;
}

.p-to-top {
	bottom: 20px;
	right: 16px;
	width: 76px;
}

}

