/*

それぞれ( )内にpxでの数値を入れるとrem, px, vw(pc版), vw(sp版) に変換
*/

body {
	background: #fff;
	color: #000;
	font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.6;
	overflow-wrap: break-word;
	overflow-x: hidden;
}

main {
	margin-top: 60px;
}

img {
	border: none;
	height: auto;
	max-width: 100%;
	vertical-align: bottom;
}

a {
	color: inherit;
	display: inline-block;
	text-decoration: none;
	transition: all 0.2s ease;
}

.btn:hover {
	cursor: pointer;
	opacity: 0.7;
}

/*================================================================
Chrome/Firefox/Edgeなど、各ブラウザはそれぞれデフォルトで効くCSSを持っています。
何もしないと見え方が微妙に変わるので、デフォルトのCSSをリセットして
ブラウザごとの表示の差異をなくすために書くのが「リセットCSS」です。
================================================================*/

/* ======
初期化
====== */

*,
*::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;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}

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

body {
	line-height: 1;
}

ol,
ul {
	list-style: none;
	list-style-type: none;
}

[type=text],
[type=search],
[type=tel],
[type=url],
[type=email],
[type=date],
select,
textarea {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: transparent;
	background-image: none;
	border: 1px solid rgba(0, 0, 0, 0.16);
	border-radius: 0;
	color: inherit;
	font-family: inherit;
	font-size: 1em;
	overflow: auto;
	padding: 0.4em 0.8em;
	resize: vertical;
	width: 100%;
}

[type=text]:focus,
[type=search]:focus,
[type=tel]:focus,
[type=url]:focus,
[type=email]:focus,
[type=date]:focus,
select:focus,
textarea:focus {
	border: 1px solid rgba(0, 0, 0, 0.32);
	box-shadow: none;
	outline: none;
}

[type=radio],
[type=checkbox] {
	display: none;
}

label {
	display: inline-block;
}

button,
select {
	cursor: pointer;
	text-transform: none;
}

.l-inner {
	height: inherit;
	margin: 0 auto;
	max-width: 1840px;
}

.l-header {
	background-color: #fff;
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16);
	height: 60px;
	left: 0;
	padding: 0;
	position: fixed;
	top: 0;
	width: 100%;
	width: 100%;
	z-index: 100;
}

.l-header__inner {
	align-items: center;
	display: flex;
	height: inherit;
	margin-inline: auto;
	max-width: 1880px;
	padding: 0 20px;
	width: 100%;
	width: 100%;
}

.l-contact {
	padding: 56px 28px;
	position: relative;
}

.l-contact::before,
.l-contact::after {
	content: "";
	height: 100%;
	inset: 0;
	position: absolute;
	width: 100%;
}

.l-contact::before {
	background: rgba(220, 219, 219, 0.5);
	z-index: 1;
}

.l-contact::after {
	background: url("/assets/img/contact-bg.jpg") center center/cover no-repeat;
	z-index: 0;
}

.l-contact > * {
	position: relative;
	z-index: 2;
}

.l-contact__form {
	margin-top: 26px;
}

.l-footer {
	background: #fff;
	box-shadow: 0 -3px 3px rgba(0, 0, 0, 0.16);
	position: relative;
}

.c-button {
	background: #e88a95;
	border: none;
	border-radius: 3px;
	color: #fff;
	display: inline-block;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.7;
	margin: 0;
	min-width: 150px;
	padding: 10px 16px;
	text-decoration: none;
}

.c-button-drawer {
	background: transparent;
	border: none;
	box-shadow: none;
	cursor: pointer;
	height: 18px;
	margin-left: auto;
	position: relative;
	top: 0px;
	transition: all 0.5s ease 0s;
	width: 24px;
	z-index: 300;
}

.c-button-drawer__line {
	background-color: #e88a95;
	border-radius: 1px;
	display: block;
	height: 2px;
	left: 0;
	position: absolute;
	right: 0;
	transition: all 0.5s ease 0s;
	width: 100%;
}

.c-button-drawer__line:nth-of-type(1) {
	top: 0;
}

.c-button-drawer__line:nth-of-type(2) {
	top: 8px;
}

.c-button-drawer__line:nth-of-type(3) {
	top: 16px;
}

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

.is-checked .c-button-drawer__line:nth-of-type(2) {
	background: transparent;
}

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

.drawer-content-cover {
	background: #fff;
	bottom: auto;
	height: 100%;
	opacity: 0;
	padding-top: 96px;
	position: fixed;
	top: 0;
	transform: translateX(0);
	transition: all 0.5s linear 0s;
	visibility: hidden;
	width: 100%;
	z-index: 299;
}

.drawer-content-cover.is-checked {
	opacity: 1;
	visibility: visible;
}

