@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,500,700&display=swap&subset=japanese");
@import url('https://fonts.googleapis.com/css?family=Kosugi+Maru&display=swap');

/* ------------------------------
    reset
------------------------------ */
html,
body {
	height: 100%;
}

html {
	font-size: 62.5%;
	overflow-y: scroll;
}

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

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
address,
ul,
ol,
li,
dl,
dt,
dd,
table,
th,
td,
img,
form,
figure,
input,
button,
textarea,
select {
	margin: 0;
	padding: 0;
	border: none;
	line-height: 100%;
	list-style-type: none;
	font-style: normal;
	font-weight: 400;
	font-family: 'Noto Sans JP', sans-serif;
	word-wrap: break-word;
	overflow-wrap: break-word;
	-webkit-text-size-adjust: 100%;
}


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

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

textarea {
	resize: vertical;
}

button {
	cursor: pointer;
}

a {
	color: #000;
	text-decoration: none;
}

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

/* ------------------------------
    responsive
------------------------------ */
@media screen and (min-width: 769px) {
	.sp {
		display: none !important;
	}
}

@media screen and (max-width: 768px) {
	.pc {
		display: none !important;
	}
}

/* ------------------------------
    base
------------------------------ */
body {
	color: #000;
	min-width: 1100px;
	font-size: 1.0rem;
	text-align: left;
}

section {
	position: relative;
	padding: 100px 0;
}

main {
	display: block;
}

.wrap {
	width: 1010px;
	margin: 0 auto;
	position: relative;
}

p,
th,
td,
dt,
dd,
li,
input,
button,
textarea {
	font-size: 1.8rem;
	line-height: 2;
}

.flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.left {
	float: left;
}

.right {
	float: right;
}

.center {
	display: block;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.tal {
	text-align: left;
}

.tar {
	text-align: right;
}

.tac {
	text-align: center;
}

.txt_s {
	font-size: 1.2rem;
}

.link_txt {
	text-decoration: underline;
}

.bold {
	font-weight: bold;
}

.fixed {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

/*font*/
.marugo_l {
	font-family: "Shuei MaruGo L";
}

.marugo_b {
	font-family: "Shuei MaruGo B";
}

@media screen and (max-width: 768px) {
	body {
		min-width: inherit;
	}

	section {
		padding: 13.33vw 0;
	}

	.wrap {
		width: 84%;
	}

	p,
	th,
	td,
	dt,
	dd,
	li,
	input,
	button,
	textarea {
		font-size: 3.6vw;
	}
}

/* ------------------------------
    hover
------------------------------ */
.fade {
	transition: opacity 0.3s ease;
}

.fade:hover {
	opacity: .6;
	cursor: pointer;
}

/* ---------------------------------------
  scroll
-----------------------------------------*/
.fadeup {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 1s, transform 1s;
}

.fadein {
	opacity: 0;
	transition: opacity 1s;
}

.scroll.is-show.fadeup,
.scroll.is-show .fadeup {
	opacity: 1;
	transform: translate(0, 0);
}

.scroll.is-show.fadein,
.scroll.is-show .fadein {
	opacity: 1;
}


/* ------------------------------
    parts
------------------------------ */
.bg {
	background-image: url(../img/bg01.png);
}

/*btn*/
.btn a {
	display: block;
	position: relative;
	line-height: 1;
	width: 406px;
	height: 70px;
	border: 3px solid #ee780c;
	border-radius: 35px;
	background: linear-gradient(180deg, rgba(243, 154, 74, 1) 0%, rgba(238, 120, 12, 1) 99.89%);
	margin: 0 auto;
}

.btn a::before {
	content: "";
	width: 100%;
	height: 100%;
	border-radius: 35px;
	position: absolute;
	left: 0;
	top: 0;
	background: rgba(255, 241, 0, .20);
	opacity: 0;
	transition: opacity .3s ease;
}

.btn a span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background: url(../img/btn_arw.png) no-repeat right 17px center;
	position: relative;
	z-index: 1;
	color: #fff;
	font-size: 2.6rem;
	letter-spacing: 0.1em;
}

.btn a:hover::before {
	opacity: 1;
}


/*secttl*/
.secttl {
	margin-bottom: 32px;
}

.secttl .ttl {
	font-family: "Shuei MaruGo B";
	display: inline-block;
	line-height: 1;
	font-size: 3rem;
	letter-spacing: 0.2em;
	margin-bottom: .65em;
	padding: 0 1.6em;
	position: relative;
}

.secttl .ttl::before,
.secttl .ttl::after {
	content: "";
	width: 24px;
	height: 31px;
	background-image: url(../img/secttl.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% auto;
	position: absolute;
	top: 2px;
}

.secttl .ttl::before {
	left: 0;
}

.secttl .ttl::after {
	right: 0;
	transform: scale(-1, 1);
}

.secttl .enttl {
	display: block;
}



@media screen and (min-width: 769px) {
	h2.secttl.noblock {
		height: auto;
		display: flex;
		margin-bottom: 0;
		background: none;
		width: auto;
		align-items: flex-end;
		padding-top: 0;
	}

	.secttl.noblock .ttl {
		margin-bottom: 0;
	}

	.secttl.noblock .enttl {
		display: inline-block;
		margin-left: 36px;
	}
}

@media screen and (max-width: 768px) {
	.bg {
		background-size: .8vw auto;
	}

	/*btn*/
	.btn a {
		width: 100%;
		margin-left: auto;
		margin-right: auto;
		height: 14.6vw;
		border: .5vw solid #ee780c;
		border-radius: 7.3vw;
	}

	.btn a::before {
		border-radius: 8.3vw;
	}

	.btn a span {
		padding-left: .8em;
		background: url(../img/btn_arw.png) no-repeat right .5em center / 6.4vw auto;
		font-size: 5.46vw;
	}


	/*secttl*/
	.secttl {
		margin-bottom: 7.6vw;
	}

	.secttl .ttl {
		letter-spacing: 0.1em;
		font-size: 5vw;
		margin-bottom: .5em;
	}

	.secttl .ttl::before,
	.secttl .ttl::after {
		width: 4.13vw;
		height: 5.2vw;
		top: 0;
	}

	.secttl .ttl::before {
		left: 0;
	}

	.secttl .enttl {
		display: block;
	}

	.secttl .enttl img {
		width: auto;
		height: 3.0666vw
	}

}





/*btn-more*/
@media screen and (max-width: 768px) {
	.btn-more {
		display: flex;
		justify-content: center;
	}
}

.btn-more a {
	position: relative;
	font-size: 1.4rem;
	font-weight: 500;
	background: #ee780c;
	color: #fff;
	padding: 0.7em 2.4em;
	border-radius: 5px;
	transition: .3s ease;
}

@media screen and (max-width: 768px) {
	.btn-more a {
		font-weight: bold;
	}
}

.btn-more a:hover {
	background: #f18e36;
}


.btn-more a::after {
	position: absolute;
	right: 5px;
	bottom: 5px;
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 8px 8px;
	border-color: transparent transparent #fff transparent;
}

/* ----------------------------------------------------------------------------------------------------
*  ヘッダー
* --------------------------------------------------------------------------------------------------*/
#header {
	height: 100px;
	position: relative;
	background-color: #fff;
}

#header .wrap {
	height: 100%;
	display: flex;
	align-items: center;
}

