@charset "UTF-8";
/*----------------------------------------------------------------------
------------------------------------------------------------------------

File Name: top.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;
}

/*----------------------------------------------------------------------
4.	container
----------------------------------------------------------------------*/
#container {
  position: relative;
  min-height: 100%;
}
* html #container {
  height: 100%;
}
body > #container {
  height: auto;
}

#container {
  padding-bottom: 280px;
  background: url("../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: 30%;
  }
}

/*----------------------------------------------------------------------
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%;
  }
}

.header__logo {
  margin-top: 40px;
  text-align: center;
}
@media screen and (max-width: 920px) {
  .header__logo {
    width: 13.33333%;
    margin: 3% auto 0;
  }
}

/*----------------------------------------------------------------------
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
----------------------------------------------------------------------*/
.footer {
  text-align: center;
}
.footer__logo {
  margin-bottom: 22px;
}
@media screen and (max-width: 920px) {
  .footer__logo {
    margin-bottom: 3%;
  }
}
.footer__logo img {
  width: 82px;
  height: auto;
}
@media screen and (max-width: 920px) {
  .footer__logo img {
    width: 12%;
  }
}
.footer__text {
  margin-bottom: 20px;
  color: #000;
  font-size: 28px;
  font-weight: 500;
}
@media screen and (max-width: 920px) {
  .footer__text {
    margin-bottom: 3%;
    font-size: 14px;
    font-size: 3.73333vw;
  }
}
.footer__text small {
  display: block;
  margin-top: 8px;
  color: #737373;
  font-size: 18px;
}
@media screen and (max-width: 920px) {
  .footer__text small {
    margin-top: 1%;
    font-size: 10px;
    font-size: 2.66667vw;
  }
}
.footer__address {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
}
@media screen and (max-width: 920px) {
  .footer__address {
    font-size: 10px;
    font-size: 2.66667vw;
  }
}

/*----------------------------------------------------------------------
11.	ページ別個別設定
----------------------------------------------------------------------*/
.main__visual {
  overflow: hidden;
  position: relative;
  margin-bottom: 100px;
}
@media screen and (max-width: 480px) {
  .main__visual {
    height: 260px !important;
    margin-bottom: 0;
  }
}
.main__visual video {
  position: absolute;
}
@media screen and (max-width: 480px) {
  .main__visual video {
    height: 100% !important;
  }
}
.main__visual__overlay {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/main_visual_overlay_bg.png") center -60px no-repeat;
  z-index: 1;
}
@media screen and (min-width: 1441px) {
  .main__visual__overlay {
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}
@media screen and (max-width: 480px) {
  .main__visual__overlay {
    height: 100%;
    background: url("../img/main_visual_overlay_bg.png") center top no-repeat;
    -moz-background-size: contain;
    -webkit-background-size: contain;
    background-size: contain;
  }
}
.main__visual__overlay:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 238px;
  background: url("../img/main_visual_overlay_bg2.png") left top repeat-x;
}
@media screen and (max-width: 480px) {
  .main__visual__overlay:before {
    background: url("../img/main_visual_overlay_bg2.png") left bottom repeat-x;
    -moz-background-size: 50% 50%;
    -webkit-background-size: 50% 50%;
    background-size: 50% 50%;
  }
}
.main__visual__title {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 50px;
  z-index: 100;
  width: 920px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 920px) {
  .main__visual__title {
    width: 90%;
    bottom: 12%;
  }
}
.main__visual__title em {
  display: block;
  margin-bottom: 10px;
  padding-bottom: 8px;
  color: #005BAA;
  font-size: 22px;
  font-weight: 500;
  border-bottom: 2px solid #00B7EC;
}
@media screen and (max-width: 920px) {
  .main__visual__title em {
    margin-bottom: 3%;
    padding-bottom: 2%;
    font-size: 12px;
    font-size: 3.2vw;
  }
}
@media screen and (max-width: 920px) {
  .main__visual__title img {
    width: 39.42029%;
    margin: 0 auto;
  }
}

.carsensor {
  margin-bottom: 60px;
  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;
  }
}

.menu {
  width: 840px;
  margin: 0 auto 85px;
}
@media screen and (max-width: 920px) {
  .menu {
    width: 90%;
    margin: 0 auto 20%;
  }
}
.menu__item:nth-child(1) a {
  background-image: url("../img/menu_item1_bg.jpg");
}
.menu__item:nth-child(2) a {
  background-image: url("../img/menu_item2_bg.jpg");
}
.menu__item:nth-child(3) a {
  background-image: url("../img/menu_item3_bg.jpg");
}
.menu__item:not(:last-child) {
  margin-bottom: 20px;
}
@media screen and (max-width: 920px) {
  .menu__item:not(:last-child) {
    margin-bottom: 3%;
  }
}
.menu__item:first-child a {
  padding-bottom: 200px;
}
@media screen and (max-width: 920px) {
  .menu__item:first-child a img {
    top: 16%;
    width: 31.15942%;
  }
}
@media screen and (max-width: 920px) {
  .menu__item:first-child a span {
    top: 30%;
  }
}
@media screen and (max-width: 920px) {
  .menu__item:nth-child(2) a img {
    width: 45.50725%;
  }
}
.menu__item:last-child a {
  padding-bottom: 50px;
}
@media screen and (max-width: 920px) {
  .menu__item:last-child a img {
    width: 28.11594%;
  }
}
.menu__item a {
  display: table-cell;
  vertical-align: middle;
  width: 840px;
  height: 450px;
  background-position: left top;
  background-repeat: no-repeat;
  text-align: center;
}
@media screen and (max-width: 920px) {
  .menu__item a {
    display: block;
    position: relative;
    width: 100%;
    height: 0;
    padding: 52.17391% 0 0 !important;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
  }
}
@media screen and (max-width: 920px) {
  .menu__item a > * {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
  }
}
@media screen and (max-width: 920px) {
  .menu__item a img {
    top: 40%;
    width: 50%;
  }
}
.menu__item__description {
  display: block;
  margin-top: 20px;
  color: #696969;
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 920px) {
  .menu__item__description {
    top: 54%;
    width: 100%;
    font-size: 12px;
    font-size: 3.2vw;
  }
}
.menu__item__description.-white {
  color: #FFF;
}

/*# sourceMappingURL=top.css.map */
