/* ----------------------------------------
Reset
---------------------------------------- */

* {
	line-height: calc(1em + 0.5rem);
	margin: 0;
	padding: 0;
}

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

body {
	-webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
}

input,
button,
textarea,
select {
	font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
	overflow-wrap: break-word;
}

:where(a[href],
area,
button,
input,
label[for],
select,
summary,
textarea,
[tabindex]:not([tabindex*="-"])) {
	cursor: pointer;
	touch-action: manipulation;
}

:where(input[type=file]) {
	cursor: auto;
}

:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
	cursor: pointer;
}

:where(button,
button[type],
input[type=button],
input[type=submit],
input[type=reset])[disabled] {
	cursor: not-allowed;
}

/* ----------------------------------------
Base
---------------------------------------- */

body {
	background-color: #fff;
	color: #888;
	font-family: "M PLUS Rounded 1c", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
	min-height: 100vh;
	position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: #3e3e3e;
}

p {
	line-height: 1.75;
}

li {
	list-style: none;
}

a {
	color: #3e3e3e;
	text-decoration: none;
}

a:hover {
	opacity: 0.8;
}

.main {
	margin: 100px 0;
}

/* ----------------------------------------
l-contact
---------------------------------------- */

.l-contact {
	background-image: url(../img/bg.png);
	text-align: center;
	text-shadow: -1px -1px 0px #181818;
}

.l-contact__header {
	margin-bottom: 50px;
}

.l-contact__heading {
	color: #fff;
	font-size: 2.25rem;
	margin-bottom: 20px;
}

.l-contact__text {
	font-size: 1.375rem;
	margin-bottom: 40px;
}

.l-contact__social {
	display: flex;
	gap: 20px;
	justify-content: center;
}

.l-contact__link {
	border-radius: 8px;
	color: #fff;
	font-size: 1.375rem;
	padding: 10px 20px;
	transition: background-color 0.2s;
}

.l-contact__link:hover {
	background-color: #444;
	opacity: 1;
}

.l-contact__link i {
	margin-right: 10px;
}

/* ----------------------------------------
l-footer
---------------------------------------- */

.l-footer {
	background-color: #282828;
	background-image: url(../img/bg.png);
	color: #999;
	padding: 140px 0;
	text-align: center;
	text-shadow: -1px -1px 0px #181818;
}

/* ----------------------------------------
l-header
---------------------------------------- */

.l-header {
	background-color: #282828;
	box-shadow: 0 1px 5px rgba(255, 255, 255, 0.5);
	padding: 10px 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 9999;
}

.l-header__inner {
	align-items: center;
	display: flex;
	gap: 15px;
	height: 70px -20px;
	justify-content: center;
}

.l-header__logo {
	max-height: 50px;
	transition: opacity 0.2s;
}

.l-header__logo:hover {
	opacity: 0.8;
}

.l-header__menu {
	align-items: center;
	display: flex;
}

.l-header__list {
	font-size: 1.25rem;
}

.l-header__link {
	border-radius: 8px;
	color: #fff;
	padding: 10px 20px;
	transition: background-color 0.2s;
}

.l-header__link:hover {
	background-color: #444;
	opacity: 1;
}

/* ----------------------------------------
l-main
---------------------------------------- */

.l-outer {
	margin-top: 70px;
	overflow-x: hidden;
}

.l-container {
	margin: 0 auto;
	max-width: calc(100% - 50px);
	width: 1200px;
}

.l-container--sm {
	width: 900px;
}

/* ----------------------------------------
c-button
---------------------------------------- */

.c-button {
	background-image: url(../img/bg.png), linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2));
	border: 0;
	border-radius: 8px;
	box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.5), inset 0px 2px 1px 0px rgba(255, 255, 255, 0.75);
	cursor: pointer;
	display: inline-block;
	font-size: 1.125rem;
	padding: 15px 50px;
	position: relative;
	transition: background-color 0.2s;
}

.c-button:active {
	top: 2px;
}

.c-button--primary {
	background-color: #43b3e0;
	color: #fff;
	text-shadow: -1px -1px 0.5px rgba(0, 0, 0, 0.5);
}

.c-button--primary:hover {
	background-color: #43bff0;
}

.c-button--primary:active {
	background-color: #3ba8d3;
}

