@charset "UTF-8";

/****************************************

          General Setting

*****************************************/

html,
body {
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}

body {
	font-size: 16px;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", sans-serif;
	line-height: 1.8em;
}

@media only screen and (max-width: 768px) {
	body {
	font-size: 14px;
	line-height: 1.6em;
}
}

h1,
h2,
h3,
h4,
ul,
p,
dl,
dt,
dd {
	margin: 0;
	padding: 0;
	list-style: none;
}

img {
	max-width: 100%;
}

a:hover {
	text-decoration: underline;
}

/*********** layout ***********/

.wrapper {
	padding-top: 90px;
}

.contents {
	width: 90%;
	max-width: 1100px;
	margin: auto;
}

@media only screen and (max-width: 768px) {
	.wrapper {
		padding-top: 70px;
	}

}



/*********** parts ***********/

.marquee {
	position: absolute;
	bottom: 0;
	overflow: hidden;
	white-space: nowrap;
	line-height: 90px;
	width: 100%;
}

.marquee_inner {
	display: inline-block;
	animation: marquee 40s linear infinite;

}

.marquee_inner span {
	padding-right: 50px;
	font-size: 90px;
	font-family: serif;
}

@keyframes marquee {
	from {
		transform: translateX(0);
	}

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

@media only screen and (max-width: 768px) {
	.marquee_inner span {
		font-size: 60px;
	}

}


.btn {
	display: block;
	border: 1px solid rgb(24, 41, 65);
	height: 50px;
	line-height: 50px;
	background: #fff;
	width: 100%;
	border-radius: 25px;
	transition: .5s;
	font-size: 16px;
	font-weight: 600;
	text-align: center;
}

.btn:hover {
	background: rgb(24, 41, 65);
	color: #fff;
	text-decoration: none;
}

@media only screen and (max-width: 768px) {
	.btn {
	height: 40px;
	line-height: 40px;
	font-size: 14px;
}
}

/*********** contact_link ***********/

#contact_link {
	padding: 100px 0;
}

#contact_link .contents {
	padding: 60px 8%;
	background: linear-gradient(135deg, #0ce570 0%, #eefc86 100%);
	display: flex;
	align-items: center;
	position: relative;
	outline: 2px solid #fff;
	outline-offset: -10px;
}

#contact_link .contents:hover {
	background: linear-gradient(135deg, #dfa8b1 0%, #dd8592 100%);
	;
}

#contact_link .contents a {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

#contact_link h2 {
	font-size: 40px;
	margin-bottom: 20px !important;
}

#contact_link h2 span {
	display: block;
	font-size: 20px;
	margin-top: 20px;
}

#contact_link div p.producer{
margin-top: 30px;
}

#contact_link div p.producer span{
border-top: 1px solid #000;
padding-top: 10px;
margin-top: 10px;
}

#contact_link .contents p.btn {
	height: 80px;
	line-height: 80px;
	width: 300px;
	font-size: 20px;
	border-radius: 40px;
	letter-spacing: 0;
	margin-left: auto;
}

#contact_link .contents:hover p.btn {
	background: rgb(24, 41, 65);
	color: #fff;
}



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

	#contact_link {
	padding: 0;
	margin-top: 40px;
}

	#contact_link .contents {
		padding: 30px 0;
		display: block;
	}

	#contact_link h2 {
		font-size: 30px;
		text-align: center;
	}

	#contact_link h2 span {
		font-size: 18px;
		margin-top: 8px;
	}

	#contact_link div p{
	padding: 0 30px;
	line-height: 1.6em;
}

#contact_link div p br{
	display: none;
}

	#contact_link .contents p.btn {
		height: 50px;
		line-height: 50px;
		background: #fff;
		width: 200px;
		margin: 20px auto 0 auto;
		font-size: 18px;
		border-radius: 25px;
	}
}

/****************************************

          footer

*****************************************/
footer {
	padding: 80px 0 40px 0;
	background: rgb(232, 236, 247);
	margin-top: 100px;
}

