@charset "UTF-8";

:root {
	--baseColor: #fffdf8;
	--primaryColor: #deacaa;
	--secondaryColor: #fff5ed;
	--textColor: #595851;
}

html,
body {
	overflow-x: hidden;
}

body {
	font-family: "Zen Maru Gothic", serif;
	font-weight: 500;
	font-style: normal;
	color: var(--textColor);
	line-height: 1.5;
}

.container {
	overflow: hidden;
	width: 100vw;
	background-color: var(--baseColor);
}

.pc {
	display: none;
}

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

p {
	font-size: 16px;
	line-height: 2.0;
	letter-spacing: 0.03em;
}

header {
	background-color: var(--baseColor);
	width: 100%;
	height: 55px;
	position: fixed;
	z-index: 998;
}

h1 {
	width: 100px;
}

.header-inner {
	padding: 15px;
	position: absolute;
	z-index: 998;
	width: 100%;
	display: flex;
	align-items: center;
}

.menu-trigger {
	width: 29px;
	height: 29px;
	position: fixed;
	z-index: 2;
	outline: none;
	top: 15px;
	right: 15px;
}

.menu-trigger span {
	position: absolute;
	left: 50%;
	width: 14.5px;
	height: 2px;
	background-color: var(--textColor);
	transform: translate(-50%, -50%);
	border-radius: 1px;
}

.menu-trigger span:nth-of-type(1) {
	top: 9px;
}

.menu-trigger span:nth-of-type(2) {
	top: 50%;
}

.menu-trigger span:nth-of-type(3) {
	bottom: 7px;
}

.menu-trigger.active span:nth-of-type(1) {
	top: 48%;
	transform: translate(-50%, -50%)rotate(-45deg);
}

.menu-trigger.active span:nth-of-type(2) {
	opacity: 0;
}

.menu-trigger.active span:nth-of-type(3) {
	bottom: 45%;
	transform: translate(-50%, -50%)rotate(45deg);
}

.menu-trigger,
.menu-trigger span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
}

#global-nav {
	display: none;
	width: 100vw;
	height: 100vh;
	background-color: var(--baseColor);
	margin: 0;
	padding-left: 50px;
	position: fixed;
	position: absolute;
	right: 0;
	top: 0;
	transform: translateX(100%);
	z-index: -1;
}

#global-nav.active {
	transform: translateX(0);
	display: block;
	z-index: 1;
	position: fixed;
}

#global-nav #sp-nav {
	padding-top: 100px;
}

#global-nav li {
	width: 100%;
	;
}

.nav-detail {
	font-size: 16px;
	margin-top: 5px;
	margin-left: 18px;
}

#global-nav li a {
	background: none;
}

#pc {
	display: none;
}

.nav-a {
	margin-bottom: 50px;
	font-family: "Alice", serif;
	font-weight: 400;
	font-style: normal;
	position: relative;
}

.nav-a::before {
	content: "";
	width: 8px;
	height: 8px;
	background-color: var(--primaryColor);
	display: block;
	border-radius: 100px;
	position: absolute;
	top: 6px;
	left: -13px;
}

#global-nav ul li:last-child .a-1 {
	background-color: var(--primaryColor);
	color: var(--baseColor);
	padding: 13px 34px;
	border-radius: 100px 0 0 100px;
	display: inline-block;
	width: auto;
	position: relative;
}

#global-nav ul li:last-child .a-1::after {
	content: '';
	width: 2px;
	height: 35px;
	background-color: var(--baseColor);
	position: absolute;
	display: block;
	right: -1px;
	top: 50%;
	transform: translateY(-50%);
	border-radius: 1px;
}

#global-nav ul li:last-child .a-2 {
	background-color: #aad4de;
	color: var(--baseColor);
	padding: 13px 34px;
	border-radius: 0 100px 100px 0;
	display: inline-block;
	width: auto;
	margin-left: -5.5px;
}

#global-nav ul li:last-child a {
	padding: 3px 30px;
}

.fix-btn {
	display: flex;
	position: fixed;
	z-index: 900;
	width: 100%;
	bottom: 0;
	font-size: 20px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s ease;
}

.active {
	opacity: 1;
	visibility: visible;
}

.fix-btn .a-1 {
	background-color: var(--primaryColor);
	color: var(--baseColor);
	width: 50vw;
	text-align: center;
	padding: 10px;
	display: block;
	font-size: 18px;
}

.fix-btn .left a:hover {
	transition: all 0.5s ease;
	opacity: 0.7;
}

.fix-btn .a-2 {
	background-color: #aad4de;
	color: var(--baseColor);
	width: 50vw;
	text-align: center;
	padding: 10px;
	display: block;
	font-size: 18px;
}

.fix-btn .a-2 a:hover {
	transition: all 0.5s ease;
	opacity: 0.7;
}

footer {
	padding-bottom: 47px;
}

#top {
	width: 92%;
	margin: 0 auto;
	padding-top: 25px;
	padding-bottom: 100px;
}

#top .item {
	margin-top: 75px;
}

#top .item .right {
	margin: -50px 0 0 auto;
}

#top .item .left {
	margin: -50px auto 0 0;
}

#top .item a {
	background-color: var(--secondaryColor);
	border-radius: 100px;
	width: 180px;
	height: 180px;
	display: block;
	position: relative;
	z-index: 800;
}

