/* リキッドレイアウト対応 */

/********************************
* フォント
********************************/

/********************************
* カラー
********************************/

/********************************
* z-index
********************************/

body {
	background: #fff;
	display: flex;
	flex-direction: column;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	line-height: 1.6;
	min-height: 100vh;
	position: relative;
}

main {
	flex: 1;
}

/* 背景固定用CSS */

.is-screen-locked {
	overflow: hidden;
}

.u-desktop {
	display: none;
}

html {
	font-size: 16px;
}

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

/* Remove default padding */

ul,
ol {
	padding: 0;
}

/* Remove default margin */

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

/* Set core root defaults */

html {
	scroll-behavior: smooth;
}

/* Set core body defaults */

body {
	display: flex;
	flex-direction: column;
	line-height: 1.5;
	min-height: 100vh;
	text-rendering: optimizeSpeed;
}

main {
	flex: 1;
}

/* Remove list styles on ul, ol elements with a class attribute */

ul,
ol {
	list-style: none;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
}

/* Make images easier to work with */

img {
	display: block;
	max-width: 100%;
	width: 100%;
}

/* Inherit fonts for inputs and buttons */

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

/* Blur images when they have no alt attribute */

img:not([alt]) {
	filter: blur(10px);
}

/* フォームリセット */

input,
button,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
}

textarea {
	resize: vertical;
}

input[type=submit],
input[type=button],
label,
button,
select {
	cursor: pointer;
}

select::-ms-expand {
	display: none;
}

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

/* Natural flow and rhythm in articles by default */

.breadcrumbs {
	letter-spacing: 0.0625em;
	margin-top: 0.8125rem;
}

.breadcrumbs {
	font-size: 0.875rem;
}

.c-btn {
	background: #FFEA2E;
	border: 1px solid #FFEA2E;
	display: inline-block;
	font-size: 1.25rem;
	letter-spacing: 0.1em;
	line-height: 1;
	max-width: 20.9375rem;
	overflow: hidden;
	padding: 0.875rem 0;
	text-align: center;
	transition: all 0.3s;
	width: 100%;
}

.c-btn--news {
	background: #FFEA2E;
	border: 1px solid #111;
	display: inline-block;
	overflow: hidden;
	padding: 0.875rem 0;
	text-align: center;
	width: 100%;
}

.c-btn--slide {
	overflow: hidden;
}

.c-btn--slide a {
	border: 1px solid #fff;
	position: relative;
	z-index: 2;
}

.c-btn--slide a:before {
	background-color: #e99bc1;
	content: "";
	height: 100%;
	left: -100%;
	position: absolute;
	top: 0;
	transition: all 300ms linear;
	width: 100%;
	z-index: -1;
}

.c-btn--slide--white {
	overflow: hidden;
}

.c-btn--slide--white a {
	position: relative;
	z-index: 2;
}

.c-btn--slide--white a:before {
	background-color: #e99bc1;
	border: 1px #e99bc1;
	content: "";
	height: 100%;
	left: -100%;
	position: absolute;
	top: 0;
	transition: all 300ms linear;
	width: 100%;
	z-index: -1;
}

.c-btn--header {
	align-items: center;
	background: #FFEA2E;
	color: #333333;
	display: flex;
	height: 100%;
	justify-content: center;
	transition: all 0.3s;
	width: 100%;
}

.c-hamburger {
	z-index: 9999;
}

.c-hamburger span {
	background: #111;
	display: block;
	height: 2px;
	position: relative;
	transition: ease 0.3s;
	width: 26px;
}

.c-hamburger span:nth-child(1) {
	top: 0;
}

.c-hamburger span:nth-child(2) {
	margin: 6px 0;
}

.c-hamburger span:nth-child(3) {
	top: 0;
}

/*OPEN時の動き*/

.c-hamburger.open span:nth-child(1) {
	top: 8px;
	transform: rotate(45deg);
}

.c-hamburger.open span:nth-child(2) {
	opacity: 0;
	transform: translateY(-50%);
}

.c-hamburger.open span:nth-child(3) {
	top: -8px;
	transform: rotate(-45deg);
}

body {
	animation: loader-fadeOut 2s;
	animation-fill-mode: both;
	animation-timing-function: ease; /*アニメーションの進行具合*/
	opacity: 0;
}

.c-loader__top {
	animation-delay: 0.5s; /*アニメーションの開始を遅らせる*/
	animation-duration: 1s; /*アニメーションの長さ*/
	animation-fill-mode: forwards; /*開始と終了の状態*/
	animation-name: clip-1;
	animation-timing-function: linear; /*アニメーションの進行具合*/
	background: #e99bc1;
	height: 100vh;
	left: 0;
	margin: 0;
	padding: 0;
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 9998;
}

.c-section-title {
	display: block;
	font-size: 1.25rem;
	font-weight: 400;
	letter-spacing: 0.066em;
	text-align: center;
}

.c-section-title span {
	background-color: rgb(194, 248, 183);
	border-radius: 50%;
	display: inline-block;
	margin-right: 0.125rem;
	opacity: 0;
	padding: 0.125rem 0.3125rem;
}

.c-section-title.is-animated span {
	animation: ball 2s ease-in forwards;
}

.c-section-title span:nth-child(even) {
	transform: translateY(5px);
}

.c-section-title.is-animated span:nth-child(even) {
	animation: ball2-sp 2.5s ease-in forwards;
}

.c-to-top {
	align-items: center;
	background: #fff;
	bottom: 1.3125rem;
	cursor: pointer;
	display: none;
	height: 2.8125rem;
	justify-content: center;
	position: fixed;
	right: 1.3125rem;
	transition: all 0.3s;
	width: 2.8125rem;
	z-index: 100;
}

.c-to-top.is-fadein {
	animation-direction: normal; /*アニメーションの向き*/
	animation-duration: 1s; /*アニメーションの長さ*/
	animation-fill-mode: forwards; /*開始と終了の状態*/
	animation-name: to-top-fadeIn; /*1で解説*/
	display: flex;
	opacity: 0;
}

.c-to-top__arrow {
	border-left: 0.25rem solid #000;
	border-top: 0.25rem solid #000;
	display: inline-block;
	height: 1.125rem;
	margin: 0.5rem 0.625rem 0;
	transform: rotate(45deg);
	transition: all 0.3s;
	width: 1.125rem;
}

.l-header {
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 9999;
}

.l-inner {
	height: inherit;
	margin: 0 auto;
	max-width: 33.75rem;
	padding-left: 20px;
	padding-right: 20px;
	width: 100%;
}

.l-lower-blog-contact {
	margin-top: 7.8125rem;
}

.l-lower-blog-items {
	margin-top: 2.375rem;
}

.l-lower-blog-pagination {
	margin-top: 5rem;
}

.l-lower-contact-form {
	margin-top: 4.6875rem;
}

.l-lower-content-body {
	margin-top: 5.625rem;
}

.l-lower-content-contact {
	margin-top: 8rem;
}

.l-lower-news {
	margin-top: 5.125rem;
}

.l-lower-overview-body {
	margin-top: 5.3125rem;
}

.l-lower-overview-contact {
	margin-top: 7.5rem;
}

.l-lower-overview-map {
	margin-left: auto;
	margin-right: auto;
	margin-top: 7.5rem;
}

.l-lower-works-items {
	margin-top: 1.375rem;
}

.l-lower-works-contact {
	margin-top: 7.5rem;
}

.l-lower-works-nav {
	margin-top: 5.3125rem;
}

.l-lower-works-pagination {
	display: block;
	margin-top: 4.875rem;
}

.l-news-contact {
	margin-top: 7.5rem;
}

.l-news-pagination {
	display: none;
}

.l-post-news-article {
	margin-top: 7.5rem;
}

.l-post-news-breadcrumbs {
	margin-top: 4.125rem;
}

.l-post-news-contact {
	margin-top: 7.5rem;
}

.l-post-news-pagination {
	margin-top: 5rem;
}

.l-post-news {
	margin-top: 4.875rem;
}

.l-post-works-article {
	margin-top: 7.5rem;
}

.l-post-works-breadcrumbs {
	margin-top: 4.125rem;
}

.l-post-works-contact {
	margin-top: 7.5rem;
}

.l-post-works-pagination {
	margin-top: 5rem;
}

.l-post-works {
	margin-top: 4.875rem;
}

.l-top-blog {
	margin-top: 7.5rem;
}

.l-top-contact {
	margin-top: 12.75rem;
}

.l-top-content {
	margin-top: 7.375rem;
	position: relative;
}

.l-top-news {
	margin-top: 1.4375rem;
}

.l-top-overview {
	margin-top: 6.9375rem;
}

.l-top-works {
	margin-top: 7.5rem;
}

.p-blog__title {
	position: relative;
}

.p-blog__title::before {
	color: #f7af3c;
	content: "Blog";
	display: block;
	font-family: "Noto Serif JP", serif;
	font-size: 3.125rem;
	font-weight: normal;
	left: 50%;
	position: absolute;
	top: -3.1875rem;
	transform: translateX(-50%);
	z-index: -2;
}

.p-blog__items {
	margin-top: 3.4375rem;
}

.p-blog__item {
	box-shadow: 0 2px 5px #000;
	opacity: 0;
}

.p-blog__item + .p-blog__item {
	margin-top: 1.375rem;
}

.p-blog__item.is-animated:first-child {
	animation-direction: normal; /*アニメーションの向き*/
	animation-duration: 0.3s; /*アニメーションの長さ*/
	animation-fill-mode: forwards; /*開始と終了の状態*/
	animation-name: slideRight; /*1で解説*/
	animation-timing-function: linear; /*アニメーションの進行具合*/
}

.p-blog__item.is-animated:nth-child(2) {
	animation-delay: 0.3s; /*アニメーションの開始を遅らせる*/
	animation-direction: normal; /*アニメーションの向き*/
	animation-duration: 0.3s; /*アニメーションの長さ*/
	animation-fill-mode: forwards; /*開始と終了の状態*/
	animation-name: slideRight; /*1で解説*/
	animation-timing-function: linear; /*アニメーションの進行具合*/
}

.p-blog__item.is-animated:nth-child(3) {
	animation-delay: 0.6s; /*アニメーションの開始を遅らせる*/
	animation-direction: normal; /*アニメーションの向き*/
	animation-duration: 0.3s; /*アニメーションの長さ*/
	animation-fill-mode: forwards; /*開始と終了の状態*/
	animation-name: slideRight; /*1で解説*/
	animation-timing-function: linear; /*アニメーションの進行具合*/
}

.p-blog__btn {
	margin-top: 1.5rem;
	text-align: center;
}

.p-card {
	align-self: auto;
	box-shadow: 0 1px 5px #333;
	display: flex;
	flex-direction: column;
	position: relative;
	transition: 0.3s;
}

.p-card--new {
	position: relative;
}

.p-card--new::after {
	align-items: center;
	background: #ffba6a;
	border-radius: 50%;
	color: #333333;
	content: "New";
	display: flex;
	height: 3.75rem;
	justify-content: center;
	left: -0.75rem;
	position: absolute;
	top: -0.75rem;
	width: 3.75rem;
}

.p-card__img {
	overflow: hidden;
	position: relative;
	width: 100%;
}

.p-card__img::before {
	content: "";
	display: block;
	overflow: hidden;
	padding-top: 66.56%;
}

.p-card__img img {
	-o-object-fit: cover;
	-o-object-position: center;
	height: 100%;
	left: 50%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.3s;
	width: 100%;
}

.p-card__body {
	color: #333;
	padding: 0.5rem 0.9375rem 1.4375rem 0.9375rem;
	transition: all 0.3s;
}

.p-card__title {
	font-size: 1.125rem;
	font-weight: 500;
	letter-spacing: 0.0556em;
	line-height: 1.6;
}

.p-card__text {
	font-size: 0.875rem;
	font-weight: 400;
	letter-spacing: 0.0714em;
	line-height: 1.8571428571;
	margin-top: 0.25rem;
}

.p-card__bottom {
	display: flex;
	margin-top: auto;
	padding: 0.5rem 0.9375rem;
}

.p-card__category {
	align-items: center;
	background: #FFEA2E;
	display: flex;
	font-size: 0.875rem;
	justify-content: center;
	letter-spacing: 0.0714em;
	padding: 0.125rem 0.3125rem;
}

.p-card__category.event {
	background-color: #e99bc1;
	border: 1px solid #e99bc1;
	color: #fff;
}

.p-card__category.news {
	background-color: #f7af3c;
	border: 1px solid #f7af3c;
	color: #fff;
}

.p-card__category.shop {
	background-color: #cbf0f3;
	border: 1px solid #cbf0f3;
}

.p-card__category.blog {
	background-color: #e99bc1;
	color: #fff;
}

.p-card__category.item {
	background-color: #d17df1;
	color: #fff;
}

.p-card__category.shop-info {
	background-color: #f7af3c;
	color: #fff;
}