footer .footer_area {
	display: flex;
	gap: 40px;
}

footer .footer_area h2 img{
	max-width: 280px;
}

footer .footer_area h2 span {
	display: block;
	font-size: 18px;
	margin-top: 10px;
}

footer .footer_area ul {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
}

footer .footer_area ul li {
	border-top: 2px solid rgba(24, 41, 65);
	width: 160px;
	padding: 16px 0;
	font-weight: 600;
}

footer .footer_area ul li p {
	margin-bottom: 8px;
}

footer .footer_area ul li div p {
	margin: 0;
	font-weight: normal;
}

footer .footer_area ul li div p::before {
	content: '- ';
}

footer #copyright {
	font-size: 10px;
	display: flex;
	margin-top: 80px;
}

footer #copyright p {
	width: 50%;
}

footer #copyright p:nth-child(2) {
	text-align: right;
}

@media only screen and (max-width: 768px) {
	footer {
	padding: 40px 0;
	margin-top: 40px;

}

	footer .footer_area {
		display: block;
	}

	footer .footer_area h2 {
		font-size: 30px;
	}

	footer .footer_area ul {
		display: block;
		margin-top: 20px;
	}

	footer .footer_area ul li {
		width: auto;
	}

	footer #copyright {
		display: block;
		margin-top: 40px;
	}

	footer #copyright p {
		width: auto;
	}

	footer #copyright p:nth-child(2) {
		text-align: left;
	}
}

/*********** pagetop ***********/

html {
	scroll-behavior: smooth;
}

.pagetop {
	position: fixed;
	right: 20px;
	bottom: 20px;
	display: block;
	width: 60px;
	height: 60px;
	border-radius: 30px;
	box-sizing: border-box;
	padding-top: 18px;
	text-align: center;
	background: #e67b00;
	font-size: 30px;
	border: 2px solid #fff;
	color: #fff;
	border-radius: 999px;
	text-decoration: none;
	opacity: 0;
	transform: translateY(30px);
	pointer-events: none;
	transition: opacity 0.4s ease, transform 0.4s ease;
}

.pagetop:hover {
	text-decoration: none;
	background: #f09936;
}

.pagetop.is-show {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

/****************************************

          トップページ

*****************************************/


.home {
	background: rgb(232, 236, 247);
}

.home footer {
	background: #fff;
}

/*********** main-image ***********/

#main-image {
	background: url("../images/mv-01.jpg")  center / cover no-repeat;
	height: 100vh;
	box-sizing: border-box;
	color: #fff;
	clip-path: polygon(0 0, 100% 0, 100% 70vh, 0 90vh);
	box-sizing: border-box;
	padding-top: 12vh;
	text-align: right;
	position: relative;
}

#main-image::after {
	content: '';
	background: #eefc86;
	height: 20vh;
	width: 100%;
	position: absolute;
	bottom: 0;
	clip-path: polygon(0 0, 100% 100%, 100% 100%, 0 100%);
}

#main-image h2 {
	font-size: 60px;
	line-height: 1.6em;
	margin-bottom: 24px;
	letter-spacing: 0.05em;
	text-shadow:0 0 3px #000,0 0 6px #000,0 0 10px #000;
}

#main-image p {
	font-size: 20px;
	line-height: 1.6em;
	letter-spacing: 0.05em;
	text-shadow:0 0 3px #000,0 0 6px #000,0 0 10px #000;
	font-weight: 600;
}

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

	#main-image {
	background: url("../images/mv-01_sp.jpg")  center/ cover no-repeat;
	padding-top: 5vh;
	text-align: left;
}

	#main-image h2 {
		font-size: 30px;
	}

	#main-image p {
		font-size: 14px;
	}
}

/*********** intro ***********/

#intro {
	background:linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1)), url(../images/top-1st-01.jpg) no-repeat top center;
	background-size: cover;
	padding: 250px 0 300px 0;
	position: relative;
	clip-path: polygon(0 0, 100% 10vh, 100% 99%, 0 100%);
	margin-top: -20vh;
}