@media screen and (max-width: 768px) {
	#header {
		height: 50px;
	}

	#header .wrap {
		width: 92%;
	}

	#header .logo {
		width: 80px;
	}
}

/* ----------------------------------------------------------------------------------------------------
*  contents
* --------------------------------------------------------------------------------------------------*/


/* ------------------------------
    mv
------------------------------ */
.sec_mv {
	height: 680px;
	padding: 80px 0;
	background-color: #fccf48;
	background-image: url(../img/mv_bg.png);
	background-repeat: no-repeat;
	background-position: calc(50% + 405px) 0;
}

.sec_mv::before {
	content: "";
	width: calc(50% + 110px);
	height: 100%;
	background-color: #f0f0f0;
	position: absolute;
	left: 0;
	top: 0;
	transform: skewX(16deg);
	transform-origin: right bottom;
}

.sec_mv .wrap {
	display: flex;
	justify-content: space-between;
}

.sec_mv .txtwrap {
	max-width: 490px;
}

.sec_mv .mv_img {
	width: 480px;
}


.sec_mv .ttl {
	width: 482px;
}


.sec_mv .txt {
	letter-spacing: 0.08em;
	margin: .8em 0 1em;
	font-feature-settings: "palt";
	text-align: justify;
}

.sec_mv .btn a {
	margin-left: 0;
}


.sec_mv .txt1,
.sec_mv .txt2,
.sec_mv .txt3,
.sec_mv .txt4 {
	line-height: 0;
	margin-top: 24px;
}

.sec_mv .typing {
	text-indent: 10px;
}

.sec_mv .ttl .typing {
	display: inline-block;
	background: #fff;
	letter-spacing: 0.1em;
	white-space: nowrap;
	font-feature-settings: "palt";
}

.sec_mv .ttl .txt1 {
	margin-top: 0;
	font-size: 3rem;
	height: 47px;
	line-height: 47px;
}

.sec_mv .ttl .txt2 {
	font-size: 4.8rem;
	height: 68px;
	line-height: 68px;
}

.sec_mv .txt3 .typing,
.sec_mv .txt4 .typing {
	display: inline-block;
	background: #fccf48;
}

.sec_mv .txt3,
.sec_mv .txt4 {
	font-size: 2.4rem;
	height: 42px;
	line-height: 42px;
}

.typing > span {
	line-height: 1;
}

/*文字列後ろの線の設定*/
.typing .bar::after {
	content: "|";
	animation: typinganime .5s step-end infinite;
	position: relative;
	top: -.1em;
}

@keyframes typinganime {
	50% {
		color: transparent;
	}
}


@media screen and (max-width: 768px) {
	.sec_mv {
		height: 148.1vw;
		padding: 9.33vw 0;
		background-color: #fccf48;
		background-image: url(../img/mv_bg_sp.png);
		background-size: 72.26vw auto;
		background-position: right 0;
	}

	.sec_mv::before {
		content: "";
		width: 74.66%;
		transform: skewX(16deg);
	}

	.sec_mv .wrap {
		display: block;
	}

	.sec_mv .txtwrap {
		max-width: 100%;
	}

	.sec_mv .mv_img {
		width: 100%;
		margin-bottom: 9vw;
	}

	.sec_mv .txt {
		font-size: 3.2vw;
		margin: 1em 0 1.8em;
	}

	.sec_mv .ttl {
		width: 100%;
	}


	.sec_mv .txt1,
	.sec_mv .txt2,
	.sec_mv .txt3,
	.sec_mv .txt4 {
		margin-top: 4vw;
	}

	.sec_mv .typing {
		text-indent: 2vw;
	}

	.sec_mv .ttl .txt1 {
		font-size: 5.2vw;
		height: 8.26vw;
		line-height: 8.26vw;
	}

	.sec_mv .ttl .txt2 {
		font-size: 8.26vw;
		height: 11.86vw;
		line-height: 11.86vw;
	}


	.sec_mv .txt3,
	.sec_mv .txt4 {
		font-size: 4.26vw;
		height: 7.33vw;
		line-height: 7.33vw;
	}

	.typing .bar::after {
		top: 0;
	}

}

