@charset "UTF-8";
/* ========================================================================== 
 * Responsive 
 * ========================================================================== */ 
/*PCのみ表示(959px以下非表示)*/  
/*PCのみ表示(640px以下非表示)*/
@media screen and (max-width: 640px) {
	.visible-pc {
		display: none !important;
	}
}
/*SPのみ表示(641px以上非表示)*/
@media screen and (min-width: 641px) {
	.visible-sp {
		display: none !important;
	}
}
/*PCのみ非表示(640px以上非表示)*/
@media screen and (min-width: 640px) {
	.hidden-pc {
		display: none !important;
	}
}
/*SPのみ非表示(641px以下非表示)*/
@media screen and (max-width: 641px) {
	.hidden-sp {
		display: none !important;
	}
}
/*SPのみ非表示(599px以下非表示)*/ @media screen and (max-width: 599px) { 
	.hidden-sp { 
		display: none !important; 
	}  
}
/* ==========================================================================
 * Font face
 * ========================================================================== */
@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 100;
}
@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 200;
}
@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 300;
}
@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 400;
}
@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Bold");
	font-weight: bold;
}

/* ==========================================================================
 * Root
 * ========================================================================== */
*,
::before,
::after {
	background-repeat: no-repeat;
	box-sizing: border-box;
}
html {
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	font-size: 62.5%;
}
body {
	margin: 0;
	font-family: 'Noto Sans JP',"Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", Meiryo, Osaka, sans-serif;
	font-size: 1.6em;
	font-size: 1.8rem;
	line-height: 1.5;
	background-color: #fff;
}

/* ==========================================================================
 * HTML5 display definitions
 * ========================================================================== */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
	display: block;
}
audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}
audio:not([controls]) {
	display: none;
	height: 0;
}

/* ==========================================================================
 * Anchor
 * ========================================================================== */
a:link,
a:visited {
	background-color: transparent;
	color: #4f7aac;
	text-decoration: none;
}
a:active,
a:hover {
	outline: 0;
	text-decoration: underline;
}

/* ==========================================================================
 * Embedded
 * ========================================================================== */
img {
	max-width: 100%;
	height: auto;
	border: 0;
	vertical-align: bottom;
}
svg:not(:root) {
	overflow: hidden;
}

/* ==========================================================================
 * Grouping
 * ========================================================================== */
figure {
	margin: 0;
}
hr {
	box-sizing: content-box;
	height: 0;
	border: none;
	border-top: 1px solid #bbb;
}
dd {
	margin-left: 0;
}

/* ==========================================================================
 * Float
 * ========================================================================== */
.clear {
	clear: both;
}
.clearfix:before,
.clearfix:after {
	content: " ";
	display: table;
}
.clearfix:after {
	clear: both;
}

/* ==========================================================================
 * List
 * ========================================================================== */
ul,
ol {
	padding: 0;
}
ul {
	margin: 0;
	list-style: none;
}
ul.list-disc {
	margin-left: 1.55em;
	list-style: disc;
}
ul.list-annotation {
	margin-left: 1.3em;
}
ul.list-annotation li::before {
	margin-left: -1.3em;
	content: "※\0020";
}
ol {
	margin-left: 1.3em;
}
ol.list-annotation {
	margin-left: 2em;
	padding: 0;
	counter-reset: number;
	list-style: none;
}
ol.list-annotation li::before {
	margin-left: -2em;
	counter-increment: number;
	content: "※"counter(number)"\0020";
}
ul.list-disc li + li,
ul.list-annotation li + li,
ol li + li {
	margin-top: 8px;
}
li {
	list-style: none;
}

/* ==========================================================================
 * Text
 * ========================================================================== */