#intro::after {
	content: '';
	background: #eefc86;
	height: 8vh;
	width: 100%;
	position: absolute;
	bottom: 0;
	clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
}

#intro .contents {
	padding-right: 18%;
}

#intro h2 {
	font-size: 38px;
	line-height: 1.6em;
	margin-bottom: 24px;
	letter-spacing: 0.05em;
	padding: 10px 0;
}

#intro h2 span {
	color: #fff;
	text-shadow: #000 1px 0 10px;
}

#intro h3 {
	margin-top: 40px;
	color: #fff;
	font-size: 24px;
	text-shadow: #000 1px 0 10px;
	line-height: 1.8em;
}

#intro p {
	margin-top: 16px;
	color: #fff;
	font-size: 18px;
	line-height: 1.6em;
	letter-spacing: 0.05em;
	text-shadow: #000 1px 0 10px;
}

#intro .marquee {
	bottom: 100px;
}


#intro .marquee_inner span {
	color: #fff;
}


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

	#intro {
		background: url(../images/top-1st-01.jpg) no-repeat top right -600px;
		background-size: cover;
	}

	#intro .contents {
		padding-right: 0;
	}

	#intro h2,
	#intro h3 {
		font-size: 20px;
	}

	#intro p {
		font-size: 14px;
	}


}

/*********** service ***********/

#service h2 {
	color: rgb(24, 41, 65);
	text-align: center;
	padding: 80px;
	font-size: 40px;
	letter-spacing: 0.05em;

}

#service h3 {
	font-size: 50px;
	margin-bottom: 24px;
	letter-spacing: 0.05em;
	color: #fff;
	text-shadow: rgba(0, 0, 0, 0.5) 1px 0 10px;
}

#service h3 span {
	display: block;
	font-size: 24px;
	margin-top: 24px;
}

#service p {
	color: #fff;
	font-size: 18px;
	text-shadow: #000 1px 0 10px;
}

#service a.btn {
	max-width: 300px;
	margin-top: 40px;
}

#service img {
	display: none;
}

#service .service_talent {
	box-sizing: border-box;
	padding: 100px 0 100px 53%;
	background-image: url("../images/top-service-01.jpg"), linear-gradient(to bottom, #dfa8b1 0%, #dd8592 100%);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 50%, cover;
}

#service .service_consulting {
	box-sizing: border-box;
	padding: 100px 0;
	background-image: url("../images/top-service-02.jpg"), linear-gradient(to bottom, #dfa8b1 0%, #dd8592 100%);
	background-repeat: no-repeat;
	background-position: right center;
	background-size: 50%, cover;
}

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

	#service h3 {
		font-size: 24px;
		margin-bottom: 10px;
	}

	#service h3 span {
		font-size: 18px;
		margin-top: 10px;
	}

	#service p {
	font-size: 14px;
}

	#service a.btn {
		margin: auto;
		margin-top: 20px;

	}


	#service img {
		display: block;
		margin-top: 50px;
	}

	#service .service_talent {
		padding: 50px 0 0 0;
		background: linear-gradient(to bottom, #dfa8b1 0%, #dd8592 100%);

	}

	#service .service_consulting {
		padding: 50px 0 0 0;
		background: linear-gradient(to bottom, #dfa8b1 0%, #dd8592 100%);
	}

	#service .service_consulting br {
		display: none;
	}
}

/*********** news ***********/

#news {
	padding: 100px 0 200px 0;
	background: rgb(232, 236, 247);
	color: rgb(24, 41, 65);
	position: relative;
}


#news .contents {
	display: flex;
	gap: 40px;
}

#news h2 {
	font-size: 40px;
	letter-spacing: 0.05em;
}

#news ul{
	flex: 1;
}

#news h2 a.btn {
	margin-top: 40px;
	width: 180px;
	letter-spacing: 0;
}

#news ul li {
	box-sizing: border-box;
	border-bottom: 1px solid rgb(24, 41, 65);
	padding: 20px 10px;
	font-size: 18px;
	position: relative;
	padding-left: 150px;
}