.p-card__category.staff {
	background-color: #cbf0f3;
	color: #111;
}

.p-card__category.trivia {
	background-color: #FFEA2E;
	color: #111;
}

.p-card__date {
	font-size: 0.875rem;
	letter-spacing: 0.0714em;
	margin-left: auto;
}

.p-contact {
	background: #cbf0f3;
	padding-bottom: 4rem;
	padding-top: 3.625rem;
}

.p-contact__title {
	font-size: 1.5625rem;
	position: relative;
}

.p-contact__title::before {
	color: #f7af3c;
	content: "Contact";
	display: block;
	font-family: "Noto Serif JP", serif;
	font-size: 3.125rem;
	font-weight: normal;
	left: 50%;
	position: absolute;
	top: -3.4375rem;
	transform: translateX(-50%);
}

.p-contact__text {
	font-size: 1.25rem;
	letter-spacing: 0.125em;
	line-height: 1.4375;
	margin-top: 2.25rem;
	text-align: center;
}

.p-contact__btn {
	margin-top: 2.875rem;
	text-align: center;
}

.p-content-box {
	display: flex;
	flex-wrap: wrap;
}

.p-content-box__item {
	background-position: top;
	background-repeat: no-repeat;
	background-size: cover;
	flex: 0 0 50%;
	height: 50vw;
	opacity: 0;
	position: relative;
}

.p-content-box__item:first-child {
	background-image: url(../img/common/furisode1.jpg);
}

.p-content-box__item:nth-child(2) {
	background-image: url(../img/common/furisode2.jpg);
}

.p-content-box__item:nth-child(3) {
	background-image: url(../img/common/furisode3.jpg);
}

.p-content-box__item:nth-child(4) {
	background-image: url(../img/common/furisode4.jpg);
}

.p-content-box__item.is-animated:first-child {
	animation-direction: normal; /*アニメーションの向き*/
	animation-duration: 0.3s; /*アニメーションの長さ*/
	animation-fill-mode: forwards; /*開始と終了の状態*/
	animation-name: slideRight; /*1で解説*/
	animation-timing-function: linear; /*アニメーションの進行具合*/
}

.p-content-box__item.is-animated:nth-child(2) {
	animation-delay: 0.3s; /*アニメーションの開始を遅らせる*/
	animation-direction: normal; /*アニメーションの向き*/
	animation-duration: 0.3s; /*アニメーションの長さ*/
	animation-fill-mode: forwards; /*開始と終了の状態*/
	animation-name: slideRight; /*1で解説*/
	animation-timing-function: linear; /*アニメーションの進行具合*/
}

.p-content-box__item.is-animated:nth-child(3) {
	animation-delay: 0.6s; /*アニメーションの開始を遅らせる*/
	animation-direction: normal; /*アニメーションの向き*/
	animation-duration: 0.3s; /*アニメーションの長さ*/
	animation-fill-mode: forwards; /*開始と終了の状態*/
	animation-name: slideRight; /*1で解説*/
	animation-timing-function: linear; /*アニメーションの進行具合*/
}

.p-content-box__item.is-animated:nth-child(4) {
	animation-delay: 0.9s; /*アニメーションの開始を遅らせる*/
	animation-direction: normal; /*アニメーションの向き*/
	animation-duration: 0.3s; /*アニメーションの長さ*/
	animation-fill-mode: forwards; /*開始と終了の状態*/
	animation-name: slideRight; /*1で解説*/
	animation-timing-function: linear; /*アニメーションの進行具合*/
}

.p-content-box__link {
	align-items: center;
	display: flex;
	height: 100%;
	justify-content: center;
	width: 100%;
}

.p-content-box__text {
	background: rgba(233, 155, 193, 0.6);
	color: #fff;
	font-size: 1.25rem;
	font-weight: 400;
	letter-spacing: 0.1em;
	text-align: center;
	transition: 0.3s;
}

.p-content {
	padding-top: 1.75rem;
}

.p-content.is-animated::before {
	-webkit-clip-path: polygon(0 0, 0 0, 0 0, 0 0);
	animation-delay: 1.7s; /*アニメーションの開始を遅らせる*/
	animation-direction: normal; /*アニメーションの向き*/
	animation-duration: 1.5s; /*アニメーションの長さ*/
	animation-fill-mode: forwards; /*開始と終了の状態*/
	animation-name: borderSlide1; /*1で解説*/
	animation-timing-function: linear; /*アニメーションの進行具合*/
	background: url(../img/common/itimatu-pink.jpg) no-repeat center center/cover;
	clip-path: polygon(0 0, 0 0, 0 0, 0 0);
	content: "";
	display: block;
	height: 67.25rem;
	left: 0%;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -2;
}

.p-content__title {
	position: relative;
}

.p-content__title::before {
	color: #f7af3c;
	content: "Plan";
	display: block;
	font-family: "Noto Serif JP", serif;
	font-size: 3.125rem;
	font-weight: normal;
	left: 50%;
	position: absolute;
	top: -3.0625rem;
	transform: translateX(-50%);
}

.p-content__items {
	margin-top: 2.8125rem;
}

.p-drawer-menu {
	background: #cbf0f3;
	height: 100vh;
	margin-left: auto;
	max-width: 15rem;
	min-height: 100vh;
	padding-bottom: 6.25rem;
	padding-top: 6.25rem;
	text-align: center;
	transform: translateX(200%);
	transition: all 0.3s;
	width: 100%;
	z-index: 100;
}

.p-drawer-menu.open {
	transform: translateX(0);
}

.p-drawer-menu__item a {
	display: block;
	letter-spacing: 0.2em;
	line-height: 1;
	padding: 0.9375rem 0;
	width: 100%;
}

.p-footer-menu--pc__item {
	padding-bottom: 0.125rem;
	padding-top: 0.25rem;
}

.p-footer-menu--pc__item a {
	-webkit-text-decoration: none;
	display: inline-block;
	height: 100%;
	letter-spacing: 0.125em;
	padding-left: 0.9375rem;
	padding-right: 0.9375rem;
	position: relative;
	text-decoration: none;
	width: 100%;
}

.p-footer {
	background: #e6e6e6;
	padding: 2.875rem 0;
}

.p-footer__inner {
	padding-left: 0.625rem;
	padding-right: 0.625rem;
	width: 100%;
}

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

.p-footer__logo {
	margin-left: auto;
	margin-right: auto;
	width: 6.25rem;
}

.p-footer__copy {
	font-size: 0.6875rem;
	letter-spacing: 0.12em;
	margin-top: 2rem;
	text-align: center;
}

.form__topText {
	font-size: 1rem;
	letter-spacing: 0.04em;
	line-height: 1.7;
}

.form__topText + .form__topText {
	margin-top: 0.625rem;
}

.form__contents {
	margin-top: 3.125rem;
}

.form__content + .form__content {
	margin-top: 2.5rem;
}

.form__contentButton {
	display: flex;
	flex-wrap: wrap;
	gap: 1.875rem 3.125rem;
	justify-content: center;
	width: 100%;
}

.form__contentButton > p {
	display: inherit;
	flex-wrap: inherit;
	gap: inherit;
	justify-content: inherit;
	width: inherit;
}

.form__contentCheckbox {
	text-align: center;
}

.form__head {
	align-items: center;
	display: flex;
	gap: 0.625rem;
}

.form__title {
	font-size: 1rem;
	font-weight: 700;
	line-height: 1;
}

.form__required {
	color: red;
	font-size: 1rem;
	font-weight: bold;
	line-height: 1;
}

.form__item {
	margin-top: 0.625rem;
}

.formText {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: #fff;
	background-image: none;
	border: 1px solid #222;
	border-radius: 0;
	color: inherit;
	font-family: inherit;
	font-size: 1rem;
	padding: 0.3125rem 0.625rem;
	width: 100%;
}

.formText:focus {
	box-shadow: none;
	outline: 2px solid #007bff;
}

.formText::-moz-placeholder {
	color: inherit;
}

.formText::placeholder {
	color: inherit;
}

.formText:focus::-moz-placeholder {
	color: transparent;
}

.formText:focus::placeholder {
	color: transparent;
}

.formRadio {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 0.3125rem 0.625rem;
	padding-left: 0.625rem;
}

.formRadio > p {
	display: inherit;
	flex-direction: inherit;
	flex-wrap: inherit;
	gap: inherit;
	padding-left: inherit;
}

.formRadio br {
	display: none;
}

.formRadio label {
	position: relative;
	width: -moz-fit-content;
	width: fit-content;
}

.formRadio input[type=radio] {
	clip: rect(0 0 0 0);
	-webkit-clip-path: inset(50%);
	border: 0;
	clip-path: inset(50%);
	height: 100%;
	overflow: hidden;
	padding: 0;
	position: absolute;
	white-space: nowrap;
	width: 100%;
}

.formRadio input[type=radio]:focus-visible + span {
	outline: 2px solid red;
}

.formRadio input[type=radio] + span {
	cursor: pointer;
	display: inline-block;
	padding: 5px 15px 6px 25px;
	position: relative;
}

.formRadio input[type=radio] + span::before {
	-webkit-transform: translateY(-50%);
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.16);
	border-radius: 50%;
	content: "";
	display: block;
	height: 16px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
}

.formRadio input[type=radio] + span::after {
	-webkit-transform: translateY(-50%);
	background: #007bff;
	border: 1px solid transparent;
	border-radius: 50%;
	content: "";
	height: 8px;
	left: 4px;
	opacity: 0;
	padding: 2px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease 0s;
	width: 8px;
}

.formRadio input[type=radio]:checked + span::after {
	opacity: 1;
}

.formSelect {
	border: 1px solid #222;
	font-size: 1rem;
	max-width: 100%;
	padding: 0.3125rem 0.625rem;
	width: -moz-fit-content;
	width: fit-content;
}

.formSelect:focus {
	box-shadow: none;
	outline: 2px solid #007bff;
}

.formSelect::-moz-placeholder {
	color: inherit;
}

.formSelect::placeholder {
	color: inherit;
}

.formSelect:focus::-moz-placeholder {
	color: transparent;
}

.formSelect:focus::placeholder {
	color: transparent;
}

.formTextArea {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: #fff;
	background-image: none;
	border: 1px solid #222;
	border-radius: 0;
	color: inherit;
	font-size: 1rem;
	min-height: 200px;
	padding: 0.3125rem 0.625rem;
	resize: none;
	white-space: pre-wrap;
	width: 100%;
}

.formTextArea:focus {
	box-shadow: none;
	outline: 2px solid #007bff;
}

.formTextArea::-moz-placeholder {
	color: inherit;
}

.formTextArea::placeholder {
	color: inherit;
}

.formTextArea:focus::-moz-placeholder {
	color: transparent;
}

.formTextArea:focus::placeholder {
	color: transparent;
}

.formCheck {
	display: flex;
	flex-wrap: wrap;
	gap: 0.3125rem 0.625rem;
	padding-left: 0.625rem;
}

.formCheck > p {
	display: inherit;
	flex-direction: inherit;
	flex-wrap: inherit;
	gap: inherit;
	padding-left: inherit;
}

.formCheck label {
	position: relative;
}

.formCheck input[type=checkbox] {
	cursor: pointer;
	height: 100%;
	left: 0;
	margin: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 10;
}

.formCheck input[type=checkbox] + span {
	cursor: pointer;
	display: inline-block;
	font-size: 1rem;
	letter-spacing: 0.04em;
	line-height: 1.714285;
	margin: 0 0.2em 0;
	padding: 0 0 0 1.5625rem;
	position: relative;
}

.formCheck input[type=checkbox] + span::before {
	-webkit-transform: translateY(-50%);
	background: #fff;
	border: 1px solid #222;
	border-radius: 2px;
	content: "";
	display: block;
	height: 1em;
	left: 0;
	position: absolute;
	top: 0.9375rem;
	width: 1em;
}

.formCheck input[type=checkbox] + span::after {
	-webkit-transform: translateY(-50%) rotate(-45deg);
	border-bottom: 3px solid #007bff;
	border-left: 3px solid #007bff;
	content: "";
	display: block;
	height: 0.6em;
	left: 1px;
	opacity: 0;
	position: absolute;
	top: 0.75rem;
	transform: translateY(-50%) rotate(-45deg);
	transition: all 0.3s ease 0s;
	width: 1em;
}

.formCheck input[type=checkbox]:checked + span::before {
	background: #fff;
}

.formCheck input[type=checkbox]:checked + span::after {
	opacity: 1;
}

.formCheck input[type=checkbox]:focus-visible + span {
	outline: 2px solid #007bff;
}

.formAgree label {
	position: relative;
}

.formAgree input[type=checkbox] {
	cursor: pointer;
	height: 100%;
	left: 0;
	margin: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 10;
}

.formAgree input[type=checkbox] + span {
	cursor: pointer;
	display: inline-block;
	font-size: 1.125rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.714285;
	margin: 0 0.2em 0;
	padding: 0 0 0 26px;
	position: relative;
}