#top .item a:hover {
	opacity: 0.7;
}

#top .item a div {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 0;
	margin: 0;
	text-align: center;
	width: 120%;
}

#top .item a h2 {
	margin-bottom: 5px;
}

#top .item a p {
	position: relative;
	font-size: 14px;
}

#top .item a p::before {
	content: "";
	width: 8px;
	height: 8px;
	background-color: var(--primaryColor);
	display: block;
	border-radius: 100px;
	position: absolute;
	top: 11.5px;
	left: 60px;
}

#top .item a p::after {
	content: ">";
	width: 8px;
	height: 8px;
	display: block;
	position: absolute;
	top: 1.5px;
	right: 60px;
	font-size: 12px;
}

#faq {
	background-image: url(../images/bg.jpg);
	background-size: cover;
	padding-top: 100px;
	padding-bottom: 100px;
}

#faq .wrapper {
	width: 92%;
	margin: 0 auto;
}

#faq h2 {
	font-family: "Alice", serif;
	font-weight: 400;
	font-size: 30px;
	text-align: center;
	margin-bottom: 30px;
}

#faq h3 {
	text-align: center;
	font-size: 18px;
	margin-bottom: 30px;
	margin-top: 30px;
}

/* アコーディオン */
#faq .c-accordion__item {
	margin-bottom: 15px;
}

#faq .c-accordion__title {
	border-radius: 28px;
	background-color: var(--baseColor);
	position: relative;
	cursor: pointer;
	padding: 25px 40px 25px 25px;
	margin: 0 auto;
	font-size: 16px;
	text-align: left;
	display: flex;
}

#faq .c-accordion__title::before {
	content: "";
	position: absolute;
	top: 35px;
	right: 15px;
	width: 10px;
	height: 2px;
	transform: rotate(-45deg);
	background: var(--textColor);
	transition: all 0.3s ease-in-out;
}

#faq .c-accordion__title::after {
	content: "";
	position: absolute;
	top: 35px;
	right: 21px;
	width: 10px;
	height: 2px;
	background: var(--textColor);
	transition: all 0.3s ease-in-out;
	transform: rotate(45deg);
}

#faq .c-accordion__title span {
	font-family: "Alice", serif;
	font-weight: 400;
	font-size: 20px;
	padding-right: 10px;
	margin-right: 10px;
	margin-top: -5px;
	border-right: var(--textColor) 1px solid;
}

/* オープンした時 */
#faq .c-accordion__title.is-open {
	border-radius: 28px 28px 0 0;
}

#faq .c-accordion__title.is-open::before {
	transform: rotate(45deg);
}

#faq .c-accordion__title.is-open::after {
	transform: rotate(-45deg);
}

#faq .c-accordion__body {
	border-radius: 0 0 28px 28px;
	background-color: #f9f4ed;
	display: none;
	font-size: 14px;
	padding: 25px;
	padding-top: 0;
	margin: 0 auto;
}

#faq .c-accordion__body p {
	border-left: var(--textColor) 1px solid;
	margin-left: 27px;
	padding-left: 10px;
}

#faq .c-accordion__body::before {
	font-family: "Alice", serif;
	font-weight: 400;
	font-size: 20px;
	content: "A";
	position: relative;
	top: 35px;
	right: 21px;
	width: 20px;
	padding-left: 25px;
}

#faq .c-accordion__body.is-open {
	display: block;
}

.copy-right {
	text-align: center;
	background-color: var(--primaryColor);
	padding: 20px 0;
	color: var(--baseColor);
}

footer {
	padding-top: 50px;
}

footer .top {
	display: flex;
	justify-content: center;
	align-items: end;
	margin-bottom: 30px;
}

footer .logo {
	width: 150px;
	margin-right: 10px;
}

footer .icon {
	width: 20px;
	margin-bottom: 5px;
}

footer .icon:hover {
	opacity: 0.7;
}

#footer-nav {
	display: flex;
	justify-content: center;
}

#footer-nav ul {
	margin-bottom: 36px;
	font-size: 14px;
}

#footer-nav li {
	margin-bottom: 20px;
}

#footer-nav li:hover {
	opacity: 0.7;
}

#footer-nav li:first-child {
	margin-bottom: 34px;
}


#footer-nav .link::before {
	content: '';
	background-image: url(../images/icon.png);
	background-size: contain;
	background-repeat: no-repeat;
	width: 14px;
	height: 14px;
	display: block;
	position: relative;
	right: 20px;
	top: 16px;
}

small {
	font-size: 10px;
}


