@charset "UTF-8";

/* 共通 ------------------------------------- */
html {
	font-size: 62.5%;
	/* = 10px = 1rem */
	/* scroll-behavior: smooth; */
	height: auto;
	scroll-behavior: auto;
}

body {
	font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
	/*------------ 欧文フォント用 ------------*/
	/* font-family: 'reross-quadratic', sans-serif; */
	/* font-family: "Marcellus", system-ui;
  font-weight: 400;
  font-style: normal; */
	font-size: 1.6rem;
	/* 16px */
	font-weight: normal;
	color: #3B4043;
	margin: 0;
}

.gothic {
	font-family: 'Yu Gothic', YuGothic, sans-serif;
}

.marcellus {
	font-family: "Marcellus", system-ui;
}

.caliban {
	font-family: caliban-std, sans-serif;
	font-weight: 400;
	font-style: normal;
}

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

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

ul {
	list-style: none;
}

.wrapper {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 4%;
}

@media (max-width: 900px) {
	.wrapper {
		padding: 0 6%;
	}
}

.backcolor {
	background-color: #fff;
}

.lead {
	font-size: 1.6rem;
	line-height: 2;
	letter-spacing: 0.05em;
	/* text-align: justify; */
}

.hidden {
	display: none !important;
}

/* Contact From 7 reCaptcha */
.grecaptcha-badge {
	visibility: hidden;
}

/* lenis ---------------------------------- */
html.lenis,
html.lenis body {
	height: auto;
}

.lenis.lenis-smooth {
	scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
	overscroll-behavior: contain;
}

.lenis.lenis-stopped {
	overflow: hidden;
}

.lenis.lenis-smooth iframe {
	pointer-events: none;
}

/* main ------------------------------------- */
#main {
	background-color: #f0f2f2;
	background-image: url("https://www.transparenttextures.com/patterns/grey-jean.png");
	background-repeat: repeat;
	padding-bottom: 808px;
}

.main-visual {
	width: 100%;
	height: 100vh;
	margin-bottom: 328px;
	position: relative;
	z-index: 400;
}

.title-logo {
	display: block;
	position: absolute;
	z-index: 3;
	left: 2%;
}

.title-logo .logo img {
	width: 100%;
	height: auto;
}

@media (max-width: 900px) {
	.title-logo .logo img {
		width: 60%;
	}
}


/* ------------- ハンバーガー -------------- */
.main-nav li {
	font-size: 1.8rem;
	letter-spacing: 0.1em;
	font-weight: 200;
	color: #fff;
	margin-bottom: 16px;
	text-align: right;
}

.main-nav {
	animation: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(59, 64, 67, 0.8);
	display: none;
	z-index: 1000;
}

.main-nav ul {
	position: absolute;
	top: 100px;
	right: 4%;
}

.main-nav ul li:hover {
	opacity: 0.7;
	color: #AC9436;
}

.btn {
	width: 50px;
	height: 50px;
	background: transparent;
	/* 背景色を透明に */
	position: fixed;
	top: 30px;
	right: 4%;
	border: none;
	z-index: 1100;
}

.btn span {
	content: '';
	display: block;
	height: 1px;
	/* border-radius: 2px; */
	background: #3B4043;
	/* 3本ラインの色を変更 */
	position: absolute;
	right: 0;
	transition: all 0.4s;
}

.btn span:nth-of-type(1) {
	width: 40px;
	top: 8px;
}

.btn span:nth-of-type(2) {
	width: 20px;
	top: 16px;
}

.btn.open span:nth-of-type(1) {
	transform: translateY(6px) rotate(-45deg);
	width: 20px;
}

.btn.open span:nth-of-type(2) {
	transform: translateY(-6px) rotate(45deg);
	top: 20px;
	width: 20px;
}

/* --------------------------------------------------- */


/* その他のページロゴ ------------------------------------- */
.title-logo-mini {
	display: block;
	position: fixed;
	top: 2%;
	left: 2%;
	z-index: 10;
}

.title-logo-mini .logo-mini img {
	width: 60%;
	height: auto;
}

/* --------------------------------------------------- */

/* .hero-wrapper {
	width: 100%;
	height: 100vh;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: center;
	justify-content: center;
} */
.hero-wrapper {
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 100vh;

}

.hero-bg {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.7s ease-in-out;
	background-color: #ffffff;
	background-size: cover;
	background-position: center;
	background-size: contain;
}

.hero-bg img {
	width: 100%;
	height: 100vh;
	object-fit: cover;
	object-position: center;
}

.hero-bg.active {
	opacity: 1;
}



.movie {
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.movie video {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: auto;
	height: auto;
	min-width: 100%;
	min-height: 100%;
	transform: translate(-50%, -50%);
	object-fit: cover;
}

@media (max-width: 900px) {
	.video-wrapper {
		position: relative;
		width: 100%;
		height: 80vh;
	}

	.movie {
		width: 100%;
		height: 100vh;
	}

	.movie video {
		height: 80%;
	}

	.title-logo-mini .logo-mini img {
		width: 50%;
	}
}

.main-text {
	position: absolute;
	bottom: 10%;
	left: 4%;
	z-index: 3;
}

.main-text p {
	font-size: 3.4rem;
	line-height: 1.2;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.8);
}

.main-text .main-sub {
	font-size: 1.6rem;
	letter-spacing: 0.1em;
	margin-top: 32px;
	color: rgba(255, 255, 255, 0.8);
}

.about {
	display: flex;
	justify-content: space-between;
	/* align-items: center; */
	margin: 0 auto;
}

.catch-en {
	width: 42%;
	font-weight: 400;
	font-size: 2.4rem;
	line-height: 1.4;
	letter-spacing: 0.06em;
}

.catch-jp {
	width: 58%;
}

.catch-main {
	font-size: 2.8rem;
	letter-spacing: 0.1em;
}

.catch-jp .lead {
	margin-top: 48px;
	margin-bottom: 24px;
	text-align: justify;
	letter-spacing: 0.1em;
}

.about-button {
	color: #3b4043;
	font-size: 1.6rem;
	letter-spacing: 0.1em;
	padding: 34px 32px 8px 0;
	position: relative;
	line-height: 1;
}

.about-button::before,
.about-button::after {
	content: "";
	position: absolute;
	top: 42px;
	right: -7px;
	height: 1px;
	background-color: #3b4043;
}

.about-button::before {
	width: 60px;
	transform: translate(30px, 0px);
}

.about-button::after {
	width: 15px;
	transform-origin: right center;
	transform: translate(30px, 0px) rotate(25deg);
}

.br-on {
	display: none;
}

@media (max-width: 600px) {
	.br-none {
		display: none;
	}

	.br-on {
		display: block !important;
	}

	.main-text p {
		font-size: 2rem;
		color: #fff;
		line-height: 1.2;
		letter-spacing: 0.08em;
	}

	.main-text .main-sub {
		font-size: 1.4rem;
		color: #fff;
		letter-spacing: 0.1em;
		margin-top: 16px;
	}

	#main {
		padding-bottom: 480px;
	}

	.main-visual {
		margin-bottom: 192px;
	}

	.about {
		flex-direction: column;
	}

	.catch-en,
	.catch-jp {
		width: 100%;
	}

	.catch-en {
		font-size: 1.4rem;
		margin-bottom: 8px;
	}

	.catch-main {
		font-size: 2.6rem;
	}
}

/* service ------------------------------------- */
.service {
	flex-direction: column;
	margin-top: -380px;
	margin-bottom: 30rem;
}

.service-top {
	flex-direction: column;
	text-align: center;
}

.service-top .marcellus {
	font-size: 3rem;
	letter-spacing: 0.06em;
}

.service-top img {
	margin-top: 24px;
}

.service-about {
	display: flex;
	height: auto;
	justify-content: space-between;
	align-items: flex-end;
	margin-top: 120px;
}

.service-text {
	width: 75%;
	max-width: 700px;
}

.service-pic {
	width: 33%;
	max-width: 400px;
}

.service-pic img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

.service-sub {
	font-size: 2rem;
	letter-spacing: 0.05em;
	color: #AC9436;
}

.service-text h3 {
	font-size: 2.6rem;
	letter-spacing: 0.1em;
	margin-bottom: 56px;
	font-weight: 500;
}

@media (max-width: 900px) {
	.service {
		margin-top: -160px;
		margin-bottom: 280px;
	}

	.service-top {
		width: 100vw;
		margin: 0 calc(50% - 50vw);
	}

	.service-top .marcellus {
		font-size: 2.4rem;
	}

	.service-about {
		width: 100%;
		display: flex;
		align-items: center;
		flex-direction: column;
		justify-content: center;
		margin-top: 80px;
	}

	.service-text {
		width: 100%;
		margin-bottom: 40px;
	}

	.service-text h3 {
		font-size: 2.2rem;
		margin-bottom: 32px;
	}

	.service-pic {
		width: 100%;
		text-align: center;
	}
}

@media (max-width: 600px) {
	.service-text h3 {
		font-size: 2rem;
	}

	.lead {
		font-size: 1.4rem;
	}
}



/* category ------------------------------------- */
.category {
	margin-bottom: 32vh;
}

#wedding,
#kidsstudio,
#advertisement,
#branding,
#design {
	margin-bottom: 36vh;
}

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

.category-pic {
	width: 50%;
	box-sizing: border-box;
}

.category-text {
	width: 38%;
}

.text-main p {
	font-size: 1.8rem;
	letter-spacing: 0.05em;
	margin-bottom: 8px;
}

.text-main h4 {
	font-size: 3rem;
	font-weight: normal;
	line-height: 1.2;
	letter-spacing: 0.1em;
	margin-bottom: 40px;
}

.sub-text p {
	font-size: 1.6rem;
	line-height: 1.8;
	text-align: justify;
	margin-bottom: 36px;
}

.category-button {
	display: inline-block;
	color: #3B4043;
	font-size: 1.6rem;
	letter-spacing: 0.1em;
	border-radius: 2px;
	border: 1px solid #3B4043;
	padding: 6px 60px;
	transition: transform 0.5s;
	line-height: 1;
	z-index: 1;
}