b,
strong {
	font-weight: bold;
}
mark {
	background: #ff0;
	color: #000;
}
small,
.txt-small{
	font-size: 80%;
}
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sub {
	bottom: -0.25em;
}
sup {
	top: -0.5em;
}
address {
	font-style: normal;
}
h1,
.h1 {
	font-size: 3.2rem;
	line-height: 1.2;
	margin: 0;
	padding-top: 20px;
}
h2,
.h2 {
	font-size: 2.4rem;
	line-height: 1.2;
	margin: 0;
}
h3,
.h3 {
	font-size: 1.8rem;
	line-height: 1.2;
	margin: 0;
}
h4,
.h4 {
	font-size: 1.6rem;
	line-height: 1.2;
	margin: 0;
}
p {
	margin: 0;
}
p + p {
	margin-top: .5em;
	margin-bottom: 0;
}
.txt-left {
	text-align: left;
}
.txt-center {
	text-align: center;
}
.txt-right {
	text-align: right;
}
.txt-unbold {
	font-weight: normal;
}
.txt-bold {
	font-weight: bold;
}
.txt-emphasis {
	color: #e74c3c;
}
.txt-notes {
	color: #7f8c8d;
}
.txt-blue {
	color: #4c79af;
}
.txt-green {
	color: #71bf5c;
}
.txt-pink {
	color: #e4415f;
}
.txt-orange {
	color: #e0690f;
}
.txt-large {
	font-size: 3rem;
}
@media screen and (max-width: 640px) {
	.txt-large {
		font-size: 2.6rem;
	}
}
/* ==========================================================================
 * Table
 * ========================================================================== */
table {
	border-collapse: collapse;
	border-spacing: 0;
}
td,
th {
	padding: 0;
}

/* ==========================================================================
 * Form
 * ========================================================================== */
button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
	border: 1px solid #999;
}
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
	width: 100%;
	padding: 5px;
}
button {
	overflow: visible;
}
button,
select {
	text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}
button[disabled],
html input[disabled] {
	cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}
input {
	line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}
input[type="search"] {
	-webkit-appearance: textfield;
	box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}
textarea {
	overflow: auto;
}

/* ==========================================================================
 * Spacing
 * ========================================================================== */
.margin-none  {margin:           0px !important;}
.padding-none {padding:          0px !important;}

.margin-T0    {margin-top:       0px !important;}
.margin-T5    {margin-top:       5px !important;}
.margin-T10   {margin-top:      10px !important;}
.margin-T15   {margin-top:      15px !important;}
.margin-T20   {margin-top:      20px !important;}
.margin-T25   {margin-top:      25px !important;}
.margin-T30   {margin-top:      30px !important;}
.margin-T35   {margin-top:      35px !important;}
.margin-T40   {margin-top:      40px !important;}
.margin-T45   {margin-top:      45px !important;}
.margin-T50   {margin-top:      50px !important;}
.margin-T60   {margin-top:      60px !important;}
.margin-T70   {margin-top:      70px !important;}
.margin-T80   {margin-top:      80px !important;}
.margin-T90   {margin-top:      90px !important;}
.margin-T100  {margin-top:     100px !important;}

.margin-R0    {margin-right:     0px !important;}
.margin-R5    {margin-right:     5px !important;}
.margin-R10   {margin-right:    10px !important;}
.margin-R15   {margin-right:    15px !important;}
.margin-R20   {margin-right:    20px !important;}

.margin-B0    {margin-bottom:    0px !important;}
.margin-B5    {margin-bottom:    5px !important;}
.margin-B10   {margin-bottom:   10px !important;}
.margin-B15   {margin-bottom:   15px !important;}
.margin-B20   {margin-bottom:   20px !important;}

.margin-L0    {margin-left:      0px !important;}
.margin-L5    {margin-left:      5px !important;}
.margin-L10   {margin-left:     10px !important;}
.margin-L15   {margin-left:     15px !important;}
.margin-L20   {margin-left:     20px !important;}

.padding-T0   {padding-top:      0px !important;}
.padding-T5   {padding-top:      5px !important;}
.padding-T10  {padding-top:     10px !important;}
.padding-T15  {padding-top:     15px !important;}
.padding-T20  {padding-top:     20px !important;}
.padding-T25  {padding-top:     25px !important;}
.padding-T30  {padding-top:     30px !important;}
.padding-T35  {padding-top:     35px !important;}
.padding-T40  {padding-top:     40px !important;}
.padding-T45  {padding-top:     45px !important;}
.padding-T50  {padding-top:     50px !important;}
.padding-T60  {padding-top:     60px !important;}
.padding-T70  {padding-top:     70px !important;}
.padding-T80  {padding-top:     80px !important;}
.padding-T90  {padding-top:     90px !important;}
.padding-T100 {padding-top:    100px !important;}

