@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Open+Sans+Condensed:700);


/* =====================================
 *  RESET
 * ===================================== */

* { font-size: 100%;line-height: 100%;border:0;outline:0;vertical-align:baseline;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;-o-box-sizing: border-box;-ms-box-sizing: border-box;box-sizing: border-box;padding:0;margin:0; }
footer { display: block; }
a { color: inherit; text-decoration: none; }
img { height: auto; vertical-align: bottom; }


html {
  height: 100%;
  margin: 0;
  padding: 0;
  font-size: 62.5%;
}

@media screen and (max-width: 1000px) {
  html {
    font-size: 50%;
  }
}

@media screen and (max-width: 580px) {
  html {
    font-size: 37.5%;
  }
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #000;
  letter-spacing: .03em;
  font-size: 1.6rem;
  line-height: 1.75;
  -webkit-text-size-adjust: 100%;
  font-family: "Noto Sans JP", sans-serif;
}

img {
  display: block;
  max-width: 100%;
  margin: auto;
}

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

a:hover {
  text-decoration: none;
}

.pc_br{
  display: block;
}
.sp_br{
  display: none;
}

@media screen and (max-width: 580px) {
  .pc_br{
    display: none;
  }
  .sp_br{
    display: block;
  }
}

/* main
====================================== */
.l-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 100%;
  margin: 0 auto;
  padding: 0;
  background: #fff;
  -webkit-box-shadow: 0 0 3px 3px rgba(99, 99, 99, 0.2);
  box-shadow: 0 0 3px 3px rgba(99, 99, 99, 0.2);
}

.l-main {
  position: relative;
  width: 100%;
  max-height: 100%;
}

/* header
====================================== */
.l-header {
  height: 95px;
  background: #fff;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 2em;
}

.l-header__logo {
  width: 32.5%;
  max-width: 319px;
  margin: 0 2.5%;
}

@media screen and (max-width: 580px) {
  .l-header{
    height: 60px;
  }
  .l-header__logo{
    width: 41.5%;
    margin: 0;
  }
}

.l-header-lang {
	display: flex;
	justify-content: flex-end;
  padding-top: 0.5em;
	padding-bottom: 0.5em;
	background: #000;
}
.l-header-lang__inner {
	font-size: 1rem;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	line-height: 1;
	padding-right: 1.5rem;
}
@media (max-width: 767px) {
	.l-header-lang__inner {
		padding-right: 1em;
	}
}
.l-header-lang__select {
	color: #2d2d2d;
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: .5em 1em;
	font-size: 13px;
	height: 2em;
	font-weight: bold;
	border: 1px solid #f5f5f3;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
}
.l-header-lang__select:before {
	content: "";
	display: block;
	width: 1.5em;
	height: 1.5em;
	background: url(../img/icon_translate.png) center center no-repeat;
	background-size: contain;
	margin-right: 1em;
}
.l-header-lang__select:after {
	content: "";
	display: block;
	width: 0;
	height: 0;
	margin-top: .5em;
	border-width: .5em .35em;
	border-style: solid;
	border-color: transparent;
	border-top-color: #2d2d2d;
	margin-left: 1em;
}
.l-header-lang__select.is-opened {
	background: #2d2d2d;
	color: #fff;
	border: 1px solid #2d2d2d;
}
.l-header-lang__select.is-opened:before {
	border-top-color: #fff;
}
.l-header-lang__select.is-opened:after {
	border-top-color: #fff;
}
.l-header-lang__list {
	display: none;
	padding: 0.5em;
	background: #fff;
	margin-top: 0.5rem;
	width: 100%;
	font-size: 13px;
	text-align: center;
}
.l-header-lang__list li:not(:first-child) {
	margin-top: 0.5em;
}

/* bg
====================================== */
.bg-stripe{
  background: linear-gradient( -45deg, #f1f1f1 25%, #e5e5e5 25%, #e5e5e5 50%, #f1f1f1 50%, #f1f1f1 75%, #e5e5e5 75%, #e5e5e5);
  background-size: 20px 20px;
}

/* sec
====================================== */
.c-sec {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.c-sec-container {
  max-width: 950px;
  margin: auto;
}

.c-sec-inner{
  padding: 6.25em 0;
}
.c-sec-inner.banner {
  padding: 0 0 6em;
}
.c-sec-inner._voice {
  padding-bottom: 3.25em;
}
.c-sec-inner._voice:nth-child(n+2) {
  padding-top: 0;
}
.c-sec-inner._voice:last-child {
  padding-bottom: 6.25em;
}

.c-sec-title{
  padding-bottom: 5.625em;
}

@media screen and (max-width: 768px) {
  .c-sec-inner{
    padding: 6.25em 2em;
  }
  .c-sec-inner.banner {
    padding: 0 2em 6em;
  }
  .c-sec-title{
    width: 70%;
    margin: 0 auto;
  }
}

/* nav
====================================== */

#nav{
  background: rgb(204,204,204,0.9);
  position:fixed;
  z-index: 10000;
  bottom: -30%;
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, .5);
  width: 100%;
  padding: 1em 0;
}