@media (max-width: 900px) {

	#wedding,
	#kidsstudio,
	#advertisement,
	#branding,
	#design {
		margin-bottom: 240px;
	}

	.container {
		flex-direction: column;
		justify-content: flex-start;
	}

	.category-text {
		width: 100%;
		padding-left: 6%;
		padding-right: 7%;
	}

	.category-pic {
		width: 100vw;
		padding-right: 13%;
		margin-bottom: 32px;
	}

	.oppose {
		display: flex;
		flex-direction: column-reverse;
	}

	.oppose-02 {
		padding-right: 0;
		padding-left: 13%;
	}

	.text-main h4 {
		font-size: 2.4rem;
	}

	.text-main p {
		font-size: 1.6rem;
	}
}


/* 後半背景 ------------------------------------- */
.bg {
	background-color: #f0f2f2;
	background-image: url("https://www.transparenttextures.com/patterns/grey-jean.png");
	background-repeat: repeat;
	padding-bottom: 360px;
}

/* garally ------------------------------------- */
.gallery {
	padding-top: 240px;
	margin-bottom: 240px;
}

.gallery-top {
	font-size: 3rem;
	letter-spacing: 0.06em;
}

.gallery-top {
	flex-direction: column;
	text-align: center;
}

.gallery-top img {
	margin-top: 24px;
}

.gallery-box {
	display: grid;
	gap: 10px;
	grid-template-columns: 1fr 1fr 1fr;
	margin-top: 10px;
	margin-bottom: 50px;
}

.gallery-box img {
	width: 100%;
	height: auto;
	object-fit: cover
}

.item-link {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #3b404330;
	transition: all 1s ease-in-out;
}

.item-link:hover {
	background-color: rgba(255, 255, 255, 0.4);
}

.gallery-button {
	color: #3b4043;
	padding: 10px 20px;
	font-size: 1.8rem;
	letter-spacing: 0.1em;
}

@media (max-width: 900px) {
	.gallery {
		padding-top: 160px;
		margin-bottom: 180px;
	}

	.gallery-box {
		grid-template-columns: 1fr 1fr;
	}

	.gallery-top {
		font-size: 2.4rem;
	}

	@media (max-width: 600px) {
		.gallery-button {
			font-size: 1.6rem;
			padding: 8px 16px;
		}
	}
}

/* news ------------------------------------- */
.news {
	display: flex;
	justify-content: space-between;
	padding-bottom: 200px;
}

.post-text {
	width: 35%;
}

.post-text .marcellus {
	font-size: 1.8rem;
	letter-spacing: 0.1em;
}

.post-text h4 {
	font-size: 2.4rem;
	font-weight: normal;
	line-height: 1.2;
	letter-spacing: 0.1em;
	margin-top: 8px;
	margin-bottom: 16px;
}

.article-text {
	text-align: justify;
	font-size: 1.4rem;
	line-height: 1.6;
	letter-spacing: 0.05em;
	margin-top: 8px;
}

.post {
	display: flex;
	flex-direction: column;
	width: 50%;
}

.post-box {
	margin-bottom: 32px;
	padding-bottom: 24px;
	border-bottom: solid 1px #3b4043;
}

@media (max-width: 900px) {
	.news {
		flex-direction: column;
	}

	.post-text {
		margin-bottom: 32px;
	}

	.post-text,
	.post {
		width: 100%;
	}

	.article-text {
		font-size: 1.4rem;
		line-height: 1.6;
		letter-spacing: 0.08em;
	}

}


/* アコーディオン top-------------------------------------------- */
.accordion-001 {
	border-bottom: 1px solid #3B4043;
}

.accordion-001 summary {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	padding: 1em 2em 8px 0;
	color: #3B4043;
	cursor: pointer;
	font-size: 1.6rem;
	letter-spacing: 0.06em;
	font-weight: normal;
}

.accordion-001 summary::-webkit-details-marker {
	display: none;
}

.accordion-001 summary::before,
.accordion-001 summary::after {
	width: 1px;
	height: .9em;
	border-radius: 5px;
	background-color: #3B4043;
	content: '';
}

.accordion-001 summary::before {
	position: absolute;
	right: 2em;
	rotate: 90deg;
}

.accordion-001 summary::after {
	transition: rotate .3s;
}

.accordion-001[open] summary::after {
	rotate: 90deg;
}

.accordion-001 p {
	transform: translateY(-10px);
	opacity: 0;
	margin: 0;
	padding: .3em 2em 1.5em;
	color: #333333;
	transition: transform .5s, opacity .5s;
}

.accordion-001[open] p {
	transform: none;
	opacity: 1;
}


/* recruit------------------------------------- */
.recruit-box {
	height: 320px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	/* justify-content: space-between;
	align-items: center; */
	background-image: url(../images/06.jpg);
	background-size: cover;
	background-position: center;
	padding: 0 48px;
}

.recruit-box .post-text {
	color: #ffffffe8;
}

.post-text {
	margin-bottom: 16px;
}

/* other service------------------------------------- */
.otherservice {
	background-color: rgb(172, 148, 54, 0.5);
	border-radius: 16px;
	padding-top: 120px;
	padding-bottom: 160px;
	padding-left: 14%;
	padding-right: 14%;
	margin-top: 440px;
	margin-bottom: -370px;
}

.otherservice-title {
	width: 100%;
	border-bottom: solid 1px #3b4043;
	margin-bottom: 80px;
}

.other-title {
	font-size: 3rem;
	letter-spacing: 0.06em;
}

.otherservice-box {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.otherservice-photo {
	width: 60%;
	overflow: hidden;
	border-radius: 16px;
}

.otherservice-photo img {
	width: 100%;
	height: 100%;
	border-radius: 16px;
	object-fit: contain;
	transition: transform 0.3s ease;
}

.otherservice-text {
	width: 35%;
}

.otherservice-text .otherservice-text-main p {
	font-size: 1.8rem;
	letter-spacing: 0.05em;
	margin-bottom: 8px;
}

.otherservice-text .otherservice-text-main h4 {
	font-size: 2.2rem;
	font-weight: normal;
	line-height: 1.2;
	letter-spacing: 0.1em;
	margin-bottom: 24px;
}

.otherservice-text .sub-text p {
	margin-bottom: 0;
}

.otherservice-photo img:hover {
	opacity: 0.8;
	transform: scale(1.05);
	transition: 1s all;
}

@media (max-width: 900px) {
	.otherservice-box {
		display: flex;
		justify-content: flex-start;
		flex-direction: column;
	}

	.otherservice-photo {
		width: 100%;
		margin-bottom: 24px;
	}

	.otherservice-text {
		width: 100%;
	}

	.otherservice-text .otherservice-text-main p {
		font-size: 1.6rem;
	}

	.otherservice-text .otherservice-text-main h4 {
		font-size: 1.8rem;
	}

	.otherservice-text .sub-text p {
		font-size: 1.4rem;
	}
}



/* ボタン------------------------------------- */
.recruit-link {
	width: 40%;
}

.recruit-box .recruit-link a,
.design-box .recruit-link a,
.advertisement-box .recruit-link a {
	height: 60px;
	border: solid 1px #fff;
	color: #fff;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
	padding: 10px 25px;
	transition: 0.5s ease-in-out;
	letter-spacing: 0.4em;
}

.recruit-link a:after {
	content: "";
	position: absolute;
	top: 50%;
	bottom: 0;
	right: 2rem;
	font-size: 90%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: right 0.5s;
	width: 6px;
	height: 6px;
	border-top: solid 2px currentColor;
	border-right: solid 2px currentColor;
	transform: translateY(-50%) rotate(45deg);
	color: #fff;

}

.recruit-link a:hover {
	background: #ffffffbb;
	color: #3b4043;
}

.recruit-link a:hover:after {
	right: 1.4rem;
	color: #3b4043;
}

.contact-link {
	width: 50%;
	display: flex;
	align-items: center;
	text-align: center;
	color: #3b4043;
	border: solid 1px #ffffffd5;
}

.contact-link a {
	width: 100%;
	/* height: 60px; */
	text-align: center;
	margin: 0 auto;
	max-width: 480px;
	padding: 10px 25px;
	/* color: #fff; */
	transition: 0.5s ease-in-out;
	letter-spacing: 0.1em;
	background: #ffffffd5;
}

.contact-link a:hover {
	color: #ffffffd5;
	background: #ffffff00;
}

@media (max-width: 900px) {
	.recruit-box {
		padding: 0 16px;
		flex-direction: column;
		justify-content: center;
	}

	.post-text {
		width: 90%;
	}

	.recruit-link {
		width: 40%;
	}
}

@media (max-width: 600px) {
	.recruit-link {
		width: 95%;
	}
}


/* About-page------------------------------------- */
.about-page {
	background-color: #f0f2f2;
	background-image: url("https://www.transparenttextures.com/patterns/grey-jean.png");
	background-repeat: repeat;
	padding-top: 192px;
	padding-bottom: 392px;
	display: flex;
	flex-direction: column;
}

.message {
	display: flex;
	position: relative;
	justify-content: space-between;
	align-items: flex-end;
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 4%;
}

.message-text {
	width: 100%;
	margin-right: 10%;
}

.title-text {
	font-size: 2.6rem;
	letter-spacing: 0.05em;
	margin-bottom: 48px;
}

.message-catch {
	font-size: 2.4rem;
	letter-spacing: 0.1em;
	margin: 0 auto 48px;
}

.message-lead {
	margin: 0 auto;
	text-align: justify;
}

.about-pic {
	width: 100vw;
	margin-right: calc(50% - 50vw);
}

.company {
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin-top: 392px;
}

.company-info {
	width: 70%;
}

.title-company {
	font-size: 2.4rem;
	margin-bottom: 16px;
	letter-spacing: 0.05em;
}

table {
	width: 100%;
	text-align: left;
	font-size: 1.6rem;
	border-collapse: collapse;
}

table th,
table td {
	border-top: solid 1px #B2B4B5;
	border-bottom: solid 1px #B2B4B5;
	padding: 40px 8px;
}

table th {
	width: 20%;
	font-weight: normal;
	letter-spacing: 0.1em;
}

table td {
	width: 80%;
	line-height: 1.6em;
}


@media (max-width: 900px) {
	.about-page {
		padding-top: 96px;
	}

	.message {
		flex-direction: column-reverse;
		margin: 0 auto;
		padding: 0 6%;
	}

	.message-catch {
		font-size: 2rem;
	}

	.message-text {
		margin: 24px auto 0;
	}

	.title-text {
		margin-bottom: 24px;
	}

	.company {
		flex-direction: column;
	}

	.company-info {
		width: 100%;
	}

	table th {
		width: 30%;
	}

	table td {
		width: 70%;
	}
}


/* 共通------------------------------------- */
#wedding-page,
#kidsstudio-page,
#advertisement-page,
#branding-page {
	padding-top: 240px;
}