.padding-R0   {padding-right:    0px !important;}
.padding-R5   {padding-right:    5px !important;}
.padding-R10  {padding-right:   10px !important;}
.padding-R15  {padding-right:   15px !important;}
.padding-R20  {padding-right:   20px !important;}

.padding-B0   {padding-bottom:   0px !important;}
.padding-B5   {padding-bottom:   5px !important;}
.padding-B10  {padding-bottom:  10px !important;}
.padding-B15  {padding-bottom:  15px !important;}
.padding-B20  {padding-bottom:  20px !important;}

.padding-L0   {padding-left:     0px !important;}
.padding-L5   {padding-left:     5px !important;}
.padding-L10  {padding-left:    10px !important;}
.padding-L15  {padding-left:    15px !important;}
.padding-L20  {padding-left:    20px !important;}

/* ==========================================================================
 * Common
 * ========================================================================== */
#page-container {
	max-width: 2000px;
	margin: 0 auto;
}
.inner-width {
	width: 960px;
	margin-right: auto;
	margin-left:  auto;
}
/*-------------------- Back to Top --------------------*/
a.backtotop {
	position: fixed;
	bottom: 5%;
	right: 5%;
	width: 40px;
	height: 40px;
	padding: 38px 0 0;
	background-color: #bbb;
	color: #fff;
	text-align: center;
	font-size: 14px;
	cursor: pointer;
	opacity: 1;
	border-radius: 50%;
	z-index: 100;
}
a.backtotop::before {
	content: "";
	position: absolute;
	top: 10px;
	left: 10px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 10px 17.3px 10px;
	border-color: transparent transparent #ffffff transparent;
}
/*SP*/
@media screen and (max-width: 640px) {
	.inner {
		width: 100%;
	}
	.header-width {
		width: 92%;
		margin-right: auto;
		margin-left:  auto;
	}
	img {
		width: 100%;
	}
	h2 {
		width: 90%;
		margin: 0 auto;
	}
	a.backtotop {
		bottom: 13%;
	}
}
/* ==========================================================================
 * Header
 * ========================================================================== */
header {
	padding: 20px 0;
}
@media screen and (max-width: 640px) {
	header {
		padding: 10px 0;
	}
	header img {
		width: 30%;
	}
}
/* ==========================================================================
 * fv
 * ========================================================================== */
#fv {
	background: url("../images/pc/fv_bg.jpg") no-repeat top;
	min-width: 920px;
}
#fv .fv__list {
	display: flex;
	justify-content: space-around;
	align-items: flex-end;
	padding: 30px 0;
}
.fv__copy__box {
    text-align: center;
}
.fv__copy__subtxt {
	padding-top: 30px;
}
.award__list {
	display: flex;
}
.list-annotation {
	font-size: 1.2rem;
	color: #4a4a4a;
}
.fv__cta {
	margin-bottom: 40px;
}
.fv__cta img:hover {
    opacity: 0.8;
    transform: scale(0.99);
}
@media screen and (max-width: 640px) {
	.inner-width {
		width: 92%;
		margin-right: auto;
		margin-left: auto;
	}
	#fv {background: none;
		min-width: auto;
	}
	#fv .inner-width {
		width: 100%;
	}
	#fv .fv__list {
		display: block;
		padding: 0;
	}
	.fv__img {
		margin: 0 calc(50% - 50vw);
		width: 100vw;
		padding-top: 5px;
	}
	.fv__copy__box {
		background: url(../images/sp/fv_bg.png) no-repeat top center /  cover;
		padding: 10px 0 0;
	}
	.fv__copy__box h1 {
		width: 90%;
		margin: 0 auto;
	}
	.fv__copy__subtxt {
		font-size: 1.4rem;
		padding: 32% 0 10px;
		text-shadow: 2px 2px 10px #fff,
  -2px 2px 10px #fff,
  2px -2px 10px #fff,
  -2px -2px 10px #fff;
	}
	.award__list {
		margin: 0 auto;
		width: 92%;
	}
	.fv__cta {
		margin: 0 auto;
		padding: 20px 0 20px;
		width: 92%;
	}
	.award__list li .list-annotation {
		color: #fff;
	}
}
/* ==========================================================================
 * work
 * ========================================================================== */