/* ------------------------------
    workstyle
------------------------------ */
.sec_workstyle .ttl2 {
	margin: 43px 0 71px;
}

.sec_workstyle .ttl2 span {
	display: inline-block;
	font-size: 4.4rem;
	letter-spacing: 0.1em;
	height: 57px;
	line-height: 57px;
	background-color: #fccf48;
	padding: 0 .25em;
}

.sec_workstyle .workstyle_list .box {
	width: 100%;
	background-color: #fff;
	box-shadow: 0 0 7px rgba(0, 0, 0, .15);
	border-radius: 50px;
	padding: 62px 64px;
	margin-top: 50px;
}

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

.sec_workstyle .workstyle_list .box:nth-child(even) .inner {
	flex-direction: row-reverse;
}

.sec_workstyle .workstyle_list .box .ico {
	width: 194px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.sec_workstyle .workstyle_list .box .txt {
	width: 632px;
}

.sec_workstyle .workstyle_list .box .txt .boxttl {
	font-size: 2.6rem;
	letter-spacing: 0.1em;
	margin-bottom: .5em;
}

.sec_workstyle .workstyle_list .box .txt p {
	letter-spacing: 0.1em;
	text-align: justify;
	font-feature-settings: "palt";
}

@media screen and (max-width: 768px) {
	.sec_workstyle .ttl2 {
		margin: 7.3vw 0 9.33vw;
	}

	.sec_workstyle .ttl2 span {
		font-size: 7.33vw;
		height: 9.6vw;
		line-height: 9.6vw;
	}

	.sec_workstyle .workstyle_list .box {
		box-shadow: 0 0 1.4vw rgba(0, 0, 0, .15);
		border-radius: 10vw;
		padding: 8vw;
		margin-top: 9vw;
	}

	.sec_workstyle .workstyle_list .box .inner {
		display: block;
	}

	.sec_workstyle .workstyle_list .box .ico {
		display: block;
		margin: 0 auto 8vw;
	}

	.sec_workstyle .workstyle_list .box:nth-child(1) .ico {
		width: 55.46vw;
	}

	.sec_workstyle .workstyle_list .box:nth-child(2) .ico {
		width: 39vw;
	}

	.sec_workstyle .workstyle_list .box:nth-child(3) .ico {
		width: 41vw;
	}

	.sec_workstyle .workstyle_list .box:nth-child(4) .ico {
		width: 36vw;
	}

	.sec_workstyle .workstyle_list .box:nth-child(5) .ico {
		width: 44.26vw;
	}

	.sec_workstyle .workstyle_list .box .txt {
		width: 100%;
	}

	.sec_workstyle .workstyle_list .box .txt .boxttl {
		font-size: 5.2vw;
		line-height: 1.7;
		margin-bottom: .5em;
		white-space: nowrap;
	}

	.sec_workstyle .workstyle_list .box .txt p {
		letter-spacing: 0.1em;
		text-align: justify;
		font-feature-settings: "palt";
	}

}


/* ------------------------------
    application
------------------------------ */
.sec_application {
	background-color: #ee780c;
}

.sec_application .secttl .ttl {
	color: #fff;
}

.sec_application .secttl .ttl::before,
.sec_application .secttl .ttl::after {
	background-image: url(../img/secttl_white.svg);
}

.sec_application .tablewrap table {
	width: 100%;
	border-collapse: collapse;
	background-color: #fff;
	border-bottom: 1px solid #e4e8e9;
}

.sec_application .tablewrap table th,
.sec_application .tablewrap table td {
	border-top: 1px solid #e4e8e9;
	padding: .75em 1.875em;
	text-align: left;
	vertical-align: top;
	font-size: 1.6rem;
	letter-spacing: .18em;
	line-height: 2.25;
	font-feature-settings: "palt";
}

.sec_application .tablewrap table th {
	width: 180px;
	font-weight: 500;
	background-color: #eceeef;
}

.sec_application .tablewrap table tr:nth-of-type(even) th {
	background-color: #f8f9f9;
}

.sec_application .skill {
	margin-top: 50px;
	display: flex;
	justify-content: space-between;
}

.sec_application .skill .box {
	width: 493px;
	background-color: #fff9dd;
	padding: 27px 24px 35px;
}

.sec_application .skill .box .boxttl {
	font-weight: 500;
	font-size: 1.8rem;
	letter-spacing: 0.1em;
	padding-bottom: .75em;
	border-bottom: 1px solid #000;
}

.sec_application .skill .box .list li {
	font-size: 1.6rem;
	line-height: 1.625;
	letter-spacing: 0.06em;
	font-feature-settings: "palt";
	padding-left: 1.4em;
	position: relative;
	margin-top: .5em;
}

.sec_application .skill .box .list li::before {
	content: "";
	width: .9375em;
	height: .9375em;
	border-radius: 50%;
	background-color: #000;
	position: absolute;
	left: 0;
	top: .4em;
}

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

	.sec_application .tablewrap table th,
	.sec_application .tablewrap table td {
		padding: .75em 1em;
		font-size: 3.2vw;
		line-height: 2;
	}

	.sec_application .tablewrap table th {
		width: 7em;
	}


	.sec_application .skill {
		margin-top: 0;
		display: block;
	}

	.sec_application .skill .box {
		width: 100%;
		margin-top: 8vw;
		padding: 5vw;
	}

	.sec_application .skill .box .boxttl {
		font-size: 3.6vw;
	}

	.sec_application .skill .box .list li {
		font-size: 3.2vw;
	}

}