#news ul li span {
	position: absolute;
	top: 20px;
	left: 10px;
}

#news .marquee_inner span {
	color: rgb(5, 133, 235);
	;
}

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

	#news {
	padding: 50px 0 150px 0;
}

	#news .contents {
		display: block;
	}

	#news h2 {
	font-size: 32px;
	letter-spacing: 0.05em;
}

#news h2 a.btn {
	margin-top: 20px;
}

	#news ul {
		margin-top: 10px;
	}

	#news ul li {
		padding: 10px 20px;
		padding-left: 10px;
		font-size: 14px;
	}

	#news ul li span {
		position: relative;
		display: block;
		top: auto;
		left: auto;
	}
}


/****************************************

          お問い合わせ

*****************************************/

#contact {}

#contact h2.page_title {
	font-size: 40px;
	letter-spacing: 0.05em;
	color: rgb(24, 41, 65);
	margin-top: 60px;
}

#contact h2.page_title span {
	display: block;
	font-size: 20px;
	margin-top: 20px;
	letter-spacing: 0;
}

#contact .contact_intro h3{
margin-top: 40px;
font-size: 24px;;
}

#contact .contact_intro ul{
	list-style: disc;
	margin-left: 1.5em;
	margin-top: 20px;
}



/* テーブル */

#contact table {
	width: 100%;
	border-collapse: collapse;
	background: #fff;
}

#contact table th,
#contact table td {
	border-top: 1px solid #ccc;
	padding: 15px 10px;
	text-align: left;
	vertical-align: top;
}

#contact table th {
	width: 220px;
}


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

	#contact table {
		border-top: 1px solid #ccc;
	}

	#contact table td,
	#contact table th {
		width: auto;
		display: block;
	}

	#contact table th {
		font-weight: bold;
		padding-bottom: 5px;
		border-top: none;
		border-bottom: none;
	}

	#contact table td {
		border-top: none;
		padding-top: 0;
	}
}

#contact .tel_info {
	padding: 30px;
	background: #f5f5f5;
	text-align: center;
	margin: 40px 0;
}

#contact .btn_area {
	display: flex;
	margin: 40px 0;
	justify-content: center;
	gap: 20px;
}

#contact .contact_btn {
	display: inline-block;
	text-align: center;
	cursor: pointer;
	padding: 15px;
	color: #ffffff;
	transition: .3s;
	border: none;
	width: 45%;
	max-width: 200px;
	font-size: 13pt;
	-webkit-appearance: none;
}

#contact .btn_blue {
	background: rgba(40, 99, 167, 1.00);
}

#contact .btn_blue:hover {
	background: rgba(40, 99, 167, 0.8);
}

#contact .btn_gray {
	background: #666;
}

#contact .btn_gray:hover {
	background: #999;
}

#contact table td input[type=text] {
	width: calc(100% - 30px);
	max-width: 300px;
	font-size: 16px;
	padding: 5px 7px;
	border: 1px solid #ccc;
}

#contact table td textarea {
	width: calc(100% - 30px);
	height: 200px;
	margin-top: 5px;
	font-size: 16px;
	padding: 5px 7px;
	border: 1px solid #ccc;
}

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

	#contact table td textarea {
		width: 100%;
	}
}

#contact table th {
	position: relative;
}

#contact table th span {
	display: block;
	background: rgba(209, 0, 30, 1.00);
	color: #fff;
	font-size: 12px;
	padding: 3px 5px;
	position: absolute;
	line-height: 20px;
	right: 0;
	top: 12px;
}