/* ----------------------------------------
c-card
---------------------------------------- */

.c-card {
	background: #fff;
	box-shadow: inset 0px 0px 0px 1px rgba(0, 0, 0, 0.15), 0px 2px 3px 0px rgba(0, 0, 0, 0.1);
	display: block;
	text-align: center;
}

.c-card__icon {
	color: #ea8a95;
	display: block;
	font-size: 6.25rem;
	margin-bottom: 25px;
}

.c-card__img img {
	width: 100%;
}

.c-card__title {
	font-size: 1.625rem;
	margin-bottom: 15px;
}

.c-card__text {
	font-size: 1.375rem;
}

/* ----------------------------------------
c-form
---------------------------------------- */

.c-form {
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
	justify-content: center;
	margin-bottom: 100px;
}

.c-form__inputField {
	background: #888;
	border: none;
	border-radius: 8px;
	box-shadow: inset 0px 2px 3px 1px rgba(0, 0, 0, 0.05), 0px 1px 0px 0px rgba(255, 255, 255, 0.025);
	color: #fff;
	font-size: 1.125rem;
	padding: 15px;
}

.c-form__inputField::-moz-placeholder {
	color: #3e3e3e;
}

.c-form__inputField::placeholder {
	color: #3e3e3e;
}

.c-form__input {
	width: calc((100% - 25px) / 2);
}

.c-form__textarea {
	height: 200px;
	resize: none;
	width: 100%;
}

.wpcf7-form {
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
	justify-content: center;
	margin-bottom: 100px;
}

.wpcf7-form-control-wrap:has(.c-form__input) {
	width: calc((100% - 25px) / 2);
}

.wpcf7-form-control-wrap:has(.c-form__textarea) {
	width: 100%;
}

.wpcf7-form-control-wrap .c-form__input {
	width: 100%;
}

.wpcf7-response-output {
	margin: 0 !important;
	width: 100%;
}

/* ----------------------------------------
c-note
---------------------------------------- */

.c-note {
	align-items: flex-start;
	display: flex;
	gap: 5px;
}

.c-note::before {
	content: "※";
}

/* ----------------------------------------
c-table
---------------------------------------- */

.c-table {
	-webkit-overflow-scrolling: touch;
	border-collapse: collapse;
	color: #3e3e3e;
	font-size: 1.375rem;
	overflow-x: auto;
	width: 100%;
}

.c-table thead {
	border-bottom: 2px solid #888;
}

.c-table tbody tr {
	border-bottom: 1px solid #888;
	border-top: 1px solid #888;
}

.c-table tbody tr:nth-child(2n+1) {
	background-color: rgba(136, 136, 136, 0.25);
}

.c-table td {
	font-weight: 300;
	padding: 20px;
}

.c-table th {
	font-weight: 400;
	padding: 0 20px 20px;
}

.c-table tfoot {
	border-top: 2px solid #888;
}

/* ----------------------------------------
c-title
---------------------------------------- */

.c-page-title {
	font-size: 3.5rem;
	margin-bottom: 50px;
}

/* ----------------------------------------
price
---------------------------------------- */

.p-price__heading {
	font-size: 1.375rem;
	margin-bottom: 20px;
}

.p-price__table tbody {
	text-align: center;
}

/* ----------------------------------------
top
---------------------------------------- */

.p-topPrice,
.p-topPortfolio,
.p-topSkills {
	background-image: url(../img/bg.png);
	box-shadow: inset 0px 1px 0px 0px rgba(0, 0, 0, 0.05), inset 0px 2px 3px 0px rgba(0, 0, 0, 0.1);
	text-align: center;
}

.p-topPrice,
.p-topPortfolio,
.p-topSkills,
.p-topMv {
	padding: 140px 0;
}

.p-topPrice__header,
.p-topPortfolio__header,
.p-topSkills__header {
	margin-bottom: 50px;
}

.p-topPrice__heading,
.p-topPortfolio__heading,
.p-topSkills__heading {
	font-size: 2.25rem;
	margin-bottom: 20px;
}

.p-topPrice__text,
.p-topPortfolio__text,
.p-topSkills__text {
	font-size: 1.375rem;
}

/* ----------------------------------------
topMv
---------------------------------------- */