#work {
	background: #efefef;
	padding: 0 0 40px;
}
#work h2 {
	text-align: center;
	padding-top: 50px;
}
.work__box--blank,.work__box--veteran {
	display: flex;
	background: #fff;
	border-radius: 10px;
	margin: 30px 0;
	padding: 20px;
	margin-right: 10px;
    margin-left: 10px;
}
.work__txtbox {
	padding-left: 30px;
	width: 50%;
}
.work__txtbox .txt-notes {
	text-align: center;
	font-size: 1.2rem;
}
.dl__flex {
	display: flex;
}
.dl__flex--detail {
	font-size: 1.6rem;
	border-top: 1px dotted #282a32;
	margin-top: 5px;
	padding-top: 5px;
}
.work__monthly {
	text-align: center;
	color: #e0690f;
	font-weight: bold;
	font-size: 2.6rem;
	border: 2px solid #e0690f;
	border-radius: 100px;
	margin-top: 15px;
}
.font__middle {
	font-size: 4.4rem;
	line-height: 1em;
}
.work__txtbox dl {
	margin: 0;
}
.work__txtbox dl div+div {
	margin-top: 20px;
}
.dl__flex dt{
	background: #f0f0f1;
    padding: 5px 6px;
    text-align: center;
    font-size: 1.2rem;
    border-radius: 6px;
    width: 70px;
}
.dl__flex dd {
	padding-left: 20px;
	width: 100%;
}
.work__txtbox ul {
	display: flex;
	margin-top: 20px;
}
.work__txtbox ul li+li {
	margin-left: 10px;
}
.work-summary {
	background: url("../images/pc/work_illust.png") no-repeat 70px bottom;
	font-size: 2.6rem;
	font-weight: bold;
	padding: 20px 0 20px 420px;
	text-align: center;
}
.work-summary p {
	margin: 0 0 20px;
}
.work-subTxt , .work-subTxt2{
    text-align: center;
    font-size: 3.0rem;
    font-weight: bold;
    padding-top: 50px;
}
.case__btn {
    display: flex;
    justify-content: space-evenly;
}
.case__btn li {
	width: 217px;
	padding: 15px;
	background: #67696f;
	font-size: 2.6rem;
	font-weight: bold;
	text-align: center;
	color: #fff;
	border-radius: 10px;
	cursor: pointer;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 6px 0px;
}
.case__btn li + li {
	margin-top: 0;
}
.arrow-box {
    position: relative;
}
.case_arrow li:first-child {
    position: absolute;
    left: 1%;
    top: 50%;
    transform: translateY(-50%);
}
.case_arrow li:last-child {
    position: absolute;
    right: 1%;
    top: 50%;
    transform: translateY(-50%);
}
.case__btn--box1.active {
    background-color: #e0690f;
}
.case__btn--box2.active {
    background-color: #cc334d;
}
@media screen and (max-width: 640px) {
	.work__txtbox {
		padding-left: 0;
		width: 100%;
	}
	.work__wrap {
		padding-bottom: 20px;
	}
	.dl__flex {
		align-items: normal;
	}
	.dl__flex dt {
		width: 75px;
	}
	.dl__flex dd {
		width: 100%;
	}
	.work__txtbox dl {
		padding-top: 20px;
	}
	.work__txtbox dl div+div {
		margin-top: 10px;
	}
	.work__txtbox ul {
		justify-content: center;
	}
	.work-summary {
		background: none;
		font-size: 2rem;
		padding: 0;
	}
	.case__btn {
		margin-left: 0;
		display: flex;
		justify-content: space-between;
	}
	.case__btn li {
		width: 32%;
		padding: 15px 25px;
		font-size: 1.6rem;
	}
	.work-subTxt {
		font-size: 2.4rem;
	}
	.work-subTxt2 {
		font-size: 2.4rem;
		padding-top: 0;
	}
	.case-content li:first-child {
		display: block;
	}
	.case_arrow li:first-child {
		width: 8%;
		opacity: 70%;
	}
	.case_arrow li:last-child {
		width: 8%;
		opacity: 70%;
	}
	.work__box--blank,.work__box--veteran {
		margin: 40px 0;
        margin-right: 10px;
        margin-left: 10px;
	}
}
/* ==========================================================================
 * cta
 * ========================================================================== */
