:root {
  /* コンテンツタイトルの文字色 */
  --cont-title: #666;

  /* テキストの文字色 */
  --text-headline-color: #666;
  --text-main-color: #666;
}

* {
  margin: 0;
  padding: 0;
  vertical-align: bottom;
  outline: 0;
  text-decoration: none;
}

.contents {
  overflow: hidden;
}

.wrapper {
  max-width: 1020px;
  padding: 50px 20px 20px 20px;
  box-sizing: border-box;
  margin: 0 auto;
  display: block;
}

.pc {display: block;}
.sp {display: none;}

@media screen and (max-width:750px) {
  .pc {display: none;}
  .sp {display: block;}

  .wrapper {
    max-width: 1020px;
    padding: 20px;
    box-sizing: border-box;
    margin: 0 auto;
    display: block;
  }

  .contents {
    padding-top: 58px;
  }
}

/* cont_title */
.cont_title {
  margin-bottom: 50px;
	text-align: center;
}
.cont_title h2 {
  font-size: 30px;
  letter-spacing: 0.05em;
  color: var(--cont-title);
}
.cont_title hr {
  width: 90px;
  margin: 10px auto 0;
  border: 0;
  border-top: 5px solid #3363a1;
  border-radius: 50px;
}
@media screen and (max-width:750px) {
  .cont_title {
    margin-bottom: 30px;
  }
  .cont_title h2 {
    font-size: 26px;
  }
}

/* ヘッダー */
.header_wrapper{
	box-sizing: border-box;
	padding:8px 20px;
	position: fixed;
	z-index: 10000;
	width:100%;
	background-color:#fff;
	margin:0 auto;
	box-shadow: 0px 10px 10px -5px rgba(0,0,0,0.1);
}

.header_wrapper>div{
	max-width: 980px;
	box-sizing: border-box;
	margin-right:0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
  margin-left: 100px;
}

.logo_pc {
  display: block;
  width: 120px;
  height: auto;
}

.logo_pc img {
  width: 100%;
}

.logo_sp {
  display: none;
}

@media screen and (max-width:750px) {
  .pc{display: none;}
  .sp{display: block;}

  /*header*/
  .header_wrapper{
    padding:8px 20px;
  }

  .header_wrapper>div{
    margin-left: 0px;
  }

  .logo_sp {
    display: block;
    max-width: 120px;
    height: auto;
  }

  .logo_sp img {
    width: 100%;
    align-items: center;
  }

  .logo_pc {
    display: none;
  }
}


/* main_vd1 */
.main_vd{
	padding-top: 48%;
	background-image: url("../images/main_vd.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	max-height: 600px;
}

.heading{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left:13%;
	margin:auto;
	font-size:29px;
	letter-spacing: 1.8px;
	color:#fff;
	text-shadow: 0 2px 10px rgba(14,1,1,0.5);
}

.heading h1{
  font-size:29px;
	border-bottom:3px solid #fff;
	margin-bottom:9px;
  padding-bottom: 10px;
  letter-spacing: 2px;
}

.heading h1,
.heading h2 {
  color: #fff;
  font-size: 1.5em;
  letter-spacing: 2px;
}

@media screen and (max-width:750px) {
  .main_vd{
    height: 450px;
    padding-top: 0;
    background-image: url("../images/main_vd_sp.jpg");
    background-position: center;
    background-size: cover;
  }

  .heading{
    font-size: 3.0vw;
    text-align: center;
    width:100%;
    left: 0;
    right:0;
    }
  
  .heading h1{
    display: inline-block;
    border-bottom:3px solid #fff;
    margin-bottom:9px;
  }
}


/* 検索 */
.link_area1 {
	margin-top: 20px;
	padding: 0 ;
	z-index: 100;
}
.link_area1_inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  background: rgba(255,255,255,0.8);
}
.search_left {
  width: 45%;
}