.drawer-content-cover ul {
	margin: 0 auto;
	max-width: 100%;
	padding: 0;
	width: 200px;
}

.drawer-content-cover ul li a {
	display: block;
	padding: 16px 0;
	text-align: center;
}

.c-section {
	padding: 80px 0;
}

.c-section__title {
	font-family: "Montserrat", sans-serif;
	font-size: 30px;
	font-weight: 600;
	padding-bottom: 30px;
	position: relative;
	text-align: center;
}

.c-section__title::after {
	background-color: #e88a95;
	bottom: 0;
	content: "";
	height: 2px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	transition: opacity 0.3s ease 0s;
	width: 50px;
}

.c-section__link {
	font-size: 18px;
	width: 150px;
}

.p-header__right {
	display: none;
}

.p-header__logo {
	align-items: center;
	display: flex;
	font-size: clamp(1rem, 0.823943662rem + 0.7511737089vw, 1.5rem);
}

.p-header-nav {
	align-items: center;
	display: flex;
	height: inherit;
}

.p-header-nav__item {
	height: inherit;
}

.p-header-nav__item:not(:first-child) {
	margin-left: 40px;
}

.p-header-nav__link {
	display: block;
	height: inherit;
	letter-spacing: 0.1em;
	padding: 36px 0;
	position: relative;
	text-align: center;
}

.p-header-nav__link::after {
	background-color: #e88a95;
	bottom: 20px;
	content: "";
	height: 2px;
	left: 0;
	opacity: 0;
	position: absolute;
	transition: opacity 0.3s ease 0s;
	width: 100%;
}

.p-drawer-menu {
	background: #fff;
	height: 100vh;
	left: 0;
	opacity: 0;
	padding-top: 96px;
	position: fixed;
	right: 0;
	top: 0;
	transform: translateX(0);
	transition: all 0.5s linear 0s;
	visibility: hidden;
	width: 100vw;
	z-index: 39;
}

.p-drawer-menu.is-checked {
	opacity: 1;
	visibility: visible;
}

.p-drawer-menu .p-drawer-menu__cover {
	margin: 0 auto;
	max-width: 100%;
	padding: 0;
	width: 200px;
}

.p-drawer-menu .p-drawer-menu__link {
	display: block;
	padding: 16px 0;
	text-align: center;
}

.p-top {
	background: url(../img/top.jpg) no-repeat center center/cover;
	height: 100vh;
	position: relative;
	width: 100vw;
}

.p-top-inner {
	margin: 0 auto;
	max-width: 1880px;
	padding: 153px 20px 0 0;
	width: 100%;
}

.p-top__content {
	bottom: 20%;
	left: 10%;
	margin-right: auto;
	position: absolute;
	width: 50vw;
}

.p-top__title {
	font-family: "Montserrat", sans-serif;
	font-size: clamp(1.5rem, 0.4876760563rem + 4.3192488263vw, 4.375rem);
	font-weight: bold;
	letter-spacing: 0.000625em;
	line-height: 1.2;
	margin-top: 77px;
}

.p-top__lead {
	font-size: clamp(0.875rem, 0.6549295775rem + 0.9389671362vw, 1.5rem);
	font-weight: bold;
	line-height: 1.5555555556;
	margin-top: 24px;
}

.p-skill__list {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 58px;
	justify-content: center;
	margin-top: 80px;
}

.p-skill__item {
	height: inherit;
	max-width: 100%;
	max-width: 320px;
	min-height: 300px;
	width: 80%;
}

.p-skill__item-title {
	border-bottom: 3px dashed #e2b4da;
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 0.12em;
	margin: 0 auto;
	max-width: 250px;
	padding: 0 0 4px;
	text-align: center;
}

.p-skill__item-title--wp {
	border-bottom: 3px dashed #b4d3e2;
}

.p-skill__item-text {
	border: 1px solid #434242;
	border-radius: 10px;
	display: flex;
	font-family: "Montserrat", sans-serif;
	font-size: 16px;
	font-size: 1.125rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	line-height: 26px;
	margin-top: 2.25rem;
	min-height: 250px;
	padding: 1.5em;
	text-align: left;
}

.p-work {
	background: #eeeeee;
}

.p-work__media {
	background: #fff;
	border-radius: 4px;
	display: block;
	overflow: hidden;
	padding: 20px;
	transition: all 0.3s ease 0s;
}

.p-work__media .p-work-img {
	text-align: center;
}

.p-work__media .p-work-img img {
	height: 200px;
	vertical-align: bottom;
	width: 600px;
}

.p-work__media .p-work-body {
	padding: 12px;
}

.p-work__media-title {
	color: #abb8c3;
	font-weight: 700;
	line-height: 1.5;
}

.p-work__media-category {
	margin-top: 10px;
}