.cta {
	background: #9d323d;
	text-align: center;
	padding: 50px 0;
}
.cta__txt {
	color: #fff;
}
.main__cta img:hover {
    opacity: 0.8;
    transform: scale(0.99);
}
/* ==========================================================================
 * reason
 * ========================================================================== */
#reason {
    text-align: center;
    padding: 50px 0;
    background-position-y: 1130px;
}
#reason h3 {
	padding-top: 50px;
}
.reason__list {
	margin: 0;
}
.reason__txt {
	font-size: 2.4rem;
	padding-top: 40px;
	text-align: center;
}
.reason-point {
	text-align: center;
}
.reason-topclass {
	margin: 30px auto 30px;
	text-align: center;
}
.reason__subtxt {
	margin-top: 250px;
	font-size: 3.6rem;
}
.reason-place__txt {
	margin: 0 0 20px;
}
.reason-place__list {
	display: flex;
	justify-content: center;
}
.reason-place__list li {
	margin: 0 10px 0 0;
}
.reason-place__list li:last-child {
	margin: 0;
}
.reason-place__list li span {
	background: #4c79b0;
	border-radius: 50px;
	color: #fff;
	font-size: 2.4rem;
	padding: 5px 30px;
}
.reason__brand {
	display: flex;
	justify-content: center;
}
.reason2__txt,
.reason3__txt {
	padding-top: 30px;
}
.reason2__flex {
	display: flex;
	justify-content: space-between;
}
.reason2__flex li {
	margin-top: 0;
	margin-top: 20px;
	width: 460px;
	background: #efefef;
	border-radius: 10px;
	padding: 30px;
}
.reason2__boxttl {
	font-size: 2.4rem;
	font-weight: bold;
}
.reason2__boxtxt {
	text-align: left;
}
.reason2__flex figure {
	padding-top: 20px;
}
.reason2__benefit {
	padding-top: 60px;
}
.reason3__flex {
	display: flex;
	justify-content: space-between;
}
.reason3__box {
	margin-top: 0;
	margin-top: 20px;
	width: 460px;
	background: #efefef;
	border-radius: 10px;
	padding: 30px;
}
.reason3__box2 {
	background: #e0690f;
	color: #fff;
}
.reason3__boxttl {
	font-size: 2.4rem;
	font-weight: bold;
}
.reason3__boxlist {
	padding: 30px 0;
	text-align: left;
	font-size: 3.0rem;
}
.blue-mark {
	background: linear-gradient(transparent 90%, #56bded 60%);
    background-position-y: -7px;
	font-weight: bold;
}
.orange-mark {
	background: linear-gradient(transparent 90%, #ff7a12 60%);
    background-position-y: -7px;
	font-weight: bold;
}
.arrow {
    width: 0;
    height: 0;
    border-left: 120px solid transparent;
    border-right: 120px solid transparent;
    border-top: 50px solid #e0690f;
    margin: 0 auto;
    margin-top: 30px;
}
.counseling__txt {
	font-size: 4.0rem;
	font-weight: bold;
	padding-top: 10px;
}
.counseling__box {
	display: flex;
	justify-content: center;
    align-items: center;
	padding-top: 20px;
}
.counseling__box__img {
	padding-right: 50px;
}
.counseling__contact {
	display: flex;
	justify-content: space-evenly;
    align-items: flex-end;
}
.counseling__contact__txt {
	font-size: 2.0rem;
}
.reason3-company-compliance {
	border: 2px solid #4c79b0;
	border-right: 4px solid #4c79b0;
	border-bottom: 4px solid #4c79b0;
	border-radius: 10px;
	font-size: 2.6rem;
	font-weight: bold;
	margin: 40px auto 0;
	padding: 20px 10px;
	width: 750px;
}
.reason3-company-compliance p {
	background: url("../images/pc/company_compliance.jpg") no-repeat right;
	padding: 10px 120px 10px 0;
	text-align: center;
}
.choice__sub__txt {
	width: 610px;
	margin: 0 auto;
	margin-top: 20px;
}
.choice__logo__box {
	background: #efefef;
	padding-top: 10px;
    padding-bottom: 30px;
    border-radius: 10px;
	margin-top: 30px;
}
@media screen and (max-width: 640px) {
	#reason {
		background: none;
	}
	#reason h2 {
		width: 90%;
	}
	.reason__box h3 {
		width: 90%;
		margin: 0 auto;
	}
	.reason__txt {
		font-size: 1.6rem;
		padding-top: 20px;
	}
	.reason__pic {
		padding-top: 30px;
	}
	.reason-topclass {
		margin: 20px auto 20px;
	}
	.reason__subtxt {
		margin: 0;
		padding-top: 30px;
		font-size: 1.6rem;
	}
	.reason .txt-bold {
		font-size: 2.4rem;
	}
	.reason-place__list {
		flex-wrap: wrap;
		margin: 0 0 20px;
	}
	.reason-place__list li {
		margin: 0 10px 0 0;
		width: calc(50% - 10px);
	}
	.reason-place__list li:first-child {
		margin: 0 10px 10px 0;
	}
	.reason-place__list li:nth-child(2) {
		margin: 0 0 10px;
	}
	.reason-place__list li:last-child {
		margin: 0;
	}
	.reason-place__list li span {
		display: inline-block;
		font-size: 2rem;
		padding: 5px 0;
		width: 100%;
	}
	.reason__brand {
		align-items: flex-end;
	}
	.reason__box2 {
		margin: 30px 0 0;
	}
	.reason__box2 h3 {
		width: 65%;
	}
	.reason2__txt {
		text-align: left;
	}
	.reason2__flex {
		display: block;
	}
	.reason2__flex li {
		width: auto;
		padding: 5%;
	}
	.reason2__flex li .list-annotation {
		padding-top: 10px;
	}
	.reason2__boxttl {
		padding: 10px 0;
	}
	.reason2__benefit {
		padding-top: 0px;
	}
	.reason__box3 h3 {
		width: 45%;
	}
	.reason3__txt {
		text-align: left;
	}
	.reason3__flex {
		display: block;
	}
	.reason3__box {
		width: auto;
		padding: 5%;
	}
	.reason3__boxttl {
		padding-top: 20px;
	}
	.reason3__boxlist {
		font-size: 2.4rem;
		text-align: center;
	}
	.reason3__boxlist li+li {
		padding-top: 10px;
	}
	.reason3-company-compliance {
		font-size: 1.6rem;
		width: 100%;
	}
	.reason3-company-compliance p {
		background: url("../images/sp/company_compliance.jpg") no-repeat right / 75px;
		padding: 0 75px 0 0;
	}
	.arrow {
		border-left: 60px solid transparent;
		border-right: 60px solid transparent;
		border-top: 35px solid #e0690f;
	}
	.counseling__txt {
		font-size: 2.4rem;
	}
	.counseling__box {
		flex-direction: column-reverse;
	}
	.counseling__contact__txt {
		font-size: 1.6rem;
	}
	.counseling__contact {
		justify-content: space-between;
	}
	.counseling__box__img {
		padding-right: 0;
		width: 80%;
	}
	.counseling__contact li figure img {
		width: 85%;
	}
	.blue-mark {
		background: linear-gradient(transparent 85%, #56bded 60%);
		background-position-y: 0px;
		font-weight: bold;
	}
	.orange-mark {
		background: linear-gradient(transparent 85%, #ff7a12 60%);
		background-position-y: 0px;
		font-weight: bold;
	}
	.choice__sub__txt {
		width: auto;
		text-align: left;
	}
}
/* ==========================================================================
 * ugc
 * ========================================================================== */
#ugc {
	text-align: center;
	padding: 50px 0;
}
.ugc__list li {
	margin-top: 30px;
}
@media screen and (max-width: 640px) {
	.ugc__list {
		padding-top: 20px;
	}
}
/* ==========================================================================
 * flow
 * ========================================================================== */
#flow {
	background: #efefef;
}
#flow h2 {
	text-align: center;
	padding-top: 50px;
}
.flow__list {
	display: flex;
	flex-wrap: wrap;
    justify-content: center;
	padding-top: 50px;
	padding-bottom: 50px;
}
.flow__list li+li {
	padding-left: 24px;
	position: relative;
}
.flow__list__ttl {
	position: relative;
    display: flex;
    align-items: center;
    background: #e0690f;
    color: #fff;
    padding: 10px;
    padding-left: 100px;
    font-size: 2.0rem;
    border-radius: 10px 10px 0 0;
}
.flow__list__ttl img {
	position: absolute;
	left: 20px;
}
.flow__list li:nth-child(n+3) {
	margin-top: 30px;
}
.flow__list__img img {
	border-radius: 0 0 10px 10px;
}
.flow__list li+li::after {
	content: "";
    background: url(../images/pc/icon_arrow_step.png) no-repeat;
    display: inline-block;
    width: 40px;
    height: 40px;
	position: absolute;
	top: 75px;
    left: -8px;
}
@media screen and (max-width: 640px) {
	.flow__list__ttl img {
		width: 20%;
	}
	.flow__list li+li {
		padding-left: 0;
		padding-top: 30px;
	}
	.flow__list li+li::after {
		transform: translate(-50%) rotate(90deg)!important;
		top: -20px;
		left: 50%;
	}
	.flow__list li:nth-child(n+4) {
		margin-top: 0;
	}
}
/* ==========================================================================
 * faq
 * ========================================================================== */