#studiolist-page {
	margin-top: 120px;
}

#gallery-page {
	margin-top: 120px;
}

@media (max-width: 600px) {

	#wedding-page,
	#kidsstudio-page,
	#advertisement-page,
	#branding-page {
		padding-top: 192px;
	}

}

/* wedding-page------------------------------------- */
.sub-category {
	position: fixed;
	top: 2%;
	left: 2%;
	z-index: 100;
}

.sub-category h2 {
	text-align: center;
	font-size: 1.8rem;
	letter-spacing: 0.05em;
}

.category-title {
	margin-top: 72px;
}

.sub-category .logo-mini::after {
	content: '';
	position: absolute;
	top: 73%;
	left: 40px;
	display: block;
	width: 68px;
	height: 1px;
	background-color: #707070;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

@media (max-width: 900px) {
	.sub-logo {
		width: 80px;
		height: auto;
	}

	.sub-category .logo-mini::after {
		content: '';
		position: absolute;
		top: 100px;
		left: 25px;
		display: block;
		width: 30px;
		height: 1px;
		background-color: #707070;
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
	}

	.sub-category h2 {
		font-size: 1.4rem;
	}

	.category-title {
		margin-top: 40px;
	}
}

.my-swiper {
	margin-left: 18%;
	position: relative;
	top: -120px;
	height: calc(100vh - 120px);
	overflow: hidden;
	z-index: -1;
}

.my-swiper-wrapper {
	height: 100%;
	transition: transform 0.5s ease;
	/* スライド時のアニメーション */
	display: flex;
}

.service-mainph {
	height: 100%;
	/* 高さは親要素に合わせる */
	flex: 0 0 auto;
	/* 幅を自動調整し、右の画像が少し見えるように */
	margin-right: 40px;
	/* 画像間の間隔を設定 */
	margin-left: 0;
}

.service-mainph:last-child {
	margin-right: 0;
	/* 最後のスライドの余白を消す */
}

.service-mainph img {
	height: 100%;
	/* スライドの高さに合わせる */
	width: auto;
	/* 横幅は自動調整 */
	display: block;
	/* ブロック要素として表示 */
	object-fit: cover;
}


.service-bg {
	background-color: #f0f2f2;
	background-image: url("https://www.transparenttextures.com/patterns/grey-jean.png");
	background-repeat: repeat;
	padding-bottom: 376px;
	position: relative;
	z-index: 0;
}

.wedding-service {
	margin-top: 296px;
}

.wd {
	width: 100%;
}

.wedding-appeal {
	margin-bottom: 192px;
	display: flex;
	justify-content: space-between;
}

.appeal-box {
	width: 30%;
	height: 50%;
	background-color: rgb(255, 255, 255, 0.5);
	text-align: center;
	border-radius: 22px;
	padding: 40px 32px 48px 32px;
}

.wedding-appeal .appeal-box:nth-child(1) {
	margin-top: 320px;
}

.wedding-appeal .appeal-box:nth-child(2) {
	margin-top: 180px;
}

.wedding-appeal .appeal-box:nth-child(3) {
	margin-top: 40px;
}

.appeal-sub {
	font-size: 2rem;
	letter-spacing: 0.05em;
	color: #AC9436;
}

.appeal-text h4 {
	font-size: 2.2rem;
	font-weight: 300;
	margin: 32px 0;
	letter-spacing: 0.1em;
}

.appeal-text p {
	text-align: left;
	font-size: 1.4rem;
	line-height: 1.8;
	letter-spacing: 0.03em;
	text-align: justify;
}

.appeal-box .appeal-sub::before {
	content: '';
	position: relative;
	display: inline-block;
	top: -50px;
	left: 0;
	width: 68px;
	height: 1px;
	background-color: #707070;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

@media (max-width: 900px) {
	.wedding-service {
		width: 80%;
	}

	.swiper {
		margin-left: 8%;
	}

	.wedding-appeal {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 120px;
	}

	.appeal-box {
		width: 80%;
	}

	.wedding-appeal .appeal-box:nth-child(1) {
		margin-top: 180px;
	}

	.wedding-appeal .appeal-box:nth-child(2) {
		margin-top: 80px;
	}

	.wedding-appeal .appeal-box:nth-child(3) {
		margin-top: 80p
	}
}

@media (max-width: 600px) {
	.swiper {
		margin-left: 0;
	}

	.service-bg {
		padding-bottom: 280px;
	}

	.service-mainph {
		width: 100%;
	}

	.service-mainph02 {
		width: 0;
	}

	.wedding-bg {
		padding-bottom: 120px;
	}

	.wedding-service {
		margin-top: 96px;
	}

	.wedding-appeal {
		margin-bottom: 0;
	}
}

.wedding-section {
	background-color: #f0f2f2;
	background-image: url("https://www.transparenttextures.com/patterns/grey-jean.png");
	background-repeat: repeat;
	display: flex;
	flex-direction: column;
}

.wedding-about01 {
	width: 100%;
	display: flex;
	justify-content: space-between;
	margin-top: 5%;
}

.wedding-about-left {
	width: 28%;
}

.wedding-about-right {
	width: 60%;
}

.ph-box-01 {
	margin-top: 40%;
}

.ph-box-02 {
	margin: 0 10%;
}

.ph-box-03 {
	margin-top: 20%;
	margin-right: 40%;
}

.wedding-about02 {
	width: 100%;
	display: flex;
	justify-content: space-between;
	margin-top: 15%;
}

.wedding-about-left02 {
	width: 64%;
}

.wedding-about-right02 {
	width: 24%;
}

.ph-box-04 {
	margin-top: 64px;
	margin-left: 5%;
}

.wedding-about03 {
	width: 100%;
	display: flex;
	justify-content: center;
	margin-top: 25%;
}

.wedding-about-left03 {
	width: 43%;
}

.wedding-about-right03 {
	width: 43%;
}

.ph-box-06 {
	margin: 15% 20% 0 20%;
}

.ph-box-07 {
	margin-left: 5%;
	margin-right: 20%;
}

.gallery-link {
	width: 45%;
	display: flex;
	justify-content: flex-end;
	/* padding-right: 480px; */
	margin-bottom: 192px;
}

.gallery-link a {
	letter-spacing: 0.1em;
}

.link-button {
	border: solid 1px #A0A0A0;
	text-align: center;
	padding: 15%;
	margin-top: -10%;
	transition: all 1s ease-in-out;
}

.link-button:hover {
	border: none;
	background-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 900px) {
	.wedding-section {
		margin-bottom: 240px;
	}
}

@media (max-width: 600px) {
	.wedding-about-right {
		width: 70%;
	}

	.wedding-about-right02 {
		width: 30%;
	}

	.wedding-about-left03 {
		width: 50%;
	}

	.wedding-about-right03 {
		width: 50%;
	}

	.ph-box-02 {
		margin-right: 0;
	}

	.ph-box-03 {
		margin-right: 20%;
	}

	.ph-box-06 {
		margin-left: 15%;
	}

	.ph-box-07 {
		margin-right: 10%;
	}
}


.brand-container {
	max-width: 1100px;
	margin: 0 auto;
	margin-bottom: 320px;
}

.brand-box {
	position: relative;
	width: 100%;
	height: 550px;
	overflow: hidden;
}

.brand-image-1 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	z-index: 1;
	background-image: url(../images/001_3.jpg);
	/* 1つ目の画像 */
}

.brand-image-2 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	z-index: 1;
	background-image: url(../images/0003.jpg);
	/* 2つ目の画像 */
}

.brand-image-3 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	z-index: 1;
	background-image: url(../images/00003.jpg);
	/* 3つ目の画像 */
}

.brand-text {
	width: 25%;
	position: absolute;
	bottom: 30px;
	left: 30px;
	z-index: 2;
	color: #3B4043;
}

.brand-text h5 {
	font-size: 1.8rem;
	letter-spacing: 0.05em;
	font-weight: 600;
	margin-bottom: 24px;
}

.brand-text h6 {
	font-size: 1.8rem;
	letter-spacing: 0.05em;
	font-weight: 300;
	margin-bottom: 12px;
}

.brand-text p {
	font-size: 1.4rem;
	text-align: justify;
}

.brand-text.right {
	left: auto;
	right: 30px;
}

@media (max-width: 900px) {
	.brand-container {
		display: flex;
		flex-direction: column;
		/* 縦に並べる */
		gap: 40px;
		/* 要素間の余白を調整 */
	}

	.brand-box {
		height: auto;
		/* 高さを自動調整 */
	}

	.brand-image-1,
	.brand-image-2,
	.brand-image-3 {
		position: relative;
		width: 100%;
		height: 340px;
		/* 背景画像の高さを縮小 */
	}

	.brand-text {
		position: static;
		/* 通常フローに戻す */
		width: auto;
		margin-top: 20px;
		padding: 0 20px;
		color: #3B4043;
	}

	.brand-text.right {
		text-align: left;
		/* スマホでは左揃えに変更 */
	}

	.brand-text h5 {
		font-size: 1.6rem;
		margin-bottom: 16px;
	}

	.brand-text h6 {
		font-size: 1.6rem;
	}

	.brand-text p {
		font-size: 1.4rem;
	}
}


/* kidsstudio-page------------------------------------- */
.kidsstudio {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 296px;
}

.studio-video {
	margin-left: calc(50% - 50vw);
}

.studio-video video {
	width: 100%;
	height: auto;
}

.studio-text {
	width: 60%;
	margin-left: 5%;
	text-align: justify;
}