.p-nav-block {
  margin: 0 auto;
  display:-webkit-box;
  display:-ms-flexbox;
  display: flex;
  justify-content: center;
  max-width: 1000px;
}

.p-nav-block a{
  padding: 0 1em;
}

.p-nav-block img{
  max-height: 100px;
}

@media screen and (max-width: 1024px) {
  #nav{
    padding: 1em 0 8em;
  }
}

@media screen and (max-width: 560px) {
  #nav{
    padding: 1em 0 10em;
  }
}

/* footer
====================================== */
.l-footer {
  padding: 3em 0 20em;
  background: #000;
  color: #fff;
  opacity: 1 !important;
  transform: none !important;
  text-align: center;
  display: block;
}

.l-footer-college{
  font-size: 1.75em;
  padding-bottom: 2.5em;
}

.l-footer-address{
  font-size: 1.2em;
  padding-bottom: 3em;
  text-align: left;
  display: inline-block;
  line-height: 2em;
}

.l-footer-copy{
  font-size: 1.1em;
}

@media screen and (max-width: 580px) {
  .l-footer-college{
    font-size: 1.4em;
  }
}

/* lead
====================================== */
.p-main-lead{
  text-align: center;
}
.p-main-lead__title{
  font-size: 2em;
  color: #e50020;
  padding-bottom: 2em;
  line-height: 1.6em;
}
.p-main-lead__text{
  font-size: 1.4375em;
  line-height: 2em;
  text-align: left;
  display: inline-block;
}
.p-main-lead__text span{
  color: #e50020;
}

/* company
====================================== */
.p-company-lead {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  align-items: center;
}
.p-company-lead img {
  margin-bottom: 3em;
}
.p-company-lead__title {
  font-size: 2em;
  margin-bottom: 1em;
}
.p-company-lead__txt {
  margin: 2em 0;
  line-height: 2;
  font-size: 1.8rem;
}
.p-company-lead__txt._introduction {
  font-weight: bold;
}

.p-company-lead__txt small {
  font-size: 1.3rem;
}

.p-company-lead__txt._outline {
  line-height: 1.5;
}
.p-company-lead__img {
  margin-bottom: 3em;
}

.c-sec-inner._company {
  padding: 6.25em 0 0;
  margin: 0 3em;
}

.c-sec-inner._company table {
  width: 100%;
  max-width: 950px;
  margin: 0.5em auto 2em;
  padding: 1em;
  border: solid 1px;
  table-layout: fixed;
  word-wrap: break-word;
}

.c-sec-inner._company table tbody {
  display: block;
}

.c-sec-inner._company table tbody tr {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.c-sec-inner._company table tbody tr td {
  font-size: 1.5rem;
  padding: 1rem;
}
.c-sec-inner._company table tbody tr td:nth-child(odd) {
  line-height: 1.5;
  font-weight: bold;
  width: 30%;
}

.c-sec-inner._company table tbody tr td:nth-child(3) {
  width: 25%;
}

.c-sec-inner._company table tbody tr td:nth-child(2) {
  line-height: 1.5;
  vertical-align: middle;
  width: 38%;
}

.c-sec-inner._company table tbody tr td:nth-child(4) a{
  color: #e50020;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-sec-inner._company table tbody tr td:nth-child(4) a i{
  width: 25%;
  margin-left: 5px;
}



@media screen and (max-width: 580px) {
  .c-sec-inner._company {
    padding: 6.25em 2em 0;
  }
  .c-sec-inner._company h1 {
    font-size: 2.4rem;
  }
  .c-sec-inner._company table tbody {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }
  .c-sec-inner._company table tbody tr {
    margin-bottom: 1em;
    display: contents;
  }

  .c-sec-inner._company table tbody tr td {
    font-size: 2rem;
    padding: 0.5em;
  }
  .c-sec-inner._company table tbody tr td:nth-child(odd) {
    width: 100%;
  }
  .c-sec-inner._company table tbody tr td:first-child {
    margin: 1em 0 0 0;
  }
  .c-sec-inner._company table tbody tr td:last-of-type {
    width: 40vw;
    margin-bottom: 1em;
  }
  .c-sec-inner._company table tbody tr td:nth-child(even) {
    vertical-align: middle;
    width: unset;
  }
  .p-company-lead__title {
    font-size: 2.5rem;
}
  .p-company-lead {
    display: flex;
    flex-direction: column-reverse;
  }
  .p-company-lead img {
    width: 40%;
  }
  .c-sec-inner._company table tbody tr td:nth-child(4) a{
    justify-content: flex-start;
  }

  .c-sec-inner._company table tbody tr td:nth-child(4) a i{
    width: 8%;
  }

}

/* benefits
====================================== */
.p-benefits-list{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
}
.p-benefits-list li{
  padding: 0 1em 2em;
}
.p-benefits-caution{
  padding-top: 2em;
}
.p-benefits-caution__list{
  font-size: 1.25em;
  list-style: none;
  line-height: 1.5em;
}
.p-benefits-caution__list li{
  padding: 0 0 1em 1em;
  text-indent: -1em;
  line-height: 1.5em;
}

@media screen and (max-width: 580px) {
  .p-benefits-list{
    justify-content: space-between;
  }
  .p-benefits-list li{
    width: 48%;
    padding: 0 0 2em;
  }
  .p-benefits-caution__list{
    font-size: 1.5em;
  }
  .p-benefits-caution__list li{
    line-height: 1.5em;
  }
}

/* work
====================================== */
.p-work-title{
  font-size: 3.8em;
  color: #fff;
  padding: 2em 1em;
  font-weight: bold;
  line-height: 1.5em;
  margin-bottom: 4.6875rem;
}
.bg_service01{
  background: url(../img/bg_service01.jpg) no-repeat;
  background-size: cover;
}
.bg_service02{
  background: url(../img/bg_service02.jpg) no-repeat;
  background-size: cover;
}
.p-work-contents{
  max-width: 900px;
  margin: 0 auto 2em;
}
.p-work-lead{
  color: #e52525;
  font-size: 2.5em;
  line-height: 1.5em;
  padding-bottom: 2.1875rem;
  font-weight: bold;
}
.p-work-name{
  font-size: 2em;
}
.p-work-interview__img{
  padding: 3.75em 0 2.8125em;
}
.p-work-interview__text{
  font-size: 1.25em;
  line-height: 1.5em;
}

@media screen and (max-width: 768px) {
  .p-work-contents{
    padding: 0 2em;
  }
}

@media screen and (max-width: 580px) {
  .p-work-title{
    font-size: 2.3em;
  }
  .p-work-lead{
    font-size: 2.1em;
  }
  .p-work-name {
    font-size: 1.8em;
  }
  #work .c-sec-inner:first-child{
    padding-bottom: 0;
  }
  .p-work-interview__text{
    font-size: 1.75em;
  }
}