@media screen and (min-width: 1100px) {
	.pc {
		display: block;
	}

	.sp {
		display: none;
	}

	header {
		height: 100px;
	}

	.header-inner {
		padding: 25px 30px;
	}

	.menu-trigger {
		display: none;
		appearance: none;
		border: none;
		background: transparent;
	}

	#global-nav {
		display: block;
		width: auto;
		height: auto;
		transform: translate(0);
		padding: 0;
		margin: 0;
		background-color: transparent;
	}

	.nav-a::before {
		top: 11px;
	}

	#global-nav li {
		width: auto;
		margin-right: 30px;
	}

	#pc {
		display: flex;
		align-items: center;
		padding-top: 25px;
	}

	#pc .nav-a {
		font-size: 20px;
		display: block;
		text-decoration: none;
		white-space: nowrap;
		margin-right: 30px;
		padding-right: 16px;
		margin-bottom: 0;
	}

	#pc li a:hover {
		opacity: 0.5;
	}

	h1 {
		width: 200px;
	}

	#sp-nav {
		display: none;
	}

	.mv {
		margin-top: 100px;
	}

	#top {
		width: 70%;
		max-width: 960px;
		padding-top: 50px;
		padding-bottom: 150px;
	}

	#top .item a {
		width: 216px;
		height: 216px;
	}

	#top .item .right {
		margin: -170px 15% 0 auto;
	}

	#top .item .left {
		margin: -170px auto 0 15%;
	}

	#top .item {
		margin-top: 100px;
	}

	#top .item a p::before {
		left: 83px;
	}

	#top .item a p::after {
		right: 83px;
	}

	#faq {
		padding-top: 150px;
		padding-bottom: 120px;
	}

	#faq .wrapper {
		width: 78%;
	}

	#faq h2 {
		font-size: 60px;
	}

	#faq h3 {
		margin-top: 50px;
		margin-bottom: 50px;
		font-size: 25px;
	}

	#faq .c-accordion__item {
		margin-bottom: 30px;
	}

	#faq .c-accordion__title {
		font-size: 20px;
		padding: 25px 40px;
		align-items: center;
	}

	#faq .c-accordion__title span {
		font-size: 50px;
		margin-right: 42px;
		padding-right: 45px;
	}

	#faq .c-accordion__title::before {
		top: 58px;
		width: 13px;
		height: 2px;
		right: 24px;
	}

	#faq .c-accordion__title::after {
		top: 58px;
		width: 13px;
		height: 2px;
		right: 32px;
	}

	#faq .c-accordion__body {
		padding: 25px 40px;
		font-size: 20px;
		padding-top: 0;
	}

	#faq .c-accordion__body::before {
		font-size: 50px;
		top: 10px;
	}

	footer {
		padding-top: 100px;
	}

	.footer-inner {
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 78%;
		margin: 0 auto;
		max-width: 1000px;
		padding-bottom: 80px;
	}

	footer .logo {
		width: 315px;
	}

	footer .icon {
		width: 33px;
	}

	#footer-nav ul {
		display: flex;
		flex-wrap: wrap;
		margin-bottom: 0;
	}

	#footer-nav ul.sp {
		display: none;
	}

	#footer-nav ul li {
		width: 50%;
	}

	#footer-nav .link::before {
		width: 17px;
		top: 17.5px;
		right: 22px;
	}

	#footer-nav .link {
		margin-top: -15px;
	}

	.copy-right {
		padding: 40px 0;
	}

	#faq .c-accordion__body p {
		margin-left: 84px;
		padding-left: 42px;
		font-size: 20px;
		margin-top: -50px;
		padding-right: 5%;
	}
}

/* ABOUT */
.headimg {
	margin-top: 55px;
}

.headimg img {
	height: 100px;
	object-fit: cover;
}

.breadcrumb {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	font-size: 15px;
	width: 92%;
	margin: 50px auto 75px;
}

.breadcrumb li:not(:last-of-type)::after {
	content: "›";
	margin: 0 .6em;
	color: var(--textColor);
}

.pageAbout {
	background-image: url(../images/bg-02.png);
	background-size: cover;
}

.pageAbout section {
	width: 92%;
	margin: 0 auto;
}

.pageAbout section .item {
	margin-bottom: 100px;
}

.pageAbout section .item-2 {
	margin-bottom: 0;
	padding-bottom: 100px;
}

.pageAbout .section-img {
	margin-bottom: 25px;
}

.pageAbout h2 {
	font-family: "Shippori Mincho", serif;
	font-weight: 700;
	font-style: normal;
	font-size: 20px;
	text-align: center;
	margin-bottom: 25px;
}

.pageAbout section .item p {
	width: 90%;
	margin: 0 auto;
}

@media screen and (min-width: 1100px) {
	.headimg {
		margin-top: 101px;
	}

	.headimg img {
		height: auto;
	}

	.breadcrumb {
		width: 78%;
		margin-bottom: 100px;
		max-width: 1066px;
	}

	.pageAbout section {
		width: 78%;
	}

	.pageAbout section .item {
		margin-bottom: 100px;
	}

	.pageAbout .section-img {
		margin-bottom: 100px;
	}

	.pageAbout h2 {
		font-size: 70px;
		margin-bottom: 100px;
	}

	.pageAbout section .item p {
		width: 80%;
		margin: 0 auto;
		max-width: 800px;
		text-align: center;
	}
}

/* Work */
.pageWork h2 {
	font-family: "Shippori Mincho", serif;
	font-weight: 700;
	font-style: normal;
	font-size: 20px;
	text-align: center;
	margin-bottom: 100px;
}

.pageWork section .inner {
	width: 92%;
	margin: 0 auto;
}

.pageWork .support .inner {
	width: 70%;
	margin: 0 4% 0 auto;
	padding-top: 100px;
	padding-bottom: 122px;
}

.pageWork .support ul li {
	margin-bottom: 60px;
}