.studio-text h3 {
	font-size: 2.6rem;
	letter-spacing: 0.1em;
	margin-bottom: 56px;
	font-weight: normal;
}

.list-button {
	display: inline-block;
	color: #3B4043;
	font-size: 1.6rem;
	letter-spacing: 0.1em;
	border-radius: 2px;
	border: 1px solid #3B4043;
	padding: 6px 60px;
	transition: transform 0.5s;
	line-height: 1;
	margin: 32px 4px 4px 4px;
}

.service-section {
	display: flex;
	/* justify-content: center; */
	flex-direction: column;
	margin: 0 auto;
}

.brand-title {
	margin: 0 auto;
	padding-top: 240px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-bottom: 160px;
}

.brand-title h4 {
	font-size: 2.6rem;
	margin-bottom: 16px;
	text-align: center;
	letter-spacing: 0.05em;
}

.brand-title p {
	font-size: 1.6rem;
	line-height: 1.6;
	letter-spacing: 0.06em;
	text-align: center;
}

.brand-introduction {
	display: flex;
	justify-content: space-between;
	margin-bottom: 600px;
}

.brand-photo {
	width: 35%;
	margin-left: 5%;
	position: relative;
}

.maru-photo,
.cajitsu-photo,
.saijiki-photo {
	position: absolute;
}

.maru-photo {
	z-index: 5;
}

.cajitsu-photo {
	z-index: 3;
	transform: rotate(-10deg);
}

.saijiki-photo {
	z-index: 2;
	transform: rotate(10deg);
	background-position: center;
}

.brand-list {
	width: 40%;
	display: flex;
	flex-direction: column;
}

.brand-list-box {
	width: 100%;
	margin-bottom: 360px;
}

.brand-list-box h5 {
	font-size: 1.8rem;
	letter-spacing: 0.05em;
	font-weight: 600;
	margin-bottom: 24px;
	color: #AC9436;
}

.brand-list-box h6 {
	font-size: 2.4rem;
	letter-spacing: 0.05em;
	font-weight: 300;
	margin-bottom: 12px;
}

.brand-list-box p {
	font-size: 1.5rem;
	line-height: 1.8;
	text-align: justify;
	margin-bottom: 48px;
}

.list-text {
	display: flex;
	border-left: 1px solid #3B4043;
	margin-bottom: 40px;
	padding-left: 24px;
}

.list-text li {
	padding-top: 4px;
	padding-bottom: 4px;
	font-size: 1.4rem;
}

.cajitsu-box01 p:first-child,
.cajitsu-box02 p:first-child {
	font-size: 1.6rem;
	margin-bottom: 8px;
	font-weight: 400;
}

.cajitsu-box01 p:nth-child(2),
.cajitsu-box02 p:nth-child(2) {
	font-size: 1.4rem;
	margin-bottom: 8px;
	font-weight: 400;
}

.cajitsu-box01,
.cajitsu-box02 {
	border-left: 1px solid #3B4043;
	margin-bottom: 40px;
	padding-left: 24px;
}

.brand-account {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 480px;
}

.studio-maru,
.studio-cajitsu,
.studio-saijiki {
	width: 49%;
	height: 604px;
	position: relative;
	overflow: hidden;
	cursor: pointer;
	border-radius: 15px;
}

.studio-maru {
	margin-bottom: 2%;
}

.maru-bg {
	width: 100%;
	height: 604px;
	border-radius: 15px;
	margin-bottom: 2%;
	background: url(../images/0022.jpg);
	background-size: cover;
	background-position: center;
	position: relative;
	transition: 1.6s ease-in-out;
}

.maru-bg:hover,
.cajitsu-bg:hover,
.saijiki-bg:hover {
	transform: scale(1.1);
}

.maru-bg:hover::before,
.cajitsu-bg:hover::before,
.saijiki-bg:hover::before {
	background-color: rgba(0, 0, 0, 0.2);
}

.cajitsu-bg {
	width: 100%;
	height: 604px;
	border-radius: 15px;
	background: url(../images/teaparty8.jpg);
	background-size: cover;
	background-position: center;
	position: relative;
	transition: 1.6s ease-in-out;
}

.saijiki-bg {
	width: 100%;
	height: 604px;
	border-radius: 15px;
	background: url(../images/0007.jpg);
	background-size: cover;
	background-position: center;
	position: relative;
	transition: 1.6s ease-in-out;
}

.maru-bg::before,
.cajitsu-bg::before,
.saijiki-bg::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.4);
	border-radius: 15px;
	z-index: 5;
	transition: 1.6s ease-in-out;
}

.studio-maru p,
.studio-cajitsu p,
.studio-saijiki p {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 2.4rem;
	letter-spacing: 0.05em;
	font-weight: 300;
	color: #ffffffd5;
	pointer-events: none;
	z-index: 10;
	width: 90%;
	text-align: center;
}

.insta-circle {
	position: absolute;
	text-align: center;
	top: 58%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 50px;
	height: 50px;
	border: solid 1px #fff;
	border-radius: 50%;
	color: #fff;
	padding-top: 10px;
	margin-top: 8px;
	z-index: 10;
}

.kids-gallery {
	width: 100%;
	height: 604px;
	background-color: rgba(0, 0, 0, 0.4);
	background-image: url("https://www.transparenttextures.com/patterns/grey-jean.png");
	background-repeat: repeat;
	border-radius: 15px;
	transition: all 1s ease-in-out;
}

.kids-gallery:hover {
	background-color: rgba(255, 255, 255, 0.4);
	color: #3B4043;
}

.kids-button {
	display: flex;
	flex-direction: column;
	width: 49%;
	height: 604px;
}

.kids-button p {
	font-size: 2rem;
	color: #fff;
	text-align: center;
	margin-top: 302px;
}

.rental {
	margin-bottom: 192px;
}

.rental-photo {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	/* grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); */
	gap: 8px;
	margin-bottom: 48px;
}

.rental-text {
	width: 70%;
}

.rental-title {
	font-size: 2.6rem;
	margin-bottom: 16px;
	letter-spacing: 0.05em;
}

.rental-catch {
	font-size: 1.8rem;
	font-weight: 400;
	margin-bottom: 16px;
}

.rental-lead {
	font-size: 1.4rem;
	margin-bottom: 8px;
	line-height: 1.75;
	text-align: justify;
}

.rental-link {
	font-size: 1.4rem;
	text-decoration: underline;
	text-decoration-color: #3B4043;
}

.kusatsudo {
	margin-bottom: 312px;
}