/* ------------------------------
    schedule
------------------------------ */
.sec_schedule {
	background: url(../img/schedule_bg.jpg) no-repeat center top / cover;
}

.sec_schedule .schedule_list {
	width: 710px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.sec_schedule .schedule_list .item {
	width: 199px;
	height: 199px;
	border-radius: 50%;
	background-color: #fff;
	box-shadow: 0 0 7px rgba(0, 0, 0, .15);
	padding: 26px 26px 0;
	text-align: center;
	position: relative;
}


.sec_schedule .schedule_list .item .txt {
	height: 5.8em;
	line-height: 1.55;
	letter-spacing: 0.1em;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;

}

.sec_schedule .schedule_list .item .txt span {
	font-size: 1.6rem;
	letter-spacing: 0.05em;
}

@media screen and (min-width: 769px) {
	.sec_schedule .schedule_list .item:nth-child(n + 4) {
		margin-top: 30px;
	}

	.sec_schedule .schedule_list .item:nth-child(4)::before {
		content: "";
		width: 710px;
		height: 1px;
		background-color: #7f7f7f;
		position: absolute;
		left: 0;
		top: -15px;
	}
}

@media screen and (max-width: 768px) {
	.sec_schedule {
		background: url(../img/schedule_bg_sp.jpg) no-repeat center top / cover;
	}

	.sec_schedule .schedule_list {
		width: 100%;
	}

	.sec_schedule .schedule_list .item {
		width: 39.8vw;
		height: 39.8vw;
		box-shadow: 0 0 1.4vw rgba(0, 0, 0, .15);
		padding: 5.3vw 0 0;
	}

	.sec_schedule .schedule_list .item:nth-child(n + 3) {
		margin-top: 6vw;
	}

	.sec_schedule .schedule_list .item:nth-child(3)::before,
	.sec_schedule .schedule_list .item:nth-child(5)::before {
		content: "";
		width: 84vw;
		height: 1px;
		background-color: #7f7f7f;
		position: absolute;
		left: 0;
		top: -3vw;
	}

	.sec_schedule .schedule_list .item .num img {
		width: auto;
		height: 9.3vw;
	}

	.sec_schedule .schedule_list .item .txt {
		height: 5.8em;
		white-space: nowrap;
	}

	.sec_schedule .schedule_list .item .txt span {
		font-size: 3.2vw;
	}


}


/* ------------------------------
    voice
------------------------------ */
.sec_voice .voice_list {
	display: flex;
	justify-content: space-between;
}

.sec_voice .voice_list .box {
	width: 320px;
	background-color: #fff;
	box-shadow: 0 0 7px rgba(0, 0, 0, .15);
	border-radius: 12px;
	padding: 22px 30px;
}

.sec_voice .voice_list .box .midashi {
	color: #ee780c;
	font-size: 2rem;
	line-height: 1.6;
	letter-spacing: 0.1em;
}

.sec_voice .voice_list .box .txt {
	font-size: 1.6rem;
	letter-spacing: 0.1em;
	font-feature-settings: "palt";
	text-align: justify;
	margin-top: .5em;
}

.sec_voice .voice_list .box .profile {
	display: flex;
	margin-top: 20px;
}

.sec_voice .voice_list .box .profile .img {
	width: 82px;
	height: 82px;
	border-radius: 50%;
	box-shadow: 0 0 7px rgba(0, 0, 0, .15);
	margin-right: 15px;
}

.sec_voice .voice_list .box .profile .txtwrap {
	flex: 1;
}

.sec_voice .voice_list .box .profile .txtwrap .position {
	font-size: 1.4rem;
	line-height: 1;
	margin: .5em 0 .2em;
	letter-spacing: 0.05em;
}

.sec_voice .voice_list .box .profile .txtwrap .name {
	font-size: 2rem;
	letter-spacing: 0.18em;
}

.sec_voice .voice_list .box .profile .txtwrap .name span {
	display: block;
	line-height: 1;
	color: #ee780c;
	font-size: 1.4rem;
	letter-spacing: 0.05em;
}

@media screen and (max-width: 768px) {
	.sec_voice .voice_list {
		display: block;
	}

	.sec_voice .voice_list .box {
		width: 100%;
		box-shadow: 0 0 1.4vw rgba(0, 0, 0, .15);
		border-radius: 8vw;
		padding: 5vw;
	}

	.sec_voice .voice_list .box + .box {
		margin-top: 8vw;
	}

	.sec_voice .voice_list .box .midashi {
		font-size: 4.8vw;
	}

	.sec_voice .voice_list .box .txt {
		font-size: 3.2vw;
	}

	.sec_voice .voice_list .box .profile {
		margin-top: 5vw;
	}

	.sec_voice .voice_list .box .profile .img {
		width: 22vw;
		height: 22vw;
		box-shadow: 0 0 1.4vw rgba(0, 0, 0, .15);
		margin-right: 3vw;
	}


	.sec_voice .voice_list .box .profile .txtwrap .position {
		font-size: 3vw;
	}

	.sec_voice .voice_list .box .profile .txtwrap .name {
		font-size: 4.8vw;
	}

	.sec_voice .voice_list .box .profile .txtwrap .name span {
		font-size: 3vw;
	}

}


/* ------------------------------
    instagram
------------------------------ */
.sec_instagram {
	padding: 58px 0 74px;
	background-color: #fccf48;
	background-image: url(../img/instagram_bg.png);
	background-repeat: no-repeat;
	background-position: center top;
}

.sec_instagram .secttl {
	font-weight: 700;
	font-size: 3.2rem;
}

.sec_instagram .secttl img {
	display: inline-block;
	vertical-align: middle;
	margin-right: .375em;
}

.sec_instagram .instagram_list {
	display: flex;
	justify-content: space-between;
}

@media screen and (max-width: 768px) {
	.sec_instagram {
		padding: 10vw 0;
		background-size: covero;
		background-repeat: no-repeat;
		background-position: left top;
	}

	.sec_instagram .secttl {
		font-weight: 700;
		font-size: 6vw;
	}

	.sec_instagram .secttl img {
		width: 8vw;
	}

	.sec_instagram .instagram_list {
		flex-wrap: wrap;
	}

	.sec_instagram .instagram_list .item {
		width: 48%;
	}

	.sec_instagram .instagram_list .item:nth-child(n + 3) {
		margin-top: 4%;
	}
}


/* ------------------------------
    entry
------------------------------ */
.sec_entry .wpcf7 form .wpcf7-response-output {
	font-size: 1.6rem;
	padding: 1em;
}

.form-item-each {
	max-width: 1010px;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	position: relative;
}

@media screen and (max-width: 768px) {
	.form-item-each {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		margin-bottom: 1rem;
		padding-bottom: 1rem;
	}
}

.form-item-each:after,
.form-item-each:before {
	position: absolute;
	bottom: 0;
	left: 0;
	content: '';
	height: 1px;
	width: 100%;
	background: #fff;
}

.form-item-each:before {
	bottom: 1px;
	background: #B1B2B2;
}

.form-item-each__title {
	width: 240px;
	padding-top: 12px;
	/*	letter-spacing: 0.1em;*/
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

@media screen and (max-width: 768px) {
	.form-item-each__title {
		width: 100%;
		padding-top: 0;
		padding-left: .25em;
		padding-bottom: .5em;
	}
}

.form-item-each__title p {
	font-weight: 500;
	font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
	.form-item-each__title p {
		font-size: 3.6vw;
	}
}

.label-required {
	background: #d40000;
	color: #fff;
	font-size: 1.1rem;
	letter-spacing: 0.1em;
	margin-right: .75em;
	padding: .35em .3em;
	border-radius: 4px;
	line-height: 1;
}

@media screen and (max-width: 768px) {
	.label-required {
		font-size: 2.8vw;
		border-radius: 1vw;
	}
}

.form-item-each__content {
	width: calc(100% - 300px);
	padding-right: 1.5rem;
}


@media screen and (max-width: 768px) {
	.form-item-each__content {
		width: 100%;
		padding-right: 0;
	}
}

.wpcf7-form-control-wrap {
	position: relative;
}

.sec_entry form select {
	width: 100%;
	height: 60px;
	font-weight: 500;
	font-size: 1.6rem;
	background: url(../img/select.png) no-repeat right 10px center, -webkit-gradient(linear, left top, left bottom, color-stop(50%, #f6f6f6), to(#bdbdbd));
	background: url(../img/select.png) no-repeat right 10px center, -webkit-linear-gradient(#f6f6f6 50%, #bdbdbd 100%);
	background: url(../img/select.png) no-repeat right 10px center, -o-linear-gradient(#f6f6f6 50%, #bdbdbd 100%);
	background: url(../img/select.png) no-repeat right 10px center, linear-gradient(#f6f6f6 50%, #bdbdbd 100%);
	border: 1px solid #bfbfc0;
	padding: 1em 4px 1em 1.4em;
	border-radius: 10px;
}

@media screen and (max-width: 768px) {
	.sec_entry form select {
		height: 10vw;
		font-size: 3.6vw;
		padding: .5em 4px .5em 1em;
		border-radius: 2vw;
		background-size: 4vw auto;
	}
}

.sec_entry form input[type=email],
.sec_entry form input[type=tel],
.sec_entry form input[type=text],
.sec_entry form textarea {
	width: 100%;
	height: 60px;
	font-weight: 500;
	font-size: 1.6rem;
	border: 1px solid #bfbfc0;
	padding: 1em 1.4em;
	border-radius: 10px;
}

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

	.sec_entry form input[type=email],
	.sec_entry form input[type=tel],
	.sec_entry form input[type=text],
	.sec_entry form textarea {
		height: 10vw;
		font-size: 3.6vw;
		padding: .5em 1em;
		border-radius: 2vw;
	}
}

::placeholder {
	color: #bfbfc0;
}

/* IE */
:-ms-input-placeholder {
	color: #bfbfc0;
}

/* Edge */
::-ms-input-placeholder {
	color: #bfbfc0;
}

.sec_entry form textarea {
	height: auto;
}

/**/
#accordion {
	border-radius: 10px;
	overflow: hidden;
	margin-top: 11px;
	max-width: 1010px;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	max-width: 800px;
}

@media screen and (max-width: 768px) {
	#accordion {
		border-radius: 2vw;
		margin-top: 3vw;
	}
}

#accordion dt {
	position: relative;
	font-size: 2rem;
	font-weight: bold;
	background-color: #000;
	color: #fff;
	display: flex;
	justify-content: space-between;
	font-weight: bold;
	padding: 0.5em 1em;
	align-items: center;
	cursor: pointer;
}

@media screen and (max-width: 768px) {
	#accordion dt {
		font-size: 4.8vw;
	}
}


#accordion dt::after {
	content: "";
	width: 42px;
	height: 42px;
	display: block;
	background-image: url(../img/acc.png);
	background-repeat: no-repeat;
	background-color: #fff;
	border-radius: 50%;
	background-position: center center;
	transform: rotate(45deg);
	transition: 0.4s ease;
}

@media screen and (max-width: 768px) {
	#accordion dt::after {
		width: 9vw;
		height: 9vw;
		background-size: 4.2vw auto;
	}
}