.check_group {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.check_item {
	display: flex;
	align-items: center;
	cursor: pointer;
	font-size: 16px;
}

/* inputは非表示 */
.check_item input {
	display: none;
}

/* 四角の箱 */
.check_item span {
	position: relative;
	padding-left: 34px;
}

/* ボックス */
.check_item span::before {
	content: "";
	position: absolute;
	left: 0;
	top: 2px;
	width: 20px;
	height: 20px;
	border: 1px solid #333;
	border-radius: 4px;
	background: #fff;
	transition: 0.2s;
}

/* チェックマーク */
.check_item span::after {
	content: "";
	position: absolute;
	left: 7px;
	top: 5px;
	width: 6px;
	height: 12px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
	opacity: 0;
	transition: 0.2s;
}

/* チェック時 */
.check_item input:checked+span::before {
	background: #000;
	border-color: #000;
}

.check_item input:checked+span::after {
	opacity: 1;
}

@media only screen and (max-width: 768px) {
	#contact table th span {
		display: inline;
		position: relative;
		margin: 0 0 0 10px;
		top: 0;
	}
}


/******* お問い合わせ 確認、完了 *******/

#contact .thanks h3 {
	margin-top: 40px;
}

#contact .thanks p {
	margin-top: 20px;
}

#contact .thanks .link {
	margin-top: 40px;
}

#contact .thanks .link a {
	border: 1px solid #000;
	padding: 10px;
	transition: .5s;
}

#contact .thanks .link a:hover {
	background: #000;
	color: #fff;
	text-decoration: none;
}


/****************************************

          news_page

*****************************************/

#news_page {}

#news_page h2.page_title {
	font-size: 40px;
	letter-spacing: 0.05em;
	color: rgb(24, 41, 65);
	margin-top: 60px;
}

#news_page h2.page_title span {
	display: block;
	font-size: 20px;
	margin-top: 20px;
	letter-spacing: 0;
}

#news_page .sns_info{
	margin: 40px 0 20px 0;
}

#news_page ul.sns {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

#news_page ul.sns li a {
	display: block;
	border: 2px solid #000;
	height: 40px;
	line-height: 40px;
	min-width: 60px;
	text-align: center;
	padding: 0 20px;
	border-radius: 20px;
	font-weight: 600;
}

#news_page ul.sns li a:hover {
	text-decoration: none;
	background: #000;
	color: #fff;
}


#news_page ul.news_list {
	margin-top: 50px;
}


#news_page ul.news_list li {
	box-sizing: border-box;
	border-bottom: 1px solid rgb(24, 41, 65);
	padding: 20px 10px;
	font-size: 18px;
	position: relative;
	padding-left: 150px;
}

#news_page ul.news_list li span {
	position: absolute;
	top: 20px;
	left: 10px;
}

#news_page .news_post .date {
	margin-top: 20px;
	text-align: right;
}

#news_page .news_post h3 {
	font-size: 20pt;
	margin: 20px 0;
}

#news_page .news_post .sns {
	display: flex;
	gap: 10px;
	margin-top: 30px;
	flex-wrap: wrap;
}

#news_page .news_post .sns li a {
	display: block;
	border: 2px solid #000;
	height: 40px;
	line-height: 40px;
	min-width: 60px;
	text-align: center;
	padding: 0 20px;
	border-radius: 20px;
	font-weight: 600;
}

#news_page .news_post .sns li a:hover {
	text-decoration: none;
	background: #000;
	color: #fff;
}

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


	#news_page ul.news_list {
		margin-top: 10px;
	}

	#news_page ul.news_list li {
		padding: 10px 20px;
		padding-left: 10px;
		font-size: 14px;
	}

	#news_page ul.news_list li span {
		position: relative;
		display: block;
		top: auto;
		left: auto;
	}

	#news_page .news_post .date {
	text-align: left;
}

}

/****************************************

          consulting

*****************************************/

#consulting {}

#consulting h2.page_title {
	margin-top: 40px;
	font-size: 60px;
	letter-spacing: 0.05em;
	background: linear-gradient(135deg, #0585eb 0%, #7e00ea 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	line-height: 1.6em;

}

#consulting h2.page_title_sub {
	font-size: 30px;
	margin-top: 20px;
	letter-spacing: 0;
	color: rgb(24, 41, 65);
}

#consulting .hero_area {
	background: url(../images/mv-event.jpg) no-repeat center;
	background-size: cover;
	height: 480px;
	display: flex;
	justify-content: center;
	color: #fff;
	margin-top: 40px;
}