.pageWork .support ul li:first-child {
	margin-bottom: 0;
}

.pageWork .support ul li:last-child {
	margin-bottom: 150px;
}

.pageWork .support ul li:nth-of-type(2n+1) .wrapper {
	background-color: #ffe9e8;
}

.pageWork section .inner .heading {
	display: flex;
	justify-content: space-between;
	padding-bottom: 15px;
	margin-bottom: 25px;
	border-bottom: #deacaa 2px solid;
	align-items: end;
}

.pageWork section .inner .heading h3 {
	font-size: 22px;
}

.pageWork section .inner .heading p {
	font-size: 100px;
	line-height: 1;
	color: #fffdf8;
	font-family: "Alice", serif;
}

.pageWork .support .liimg {
	width: 50%;
	margin: -100px auto 0 4%;
}

.pageWork .section-img {
	margin-bottom: 25px;
}

.pageWork .support ul li:nth-of-type(2n) .heading p {
	color: #ffe9e8;
}

.pageWork .support ul li:nth-of-type(2n) .inner {
	width: 70%;
	margin: 0 auto 0 4%;
	padding-top: 0;
	padding-bottom: 122px;
}

.pageWork .support ul li:nth-of-type(2n) .liimg {
	width: 50%;
	margin: -130px 4% 0 auto;
}

.pageWork .support ul li:last-child .inner {
	margin-top: -140px;
}

.pageWork .flow {
	width: 92%;
	margin: 0 auto;
}

.pageWork .flow h3 {
	font-size: 24px;
	margin-bottom: 10px;
}

.pageWork .flow .top-p {
	font-size: 12px;
	margin-bottom: 50px;
}

.pageWork .flow li {
	margin-bottom: 20px;
}

.pageWork .flow li:last-child {
	margin-bottom: 60px;
}

.pageWork .flow .heading {
	display: flex;
	align-items: center;
	padding-bottom: 20px;
}

.pageWork .flow .icon {
	width: 20px;
	margin-right: 10px;
}

.pageWork .flow h4 {
	font-size: 20px;
	color: #fea7a6;
}

.pageWork .flow .detail {
	width: 90%;
	padding-left: 8%;
	border-left: #fea7a6 2px solid;
	margin-left: 10px;
}

.pageWork .flow .detail p {
	margin-bottom: 20px;
}

@media screen and (min-width: 1100px) {
	.pageWork h2 {
		margin-bottom: 100px;
		font-size: 70px;
	}

	.pageWork .section-img {
		margin-bottom: 80px;
	}

	.pageWork section .inner {
		width: 78%;
		margin: 0 auto;
	}

	.pageWork .support .inner {
		width: 37%;
		margin: 0 11% 0 auto;
		padding-top: 100px;
		padding-bottom: 122px;
	}

	.pageWork .support ul li {
		margin-bottom: 60px;
	}

	.pageWork .support ul li:first-child {
		margin-bottom: 0;
	}

	.pageWork .support ul li:last-child {
		margin-bottom: 150px;
	}

	.pageWork section .inner .heading h3 {
		font-size: 35px;
	}

	.pageWork section .inner .heading p {
		font-size: 200px;
	}

	.pageWork .support .liimg {
		width: 35%;
		margin-top: -400px;
		margin-left: 11%;
	}

	.pageWork .support ul li:nth-of-type(2n) .inner {
		width: 37%;
		margin: 0 auto 0 11%;
		padding-bottom: 122px;
	}

	.pageWork .support ul li:nth-of-type(2n) .liimg {
		width: 35%;
		margin: -450px 11% 0 auto;
	}

	.pageWork .flow {
		width: 78%;
		max-width: 1000px;
	}

	.pageWork .flow h3 {
		font-size: 50px;
		margin-bottom: 20px;
	}

	.pageWork .flow .top-p {
		font-size: 20px;
		margin-bottom: 100px;
	}

	.pageWork .flow li {
		margin-bottom: 20px;
	}

	.pageWork .flow li:last-child {
		margin-bottom: 60px;
	}

	.pageWork .flow .icon {
		width: 34px;
		margin-right: 15px;
	}

	.pageWork .flow h4 {
		font-size: 30px;
	}

	.pageWork .flow .detail {
		display: flex;
		align-items: center;
		width: 100%;
		margin-left: 17px;
	}

	.pageWork .flow .detail p {
		margin-right: 50px;
		width: 40%;
	}

	.pageWork .flow .detail .liimg {
		width: 60%;
	}
}

/* Interview */
.pageInterview .headimg img {
	object-position: right;
}

.pageInterview h2 {
	font-family: "Shippori Mincho", serif;
	font-weight: 700;
	font-style: normal;
	font-size: 18px;
	margin-bottom: 100px;
	text-align: center;
}

.pageInterview section {
	width: 92%;
	margin: 0 auto;
}

.pageInterview section ul li {
	text-align: center
}

.pageInterview section ul li h3 {
	text-align: center;
	margin-top: 14px;
}

.pageInterview section ul li h4 {
	font-size: 18px;
}

.pageInterview section ul li p {
	font-size: 14px;
	display: inline-block;
}