.formAgree input[type=checkbox] + span::before {
	-webkit-transform: translateY(-50%);
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.16);
	border-radius: 2px;
	content: "";
	display: block;
	height: 1em;
	left: 0;
	position: absolute;
	top: 17px;
	width: 1em;
}

.formAgree input[type=checkbox] + span::after {
	-webkit-transform: translateY(-50%) rotate(-45deg);
	border-bottom: 3px solid #000;
	border-left: 3px solid #000;
	content: "";
	display: block;
	height: 0.6em;
	left: 1px;
	opacity: 0;
	position: absolute;
	top: 13px;
	transform: translateY(-50%) rotate(-45deg);
	transition: all 0.3s ease 0s;
	width: 1em;
}

.formAgree input[type=checkbox]:checked + span::before {
	background: #fff;
}

.formAgree input[type=checkbox]:checked + span::after {
	opacity: 1;
}

.formAgree input[type=checkbox]:focus-visible + span {
	outline: 2px solid #007bff;
}

.formBtn {
	-webkit-appearance: none;
	-webkit-text-decoration: none;
	background-color: #000;
	background-image: none;
	border: none;
	border-radius: 0;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	flex: 0 0 12.5rem;
	font-size: 0.875rem;
	font-weight: 700;
	margin: 0;
	padding: 0.625rem;
	text-decoration: none;
	transition: background 0.3s ease;
}

.formBtn.is_confirm {
	background: #706e6e;
}

.formBtn.is_remove {
	background: #706e6e;
}

.formBtn:disabled {
	background: #ccc;
	pointer-events: none;
}

.formBtn:hover,
.formBtn:focus {
	outline: none;
}

.formBtn::-moz-foucus-inner {
	border: none;
	padding: 0;
}

.formBtn:focus-visible {
	outline: 1px solid #007bff;
}

.formPolicy {
	background: #fff;
	border: 1px solid #333;
	height: 25rem;
	overflow-y: scroll;
	padding: 0.625rem;
	width: 100%;
}

.formPolicy p {
	font-size: 1rem;
	letter-spacing: 0.04em;
	line-height: 1.7142;
}

.wpcf7-spinner {
	display: none;
}

.wpcf7-list-item {
	margin: 0;
}

.wpcf7-response-output {
	display: none;
}

.wpcf7 form .wpcf7-response-output {
	border: none;
}

.confirmArea {
	display: none;
}

.confirmAreaItem {
	font-size: 1rem;
}

.p-header {
	background: rgba(255, 255, 255, 0.6);
	color: #111;
	height: 3.125rem;
}

.p-header.change-color {
	background: #fff;
	box-shadow: 0 2px 2px #e99bc1;
	color: #111;
}

.p-header__inner {
	height: inherit;
	padding: 0 1.25rem;
}

.p-header__logo {
	align-items: center;
	display: flex;
	height: inherit;
	width: 6.25rem;
}

.p-header__logo img {
	align-items: center;
	display: flex;
	height: 100%;
	width: 100%;
}

.p-header__drawer {
	position: absolute;
	right: 1.25rem;
	top: 1.0625rem;
}

.p-header__menu {
	left: 0;
	overflow: scroll;
	position: absolute;
	right: 0;
	top: 0;
}

.p-header__overlay {
	background: rgba(34, 34, 34, 0.6);
	display: none;
	height: 100vh;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 99;
}

.p-header__overlay.open {
	display: block;
}

.p-header__pc-menu {
	height: inherit;
	margin-left: auto;
}

.p-lower-404 {
	padding: 7.5rem 1.25rem;
}

.p-lower-404__title {
	color: rgba(255, 234, 46, 0.3);
	font-size: 2.5rem;
	letter-spacing: 0.05em;
	text-align: center;
}

.p-lower-404__text {
	font-size: 1.25rem;
	letter-spacing: 0.1em;
	margin-top: 5rem;
	text-align: center;
}

.p-lower-404__btn {
	margin-top: 5rem;
	text-align: center;
}

.p-lower-blog-items {
	grid-gap: 1.25rem;
	display: grid;
	grid-template-columns: 1fr;
}

.p-lower-blog-items__item {
	box-shadow: 0 1px 10px #333;
}

.p-lower-blog-items__item--new::after {
	align-items: center;
	background: #ffba6a;
	border-radius: 50%;
	color: #333333;
	content: "New";
	display: flex;
	height: 3.75rem;
	justify-content: center;
	left: -0.75rem;
	position: absolute;
	top: -0.75rem;
	width: 3.75rem;
}

.p-lower-blog-mv {
	background: url(../img/common/blog-mv.jpg) no-repeat center/cover;
}

.p-lower-common-mv {
	padding-bottom: 11.6875rem;
	padding-top: 11.875rem;
	position: relative;
}

.p-lower-common-mv__title {
	color: #fff;
	font-size: 1.875rem;
	font-weight: 700;
	letter-spacing: 0.0667em;
	position: relative;
	text-align: center;
	z-index: 10;
}

.p-lower-contact-form .contact__form {
	background: transparent;
	margin-left: auto;
	margin-right: auto;
	max-width: 36.875rem;
	padding-bottom: 7.5rem;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	width: 100%;
}

.p-lower-contact-form .contact__form--row:not(:first-child) {
	margin-top: 1.5625rem;
}

.p-lower-contact-form .contact__form--label {
	padding-top: 5px;
	width: 100%;
}

.p-lower-contact-form .contact__form--label label {
	font-size: 0.875rem;
	font-weight: 400;
	letter-spacing: 0.05em;
}

.p-lower-contact-form .contact__form--input {
	margin-top: 1.1875rem;
	width: 100%;
}

.p-lower-contact-form .contact__form--input [type=text] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: #fff;
	border: 1px solid #707070;
	border-radius: 0;
	box-shadow: none;
	color: #333;
	font-family: inherit;
	font-size: 14px;
	padding: 0.625rem;
	width: 100%;
}

.p-lower-contact-form .contact__form--input [type=email] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: #fff;
	border: 1px solid #707070;
	border-radius: 0;
	box-shadow: none;
	color: #333;
	font-family: inherit;
	font-size: 14px;
	padding: 0.625rem;
	width: 100%;
}

.p-lower-contact-form .contact__form--input textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: #fff;
	border: 1px solid #707070;
	border-radius: 0;
	box-shadow: none;
	color: #333;
	font-family: inherit;
	font-size: 14px;
	min-height: 15.625rem;
	padding: 0.625rem;
	resize: vertical;
	width: 100%;
}

.p-lower-contact-form [type=text].wpcf7-not-valid,
.p-lower-contact-form [type=email].wpcf7-not-valid,
.p-lower-contact-form textarea.wpcf7-not-valid {
	background: #ffdcdc;
}

.p-lower-contact-form .wpcf7-response-output {
	color: #ff5757;
	text-align: center;
}

.p-lower-contact-form .wpcf7 form .wpcf7-response-output {
	border: none;
}

.p-lower-contact-form .contact__form--submit {
	margin-top: 3.3125rem;
	padding-right: 15px;
	text-align: center;
}

.p-lower-contact-form .contact__form--submit [type=submit] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: none;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1607843137);
	color: #333;
	cursor: pointer;
	font-family: inherit;
	font-size: 20px;
	font-weight: bold;
	max-width: 36.875rem;
	padding: 1.0625rem 0.5625rem;
	transition: all 0.3s ease 0s;
	width: 100%;
}

.p-lower-contact-form .contact__form--submit [type=submit]:hover {
	opacity: 0.7;
}

.p-lower-contact-form .contact__message {
	display: none;
	margin-top: 60px;
	text-align: center;
}

.p-lower-contact-form .contact__message.-error {
	color: red;
}

.p-lower-contact-mv {
	background: url(../img/common/contact-mv.jpg) no-repeat center/cover;
}

.p-lower-content-back {
	position: relative;
}

