@charset "utf-8";
/*
再利用可能な全てのオブジェクトを記述します。
All objects that are reusable will be written.

接頭辞はComponentの頭文字を取って【c_】とします。
Prefix will take the "Component" first letter and use it as "c_".

ここで指定するのは以下の様なものと予想されます。
You might use the following.
.c_btn/.c_breadclumb/.c_hero/.c_serch/.c_dropdown/
.c_card/.c_feature/.c_overlay/.c_form/.c_thumbnail/.c_box

モディファイヤを使用する場合は接頭辞【is_】をつけ、各コンポーネントの下に記述します。
When using modifier put the prefix "is_" and write it under each component.

フォントサイズはremで指定します。
"rem" will be used for font-size.

//sample
.c_btn {
	display: inline-block;
	padding: 15px 20px;
	border-radius: 5px;
	text-decoration: none;
}
.c_btn:hover { opacity: 0.8; }
.c_btn.is_btn_disable { cursor: inherit; }
.c_btn.is_btn_blue{
	color: rgb(255, 255, 255);
	background: rgb(1, 153, 224) none repeat scroll 0% 0%;
}

*/
/*----------------------------------------------
	.c_header_type01
---------------------------------------------*/
.c_header_type01 {
  font-size: 31px;
  font-size: 3.1rem;
  color: #2c2c2c;
  text-align: center;
  margin-bottom: 16px;
}
.c_header_type01:after {
  content: '';
  width: 148px;
  display: block;
  padding: 0 10px;
  border-bottom: 7px solid #2bcae2;
  margin: 0 auto;
}

.inner .c_header_type01 {
  margin-bottom: 30px;
}

/*----------------------------------------------
	.c_header_type02
---------------------------------------------*/
.c_header_type02 {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: normal;
  color: #ffffff;
  text-align: center;
  background-color: #2bcae2;
  line-height: 1.2;
  padding: 7px 10px;
  -webkit-border-radius: 6px;
  -ms-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  margin-bottom: 15px;
}
@media screen and (max-width: 640px) {
  .c_header_type02 {
    margin: 0 0px 15px;
  }
}

/*----------------------------------------------
	.c_header_type03
---------------------------------------------*/
.c_header_type03 {
  font-size: 24px;
  font-size: 2.4rem;
  color: #ffffff;
  text-align: center;
  line-height: 1.7;
  margin-bottom: 12px;
}
.c_header_type03:after {
  content: '';
  width: 87px;
  height: 3px;
  display: block;
  background: url(../images/img_border_line.png) no-repeat center bottom;
  margin: 0 auto;
}