.pageInterview section ul {
	/* display: flex;
	flex-wrap: wrap; */
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.pageInterview section ul li {
	/* width: 50%; */
}

.pageInterview section ul li a:hover {
	opacity: 0.7;
}

.pageInterview section ul li p::before {
	content: "";
	width: 8px;
	height: 8px;
	background-color: var(--primaryColor);
	display: block;
	border-radius: 100px;
	position: relative;
	top: 19.5px;
	left: -15px;
}

.pageInterview section ul li p::after {
	content: ">";
	width: 8px;
	height: 8px;
	display: block;
	position: relative;
	top: -25.5px;
	right: -74px;
	font-size: 12px;
}

@media screen and (min-width: 1100px) {
	.pageInterview section ul {
		/* width: 78%; */
		justify-content: space-between;
		grid-template-columns: repeat(3, 1fr);
		gap: 40px;
		margin-bottom: 100px;
	}

	.pageInterview section ul li {
		/* width: 30%; */
		margin-bottom: 25px;
	}

	.pageInterview h2 {
		font-size: 30px;
		/* text-align: center; */
	}
}

/* Interview個別ページ */
.pageInterviewdetail ul .heading {
	width: 92%;
	margin: 0 auto 30px;
}

.pageInterviewdetail ul li {
	margin-bottom: 100px;
}

.pageInterviewdetail ul li h2 {
	margin-left: 15px;
	margin-bottom: 15px;
	font-family: "Alice", serif;
}

.pageInterviewdetail ul li h2::before {
	content: "";
	width: 8px;
	height: 8px;
	background-color: var(--primaryColor);
	display: block;
	border-radius: 100px;
	position: relative;
	top: 18px;
	left: -15px;
}

.pageInterviewdetail ul li .wrapper {
	background-color: #f9f4ed;
}

.pageInterviewdetail ul li .inner {
	width: 92%;
	margin: 0 auto;
	padding: 50px 0 100px;
}

.pageInterviewdetail ul li .inner h4 {
	font-size: 22px;
	margin-bottom: 28px;
}

.pageInterviewdetail ul li .liimg {
	width: 82%;
	margin: -100px 4% 0 auto;
}

.pageInterviewdetail ul li:nth-child(2n) .liimg {
	margin: -100px auto 0 4%;
}

.pageInterviewdetail .last {
	margin-bottom: 50px;
}

.pageInterviewdetail .last .wrapper {
	background-color: #deacaa;
	border-radius: 20px;
	padding-top: 100px;
	padding-bottom: 50px;
	width: 92%;
	margin: -100px auto 0;
}

.pageInterviewdetail .last .inner {
	width: 85%;
	margin: 0 auto;
	color: var(--baseColor);
}

.pageInterviewdetail .last .section-img {
	width: 200px;
	margin: 0 auto;
}

.pageInterviewdetail .last h2 {
	margin-left: 15px;
	margin-bottom: 15px;
	font-family: "Alice", serif;
}

.pageInterviewdetail .last h2::before {
	content: "";
	width: 8px;
	height: 8px;
	background-color: #fef7bf;
	display: block;
	border-radius: 100px;
	position: relative;
	top: 18px;
	left: -15px;
}

.pageInterviewdetail .last h3 {
	margin-bottom: 30px;
}

.pageInterviewdetail .last p {
	font-size: 14px;
}

.pb70 .inner {
	padding-bottom: 150px;
}

.pb100 .inner {
	padding-bottom: 150px;
}

.pageInterviewdetail ul .pb70 .inner p,
.pageInterviewdetail ul .pb100 .inner p {
	margin-bottom: 25px;
}

@media screen and (min-width: 1100px) {
	.pageInterviewdetail ul .heading {
		margin-top: 200px;
		width: 78%;
		font-size: 20px;
	}

	.pageInterviewdetail ul li h2::before {
		top: 21px;
	}

	.pageInterviewdetail ul li .inner {
		width: 38%;
		margin: 0 auto 0 11%;
		padding-bottom: 50px;
	}

	.pageInterviewdetail ul li:nth-child(2n) .heading {
		width: 38%;
		margin: 0 11% 30px auto;
	}

	.pageInterviewdetail ul li:nth-child(2n) .inner {
		width: 38%;
		margin: 0 11% 0 auto;
	}

	.pageInterviewdetail ul li .liimg {
		width: 38%;
		margin: -500px 11% 220px auto;
	}

	.pageInterviewdetail ul li:nth-child(2n) .liimg {
		margin: -500px auto 220px 11%;
	}

	.pageInterviewdetail .last .section-img {
		width: 300px;
		margin: 0 auto 0 24%;
	}

	.pageInterviewdetail .last .wrapper {
		margin-top: -200px;
		padding-top: 50px;
		width: 78%;
		max-width: 966px;
	}

	.pageInterviewdetail .last .inner {
		width: 40%;
		margin: 0 8% 0 auto;
	}


	.pageInterviewdetail .last h2,
	.pageInterviewdetail .last h3 {
		font-size: 20px;
	}

	.pageInterviewdetail .last p {
		font-size: 16px;
	}

	.pageInterviewdetail .last {
		margin-bottom: 100px;
	}

	.pageInterviewdetail ul .pb70 .liimg {
		margin-top: -470px;
	}

	.pageInterviewdetail ul .pb100 .inner {
		padding-bottom: 167px;
	}

	.pageInterviewdetail .interview-3 ul li .liimg {
		margin-top: -640px;
	}

	.pageInterviewdetail .interview-3 ul li {
		margin-bottom: 400px;
	}

	.pageInterviewdetail .interview-3 ul li:nth-child(2) {
		margin-bottom: 500px;
	}

	.pageInterviewdetail .interview-3 ul li:nth-child(3) {
		margin-bottom: 250px;
	}

	.pageInterviewdetail .interview-3 ul li:nth-child(2n) .liimg {
		margin-top: -750px;
	}

	.pageInterviewdetail .interview-3 ul li:nth-child(3) .liimg {
		margin-top: -500px;
	}

	.pageInterviewdetail .interview-3 ul li:nth-child(4) .liimg {
		margin-top: -650px;
	}
}

/* Requirement */
.pageRequirement section {
	width: 92%;
	margin: 0 auto;
}

.pageRequirement section .item {
	margin-bottom: 100px;
}

.pageRequirement .section-img {
	margin-bottom: 25px;
}

.pageRequirement h2 {
	font-family: "Shippori Mincho", serif;
	font-weight: 700;
	font-style: normal;
	font-size: 20px;
	text-align: center;
	margin-bottom: 25px;
}

.pageRequirement section .item p {
	width: 90%;
	margin: 0 auto;
}

/* タブ切り替え */
.tab-area {
	display: flex;
	/* flexで横並び */
	cursor: pointer;
	/* カーソルポインターに */
	font-size: 18px;
	margin-bottom: 50px;
}

.tab {
	width: calc(100%/2);
	/* calc関数を使用し、均等に3分割する */
	padding-top: 25px;
	padding-bottom: 25px;
	text-align: center;
	/* 文字を中央に。 */
	background-color: #f9f4ed;
}

.tab-area li:first-child.active {
	background-color: var(--primaryColor);
	color: #fff;
	position: relative;
}

.tab-area li:last-child.active {
	background-color: #aad4de;
	color: #fff;
	position: relative;
}

.tab-area li:first-child.active::before {
	content: "";
	position: absolute;
	bottom: -16px;
	left: 50%;
	transform: translateX(-50%);
	border: 10px solid transparent;
	border-top: 7px solid var(--primaryColor);
}

.tab-area li:last-child.active::before {
	content: "";
	position: absolute;
	bottom: -16px;
	left: 50%;
	transform: translateX(-50%);
	border: 10px solid transparent;
	border-top: 7px solid #aad4de;
}

.tab-area li:first-child {
	border-radius: 28px 0 0 28px;
}

.tab-area li:last-child {
	border-radius: 0 28px 28px 0;
}

.panel {
	display: none;
	background-color: #fff;
	padding: 50px 15px 30px;
	border-radius: 30px;
	box-shadow: 5px 5px 15px rgb(107, 107, 107, 0.1);
}

.panel.active {
	display: block;
}

.panel h3 {
	font-size: 22px;
	margin-bottom: 50px;
}

.panel ul li {
	border-bottom: #deacaa 2px solid;
	margin-bottom: 30px;
	padding-bottom: 30px;
	padding-left: 10px;
	padding-right: 10px;
}

.panel ul li:last-child {
	border-bottom: none;
}

.panel h4 {
	margin-bottom: 10px;
}

.panel p span {
	font-size: 14px;
}

.pageRequirement #salon h2 {
	margin-top: 50px;
	margin-bottom: 15px;
	font-family: "Alice", serif;
	font-size: 30px;
}