#consulting .hero_area h3 {
	font-size: 30px;
	line-height: 1.6em;
	text-shadow: #000 1px 0 10px;
}

#consulting .hero_area p {
	font-size: 20px;
	margin-top: 20px;
	text-shadow: #000 1px 0 10px;
}

#consulting .anchor_list ul {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin-top: 80px;
}

#consulting .anchor_list ul li {
	text-align: center;
	width: 220px;
	border: 2px solid rgb(24, 41, 65);
}

#consulting .anchor_list ul li a {
	display: block;
	box-sizing: border-box;
	padding: 10px;
	width: 100%;
	height: 100%;
	position: relative;
	font-weight: 600;
	transition: .5s;
}

#consulting .anchor_list ul li a::after {
	content: "⌄";
	font-size: 30px;
	position: absolute;
	right: 15px;
	top: 3px;
}

#consulting .anchor_list ul li a:hover {
	background: rgb(24, 41, 65);
	color: #fff;
	text-decoration: none;
}

#consulting .consulting_h3 {
	color: rgb(12, 229, 112);
	font-size: 16px;
	padding-top: 90px;
}

#consulting .consulting_h3 span {
	color: rgb(24, 41, 65);
	display: block;
	font-size: 30px;
	margin-top: 5px;
}

#consulting .consulting_service p {
	margin: 20px 0;
}

#consulting .consulting_service ul {
	display: flex;
	gap: 20px;
}

#consulting .consulting_service ul li {
	flex: 1;
}

#consulting .consulting_reason ul {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 40px;
}

#consulting .consulting_reason ul li {
	width: calc(50% - 20px);
	position: relative;
	padding-left: 150px;
	height: 130px;
}

#consulting .consulting_reason ul li p {
	position: absolute;
	left: 0;
	top: 0;
	width: 120px;
	height: 120px;
	padding: 20px;
	border-radius: 60px;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

#consulting .consulting_reason ul li h4 {
	font-size: 20px;
	margin: 20px 0 5px 0;
	line-height: 1.4em;
}

#consulting .consulting_achievements ul {
	margin-top: 40px;
}

#consulting .consulting_achievements ul li {
	display: flex;
	gap: 40px;
	width: 100%;
	margin-bottom: 40px;
}

#consulting .consulting_achievements ul li img {
	width: calc(50% - 40px);
	object-fit: contain;
	height: auto;
}

#consulting .consulting_achievements ul li div {
	background: #efefef;
	width: calc(50% - 40px);
	padding: 40px;
	margin: 40px 0;
}

#consulting .consulting_achievements ul li div h4 {
	margin-bottom: 5px;
	font-size: 20px;
	line-height: 1.4em;
}


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


#consulting .hero_area {
	height: 280px;
}

	#consulting h2.page_title {
		font-size: 40px;
		line-height: 1.3em;
	}

	#consulting h2.page_title_sub {
		font-size: 20px;
		line-height: 1.4em;
	}

	#consulting .hero_area h3 {
		font-size: 20px;
	}

	#consulting .hero_area h3 br{
		display: none;
	}

	#consulting .hero_area p {
		font-size: 16px;
	}

	#consulting .hero_area p br{
		display: none;
	}

	#consulting .anchor_list ul {
		justify-content: left;
		gap: 10px;
		margin-top: 40px;
		flex-wrap: wrap;
	}

	#consulting .anchor_list ul li {
		width: calc(50% - 10px);
		text-align: left;
		font-size: 16px;
	}

#consulting .consulting_h3 {
	padding-top: 40px;
}

	#consulting .consulting_service ul {
		display: block;
	}

	#consulting .consulting_service ul li {
		margin-bottom: 20px;
	}

	#consulting .consulting_reason ul {
		display: block;
		margin-top: 30px;
	}

	#consulting .consulting_reason ul li {
		width: auto;
		padding-left: 100px;
		height: auto;
	}

	#consulting .consulting_reason ul li p {
		position: absolute;
		width: 80px;
		height: 80px;
		border-radius: 40px;
		padding: 15px;
	}

	#consulting .consulting_achievements ul li {
		display: block;
		margin-bottom: 20px;
	}

	#consulting .consulting_achievements ul li img {
		width: auto;
	}

	#consulting .consulting_achievements ul li div {
		width: auto;
		padding: 20px;
		margin: 0;
		margin-bottom: 10px;
	}


}