#accordion dt .out::after {
	content: "詳しく見る";
	position: relative;
	display: block;
	top: 1px;
}

#accordion dt.ac::after {
	transform: rotate(0);
}

#accordion dt.ac .out::after {
	content: "閉じる";
}

#accordion dd {
	font-size: 1.4rem;
	line-height: 2.2;
	background-color: #fff;
	border-top: 2px solid #DEDFDF;
	padding: 30px;
}

@media screen and (max-width: 768px) {
	#accordion dd {
		font-size: 3.2vw;
		padding: 6vw;
	}
}

#accordion dd p {
	font-size: 1.4rem;
	line-height: 2.2;
}

@media screen and (max-width: 768px) {
	#accordion dd p {
		font-size: 3.2vw;
	}
}

#accordion dd h4 {
	font-size: 2.2rem;
	border-bottom: 2px solid #000;
	margin-bottom: 1em;
	font-weight: bold;
	line-height: 1.45;
	padding-bottom: 0.5em;
}

@media screen and (max-width: 768px) {
	#accordion dd h4 {
		font-size: 4.4vw;
	}
}

#accordion dd h5 {
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.45;
}


@media screen and (max-width: 768px) {
	#accordion dd h5 {
		font-size: 4vw;
	}
}

#accordion dd p + h4,
#accordion dd p + h5 {
	padding-top: 2em;
}