.kusatsudo-box {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* .kusatsudo-photo{
	width: 40%;
} */
.kusatsudo-text {
	width: 70%;
}

@media (max-width: 900px) {
	.kidsstudio {
		flex-direction: column-reverse;
	}

	.studio-text {
		width: 80%;
		margin-left: 0;
	}

	.studio-text h3 {
		font-size: 2rem;
	}

	.studio-video {
		margin: 0 auto;
		text-align: center;
		margin-top: 80px;
	}

	.kusatsudo-box {
		display: flex;
		flex-direction: column;
		align-items: stretch;
	}

	.kusatsudo-text {
		width: 80%;
	}

	.kusatsudo-photo {
		width: 100%;
		margin-bottom: 48px;
	}
}

@media (max-width: 600px) {
	.kidsstudio {
		margin-top: 96px;
	}

	.brand-introduction {
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.brand-list-box {
		position: relative;
		background-color: rgba(255, 255, 255, 0.7);
		padding-top: 30px;
	}

	.brand-list-box:not(:first-child) {
		margin-top: 320px;
	}

	.brand-photo {
		width: 50%;
		margin-bottom: 480px;
	}

	.rental-photo {
		grid-template-columns: repeat(3, 1fr);
	}

	.brand-list {
		width: 80%;
		margin-top: 0;
	}

	.studio-maru,
	.studio-cajitsu,
	.studio-saijiki,
	.maru-bg,
	.cajitsu-bg,
	.saijiki-bg,
	.kids-gallery,
	.kids-button {
		height: 280px;
	}

	.insta-circle {
		top: 65%;
	}

	.kids-gallery p {
		margin-top: 140px;
	}

	.rental-text {
		width: 100%;
	}

	.studio-maru p,
	.studio-cajitsu p,
	.studio-saijiki p,
	.kids-button p {
		font-size: 1.8rem;
	}

	.rental-title,
	.brand-title h4 {
		font-size: 2.2rem;
	}

}


/* スタジオリスト------------------------------------- */
.studio-list {
	width: 100%;
	background-color: #F0F2F2;
	padding: 96px 8%;
	margin-bottom: 312px;
}

.list-title {
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-bottom: 40px;
}

.list-title h4 {
	font-size: 2.8rem;
	margin-bottom: 16px;
	text-align: center;
	letter-spacing: 0.05em;
}

.studio-list-box {
	font-size: 1.6rem;
	margin-bottom: 40px;
}

.sutidolist-text {
	display: flex;
	justify-content: space-between;
	width: 100%;
}

.list-01 {
	margin-bottom: 32px;
	position: relative;
}

.list-01::after {
	content: "";
	position: absolute;
	top: 10px;
	background-color: #3B4043;
	height: 1px;
	width: 90%;
	display: inline-block;
	vertical-align: middle;
}

.studio-name {
	width: 30%;
	display: flex;
	font-size: 1.8rem;
	font-weight: 300;
}

.studio-name a {
	display: flex;
}

.studio-name a:hover {
	opacity: 0.5;
}

.studio-addres {
	width: 65%;
	display: flex;
	flex-direction: column;
	letter-spacing: 0.05em;
}

.list-02 {
	width: 100%;
	display: flex;
	position: relative;
}

.list-02,
.studio-addres p {
	display: flex;
	margin-bottom: 16px;
}

.studio-name img {
	width: 18px;
	object-fit: contain;
	margin-left: 8px;
	margin-bottom: 20px;
}

@media (max-width: 900px) {
	.list-02 {
		display: flex;
		flex-direction: column;
		width: 100%;
	}

	.studio-name {
		margin-bottom: 8px;
	}

	.studio-name,
	.studio-addres {
		width: 100%;
	}

	.studio-name img {
		margin-bottom: 0;
	}
}

@media (max-width: 600px) {
	.list-01::after {
		width: 70%;
	}
}


/* 広告撮影ページ------------------------------------- */
.advertisement-point {
	margin-top: 64px;
	display: grid;
	grid-template-columns: 6, 1fr;
}

.point-box {
	width: 180px;
	height: 180px;
	border-radius: 50%;
	/* border: solid 1px; */
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: -72px;
	margin-right: -72px;
	background-color: #ffffff70;
	border: solid 3px #ffffff70;
}

.point-box h3 {
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 1.8;
	text-align: center;
}

.advertisement-point .point-box:nth-child(1) {
	grid-column: 1/2;
	grid-row: 1/2;
}

.advertisement-point .point-box:nth-child(2) {
	grid-column: 2/3;
	grid-row: 2/3;
}

.advertisement-point .point-box:nth-child(3) {
	grid-column: 3/4;
	grid-row: 1/2;
}

.advertisement-point .point-box:nth-child(4) {
	grid-column: 4/5;
	grid-row: 2/3;
}

.advertisement-point .point-box:nth-child(5) {
	grid-column: 5/6;
	grid-row: 1/2;
}

.advertisement-point .point-box:nth-child(6) {
	grid-column: 6/7;
	grid-row: 2/3;
}

.text-over,
.text-under {
	font-family: Helvetica Neue;
	font-size: 16rem;
	font-weight: 800;
	letter-spacing: 0.1em;
	line-height: 0.8;
}

.advertisement-text {
	margin-bottom: 416px;
	overflow: hidden;
}

.advertisement-text span {
	font-size: 22rem;
}

.text-over {
	color: #3B4043;
	opacity: 0.3;
	margin-bottom: 16px;
}

.text-under {
	color: transparent;
	opacity: 0.3;
	-webkit-text-stroke: 1px #3B4043;
}

.advertisement-works {
	margin-bottom: 400px;
}

.advertisement-works-title h4 {
	font-size: 2.6rem;
	letter-spacing: 0.05em;
	margin: 0 auto;
	margin-bottom: 24px;
	max-width: 1100px;
	padding: 0 4%;
}

.advertisement-works-title img {
	width: 85%;
	height: auto;
	object-fit: cover;
}

.advertisement-about {
	display: flex;
	align-items: flex-end;
	margin-top: 8px;
	margin-bottom: 24px;
}

.advertisement-info {
	width: 35%;
	margin-left: 24px;
	padding-right: 15%;
}

/* ------------------------------------------------- */
.slide-container {
	width: 65%;
	height: auto;
	margin: 0 auto;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.slide-wrapper {
	display: flex;
	animation: slide-flow 20s infinite linear 1s both;
}

.slide-wrapper img {
	border-left: 8px solid #fff;
}

.slide {
	width: 440px;
	height: auto;
	object-fit: cover;
	border: 1px solid #ddd;
}

@keyframes slide-flow {
	0% {
		transform: translateX(0);
	}

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


/* ------------------------------------------------- */
@media (max-width: 900px) {
	.advertisement-point {
		grid-template-columns: 2, 1fr;
		justify-content: center;
	}

	.advertisement-works-title h4 {
		padding: 0 8%;
	}

	.advertisement-works-title img {
		width: 100%;
	}

	.point-box {
		margin-right: 0;
	}

	.advertisement-point .point-box:nth-child(1) {
		grid-column: 1/2;
		grid-row: 1/2;
	}

	.advertisement-point .point-box:nth-child(2) {
		grid-column: 2/3;
		grid-row: 2/3;
	}

	.advertisement-point .point-box:nth-child(3) {
		grid-column: 1/2;
		grid-row: 3/4;
	}

	.advertisement-point .point-box:nth-child(4) {
		grid-column: 2/3;
		grid-row: 4/5;
	}

	.advertisement-point .point-box:nth-child(5) {
		grid-column: 1/2;
		grid-row: 5/6;
	}

	.advertisement-point .point-box:nth-child(6) {
		grid-column: 2/3;
		grid-row: 6/7;
	}

	.advertisement-about {
		flex-direction: column;
		align-items: stretch;
	}

	.slide-container {
		width: 100%;
		margin-left: 0;
		margin-bottom: 32px;
	}

	.advertisement-info {
		width: 70%;
		margin: 0;
		padding: 0 8%;
	}
}

@media (max-width: 600px) {
	.advertisement-works-title img {
		width: 100%;
	}

	.advertisement-about {
		padding-right: 0;
	}

	.advertisement-info {
		width: 100%;
		margin: 0;
		padding: 0 8%;
	}
}



/* ギャラリーページ------------------------------------- */
.gallery-nav ul {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 64px;
	gap: 16px;
}

.gallery-nav li {
	min-width: 80px;
	width: 16%;
	font-size: 1.4rem;
	border: solid 1px;
	padding: 4px 4px;
	text-align: center;
}

.gallery-body img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.layout-01 {
	display: grid;
	gap: 16px;
	/* grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); */
	grid-template-columns: 1fr 1fr 1fr;
	margin-bottom: 16px;
}

.layout-01 img:nth-child(1) {
	grid-column: 1/3;
	grid-row: 1/3;
}

.layout-01 img:nth-child(2) {
	grid-column: 3/4;
	grid-row: 1/2;
}

.layout-01 img:nth-child(3) {
	grid-column: 3/4;
	grid-row: 2/4;
}

.layout-01 img:nth-child(4) {
	grid-column: 1/2;
	grid-row: 3/4;
}

.layout-01 img:nth-child(5) {
	grid-column: 2/3;
	grid-row: 3/4;
}

.layout-01 img:nth-child(6) {
	grid-column: 1/2;
	grid-row: 4/6;
}

.layout-01 img:nth-child(7) {
	grid-column: 2/4;
	grid-row: 4/6;
}

.layout-01 img:nth-child(8) {
	grid-column: 1/2;
	grid-row: 6/7;
}

.layout-01 img:nth-child(9) {
	grid-column: 2/3;
	grid-row: 6/7;
}

.layout-01 img:nth-child(10) {
	grid-column: 3/4;
	grid-row: 6/8;
}

.layout-01 img:nth-child(11) {
	grid-column: 1/2;
	grid-row: 7/9;
}

.layout-01 img:nth-child(12) {
	grid-column: 2/3;
	grid-row: 7/8;
}

.layout-01 img:nth-child(13) {
	grid-column: 2/3;
	grid-row: 8/9;
}

.layout-01 img:nth-child(14) {
	grid-column: 3/4;
	grid-row: 8/9;
}

.layout-01 img:nth-child(15) {
	grid-column: 1/2;
	grid-row: 9/10;
}

.layout-01 img:nth-child(16) {
	grid-column: 2/3;
	grid-row: 9/11;
}

.layout-01 img:nth-child(17) {
	grid-column: 3/4;
	grid-row: 9/11;
}

.layout-01 img:nth-child(18) {
	grid-column: 1/2;
	grid-row: 10/11;
}

.accordion-gallery {
	max-width: 1100px;
	margin-bottom: 240px;
	display: flex;
	margin-top: -30px;
}

.accordion-gallery summary {
	margin: 0 auto;
	text-align: center;
	cursor: pointer;
	font-size: 1.8rem;
	font-weight: normal;
	letter-spacing: 0.05em;
	background-color: #3B4043;
	display: inline-block;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	line-height: 80px;
	color: #ffffffdb;
	z-index: 10;
}

.accordion-gallery summary:hover {
	opacity: 0.9;
}

.accordion-gallery[open] .layout-01 {
	animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
		/* 透明 */
		transform: translateY(20px);
		/* 上から表示 */
	}

	100% {
		opacity: 1;
		transform: none;
	}
}

.layout-01:last-child {
	margin-top: 32px;
	margin-bottom: 240px;
}

/* ギャラリーレスポンシブ------------------------------------- */
@media (max-width: 600px) {
	.layout-01 {
		gap: 8px;
		grid-template-columns: 1fr 1fr;
		margin-bottom: 8px;
	}

	.layout-01 img:nth-child(1) {
		grid-column: 1/3;
		grid-row: 1/3;
	}

	.layout-01 img:nth-child(2) {
		grid-column: 2/3;
		grid-row: 5/6;
	}

	.layout-01 img:nth-child(3) {
		grid-column: 2/3;
		grid-row: 3/5;
	}

	.layout-01 img:nth-child(4) {
		grid-column: 1/2;
		grid-row: 6/7;
	}

	.layout-01 img:nth-child(5) {
		grid-column: 1/2;
		grid-row: 3/4;
	}

	.layout-01 img:nth-child(6) {
		grid-column: 1/2;
		grid-row: 4/6;
	}

	.layout-01 img:nth-child(7) {
		grid-column: 1/3;
		grid-row: 7/9;
	}

	.layout-01 img:nth-child(8) {
		grid-column: 1/2;
		grid-row: 9/10;
	}

	.layout-01 img:nth-child(9) {
		grid-column: 2/3;
		grid-row: 6/7;
	}

	.layout-01 img:nth-child(10) {
		grid-column: 2/3;
		grid-row: 11/13;
	}

	.layout-01 img:nth-child(11) {
		grid-column: 1/2;
		grid-row: 10/12;
	}

	.layout-01 img:nth-child(12) {
		grid-column: 2/3;
		grid-row: 10/11;
	}

	.layout-01 img:nth-child(13) {
		grid-column: 2/3;
		grid-row: 9/10;
	}

	.layout-01 img:nth-child(14) {
		grid-column: 1/2;
		grid-row: 12/13;
	}

	.layout-01 img:nth-child(15) {
		grid-column: 1/2;
		grid-row: 13/14;
	}

	.layout-01 img:nth-child(16) {
		grid-column: 1/2;
		grid-row: 14/16;
	}

	.layout-01 img:nth-child(17) {
		grid-column: 2/3;
		grid-row: 14/16;
	}

	.layout-01 img:nth-child(18) {
		grid-column: 2/3;
		grid-row: 13/14;
	}
}


/* 広告撮影ギャラリーページ------------------------------------- */
.advertisement-gallery-body {
	margin-bottom: 480px;
}

.advertisement-layout img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.advertisement-layout {
	display: grid;
	gap: 16px;
	grid-template-columns: 1fr 1fr 1fr;
	margin-bottom: 16px;
}

.advertisement-layout img:nth-child(1) {
	grid-column: 1/3;
	grid-row: 1/4;
}

.advertisement-layout img:nth-child(2) {
	grid-column: 3/4;
	grid-row: 1/2;
}

.advertisement-layout img:nth-child(3) {
	grid-column: 3/4;
	grid-row: 2/4;
}

.advertisement-layout img:nth-child(4) {
	grid-column: 1/2;
	grid-row: 4/5;
}

.advertisement-layout img:nth-child(5) {
	grid-column: 2/4;
	grid-row: 4/6;
}

.advertisement-layout img:nth-child(6) {
	grid-column: 1/2;
	grid-row: 5/6;
}

.advertisement-layout img:nth-child(7) {
	grid-column: 1/3;
	grid-row: 6/8;
}

.advertisement-layout img:nth-child(8) {
	grid-column: 3/4;
	grid-row: 6/8;
}

.advertisement-layout img:nth-child(9) {
	grid-column: 1/2;
	grid-row: 8/10;
}

.advertisement-layout img:nth-child(10) {
	grid-column: 2/3;
	grid-row: 8/10;
}

.advertisement-layout img:nth-child(11) {
	grid-column: 3/4;
	grid-row: 8/9;
}

.advertisement-layout img:nth-child(12) {
	grid-column: 3/4;
	grid-row: 9/10;
}

.advertisement-layout img:nth-child(13) {
	grid-column: 1/3;
	grid-row: 10/12;
}

.advertisement-layout img:nth-child(14) {
	grid-column: 3/4;
	grid-row: 10/12;
}

.advertisement-layout img:nth-child(15) {
	grid-column: 1/2;
	grid-row: 12/14;
}

.advertisement-layout img:nth-child(16) {
	grid-column: 2/3;
	grid-row: 12/14;
}

.advertisement-layout img:nth-child(17) {
	grid-column: 3/4;
	grid-row: 12/13;
}

.advertisement-layout img:nth-child(18) {
	grid-column: 3/4;
	grid-row: 13/14;
}

.advertisement-layout img:nth-child(19) {
	grid-column: 1/2;
	grid-row: 14/15;
}

.advertisement-layout img:nth-child(20) {
	grid-column: 1/2;
	grid-row: 15/16;
}

.advertisement-layout img:nth-child(21) {
	grid-column: 2/4;
	grid-row: 14/16;
}

.advertisement-layout img:nth-child(22) {
	grid-column: 1/4;
	grid-row: 16/18;
}

.pc {
	display: block !important;
}

.sp {
	display: none !important;
}

/* 広告撮影ギャラリーレスポンシブ------------------------------------- */
@media (max-width: 600px) {
	.advertisement-layout {
		gap: 8px;
		grid-template-columns: 1fr 1fr;
		margin-bottom: 8px;
	}

	.advertisement-gallery-body img {
		width: 100%;
		height: 100%;
		overflow: hidden;
	}

	.advertisement-layout img:nth-child(1) {
		grid-column: 1/3;
		grid-row: 1/4;
	}

	.advertisement-layout img:nth-child(2) {
		grid-column: 1/2;
		grid-row: 5/6;
	}

	.advertisement-layout img:nth-child(3) {
		grid-column: 2/3;
		grid-row: 4/6;
	}

	.advertisement-layout img:nth-child(4) {
		grid-column: 1/2;
		grid-row: 4/5;
	}

	.advertisement-layout img:nth-child(5) {
		grid-column: 1/3;
		grid-row: 6/8;
	}

	.advertisement-layout img:nth-child(6) {
		grid-column: 2/3;
		grid-row: 8/9;
	}

	.advertisement-layout img:nth-child(7) {
		grid-column: 1/3;
		grid-row: 10/12;
	}

	.advertisement-layout img:nth-child(8) {
		grid-column: 1/2;
		grid-row: 8/10;
	}

	.advertisement-layout img:nth-child(9) {
		grid-column: 1/2;
		grid-row: 12/14;
	}

	.advertisement-layout img:nth-child(10) {
		grid-column: 2/3;
		grid-row: 13/15;
	}

	.advertisement-layout img:nth-child(11) {
		grid-column: 2/3;
		grid-row: 9/10;
	}

	.advertisement-layout img:nth-child(12) {
		grid-column: 2/3;
		grid-row: 12/13;
	}

	.advertisement-layout img:nth-child(13) {
		grid-column: 1/3;
		grid-row: 15/17;
	}

	.advertisement-layout img:nth-child(14) {
		grid-column: 2/3;
		grid-row: 22/24;
	}

	.advertisement-layout img:nth-child(15) {
		grid-column: 2/3;
		grid-row: 17/19;
	}

	.advertisement-layout img:nth-child(16) {
		grid-column: 1/2;
		grid-row: 21/23;
	}

	.advertisement-layout img:nth-child(17) {
		grid-column: 1/2;
		grid-row: 14/15;
	}

	.advertisement-layout img:nth-child(18) {
		grid-column: 1/2;
		grid-row: 17/18;
	}

	.advertisement-layout img:nth-child(19) {
		grid-column: 1/2;
		grid-row: 18/19;
	}

	.advertisement-layout img:nth-child(20) {
		grid-column: 2/3;
		grid-row: 21/22;
	}

	.advertisement-layout img:nth-child(21) {
		grid-column: 1/3;
		grid-row: 19/21;
	}

	.advertisement-layout img:nth-child(23) {
		grid-column: 1/2;
		grid-row: 23/24;
	}

	.pc {
		display: none !important;
	}

	.sp {
		display: block !important;
	}
}

/* ブランディングページ------------------------------------- */
.slider-item {
	position: absolute;
	inset: 0;
	opacity: 0;
	z-index: 0;
	animation: sliderAnime 21s linear infinite 0s;
}

.slider-item:nth-child(2) {
	animation-delay: 7s;
}

.slider-item:nth-child(3) {
	animation-delay: 14s;
}

.slider-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@keyframes sliderAnime {
	0% {
		opacity: 0;
		/* animation-timing-function: ease-in; */
		transform: scale(1.2);
	}

	8% {
		opacity: 1;
		/* animation-timing-function: ease-out; */
	}

	20% {
		opacity: 1;
		transform: scale(1.1);
	}

	40%,
	100% {
		opacity: 0;
		transform: scale(1);
	}
}

.main-ph {
	position: relative;
	top: -120px;
	/* height: calc(100vh - 120px); */
	overflow: hidden;
	z-index: -1;
	margin-right: 0;
	margin-left: 18%;
	margin-bottom: 296px;
	display: flex;
	height: 100vh;
	background-color: white;
}

.main-ph img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* margin-top: -120px; */
}

.branding-service {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 160px;
}

.branding-text {
	width: 58%;
}

.branding-text h3 {
	font-size: 2.6rem;
	letter-spacing: 0.1em;
	margin-bottom: 24px;
	font-weight: normal;
}

.branding-pic {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 40vh;
}

.circle01 {
	width: 116px;
	height: 116px;
	border-radius: 50%;
	border: solid 2px #fff;
	text-align: center;
	display: flex;
	/* フレックスボックスを使用 */
	justify-content: center;
	/* 水平方向に中央揃え */
	align-items: center;
	/* 垂直方向に中央揃え */
	text-align: center;
	/* テキストの中央揃え */
	color: #3b4043d5;
	background-color: #fff;
	background-image: url("https://www.transparenttextures.com/patterns/grey-jean.png");
	background-repeat: repeat;
	transition: all 0.3s ease;
	margin: 0 5px;
	font-size: 1.2rem;
	letter-spacing: 0.08em;
}

.branding-point {
	width: 100%;
	position: relative;
}

.line-over {
	width: 100%;
	display: flex;
	padding-right: 4%;
	padding-left: 8%;
}

.line-box-over {
	display: flex;
	width: 30%;
	border-left: 1px solid #A0A0A0;
	padding-left: 2%;
	padding-bottom: 48px;
	gap: 4px;
}

.line-box-over>p:first-child,
.line-box-under>p:first-child {
	margin-top: -3px;
}

.line-box-under {
	display: flex;
	width: 30%;
	border-left: 1px solid #A0A0A0;
	padding-left: 2%;
	padding-top: 48px;
	gap: 4px;
}

.box-text p,
.box-text p {
	font-size: 1.8rem;
	letter-spacing: 0.02em;
	line-height: 1;
	color: #707070;
	margin-bottom: 8px;
}

.box-text p:nth-child(2),
.box-text p:nth-child(2) {
	font-size: 1.2rem;
	letter-spacing: 0.02em;
	color: #707070;
}

.line-center {
	border: solid 1px #A0A0A0;
}

.branding-point::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto 0;
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #A0A0A0;
}

.branding-point::after {
	content: "";
	position: absolute;
	top: 47%;
	right: 0%;
	display: inline-block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #A0A0A0;
}

.line-under {
	width: 100%;
	display: flex;
	justify-content: flex-end;
	padding: 0 4%;
	padding-left: 6%;
}

/* .branding-pic{
	width: 30%;
} */

.branding-works {
	margin-top: 240px;
	margin-bottom: 400px;
}

.branding-works h4 {
	font-size: 2.6rem;
	letter-spacing: 0.05em;
	margin-bottom: 24px;
}

.works-box {
	display: grid;
	gap: 48px;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.works-item {
	display: flex;
	flex-direction: column;
	margin-bottom: 64px;
}

.works-item h5 {
	margin-top: 24px;
	margin-bottom: 8px;
	font-size: 1.6rem;
	font-weight: 500;
}

.works-item p {
	font-size: 1.6rem;
	letter-spacing: 0.05em;
}

.works-item a {
	display: block;
	transition: all .3s ease-in-out;
	position: relative;
}

.works-item a::before {
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	box-shadow: inset 0 0 #AC9436, inset 0 0 #AC9436, inset 0 0 #AC9436, inset 0 0 #AC9436;
	transition: all .3s ease-in-out;
	display: block;
	content: "";
}

.works-item img {
	width: 100%;
	vertical-align: middle;
}

.works-item a:hover {
	opacity: 0.8;
}

.works-item a:hover::before {
	box-shadow: inset 6px 0 #AC9436, inset 0 6px #AC9436, inset -6px 0 #AC9436, inset 0 -6px #AC9436;
	opacity: 0.7;
}

.branding-button {
	display: block;
	text-align: center;
	margin-bottom: 320px;
}

.category-button.slide-hover {
	background: #fff;
	color: #3B4043;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.list-button.slide-hover {
	color: #3B4043;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.category-button.slide-hover::after,
.list-button.slide-hover::after {
	background: #AC9436;
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	width: 100%;
	height: 100%;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: .6s cubic-bezier(0.45, 0, 0.55, 1);
	z-index: -1;
}

.category-button.slide-hover:hover,
.list-button.slide-hover:hover {
	color: #fff;
}

.category-button.slide-hover:hover::after,
.list-button.slide-hover:hover::after {
	transform: scale(1, 1);
}

.slide-hover:hover {
	border: solid 1px #AC9436;
}

@media (max-width: 900px) {
	.main-ph {
		margin-left: 8%;
	}

	.branding-service {
		flex-direction: column;
		align-items: center;
		width: 100%;
	}

	.branding-text,
	.branding-pic {
		width: 80%;
	}

	.branding-pic {
		text-align: center;
		margin-top: 240px;
	}

	.branding-text h3 {
		font-size: 2rem;
		letter-spacing: 0.05em;
	}
}

@media (max-width: 600px) {
	.main-ph {
		margin-left: 0;
	}

	.branding-point {
		display: flex;
		justify-content: center;
		height: 700px;
	}

	.line-box-over>p:first-child,
	.line-box-under>p:first-child {
		margin-top: 0px;
	}


	.line-over,
	.line-under {
		display: flex;
		flex-direction: column;
	}

	.line-over {
		width: 40%;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		padding: 0;
		padding-top: 15%;
	}

	.line-under {
		width: 40%;
		display: flex;
		flex-direction: column;
		align-items: flex-end;
		padding: 0;
		padding-top: 30%;
	}

	.line-box-over {
		width: 100%;
		height: 30%;
		border-left: none;
		border-top: 1px solid #A0A0A0;
		padding-left: 0;
		padding-right: 0;
		padding-top: 16px;
	}

	.line-box-under {
		width: 100%;
		height: 30%;
		border-left: none;
		border-top: 1px solid #A0A0A0;
		padding-left: 8px;
		padding-top: 16px;
	}

	.line-box-over p,
	.line-box-under p {
		line-height: 1.3;
	}

	.branding-point::before {
		content: "";
		position: absolute;
		top: 100%;
		bottom: 0;
		margin: auto 0;
		display: inline-block;
		width: 10px;
		height: 10px;
		border-radius: 50%;
		background-color: #A0A0A0;
	}

	.branding-point::after {
		content: "";
		position: absolute;
		top: 0;
		right: 49%;
		display: inline-block;
		width: 10px;
		height: 10px;
		border-radius: 50%;
		background-color: #A0A0A0;
	}

	@media (max-width: 600px) {

		.branding-text,
		.branding-pic {
			width: 100%;
			margin-top: 0px;
		}

		.circle01 {
			width: 100px;
			height: 100px;
		}
	}
}

/* デザインページ------------------------------------- */
.design-service {
	display: flex;
}

.design-text {
	width: 50%;
}

.design-text h3 {
	font-size: 2.6rem;
	letter-spacing: 0.1em;
	margin-bottom: 24px;
	font-weight: normal;
}

.design-circle {
	width: 90%;
	max-width: 380px;
	background-image: url(../images/design_circle.png);
	background-size: contain;
	background-position: top left;
	margin: 0 auto;
	position: sticky;
	z-index: 100;
	bottom: 30px;
	transition: opacity 0.3s ease;
}

.design-circle img {
	width: 90%;
	max-width: 380px;
}

@keyframes rotation1 {
	0% {
		transform: rotate(0);
	}

	100% {
		transform: rotate(360deg);
	}
}

#box1 {
	animation: 50s linear infinite rotation1;
}

.wrap {
	display: flex;
	gap: 4px;
	width: 100vw;
	margin: 0 calc(50% - 50vw);
	margin-bottom: 240px;
	overflow: hidden;
}

.slideshow {
	display: flex;
	gap: 4px;
	animation: loop-slide 30s infinite linear 1s both;
}

.content {
	width: 400px;
	height: 400px;
}

@keyframes loop-slide {
	from {
		transform: translateX(0);
	}

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

.design-link-text h5 {
	font-size: 2.8rem;
	font-weight: normal;
	line-height: 1.2;
	letter-spacing: 0.15em;
	margin-top: 8px;
	margin-bottom: 24px;
	color: #fff;
}

.design-link-text p {
	font-size: 1.8rem;
	letter-spacing: 0.1em;
	color: #fff;
}

.design-box {
	height: 320px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-image: url(../images/maru_PC.jpg);
	background-size: cover;
	background-position: center;
	padding: 0 48px;
}

.advertisement-box {
	height: 320px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-image: url(../images/広告撮影_cover_toB.png);
	background-size: cover;
	background-position: center;
	padding: 0 48px;
	margin-bottom: 312px;
}

@media (max-width: 900px) {

	.design-box,
	.advertisement-box {
		padding: 0 16px;
	}

	.design-circle {
		width: 45%;
	}

}

@media (max-width: 600px) {
	.design-service {
		flex-direction: column-reverse;
		width: 80%;
	}

	.design-text {
		width: 100%;
		margin-top: 40px;
	}

	.design-circle {
		width: 50%;
	}

	.design-text h3 {
		font-size: 2.2rem;
	}

	.main-ph {
		margin-bottom: 96px;
	}

}

@media (max-width: 450px) {
	.design-circle {
		width: 60%;
	}
}


/* リクルートページ------------------------------------- */
.recruit-page {
	background-color: #f0f2f2;
	background-image: url("https://www.transparenttextures.com/patterns/grey-jean.png");
	background-repeat: repeat;
	padding-top: 120px;
	padding-bottom: 184px;
}

.recruit-text {
	font-size: 2.6rem;
	letter-spacing: 0.05em;
	display: block;
	text-align: center;
	margin-bottom: 56px;
}

.recruit-pic {
	margin: 0 calc(50% - 50vw);
	width: 100vw;
}

.philosophy {
	display: flex;
	justify-content: space-between;
	margin-top: 112px;
	margin-bottom: 224px;
}

.philosophy-title {
	width: 20%;
}

.philosophy-title p {
	font-size: 2.4rem;
	letter-spacing: 0.05em;
}

.philosophy-text {
	width: 65%;
}

.philosophy-box :nth-child(2) {
	font-size: 2.6rem;
}

.philosophy-box {
	margin-bottom: 136px;
}

.philosophy-sub,
.value-sub {
	font-size: 2.6rem;
	color: #AC9436;
}

.philosophy-box .lead {
	margin-top: 40px;
}

.value-box {
	margin-bottom: 64px;
	border-bottom: solid 1px #B2B4B5;
}

.value-box .value-sub {
	margin-bottom: 32px;
}

.value-main {
	font-size: 2.4rem;
	letter-spacing: 0.05em;
}

.value-box .lead {
	margin-top: 16px;
	margin-bottom: 48px;
}

.wantedlly-box {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	height: 240px;
	background-color: #ffffff90;
	padding: 48px;
}

.wantedlly-text {
	width: 40%;
	letter-spacing: 0.05em;
	text-align: justify;
}

.wantedlly-text p {
	font-size: 2rem;
	margin-bottom: 16px;
}

.wantedlly-text .wantedlly-lead {
	font-size: 1.5rem;
	line-height: 1.6;
}

.wantedlly-link {
	width: 45%;
}

.wantedlly-box .wantedlly-link a {
	height: 60px;
	border: solid 1px #3b4043;
	color: #3b4043;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
	max-width: 480px;
	padding: 10px 25px;
	transition: 0.5s ease-in-out;
	letter-spacing: 0.4em;
}

.wantedlly-link a:after {
	content: "";
	position: absolute;
	top: 50%;
	bottom: 0;
	right: 2rem;
	font-size: 90%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: right 0.5s;
	width: 6px;
	height: 6px;
	border-top: solid 2px currentColor;
	border-right: solid 2px currentColor;
	transform: translateY(-50%) rotate(45deg);
	color: #3b4043;

}

.wantedlly-link a:hover {
	background: #3b4043d5;
	color: #ffffffd5;
	border: solid 1px #3b4043d5;
}

.wantedlly-link a:hover:after {
	right: 1.4rem;
	color: #ffffffd5;
}

.form-page {
	background-color: #fff;
	padding-top: 280px;
}

.job {
	margin-bottom: 188px;
}

.job-title {
	font-size: 1.8rem;
	margin-bottom: 32px;
}

.job-title :nth-child(3) {
	font-size: 1.5rem;
}

.job-main {
	font-size: 2.6rem;
}

.recruit-entry {
	margin-bottom: 360px;
}

.entry-box {
	height: 361px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background-image: url(../images/230228_PG_0021-2_kakou.jpg);
	background-size: cover;
	background-position: center;
	justify-content: center;
	align-items: center;
}

.entry-text {
	font-size: 3rem;
	color: #ffffffbc;
	letter-spacing: 0.2em;
}

@media (max-width: 900px) {
	.recruit-page {
		padding-top: 96px;
	}

	.recruit-pic img {
		width: 100vw;
		height: 400px;
		object-fit: cover;
	}

	.philosophy {
		flex-direction: column;
	}

	.philosophy-title,
	.philosophy-text,
	.philosophy-box {
		width: 100%;
	}

	.philosophy-title {
		margin-bottom: 32px;
	}

	.wantedlly-box {
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
		padding: 16px 24px;
	}

	.wantedlly-text,
	.wantedlly-link {
		width: 100%;
	}

	.philosophy-box :nth-child(2) {
		font-size: 2.4rem;
	}

	.value-main {
		font-size: 2rem;
		letter-spacing: 0.05em;
	}
}

.entry-page {
	background-color: #f0f2f2;
	background-image: url("https://www.transparenttextures.com/patterns/grey-jean.png");
	background-repeat: repeat;
	padding-top: 120px;
	padding-bottom: 184px;
}

.entry-pic {
	max-width: 1100px;
	margin: 0 auto;
}

.entry-form-top {
	display: flex;
	flex-flow: column;
	width: 80%;
	margin-top: 192px;
	margin: 192px auto 0;
}

.entry-form-text h2 {
	font-size: 3rem;
	font-weight: normal;
	line-height: 1.2;
	letter-spacing: 0.1em;
	margin-top: 8px;
	margin-bottom: 16px;
}

.entry-form-text a {
	text-decoration: underline;
}

summary {
	/* display: list-item;以外を指定してデフォルトの三角形アイコンを消します */
	display: block;
}

summary::-webkit-details-marker {
	/* Safariで表示されるデフォルトの三角形アイコンを消します */
	display: none;
}

.polisy {
	width: 100%;
	margin-top: 8px;
	font-size: 1.4rem;
}

.polisy summary {
	cursor: pointer;
	width: auto;
}

.polisy-box {
	width: 100%;
	background-color: #fff;
	padding: 4%;
	margin-top: 8px;
}

.polisy-box :last-child {
	margin-top: 24px;
}

.polisy-text {
	margin-top: 24px;
}

.polisy-text h4 {
	font-size: 1.6rem;
	font-weight: normal;
	color: #AC9436;
	margin: 8px auto;
}

.polisy-sub {
	margin-top: 8px;
}

.polisy-sub h5 {
	font-size: 1.4rem;
	font-weight: medium;
	margin: 8px auto;
}

.polisy span {
	text-decoration: underline;
}

.polisy-text p,
.polisy-sub p {
	text-align: justify;
}

.entry-form-text a,
a:hover,
a:visited {
	color: inherit;
}

.entry-form-item {
	width: 100%;
	display: flex;
	flex-flow: column;
	margin-top: 40px;
}

.entry-form-item div {
	padding-bottom: 20px;
}

label {
	display: block;
	padding: 10px 0;
}

.entry-form-item input,
.entry-form-item textarea {
	border-radius: 6px;
	/* iOS対応 */
	background-color: rgb(255, 255, 255, 0.5);
	padding: 8px 8px;
}

input {
	width: 100%;
}

input::placeholder {
	color: rgba(0, 0, 0, 0.2);
	font-size: 1.4rem;
}

textarea {
	width: 100%;
	height: 10em;
}

input:focus,
textarea:focus {
	background-color: rgb(255, 255, 255);
}

input[type='submit'] {
	display: block;
	background-color: #3b4043;
	color: #fff;
	width: 7em;
	margin: 20px 0;
	border: none;
	margin: 0 auto;
}

input[type='submit']:hover {
	display: block;
	background-color: #3b4043;
	margin: 0 auto;
}

.required {
	margin-left: 16px;
	padding: 4px;
	background-color: #00000060;
	border-radius: 4px;
}

.entry-form-item span {
	color: #fff;
	font-size: 1.4rem;
}

@media (max-width: 600px) {
	.entry-form-top {
		margin: 192px 10% 0 auto;
	}
}


/* チェックボックス-------------------------------------------- */
.checknox-wrap {
	display: block;
	position: relative;
	padding-top: 0;
	padding-left: 30px;
	/* margin-bottom: 12px; */
	cursor: pointer;
	font-size: 14px;
	user-select: none;
}

.checknox-wrap {
	font-size: 1.6rem;
}

/* デフォルトチェックボックス非表示 */
.checknox-wrap input {
	display: none;
}

/* チェックボックスのスタイル */
.checknox-wrap .checkmark {
	position: absolute;
	top: 4px;
	left: 0;
	height: 16px;
	width: 16px;
	background: #ffffffd5;
	box-sizing: border-box;
	border-radius: 2px;
}

/* チェック時のスタイル */
.checknox-wrap input:checked+.checkmark {
	background-color: #AC9436;
}

/* チェック時 チェックマーク表示 */
.checknox-wrap input:checked+.checkmark:after {
	display: block;
}





/* チェックボックス-------------------------------------------- */
.wpcf7-list-item {
	display: block;
	position: relative;
	padding-top: 0;
	padding-left: 30px;
	user-select: none;
}

.wpcf7-list-item label {
	padding-bottom: 0;
}

.wpcf7-list-item span {
	font-size: 1.6rem !important;
	color: black !important;
	cursor: pointer;
}

.wpcf7-not-valid-tip {
	color: rgb(177, 28, 28) !important;
}

/* チェックボックスのスタイル */
.wpcf7-list-item input[type=checkbox] {
	position: absolute;
	top: 14px;
	left: 0;
	height: 16px;
	width: 16px;
	background: #ffffffd5;
	box-sizing: border-box;
	border-radius: 2px;
	cursor: pointer;
	border: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.screen-reader-response {
	display: none;
}

.wpcf7-response-output {
	color: rgb(177, 28, 28);
	margin-bottom: 4rem !important;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
	border-color: #AC9436;
}

/* チェック時のスタイル */
.wpcf7-list-item input:checked {
	background-color: #AC9436 !important;
}





/* -------------------------------------------- */

@media (max-width: 900px) {
	.entry-page {
		padding-top: 96px;
	}
}


/* アコーディオン recruit-------------------------------------------- */
.accordion-003 {
	max-width: 1100px;
	margin-bottom: 7px;
	border-bottom: 1px solid #3B4043;
	padding: 24px;
	padding-bottom: 36px;
}

.accordion-003 summary {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	padding: 1em 2em;
	color: #3B4043;
	cursor: pointer;
	font-size: 2rem;
	font-weight: normal;
	margin-bottom: 8px;
}

.accordion-003 summary::-webkit-details-marker {
	display: none;
}

.accordion-003 summary::before,
.accordion-003 summary::after {
	width: 1px;
	height: .9em;
	border-radius: 5px;
	background-color: #3B4043;
	content: '';
}

.accordion-003 summary::before {
	position: absolute;
	right: 2em;
	rotate: 90deg;
}

.accordion-003 summary::after {
	transition: rotate .3s;
}

.accordion-003[open] summary::after {
	rotate: 90deg;
}

.accordion-003 p {
	transform: translateY(-10px);
	opacity: 0;
	margin: 0;
	padding: .3em 2em 1.5em;
	color: #333333;
	transition: transform .5s, opacity .5s;
	font-size: 1.5rem;
	line-height: 2.4;
}

.accordion-003 p:first-child {
	margin-bottom: 16px;
	line-height: 1.6;
	padding-left: 3em;
}

.accordion-003[open] p {
	transform: none;
	opacity: 1;
}

.accordion-003 .about-button {
	padding-left: 2em;
}


@media (max-width: 900px) {
	.accordion-003 {
		padding: 16px 0;
	}

	.accordion-003 summary {
		padding: 1em 2em 1em 1em;
		font-size: 1.8rem;
	}
}


/* リクルート入力フォーム------------------------------------- */
.recruit-form {
	background-color: #f0f2f2;
	padding: 48px;
}

.form-box h2 {
	font-size: 3rem;
	font-weight: normal;
	letter-spacing: 0.1em;
	margin-top: 8px;
	margin-bottom: 8px;
}

.form-item p {
	font-size: 1.6rem;
	margin-bottom: 96px;
}


/* footer------------------------------------- */
footer {
	background-color: #3B4043;
	color: #fff;
}

.page-footer {
	display: flex;
	justify-content: space-between;
	padding-top: 96px;
	padding-bottom: 120px;
}

.footer-logo {
	width: 15%;
	margin-top: -20px;
}

.footer-list {
	width: 25%;
	display: flex;
	flex-direction: column;
	/* justify-content: space-between; */
}

.footer-office {
	margin-bottom: 32px;
}

.footer-studio h5,
.footer-office h5 {
	font-family: "Marcellus", system-ui;
	letter-spacing: 0.1em;
	font-size: 2.8rem;
	margin-bottom: 8px;
	letter-spacing: 0.05em;
}

.footer-about {
	width: 55%;
}

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

.footer-office p {
	font-size: 1.5rem;
	line-height: 1.4;
	margin-bottom: 8px;
	letter-spacing: 0.1em;
}

.contact,
.form {
	height: auto;
}

.border {
	margin: 32px auto;
	border-bottom: solid 1px #fff;
}

.contact-main {
	font-size: 2.8rem;
	letter-spacing: 0.1em;
}

.contact-text p {
	font-size: 1.4rem;
}

.form-text p {
	font-size: 1.4rem;
}

.phone {
	font-size: 2.6rem;
	font-weight: bold;
	letter-spacing: 0.1em;
	margin-bottom: 8px;
}

.form-text p:nth-of-type(3) {
	font-size: 1.2rem;
}

.sns-btn {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.sns-btn img {
	width: 16px;
	margin-right: 8px;
	margin-bottom: 4px;
}

.sns-btn li {
	height: auto;
}

.sns-btn li :hover {
	opacity: 0.5;
}

.sns-btn li span {
	font-size: 1.8rem;
}

@media (max-width: 900px) {
	.footer-logo {
		width: 40%;
		text-align: center;
		margin: 0 auto;
		margin-bottom: 24px;
	}

	.page-footer {
		flex-direction: column;
		align-items: center;
	}

	.footer-list {
		width: 100%;
		flex-direction: column;
		margin-bottom: 40px;
	}

	.footer-office {
		text-align: center;
	}

	.footer-studio {
		margin-bottom: 24px;
		text-align: center;
	}

	.sns-btn {
		flex-wrap: wrap;
		gap: 8px;
		justify-content: center;
	}

	.footer-about {
		width: 100%;
		align-items: center;
		text-align: center;
	}

	.contact {
		/* align-items: flex-start; */
		flex-direction: column;
	}

	.contact-text {
		margin-bottom: 16px;
	}

	.contact-link {
		width: 80%;
	}

	.footer-studio h5,
	.footer-office h5,
	.contact-main {
		font-size: 2.4rem;
	}

}