/*********** company ***********/

#company {
	margin-top: 100px;
	padding: 80px 0 100px 0;
	background: #fff;
	position: relative;
	border-top: 4px solid #ccc;
}

#company h2 {
	font-size: 40px;
	letter-spacing: 0.05em;
	margin-bottom: 60px;
	color: rgb(24, 41, 65);
}

#company h2 span {
	display: block;
	font-size: 20px;
	margin-top: 20px;
}

#company .company_contents ul li {
	box-sizing: border-box;
	position: relative;
	padding: 20px 10px 20px 80px;
	border-bottom: 1px solid rgb(24, 41, 65);
}

#company .company_contents ul li span {
	position: absolute;
	top: 20px;
	left: 10px;
}

#company .company_contents p {
	max-width: 300px;
	margin: 40px auto 0 auto;
}

@media only screen and (max-width: 768px) {
	#company {
	margin-top: 50px;
	padding: 40px 0 50px 0;
}

#company h2 {
	margin-bottom: 30px;
}
}

/*********** 代表あいさつ ***********/

#message {
	margin-top: 100px;
	padding: 80px 0 100px 0;
	background: #fff;
	position: relative;
}

#message h2 {
	font-size: 40px;
	letter-spacing: 0.05em;
	margin-bottom: 60px;
	color: rgb(24, 41, 65);
}


#message .profile {
	display: flex;
	gap: 40px;
	margin-top: 60px;
}

#message .profile .photo {
	flex: 0 0 40%;
}

#message .profile .photo p {
	margin-top: 10px;
}

#message .profile .photo p span {
	font-size: 18px;
	display: block;
	font-weight: 600;
}

#message .profile .text {
	flex: 1;
}

#message .profile .text h3 {
	font-size: 18px;
	margin: 20px 0 10px 0;
}

#message .profile .text .works {
	list-style: disc;
	margin-left: 1.5em;
}

#message .profile .text .works li:last-child {
	list-style: none;
	margin-top: 0.5em;
}

#message .profile .text .sns {
	display: flex;
	gap: 10px;
	margin-top: 30px;
	flex-wrap: wrap;
}

#message .profile .text .sns li a {
	display: block;
	border: 2px solid #000;
	height: 40px;
	line-height: 40px;
	min-width: 60px;
	text-align: center;
	padding: 0 20px;
	border-radius: 20px;
	font-weight: 600;
}

#message .profile .text .sns li a:hover {
	text-decoration: none;
	background: #000;
	color: #fff;
}

@media only screen and (max-width: 768px) {
	#message .profile {
		display: block;
	}

	#message .profile .photo {
		flex: none;
		width: 80%;
		margin: 0 auto;
	}

	#message .profile .text {
		flex: none;
		margin-top: 40px;
	}

}

/****************************************

          タレント

*****************************************/

#talent {}

#talent #contact_link .contents {	
	background: linear-gradient(135deg, #dfa8b1 0%, #dd8592 100%);
}

#talent #contact_link .contents:hover {
	background: linear-gradient(135deg, #0ce570 0%, #eefc86 100%);
	}

#talent h2.page_title {
	margin-top: 40px;
	font-size: 60px;
	letter-spacing: 0.05em;
	background: linear-gradient(135deg, #f43b7b 0%, #e67b00 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	line-height: 1.6em;

}

#talent h2.page_title_sub {
	font-size: 30px;
	letter-spacing: 0;
	color: rgb(24, 41, 65);
}

#talent .talent_list ul {
	margin-top: 40px;
	display: flex;
	gap: 40px;
}

#talent .talent_list ul li {
	/* flex: 1; */
	position: relative;
	width: calc(33% - 40px);
}

