@charset "UTF-8";
/*----------------------------------------------------------------------
------------------------------------------------------------------------

File Name: about.scss

------------------------------------------------------------------------
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
------------------------------------------------------------------------
目次

1.	共通使用変数定義
2.	ブラウザデフォルトスタイルリセット
3.	HTMLタグ
4.	container
5.	共通部分
6.	header
7.	content
8.	main
9.	sub
10.	footer
11.	ページ別個別設定

------------------------------------------------------------------------
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
1.	共通使用変数定義
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
2.	ブラウザデフォルトスタイルリセット
----------------------------------------------------------------------*/
body,
h1, h2, h3, h4, h5, h6,
div,
p,
ul, ol, dl,
form, fieldset,
table,
address,
blockquote,
noscript,
pre,
tr,
td,
input,
textarea {
  margin: 0;
  padding: 0;
  line-height: 1;
  font-style: normal;
}

body {
  font-size: 10px;
  font-family: "Noto Sans JP", sans-serif;
}

* html body {
  font-size: 62.5%;
}

* + html body {
  font-size: 62.5%;
}

/* start \*/
html:\66irst-child body {
  font-size: 62.5%;
}

/* end */
body:first-of-type {
  font-size: 62.5%;
}

body > iframe {
  display: none;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 1em;
  font-weight: normal;
}

small {
  font-size: 1em;
}

mark {
  background: none;
}

fieldset {
  border: none;
}

legend {
  display: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0px;
  font-size: inherit;
  font: 100%;
}

li {
  list-style-type: none;
}

dd {
  margin: 0;
}

a,
abbr,
acronym,
em,
strong,
span,
img,
sub,
sup,
input,
button,
textarea,
select,
label,
caption {
  font-weight: normal;
  font-style: normal;
}

a {
  text-decoration: none;
}

img {
  border: none;
  vertical-align: bottom;
}
@media screen and (max-width: 920px) {
  img {
    width: 100%;
  }
}

caption, th {
  font-weight: normal;
  text-align: left;
}

th, td {
  padding: 0px;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

textarea {
  vertical-align: top;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

header, footer, article, section, aside,
nav,
figure, figcaption {
  display: block;
  margin: 0;
  padding: 0;
}

/*----------------------------------------------------------------------
3.	HTMLタグ
----------------------------------------------------------------------*/
html,
body {
  height: 100%;
}

html {
  font-size: 100%;
}

body {
  -webkit-text-size-adjust: 100%;
  color: #000;
}
body * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
body ::selection {
  color: #FFF;
  background: #005BAA;
}
body ::-moz-selection {
  color: #FFF;
  background: #005BAA;
}

a, a:before, a:after {
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
}
a > * {
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  transition: all 0.15s linear;
}
a:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
}
a:hover > * {
  text-decoration: none;
}

#container {
  padding-bottom: 700px;
  background: url("../about/img/container_bg.jpg") center bottom no-repeat;
  -moz-background-size: contain;
  -webkit-background-size: contain;
  background-size: contain;
}
@media screen and (max-width: 920px) {
  #container {
    padding-bottom: 50%;
  }
}

/*----------------------------------------------------------------------
4.	container
----------------------------------------------------------------------*/
#container {
  position: relative;
  min-height: 100%;
}
* html #container {
  height: 100%;
}
body > #container {
  height: auto;
}

/*----------------------------------------------------------------------
5.	共通部分
----------------------------------------------------------------------*/
.fll {
  float: left;
}

.flr {
  float: right;
}

@media screen and (min-width: 921px) {
  .sp_none {
    display: block;
  }
}
@media screen and (max-width: 920px) {
  .sp_none {
    display: none;
  }
}

@media screen and (min-width: 921px) {
  .pc_none {
    display: none;
  }
}
@media screen and (max-width: 920px) {
  .pc_none {
    display: block;
  }
}

@media screen and (min-width: 921px) {
  #drawernav {
    display: none;
  }
}

/*----------------------------------------------------------------------
6.	#header
----------------------------------------------------------------------*/
.header {
  position: relative;
  z-index: 100;
}
.header__nav {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-top: 25px;
}
@media screen and (max-width: 920px) {
  .header__nav {
    display: none;
  }
}
.header__nav__list {
  display: flex;
}
.header__nav__item {
  width: 150px;
  text-align: center;
}
.header__nav__item:not(:last-child) {
  margin-right: 20px;
}
.header__nav__item a {
  display: block;
  padding-bottom: 5px;
  color: #000;
  font-size: 18px;
  border-bottom: 1px solid #1A8DD6;
}

.lower .header {
  position: absolute;
  left: 0;
  right: 0;
}
@media screen and (max-width: 920px) {
  .lower .header {
    text-align: left;
  }
}
.lower .header__logo {
  margin: -35px 821px 0 0;
  text-align: center;
}
@media screen and (max-width: 920px) {
  .lower .header__logo {
    width: 13.33333%;
    margin: 0;
    text-align: left;
  }
}
@media screen and (max-width: 920px) and (max-width: 920px) {
  .lower .header__logo {
    margin: 2% 0 0 2%;
  }
}

.lower .header__logo img {
  width: 100px;
}
@media screen and (max-width: 920px) {
  .lower .header__logo img {
    width: 100%;
  }
}

