@charset "UTF-8";
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
 
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 1000px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
}
body {
  background-color: #fff;
  color: #4a4a4a;
  font-size: 16px;
  line-height: 1.5;  
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

section {
  padding: 0 20px;
}

a {
  text-decoration: none;
  transition: .3s;
}

a:hover {
  opacity: .7;
}

.inner {
  max-width: 1000px;
  margin: 0 auto;
}

.pc {
  display: block;
}
.sp {
  display: none;
}

/*----------------header*/
.header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.85);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}
.header-img {
  margin-left: 10px;
}

/*----------------top*/
.top {
  background: url(../img/top-bg.png) no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}
.top1 {
  background-position: center;
  background-size: cover;
  position: relative;
}
.top-logo {
  position: absolute;
  top: 15%;
  left: 2%;
  width: 20%;
}
.top-block {
  width: 45%;
  margin-left: auto;
  padding: 80px 0 30px;
}
.top-block img {
  width: 100%;
  margin-bottom: 15px;  
}
.top-block h2 {
  background-color: #FF7517;
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 5px 0;
  margin-bottom: 15px;
}
.top-text {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 15px;
}
.top-block_box {
  background-color: rgba(255, 255, 255, .9);
  box-shadow: 0 0 4px gray;
  padding: 20px 40px;
  position: relative;
}
.top-block_box h3, .top-block_boxtext {
  color: #00b2ae;
}
.top-block_box h3 {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
.top-block_boxtext {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}
.top-item {
  font-size: 14px;
  line-height: 2;
}
.top-circle {
  position: absolute;
  bottom: 10px;
  right: 20px;
  display: table;
  background-color: #FF7517;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  width: 130px;
  height: 130px;
  border-radius: 50%;
}
.top-circle span {
  vertical-align: middle;
  display: table-cell;
  
}
.top_pc { display: block !important; }
.top_sp { display: none !important; }
 
@media only screen and (max-width: 500px) {
    .top_pc { display: none !important; }
    .top_sp { display: block !important; }
}

/*----------------Bnr*/
.Bnr{
  position: relative;
  width: 360px;
  display: none;
}
.Bnr .Bnr__img{
  position: fixed;
  bottom: 0;
  right: 10px;
  z-index: 99;
}
.Bnr__img__inner{
  width: 360px;
  box-sizing:border-box;
  padding: 0px;
}
.Bnr .Bnr__img__inner a{
  display: block;
}
.Bnr .Bnr__img p.close{
  position: absolute;
  right: -10px;
  top:-10px;
}
.Bnr .Bnr__img p.close a{
  display: block;
  width: 30px;
  height: 30px;
  text-align: right;
}

/*----------------work*/
.work {
  background: url(../img/work-bg.png) no-repeat;
  background-position: top center;
  background-size: cover;
}
.work-text {
  width: 60%;
  padding: 60px 0 40px;
}
.work-text img {
  width: 100%;
}
.work-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 50px;
}
.work-item {
  width: 48%;
  background-color: #fff;
  padding: 10px;
  box-sizing: border-box;
  margin-bottom: 20px;
}
.work-item_block {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.work-item_block p {
  color: #00b2ae;
  font-weight: bold;
  font-size: 20px;
}
.work-item_block img {
  width: 30%;
}
.work-item_text {
  font-size: 14px;
  margin-left: 15px;
  margin-bottom: 15px;
}

/*----------------point*/
.point {
  background: url(../img/point-bg.png) no-repeat;
  background-position: center;
  background-size: cover;
}
.point-head {
  width: 100%;
  padding: 30px 0;
}
.point-head img {
  width: 100%;
}
.point-bottom {
  width: 100%;
  padding: 30px 0 60px;
}
.point-bottom img {
  width: 100%;
}
.point-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.point-item {
  background-color: rgba(0,178,174,.5);
  color: #303030;
  width: 48%;
  margin-bottom: 40px;
  padding: 20px;
  box-sizing: border-box;
}
.point-item h2 {
  color: #fff100;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}
.point-item p {
  text-align: center;
  font-weight: bold;
  font-size: 28px;
  margin-bottom: 20px;
}
.point-small {
  font-size: 24px !important;
}
.point-item img {
  width: 30%;
  object-fit: contain;
  margin-right: 20px;
}
.point-block {
  display: flex;
  align-items: flex-start;
  line-height: 1.7;
}
/*----------------追加*/
.point-text {
  width: 65%;
}
.point-block dt {
  display: inline-block;
  background-color: #4a4a4a;
  color: #fff;
  font-weight: bold;
  padding: 5px 40px;
  margin-bottom: 10px;
}
.point-green {
  font-size: 20px !important;
  background-color: #00a1ae !important;
  padding: 5px 20px !important;
  margin-top: 20px !important;
}
.point-block dd {
  font-size: 14px;  
}
.point-item_mb {
  margin-bottom: 0;
}
.point-block span {
  font-size: 18px;
  font-weight: bold;
}
/*----------------追加 5/6 */
.point-bottom_sp {
  display: none;
}

/*----------------joboffer*/
.joboffer-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 30px;
}
.joboffer-item {
  background-color: #ebebec;
  width: 48%;
  margin-bottom: 40px;
  box-sizing: border-box;
}
.joboffer-item h2 {
  color: #303030;
  font-size: 20px;
  font-weight: bold;
  border-bottom: 2px solid #00b2ae;
  margin-bottom: 20px;
  padding: 20px 0 0 30px;
}
.joboffer-block {
  display: flex;
  align-items: center;
  padding: 20px 10px 20px 15px;
}
.joboffer-item img {
  width: 30%;
  margin-right: 15px;
}
/*----------------追加*/
.joboffer-text {
  width: 65%;
}
.joboffer-text dl {
  margin-bottom: 15px;
}
.joboffer-text dt {
  background-color: #00b2ae;
  color: #fff;
  padding: 3px 0;
  width: 120px;
  height: 20%;
  text-align: center;
  font-size: 14px;
  margin-right: 10px;
}
.joboffer-text dt:first-of-type {
  margin-bottom: 5px;
}
.joboffer-text dd {
  font-size: 12px;
}
.joboffer-text_flex {
  display: flex;
}
.btn {
  display:inline-block;
  width: 100%;
  text-align: center;
  margin-bottom: 70px;
}
.top-btn0 {
  width: 100%;
  text-align: center;
  margin-top: 20px;
  margin-right:20px;
}
.top-btn1 {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 30px;
}
.top-btn2 {
  text-align: center;
  margin-bottom: 50px;
}
.btn-3 {
  display:inline-block;
  width: 100%;
  text-align: center;
}
.joboffer-btn {
  width: 300px;
  margin: 0 auto 60px;
}
.joboffer-btn img {
  width: 20px;
  padding-right: 20px;
  vertical-align: center;
}
/*----------------追加 5/6*/
.joboffer-top_sp {
  display: none;
}
.btn2 {
  display:inline-block;
  width: 100%;
  background-color: #D93217;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  font-size: 28px;
}
.joboffer-btn2 {
  width: 350px;
  margin: 0 auto 60px;
}
.joboffer2 {
  background-color: #00B2AE;
}
/*----------------company*/
.company {
  background: url(../img/company-bg.png) no-repeat;
  background-position: top center;
  background-size: cover;
}
.company-inner {
  padding-bottom: 40px;
}
.company-img {
  width: 300px;
  margin: 0 auto 40px;
}
.company-head {
  padding-top: 80px;
}
.company-head h2 {
  color: #fff;
  text-align: center;
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 40px;
}
/*.company-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}*/
/*.company-item {
  width: 32%;
  margin-bottom: 22px;
}*/
/*.company-item img {
  width: 100%;
  border-radius: 20px;
}*/
/*----------------追加11/17*/
.company-item {
  display: flex;
  justify-content: space-between;
}
.company-item:first-of-type {
  margin-bottom: 40px;
}
.company-item-img {
  width: 38%;
}
.company-item-img img {
  width: 100%;
}
.company-item-text {
  width: 58%;
  color: #fff;
}
.company-item-text h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  letter-spacing: .1em;
}
.company-item-text p {
  font-size: 14px;
  line-height: 2.5;
}