#accordion dd ul {
	margin-top: 0.5em;
	margin-bottom: 1em;
}

#accordion dd ul li {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	font-size: 1.4rem;
	line-height: 2.2;
}

@media screen and (max-width: 768px) {
	#accordion dd ul li {
		font-size: 3.2vw;
	}
}

#accordion dd ul li::before {
	content: "";
	width: 6px;
	height: 6px;
	background: #000;
	display: block;
	border-radius: 50%;
	margin-top: 0.85em;
}

@media screen and (max-width: 768px) {
	#accordion dd ul li::before {
		width: .5em;
		height: .5em;
	}
}

#accordion dd ul li span {
	width: calc(100% - 1rem);
}

#accordion dd ul li + li {
	margin-top: 0.5em;
}

#accordion dd ul + h5 {
	padding-top: 1em;
}



.form-item-submit {
	text-align: center;
	margin-top: 7rem;
	max-width: 1010px;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}


@media screen and (max-width: 768px) {
	.form-item-submit {
		margin-top: 3rem;
	}
}

.form-item-submit input[type=submit] {
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0.1em;
	color: #fff;
	background: #ee780c url(../img/icon_mail_wh.svg) no-repeat 100px center;
	-webkit-appearance: none;
	border: none;
	cursor: pointer;
	max-width: 366px;
	width: 100%;
	padding: 0.7em .5em .7em 2em;
	border-radius: 10px;
	box-shadow: 3px 3px 5px rgba(0, 0, 0, .2);
	transition: .3s ease;
}

.form-item-submit input[type=submit]:hover {
	background-color: #f18e36;
}

@media screen and (max-width: 768px) {
	.form-item-submit input[type=submit] {
		font-size: 4.8vw;
		background: #ee780c url(../img/icon_mail_wh.svg) no-repeat 32% center / 7vw auto;
		border-radius: 10px;
		box-shadow: .6vw .6vw 1.2vw rgba(0, 0, 0, .2);
	}
}

.form-item-submit .ajax-loader {
	margin-top: 2rem !important;
}

/* ------------------------------
    company
------------------------------ */
.sec_company {
	background-color: #f0f0f0;
}


.sec_company .tablewrap {
	margin-top: 50px;
}

.sec_company .tablewrap table {
	width: 100%;
	border-collapse: collapse;
	border-bottom: 1px solid #727171;
}

.sec_company .tablewrap table td,
.sec_company .tablewrap table th {
	font-weight: 500;
	border-top: 1px solid #727171;
	padding: .7em .5em;
	text-align: left;
	font-size: 1.8rem;
	letter-spacing: .05em;
	font-feature-settings: "palt";
}