.p-topMv {
	box-shadow: inset 0px 1px 0px 0px rgba(0, 0, 0, 0.05), inset 0px 2px 3px 0px rgba(0, 0, 0, 0.1);
}

.p-topMv__contents {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.p-topMv__img {
	border-radius: 50%;
	width: 33%;
}

.p-topMv__img img {
	aspect-ratio: 1;
	border-radius: 50%;
	max-width: 330px;
}

.p-topMv__body {
	width: 67%;
}

.p-topMv__heading {
	font-size: 3.5rem;
	margin-bottom: 25px;
}

.p-topMv__text {
	color: #888;
	font-size: 1.375rem;
	font-weight: 300;
	line-height: 1.75;
}

/* ----------------------------------------
topSkills
---------------------------------------- */

.p-topSkills {
	background-color: #fafafa;
	text-shadow: 1px 1px 0px #fff;
}

.p-topSkills__contents {
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
	justify-content: center;
	margin-bottom: 50px;
}

.p-topSkills__item {
	padding: 50px 30px;
	width: calc((100% - 50px) / 3);
}

/* ----------------------------------------
topPortfolio
---------------------------------------- */

.p-topPortfolio {
	background-color: #f4f4f4;
	text-shadow: 1px 1px 0px #fff;
}

.p-topPortfolio__text--emphasis {
	color: #3e3e3e;
	font-weight: bold;
}

.p-topPortfolio__contents {
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
}

.p-topPortfolio__item {
	width: calc((100% - 50px) / 3);
}

.p-topPortfolio .c-card {
	height: 100%;
	padding: 30px 20px;
}

.p-topPortfolio .c-card__img {
	left: -20px;
	margin-bottom: -10px;
	position: relative;
	top: -30px;
	width: calc(100% + 40px);
}

.p-topPortfolio .c-card__img img {
	-o-object-fit: cover;
	aspect-ratio: 4/3;
	object-fit: cover;
}

.p-topPortfolio .c-card__text {
	color: #888;
}

/* ----------------------------------------
topPrice
---------------------------------------- */

.p-topPrice {
	background-color: #eee;
	text-shadow: 1px 1px 0px #fff;
}

.p-topPrice__text {
	margin-bottom: 20px;
}

.p-topPrice__table {
	margin: 0 auto 20px;
	width: 70%;
}

.p-topPrice__note {
	font-size: 1.125rem;
	justify-content: center;
	margin-bottom: 50px;
	text-align: left;
}

/* ----------------------------------------
utility
---------------------------------------- */

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

.l-contact__heading {
	font-size: 1.875rem;
}

.l-contact__text {
	font-size: 1.125rem;
}

.l-contact__link {
	font-size: 1.125rem;
}

.l-footer {
	padding: 120px 0;
}

.l-footer__copyright {
	font-size: 0.875rem;
}

.l-container {
	width: 960px;
}

.l-container--sm {
	width: 720px;
}

.c-button {
	font-size: 1rem;
	padding: 13px 45px;
}

.c-card__icon {
	font-size: 5rem;
}

.c-card__title {
	font-size: 1.375rem;
}

.c-card__text {
	font-size: 1.125rem;
}

.c-form {
	margin-bottom: 80px;
}

.c-form__inputField {
	font-size: 1rem;
	padding: 13px;
}

.wpcf7-form {
	margin-bottom: 80px;
}

.c-table {
	font-size: 1.125rem;
}

.c-table td {
	padding: 15px;
}

.c-table th {
	padding: 0 15px 15px;
}

.c-page-title {
	font-size: 3rem;
}

.p-price__heading {
	font-size: 1.125rem;
}

.p-topPrice,
.p-topPortfolio,
.p-topSkills,
.p-topMv {
	padding: 120px 0;
}

.p-topPrice__heading,
.p-topPortfolio__heading,
.p-topSkills__heading {
	font-size: 1.875rem;
}

.p-topPrice__text,
.p-topPortfolio__text,
.p-topSkills__text {
	font-size: 1.125rem;
}

.p-topMv__img {
	width: 40%;
}

.p-topMv__body {
	width: 60%;
}

.p-topMv__heading {
	font-size: 3rem;
	margin-bottom: 20px;
}

.p-topMv__text {
	font-size: 1.25rem;
}

.p-topPrice__note {
	font-size: 1rem;
}

}