#faq h2 {
	padding-top: 100px;
	text-align: center;
}
#faq ul {
	margin-top: 50px;
    margin-bottom: 50px;
}
#faq ul li+li{
	margin-top: 30px;
}
.faq__qaList dt {
	background: url("../images/pc/qa_q.png") left top no-repeat;
	background-color: #e0690f;
	background-position: 20px 50%;
	background-size: 3%;
	border-radius: 10px;
	font-size: 2.4rem;
	font-weight: bold;
	color: #fff;
	padding: 20px 90px 20px 75px;
	position: relative;
	cursor: pointer;
}
.faq__qaList dt.open::before {
    content: "";
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 15%;
    right: 1.5em;
    width: 20px;
    height: 20px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(135deg);
}
.faq__qaList dt.close::after {
    content: "";
    margin: auto;
    position: absolute;
    top: 0;
    bottom: -10%;
    right: 1.5em;
    width: 20px;
    height: 20px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(-45deg);
}
.faq__qaList dd {
	background: url("../images/pc/qa_a.png") left top no-repeat;
	background-size: 3%;
	background-position: 20px 50%;
	font-size: 1.8rem;
    padding: 30px 20px 30px 75px;
	display: none;
}
@media screen and (max-width: 640px) {
	#faq h2 {
		padding-top: 50px;
	}
	#faq ul {
		margin-top: 0;
	}
	.faq__qaList dt {
		font-size: 2.0rem;
		padding: 10px 57px 10px 64px;
		background-size: 25px;
	}
	.faq__qaList dd {
		padding: 30px 20px 30px 64px;
		background-size: 25px;
	}
	.faq__qaList dt.open::before {
		right: 1em;
	}
	.faq__qaList dt.close::after {
		right: 1em;
	}
	#faq ul li+li {
		margin-top: 10px;
	}
}
/* ==========================================================================
 * footer
 * ========================================================================== */