/* flow
====================================== */
.p-flow-contact{
  padding: 3em 0;
}
.p-flow-contact p{
  font-size: 1.75em;
  line-height: 2em;
  text-align: center;
  padding-bottom: 1.5em;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
}
.p-flow-contact__block{
  display: flex;
  justify-content: center;
}
.p-flow-contact__item{
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  display: table;
  width: 40%;
}
.p-flow-contact__item a{
  background: #000;
  color: #fff;
  height: 9rem;
  text-decoration: none;
  border-radius: 10px;
  position: relative;
  align-items: center;
  vertical-align: middle;
  display: table-cell;
  padding: 1rem 1rem 1rem 6rem;
}
.p-flow-contact__item._tel{
  font-size: 2.5em;
  font-weight: bold;
  margin-right: 1.5rem;
}
.p-flow-contact__item._tel a:before{
  position: absolute;
  content: url(../img/icon_tel.png);
  z-index: 99;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.p-flow-contact__item._mail{
  font-size: 1.3em;
}
.p-flow-contact__item._mail a:before{
  position: absolute;
  content: url(../img/icon_mail.png);
  z-index: 99;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .p-flow-contact__item {
      width: 45%;
  }
  .p-flow-contact__item._mail a{
      padding-left: 3.5em;
  }
}

@media screen and (max-width: 580px) {
  #flow .c-sec-title{
    width: 90%;
  }
  .p-flow-contact p{
    font-size: 1.5em;
  }
  .p-flow-contact__block{
    flex-flow: column;
  }
  .p-flow-contact__item{
    width: 100%;
  }
  .p-flow-contact__item._tel{
    margin: 0 0 .6em 0;
  }
  .p-flow-contact__item a{
    text-align: center;
    padding: 1rem 3rem 1rem 8rem;
  }
  .p-flow-contact__item._tel a:before{
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  .p-flow-contact__item._mail {
    font-size: 1.8em;
  }
}

/* course
====================================== */
.p-course-title{
  font-size: 3.5em;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 580px) {
  .p-course-title{
    font-size: 3em;
    padding-bottom: 1em;
  }
}

/* voice
====================================== */
.bg-gray{
  background: #f2f2f2;
}
.p-voice-title{
  font-size: 3em;
  font-weight: bold;
  text-align: center;
  line-height: 2em;
  padding-bottom: 2em;
}
.p-voice-title span{
  font-size: 1.5em;
  display: block;
}
.p-voice-video{
  padding-top: 4.5em;
}
.p-voice-video iframe{
  width: 100%;
  height: 31em;
}
/*.p-voice-video a img{
  transition: all .3s ease;
}
.p-voice-video a img:hover{
  opacity: .7;
}*/

@media screen and (max-width: 580px) {
  .p-voice-title{
    font-size: 2.2em;
  }
  .p-voice-title span{
    font-size: 1.4em;
  }
  .p-voice-video iframe{
    height: 19em;
  }
}