.form_area {
  position: relative;
  display: flex;
}
.link_area1 form {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.link_area1 .group1,
.link_area1 .group2 {
  width: 100%;
}
input[type=text],
select {
  width: 100%;
  height: 53px;
  padding: 10px;
  font-weight: 700;
  border: 1px solid #ccc;
  background-color: #fff;
  color: #000;
}
.area_head {
  position: relative;
  min-width: 90px;
  box-sizing: border-box;
  background: #666;
  font-size: 13px;
  text-align: center;
  padding:16px 10px 17px;
  color:#fff;
  font-weight: bold;
  z-index: 100;
}

.link_area1 .submit {
	position: relative;
	background: #3363a1;
	border: 3px double #fff;
	padding:11px 12px 10px;
	color:#fff;
	cursor: pointer;
  transition: 0.2s;
	z-index: 100;
}

.link_area1 .submit:hover {
	background-color: #4b93f0;
}
.link_area1 .submit img {
	width:26px;
}
.search_right {
  width: 45%;
}

.button {
  margin: 50px 0 40px 0;
}

.button_wrapper {
  margin: auto;
	width: 380px;
  background: #3363a1;
  border: 3px double #fff;
  transition: 0.5s;
}

.button_wrapper:hover{
	background-color: #4b93f0;
}

.button_wrapper p {
	padding: 11px 0;
  letter-spacing: 0.1em;
  font-weight:bold;
  color:#fff;
  text-align: center;
}


@media screen and (max-width:750px) {

  .link_area1 {
    width: 100%;
  	margin: 20px auto 0;
  	padding: 0;
  }
  .link_area1_inner {
    flex-direction: column;
  }
  .search_left {
    width: 100%;
    margin-bottom:15px;
  }
  .search_right {
    width: 100%;
    margin-top:15px;
  }

  .link_area1 .submit:hover {
    background-color:  #3363a1;
  }

  .button {
    margin: 30px 0 30px 0;
  }

  .button_wrapper {
    width: 100%;
  }

  .button_wrapper:hover{
    background: #3363a1;
  }

}

/* メッセージ */
.standard_text1 {
  text-align: center;
}
.standard_text1 h2 {
	font-size:39px;
  line-height: 1.9em;
	letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--text-headline-color);
}
.standard_text1 p {
  margin-top: 20px;
  font-size:21px;
  line-height: 1.9em;
	letter-spacing: 0.15em;
  color: var(--text-main-color);
}

.standard_img1 {
  display: flex;
  max-width: 1020px;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
  margin: 30px 0 10px 0;
}

.standard_img1 > div {
  width: 48.7%;
}

.standard_img1 img {
  width: 100%;
  height: auto;
}


@media screen and (max-width:750px) {
  .standard_text1 {
    margin-top: 0px;
  }

  .standard_text1_inner {
    width: 90%;
    margin: auto;
  }

  .standard_text1 h2 {
    font-size:35px;
    line-height: 1.3em;
  }

  .standard_text1 p {
    font-size:17px;
    margin-bottom: 20px;
  }

  .standard_img1 {
    width: 100%;
    flex-direction: column;
    margin-bottom: 15px;
  }

  .standard_img1 > div {
    width: 100%;
  }

  .standard_img1 > div:first-child {
    margin-bottom: 15px;
  }
}

/* インタビュー */
.interview1 {
  width: 100%;
  max-width: 980px;
}

.interview1_inner {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}

.interview1_img {
  width: 300px;
}

.interview1_img img {
  width: 100%;
  height: auto;
}

.interview1_position {
  display: inline-block;
  min-width: 80px;
  margin: 12px 0;
  padding: 5px 10px 8px;
	font-size: 13px;
	border: 1px solid #666;
	text-align: left;
  color: var(--text-main-color);
}

.interview1_name {
  font-size: 13px;
  color: var(--text-main-color);
}

.interview1_name span {
  margin-left: 10px;
  letter-spacing: 0.25em;
}

.interview1_inner_right {
  width: 100%;
  margin-left: 50px;
}

.interview1_inner_right h3 {
  font-size: 25px;
  line-height: 1.5em;
	letter-spacing: 0.15em;
  font-weight: 800;
  color: var(--text-main-color);
}

.interview1_inner_right p {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.8em;
  letter-spacing: 0.15em;
  color: var(--text-main-color);
}

.interview2 {
  width: 100%;
  max-width: 980px;
}

.interview2_inner {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0px;
}

.interview2_img {
  width: 300px;
}

.interview2_img img {
  width: 100%;
  height: auto;
}