#talent .talent_list ul li h2 {
	font-size: 28px;
	margin-top: 10px;
}

#talent .talent_list ul li h2 span {
	font-size: 16px;
	display: block;
	margin-top: 10px;
}

#talent .talent_list ul li a {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: .5s;
}

#talent .talent_list ul li a:hover {
	background: rgb(255, 255, 255, .3);
}

@media only screen and (max-width: 768px) {
	#talent .talent_list ul {
		display: block;
	}

	#talent .talent_list ul li {
		width: auto;
		margin-bottom: 20px;
	}
}


/****************************************

          タレント個別

*****************************************/

#talent_page {}

#talent_page #contact_link .contents {	
	background: linear-gradient(135deg, #dfa8b1 0%, #dd8592 100%);
}

#talent_page #contact_link .contents:hover {
	background: linear-gradient(135deg, #0ce570 0%, #eefc86 100%);
	}

#talent_page h2.page_title {
	margin-top: 40px;
	font-size: 60px;
	letter-spacing: 0.05em;
	background: linear-gradient(135deg, #f43b7b 0%, #e67b00 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	line-height: 1.6em;

}

#talent_page h2.page_title_sub {
	font-size: 30px;
	letter-spacing: 0;
	color: rgb(24, 41, 65);
}

#talent_page .profile {
	display: flex;
	gap: 40px;
	margin-top: 60px;
}

#talent_page .profile .photo {
	flex: 0 0 40%;
}

#talent_page .profile .text {
	flex: 1;
}

#talent_page .profile .text h2 {
	font-size: 40px;
	letter-spacing: 0.05em;
}

#talent_page .profile .text h2 span {
	font-size: 18px;
	display: block;
	margin-top: 30px;
}

#talent_page .profile .text .profile_list {
	margin: 30px 0;
}

#talent_page .profile .text .profile_list li {
	position: relative;
	padding: 10px 0 10px 60px;
	border-top: 1px solid #ccc;
}

#talent_page .profile .text .profile_list li:last-child {
	border-bottom: 1px solid #ccc;
}

#talent_page .profile .text .profile_list li span {
	position: absolute;
	left: 10px;
	top: 10px;
}

#talent_page .profile .text .sns {
	display: flex;
	gap: 10px;
	margin-top: 30px;
	flex-wrap: wrap;
}

#talent_page .profile .text .sns li a {
	display: block;
	border: 2px solid #000;
	height: 40px;
	line-height: 40px;
	min-width: 60px;
	text-align: center;
	padding: 0 20px;
	border-radius: 20px;
	font-weight: 600;
}

#talent_page .profile .text .sns li a:hover {
	text-decoration: none;
	background: #000;
	color: #fff;
}

@media only screen and (max-width: 768px) {
	#talent_page .profile {
		display: block;
	}

	#talent_page .profile .photo {
		flex: none;
		width: 80%;
		margin: 0 auto;
	}

	#talent_page .profile .text {
		flex: none;
		margin-top: 20px;
	}

	#talent_page .profile .text h2 {
		font-size: 30px;
		text-align: center;
	}

	#talent_page .profile .text h2 span {
		text-align: center;
		margin-top: 16px;
	}

	#talent_page .profile .text .profile_list li {
		padding-left: 10px;
		margin-bottom: 10px;
	}

	#talent_page .profile .text .profile_list li span {
		position: relative;
		left: 0;
		display: block;
		font-weight: 600;
		margin-bottom: 10px;
	}
}

/****************************************

          プライバシーポリシー

*****************************************/

#privacy {}

#privacy h2.page_title {
	font-size: 40px;
	letter-spacing: 0.05em;
	color: rgb(24, 41, 65);
	margin-top: 60px;
}

#privacy h2.page_title span {
	display: block;
	font-size: 20px;
	margin-top: 20px;
	letter-spacing: 0;
}

#privacy h3 {
	margin-top: 50px;
	margin-bottom: 10px;
	font-size: 24px;
}

#privacy .text_end {
	margin-top: 50px;
}