.pageRequirement #salon h3 {
	text-align: center;
	margin-bottom: 30px;
}

/* アコーディオン */
#salon .c-accordion__item {
	margin-bottom: 25px;
}

#salon .c-accordion__title {
	border-radius: 35px;
	background-color: #f9f4ed;
	position: relative;
	cursor: pointer;
	padding: 25px 40px 25px 25px;
	margin: 0 auto;
	font-size: 16px;
	text-align: left;
	display: flex;
}

/* オープンした時 */
#salon .c-accordion__title.is-open {
	border-radius: 35px 35px 0 0;
}

#salon .c-accordion__body {
	border-radius: 0 0 35px 35px;
	background-color: #f9f4ed;
	display: none;
	padding: 25px 25px 50px;
	margin: 0 auto;
}

#salon .c-accordion__body.is-open {
	display: block;
}

#salon .c-accordion__body li {
	display: flex;
	border-bottom: var(--primaryColor) 2px solid;
	margin-bottom: 15px;
	padding-bottom: 15px;
}

#salon .c-accordion__body li:last-child {
	border-bottom: none;
}

#salon .c-accordion__body li .left {
	width: 30%;
	margin-right: 5%;
}

#salon .c-accordion__body li .left h5 {
	font-size: 14px;
	margin-bottom: 5px;
}

#salon .c-accordion__body li .left p {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	background-color: var(--primaryColor);
	color: var(--baseColor);
	border-radius: 12px;
}

#salon .c-accordion__body li .address {
	width: 65%;
	font-size: 14px;
}

.triangle1 {
	width: 0;
	height: 0;
	border-left: 5px solid var(--baseColor);
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
	margin-right: 5px;
}

.toggle_btn {
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	background: var(--primaryColor);
	display: block;
	width: 24px;
	height: 24px;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	border-radius: 50%;
}