.interview2_position {
  display: inline-block;
  min-width: 80px;
  margin: 12px 0;
  padding: 5px 10px 8px;
	font-size: 13px;
	border: 1px solid #666;
	text-align: center;
  color: var(--text-main-color);
}

.interview2_name {
  font-size: 13px;
  color: var(--text-main-color);
}

.interview2_name span {
  margin-left: 10px;
  letter-spacing: 0.25em;
}

.interview2_inner_right {
  width: 100%;
  margin-left: 50px;
}

.interview2_inner_right h3 {
  font-size: 25px;
  line-height: 1.5em;
	letter-spacing: 0.15em;
  font-weight: 800;
  color: var(--text-main-color);
}

.interview2_inner_right p {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.8em;
  letter-spacing: 0.15em;
  color: var(--text-main-color);
}

@media screen and (max-width:750px) {

  .interview1 {
    max-width: 100%;
    margin: 0px;
  }
  .interview1_inner {
    flex-direction: column;
  }
  .interview1_img {
    width: 100%;
  }
  .interview1_position,
  .interview1_name {
    font-size: 15px;
  }
  .interview1_inner_right {
    margin: 30px 0 0 0;
  }
  .interview1_inner_right h3 {
    font-size: 20px;
  }

  .interview2 {
    max-width: 100%;
    margin: 0px;
  }
  .interview2_inner {
    flex-direction: column;
  }
  .interview2_img {
    width: 100%;
  }
  .interview2_position,
  .interview2_name {
    font-size: 15px;
  }
  .interview2_inner_right {
    margin: 30px 0 0 0;
  }
  .interview2_inner_right h3 {
    font-size: 20px;
  }
}

/*  会社情報 */
#company_info {
  width: 100%;
  max-width: 980px;
  margin: 100px auto 0;
}

#company_info li {
  display: flex;
  padding: 15px 50px;
  font-size: 16px;
  letter-spacing: 0.15em;
  color: var(--text-main-color);
}

#company_info li:nth-child(2n-1){
	background-color: #E7E7E7;
}

#company_info li div:nth-of-type(1){
	width:25%;
}

#company_info li div:nth-of-type(2){
	width:75%;
}

@media screen and (max-width:750px) {
  #company_info li {
    padding: 15px 20px;
  }

  #company_info li div:nth-of-type(1){
  	width:35%;
  }

  
  #company_info li div:nth-of-type(2){
  	width:65%;
  }

  #company_info {
    margin: 30px auto 0;
  }
}

@media screen and (max-width:470px) {
  #company_info {
    margin: 30px auto 0;
  }
}

/* google_map */
.google_map1 {
  margin-top: 50px;
}
.google_map1_inner {
  height: 0;
  overflow: hidden;
  padding-bottom: 33.25%;
  position: relative;
}
.google_map1_inner iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
@media screen and (max-width:750px) {
  .google_map1_inner {
  padding-bottom: 40.25%;
  }
}
@media screen and (max-width:600px) {
  .google_map1_inner {
  padding-bottom: 48.25%;
  }
}
@media screen and (max-width:500px) {
  .google_map1_inner {
  padding-bottom: 55.25%;
  }
}

/* ボタン */
.button2 {
  margin: 50px 0 40px 0;
}

.button2_wrapper {
  margin: auto;
	width: 380px;
  background: #3363a1;
  border: 3px double #fff;
  transition: 0.5s;
}

.button2_wrapper:hover{
	background-color: #4b93f0;
}

.button2_wrapper p {
	padding: 11px 0;
  letter-spacing: 0.1em;
  font-weight:bold;
  color:#fff;
  text-align: center;
}


@media screen and (max-width:750px) {
  .button2 {
    margin-top: 50px;
    padding: 0 20px;
  }

  .button2_wrapper {
    
    width: 100%;
  }

  .button2_wrapper:hover{
    background: #3363a1;;
  }
}

/* footer1 */
.footer1 {
  margin-top: 50px;
}
.footer1_inner {
  width:100%;
  padding:20px 0;
	background-image: url("../images/main_vd.jpg");
	background-color:rgba(0,0,0,0.5);
	background-blend-mode:darken;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}
.footer1_inner p {
  font-size:10px;
	color:#fff;
  text-align: center;
}