/*----------------------------------------------------------------------
7.	#content
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
8.	#main
----------------------------------------------------------------------*/
.lower .main__visual {
  height: 600px;
  margin-bottom: 50px;
}
@media screen and (max-width: 920px) {
  .lower .main__visual {
    position: relative;
    height: 0;
    margin-bottom: 5%;
    padding-top: 41.66667%;
  }
}
.lower .main__visual__title {
  display: flex;
  align-items: center;
  width: 920px;
  height: 100%;
  margin: 0 auto;
  padding-bottom: 20px;
}

/*----------------------------------------------------------------------
9.	#sub
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
10.	#footer
----------------------------------------------------------------------*/
/*----------------------------------------------------------------------
11.	ページ別個別設定
----------------------------------------------------------------------*/
.main__visual {
  background: url("../about/img/main_visual_bg.jpg") center center no-repeat;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
}
@media screen and (max-width: 920px) {
  .main__visual__title {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 21%;
    width: 30.66667% !important;
    padding-bottom: 0 !important;
  }
}

.carsensor {
  margin-bottom: 70px;
  text-align: center;
}
@media screen and (max-width: 920px) {
  .carsensor {
    margin-bottom: 10%;
  }
}
.carsensor__text {
  margin-bottom: 15px;
  color: #000;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 920px) {
  .carsensor__text {
    margin-bottom: 4%;
    font-size: 12px;
    font-size: 3.2vw;
  }
}
@media screen and (max-width: 920px) {
  .carsensor__pic {
    width: 40%;
    margin: auto;
  }
}

.content__inner {
  width: 920px;
  margin: 0 auto;
}
@media screen and (max-width: 920px) {
  .content__inner {
    width: 90%;
  }
}

.box[class*="box"]:not(:first-of-type) {
  margin-top: 60px;
}
@media screen and (max-width: 920px) {
  .box[class*="box"]:not(:first-of-type) {
    margin-top: 10%;
  }
}
.box__title {
  margin-bottom: 30px;
  padding-bottom: 9px;
  color: #00649A;
  font-size: 22px;
  font-weight: 500;
  border-bottom: 1px solid #1A8ED7;
  text-align: center;
}
@media screen and (max-width: 920px) {
  .box__title {
    margin-bottom: 2%;
    padding-bottom: 1%;
    font-size: 15px;
    font-size: 4vw;
  }
}
.box__inner {
  padding: 0 47px;
}
@media screen and (max-width: 920px) {
  .box__inner {
    padding: 0;
  }
}
.box__description {
  font-size: 14px;
  line-height: 2.14286;
}
@media screen and (max-width: 920px) {
  .box__description {
    font-size: 12px;
    font-size: 3.2vw;
    line-height: 1.83333;
  }
}
.box__description .sign {
  display: block;
  font-size: 18px;
  text-align: right;
}
@media screen and (max-width: 920px) {
  .box__description .sign {
    font-size: 13px;
    font-size: 3.46667vw;
  }
}

.business__item {
  font-size: 14px;
}
@media screen and (max-width: 920px) {
  .business__item {
    font-size: 12px;
    font-size: 3.2vw;
  }
}
.business__item:not(:last-child) {
  margin-bottom: 2%;
}
.business__item dl {
  display: flex;
}
.business__item__title, .business__item__description {
  line-height: 2.14286;
}
@media screen and (max-width: 920px) {
  .business__item__title, .business__item__description {
    line-height: 1.5;
  }
}
.business__item__title {
  width: 95px;
  color: #0071B2;
}
.business__item__description {
  width: 100%;
  color: #000;
}

.company-profile__item dl,
.group-company__item dl,
.recruit__item dl {
  display: flex;
}
.company-profile__item__title, .company-profile__item__description,
.group-company__item__title,
.group-company__item__description,
.recruit__item__title,
.recruit__item__description {
  font-size: 14px;
  line-height: 2.14286;
}
@media screen and (max-width: 920px) {
  .company-profile__item__title, .company-profile__item__description,
  .group-company__item__title,
  .group-company__item__description,
  .recruit__item__title,
  .recruit__item__description {
    font-size: 12px;
    font-size: 3.2vw;
    line-height: 2;
  }
}
.company-profile__item__title,
.group-company__item__title,
.recruit__item__title {
  width: 110px;
}
@media screen and (max-width: 920px) {
  .company-profile__item__title,
  .group-company__item__title,
  .recruit__item__title {
    width: 28%;
  }
}

.company-profile__flex {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 920px) {
  .company-profile__flex {
    display: block;
  }
}
@media screen and (max-width: 920px) {
  .company-profile__list {
    margin-bottom: 5%;
  }
}
.company-profile__map__title {
  margin-bottom: 15px;
}
@media screen and (max-width: 920px) {
  .company-profile__map__title {
    margin-bottom: 5%;
  }
}
.company-profile__map__title iframe {
  width: 100%;
  height: 300px;
}
.company-profile__map__description {
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.71429;
}
@media screen and (max-width: 920px) {
  .company-profile__map__description {
    padding-left: 10%;
    font-size: 12px;
    font-size: 3.2vw;
  }
}

.recruit__list {
  margin-top: 30px;
}

/*# sourceMappingURL=about.css.map */