.toggle_btn:before,
.toggle_btn:after {
	display: block;
	content: '';
	background-color: var(--baseColor);
	position: absolute;
	width: 10px;
	height: 2px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.toggle_btn:before {
	width: 2px;
	height: 10px;
}

.toggle_title.selected .toggle_btn:before {
	content: normal;
}

#salon .c-accordion__title.is-open .toggle_btn {
	transform: rotate(45deg);
	top: 32%;
}

#salon .wrapper .top-p {
	margin-bottom: 50px;
}

@media screen and (min-width: 1100px) {
	.pageRequirement section {
		width: 78%;
	}

	.pageRequirement section .item {
		margin-bottom: 100px;
	}

	.pageRequirement .section-img {
		margin-bottom: 100px;
	}

	.pageRequirement h2 {
		font-size: 70px;
		margin-bottom: 100px;
	}

	.pageRequirement section .item p {
		width: 80%;
		margin: 0 auto;
		max-width: 800px;
		text-align: center;
	}

	/* タブ切り替え */
	.tab-area {
		font-size: 20px;
		margin-bottom: 85px;
	}

	.tab-area li:hover {
		opacity: 0.7;
	}

	.panel {
		display: none;
		background-color: #fff;
		padding: 100px 83px 86px;
	}

	.panel h3 {
		font-size: 25px;
	}

	.panel ul li {
		padding-left: 13px;
		display: flex;
		padding-left: 20px;
	}

	.panel h4 {
		margin: 0;
		width: 20%;
		margin-right: 20%;
	}

	.panel ul li p {
		margin-top: -4px;
		width: 60%;
	}

	.tab-area li:first-child.active::before {
		bottom: -35px;
		border: 20px solid transparent;
		border-top: 15px solid var(--primaryColor);
	}

	.tab-area li:last-child.active::before {
		bottom: -35px;
		border: 20px solid transparent;
		border-top: 15px solid #aad4de;
	}

	#salon .c-accordion__title {
		font-size: 25px;
		padding: 50px 80px;
	}

	#salon .c-accordion__item {
		margin-bottom: 50px;
	}

	#salon .c-accordion__body li {
		margin-bottom: 30px;
		padding-bottom: 30px;
		padding-left: 10px;
	}

	#salon .c-accordion__body {
		padding: 50px 80px;
	}

	#salon .c-accordion__body li .left h5 {
		font-size: 16px;
		margin-bottom: 0;
		margin-right: 5%;
		width: 70%;
	}

	#salon .c-accordion__body li .left {
		display: flex;
	}

	#salon .c-accordion__body li .left p {
		font-size: 14px;
		width: 50%;
		height: 28px;
	}

	#salon .c-accordion__body li .address {
		width: 65%;
		font-size: 14px;
	}

	.toggle_btn {
		margin-right: 50px;
	}

	#salon .c-accordion__title.is-open .toggle_btn {
		top: 41%;
	}

	.pageRequirement #salon h2 {
		margin-top: 70px;
		margin-bottom: 30px;
		font-size: 60px;
	}

	.pageRequirement #salon h3 {
		font-size: 25px;
		margin-bottom: 60px;
	}

	#salon .wrapper .top-p {
		text-align: center;
		margin-bottom: 100px;
	}
}

/* フォーム */
.pageForm section {
	width: 92%;
	margin: 0 auto;
}

.pageForm .hissu {
	background-color: var(--primaryColor);
	color: var(--baseColor);
	font-size: 12px;
	padding: 5px 6px;
	border-radius: 12px;
	margin-right: 5px;
}

.pageForm .ninni {
	background-color: #aad4de;
	color: var(--baseColor);
	font-size: 12px;
	padding: 5px 6px;
	border-radius: 12px;
	margin-right: 5px;
}

.pageForm .input {
	background-color: #f9f4ed;
	border-radius: 17px;
	padding: 8px 7px;
	width: 100%;
	margin-top: 10px;
	margin-bottom: 30px;
}

.pageForm textarea {
	width: 100%;
	background-color: #f9f4ed;
	border-radius: 15px;
	margin-top: 10px;
	margin-bottom: 50px;
	padding: 8px 7px;
}

.date .input,
.job .input {
	width: 60%;
}

.job .input {
	padding-left: 16px;
}

.pageForm form p {
	font-size: 14px;
	margin-bottom: 50px;
}

.contact-form-button {
	background-color: var(--primaryColor);
	color: var(--baseColor);
	width: 70%;
	margin: 0 auto;
	text-align: center;
	display: block;
	border-radius: 17px;
	padding: 18px 47px;
	margin-bottom: 75px;
}

.contact-form-button:hover {
	opacity: 0.7;
}

.pageForm .job-2 .input {
	margin-left: -20px;
}

.radio {
	margin-right: 10px;
	margin-left: 40px;
}

input[type=radio] {
	display: none;
	/* 標準スタイルを非表示にする */
}

.label-radio {
	position: relative;
	/* ボックスの位置を指定する */
	padding: 0 0 0 42px;
	/* ボックス内側の余白を指定する */
}

.label-radio:after,
.label-radio:before {
	position: absolute;
	/* ボックスの位置を指定する */
	content: "";
	/* ボックスのコンテンツ */
	display: block;
	/* ブロックレベル要素化する */
	top: 50%;
}