.p-work__media-text {
	font-size: 20px;
	font-weight: 700;
	margin-top: 12px;
}

.p-work__footer {
	margin-top: 70px;
	text-align: center;
}

.p-swiper {
	margin: 80px 15px 0;
}

.p-work__media-img {
	align-items: center;
	background-color: #f9f9f9;
	display: flex;
	height: 400px;
	justify-content: center;
	overflow: hidden;
	width: 100%;
}

.p-work__media-img img {
	-o-object-fit: contain;
	display: block;
	height: 100%;
	object-fit: contain;
	width: auto;
}

.swiper-container {
	padding-bottom: 71px;
	padding-left: 3px;
	padding-right: 3px;
}

.swiper-pagination-bullet {
	background: #fff;
	height: 20px;
	opacity: 1;
	width: 20px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: #e88a95;
}

.swiper-container-horizontal .p-work > .swiper-pagination-bullets {
	bottom: 0;
	z-index: 2;
}

.swiper-container-horizontal .p-work > .swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0px 15px;
}

.p-about-img {
	border-radius: 50%;
	height: 0;
	margin: 0 auto;
	overflow: hidden;
	padding-bottom: 40%;
	width: 50%;
}

.p-about-img img {
	-o-object-fit: cover;
	object-fit: cover;
	width: 100%;
}

.p-about__content {
	display: flex;
	flex-direction: column;
	gap: 50px;
	margin: 80px auto 0;
	max-width: 900px;
}

.p-about__message {
	margin: 0 auto;
	min-width: 200px;
}

.p-about__message .p-about__message-title {
	font-size: 20px;
	font-weight: bold;
}

.p-about__message .p-about__message-text {
	line-height: 1.8;
	margin-top: 36px;
}

.p-about__message .p-about__message-text .twitter-link {
	padding: 0;
}

.p-about__message-sns {
	margin-top: 10px;
}

.p-about__message-sns--x {
	font-size: 50px;
}

.p-contact__head {
	color: #e88a95;
}

.p-contact__form {
	margin: 80px auto 0;
	max-width: 900px;
}

.p-contact__text {
	font-size: 14px;
	font-weight: 600;
	text-align: center;
}

.p-contact__text .p-contact__text--required {
	color: #E7728E;
}

.p-contact__items {
	display: flex;
	flex-direction: column;
	gap: 32px;
	margin-top: 28px;
}