/*----------------contact*/
.contact {
  background: url(../img/point-bg.png) no-repeat;
  background-position: center;
  background-size: cover;
  padding: 0;
}
.contact-inner {
  padding: 0 20px;
}
.contact-check {
  width: 100px;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 10px;
}
.contact-head {
  font-size: 32px;
  text-align: center;
  color: #00b2ae;
  font-weight: bold;
  margin-bottom: 40px;
}
.contact-head span {
  font-size: 50px;
}
.contact-step {
  margin-bottom: 40px;
}
.contact-registration {
  background-color: #00B2AE;
}
.contact-text {
  font-size: 50px;
  font-weight: bold;
  color: #FFFF6C;
  text-align: center;
  padding: 30px 10px;
}
.contact-text span {
  font-size: 31px;
  font-weight: bold;
  background-color: #DB0000;
  color: #fff;
  border-radius: 50%;
  padding: 30px 25px;
  margin-right: 10px;
}
.contact-text02 {
  font-size: 50px;
  font-weight: bold;
  color: #FFFF6C;
  text-align: center;
  padding: 30px 5px;
}
.contact-text02 span {
  font-size: 26px;
  font-weight: bold;
  background-color: #DB0000;
  color: #fff;
  border-radius: 50%;
  padding: 30px 15px;
  margin-right: 10px;
}
.contact-head_text {
  font-size: 32px;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
.contact-registration_box {
  height: 800px;
  background-color: #fff;
  border: 20px solid #00b2ae;
  margin-bottom: 40px;
}
.contact-line {
  padding-bottom: 60px;
}
.contact-line_head {
  background-color: #02B902;
}
.contact-line01_img {
  flex: 1 1 auto;
  margin-right: 15px;
}
.contact-line_text01 {
  flex: 1 1 auto;
}
.contact-line_text01 h3 {
  font-size: 32px;
  font-weight: bold;
  color: #02B902;
  margin-bottom: 10px;
}
.contact-line_text01 img {
  width: 90%;
  margin-bottom: 20px;
}
.contact-line_text01 p {
  font-size: 12px;
}
.contact-line_text02 {
  flex: 2 1 auto;
}
.contact-line02_img {
  flex: 1 1 auto;
  margin-right: 15px;
}
.contact-line_step {
  display: flex;
  align-items: center;
  background-color: #02B902;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 5px 20px;
  border-radius: 50px;
}
.contact-line_step dd {
  font-size: 36px;
  margin-left: 10px;
}
.contact-line_box {
  background-color: #fff;
  border: 20px solid #02B902;
  padding: 40px;
}
.contact-line01_flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 80px 60px;
}
.contact-line02_flex {
  display: flex;
  align-items: center;
  padding: 40px 40px 0;
}
.contact-line_text02 h3 {
  font-size: 22px;
  color:#02B902;
  font-weight: bold;
  margin-bottom: 20px;
}

/*----------------page*/
.page-inner {
  padding: 40px 0 60px;
}
.page-box {
  margin-bottom: 25px;
}

.page-box-title {
  display: flex;
  align-items: center;
  background-color: #00b2ae;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  padding: 20px 25px;
}
.page-box-title-text dl {
  display: flex;
}
.page-box-title .fas{
  margin-left: auto;
  margin-top: auto;
  margin-bottom: auto;
}
.fas {
  padding: 10px;
  color: #00b2ae;
  background-color: #fff;
}
.page-box-text {
  padding: 20px;
  font-size: 26px;
  color: #e65d63;
  border: 20px solid rgba(0,178,174,.5);
  display: none;
}
.page-box-text dl {
  display: flex;
}
.page-box-text dt {
  font-weight: bold;
}
.page-bottom-text {
  padding: 70px 0 20px;
}

/*----------------footer*/ 
.footer {
  border-top: 2px solid #00b2ae;
}
.footer p {
  background-color: #00b2ae;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  font-size: 11px;
  line-height: 1.5;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding: 10px 20px;
}
.footer-img {
  width: 33%;
  margin-right: 10px;
}
.footer-img:last-child {
  margin-right: 0;
}
.footer-block {
  display: none;
}