.p-lower-content-back::before,
.p-lower-content-back::after {
	content: "";
	display: block;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.p-lower-content-back::before {
	-webkit-clip-path: polygon(0 0, 0 0, 0 0);
	animation-delay: 1s; /*アニメーションの開始を遅らせる*/
	animation-duration: 1s; /*アニメーションの長さ*/
	animation-fill-mode: forwards; /*開始と終了の状態*/
	animation-name: lowerBackSlideLeft;
	animation-timing-function: ease; /*アニメーションの進行具合*/
	background: url(../img/common/itimatu-pink.jpg) no-repeat center center/cover;
	clip-path: polygon(0 0, 0 0, 0 0);
	height: 31.25rem;
	opacity: 0.7;
	z-index: -2;
}

.p-lower-content-back::after {
	-webkit-clip-path: polygon(100% 0, 100% 0, 100% 0);
	animation-delay: 1.5s; /*アニメーションの開始を遅らせる*/
	animation-duration: 1s; /*アニメーションの長さ*/
	animation-fill-mode: forwards; /*開始と終了の状態*/
	animation-name: lowerBackSlideRight;
	animation-timing-function: ease; /*アニメーションの進行具合*/
	background: url(../img/common/itimatu.jpg) no-repeat center center/cover;
	clip-path: polygon(100% 0, 100% 0, 100% 0);
	height: 25rem;
	z-index: -1;
}

.p-lower-content-body__block + .p-lower-content-body__block {
	margin-top: 3.4375rem;
}

.p-lower-content-body__img {
	margin-left: auto;
	margin-right: auto;
	max-width: 33.75rem;
	position: relative;
	width: 100%;
}

.p-lower-content-body__img::before {
	content: "";
	display: block;
	padding-top: 69%;
}

.p-lower-content-body__img img {
	-o-object-fit: cover;
	-o-object-position: center;
	height: 100%;
	left: 50%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.p-lower-content-body__title-box {
	max-width: 33.75rem;
	padding: 1.5rem 0;
	width: 100%;
}

.p-lower-content-body__title {
	background-image: radial-gradient(rgba(123, 222, 217, 0.3843137255) 30%, transparent 30%);
	background-size: 20px 20px;
	color: #ee308c;
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	padding: 1.25rem;
	text-align: center;
}

.p-lower-content-body__sub-title {
	font-size: 1rem;
	margin-top: 0.625rem;
}

.p-lower-content-body__price {
	font-size: 1rem;
	text-align: center;
}

.p-lower-content-body__price span {
	color: #ee308c;
	font-size: 1.875rem;
	margin-left: 0.625rem;
}

.p-lower-content-body__text-box {
	border: 5px solid #e99bc1;
	margin-top: 1.25rem;
	padding: 0.625rem;
	position: relative;
}

.p-lower-content-body__text-box::before {
	background-color: #fff;
	color: #e99bc1;
	content: "セット内容";
	display: inline-block;
	font-size: 1rem;
	left: 50%;
	padding: 0 0.3125rem;
	position: absolute;
	top: -1rem;
	transform: translateX(-50%);
}

.p-lower-content-body__text-box:nth-child(2):before {
	content: "成人式当日";
}

.p-lower-content-body__text-box:nth-child(3)::before {
	content: "前撮り撮影会";
}

.p-lower-content-body__text {
	display: inline-block;
	font-size: 1rem;
	letter-spacing: 0.125em;
	line-height: 1.45;
	margin-right: 0.625rem;
}

.p-lower-content-body__text-box:nth-child(2) .p-lower-content-body__text,
.p-lower-content-body__text-box:nth-child(3) .p-lower-content-body__text {
	display: block;
	margin-right: 0;
	margin-right: initial;
}

.p-lower-content-mv {
	background: url(../img/common/plan-mv.jpg) no-repeat center/cover;
}

.p-lower-news-back {
	position: relative;
}

.p-lower-news-back::before,
.p-lower-news-back::after {
	content: "";
	display: block;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.p-lower-news-back::before {
	-webkit-clip-path: polygon(0 0, 0 0, 0 0);
	animation-delay: 1s; /*アニメーションの開始を遅らせる*/
	animation-duration: 1s; /*アニメーションの長さ*/
	animation-fill-mode: forwards; /*開始と終了の状態*/
	animation-name: lowerBackSlideLeft;
	animation-timing-function: ease; /*アニメーションの進行具合*/
	background: url(../img/common/itimatu-pink.jpg) no-repeat center center/cover;
	clip-path: polygon(0 0, 0 0, 0 0);
	height: 31.25rem;
	opacity: 0.7;
	z-index: -2;
}

.p-lower-news-back::after {
	-webkit-clip-path: polygon(100% 0, 100% 0, 100% 0);
	animation-delay: 1.5s; /*アニメーションの開始を遅らせる*/
	animation-duration: 1s; /*アニメーションの長さ*/
	animation-fill-mode: forwards; /*開始と終了の状態*/
	animation-name: lowerBackSlideRight;
	animation-timing-function: ease; /*アニメーションの進行具合*/
	background: url(../img/common/itimatu.jpg) no-repeat center center/cover;
	clip-path: polygon(100% 0, 100% 0, 100% 0);
	height: 25rem;
	z-index: -1;
}

.p-lower-news__inner {
	margin: 0 auto;
	width: 100%;
}

.p-lower-news__item + .p-lower-news__item {
	margin-top: 1.875rem;
}

.p-lower-overview-body__list {
	border-bottom: 1px solid #111;
	display: flex;
	padding-bottom: 1.3125rem;
	padding-top: 0.875rem;
}

.p-lower-overview-body__title-box {
	flex: 0 0 6.8125rem;
}

.p-lower-overview-body__title {
	font-size: 0.8125rem;
	font-weight: 400;
}

.p-lower-overview-body__text-box {
	width: calc(100% - 109px);
}

.p-lower-overview-body__text {
	font-size: 0.8125rem;
	line-height: 1.7;
}

.p-lower-overview-map {
	max-width: 36.875rem;
	width: 100%;
}

.p-lower-overview-map__iframe-wrap {
	padding-top: 80%;
	position: relative;
	width: 100%;
}

.p-lower-overview-map__iframe-wrap iframe {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.p-lower-overview-mv {
	background: url(../img/common/office.jpg) no-repeat center/cover;
}

.p-lower-thanks {
	padding: 7.5rem 1.25rem;
}

.p-lower-thanks__text {
	font-size: 1.25rem;
	letter-spacing: 0.1em;
	text-align: center;
}

.p-lower-thanks__text + .p-lower-thanks__text {
	margin-top: 5rem;
}

.p-lower-thanks__btn--pc {
	margin-top: 5rem;
	text-align: center;
}

.p-lower-works-back {
	position: relative;
}

.p-lower-works-back::before,
.p-lower-works-back::after {
	content: "";
	display: block;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.p-lower-works-back::before {
	-webkit-clip-path: polygon(0 0, 0 0, 0 0);
	animation-delay: 1s; /*アニメーションの開始を遅らせる*/
	animation-duration: 1s; /*アニメーションの長さ*/
	animation-fill-mode: forwards; /*開始と終了の状態*/
	animation-name: lowerBackSlideLeft;
	animation-timing-function: ease; /*アニメーションの進行具合*/
	background: url(../img/common/itimatu-pink.jpg) no-repeat center center/cover;
	clip-path: polygon(0 0, 0 0, 0 0);
	height: 31.25rem;
	opacity: 0.7;
	z-index: -2;
}

.p-lower-works-back::after {
	-webkit-clip-path: polygon(100% 0, 100% 0, 100% 0);
	animation-delay: 1.5s; /*アニメーションの開始を遅らせる*/
	animation-duration: 1s; /*アニメーションの長さ*/
	animation-fill-mode: forwards; /*開始と終了の状態*/
	animation-name: lowerBackSlideRight;
	animation-timing-function: ease; /*アニメーションの進行具合*/
	background: url(../img/common/itimatu.jpg) no-repeat center center/cover;
	clip-path: polygon(100% 0, 100% 0, 100% 0);
	height: 25rem;
	z-index: -1;
}

.p-lower-works-items__body {
	grid-gap: 0.625rem 0.625rem;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr;
}

.p-lower-works-mv {
	background: url(../img/common/collection-mv.jpg) no-repeat center/cover;
	padding-bottom: 12.5625rem;
	padding-top: 10.9375rem;
}

.p-lower-works-nav {
	background-image: radial-gradient(rgba(123, 222, 217, 0.3843137255) 30%, transparent 30%);
	background-size: 20px 20px;
	padding: 1.25rem 0;
}

.p-lower-works-nav__item--top {
	font-size: 1rem;
	letter-spacing: 0.125em;
	padding: 0.125rem 0.4375rem;
}

.is-genre-active {
	background: #f7af3c;
	color: #fff;
}

.p-lower-works-nav__item {
	font-size: 1rem;
	letter-spacing: 0.125em;
	padding: 0.125rem 0.4375rem;
}

.p-lower-works-nav__item.sweet {
	background-color: #e99bc1;
	color: #fff;
}

.p-lower-works-nav__item.elegant {
	background-color: #d17df1;
	color: #fff;
}

.p-lower-works-nav__item.gorgeous {
	background-color: #f7af3c;
	color: #fff;
}

.p-lower-works-nav__item.cool {
	background-color: #cbf0f3;
	color: #111;
}

.p-lower-works-nav__item.blog {
	background-color: #e99bc1;
	color: #fff;
}

.p-lower-works-nav__item.item {
	background-color: #d17df1;
	color: #fff;
}

.p-lower-works-nav__item.shop-info {
	background-color: #f7af3c;
	color: #fff;
}

.p-lower-works-nav__item.staff {
	background-color: #cbf0f3;
	color: #111;
}

.p-lower-works-nav__item.trivia {
	background-color: #FFEA2E;
	color: #111;
}

.p-lower-works-nav__bottom {
	display: flex;
	flex-wrap: wrap;
	margin-top: 0.875rem;
}

.p-mv {
	height: 100vh;
	position: relative;
	width: 100%;
}

.p-mv__img {
	height: 100vh;
	position: relative;
	width: 100%;
}

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

.p-mv__content {
	color: #fff;
	left: 40%;
	max-width: 17.5rem;
	padding: 1.25rem 0;
	position: absolute;
	text-align: center;
	top: 70%;
	transform: translate(-50%, -50%);
	width: 100%;
	width: 100%;
	z-index: 100;
}

.p-mv__content::before {
	-webkit-clip-path: polygon(100% 0, 0 0, 0 100%, 0 0);
	animation-delay: 2s; /*アニメーションの開始を遅らせる*/
	animation-duration: 0.5s; /*アニメーションの長さ*/
	animation-fill-mode: forwards; /*開始と終了の状態*/
	animation-name: clip-2;
	animation-timing-function: linear; /*アニメーションの進行具合*/
	background-color: #e99bc1;
	clip-path: polygon(100% 0, 0 0, 0 100%, 0 0);
	content: "";
	display: block;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.p-mv__title {
	font-size: 1.75rem;
	font-weight: 700;
	line-height: 1;
}

.p-mv__title span {
	display: inline-block;
	letter-spacing: -0.2em;
}

.p-mv__title span:not(:first-child) {
	margin-left: 0.3125rem;
}

.p-mv__title span:first-child {
	animation-delay: 1s; /*アニメーションの開始を遅らせる*/
	animation-duration: 0.3s; /*アニメーションの長さ*/
	animation-fill-mode: forwards; /*開始と終了の状態*/
	animation-name: slideUp;
	animation-timing-function: ease; /*アニメーションの進行具合*/
	opacity: 0;
}

.p-mv__title span:nth-child(2) {
	animation-delay: 1.1s; /*アニメーションの開始を遅らせる*/
	animation-duration: 0.3s; /*アニメーションの長さ*/
	animation-fill-mode: forwards; /*開始と終了の状態*/
	animation-name: slideUp;
	animation-timing-function: ease; /*アニメーションの進行具合*/
	opacity: 0;
}

.p-mv__title span:nth-child(3) {
	animation-delay: 1.2s; /*アニメーションの開始を遅らせる*/
	animation-duration: 0.3s; /*アニメーションの長さ*/
	animation-fill-mode: forwards; /*開始と終了の状態*/
	animation-name: slideUp;
	animation-timing-function: ease; /*アニメーションの進行具合*/
	opacity: 0;
}

.p-mv__title span:nth-child(4) {
	animation-delay: 1.3s; /*アニメーションの開始を遅らせる*/
	animation-duration: 0.3s; /*アニメーションの長さ*/
	animation-fill-mode: forwards; /*開始と終了の状態*/
	animation-name: slideUp;
	animation-timing-function: ease; /*アニメーションの進行具合*/
	opacity: 0;
}

.p-mv__title span:nth-child(5) {
	animation-delay: 1.4s; /*アニメーションの開始を遅らせる*/
	animation-duration: 0.3s; /*アニメーションの長さ*/
	animation-fill-mode: forwards; /*開始と終了の状態*/
	animation-name: slideUp;
	animation-timing-function: ease; /*アニメーションの進行具合*/
	opacity: 0;
}

.p-mv__title span:nth-child(6) {
	animation-delay: 1.5s; /*アニメーションの開始を遅らせる*/
	animation-duration: 0.3s; /*アニメーションの長さ*/
	animation-fill-mode: forwards; /*開始と終了の状態*/
	animation-name: slideUp;
	animation-timing-function: ease; /*アニメーションの進行具合*/
	opacity: 0;
}

.p-mv__title span:nth-child(7) {
	animation-delay: 1.6s; /*アニメーションの開始を遅らせる*/
	animation-duration: 0.3s; /*アニメーションの長さ*/
	animation-fill-mode: forwards; /*開始と終了の状態*/
	animation-name: slideUp;
	animation-timing-function: ease; /*アニメーションの進行具合*/
	opacity: 0;
}

.p-mv__title span:nth-child(8) {
	animation-delay: 1.7s; /*アニメーションの開始を遅らせる*/
	animation-duration: 0.3s; /*アニメーションの長さ*/
	animation-fill-mode: forwards; /*開始と終了の状態*/
	animation-name: slideUp;
	animation-timing-function: ease; /*アニメーションの進行具合*/
	opacity: 0;
}

.p-mv__title span:nth-child(9) {
	animation-delay: 1.8s; /*アニメーションの開始を遅らせる*/
	animation-duration: 0.3s; /*アニメーションの長さ*/
	animation-fill-mode: forwards; /*開始と終了の状態*/
	animation-name: slideUp;
	animation-timing-function: ease; /*アニメーションの進行具合*/
	opacity: 0;
}

.p-mv__suv-title {
	animation-delay: 2.2s; /*アニメーションの開始を遅らせる*/
	animation-duration: 0.5s; /*アニメーションの長さ*/
	animation-fill-mode: forwards; /*開始と終了の状態*/
	animation-name: slideUp;
	animation-timing-function: ease; /*アニメーションの進行具合*/
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: 0.025em;
	line-height: 1;
	margin-top: 1.5rem;
	opacity: 0;
}

.p-mv__swiper {
	background: #e99bc1;
	height: 100%;
	width: 100%;
}

.p-mv__swiper .swiper-wrapper .swiper-slide {
	overflow: hidden;
}

.p-mv__swiper .swiper-wrapper .swiper-slide-prev img,
.p-mv__swiper .swiper-wrapper .swiper-slide-active img,
.p-mv__swiper .swiper-wrapper .swiper-slide-duplicate-active img {
	animation-duration: 1s;
	animation-fill-mode: forwards;
	animation-name: diagonalSlide;
	animation-timing-function: linear;
}

.p-news-info__head {
	align-items: center;
	display: flex;
}

.p-news-info__date {
	align-self: flex-start;
	display: flex;
	font-size: 1rem;
	padding: 0.1875rem 0;
	width: 4.6875rem;
}

.p-news-info__category {
	align-items: center;
	align-self: flex-start;
	border: 1px solid #111;
	display: flex;
	font-size: 0.875rem;
	justify-content: center;
	line-height: 1;
	margin-left: 1.875rem;
	padding: 0.5rem 0;
	width: 6.1875rem;
}

.p-news-info__category.event {
	background-color: #e99bc1;
	border: 1px solid #e99bc1;
	color: #fff;
}

.p-news-info__category.news {
	background-color: #f7af3c;
	border: 1px solid #f7af3c;
	color: #fff;
}

.p-news-info__category.shop {
	background-color: #cbf0f3;
	border: 1px solid #cbf0f3;
}

.p-news-info__body {
	margin-top: 1rem;
	width: 100%;
}

.p-news-info__text {
	-webkit-text-decoration: none;
	align-items: center;
	display: flex;
	height: 100%;
	letter-spacing: 0.01;
	line-height: 1.4375;
	position: relative;
	text-decoration: none;
	transition: all 0.3s;
	width: 100%;
}

.p-news-info__text::after {
	background: #e99bc1;
	bottom: 0;
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: transform 0.3s;
	width: 100%;
}

.p-news-mv {
	background: url(../img/common/news-mv.jpg) no-repeat center/cover;
}

.p-news__inner {
	margin: 0 auto;
	max-width: 68.75rem;
	padding-left: 1.25rem;
	padding-right: 1.25rem;
	width: 100%;
}

.p-news__items-inner {
	width: 100%;
}

.p-news__item + .p-news__item {
	margin-top: 2rem;
}

.p-news__btn {
	font-size: 1.25rem;
	letter-spacing: 0.2em;
	line-height: 1;
	margin-left: auto;
	margin-right: auto;
	margin-top: 1.75rem;
	max-width: 20.9375rem;
	text-align: center;
}

.p-overview {
	position: relative;
}

.p-overview.is-animated::before {
	-webkit-clip-path: polygon(100% 0, 100% 0, 100% 0, 100% 0);
	animation-delay: 1.5s; /*アニメーションの開始を遅らせる*/
	animation-direction: normal; /*アニメーションの向き*/
	animation-duration: 1.5s; /*アニメーションの長さ*/
	animation-fill-mode: forwards; /*開始と終了の状態*/
	animation-name: borderSlide2; /*1で解説*/
	animation-timing-function: linear; /*アニメーションの進行具合*/
	background: url(../img/common/itimatu-pink.jpg) no-repeat center center/cover;
	clip-path: polygon(100% 0, 100% 0, 100% 0, 100% 0);
	content: "";
	display: block;
	height: 50rem;
	left: 0%;
	position: absolute;
	top: -15rem;
	width: 100%;
	z-index: -2;
}

.p-overview__title {
	position: relative;
}

.p-overview__title::before {
	color: #f7af3c;
	content: "Overview";
	display: block;
	font-family: "Noto Serif JP", serif;
	font-size: 3.125rem;
	font-weight: normal;
	left: 50%;
	position: absolute;
	top: -3.0625rem;
	transform: translateX(-50%);
	z-index: -2;
}

.p-overview__content {
	background: #cbf0f3;
	margin-top: 2.875rem;
	padding-bottom: 1.375rem;
}

.p-overview__img {
	opacity: 0;
	position: relative;
	width: 100%;
}

.p-overview__img.is-animated {
	animation-delay: 0.5s; /*アニメーションの開始を遅らせる*/
	animation-direction: normal; /*アニメーションの向き*/
	animation-duration: 0.5s; /*アニメーションの長さ*/
	animation-fill-mode: forwards; /*開始と終了の状態*/
	animation-name: slideRight; /*1で解説*/
	animation-timing-function: linear; /*アニメーションの進行具合*/
}

.p-overview__img::after {
	background: rgba(17, 17, 17, 0.2);
	content: "";
	display: block;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.p-overview__img::before {
	content: "";
	display: block;
	padding-top: 69.6%;
}

.p-overview__img img {
	-o-object-fit: cover;
	-o-object-position: center;
	height: 100%;
	left: 50%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	vertical-align: bottom;
	width: 100%;
}

.p-overview__text-box {
	margin-top: 1.3125rem;
	padding-left: 1.3125rem;
	padding-right: 1.3125rem;
	width: 100%;
}

.p-overview__sub-title {
	font-size: 1.25rem;
	letter-spacing: 0.1em;
	text-align: center;
}

.p-overview__text {
	letter-spacing: 0.125em;
	line-height: 1.4375;
	margin-top: 1.5rem;
}

.p-overview__btn {
	margin-top: 1.5625rem;
	text-align: center;
}

.p-pc-menu {
	display: none;
}

.p-pc-menu__items {
	align-items: center;
	display: flex;
	height: inherit;
}

.p-pc-menu__item {
	height: 2.1875rem;
}

.p-pc-menu__item a {
	-webkit-text-decoration: none;
	align-items: center;
	display: flex;
	height: 100%;
	justify-content: center;
	letter-spacing: 0.125em;
	padding: 0.9375rem;
	position: relative;
	text-decoration: none;
	width: 100%;
}

.p-pc-menu__item a::after {
	background: #e99bc1;
	bottom: 0;
	content: "";
	height: 3px;
	left: 0.9375rem;
	position: absolute;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: transform 0.3s;
	width: calc(100% - 1.875rem);
}

.p-pc-menu__btn {
	display: none;
	height: inherit;
	letter-spacing: 0.125em;
	margin-left: 1.0625rem;
}

.p-pc-menu__btn .p-pc-menu__btn-in {
	padding: 0 1.9375rem;
}

.p-post-news-article__head--sp,
.p-post-news-article__head--pc {
	border: 1px solid #111;
	font-size: 1rem;
	letter-spacing: 0.125em;
	line-height: 1;
	padding: 0.6875rem 0;
	text-align: center;
	width: 100%;
}

.p-post-news-article__box {
	margin-top: 2rem;
}

.p-post-news-article__item + .p-post-news-article__item {
	margin-top: 1.5rem;
}

.p-post-news-back {
	position: relative;
}

.p-post-news-back::before,
.p-post-news-back::after {
	content: "";
	display: block;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.p-post-news-back::after {
	-webkit-clip-path: polygon(100% 0, 100% 0, 100% 0);
	animation-delay: 1s; /*アニメーションの開始を遅らせる*/
	animation-duration: 1s; /*アニメーションの長さ*/
	animation-fill-mode: forwards; /*開始と終了の状態*/
	animation-name: lowerBackSlideRight;
	animation-timing-function: ease; /*アニメーションの進行具合*/
	background: url(../img/common/itimatu.jpg) no-repeat center center/cover;
	clip-path: polygon(100% 0, 100% 0, 100% 0);
	height: 62.5rem;
	z-index: -1;
}

.p-post-news-pagination .wp-pagenavi {
	align-items: center;
	display: flex;
	justify-content: center;
}

.p-post-news-pagination .wp-pagenavi .previouspostslink,
.p-post-news-pagination .wp-pagenavi .current,
.p-post-news-pagination .wp-pagenavi .page,
.p-post-news-pagination .wp-pagenavi .nextpostslink,
.p-post-news-pagination .wp-pagenavi .home {
	border: 1px solid #111;
	font-size: 1rem;
	letter-spacing: 0.125em;
}

.p-post-news-pagination .wp-pagenavi .previouspostslink,
.p-post-news-pagination .wp-pagenavi .nextpostslink {
	align-items: center;
	display: flex;
	justify-content: center;
	line-height: 1.448;
	padding: 0 0.5625rem;
	transition: all 0.3s;
}

.p-post-news-pagination .wp-pagenavi .current,
.p-post-news-pagination .wp-pagenavi .page {
	display: inline-block;
	height: 1.5rem;
	line-height: 1rem;
	text-align: center;
	width: 1.5rem;
}

.p-post-news-pagination .wp-pagenavi .previouspostslink {
	margin-right: 0.5rem;
}

.p-post-news-pagination .wp-pagenavi .current {
	background: #fff;
	color: #333;
	margin-left: 1rem;
}

.p-post-news-pagination .wp-pagenavi .page {
	margin-left: 1rem;
	transition: all 0.3s;
}

.p-post-news-pagination .wp-pagenavi .nextpostslink {
	margin-left: 3rem;
}

.p-post-news-pagination .home {
	display: flex;
	justify-content: center;
	line-height: 1.448;
	margin-left: 3rem;
	padding: 0 1.25rem;
	transition: all 0.3s;
}

.p-post-news__title {
	font-size: 1.25rem;
	font-weight: 400;
	letter-spacing: 0.02em;
	line-height: 1.76;
}

.p-post-news__title-bottom {
	align-items: center;
	display: flex;
	margin-top: 1rem;
}

.p-post-news__date {
	font-size: 1rem;
	letter-spacing: 0.025em;
}

.p-post-news__category {
	border: 1px solid #111;
	font-size: 1rem;
	letter-spacing: 0, 125em;
	line-height: 1;
	margin-left: 1.5rem;
	padding: 0.625rem 1.4375rem;
}

.p-post-news__category.event {
	background-color: #e99bc1;
	border: 1px solid #e99bc1;
	color: #fff;
}

.p-post-news__category.news {
	background-color: #f7af3c;
	border: 1px solid #f7af3c;
	color: #fff;
}

.p-post-news__category.shop {
	background-color: #cbf0f3;
	border: 1px solid #cbf0f3;
}

.p-post-news__category.blog {
	background-color: #e99bc1;
	border: 1px solid #e99bc1;
	color: #fff;
}

.p-post-news__category.item {
	background-color: #d17df1;
	border: 1px solid #d17df1;
	color: #fff;
}

.p-post-news__category.shop-info {
	background-color: #f7af3c;
	border: 1px solid #f7af3c;
	color: #fff;
}

.p-post-news__category.staff {
	background-color: #cbf0f3;
	border: 1px solid #cbf0f3;
	color: #111;
}

.p-post-news__category.trivia {
	background-color: #FFEA2E;
	border: 1px solid #FFEA2E;
	color: #111;
}

.p-post-news__img {
	margin: 1rem calc(50% - 50vw) 0;
	position: relative;
	width: 100vw;
}

.p-post-news__img::before {
	content: "";
	display: block;
	padding-top: 66.9333333333%;
}

.p-post-news__img img {
	-o-object-fit: cover;
	-o-object-position: center;
	height: 100%;
	left: 50%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.p-post-news__body {
	margin-top: 1.5rem;
}

.p-post-news__sub-title {
	border-left: 3px solid #111;
	font-size: 1.25rem;
	letter-spacing: 0.1em;
	line-height: 1.448;
	margin-top: 1.625rem;
	padding: 0 0.3125rem;
}

.p-post-news__text {
	font-size: 1rem;
	letter-spacing: 0.025em;
	line-height: 2.1875;
}

.p-post-news__text:not(:first-child) {
	margin-top: 1.5rem;
}

.p-post-news__sub-title2 {
	-o-border-image: linear-gradient(to right, #FFEA2E 0%, #FFEA2E 20%, #fff 30%);
	border-bottom: 3px solid;
	border-image: linear-gradient(to right, #FFEA2E 0%, #FFEA2E 20%, #fff 30%);
	border-image-slice: 1;
	display: inline-block;
	font-size: 1.125rem;
	letter-spacing: 0.1em;
	line-height: 1.4477;
	margin: 0 0.5rem;
	margin-top: 1.5rem;
}

.p-post-news__img2 {
	margin: 1.5rem calc(50% - 50vw);
	position: relative;
	width: 100vw;
}

.p-post-news__img2::before {
	content: "";
	display: block;
	padding-top: 66.9333333333%;
}

.p-post-news__img2 img {
	-o-object-fit: cover;
	-o-object-position: center;
	height: 100%;
	left: 50%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.p-post-news__lists {
	margin-top: 1.5rem;
}

.p-post-news__list {
	font-size: 1rem;
	letter-spacing: 0.025em;
	line-height: 2.1875;
}

.p-post-works-article__head {
	border: 1px solid #111;
	font-size: 1rem;
	letter-spacing: 0.125em;
	line-height: 1;
	padding: 0.6875rem 0;
	text-align: center;
	width: 100%;
}

.p-post-works-article__box {
	grid-gap: 1.25rem 1.25rem;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	margin-top: 2rem;
}

.p-post-works-back {
	position: relative;
}

.p-post-works-back::before,
.p-post-works-back::after {
	content: "";
	display: block;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.p-post-works-back::before {
	-webkit-clip-path: polygon(0 0, 0 0, 0 0);
	animation-delay: 1s; /*アニメーションの開始を遅らせる*/
	animation-duration: 1s; /*アニメーションの長さ*/
	animation-fill-mode: forwards; /*開始と終了の状態*/
	animation-name: lowerBackSlideLeft;
	animation-timing-function: ease; /*アニメーションの進行具合*/
	background: url(../img/common/itimatu-pink.jpg) no-repeat center center/cover;
	clip-path: polygon(0 0, 0 0, 0 0);
	height: 62.5rem;
	opacity: 0.7;
	z-index: -2;
}

.p-post-works-pagination .wp-pagenavi {
	align-items: center;
	display: flex;
	justify-content: center;
}

.p-post-works-pagination .wp-pagenavi .previouspostslink,
.p-post-works-pagination .wp-pagenavi .current,
.p-post-works-pagination .wp-pagenavi .page,
.p-post-works-pagination .wp-pagenavi .nextpostslink,
.p-post-works-pagination .wp-pagenavi .home {
	border: 1px solid #111;
	font-size: 1rem;
	letter-spacing: 0.125em;
}

.p-post-works-pagination .wp-pagenavi .previouspostslink,
.p-post-works-pagination .wp-pagenavi .nextpostslink {
	align-items: center;
	display: flex;
	justify-content: center;
	line-height: 1.448;
	padding: 0 0.5625rem;
	transition: all 0.3s;
}

.p-post-works-pagination .wp-pagenavi .current,
.p-post-works-pagination .wp-pagenavi .page {
	display: inline-block;
	height: 1.5rem;
	line-height: 1rem;
	text-align: center;
	width: 1.5rem;
}

.p-post-works-pagination .wp-pagenavi .previouspostslink {
	margin-right: 0.5rem;
}

.p-post-works-pagination .wp-pagenavi .current {
	background: #fff;
	color: #333;
	margin-left: 1.5rem;
}

.p-post-works-pagination .wp-pagenavi .page {
	margin-left: 1rem;
	transition: all 0.3s;
}

.p-post-works-pagination .wp-pagenavi .nextpostslink {
	margin-left: 3rem;
}

.p-post-works-pagination .home {
	display: flex;
	justify-content: center;
	line-height: 1.448;
	margin-left: 3rem;
	padding: 0 1.25rem;
	transition: all 0.3s;
}

.p-post-works__title {
	background-image: radial-gradient(rgba(123, 222, 217, 0.3843137255) 30%, transparent 30%);
	background-size: 20px 20px;
	font-size: 1.25rem;
	font-weight: 400;
	letter-spacing: 0.02em;
	line-height: 1.76;
	padding: 1.25rem;
	text-align: center;
}

.p-post-works__title-bottom {
	align-items: center;
	display: flex;
	margin-top: 1rem;
}

.p-post-works__date {
	font-size: 1rem;
	letter-spacing: 0.025em;
}

.p-post-works__category {
	background-color: #fff;
	border: 1px solid #111;
	color: #111;
	font-size: 1rem;
	letter-spacing: 0, 125em;
	line-height: 1;
	margin-left: 1.5rem;
	padding: 0.625rem 1.4375rem;
}

.p-post-works__category.sweet {
	background-color: #e99bc1;
	border: 1px solid #e99bc1;
	color: #fff;
}

.p-post-works__category.elegant {
	background-color: #d17df1;
	border: 1px solid #d17df1;
	color: #fff;
}

.p-post-works__category.gorgeous {
	background-color: #f7af3c;
	border: 1px solid #f7af3c;
	color: #fff;
}

.p-post-works__category.cool {
	background-color: #cbf0f3;
	border: 1px solid #cbf0f3;
	color: #111;
}

.p-post-works__img {
	margin: 1rem calc(50% - 50vw);
	margin-top: 1rem;
	width: 100vw;
}

.gallery {
	margin-left: auto;
	margin-right: auto;
	max-width: 28.125rem;
	position: relative;
	width: 100%;
}

.gallery-slider {
	height: auto;
	margin: 0 0 10px 0;
	width: 100%;
}

.gallery-slider .swiper-slide {
	height: 34.375rem;
	width: 100%;
}

.gallery-slider .swiper-slide img {
	-o-object-fit: cover;
	display: block;
	height: 100%;
	margin: 0 auto;
	object-fit: cover;
	width: 100%;
}

.gallery-thumbs {
	margin-top: 0.3125rem;
	overflow: hidden;
	padding: 0;
	width: 100%;
}

.gallery-thumbs .swiper-slide {
	height: 6.25rem;
	opacity: 1;
	overflow: hidden;
	text-align: center;
	width: 6.25rem;
}

.gallery-thumbs .swiper-slide-active {
	opacity: 1;
}

.gallery-thumbs .swiper-slide img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	width: auto;
}

.gallery .swiper-button-next {
	background: #111111;
	border-radius: 50%;
	height: 1.875rem;
	top: 50%;
	width: 1.875rem;
}

.gallery .swiper-button-next .arrow-right {
	border-right: 2px solid #FFEA2E;
	border-top: 2px solid #FFEA2E;
	display: inline-block;
	height: 0.5625rem;
	margin: 0 0.625rem;
	transform: rotate(45deg) translate(-3px, 3px);
	width: 0.5625rem;
}

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

.gallery .swiper-button-prev {
	background: #111111;
	border-radius: 50%;
	height: 1.875rem;
	top: 50%;
	width: 1.875rem;
}

.gallery .swiper-button-prev .arrow-left {
	border-bottom: 2px solid #FFEA2E;
	border-left: 2px solid #FFEA2E;
	display: inline-block;
	height: 0.5625rem;
	margin: 0 0.625rem;
	transform: rotate(45deg) translate(3px, -3px);
	width: 0.5625rem;
}

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

.p-post-works__body {
	border: 3px solid #e99bc1;
	margin-top: 3.375rem;
	padding: 0rem 0.625rem 2.0625rem;
}

.p-post-works__sub-title {
	background: #fff;
	border: 3px solid #e99bc1;
	border-radius: 2rem;
	display: inline-block;
	font-size: 1.25rem;
	letter-spacing: 0.02em;
	line-height: 1.448;
	padding: 0.3125rem 1.25rem;
	transform: translate(0.625rem, -1.25rem);
}

.p-post-works__text {
	color: #ee308c;
	font-size: 2.25rem;
	font-weight: 700;
	letter-spacing: 0.025em;
	line-height: 1;
	text-align: center;
}

.p-post-works__sub-title2 {
	-o-border-image: linear-gradient(to right, #FFEA2E 0%, #FFEA2E 20%, #fff 30%);
	border-bottom: 3px solid;
	border-image: linear-gradient(to right, #FFEA2E 0%, #FFEA2E 20%, #fff 30%);
	border-image-slice: 1;
	display: inline-block;
	font-size: 1.125rem;
	letter-spacing: 0.1em;
	line-height: 1.4477;
	margin: 0 0.5rem;
	margin-top: 1.5rem;
}

.p-post-works__img2 {
	margin-top: 1.5rem;
	position: relative;
	width: 100%;
}

.p-post-works__img2::before {
	content: "";
	display: block;
	padding-top: 66.9333333333%;
}

.p-post-works__img2 img {
	-o-object-fit: cover;
	-o-object-position: center;
	height: 100%;
	left: 50%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}

.p-works-card {
	display: block;
	position: relative;
	transition: all 0.3s;
}

.p-work-card__img {
	overflow: hidden;
	position: relative;
	width: 100%;
}

.p-work-card__img::before {
	content: "";
	display: block;
	padding-top: 140%;
}

.p-work-card__img img {
	-o-object-fit: cover;
	-o-object-position: center;
	height: 100%;
	left: 50%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.3s;
	width: 100%;
}

.p-works-card__category {
	background: transparent;
	bottom: 0;
	color: #e99bc1;
	font-family: "Noto Serif JP", serif;
	font-size: 1rem;
	letter-spacing: 0.125em;
	position: absolute;
	right: 0.625rem;
}

.p-works-card__category.sweet {
	color: #e99bc1;
}

.p-works-card__category.elegant {
	color: #d17df1;
}

.p-works-card__category.gorgeous {
	color: #f7af3c;
}

.p-works-card__category.cool {
	color: #cbf0f3;
}

.p-works-card__title {
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	margin-top: 0.3125rem;
}

.p-works__title {
	position: relative;
}

.p-works__title::before {
	color: #f7af3c;
	content: "Collection";
	display: block;
	font-family: "Noto Serif JP", serif;
	font-size: 3.125rem;
	font-weight: normal;
	left: 50%;
	position: absolute;
	top: -3.0625rem;
	transform: translateX(-50%);
	z-index: -1;
}

.p-works__content {
	background: #cbf0f3;
	margin-top: 3rem;
	padding-bottom: 1.375rem;
}

.p-works__img-box {
	height: 60vw;
	max-height: 26.25rem;
	opacity: 0;
}

.p-works__img-box.is-animated {
	animation-delay: 0.5s; /*アニメーションの開始を遅らせる*/
	animation-direction: normal; /*アニメーションの向き*/
	animation-duration: 0.5s; /*アニメーションの長さ*/
	animation-fill-mode: forwards; /*開始と終了の状態*/
	animation-name: slideLeft; /*1で解説*/
	animation-timing-function: linear; /*アニメーションの進行具合*/
}

.p-works__img-box img {
	-o-object-fit: cover;
	-o-object-position: 50% 20%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 20%;
	width: 100%;
}

.p-works__text-box {
	margin-top: 1.3125rem;
	padding-left: 1.3125rem;
	padding-right: 1.3125rem;
	width: 100%;
}

.p-works__sub-title {
	font-size: 1.25rem;
	letter-spacing: 0.1em;
	text-align: center;
}

.p-works__text {
	letter-spacing: 0.125em;
	line-height: 1.4375;
	margin-top: 1.5rem;
}

.p-works__btn {
	margin-top: 1.625rem;
	text-align: center;
}

.p-works__swiper {
	height: inherit;
	max-height: 26.25rem;
}

.p-works__swiper .swiper-container img {
	width: 100%;
}

.p-works__swiper .swiper-wrapper {
	width: 100%;
}

.p-works__swiper .swiper-slide {
	width: 100%;
}

.wp-pagenavi {
	align-items: center;
	display: flex;
	justify-content: center;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .current,
.wp-pagenavi .page,
.wp-pagenavi .nextpostslink {
	border: 1px solid #111;
	font-size: 1rem;
	letter-spacing: 0.125em;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
	align-items: center;
	display: flex;
	height: 1.3125rem;
	justify-content: center;
	transition: all 0.3s;
	width: 4.625rem;
}

.wp-pagenavi .current,
.wp-pagenavi .page {
	display: inline-block;
	height: 1.5rem;
	line-height: 1rem;
	text-align: center;
	width: 1.5rem;
}

.wp-pagenavi .previouspostslink {
	margin-right: 0.5rem;
}

.wp-pagenavi .current {
	background: #333;
	color: #fff;
	margin-left: 1rem;
}

.wp-pagenavi .page {
	margin-left: 1rem;
	transition: all 0.3s;
}

.wp-pagenavi .nextpostslink {
	margin-left: 1.5rem;
}

body {
	animation: loader-fadeOut 2s;
	animation-fill-mode: both;
	animation-timing-function: ease; /*アニメーションの進行具合*/
	opacity: 0;
}

.sakura {
	align-items: center;
	display: flex;
	height: 100%;
	justify-content: center;
	margin: 0;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 100%;
	z-index: -1;
}

.sakura li {
	animation: fall 15s linear infinite, sway 0.5s ease-in-out infinite alternate;
	background: #ffdbed;
	border-radius: 0% 70%;
	list-style: none;
	position: absolute;
	top: -50px;
}

.sakura li:nth-child(1) {
	animation: fall 25s linear infinite, sway1 3s ease-in-out infinite alternate;
	animation-delay: 2s;
	height: 15px;
	left: 0%;
	width: 24px;
}

.sakura li:nth-child(2) {
	animation: fall 30s linear infinite, sway1 2s ease-in-out infinite alternate;
	animation-delay: 8s;
	height: 9px;
	left: 5%;
	width: 13px;
}

.sakura li:nth-child(3) {
	animation: fall 24s linear infinite, sway1 3.5s ease-in-out infinite alternate;
	animation-delay: 5s;
	height: 10px;
	left: 15%;
	width: 16px;
}

.sakura li:nth-child(4) {
	animation: fall 23s linear infinite, sway2 4s ease-in-out infinite alternate;
	animation-delay: 0s;
	height: 10px;
	left: 30%;
	width: 16px;
}

.sakura li:nth-child(5) {
	animation: fall 25s linear infinite, sway1 4s ease-in-out infinite alternate;
	animation-delay: 0s;
	height: 10px;
	left: 40%;
	width: 16px;
}

.sakura li:nth-child(6) {
	animation: fall 26s linear infinite, sway2 3s ease-in-out infinite alternate;
	animation-delay: 3s;
	height: 15px;
	left: 55%;
	width: 24px;
}

.sakura li:nth-child(7) {
	animation: fall 22s linear infinite, sway2 3.5s ease-in-out infinite alternate;
	animation-delay: 7s;
	height: 10px;
	left: 65%;
	width: 16px;
}

.sakura li:nth-child(8) {
	animation: fall 22s linear infinite, sway1 3s ease-in-out infinite alternate;
	animation-delay: 3s;
	height: 9px;
	left: 50%;
	width: 13px;
}

.sakura li:nth-child(9) {
	animation: fall 25s linear infinite, sway2 4s ease-in-out infinite alternate;
	animation-delay: 4s;
	height: 10px;
	left: 80%;
	width: 16px;
}

.sakura li:nth-child(10) {
	animation: fall 25s linear infinite, sway1 3s ease-in-out infinite alternate;
	animation-delay: 2s;
	height: 15px;
	left: 0%;
	width: 24px;
}

.sakura li:nth-child(11) {
	animation: fall 35s linear infinite, sway1 2s ease-in-out infinite alternate;
	animation-delay: 12s;
	height: 8px;
	left: 20%;
	width: 12px;
}

.sakura li:nth-child(12) {
	animation: fall 28s linear infinite, sway1 3.5s ease-in-out infinite alternate;
	animation-delay: 4s;
	height: 8px;
	left: 40%;
	width: 14px;
}

.sakura li:nth-child(13) {
	animation: fall 18s linear infinite, sway2 4s ease-in-out infinite alternate;
	animation-delay: 2s;
	height: 9px;
	left: 52%;
	width: 15px;
}

.sakura li:nth-child(14) {
	animation: fall 18s linear infinite, sway1 4s ease-in-out infinite alternate;
	animation-delay: 0s;
	height: 10px;
	left: 64%;
	width: 16px;
}

.sakura li:nth-child(15) {
	animation: fall 13s linear infinite, sway2 3s ease-in-out infinite alternate;
	animation-delay: 5s;
	height: 15px;
	left: 78%;
	width: 24px;
}

.sakura li:nth-child(16) {
	animation: fall 28s linear infinite, sway2 3.5s ease-in-out infinite alternate;
	animation-delay: 10s;
	height: 10px;
	left: 88%;
	width: 16px;
}

.sakura li:nth-child(17) {
	animation: fall 18s linear infinite, sway1 3s ease-in-out infinite alternate;
	animation-delay: 0s;
	height: 9px;
	left: 22%;
	width: 13px;
}

.sakura li:nth-child(18) {
	animation: fall 28s linear infinite, sway2 4s ease-in-out infinite alternate;
	animation-delay: 2s;
	height: 10px;
	left: 45%;
	width: 16px;
}

.pc-only {
	display: none;
}

@media (hover: hover) {

.formBtn:hover {
	background-color: #007bff;
}

}

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

.p-contact__title {
	letter-spacing: 0.0667em;
}

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

}

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

.u-desktop {
	display: block;
}

.u-mobile {
	display: none;
}

html {
	font-size: 1.4545454545vw;
}

.breadcrumbs {
	font-size: 1rem;
}

.c-btn {
	font-size: 1rem;
	letter-spacing: 0.125em;
	max-width: 22.5rem;
	padding: 1.3125rem 0;
}

.c-btn--news {
	padding: 0.3125rem 0;
	transition: all 0.3s;
}

.c-btn--slide a {
	border: none;
}

.c-btn--slide a:hover {
	color: #fff;
}

.c-btn--slide a:hover:before {
	left: 0;
}

.c-btn--slide--white a:hover {
	border: 1px solid #e99bc1;
	color: #fff;
}

.c-btn--slide--white a:hover:before {
	left: 0;
}

.c-hamburger {
	display: none;
}

.c-section-title {
	font-size: 1.875rem;
}

.c-section-title span {
	margin-right: 0.625rem;
	padding: 0.625rem 1.0625rem;
}

.c-section-title span:nth-child(even) {
	transform: translateY(15px);
}

.c-section-title.is-animated span:nth-child(even) {
	animation: ball2 2.5s ease-in forwards;
}

.c-to-top:hover {
	background: #333333;
}

.c-to-top:hover .c-to-top__arrow {
	border-left: 0.25rem solid #fff;
	border-top: 0.25rem solid #fff;
}

.l-inner {
	max-width: 1150px;
	padding-left: 25px;
	padding-right: 25px;
}

.l-lower-blog-contact {
	margin-top: 9.375rem;
}

.l-lower-blog-items {
	margin-top: 2.5625rem;
}

.l-lower-blog-pagination {
	margin-top: 6.3125rem;
}

.l-lower-contact-form {
	margin-top: 6.9375rem;
}

.l-lower-content-body {
	margin-top: 9.5rem;
}

.l-lower-content-contact {
	margin-top: 9.375rem;
}

.l-lower-news {
	margin-top: 4.125rem;
}

.l-lower-overview-body {
	margin-top: 6.6875rem;
}

.l-lower-overview-contact {
	margin-top: 9.375rem;
}

.l-lower-overview-map {
	margin-top: 5rem;
}

.l-lower-works-items {
	margin-top: 2.6875rem;
}

.l-lower-works-contact {
	margin-top: 9.3125rem;
}

.l-lower-works-nav {
	margin-top: 7.1875rem;
}

.l-lower-works-pagination {
	margin-top: 6.5rem;
}

.l-news-contact {
	margin-top: 9.375rem;
}

.l-news-pagination {
	display: block;
	margin-top: 6.375rem;
}

.l-post-news-article {
	margin-top: 6.5rem;
}

.l-post-news-contact {
	margin-top: 9.375rem;
}

.l-post-news-pagination {
	margin-top: 6.5rem;
}

.l-post-news {
	margin-top: 5.6875rem;
}

.l-post-works-article {
	margin-top: 6.5rem;
}

.l-post-works-contact {
	margin-top: 9.375rem;
}

.l-post-works-pagination {
	margin-top: 6.5rem;
}

.l-post-works {
	margin-top: 5.6875rem;
}

.l-top-blog {
	margin-top: 12.6875rem;
}

.l-top-contact {
	margin-top: 9.375rem;
}

.l-top-content {
	margin-top: 5.25rem;
}

.l-top-news {
	margin-top: 1.875rem;
}

.l-top-overview {
	margin-top: 12.375rem;
}

.l-top-works {
	margin-top: 12.4375rem;
}

.p-blog__title {
	letter-spacing: 0.0167em;
}

.p-blog__title::before {
	font-size: 6.875rem;
	left: 90%;
	top: -3.9375rem;
}

.p-blog__items {
	display: flex;
	flex-wrap: wrap;
	margin-top: 1.9375rem;
}

.p-blog__item {
	width: calc(33.3% - 16.6666666667px);
}

.p-blog__item + .p-blog__item {
	margin-left: 1.5625rem;
	margin-top: 0;
	margin-top: initial;
}

.p-blog__btn {
	margin-top: 3rem;
}

.p-card:hover {
	background: rgba(233, 155, 193, 0.6);
}

.p-card:hover .p-card__img > img {
	transform: scale(1.2) translate(-40%, -40%);
}

.p-card__text {
	margin-top: 0.5rem;
}

.p-contact {
	padding-bottom: 9.3125rem;
	padding-top: 8.9375rem;
}

.p-contact__title::before {
	font-size: 6.875rem;
	left: 19%;
	top: -6.25rem;
}

.p-contact__text {
	font-size: 1.625rem;
}

.p-contact__btn {
	margin-top: 2.5rem;
}

.p-content-box__item {
	flex: 0 0 25%;
	height: 26.6666666667vw;
}

.p-content-box__link:hover .p-content-box__text {
	color: #FFEA2E;
	font-size: 2.125rem;
}

.p-content-box__text {
	font-size: 1.5625rem;
	letter-spacing: 0.08;
}

.p-content {
	padding-top: 6.4375rem;
	position: relative;
}

.p-content.is-animated::before {
	height: 81.25rem;
}

.p-content__title {
	letter-spacing: 0.0667em;
}

.p-content__title::before {
	font-size: 6.875rem;
	left: 17%;
	top: -1.625rem;
}

.p-content__items {
	margin-top: 2.5rem;
}

.p-footer-menu--pc {
	display: flex;
}

.p-footer-menu--pc__item {
	padding: 0;
	padding-bottom: 0.25rem;
}

.p-footer-menu--pc__item a::after {
	background: #e99bc1;
	bottom: -0.3125rem;
	content: "";
	height: 3px;
	left: 0.9375rem;
	position: absolute;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: transform 0.3s;
	width: calc(100% - 1.875rem);
}

.p-footer-menu--pc__item a:hover::after {
	transform: scale(1, 1);
}

.p-footer {
	padding-top: 2.3125rem;
}

.p-footer__inner {
	padding-left: 2rem;
	padding-right: 1.0625rem;
}

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

.p-footer__logo {
	margin: 0;
	width: 9.375rem;
}

.p-footer__copy {
	font-size: 0.9375rem;
	letter-spacing: 0.08em;
	margin-top: 4.625rem;
}

.p-header__inner {
	display: flex;
	padding-left: 2.0625rem;
	padding-right: 0;
}

.p-header__logo {
	width: 9.375rem;
}

.p-lower-404 {
	padding: 11.875rem 1.25rem 9.375rem;
}

.p-lower-404__title {
	font-size: 3.75rem;
	letter-spacing: 0.033em;
}

.p-lower-404__text {
	font-size: 1.875rem;
	letter-spacing: 0.066em;
}

.p-lower-blog-items {
	grid-gap: 1.5625rem;
	grid-template-columns: repeat(3, 1fr);
}

.p-lower-blog-mv {
	background: url(../img/common/blog-mv.jpg) no-repeat center/cover;
}

.p-lower-common-mv {
	padding-bottom: 9.6875rem;
	padding-top: 9.875rem;
}

.p-lower-common-mv__title {
	font-size: 2.1875rem;
	letter-spacing: 0.057em;
}

.p-lower-contact-form .contact__form {
	max-width: 57rem;
	padding-bottom: 9.375rem;
	padding-left: 1.5625rem;
	padding-right: 1.5625rem;
}

.p-lower-contact-form .contact__form--row {
	display: flex;
}

.p-lower-contact-form .contact__form--row:not(:first-child) {
	margin-top: 2.5625rem;
}

.p-lower-contact-form .contact__form--label {
	max-width: 8.4375rem;
	padding-top: 0.75rem;
}

.p-lower-contact-form .contact__form--label label {
	display: block;
	text-align: right;
}

.p-lower-contact-form .contact__form--input {
	margin-left: 1.5rem;
	margin-top: 0;
	max-width: 33.75rem;
}

.p-lower-contact-form .contact__form--input textarea {
	min-height: 18.75rem;
}

.p-lower-contact-form .contact__form--submit {
	padding-right: 0;
}

.p-lower-contact-form .contact__form--submit [type=submit] {
	font-size: 1rem;
	max-width: 21.25rem;
}

.p-lower-contact-mv {
	background: url(../img/common/contact-mv.jpg) no-repeat center/cover;
}

.p-lower-content-body__block {
	display: flex;
	width: 100%;
}

.p-lower-content-body__block + .p-lower-content-body__block {
	margin-top: 6.3125rem;
}

.p-lower-content-body__img {
	flex: 0 1 34.375rem;
	max-width: 34.375rem;
}

.p-lower-content-body__img::before {
	padding-top: 68%;
}

.p-lower-content-body__title-box {
	flex: 0 1 35.25rem;
	margin-left: 1.875rem;
	max-width: 35.25rem;
	padding: 1.25rem;
}

.p-lower-content-body__block:nth-child(even) {
	flex-direction: row-reverse;
}

.p-lower-content-body__block:nth-child(even) .p-lower-content-body__title-box {
	margin-right: 1.875rem;
}

.p-lower-content-body__title {
	font-size: 1.5625rem;
	letter-spacing: 0.08em;
}

.p-lower-content-body__text-box::before {
	font-size: 1.25rem;
	padding: 0 0.625rem;
	top: -1.25rem;
}

.p-lower-content-body__text {
	letter-spacing: 0.034em;
	line-height: 1.6;
	margin-right: 1.25rem;
}

.p-lower-content-mv {
	background: url(../img/common/plan-mv.jpg) no-repeat center/cover;
}

.p-lower-news__inner {
	max-width: 56.875rem;
}

.p-lower-news__item + .p-lower-news__item {
	margin-top: 2rem;
}

.p-lower-overview-body__list {
	padding-bottom: 1.5rem;
	padding-top: 2.125rem;
}

.p-lower-overview-body__title-box {
	align-items: center;
	display: flex;
	flex: 0 0 9.625rem;
}

.p-lower-overview-body__title {
	font-size: 1rem;
}

.p-lower-overview-body__text-box {
	width: calc(100% - 154px);
}

.p-lower-overview-body__text {
	font-size: 1rem;
}

.p-lower-overview-map {
	max-width: 68.75rem;
}

.p-lower-overview-map__iframe-wrap {
	padding-top: 33.3636363636%;
}

.p-lower-overview-mv {
	background: url(../img/common/office.jpg) no-repeat center/cover;
}

.p-lower-thanks {
	padding: 11.875rem 1.25rem 9.375rem;
}

.p-lower-thanks__text {
	font-size: 1.875rem;
	letter-spacing: 0.066em;
}

.p-lower-works-items__body {
	grid-gap: 0.625rem 0.625rem;
	grid-template-columns: repeat(3, 1fr);
}

.p-lower-works-items__item:first-child {
	grid-column: 1/3;
	grid-row: 1/3;
}

.p-lower-works-mv {
	background: url(../img/common/collection-mv.jpg) no-repeat center/cover;
	padding-bottom: 10.1875rem;
	padding-top: 9.4375rem;
}

.p-lower-works-nav__inner {
	align-items: center;
	display: flex;
}

.p-lower-works-nav__item {
	margin-left: 1.25rem;
}

.p-lower-works-nav__bottom {
	margin-top: 0;
}

.p-mv__content {
	left: 30%;
	max-width: 34.375rem;
}

.p-mv__title {
	font-size: 3.125rem;
}

.p-mv__title span:not(:first-child) {
	margin-left: 0.9375rem;
}

.p-mv__suv-title {
	font-size: 1.5625rem;
	letter-spacing: 0.02em;
}

.p-news-info {
	display: flex;
}

.p-news-info__category {
	margin-left: 3rem;
}

.p-news-info__body {
	margin-left: 3.8125rem;
	margin-top: 0;
}

.p-news-info__text {
	padding: 0.1875rem 0;
}

.p-news-info__text:hover::after {
	transform: scale(1, 1);
}

.p-news-info__text:hover {
	color: #e99bc1;
}

.p-news-mv {
	background: url(../img/common/news-mv.jpg) no-repeat center/cover;
}

.p-news__inner {
	padding-left: 1.6875rem;
	padding-right: 1.9375rem;
}

.p-news__items {
	display: flex;
}

.p-news__btn {
	align-items: center;
	align-self: flex-start;
	display: flex;
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.001em;
	margin-left: 1.875rem;
	margin-right: 0;
	margin-top: 0.1875rem;
	width: 8.375rem;
}

.p-overview.is-animated::before {
	height: 86.25rem;
	top: -24.375rem;
}

.p-overview__title {
	letter-spacing: 0.0167em;
}

.p-overview__title::before {
	font-size: 6.875rem;
	left: 20%;
	letter-spacing: 0.0182em;
	top: -2rem;
}

.p-overview__content {
	background: linear-gradient(to left, transparent 30%, #cbf0f3 30%);
	margin-top: 2.125rem;
	padding-bottom: 5rem;
	padding-top: 5rem;
	width: 100%;
}

.p-overview__inner {
	align-items: center;
	display: flex;
	flex-direction: row-reverse;
	margin-left: auto;
	margin-right: auto;
	max-width: 69.375rem;
	padding-left: 0.25rem;
	width: 100%;
}

.p-overview__img {
	align-items: center;
	display: flex;
	max-width: 34.8125rem;
	width: 100%;
}

.p-overview__img img {
	max-width: 34.8125rem;
}

.p-overview__text-box {
	flex: 0 1 35.875rem;
	margin-top: 0rem;
	padding-left: 0.625rem;
	padding-right: 2rem;
}

.p-overview__sub-title {
	font-size: 1.5625rem;
	letter-spacing: 0.02em;
	text-align: left;
}

.p-overview__text {
	font-size: 1rem;
	letter-spacing: 0.0313em;
	line-height: 2.1875;
	margin-top: 2.3125rem;
}

.p-overview__btn {
	border: none;
	margin-top: 3rem;
	text-align: left;
}

.p-pc-menu {
	display: block;
}

.p-pc-menu__item a:hover::after {
	transform: scale(1, 1);
}

.p-pc-menu__btn {
	display: block;
}

.p-post-news-article__head--sp,
.p-post-news-article__head--pc {
	background: #cbf0f3;
}

.p-post-news-article__box {
	display: flex;
	margin-top: 5rem;
}

.p-post-news-article__item {
	margin-top: 0;
	width: calc(26% - 27px);
}

.p-post-news-article__item + .p-post-news-article__item {
	margin-left: 2rem;
	margin-top: 0;
}

.p-post-news-pagination .wp-pagenavi .previouspostslink:hover,
.p-post-news-pagination .wp-pagenavi .nextpostslink:hover {
	background: #fff;
	color: #333;
}

.p-post-news-pagination .wp-pagenavi .page:hover {
	background: #fff;
	color: #333;
}

.p-post-news-pagination .home:hover {
	background: #fff;
	color: #333;
}

.p-post-news__title {
	font-size: 1.4375rem;
	letter-spacing: 0.017em;
}

.p-post-news__title-bottom {
	margin-top: 2rem;
}

.p-post-news__img {
	margin: 2rem 0 0;
	width: 100%;
}

.p-post-news__img::before {
	padding-top: 53.4418022528%;
}

.p-post-news__img2 {
	margin: 2rem 0 0;
	width: 100%;
}

.p-post-news__inner {
	max-width: 52.4375rem;
}

.p-post-works-article__box {
	grid-template-columns: repeat(4, 1fr);
	margin-top: 5rem;
}

.p-post-works-pagination .wp-pagenavi .previouspostslink:hover,
.p-post-works-pagination .wp-pagenavi .nextpostslink:hover {
	background: #fff;
	color: #333;
}

.p-post-works-pagination .wp-pagenavi .page:hover {
	background: #fff;
	color: #333;
}

.p-post-works-pagination .home:hover {
	background: #fff;
	color: #333;
}

.p-post-works__title {
	font-size: 1.4375rem;
	letter-spacing: 0.017em;
}

.p-post-works__title-bottom {
	margin-top: 2rem;
}

.p-post-works__block {
	display: flex;
}

.p-post-works__img {
	margin: 2rem 0 0;
	width: 50%;
}

.gallery {
	max-width: 100%;
}

.gallery-slider .swiper-slide {
	height: 42.5rem;
}

.gallery-thumbs {
	margin-top: 0.3125rem;
}

.gallery-thumbs .swiper-slide {
	height: 5.8125rem;
	width: 5.8125rem;
}

.gallery .swiper-button-next {
	height: 3.125rem;
	top: 50%;
	width: 3.125rem;
}

.gallery .swiper-button-next .arrow-right {
	border-right: 4px solid #FFEA2E;
	border-top: 4px solid #FFEA2E;
	height: 1.125rem;
	width: 1.125rem;
}

.gallery .swiper-button-prev {
	height: 3.125rem;
	top: 50%;
	width: 3.125rem;
}

.gallery .swiper-button-prev .arrow-left {
	border-bottom: 4px solid #FFEA2E;
	border-left: 4px solid #FFEA2E;
	height: 1.125rem;
	width: 1.125rem;
}

.p-post-works__wrapper {
	margin-left: 3.125rem;
	width: 50%;
}

.p-post-works__body {
	padding: 0rem 3.125rem 1.875rem;
}

.p-post-works__img2 {
	margin-left: auto;
	margin-right: auto;
	margin-top: 2rem;
	max-width: 49.9375rem;
}

.p-works-card:hover .p-work-card__img img {
	transform: scale(1.1) translate(-45%, -45%);
}

.p-works-card__category {
	font-size: 1.875rem;
}

.p-works-card__title {
	font-size: 1rem;
}

.p-works__title {
	letter-spacing: 0.0167em;
}

.p-works__title::before {
	font-size: 6.875rem;
	left: 74%;
	letter-spacing: 0.0182em;
	top: -2.125rem;
}

.p-works__content {
	background: linear-gradient(to right, transparent 30.5%, #cbf0f3 30.5%);
	margin-top: 2rem;
	padding-bottom: 5rem;
	padding-top: 5rem;
	width: 100%;
}

.p-works__inner {
	align-items: center;
	display: flex;
	margin-left: auto;
	margin-right: auto;
	max-width: 69.375rem;
	padding-left: 0.3125rem;
	width: 100%;
}

.p-works__img-box {
	align-items: center;
	display: flex;
	height: 35vw;
	max-width: 34.8125rem;
	width: 100%;
}

.p-works__img-box img {
	max-width: 34.8125rem;
}

.p-works__text-box {
	flex: 0 1 35.875rem;
	margin-top: 0;
	padding-left: 2rem;
	padding-right: 0rem;
}

.p-works__sub-title {
	font-size: 1.5625rem;
	letter-spacing: 0.02em;
	text-align: left;
}

.p-works__text {
	font-size: 1rem;
	letter-spacing: 0.0313em;
	line-height: 2.1875;
	margin-top: 2.1875rem;
}

.p-works__btn {
	margin-top: 3.125rem;
	text-align: left;
}

.p-works__swiper .swiper-container img {
	max-width: 34.8125rem;
}

.p-works__swiper .swiper-wrapper {
	max-width: 34.8125rem;
}

.p-works__swiper .swiper-slide {
	max-width: 34.8125rem;
}

.wp-pagenavi .previouspostslink:hover,
.wp-pagenavi .nextpostslink:hover {
	background: #333;
	color: #fff;
}

.wp-pagenavi .page:hover {
	background: #333;
	color: #fff;
}

.pc-only {
	display: block;
}

.sp-only {
	display: none !important;
}

}

@media (min-width: 1100px) {

html {
	font-size: 16px;
}

}

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

.u-hidden-pc {
	display: none;
}

}

@media (max-width: 375px) {

html {
	font-size: 4.2666666667vw;
}

}

@keyframes loader-fadeOut {

100% {
	opacity: 1;
}

}

@keyframes loader-fadeOut {

100% {
	opacity: 1;
}

}

@keyframes clip-1 {

0% {
	-webkit-clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
	clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
}

50% {
	-webkit-clip-path: polygon(100% 0, 0 0, 0 100%, 0 100%);
	clip-path: polygon(100% 0, 0 0, 0 100%, 0 100%);
}

100% {
	-webkit-clip-path: polygon(100% 0, 0 0, 0 100%, 0 0);
	clip-path: polygon(100% 0, 0 0, 0 100%, 0 0);
}

}

@keyframes clip-2 {

50% {
	-webkit-clip-path: polygon(100% 0, 0 0, 0 100%, 0 100%);
	clip-path: polygon(100% 0, 0 0, 0 100%, 0 100%);
}

100% {
	-webkit-clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
	clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%);
}

}

@keyframes slideUp {

0% {
	transform: translateY(50px);
}

100% {
	opacity: 1;
	transform: translateY(0);
}

}

@keyframes diagonalSlide {

0% {
	-webkit-clip-path: polygon(0 0, 20% 0, -40% 100%, 0 100%);
	clip-path: polygon(0 0, 20% 0, -40% 100%, 0 100%);
}

80% {
	-webkit-clip-path: polygon(0 0, 100% 0, 60% 100%, 0 100%);
	clip-path: polygon(0 0, 100% 0, 60% 100%, 0 100%);
}

100% {
	-webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

}

@keyframes to-top-fadeIn {

0% {
	height: 0;
	opacity: 0;
}

50% {
	opacity: 1;
}

100% {
	height: 2.8125rem;
	opacity: 1;
	transform: translateY(0);
}

}

@keyframes slideRight {

0% {
	transform: translateX(-100%);
}

100% {
	opacity: 1;
	transform: translateX(0);
}

}

@keyframes slideLeft {

0% {
	transform: translateX(100%);
}

100% {
	opacity: 1;
	transform: translateX(0);
}

}

@keyframes borderSlide1 {

50% {
	-webkit-clip-path: polygon(0 0.5%, 0 0, 100% 100%, 99.5% 100%);
	clip-path: polygon(0 0.5%, 0 0, 100% 100%, 99.5% 100%);
}

100% {
	-webkit-clip-path: polygon(0 65%, 0 0, 100% 100%, 35% 100%);
	clip-path: polygon(0 65%, 0 0, 100% 100%, 35% 100%);
}

}

@keyframes borderSlide2 {

50% {
	-webkit-clip-path: polygon(0.5% 100%, 0 100%, 100% 0, 100% 0.5%);
	clip-path: polygon(0.5% 100%, 0 100%, 100% 0, 100% 0.5%);
}

100% {
	-webkit-clip-path: polygon(65% 100%, 0 100%, 100% 0, 100% 65%);
	clip-path: polygon(65% 100%, 0 100%, 100% 0, 100% 65%);
}

}

@keyframes lowerBackSlideLeft {

100% {
	-webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
	clip-path: polygon(0 0, 0% 100%, 100% 0);
}

}

@keyframes lowerBackSlideRight {

100% {
	-webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%);
	clip-path: polygon(0 0, 100% 0%, 100% 100%);
}

}

@keyframes ball {

12% {
	opacity: 1;
	transform: translateY(-20px);
}

25% {
	opacity: 1;
	transform: translateY(0px);
}

37% {
	opacity: 1;
	transform: translateY(-15px);
}

50% {
	opacity: 1;
	transform: translateY(0px);
}

65% {
	opacity: 1;
	transform: translateY(-10px);
}

80% {
	opacity: 1;
	transform: translateY(0px);
}

90% {
	opacity: 1;
	transform: translateY(-5px);
}

100% {
	opacity: 1;
	transform: translateY(0px);
}

}

@keyframes ball2 {

12% {
	opacity: 1;
	transform: translateY(-5px);
}

25% {
	opacity: 1;
	transform: translateY(15px);
}

37% {
	opacity: 1;
	transform: translateY(0px);
}

50% {
	opacity: 1;
	transform: translateY(15px);
}

65% {
	opacity: 1;
	transform: translateY(5px);
}

80% {
	opacity: 1;
	transform: translateY(15px);
}

90% {
	opacity: 1;
	transform: translateY(10px);
}

100% {
	opacity: 1;
	transform: translateY(15px);
}

}

@keyframes ball2-sp {

12% {
	opacity: 1;
	transform: translateY(-15px);
}

25% {
	opacity: 1;
	transform: translateY(5px);
}

37% {
	opacity: 1;
	transform: translateY(-10px);
}

50% {
	opacity: 1;
	transform: translateY(5px);
}

65% {
	opacity: 1;
	transform: translateY(-5px);
}

80% {
	opacity: 1;
	transform: translateY(5px);
}

90% {
	opacity: 1;
	transform: translateY(0px);
}

100% {
	opacity: 1;
	transform: translateY(5px);
}

}

@keyframes fall {

to {
	top: 100%;
}

}

@keyframes sway1 {

from {
	transform: translateX(0px) rotate(0deg);
}

to {
	transform: translateX(200px) rotate(-45deg);
}

}

@keyframes sway2 {

from {
	transform: translateX(200px) rotate(-45deg);
}

to {
	transform: translateX(0px) rotate(0deg);
}

}


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