@media screen and (max-width: 980px) {

.l-contact__text {
	font-size: 1rem;
	margin-bottom: 20px;
}

.l-contact__link {
	font-size: 1rem;
}

.l-footer {
	padding: 80px 0;
}

.l-container {
	width: 100%;
}

.l-container--sm {
	width: 75%;
}

.c-card__title {
	font-size: 1.125rem;
}

.c-card__text {
	font-size: 1rem;
}

.c-form {
	margin-bottom: 60px;
}

.wpcf7-form {
	margin-bottom: 60px;
}

.c-table {
	font-size: 1rem;
}

.p-price__heading {
	font-size: 1rem;
	margin-bottom: 10px;
}

.p-topPrice,
.p-topPortfolio,
.p-topSkills,
.p-topMv {
	padding: 80px 0;
}

.p-topPrice__header,
.p-topPortfolio__header,
.p-topSkills__header {
	margin-bottom: 25px;
}

.p-topPrice__heading,
.p-topPortfolio__heading,
.p-topSkills__heading {
	font-size: 1.625rem;
	margin-bottom: 10px;
}

.p-topPrice__text,
.p-topPortfolio__text,
.p-topSkills__text {
	font-size: 1rem;
}

.p-topMv__img {
	width: 100%;
}

.p-topMv__img img {
	margin: 0 auto 50px;
}

.p-topMv__body {
	width: 100%;
}

.p-topMv__heading {
	text-align: center;
}

.p-topSkills__contents {
	margin-bottom: 25px;
}

.p-topSkills__item {
	width: calc((100% - 25px) / 2);
}

.p-topPortfolio__item {
	width: calc((100% - 25px) / 2);
}

.p-topPrice__text {
	margin-bottom: 10px;
}

.p-topPrice__table {
	margin-bottom: 10px;
}

}

@media screen and (max-width: 736px) {

.main {
	margin: 50px 0;
}

.l-contact__header {
	margin-bottom: 25px;
}

.l-contact__heading {
	font-size: 1.625rem;
	margin-bottom: 10px;
}

.l-footer {
	padding: 60px 0;
}

.l-footer__copyright {
	font-size: 0.75rem;
}

.l-header__inner {
	gap: min(10px, 1.5625vw);
	height: 40px;
}

.l-header__logo {
	max-height: 40px;
}

.l-header__list {
	font-size: min(1.125rem, 3.125vw);
}

.l-header__link {
	padding: min(10px, 1.5625vw) min(20px, 2.5vw);
}

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

.l-container {
	max-width: calc(100% - 30px);
}

.l-container--sm {
	width: 100%;
}

.c-button {
	font-size: 0.875rem;
	max-width: 300px;
	padding: 10px;
	width: 70%;
}

.c-card__icon {
	font-size: 3.75rem;
}

.c-form {
	gap: 15px;
	margin: 0 auto 40px;
	max-width: 500px;
}

.c-form__inputField {
	padding: 10px;
}

.c-form__input {
	width: 100%;
}

.wpcf7-form {
	gap: 15px;
	margin-bottom: 40px;
}

.wpcf7-form-control-wrap:has(.c-form__input) {
	width: 100%;
}

.c-table td {
	padding: 10px;
}

.c-table th {
	padding: 0 10px 10px;
}

.c-page-title {
	font-size: 2.25rem;
	margin-bottom: 25px;
}

.p-topPrice,
.p-topPortfolio,
.p-topSkills,
.p-topMv {
	padding: 60px 0;
}

.p-topMv__img img {
	margin-bottom: 25px;
	width: 200px;
}

.p-topMv__heading {
	font-size: 2.25rem;
}

.p-topMv__text {
	font-size: 0.875rem;
}

.p-topSkills__item {
	max-width: 500px;
	width: 100%;
}

.p-topPortfolio__contents {
	justify-content: center;
}

.p-topPortfolio__item {
	max-width: 500px;
	width: 100%;
}

.p-topPrice__table {
	max-width: 500px;
	width: 100%;
}

.p-topPrice__note {
	font-size: 0.875rem;
	margin-bottom: 25px;
}

}

/*# sourceMappingURL=styles.css.map */