.sec_company .tablewrap table th {
	color: #727171;
	width: 10em;
}

.sec_company .tablewrap table th small,
.sec_company .tablewrap table td small {
	font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
	.sec_company .tablewrap {
		margin-top: 8vw;
	}

	.sec_company .tablewrap table td,
	.sec_company .tablewrap table th {
		font-size: 3.6vw;
	}

	.sec_company .tablewrap table th {
		width: 7em;
		vertical-align: top;
	}

	.sec_company .tablewrap table th small,
	.sec_company .tablewrap table td small {
		font-size: 3vw;
	}

}



/* ------------------------------
    works
------------------------------ */
.sec-works {
	padding-bottom: 50px;
}

@media screen and (max-width: 768px) {
	.sec-works {
		padding-bottom: 5rem;
	}
}

.sec-works .heading {
	max-width: 1010px;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	display: flex;
	justify-content: space-between;
	margin-bottom: 40px;
	align-items: center;
}

@media screen and (max-width: 768px) {
	.sec-works .heading {
		margin-bottom: 0;
		display: block;
		text-align: center;
	}
}

.sec-works__row {
	display: flex;
	justify-content: center;
	padding-bottom: 50px !important;
	margin-bottom: 50px !important;
}

@media screen and (max-width: 768px) {
	.sec-works__row {
		margin-bottom: 1.5rem !important;
	}
}

.sec-works__row figure {
	width: 100%;
	display: block;
	position: relative;
}

.sec-works__row figure figcaption {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	background-color: rgba(0, 0, 0, 0.75);
	font-size: 1.8rem;
	font-weight: bold;
	transition: 0.4s ease;
}

.sec-works__row figure figcaption span {
	display: flex;
	align-items: center;
	justify-content: center;
}

.sec-works__row figure figcaption span::before {
	content: "";
	display: block;
	width: 25px;
	height: 22px;
	background: url(https://crowd.co.jp/engine/wp-content/themes/crowdcojp202008/img/common/icon-more-link.svg) no-repeat center center;
	margin-right: 0.5em;
}

.sec-works__row figure img {
	width: 100%;
	display: block;
}

.sec-works__row .title {
	position: relative;
	padding: 19px;
}

@media screen and (max-width: 768px) {
	.sec-works__row .title {
		padding: 4vw;
	}
}

.sec-works__row .title::after {
	position: absolute;
	right: 5px;
	bottom: 5px;
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 12px 12px;
	border-color: transparent transparent #ee780c transparent;
}

.sec-works__row .title h3 {
	font-size: 1.7rem;
	line-height: 1.8;
	font-weight: bold;
	padding-bottom: 0.5em;
}

@media screen and (max-width: 768px) {
	.sec-works__row .title h3 {
		font-size: 4.2vw;
	}
}

.sec-works__row .title p {
	font-size: 1.6rem;
	line-height: 1.8;
	letter-spacing: 0.085em;
	margin-bottom: 0.5em;
}

@media screen and (max-width: 768px) {
	.sec-works__row .title p {
		font-size: 3.6vw;
	}
}

.sec-works__row .cat ul li {
	font-size: 1.2rem;
	line-height: 1.8;
	border: 1px solid #000;
	display: inline-block;
	border-radius: 1.5em;
	padding: 0.25em 1.25em;
}

@media screen and (max-width: 768px) {
	.sec-works__row .cat ul li {
		font-size: 3vw;
		border-radius: 4vw;
		padding: 0.25rem 1.25rem;
	}
}

.sec-works__row article {
	padding-top: 10px;
}

.sec-works__row article a {
	width: 100%;
	display: block;
}

.sec-works__row article a:hover {
	opacity: 1;
	box-shadow: 0 3px 5px 3px rgba(0, 0, 0, 0.1);
}

.sec-works__row article a:hover figcaption {
	opacity: 1;
	visibility: visible;
}



/*swiper*/
.sec-works .swiper-button-next,
.sec-works .swiper-button-prev {
	width: 40px;
	height: 40px;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	box-shadow: 0 0 2px 3px rgba(0, 0, 0, 0.1);
	transition: 0.2s ease;
}

.sec-works .swiper-button-next:hover,
.sec-works .swiper-button-prev:hover {
	cursor: pointer;
}

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

	.sec-works .swiper-button-next,
	.sec-works .swiper-button-prev {
		display: none;
	}
}

.sec-works .swiper-button-next::before,
.sec-works .swiper-button-prev::before {
	content: "";
	width: 10px;
	height: 10px;
	display: block;
	border-left: 3px solid #000;
	border-bottom: 3px solid #000;
}

.sec-works .swiper-button-next:hover {
	transform: translateX(5px);
}

.sec-works .swiper-button-next::before {
	transform: translateX(-2px) rotate(225deg);
}

.sec-works .swiper-button-prev:hover {
	transform: translateX(-5px);
}

.sec-works .swiper-button-prev::before {
	transform: translateX(2px) rotate(45deg);
}


/* ------------------------------
    newsblog
------------------------------ */
.sec-newsblog {
	background-color: #f0f0f0;
	padding-bottom: 50px;
}


.sec-newsblog .heading {
	max-width: 1010px;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 40px;
	align-items: center;
}

@media screen and (max-width: 768px) {
	.sec-newsblog .heading {
		margin-bottom: 0;
		display: block;
		text-align: center;
	}
}