footer {
	font-size: 1.2rem;
	color: #fff;
	background: #9d323d;
	padding: 30px 60px;
	display: flex;
	justify-content: space-between;
}
footer ul {
	display: flex;
}
footer ul li {
	padding: 0px 10px;
}
footer ul li+li  {
	border-left: 1px solid;
}
footer a:link, footer a:visited {
	color: #fff;
}
@media screen and (max-width: 640px) {
	footer {
		display: block;
		padding: 30px 5%;
		font-size: 1.4rem;
		margin-bottom: 18%;
	}
	footer ul {
		display: block;
	}
	footer ul li {
		display: inline;
	}
	.copyright {
		padding-top: 20px;
	}
}
/*-------------------- CTA CIRCLE --------------------*/
.float-cta__circle {
	position: fixed;
	bottom: 15%;
	right: 2%;
	animation: .5s bound-anim ease-in infinite alternate;
	z-index: 10;
	display: none;
}
@keyframes bound-anim {
	0%{transform:translateY(0px);}
	100%{transform: translateY(15px);}
}
@media screen and (max-width: 640px) {
	.float-cta__circle {
		display: none !important;
	}
}
/* ==========================================================================
 * Float-cta
 * ========================================================================== */
.sp__float {
	background: #9d323d;
	padding: 10px 0;
	position: fixed;
	bottom: 0;
	z-index: 10;
	width: 100%;
}
.sp__float .inner-width {
	width: 84%;
}
@media screen and (max-width: 640px) {
	.float-cta a:hover {
		opacity: 1;
	}
}
/* ==========================================================================
 * slick-slide
 * ========================================================================== */