/*----------------------------------------------
	.c_header_type04
---------------------------------------------*/
.c_header_type04 {
  background: url(../images/bg_h1.png) repeat, #2bcae2;
  padding: 44px 0;
  line-height: 1.5;
}
.c_header_type04 h1 {
  font-size: 24px;
  font-size: 2.4rem;
  color: #ffffff;
  text-align: center;
  -webkit-text-shadow: 2px 0px 5px rgba(4, 0, 0, 0.75);
  -moz-text-shadow: 2px 0px 5px rgba(4, 0, 0, 0.75);
  text-shadow: 2px 0px 5px rgba(4, 0, 0, 0.75);
  filter: progid:DXImageTransform.Microsoft.Shadow(color=#040000,direction=120);
}

/*----------------------------------------------
	.c_header_type05
---------------------------------------------*/
.c_header_type05 {
  font-size: 18px;
  font-size: 1.8rem;
  color: #2c2c2c;
  border-left: 10px solid #2bcae2;
  padding-left: 10px;
  margin-bottom: 20px;
}

/*----------------------------------------------
	.c_btn
---------------------------------------------*/
.c_btn {
  display: inline-block;
  color: #2c2c2c;
  text-align: center;
}
.c_btn:hover {
  color: #2c2c2c;
}

.c_btn.is_large {
  width: 404px;
  height: 80px;
  padding: 12px 10px;
  vertical-align: middle;
}
.c_btn.is_large:visited {
  color: #2c2c2c;
}
.c_btn.is_large span {
  width: 382px;
  height: 56px;
  display: table-cell;
  vertical-align: middle;
}
@media screen and (max-width: 640px) {
  .c_btn.is_large {
    width: 100%;
  }
}

/*----------------------------------------------
	.c_btn_type01
---------------------------------------------*/
.c_btn_type01 {
  font-weight: bold;
  background-color: #ffffff;
  border: 3px solid #2bcae2;
  margin-right: 16px;
}
.c_btn_type01 > .c_tel {
  font-size: 24px;
  font-size: 2.4rem;
}
.c_btn_type01 > .c_date {
  font-size: 12px;
  font-size: 1.2rem;
}
.c_btn_type01:hover {
  color: #ffffff;
  background-color: #2bcae2;
}
@media screen and (max-width: 640px) {
  .c_btn_type01 {
    margin-bottom: 10px;
  }
}

/*----------------------------------------------
	.c_btn_type02
---------------------------------------------*/
.c_btn_type02 {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  background-color: #2bcae2;
}
.c_btn_type02:hover {
  color: #ffffff;
}
@media screen and (max-width: 640px) {
  .c_btn_type02 {
    display: table;
  }
}

/*----------------------------------------------
	.c_btn_type03
---------------------------------------------*/
.c_btn_type03 {
  border: 3px solid #d9d9d9;
  background: #ffffff;
  background: -moz-linear-gradient(top, #ffffff 0%, #f6f6f6 47%, #ececec 100%);
  background: -webkit-gradient(
    left top,
    left bottom,
    color-stop(0%, #ffffff),
    color-stop(47%, #f6f6f6),
    color-stop(100%, #ececec)
  );
  background: -webkit-linear-gradient(
    top,
    #ffffff 0%,
    #f6f6f6 47%,
    #ececec 100%
  );
  background: -o-linear-gradient(top, #ffffff 0%, #f6f6f6 47%, #ececec 100%);
  background: -ms-linear-gradient(top, #ffffff 0%, #f6f6f6 47%, #ececec 100%);
  background: linear-gradient(to bottom, #ffffff 0%, #f6f6f6 47%, #ececec 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ececec', GradientType=0 );
}
.c_btn_type03.is_large {
  display: block;
  width: 444px;
  height: inherit;
  padding: 18px 10px 10px;
  margin: 0 auto;
}
.c_btn_type03.is_large span {
  font-weight: bold;
  width: auto;
  height: auto;
  display: inline-block;
  color: #2c2c2c;
}
@media screen and (max-width: 640px) {
  .c_btn_type03 img {
    width: 100%;
  }
  .c_btn_type03.is_large {
    width: 100%;
  }
  .c_btn_type03.is_large span {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

/*----------------------------------------------
	.c_btn_group
---------------------------------------------*/
.c_btn_group {
  text-align: center;
}

/*----------------------------------------------
	.c_badge
---------------------------------------------*/
.c_badge {
  font-size: 15px;
  font-size: 1.5rem;
  background-color: #fff;
  line-height: 1;
  padding: 6px 12px;
  -webkit-border-top-left-radius: 12px;
  -ms-border-top-left-radius: 12px;
  -moz-border-top-left-radius: 12px;
  -webkit-border-top-right-radius: 12px;
  -ms-border-top-right-radius: 12px;
  -moz-border-top-right-radius: 12px;
  -webkit-border-bottom-left-radius: 12px;
  -ms-border-bottom-left-radius: 12px;
  -moz-border-bottom-left-radius: 12px;
  -webkit-border-bottom-right-radius: 12px;
  -ms-border-bottom-right-radius: 12px;
  -moz-border-bottom-right-radius: 12px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  margin-right: 10px;
}
@media screen and (max-width: 640px) {
  .c_badge {
    font-size: 14px;
    font-size: 1.4rem;
    padding: 6px 10px;
    margin-right: 3px;
  }
}

/*----------------------------------------------
	.c_link_type01
---------------------------------------------*/
.c_link_type01 {
  font-weight: bold;
  color: #2c2c2c;
  background: url(../images/ico_circle_arrow_left.png) no-repeat left center;
  padding: 5px 0 5px 30px;
  line-height: 1.3;
}
.c_link_type01:hover {
  text-decoration: underline;
  color: inherit;
}

/*----------------------------------------------
	.c_list_type01
---------------------------------------------*/
.c_list_type01 li {
  text-indent: -20px;
  padding-left: 20px;
}
.c_list_type01 li:before {
  content: '●';
  padding-right: 6px;
}

/*----------------------------------------------
	.c_list_type02
---------------------------------------------*/
.c_list_type02 li {
  background: url(../images/ico_bullet_blue.png) no-repeat left center;
  padding-left: 20px;
}

/*----------------------------------------------
	.c_list_type03
---------------------------------------------*/
.c_list_type03 {
  padding-left: 15px;
}
.c_list_type03 li {
  text-indent: -20px;
  padding-left: 20px;
}
.c_list_type03 li:before {
  content: '・';
}

/*----------------------------------------------
	.c_list_type04
---------------------------------------------*/
.c_list_type04 {
  counter-reset: item;
}
.c_list_type04 > li {
  text-indent: -20px;
  padding-left: 20px;
  margin-bottom: 20px;
}
.c_list_type04 li:before {
  counter-increment: item;
  content: counter(item) ' ．';
}

/*----------------------------------------------
	.c_list_type05
---------------------------------------------*/
.c_list_type05 {
  counter-reset: item;
}
.c_list_type05 > li {
  text-indent: -45px;
  padding-left: 45px;
}
.c_list_type05 li:before {
  counter-increment: item;
  content: '（ ' counter(item) ' ）';
}

/*----------------------------------------------
	.c_table_type01
---------------------------------------------*/
.c_table_type01 table {
  width: 100%;
}
.c_table_type01 th,
.c_table_type01 td {
  font-size: 16px;
  font-size: 1.6rem;
  border-bottom: 1px solid #d9d9d9;
  line-height: 1.5;
  padding: 13px;
}
.c_table_type01 th {
  width: 110px;
  vertical-align: top;
}
@media screen and (max-width: 640px) {
  .c_table_type01 tbody,
  .c_table_type01 tr:last-child {
    display: block;
  }
  .c_table_type01 tr:last-child th {
    width: 100%;
    border-bottom: 0;
    padding-bottom: 0;
  }
  .c_table_type01 tr:last-child th,
  .c_table_type01 tr:last-child td {
    display: block;
  }
}

/*----------------------------------------------
	.c_table_type02
---------------------------------------------*/
.c_table_type02 table {
  width: 100%;
  font-size: 16px;
  font-size: 1.6rem;
}

.c_table_type02 tr {
  display: table;
  width: 100%;
  position: relative;
}

.c_table_type02 th,
.c_table_type02 td {
  border-bottom: 1px solid #d9d9d9;
  line-height: 1.4;
  padding: 15px 30px;
}
.c_table_type02 tr:first-child th,
.c_table_type02 tr:first-child td {
  border-top: 2px solid #d9d9d9;
}
.c_table_type02 tr:last-child th,
.c_table_type02 tr:last-child td {
  border-bottom: 2px solid #d9d9d9;
}

.c_table_type02 th {
  width: 272px;
  color: #2c2c2c;
  text-align: left;
  background-color: #f2f2f2;
  vertical-align: top;
  /*position: relative;*/
}
.c_table_type02 td {
  color: #666666;
}
.c_table_type02 tr:nth-child(2) td {
  color: #2c2c2c;
}

.is_form {
  margin-bottom: 55px;
}
.is_form th,
.is_form td {
  padding: 11px 40px;
}
.is_form th {
  padding-left: 55px;
}
.is_form td {
  padding-right: 42px;
}
.is_form input {
  border: 1px solid #acacac;
  margin-right: 5px;
}
.is_form [type='number'],
.is_form [type='text'],
.is_form [type='email'],
.is_form [type='tel'] {
  width: 255px;
  height: 24px;
}
.is_form [type='email'] {
  margin-bottom: 10px;
}
.is_form textarea {
  width: 100%;
  height: 112px;
  border: 1px solid #acacac;
  padding: 5px;
}
.is_form label {
  padding-right: 30px;
}

th.is_ALmiddle {
  vertical-align: middle;
}

.is_required:before {
  content: '必須';
  font-size: 12px;
  font-size: 1.2rem;
  color: #e33434;
  background-color: #ffffff;
  border: 1px solid #d23a3a;
  border-radius: 3px;
  padding: 6px;
  line-height: 1;
  position: absolute;
  top: 9px;
  left: 8px;
}
@media screen and (max-width: 640px) {
  .c_table_type02 table {
    width: 100%;
  }
  .c_table_type02 th,
  .c_table_type02 td {
    padding: 3%;
  }
  .c_table_type02 th {
    width: 25%;
  }

  .is_form th,
  .is_form td {
    display: block;
    border-bottom: 0;
  }
  .is_form th {
    width: 100%;
    border-top: 2px solid #d9d9d9;
  }
  .is_form td span {
    display: block;
    margin-bottom: 10px;
  }
  .is_form tr:first-child td {
    border-top: 0;
  }
  .is_form td {
    padding: 5% 3%;
  }
  .is_form [type='number'],
  .is_form [type='text'],
  .is_form [type='email'],
  .is_form [type='tel'] {
    width: 100%;
    height: 35px;
    margin-bottom: 10px;
  }
  .is_form .is_required {
    padding-left: 15%;
  }
  .is_form label {
    padding-right: 25px;
  }
}

/*----------------------------------------------
	.c_ico_tag
---------------------------------------------*/
.c_ico_tag {
  font-size: 12px;
  font-size: 1.2rem;
  display: inline-block;
  background-color: #d9d9d9;
  padding: 8px;
  margin-bottom: 5px;
  -webkit-border-radius: 5px;
  -ms-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
@media screen and (max-width: 320px) {
  .c_ico_tag {
    padding: 6px;
  }
}

/*----------------------------------------------
	.c_icon_group
---------------------------------------------*/
.c_icon_group {
  border-bottom: 1px solid #d9d9d9;
  padding: 13px;
  margin-bottom: 30px;
}

/*----------------------------------------------
	.c_box_type01
---------------------------------------------*/
.c_box_type01 {
  width: 430px;
  display: inline-block;
  -webkit-border-radius: 7px;
  -ms-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
  border-right: 0.1px solid #ffffff;
  border-bottom: 0.1px solid #ffffff;
  -webkit-box-shadow: 3px 4px 5px 0px rgba(4, 0, 0, 0.16);
  -moz-box-shadow: 3px 4px 5px 0px rgba(4, 0, 0, 0.16);
  box-shadow: 3px 4px 5px 0px rgba(4, 0, 0, 0.16);
  margin-right: 34px;
}
.c_box_type01:last-child {
  margin-right: 0;
}
.c_box_type01 .c_box_inner {
  -webkit-border-radius: 7px;
  -ms-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
  border: 4px solid #b7b7b7;
}
.c_box_type01 .c_box_contents {
  padding-left: 128px;
}

.c_box_type01 .c_box_placeholder {
  border-bottom: 2px solid #d9d9d9;
  padding: 15px 20px;
  line-height: 1.4;
}
.c_box_type01 .c_box_ttl {
  font-size: 26px;
  font-size: 2.6rem;
  color: #2bcae2;
}

.c_box_type01 .c_box_details {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
  padding: 15px 20px;
}
.c_box_type01 .c_box_subttl {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #2c2c2c;
  line-height: 1.4;
  margin-bottom: 10px;
}

.c_box_type01 .is_rodosha {
  background: url(../../about/images/img_about01.png) no-repeat left top;
  background-size: contain;
}
.c_box_type01 .is_youryou {
  background: url(/about/images/img_about02.png) no-repeat left top;
  background-size: contain;
}
@media screen and (max-width: 640px) {
  .c_box_type01 {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .c_box_type01 .c_box_contents {
    padding-left: 28%;
  }
  .c_box_type01 .c_box_placeholder {
    padding: 10px 15px;
    line-height: 1.3;
  }
  .c_box_type01 .c_box_ttl {
    font-size: 20px;
    font-size: 2rem;
  }
  .c_box_type01 .c_box_details {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.4;
    padding: 10px 15px;
  }
  .c_box_type01 .c_box_subttl {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

/*----------------------------------------------
	.c_box_type02
---------------------------------------------*/
.c_box_type02 {
  border: 2px solid #b7b7b7;
  max-width: 280px;
  width: 40%;
  float: left;
  -webkit-border-radius: 7px;
  -ms-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
  margin-right: 27px;
  margin-bottom: 30px;
}
.c_box_type02:last-child {
  margin-right: 0;
}

.c_box_type02 .c_box_placeholder {
  position: relative;
  border-bottom: 2px solid #ffffff;
  line-height: 1.3;
  padding: 30px 15px 30px 6em;
}
.c_box_type02 .c_box_ttl {
  display: inline-block;
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: bold;
  color: #2c2c2c;
}

.c_box_type02 .c_box_details {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.6;
  padding: 15px;
  letter-spacing: -1px;
}

.is_blue {
  background-color: #e2f5f8;
}
.is_yellow {
  background-color: #fefed5;
}
@media screen and (max-width: 640px) {
  .c_box_type02 {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
}

/*----------------------------------------------
	.c_box_type03
---------------------------------------------*/
.c_box_type03 {
  font-size: 14px;
  font-size: 1.4rem;
  /*width: 822px;*/
  height: 180px;
  overflow-y: auto;
  border: 3px solid #d9d9d9;
  padding: 30px 30px 20px;
  margin-bottom: 20px;
}
.c_box_type03 .c_box_ttl {
  font-size: 18px;
  font-size: 1.8rem;
  margin-bottom: 12px;
}
@media screen and (max-width: 640px) {
  .c_box_type03 {
    width: 100%;
    padding: 20px 16px 10px;
  }
}

/*----------------------------------------------
	.c_box_group02
---------------------------------------------*/
.c_box_group02:last-child .c_box_type02 {
  margin-bottom: 0;
}
@media screen and (max-width: 640px) {
  .c_box_group02:last-child .c_box_type02 {
    margin-bottom: 20px;
  }
  .c_box_group02:last-child .c_box_type02:last-child {
    margin-bottom: 0;
  }
}

/*----------------------------------------------
	.c_notice_type01
---------------------------------------------*/
.c_notice_type01 {
  font-size: 16px;
  font-size: 1.6rem;
  background-color: #f5f5f5;
  padding: 50px 0 60px;
  margin-top: 20px;
}
.c_notice_type01 .c_notice_ttl {
  margin-bottom: 40px;
}
.c_notice_details {
  width: 688px;
  margin: 0 auto;
  line-height: 1.7;
  margin-bottom: 30px;
}
@media screen and (max-width: 640px) {
  .c_notice_type01 {
    padding: 20px 0 30px;
  }
  .c_notice_details {
    width: 100%;
  }
}

/*----------------------------------------------
	.c_section
---------------------------------------------*/
.c_section {
  padding: 32px 0 20px 0;
}
.inner .c_section:first-child {
  padding-top: 36px;
}
.inner .c_section {
  font-size: 16px;
  font-size: 1.6rem;
  padding: 40px 0;
}
.single .u_job_list .u_info {
  padding: 20px;
}
.single .c_table_type01 th {
  width: 140px;
}
.single .c_section figure {
  margin: 0 0 16px 0;
}
@media screen and (max-width: 640px) {
  .inner .c_section {
    padding: 20px 0;
  }
  .single .u_job_list .u_info {
    padding: 16px 8px;
  }
  .single .c_table_type01 td,
  .single .c_table_type01 th,
  .c_table_type01 tr:last-child th {
    display: block;
    width: 100%;
    padding: 8px 12px;
    border: none;
  }
  .single .c_table_type01 th {
    background-color: #b7eaf1;
    text-align: left;
  }
  .single .c_section figure img {
    max-width: 100%;
  }
}

/*----------------------------------------------
	.c_note
---------------------------------------------*/
.c_note {
  display: inline-block;
  text-indent: -1em;
  padding-left: 1em;
}
.c_note:before {
  content: '※';
}

/*---------------------------------------------
	c_imgcol
---------------------------------------------*/
.c_imgcol {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.c_imgcol.col3 .imgcol-item {
  width: calc(100% / 3 - 20px);
  margin-bottom: 32px;
  border-radius: 12px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}
.c_imgcol.col3 .imgcol-item:nth-last-child(1) {
  box-shadow: none;
}
.c_imgcol .imgcol-item a {
  display: block;
  color: #000;
}
.c_imgcol .imgcol-item figure {
  margin: 0;
}
.c_imgcol .imgcol-item img {
  max-width: 100%;
  width: 280px;
  height: 196px;
  object-fit: cover;
  object-position: center;
}
@media screen and (max-width: 640px) {
  .c_imgcol.col3 .imgcol-item {
    width: 100%;
    margin-bottom: 24px;
  }
  .c_imgcol.col3 .imgcol-item:last-child {
    display: none;
  }
  .c_imgcol .imgcol-item img {
    width: 100%;
    height: 200px;
  }
}

/*---------------------------------------------
	c_news-cnt
---------------------------------------------*/
.c_news-cnt {
  padding: 8px 12px;
}
.c_news-cnt .news-title {
  font-size: 1.8rem;
  color: #38add0;
  margin-bottom: 4px;
}

/*---------------------------------------------
	contact(job) form only
---------------------------------------------*/
.c_contact-cnt {
  border-top: 1px solid #d9d9d9;
  margin-bottom: 48px;
}
.c_contact-cnt .contact-item {
  display: flex;
  border-bottom: 1px solid #d9d9d9;
}
.c_contact-cnt .contact-head {
  min-width: 210px;
  background-color: #f2f2f2;
  padding: 12px 16px 12px 56px;
  position: relative;
}
.c_contact-cnt .contact-head.required::before {
  content: '必須';
  font-size: 1.2rem;
  color: #e33434;
  background-color: #ffffff;
  border: 1px solid #d23a3a;
  border-radius: 3px;
  padding: 6px;
  line-height: 1;
  position: absolute;
  top: 11px;
  left: 8px;
}
.contact-contents {
  padding: 12px 24px;
}
.contact-contents input[type='text'],
.contact-contents input[type='tel'],
.contact-contents input[type='email'],
.contact-contents input[type='number'],
.contact-contents textarea,
.contact-contents select {
  width: 380px;
  max-width: 100%;
  padding: 8px;
  font-size: 1.6rem;
  ime-mode: active;
  border: 1px solid #acacac;
  background-color: #fff;
  outline: none;
}
.contact-contents textarea {
  width: 630px;
}
.contact-contents input:focus,
.contact-contents select:focus,
.contact-contents textarea:focus {
  border-color: #2bcae2;
  background-color: #f7f7f7;
}
.contact-contents .wpcf7-checkbox .wpcf7-list-item {
  margin: 0 20px 0 0;
}
.contact-contents .wpcf7-radio {
  display: flex;
  justify-content: flex-start;
  min-width: 380px;
}
.contact-contents .wpcf7-radio .wpcf7-list-item {
  width: calc(100% / 2);
  margin: 0;
}
.contact-contents .ajax-loader {
  visibility: hidden;
  display: none;
  background-image: url(/assets/ajax-loader.gif);
  width: 16px;
  height: 16px;
  border: none;
  padding: 0;
  margin: 0 0 0 4px;
  vertical-align: middle;
  display: none;
}
.wpcf7-response-output {
  max-width: 600px;
  margin: 16px auto !important;
  padding: 8px 16px !important;
  border: 2px solid #2bcae2 !important;
}
.wpcf7 .wpcf7-list-item {
  margin: 0 0 12px 0;
}
@media screen and (max-width: 640px) {
  .wpcf7 .c_header_type02 {
    margin: 0 -8px;
  }
  .c_contact-cnt {
    border: none;
    padding: 16px 0;
  }
  .c_contact-cnt .contact-head {
    padding: 8px 12px 8px 56px;
  }
  .c_contact-cnt .contact-head.required::before {
    top: 7px;
  }
  .c_contact-cnt .contact-item {
    display: block;
    border: none;
  }
  .c_contact-cnt .contact-item:first-child .contact-head,
  .c_contact-cnt .contact-contents {
    padding: 8px 12px;
  }
  .contact-contents .wpcf7-radio {
    display: block;
    min-width: auto;
  }

  input[type='text'],
  input[type='tel'],
  input[type='email'],
  input[type='number'],
  textarea,
  select {
    width: 100%;
  }
  textarea {
    width: 100%;
  }
}

/*---------------------------------------------
  entry-content
---------------------------------------------*/
.c_entry-content {
  padding: 0 40px;
}
.c_entry-content h2 {
  font-size: 32px;
  color: #2c2c2c;
  text-align: center;
  margin-bottom: 32px;
}
.c_entry-content h2::after {
  content: '';
  width: 148px;
  display: block;
  padding: 0 10px;
  border-bottom: 7px solid #2bcae2;
  margin: 0 auto;
}
.c_entry-content h3 {
  font-size: 24px;
  font-weight: normal;
  color: #ffffff;
  text-align: center;
  background-color: #2bcae2;
  line-height: 1.2;
  padding: 7px 10px;
  border-radius: 6px;
  margin-bottom: 20px;
}
.c_entry-content h4 {
  font-size: 20px;
  color: #2c2c2c;
  border-left: 10px solid #2bcae2;
  padding-left: 10px;
  margin-bottom: 20px;
  padding-top: 0;
}
.c_entry-content h5 {
  color: #767676;
  font-size: 16px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.c_entry-content h6 {
  color: #333;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 800;
}
.c_entry-content p {
  margin: 8px 0 16px 0;
  padding: 0;
}
.c_entry-content p:first-child {
  margin-top: 0;
}
.c_entry-content ul {
  padding-left: 1.8em !important;
  margin-bottom: 1em;
}
.c_entry-content ul li {
  margin-top: 0.5em !important;
  line-height: 1.5 !important;
}
/*WP「デフォルト」のリスト*/
.c_entry-content ul:not([style^='list-style-type']) {
  margin-left: 0;
  list-style: none;
}
.c_entry-content ul:not([style^='list-style-type']) li::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background-color: #2bcae2;
  margin-left: -1.1em;
  margin-right: 0.5em;
  line-height: 0.5em;
  transform: translateY(-0.07em);
  text-decoration: none;
}
.c_entry-content ul:not([style^='list-style-type']) li ol li::before {
  content: none;
}
.c_entry-content ul:not([style^='list-style-type']) li ol li ul li::before {
  content: '';
}
.c_entry-content ol {
  margin-left: 1.8em !important;
  list-style-type: decimal;
}
.c_entry-content ol li {
  margin-top: 0.5em !important;
  line-height: 1.5 !important;
}
.c_entry-content ol li:last-child {
  margin-bottom: 1em;
}
.c_entry-content ol li ul {
}
.c_entry-content ol li ul li::before {
  content: '';
}
.c_entry-content ol li ul li ol li::before {
  content: none;
}

.c_entry-content table {
  width: 100%;
  margin: 1em 0;
}
.c_entry-content table th,
.c_entry-content table td {
  padding: 8px 12px;
  border: 1px solid #4aa5ae;
  font-weight: normal;
}
.c_entry-content table th {
  background-color: #dcecf4;
  color: #333;
}

/* img */
.c_entry-content .aligncenter {
  display: block;
  margin: 0 auto;
}
.c_entry-content .alignright {
  float: right;
  padding: 16px;
}
.c_entry-content .alignleft {
  float: left;
  padding: 16px;
}
.c_entry-content img[class*='wp-image-'],
.c_entry-content img[class*='attachment-'] {
  height: auto;
  max-width: 100%;
}
@media screen and (max-width: 640px) {
  .c_entry-content {
    padding: 0;
  }
  .c_entry-content iframe {
    width: 100%;
    height: 400px;
  }
}

/*---------------------------------------------
  pagenation
---------------------------------------------*/
.c_pagenation-cnt {
}
.pagenation-list {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style-type: none;
}
.pagenation-list li {
  font-size: 1.8rem;
  font-weight: bold;
}
.pagenation-list .page-numbers {
  margin: 0 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #000;
  padding: 4px 12px;
  border-bottom: 4px solid #fff;
}
.pagenation-list a.page-numbers:hover {
  border-color: #2bcae2;
}
.pagenation-list .page-numbers.current {
  color: #fff;
  background: url(../images/bg_h1.png) repeat #2bcae2;
  padding: 4px 12px;
}
.pagenation-list a.prev,
.pagenation-list a.next {
  display: none;
}

/*--------------------------------------------------
  submit btn
--------------------------------------------------*/
.c_submit-btn {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}
.c_submit-btn .wpcf7-form-control {
  display: block;
  font-size: 2rem;
  padding: 0 12px;
  color: #222;
  line-height: 40px;
  text-align: center;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: none;
  white-space: nowrap;
  transition: all 0.2s;
  min-width: 180px;
  margin: 0 16px 16px 16px;
  background-color: #2bcae2;
  cursor: pointer;
}
.c_submit-btn .wpcf7-form-control:hover {
  opacity: 0.9;
}
.c_submit-btn .wpcf7-form-control:focus,
.c_submit-btn .wpcf7-form-control:active,
.c_submit-btn .wpcf7-form-control:visited {
  background-color: #2bcae2;
  color: #222;
}

/*--------------------------------------------------
  footer fixed btn
--------------------------------------------------*/
.c_fixed-btn {
  width: 100%;
  position: fixed;
  bottom: 0;
  box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.3);
}
.c_fixed-btn ul {
  display: flex;
}
.c_fixed-btn li {
  list-style-type: none;
  width: calc(100% / 3);
  font-size: 1.5rem;
}
.c_fixed-btn li a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #fff;
  text-align: center;
  padding: 12px 0;
}
.c_fixed-btn .regist {
  background-color: #f47901;
}
.c_fixed-btn .regist a::before {
  content: '';
  display: block;
  width: 32px;
  height: 32px;
  background: url(/common/images/ico_footer-fixedbtn_regist.png) no-repeat
    center/cover;
}
.c_fixed-btn .job {
  background-color: #0d76ad;
}
.c_fixed-btn .job a::before {
  content: '';
  display: block;
  width: 32px;
  height: 32px;
  background: url(/common/images/ico_footer-fixedbtn_job.png) no-repeat
    center/cover;
}
.c_fixed-btn .line {
  background-color: #00b900;
  font-size: 1.2rem;
  line-height: 1.3;
}
.c_fixed-btn .line a {
  height: 100%;
}

/*--------------------------------------------------
  home
--------------------------------------------------*/
.home figure {
  margin: 24px 0 0 0;
}
@media screen and (max-width: 640px) {
  .home figure img {
    max-width: 100%;
  }
}