.sec-newsblog__list {
	max-width: 1010px;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 1rem;
}

@media screen and (max-width: 1000px) {
	.sec-newsblog__list {
		padding-left: 5vw;
		padding-right: 5vw;
	}
}

.sec-newsblog__list li {
	width: 49%;
	position: relative;
	padding-bottom: 30px;
	margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
	.sec-newsblog__list li {
		width: 100%;
		padding-bottom: 1em;
		margin-bottom: 1em;
	}

	.sec-newsblog__list li:nth-child(4),
	.sec-newsblog__list li:nth-child(5),
	.sec-newsblog__list li:nth-child(6) {
		display: none;
	}
}

.sec-newsblog__list li::after {
	position: absolute;
	bottom: 0;
	left: 0;
	content: "";
	width: 100%;
	height: 2px;
	background: #727171;
	transition: 0.2s ease;
}

.sec-newsblog__list li:hover::after {
	background: #ee780c;
	height: 4px;
}

.sec-newsblog__list a {
	display: flex;
	justify-content: space-between;
}

.sec-newsblog__list a figure {
	width: 200px;
	height: 120px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

@media screen and (max-width: 768px) {
	.sec-newsblog__list a figure {
		width: 140px;
		height: 100px;
	}
}

.sec-newsblog__list a .meta {
	width: calc(100% - 220px);
	line-height: 1;
}

@media screen and (max-width: 768px) {
	.sec-newsblog__list a .meta {
		width: calc(100% - 160px);
	}
}

.sec-newsblog__list a .meta .date {
	line-height: 1em;
	font-family: "YakuHanJPs", "Kosugi", sans-serif;
	color: #727171;
	font-size: 1.8rem;
	display: block;
	margin-bottom: 8px;
}

@media screen and (max-width: 768px) {
	.sec-newsblog__list a .meta .date {
		margin-bottom: 1vw;
		font-size: 4vw;
	}
}

.sec-newsblog__list a .meta .cat {
	font-size: 1.2rem;
	border: 1px solid #000;
	display: inline-block;
	line-height: 1.8;
	border-radius: 1.5em;
	padding: 0.25em 1.25em;
	margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
	.sec-newsblog__list a .meta .cat {
		margin-bottom: 1vw;
		font-size: 2.8vw;
		border-radius: 3vw;
		padding: 0 1.0rem;
	}
}

.sec-newsblog__list a .meta .title {
	display: block;
	font-weight: 500;
	font-size: 1.8rem;
	line-height: 1.55;
}

@media screen and (max-width: 768px) {
	.sec-newsblog__list a .meta .title {
		font-size: 3.6vw;
	}
}


/* ----------------------------------------------------------------------------------------------------
*  フッター
* --------------------------------------------------------------------------------------------------*/
footer {
	position: relative;
}

footer * {
	line-height: 1;
}

footer .wrap {
	padding: 74px 0 68px;
	display: flex;
	justify-content: space-between;
}

footer .logo img {
	width: 306px;
}

footer .info {
	width: 590px;
}

footer div.flex {
	margin-bottom: 20px;
}

footer .address {
	font-size: 1.7rem;
	letter-spacing: 0.1em;
	line-height: 1.47;
	margin-top: -.3em;
}

footer .tel,
footer .fax {
	font-size: 2.6rem;
	letter-spacing: 0.1em;
}

footer .tel {
	position: relative;
}

footer .tel::before {
	content: "";
	width: 2px;
	height: 34px;
	background: #000;
	border-radius: 3px;
	transform: rotate(45deg);
	display: inline-block;
	position: absolute;
	right: -22px;
	top: -3px;

}

footer .time {
	text-align: right;
	margin-top: .8em;
	font-size: 1.4rem;
	letter-spacing: 0.05em;
	padding-right: .3em;
}

footer .copy {
	font-size: 1.6rem;
	text-align: center;
	font-weight: 500;
	background: #ee780c;
	color: #fff;
	letter-spacing: 0.1em;
	padding: 1.4em 0 2.6em;
}

@media screen and (max-width: 768px) {
	footer .wrap {
		width: 94%;
		padding: 10vw 0;
		display: block;
	}

	footer .logo {
		width: 38%;
		margin: 0 auto 4vw;
	}

	footer .logo img {
		width: 100%;
	}

	footer .info {
		width: 100%;
	}

	footer div.flex {
		display: block;
		margin-bottom: 3.8vw;
		text-align: center;
	}

	footer div.flex .logo2 {
		width: 40%;
		margin: 0 auto;
	}

	footer div.flex .address {
		text-align: left;
		font-size: 3.8vw;
		margin-top: 3vw;
	}

	footer .tel,
	footer .fax {
		font-size: 4.2vw;
	}

	footer .tel::before {
		width: .5vw;
		height: 5vw;
		right: -3vw;
		top: -.5vw;

	}

	footer .time {
		text-align: left;
		margin-top: 2vw;
		font-size: 3.2vw;
	}

	footer .copy {
		font-size: 2.8vw;
		padding: 1.4em 0;
	}
}





/* ------------------------------
    clearfix
------------------------------ */

.cf:after {
	content: ".";
	display: block;
	height: 0;
	font-size: 0;
	clear: both;
	visibility: hidden;
}

.cf {
	display: inline-block;
}

/* Hides from IE Mac */
* html .cf {
	height: 1%;
}

.cf {
	display: block;
}

/* End Hack */