.slick-dots {
	bottom: 410px;
	display: flex;
    justify-content: space-evenly;
}
.slick-dots li {
    width: 200px;
}
.slick-dots li button:before {
	font-size: 2.4rem;
	width: auto;
	display: block;
    margin: auto;
	width: 200px;
    height: 70px;
    border-radius: 10px;
    background: #67696f;
    font-weight: bold;
	padding-top: 23px;
	opacity: .5;
	color: #fff;
}
.slick-dots li.slick-active button:before {
    opacity: 1;
    color: white;
	background: #e0690f;
}
.slick-dots:nth-child(1) li.slick-active button:before {
	background: #e4415f;
}
.slick-dots li:nth-child(1) button:before {
	content: '求人例1';
}
.slick-dots li:nth-child(2) button:before {
	content: '求人例2';
}
.slick-dots li:nth-child(3) button:before {
	content: '求人例3';
}
.slick-prev {
	left: -10px;
	z-index: 100;
}
.slick-next {
    right: 0px;
}
.slick-prev:before, .slick-next:before {
	font-size: 30px;
    font-weight: bold;
    color: #e0690f;
}
.slick-initialized .slick-slide {
    display: flex;
}
.slick-dotted.slick-slider {
    margin-top: 70px;
}
@media screen and (max-width: 640px) {
	.slick-initialized .slick-slide {
		display: block;
	}
	.slick-dots {
		bottom: 100%;
	}
	.slick-dots li button:before {
		font-size: 1.8rem;
		width: 100%;
		height: 50px;
		padding-top: 14px;
	}
	.slick-dotted.slick-slider {
		margin-top: 20px;
		margin-bottom: 0;
	}
}
/* ==========================================================================
 * 2025.5.30
 * ========================================================================== */
.follow__excellent {
    padding-top: 50px;
}
@media screen and (min-width: 640px) and (max-width: 995px) {
	#page-container ,#fv{
		 min-width: 610px;
		 width: 100%;
	}
	.inner-width{
		width: 100%;
	}
	.work__wrap ,.reason-topclass ,.ugc__list{
		padding:10px;
	}
	.reason2__flex ,.reason3__flex ,.counseling__box{
		padding:10px;
		gap:10px;
	}
	.flow__list{
		width: 50%;
		margin: 0 auto;
	}
	.flow__list li+li::after {
        transform: translate(-50%) rotate(90deg) !important;
        top: -20px;
        left: 50%;
    }
    .flow__list__ttl img {
        width: 20%;
	}
	.flow__list li+li {
        padding-left: 0;
        padding-top: 30px;
    }
	.flow__list li:nth-child(n+4) {
	    margin-top: 0px;
	}
	#faq ul {
		padding:10px;
	}
	.work__txtbox {
		padding-left: 0;
		width: 100%;
	}
	.work__wrap {
		padding-bottom: 20px;
	}
	.dl__flex {
		align-items: normal;
	}
	.dl__flex dt {
		width: 75px;
	}
	.dl__flex dd {
		width: 100%;
	}
	.work__txtbox dl {
		padding-top: 20px;
	}
	.work__txtbox dl div+div {
		margin-top: 10px;
	}
	.work__txtbox ul {
		justify-content: center;
	}
	.slick-initialized .slick-slide {
		display: block;
	}
	.slick-dots {
		bottom: 100%;
	}
	.slick-dots li button:before {
		font-size: 1.8rem;
		width: 100%;
		height: 50px;
		padding-top: 14px;
	}
	.slick-dotted.slick-slider {
		margin-top: 20px;
		margin-bottom: 0;
	}
	.work__box--blank, .work__box--veteran{
		width:600px;
	}
	.work__box--blank picture img,.work__box--veteran picture img{
		margin-left: auto;
		margin-right: auto;
	}
	.slick-prev {
	    left: 0px;
	}
	.slick-next {
	    right: 10px;
	}
	.slick-dots {
	    width: calc(100% - 20px);
	}
	.slick-prev, .slick-next {
	    width: 30px !important;
	    height: 30px !important;
	}
}
