@charset "utf8";
/*=============================
	- font-style
	- 汎用 color & background
	- 汎用 wrap & title
	- top.css  TOPページCSS
==============================*/

/*----------------------------------------------------
	font-style
----------------------------------------------------*/
/*  全体 font  */
html {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.mincho {
  font-family: "Noto Serif JP", serif;
}

/*----------------------------------------------------
	汎用 color & background
----------------------------------------------------*/
/* color */
.white {
  color: #fff;
}
.base_color01 {
  /*--メイン文字カラー--*/
  color: #333;
}
.base_back01 {
  /*--メイン背景カラー--*/
  background: #fff;
}
.point_color01 {
  /*--ポイント文字カラー ブルー --*/
  color: #19257d;
}
.point_color02 {
	color: #333;
}
.point_back01 {
  /*--ポイント背景カラー ブルー --*/
  background: #19257d;
}
.point_back02 {
  /*--ポイント背景カラー 薄いグレー--*/
  background: #f3f4fd;
}


/*----------------------------------------------------
	汎用 buttton
----------------------------------------------------*/
.btn01 {
  display: inline-block;
  text-align: center;
  min-width: 320px;
  letter-spacing: 0.05em;
  border-radius: 50px;
  padding: 22px 0;
  margin-left: auto;
  margin-right: auto;
}
.btn02 {
  display: inline-block;
  text-align: center;
  font-size: 18px;
  letter-spacing: 0.05em;
  width: 310px;
  border-radius: 50px;
  padding: 22px 0;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
.btn02::after {
	content: "";
	display: inline-block;
	width: 26px;
	height: 13px;
	background: url("../images/btn_arrow.png") no-repeat;
	background-size: cover;
	position: absolute;
    top: 36%;
    right: 1em;
}
@media screen and (max-width:767px) {
  .btn01 {
    width: 100%;
    max-width: 100%;
    min-width: auto;
    border-radius: 100px;
  }
  .btn02 {
	width: 77%;
	min-width: inherit;
	font-size: 15px;
	padding: 15px 0;
  }
}

/*----------------------------------------------------
	汎用 wrap & title
----------------------------------------------------*/
/*  width 管理  */
.mywidth {
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width:767px) {
  .mywidth {
    padding-left: 2.5vw;
    padding-right: 2.5vw;
  }
}

/*  メインコンテンツwrap   */
#main-wrapp {
  overflow-x: hidden;
}
.home section {
	padding: 5em 0;
}
@media screen and (max-width:767px) {
	.home section {
		padding: 2.5em 0;
	}
}

/* title */
.content_title02 {
    font-family: "Noto Serif JP", serif;
    height: 136px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.content_title02::before {
    font-size: 136px;
    color: #e7e9f9;
    font-weight: 300;
    line-height: 1.0em;
    white-space: nowrap;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.content_title02 h2 {
    color: #111;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
	position: relative;
}

.content_title03 {
  width: fit-content;
  margin: 0 auto 30px;
  border-bottom: 1px solid #19257d;
  position: relative;
}
.content_title03 h3 {
  font-family: "Noto Serif JP", serif;
  color: #111;
  font-size: 24px;
  line-height: 1.8em;
  font-weight: bold;
  padding: 0 0.5em;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.content_title03 h3::before {
	content: attr(data-text) "";
    font-size: 24px;
    color: #19257d;
    font-weight: normal;
    line-height: 1.0em;
    font-family: "Noto Serif", serif;
    margin-bottom: 5px;
}
@media screen and (max-width:767px) {
	
	.content_title02 { height: 16vw; }
	.content_title02::before { font-size: 16vw; }
	.content_title02 h2 { font-size: 24px; }
	
	.content_title03 h3 { font-size: 20px; }
	.content_title03 h3::before {
		font-size: 18px;
		margin-bottom: 3px;
	}
}


.ellipsis01 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.ellipsis02 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.ellipsis03 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}


/*----------------------------------------------------
	top.css  TOPページCSS
----------------------------------------------------*/
/*  トップheader  */
.home #header {
    background: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width:767px) {
	.home #header { background: #fff; }
}

/*  main_v  */
.main_v {
	padding-bottom: 28.7em;
	background: #19267d;
	background: -moz-linear-gradient( #3e98dd 0%, #19267d 100%);
	background: -webkit-gradient(linear, left top, left bottom, from(#3e98dd), to(#19267d));
	background: -webkit-linear-gradient( #3e98dd 0%, #19267d 100%);
	background: -o-linear-gradient( #3e98dd 0%, #19267d 100%);
	background: linear-gradient( #3e98dd 0%, #19267d 100%);
	position: relative;
}
.main_v::before,
.main_v::after {
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	height: 930px;
}
.main_v::before {
	width: 890px;
	background: url("../images/mv_01.png") no-repeat;
	background-size: cover;
}
.main_v::after {
	width: 854px;
	background: url("../images/mv_02.png") no-repeat;
	background-size: cover;
	right: 0;
}
.main_v .main_title_wrap {
	margin-bottom: 30px;
	position: relative;
    z-index: 1;
}
.main_v .main_title_wrap::before {
	content: "";
	display: inline-block;
	width: 608px;
	height: 529px;
	background: url("../images/mv_back.png") no-repeat;
	background-size: cover;
    position: absolute;
	top: 13%;
    left: 50%;
    transform: translateX(-50%);
}
.main_v .main_title {
    text-align: center;
    font-size: 46px;
	line-height: 1.0em;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.8);
	margin-top: 50px;
}
.main_v .main_title_wrap figure {
    max-width: 542px;
    margin: 10px auto 0;
}
.main_v .quote_text {
    z-index: 1;
    position: absolute;
    bottom: 0.5em;
    right: 0.5em;
}
@media screen and (max-width:1630px) {
	
}
@media screen and (max-width:1280px) {
	.main_v {
		padding-bottom: 0;
		height: 57.45vw;
	}
	.main_v::before,
	.main_v::after {
		top: inherit;
		bottom: 0;
		height: 50vw;
	}
	.main_v::before {
		width: 50vw;
		background-size: contain;
	}
	.main_v::after {
		width: 46vw;
		background-size: contain;
	}
}
@media screen and (max-width:767px) {
	.main_v { 
		height: auto;
		margin-top: 50px;
	}
	.main_v::before,
	.main_v::after {
		bottom: inherit;
		top: 0;
	}
	.main_v #header + .mywidth::before {
		content: "";
		display: inline-block;
		background: rgba(255,255,255,0.6);
		width: 100%;
		height: 100%;
	}
	.main_v .main_title_wrap {
        padding-top: 10vw;
        padding-bottom: 0;
        margin-bottom: 20px;
		z-index: 1;
	}
	.main_v .main_title_wrap::before {
		width: 40vw;
		height: 40vw;
		top: 0;
	}
	.main_v .main_title {
		font-size: 3.75vw;
		margin-top: 0;
	}
	.main_v .main_title_wrap figure { width: 60%; }
    
    .main_v .quote_text {
        text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.8);
        margin-top: 10px;
        position: static;
        text-align: right;
    }
	
}


.mv_form {
	width: 100%;
	max-width: 650px;
    padding: 0 0;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.mv_form form {
    display: flex;
    justify-content: center;
    align-items: center;
}
.mv_form_select {
    width: 200px;
    height: 55px;
    font-size: 15px;
    padding: 0.5em 0.75em;
    background: url(../images/select_arrow.png) no-repeat #fff;
    background-position: 95% center;
	border: 1px solid #666;
    border-radius: 0;
    cursor: pointer;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.mv_form form img {
    width: 26px;
    height: auto;
    margin: 0 0.75em;
}
.mv_form_input,
.mv_form_submit { vertical-align:middle; }
.mv_form_input {
	width:65%;
	height: 53px;
	font-size: 18px;
}
.mv_form_submit {
	width: 130px;
    letter-spacing: 0.25em;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    height: 55px;
    border: none;
    border-radius: 50px;
    background: #db0010;
	margin-left: 1em;
	cursor: pointer;
    box-sizing: border-box;
}
/* spview */
@media screen and (max-width:767px) {
	.mv_form {
		padding: 0 0 20px;
		z-index: inherit;
	}
	.mv_form form {
		width: 100%;
        flex-wrap: wrap;
	}
	.mv_form_select {
		width: calc((100% - 34px) / 2);
		height: 50px;
		font-size: 16px;
		padding: 0.5em 0.5em;
	}
	.mv_form form img {
		width: 20px;
		margin: 0 7px;
	}
	.mv_form_input {
		width:63%;
		height: 43px;
		float: left;
		margin-bottom:0.5em;
		font-size: 15px;
	}
	.mv_form_submit {
		font-size: 16px;
        height: 50px;
        margin-top: 10px;
	}
}

/*  slick  */
@media screen and (max-width:767px) {
	.home .slick-prev,
	.home .slick-next {
        width: 30px;
        height: 30px;
    }
	.home .slick-prev { left: -15px; }
	.home .slick-next { right: -15px; }
	.home .slick-prev:before, 
	.home .slick-next:before {
		background: url(../images/arrow-slide.png) no-repeat center / contain;
		width: 30px;
		height: 30px;
	}
}


/*  kyujin_list  */
.kyujin_list .box {
    /*width: calc((100% - 60px) / 4);*/
    margin: 10px 10px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
}
.kyujin_list .box figure {
	width: 100%;
	height: 200px;
}
.kyujin_list .box figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.kyujin_list .box figure figcaption {
	font-size: 13px;
	padding: 3px 0.75em;
	position: absolute;
	top: 0;
	right: 0;
}
.kyujin_list .box .inner {
    padding: 0.5em 0.75em;
	background: #fff;
}
.kyujin_list .box .company {
    font-size: 14px;
    margin-bottom: 5px;
}
.kyujin_list .box .title {
    font-size: 14px;
    line-height: 1.6em;
}
@media screen and (max-width:767px) {
	.kyujin_list .box figure { height: 30vw; }
	.kyujin_list .box figure figcaption {
		font-size: 10px;
		line-height: 1.4em;
	}
	.kyujin_list .box .inner {
		padding: 0.5em 0.5em;
	}
	.kyujin_list .box .company { font-size: 13px; }
	.kyujin_list .box .title { font-size: 13px; }
}


/*  content01  */
.content01 {
    padding: 0 0!important;
    margin-top: -17em;
}
.content01 .content_title03 {
	border-bottom: 1px solid #fff;
}
.content01 .content_title03 h3 { color: #fff; }
.content01 .content_title03 h3::before { color: #fff; }
@media screen and (max-width:767px) {
	.content01 {
		padding: 2.5em 0 0!important;
		margin-top: 0;
	}
	.content01 .content_title03 {
		border-bottom: 1px solid #19257d;
	}
	.content01 .content_title03 h3 { color: #111; }
	.content01 .content_title03 h3::before { color: #19257d; }
}


/*  content02  */
.content02 {}
.content02 .content_title02::before { content: "Job Search"; }

.content02 .outer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5em 1.5em;
}
.content02 .inner:nth-of-type(1) {
    grid-column: 1 / 2;
    /* grid-row: 1 / 5; */
}
.content02 .inner:nth-of-type(2) {
    grid-column: 2 / 3;
}
.content02 .inner:nth-of-type(3) {
    grid-column: 1 / 3;
}
@media screen and (max-width:767px) {
  .content02 .outer {
	grid-template-columns: auto;
	gap: 2em 0;
  }
  .content02 .inner:nth-of-type(1),
  .content02 .inner:nth-of-type(2),
  .content02 .inner:nth-of-type(3) {
	width: 100%;
	grid-column: inherit;
  }
}
/*エリアから探す*/
.content02 .area { position: relative; }
.content02 .area .map {
  width: 470px;
  height: 381px;
  position: relative;
}
.content02 .area .map ul {
  width: 470px;
  height: 381px;
  background: url(../images/map.png) no-repeat center / cover;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.content02 .area .map a {
  color: #19257d;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  font-feature-settings: "palt";
  letter-spacing: 0.08em;
  text-align: center;
  background: #fff;
  border: solid 1px #19257d;
  border-radius: 20px;
  padding: 8px 20px;
  min-width: 140px;
  display: inline-block;
}
.content02 .area .map li { position: absolute; }
.content02 .area .map .map_01 {
  top: 110px;
  right: 0;
}
.content02 .area .map .map_02 {
  top: 230px;
  right: 20px;
}
.content02 .area .map .map_03 {
  top: 150px;
  left: 105px;
}
.content02 .area .map .map_04 {
  bottom: 45px;
  right: 115px;
}
.content02 .area .map .map_05 {
  bottom: 152px;
  left: 63px;
}
.content02 .area .map .map_06 {
  bottom: 110px;
  left: 0;
}
.content02 .area .map .map_07 {
  bottom: 0;
  left: 0;
}
@media screen and (max-width:767px) {
  .content02 .area .map {
	width: 100%;
	height: auto;
  }
  .content02 .area .map ul {
    width: 100%;
    height: auto;
    background: none;
    position: static;
    transform: inherit;
    gap: 10px 10px;
  }
  .content02 .area .map li {
    position: static;
    width: calc((100% - 10px) / 2);
  }
  .content02 .area .map a {
    font-size: 14px;
    min-width: inherit;
    width: 100%;
  }
}
/* モーダル */
.modal{
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
	left:0;
    width: 100%;
	z-index: 300;
}
.modal_bg{
	background: rgba(0,0,0,0.5);
    height: 100vh;
    position: absolute;
    width: 100%;
}
.modal_content{
	width: 100%;
    max-width: 800px;
	background: #fff;
    padding: 2em 2em 2em;
    border: 2px solid #19257d;
	position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.modal_content a.js-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #000;
    font-size: 30px;
    font-weight: bold;
	line-height:30px;
}
@media screen and (max-width:767px) {
	.modal_content {
		width: 92%;
		padding: 2em 1em 1em;
		background: #f9f9ff;
	}
}

.area_name {
	color: #19257d;
	font-size: 20px;
	font-weight: bold;
	padding-bottom: 0.5em;
	border-bottom: 2px solid #19257d;
	margin-bottom: 1.5em;
}
.pref_list {
    display: flex;
    flex-wrap: wrap;
    gap: 1em 1em;
}
.pref_list li { width: calc((100% - 4em) / 5); }
.pref_list li a {
    text-align: center;
    color: #19257d;
    font-size: 16px;
    line-height: 1.6em;
    width: 100%;
    border: 1px solid #19257d;
    border-radius: 50px;
    display: block;
}
@media screen and (max-width:767px) {
	.area_name { font-size: 16px; }
	
	.pref_list { gap: 1em 0.5em; }
	.pref_list li {
		width: calc((100% - 1em) / 3);
	}
	.pref_list li a {
		font-size: 14px;
		background: #fff;
	}

}

/*職種から探す*/
.content02 .job {
  width: 640px;
}
.content02 .job ul {
  gap: 15px 15px;
}
.content02 .job li {
  width: calc((100% - 15px) / 2);
}
.content02 .job li a {
  background: #fff;
  padding: 10px 10px;
  border: 1px solid #19257d;
  border-radius: 50px;
  display: flex;
  /*justify-content: flex-start;*/
  justify-content: center;
  align-items: center;
}
.content02 .job li a img { display: none; }
.content02 .job li a div {
  color: #19257d;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6em;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
}
@media screen and (max-width:767px) {
  .content02 .job ul {
    gap: 10px 10px;
  }
  .content02 .job li {
	width: calc((100% - 10px) / 2);
  }
  .content02 .job li a img {
    width: 45px;
    height: auto;
  }
  .content02 .job li a div { font-size: 14px; }
	
}

/*こだわりから探す*/
.content02 .kodawari {}
.content02 .kodawari ul {
    gap: 10px 15px;
}
.content02 .kodawari li {}
.content02 .kodawari li a {
    color: #19257d;
    font-size: 15px;
    line-height: 1.7em;
    background: #e0e3f7;
    padding: 0.75em 1.5em;
    border-radius: 50px;
    display: block;
}
@media screen and (max-width:767px) {
  .content02 .kodawari ul { gap: 10px 10px; }
  .content02 .kodawari li a {
	font-size: 14px;
	padding: 0.5em 1.0em;
  }
}


/*  content03  */
.content03 .content_title02::before {
    content: "Strength";
	color: #253084;
}
.content03 .content_title02 h2 {
	color: #fff;
}
.content03 .outer {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0 35px;
	counter-reset: number 0;
}

.strength_item {
    width: calc((100% - 70px) / 3);
    max-width: 361px;
}
.strength_item figure {
	margin-bottom: 30px;
}
.strength_item .inner {}
.strength_item .title {
    font-size: 24px;
	font-weight: normal;
    line-height: 1.6em;
    color: #fff;
    padding-bottom: 10px;
    border-bottom: 1px solid #fff;
    margin-bottom: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.strength_item .title::before {
    color: #fff;
    font-size: 46px;
    font-weight: 300;
    font-family: "Noto Serif JP", serif;
	line-height: 1.0em;
    margin-right: 0.25em;
    counter-increment: number 1;
    content: "0" counter(number);
}
.strength_item .text {
    font-size: 16px;
    line-height: 1.8em;
}
@media screen and (max-width:767px) {
	.content03 .outer {
		flex-direction: column;
		gap: 20px 0;
	}

	.strength_item {
		width: 100%;
		max-width: inherit;
		display: flex;
		justify-content: flex-start;
		align-items: flex-start;
	}
	.strength_item figure { width: 25%; }
	
	.strength_item .inner {
		width: 75%;
		padding-left: 15px;
	}
	.strength_item .title {
		font-size: 18px;
		padding-bottom: 5px;
		margin-bottom: 10px;
	}
	.strength_item .title::before {
		font-size: 28px;
	}
	.strength_item .text {
		font-size: 14px;
		line-height: 1.6em;
	}
}


/*  content04  */
.content04 {
	position: relative;
}
.content04::before,
.content04::after {
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
}
.content04::before {
	width: 559px;
	height: 378px;
	background: url(../images/arrival_01.png) no-repeat;
	background-size: contain;
	left: calc(1280px - 50%);
}
.content04::after {
	width: 512px;
	height: 362px;
	background: url(../images/arrival_02.png) no-repeat;
	background-size: contain;
	right: calc(1280px - 50%);
}

.content04 .outer {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  z-index: 1;
  gap: 30px 20px;
}
.content04 .box {
  width: calc((100% - 60px) / 4);
  margin: 0 0;
  box-shadow: none;
  display: block;
}
.content04 .box .inner { padding: 0.5em 0 0; }
.content04 .box .title {
    font-size: 15px;
    font-weight: bold;
	margin-bottom: 0.5em;
}
.content04 .box .overview {}
.content04 .box .overview li {
	margin-top: 5px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.content04 .box .overview li p {
	font-size: 14px;
	font-weight: normal;
}
.content04 .box .overview li::before {
	content: "";
	display: inline-block;
	margin-right: 0.5em;
}
.content04 .box .overview li.i_salary::before {
	width: 26px;
	height: 20px;
	background: url(../images/i_saraly.png) no-repeat center / contain;
}
.content04 .box .overview li.i_job::before {
	width: 26px;
	min-width: 26px;
	height: 26px;
	background: url(../images/i_jobtype.png) no-repeat center / contain;
}

@media screen and (max-width:767px) {
  .content04 .box {
    margin: 0 10px;
  }
  .content04 .box .title {
    font-size: 14px;
  }
  .content04 .box .overview li p {
	font-size: 12px;
	width: calc(100% - 20px);
  }
  .content04 .box .overview li.i_salary::before,
  .content04 .box .overview li.i_job::before {
	margin-right: 0.3em;
	width: 16px;
	min-width: inherit;
	height: 20px;
  }
	
}


/*  content05  */
.content05 {
}
.content05 .outer {
    gap: 30px 30px;
}
.content05 .box {
    width: calc((100% - 60px) / 3);
}
.content05 .box figure {
    width: 100%;
    height: 280px;
}
.content05 .box figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.content05 .box .inner {
    background: rgba(25, 37, 125, 0.5);
    padding: 0.75em 1em;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
.content05 .box .title {
	color: #fff;
	font-size: 16px;
	line-height: 1.6em;
}
@media screen and (max-width:767px) {
  .content05 .outer {
    gap: 15px 0;
  }
  .content05 .box {
    width: 100%;
    display: flex;
    align-items: stretch;
  }
  .content05 .box figure {
    width: 30%;
    height: 20vw;
  }
  .content05 .box .inner {
    width: 70%;
    background: none;
    padding: 0 0.75em;
    position: static;
  }
  .content05 .box .title {
	color: #000;
	font-size: 14px;
  }
}



/*  content06  */
.content06 {}
.info_list {
	margin-top: 50px;
    display: flex;
    flex-direction: column;
}
.info_list .item {
	margin-bottom: 20px;
}
.info_list .item .date,
.info_list .item .title {
    font-size: 16px;
}
.info_list .item .date {
    color: #b4b4b4;
}
.info_list .item .title {
    color: #434343;
    margin-left: 3.0em;
}
@media screen and (max-width:767px) {
  .info_list {
    margin-top: 0;
  }
  .info_list .item {
    margin-bottom: 10px;
  }
  .info_list .item .date,
  .info_list .item .title {
    font-size: 14px;
  }
  .info_list .item .title {
    margin-left: 1.5em;
  }
}


/*  content07  */
.content07 {
	padding: 0 0!important;
	background: url(../images/role_back.png) no-repeat center / cover;
}
.content07 .mywidth {
	padding: 3.5em 0;
	position: relative;
}
.content07 .mywidth::after {
	content: "";
	display: inline-block;
	width: 560px;
	height: 528px;
	background: url(../images/role_point.png) no-repeat;
	background-size: contain;
	position: absolute;
    bottom: 0;
    right: -8.5em;
}
.content07 .outer { width: 63%; }
.content07 .inner {}
.content07 .role_title {
    font-size: 42px;
    line-height: 1.0em;
    margin: 30px 0 20px;
}
.content07 .text {
    font-size: 16px;
    line-height: 1.8em;
}

@media screen and (max-width:767px) {
  .content07 {
    padding: 2.5em 0!important;
  }

  .content07 .mywidth {
    padding: 0 2.5vw;
  }
  .content07 .mywidth::after { content: none; }

  .content07 .outer { width: 100%; }
  .content07 h2 {
    width: 80%;
    margin: 0 auto;
  }
  .content07 .role_title {
    font-size: 20px;
    margin: 20px 0 10px;
  }
  .content07 .text { font-size: 14px; }
	
}