.p-contact-control {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.p-form-label {
	align-items: center;
	background: rgba(232, 138, 149, 0.7);
	color: #fff;
	display: inline-flex;
	font-size: 14px;
	font-weight: 600;
	gap: 4px;
	padding: 4px 16px;
}

.p-form-label__required {
	color: #E7728E;
	font-size: 10px;
	font-weight: 600;
}

.p-contact-control__input {
	flex-grow: 1;
}

.p-form-text {
	background: #FFF;
	border: 0;
	box-shadow: 5px 6px 16px 0px rgba(96, 96, 96, 0.16);
	font-size: 16px;
	height: 40px;
}

.p-form-text:focus {
	box-shadow: 5px 6px 16px 0px rgba(232, 138, 149, 0.16);
	outline: #e88a95 auto 1px;
}

.p-contact-control__radios {
	align-items: center;
	display: flex;
}

.p-form-radio {
	position: relative;
}

.p-form-radio__input:checked + .p-form-radio__text {
	background: #e88a95;
	color: #fff;
}

.p-form-radio__input:focus + .p-form-radio__text {
	box-shadow: 5px 6px 16px 0px rgba(232, 138, 149, 0.32);
	outline: #e88a95 auto 1px;
}

.p-form-radio__text {
	background: #FFF;
	border: 1px solid #FFF;
	color: #e88a95;
	display: grid;
	font-size: 16px;
	font-weight: 300;
	height: 40px;
	letter-spacing: 0.026px;
	place-items: center;
	text-align: center;
	width: 80px;
}

.p-form-textarea {
	background: #FFF;
	border: 0;
	filter: drop-shadow(5px 6px 16px rgba(96, 96, 96, 0.16));
	font-size: 16px;
	height: 122px;
}

.p-form-textarea:focus {
	box-shadow: 5px 6px 16px 0px rgba(232, 138, 149, 0.16);
	outline: #e88a95 auto 1px;
}

.p-contact__footer {
	margin-top: 21px;
}

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

.p-form-checkbox {
	position: relative;
}

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

.p-form-checkbox__input:focus + .p-form-checkbox__text::before {
	box-shadow: 5px 6px 16px 0px rgba(232, 138, 149, 0.32);
	outline: #e88a95 auto 1px;
}

.p-form-checkbox__text {
	font-size: 16px;
	padding-left: 30px;
}

.p-form-checkbox__text a {
	color: #e88a95;
	text-decoration: underline;
}

.p-form-checkbox__text::before,
.p-form-checkbox__text::after {
	content: "";
	inset-block: 0;
	left: 0;
	margin-block: auto;
	position: absolute;
}

.p-form-checkbox__text::before {
	background: #FFF;
	border: 1px solid #e88a95;
	height: 22px;
	width: 22px;
}

.p-form-checkbox__text::after {
	background: url(../img/check-icon.png) no-repeat center center/contain;
	height: 14.621px;
	left: 1.29px;
	opacity: 0;
	width: 19.414px;
}

.p-contact__submit {
	margin-top: 23px;
	text-align: center;
}

.p-copyright {
	align-items: center;
	display: flex;
	height: 55px;
	justify-content: center;
}

.p-copyright__text {
	color: #888888;
	font-size: 14px;
	line-height: 1;
}

.p-to-top {
	background-color: #fff;
	border: 2px solid #e88a95;
	border-radius: 50%;
	bottom: 40px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	display: none;
	font-size: 32px;
	height: 72px;
	line-height: 72px;
	position: fixed;
	right: 20px;
	text-align: center;
	transition: background-color 0.3s ease, color 0.3s ease;
	width: 72px;
	z-index: 30;
}

.p-to-top::after {
	border-right: 3px solid #e88a95;
	border-top: 3px solid #e88a95;
	content: "";
	height: 18px;
	left: 24px;
	position: absolute;
	top: 26px;
	transform: rotate(-45deg);
	width: 18px;
}

.p-to-top.is-show {
	display: block;
}

@media (hover: hover) {

a:hover {
	cursor: pointer;
	opacity: 0.7;
}

.p-header__logo:hover {
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background: linear-gradient(100deg, #ff7ee1 0%, #6ad3f3 100%);
	background-clip: text;
}

.p-header-nav__link:hover::after {
	opacity: 1;
}

.p-to-top:hover {
	color: #fff;
}

}

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

main {
	margin-top: 80px;
}

.l-header {
	height: 80px;
}

.l-header__inner {
	padding: 0 40px;
}

.l-contact {
	padding: 189px 40px 260px;
}

.l-contact__form {
	margin-top: 56px;
}

.c-section {
	padding: 160px 0;
}

.c-section__title {
	font-size: 36px;
}

.c-section__link {
	background: #fff;
	border: 1px solid #e88a95;
	color: #e88a95;
	display: block;
	font-family: "Montserrat", sans-serif;
	font-size: 20px;
	font-weight: 600;
	margin: 0 auto;
	padding: 20px 0;
	text-align: center;
	transition: all 0.2s ease;
	width: 200px;
}

.p-top__content {
	top: 50%;
	transform: translateY(-50%);
}

.p-top__title {
	line-height: 1.6666666667;
}

.p-top__lead {
	line-height: 1.4285714286;
	margin-top: 20px;
}

.p-work__footer {
	margin-top: 42px;
}

.p-contact__items {
	margin-top: 19px;
}

.p-contact-control {
	flex-direction: row;
	gap: 10px;
}

.p-contact-control__head {
	flex-shrink: 0;
	width: 180px;
}

.p-form-label {
	-webkit-clip-path: polygon(0% 0%, 97% 0, 100% 50%, 97% 99%, 0% 100%);
	clip-path: polygon(0% 0%, 97% 0, 100% 50%, 97% 99%, 0% 100%);
	font-size: 18px;
	justify-content: center;
	padding-bottom: 4px;
	padding-inline: 4px;
	padding-top: 5px;
	width: 100%;
}

.p-form-label__required {
	font-size: 12px;
}

.p-contact__footer {
	margin-top: 27px;
}

.p-contact__submit {
	margin-top: 44px;
}

.u-is-sp {
	display: none;
}

}

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

.c-section__link:hover {
	background: rgba(232, 138, 149, 0.7);
	color: #fff;
}

}

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

.c-button-drawer {
	display: none;
}

.p-header__right {
	display: block;
	font-family: "Montserrat", sans-serif;
	height: inherit;
	margin-left: auto;
}

.p-skill__list {
	align-items: stretch;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 60px;
	padding: 0 58px;
}

.p-skill__item {
	max-width: 320px;
	width: calc((100% - 60px) / 2);
}

.p-skill__item-text {
	min-height: 200px;
}

.p-about__content {
	flex-direction: row;
	gap: 100px;
}

.p-about__message {
	flex: 0 1 70%;
}

.p-about__message .p-about__message-text {
	line-height: 1.5;
}

.p-about__message {
	margin-left: 0;
}

}

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

.p-swiper {
	margin: 80px auto 0;
}

.p-about__message .p-about__message-text .twitter-link {
	font-size: 50px;
}

}

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

.is-sp {
	display: none;
}

}