.label-radio:after {
	/* 上部から配置の基準位置を決める */
	left: 15px;
	/* 左から配置の基準位置を決める */
	margin-top: -7px;
	/* チェック枠の位置 */
	width: 17px;
	/* ボックスの横幅を指定する */
	height: 17px;
	/* ボックスの高さを指定する */
	border: 2px solid #ccc;
	/* ボックスの境界線を実線で指定する */
	border-radius: 50%;
	/* ボックスの角丸を指定する */
}

.label-radio:before {
	left: 19px;
	margin-top: -3px;
	width: 9px;
	height: 9px;
	/* ボックスの高さを指定する */
	background: var(--primaryColor);
	/* ボックスの背景色を指定する */
	border-radius: 50%;
	/* ボックスの角丸を指定する */
	opacity: 0;
	/* 要素を透過指定する */
}

input[type=radio]:checked+.label-radio:before {
	opacity: 1;
	/* 要素を表示する */
}

.label-radio:hover:after {
	border-color: var(--primaryColor);
	/* ボックスの境界線を実線で指定する */
}

.pageForm .job-2 .input {
	background-color: transparent;
}

@media screen and (min-width: 1100px) {
	.pageForm section {
		width: 70%;
		margin-top: 118px;
		max-width: 770px;
	}

	.pageForm .hissu,
	.pageForm .ninni {
		font-size: 14px;
		padding: 9px 12px;
		margin-right: 10px;
	}

	.pageForm .form-item {
		display: flex;
		margin-bottom: 60px;
	}

	.pageForm .input,
	.pageForm textarea {
		margin: 0;
		width: 60%;
		margin-top: -25px;
		padding: 18px 14px;
	}

	.date .input,
	.job .input {
		width: 30%;
		margin-left: -15px;
	}

	.job .input {
		padding-left: 30px;
	}

	.pageForm .label {
		width: 35%;
		margin-right: 10%;
	}

	.pageForm form p {
		margin-bottom: 100px;
	}

	.contact-form-button {
		margin-bottom: 150px;
		max-width: 250px;
	}


	.ml50 {
		margin-left: 62px;
	}

	.pageForm .job-2 .input {
		margin-top: -18px;
	}
}

/* Company */

.pageCompany h2 {
	color: var(--primaryColor);
	text-align: center;
	font-size: 30px;
	font-family: "Alice", serif;
}

.pageCompany h3 {
	text-align: center;
	margin-bottom: 30px;
}

.pageCompany .inner {
	background-color: #fff;
	padding: 50px 15px 30px;
	border-radius: 30px;
	box-shadow: 5px 5px 15px rgb(107, 107, 107, 0.1);
	width: 92%;
	margin: 0 auto;
}

.pageCompany .inner ul li {
	border-bottom: #deacaa 2px solid;
	margin-bottom: 30px;
	padding-bottom: 30px;
	padding-left: 10px;
	padding-right: 10px;
	display: flex;
	align-items: center;
}

.pageCompany .inner ul li:last-child {
	border-bottom: none;
}

.pageCompany .inner h4 {
	width: 20%;
	margin-right: 5%;
}

.pageCompany .inner p {
	width: 75%;
}

.pageCompany .inner p a {
	color: var(--primaryColor) !important;
}

@media screen and (min-width: 1100px) {
	.pageCompany h2 {
		font-size: 60px;
	}

	.pageCompany h3 {
		font-size: 20px;
		margin-bottom: 40px;
	}

	.pageCompany .inner {
		background-color: #fff;
		padding: 100px 83px 86px;
		width: 78%;
	}

	.pageCompany .inner ul li {
		padding-left: 13px;
		padding-left: 20px;
	}

	.pageCompany .inner h4 {
		margin: 0;
		width: 20%;
		margin-right: 20%;
	}

	.pageCompany .inner ul li p {
		margin-top: -4px;
		width: 60%;
	}
}

/* プライバシーポリシー */
.pagePrivacy h2 {
	color: var(--primaryColor);
	text-align: center;
	font-size: 30px;
	font-family: "Alice", serif;
}

.pagePrivacy h3 {
	text-align: center;
	margin-bottom: 30px;
}

.pagePrivacy .inner {
	width: 92%;
	margin: 0 auto;
}

.pagePrivacy .inner .top-p {
	font-size: 24px;
	margin-bottom: 24px;
	font-weight: 700;
}

.pagePrivacy .inner .bottom-p {
	font-weight: 700;
}

.pagePrivacy .inner h4 {
	margin-top: 40px;
	margin-bottom: 30px;
	padding-bottom: 5px;
	border-bottom: 1px dotted grey;
}

.pagePrivacy ul {
	margin-left: 30px;
	list-style-type: decimal;
	margin-top: 16px;
	margin-bottom: 16px;
}

.pagePrivacy ul li {
	margin-bottom: 10px;
}


@media screen and (min-width: 1100px) {
	.pagePrivacy h2 {
		font-size: 60px;
	}

	.pagePrivacy h3 {
		font-size: 20px;
		margin-bottom: 40px;
	}

	.pagePrivacy .inner {
		width: 78%;
	}

	footer {
		padding-bottom: 0;
	}
}
