@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@600&family=Noto+Sans+JP:wght@300;400;700&display=swap");
/*--------------------------------------------
 Reset - リセット
---------------------------------------------*/
html {
  background: #FFF;
  color: #000;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset, img {
  border: 0;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
  font-weight: normal;
}

ol, ul {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before, q:after {
  content: '';
}

abbr, acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  *font-size: 100%;
  font-weight: inherit;
}

legend {
  color: #000;
}

#yui3-css-stamp.cssreset {
  display: none;
}

/*--------------------------------------------
メディアクエリ
参考 - https://designsupply-web.com/media/knowledgeside/2124/

呼び出し方
@include screen-mobile {}
@include screen-tablet {}
---------------------------------------------*/
/*--------------------------------------------
テキスト要素のline-heightを取り除く
参考 - https://coliss.com/articles/build-websites/operation/css/simple-css-remove-top-space.html
---------------------------------------------*/
/*--------------------------------------------
absolute : position:absolute; および top / right / bottom / left の設定を一括設定

呼び出し方

p{
  @include absolute(0,0,0,0);
}
p.vertical{
  @include absolute($top:0, $bottom:0);
}

参考 - https://kaminarimagazine.com/
---------------------------------------------*/
/*--------------------------------------------
親要素に対して中央寄せ
引数に x, y, xy いずれかを与える
参考 - https://web-guided.com/376/
---------------------------------------------*/
/*--------------------------------------------
background-image
参考 - https://web-guided.com/376/
---------------------------------------------*/
/*--------------------------------------------
ブロックの縦横比を設定

呼び出し方
p{
  @include aspect-ratio(1200px, 400px);
}
p.bg{
  @include aspect-ratio(1200px, 400px, "../images/bg.png");
}

参考 - https://kaminarimagazine.com/
---------------------------------------------*/
/*--------------------------------------------
gradation
参考 - https://cocotsubu.com/2019/12/11/post-3796/
左から右、@include gradient(#ffef96, #ffae63, horizontal);
上から下、@include gradient(#ffef96, #ffae63, vertical);
---------------------------------------------*/
@-webkit-keyframes gallery {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes gallery {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

@-webkit-keyframes gallery2 {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-200%);
    transform: translateX(-200%);
  }
}

@keyframes gallery2 {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-200%);
    transform: translateX(-200%);
  }
}

@-webkit-keyframes material-spinner {
  0% {
    -webkit-transform: rotate(0deg);
    border-bottom: 5px #62bfed solid;
    border-top: 5px #62bfed solid;
    transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(360deg);
    border-bottom: 5px #62bfed solid;
    border-top: 5px #ec7070 solid;
    transform: rotate(360deg);
  }
  50% {
    -webkit-transform: rotate(720deg);
    border-bottom: 5px #ec7070 solid;
    border-top: 5px #f7ef75 solid;
    transform: rotate(720deg);
  }
  75% {
    -webkit-transform: rotate(1080deg);
    border-bottom: 5px #f7ef75 solid;
    border-top: 5px #adcb5f solid;
    transform: rotate(1080deg);
  }
  100% {
    -webkit-transform: rotate(1440deg);
    border-bottom: 5px #adcb5f solid;
    border-top: 5px #62bfed solid;
    transform: rotate(1440deg);
  }
}

@keyframes material-spinner {
  0% {
    -webkit-transform: rotate(0deg);
    border-bottom: 5px #62bfed solid;
    border-top: 5px #62bfed solid;
    transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(360deg);
    border-bottom: 5px #62bfed solid;
    border-top: 5px #ec7070 solid;
    transform: rotate(360deg);
  }
  50% {
    -webkit-transform: rotate(720deg);
    border-bottom: 5px #ec7070 solid;
    border-top: 5px #f7ef75 solid;
    transform: rotate(720deg);
  }
  75% {
    -webkit-transform: rotate(1080deg);
    border-bottom: 5px #f7ef75 solid;
    border-top: 5px #adcb5f solid;
    transform: rotate(1080deg);
  }
  100% {
    -webkit-transform: rotate(1440deg);
    border-bottom: 5px #adcb5f solid;
    border-top: 5px #62bfed solid;
    transform: rotate(1440deg);
  }
}

/*--------------------------------------------
 Body - ボディ
---------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: calc(100vw / 3.75);
}

@media screen and (min-width: 769px) {
  html {
    font-size: calc(100vw / 7.68);
  }
}

@media screen and (min-width: 1200px) {
  html {
    font-size: calc(100vw / 12);
  }
}

@media screen and (min-width: 1201px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 2;
  /* 16px */
}

@media screen and (min-width: 769px) {
  body {
    /* 22px */
  }
}

@media screen and (min-width: 1200px) {
  body {
    /* 32px */
  }
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
a,
picture, image {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
  text-decoration: none;
}

.page {
  background-color: #000;
  color: #fff;
  height: auto;
  position: relative;
  width: 100%;
}

.page__header, .page__main, .page__aside, .page__footer {
  font-size: 0;
  height: auto;
  position: relative;
  width: 100%;
}

.page__container {
  margin: 0 auto;
  max-width: 1360px;
  width: 100%;
}

@media screen and (min-width: 769px) {
  .page__container {
    padding: 0 20px;
  }
}

.page__flex-box {
  display: flex;
  height: auto;
  position: relative;
  width: 100%;
}

.page__ttl {
  font-family: "Josefin Sans", sans-serif;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: .05em;
  line-height: 1;
  position: relative;
  text-align: center;
}

@media screen and (min-width: 769px) {
  .page__ttl {
    font-size: 60px;
  }
}

.page__ttlJp {
  display: block;
  font-family: "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
}

@media screen and (min-width: 769px) {
  .page__ttlJp {
    font-size: 20px;
  }
}

/*--------------------------------------------
 Header - ヘッダー
---------------------------------------------*/
.mobileNavButton {
  z-index: 100;
}

.logo {
  z-index: 1;
}

.nav {
  z-index: 10;
}

.slide {
  z-index: 0;
}

/*--------------------------------------------
 Aside - アサイド
---------------------------------------------*/
.aside {
  z-index: 10;
}

/*
 * Vendors
 */
/*--------------------------------------------
 Slick-theme.scss
---------------------------------------------*/
/* Slider */
/* Icons */
/* Arrows */
/* Dots */
.slick-dots {
  bottom: -25px;
  display: block;
  display: none !important;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}

.slick-dots li {
  cursor: pointer;
  display: inline-block;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  position: relative;
  width: 20px;
}

.slick-dots li button {
  background: transparent;
  border: 0;
  color: transparent;
  cursor: pointer;
  display: block;
  font-size: 0px;
  height: 20px;
  line-height: 0px;
  outline: none;
  padding: 5px;
  width: 20px;
}

.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #607ae7;
  content: "•";
  font-family: "slick";
  font-size: 30px;
  height: 20px;
  left: 0;
  line-height: 20px;
  opacity: 0.25;
  position: absolute;
  text-align: center;
  top: 0;
  width: 20px;
}

.slick-dots li.slick-active button:before {
  color: #607ae7;
  opacity: 0.75;
}

/*--------------------------------------------
 Slick.scss
---------------------------------------------*/
.slick-slider {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
  display: block;
  position: relative;
  touch-action: pan-y;
  user-select: none;
}

.slick-list {
  display: block;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  display: block;
  left: 0;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  top: 0;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  border: 1px solid transparent;
  display: block;
  height: auto;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*! Lity - v2.4.1 - 2020-04-26
* http://sorgalla.com/lity/
* Copyright (c) 2015-2020 Jan Sorgalla; Licensed MIT */
.lity {
  background: #0b0b0b;
  background: rgba(0, 0, 0, 0.9);
  bottom: 0;
  left: 0;
  opacity: 0;
  outline: none !important;
  position: fixed;
  right: 0;
  top: 0;
  transition: opacity 0.3s ease;
  white-space: nowrap;
  z-index: 9990;
}

.lity.lity-opened {
  opacity: 1;
}

.lity.lity-closed {
  opacity: 0;
}

.lity * {
  box-sizing: border-box;
}

.lity-wrap {
  bottom: 0;
  left: 0;
  outline: none !important;
  position: fixed;
  right: 0;
  text-align: center;
  top: 0;
  z-index: 9990;
}

.lity-wrap:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.lity-loader {
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  margin-top: -0.8em;
  opacity: 0;
  position: absolute;
  text-align: center;
  top: 50%;
  transition: opacity 0.3s ease;
  width: 100%;
  z-index: 9991;
}

.lity-loading .lity-loader {
  opacity: 1;
}

.lity-container {
  display: inline-block;
  max-height: 100%;
  max-width: 90%;
  outline: none !important;
  position: relative;
  text-align: left;
  vertical-align: middle;
  white-space: normal;
  z-index: 9992;
}

.lity-content {
  -webkit-transform: scale(1);
  transform: scale(1);
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  width: 100%;
  z-index: 9993;
}

.lity-loading .lity-content,
.lity-closed .lity-content {
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}

.lity-content:after {
  bottom: 0;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  content: '';
  display: block;
  height: auto;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
  z-index: -1;
}

.lity-close {
  -webkit-appearance: none;
  background: none;
  border: 0;
  box-shadow: none;
  color: #fff;
  cursor: pointer;
  font-family: Arial, Baskerville, monospace;
  font-size: 35px;
  font-style: normal;
  height: 35px;
  line-height: 35px;
  outline: none;
  padding: 0;
  position: fixed;
  right: 0;
  text-align: center;
  text-decoration: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  top: 0;
  width: 35px;
  z-index: 9994;
}

.lity-close::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.lity-close:hover,
.lity-close:focus,
.lity-close:active,
.lity-close:visited {
  background: none;
  border: 0;
  box-shadow: none;
  color: #fff;
  font-family: Arial, Baskerville, monospace;
  font-size: 35px;
  font-style: normal;
  line-height: 35px;
  outline: none;
  padding: 0;
  text-align: center;
  text-decoration: none;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.lity-close:active {
  top: 1px;
}

/* Image */
.lity-image img {
  border: 0;
  display: block;
  line-height: 0;
  max-width: 100%;
}

/* iFrame */
.lity-iframe .lity-container,
.lity-youtube .lity-container,
.lity-vimeo .lity-container,
.lity-facebookvideo .lity-container,
.lity-googlemaps .lity-container {
  max-width: 964px;
  width: 100%;
}

.lity-iframe-container {
  -webkit-transform: translateZ(0);
  -webkit-overflow-scrolling: touch;
  height: 0;
  overflow: auto;
  padding-top: 56.25%;
  pointer-events: auto;
  transform: translateZ(0);
  width: 100%;
}

.lity-iframe-container iframe {
  background: #000;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.lity-hide {
  display: none;
}

/*
 * modules
 */
/*--------------------------------------------
 Header - ヘッダー
---------------------------------------------*/
/*--------------------------------------------
 Logo
---------------------------------------------*/
.logo {
  bottom: 55px;
  height: 93px;
  left: 19px;
  max-width: calc(100% - 38px);
  position: absolute;
  width: 337px;
}

@media screen and (min-width: 769px) {
  .logo {
    bottom: 0px;
    height: 164px;
    left: 70px;
    position: absolute;
    width: 585px;
  }
}

@media (orientation: landscape) and (max-width: 812px){
  .logo {
    /* bottom: 89px; */
  }
}

.logo__pic {
  height: 100%;
  position: relative;
  width: 100%;
}

.logo__pic img {
  height: auto;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

/*--------------------------------------------
 Nav
---------------------------------------------*/
.nav {
  -webkit-transform: translateX(-230px);
  background-color: rgba(255, 255, 255, 0.9);
  height: 100vh;
  left: 0px;
  position: fixed;
  top: 0px;
  transform: translateX(-230px);
  transition: all 0.3s ease;
  width: 230px;
}

@media screen and (min-width: 1200px) {
  .nav {
    -webkit-transform: translateX(0px);
    background-color: transparent;
    height: 40px;
    left: 0px;
    position: fixed;
    top: 22px;
    transform: translateX(0px);
    width: auto;
  }
}

.nav__item {
  display: block;
}

@media screen and (min-width: 1200px) {
  .nav__item {
    display: inline-block;
  }
}

@media screen and (min-width: 1200px) {
  .nav__item:nth-of-type(2) {
    margin-left: -15px;
  }
}

.nav__item:nth-of-type(2) .nav__link {
  width: 230px;
}

@media screen and (min-width: 1200px) {
  .nav__item:nth-of-type(2) .nav__link {
    padding-left: 15px;
    width: 145px;
  }
}

.nav__link {
  align-items: center;
  border-top: 1px solid gray;
  color: #000;
  display: flex;
  font-family: "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 14px;
  font-weight: 600;
  height: 50px;
  justify-content: space-between;
  letter-spacing: 0.1em;
  line-height: 50px;
  padding: 0 20px;
  text-align: center;
  transition: opacity 0.3s;
  width: 230px;
}

.nav__link:hover {
  opacity: 0.8;
}

.nav__link::after {
  background-image: url("../img/navArrow.gif");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  height: 9px;
  width: 20px;
}

@media screen and (min-width: 1200px) {
  .nav__link {
    background-image: url("../img/navback.png");
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-repeat: repeat;
    background-size: cover;
    border-right: 1px solid rgba(0, 0, 0, 0.5);
    border-top: none;
    color: #fff;
    display: block;
    font-size: 12px;
    height: 40px;
    line-height: 40px;
    padding: 0;
    width: 130px;
  }
  .nav__link::after {
    display: none;
  }
}

.nav__linkHome {
  background-color: transparent;
  height: 73px;
  opacity: 0;
  position: relative;
  width: 230px;
  z-index: 1000;
}

.nav__linkHome:hover {
  opacity: 0;
}

@media screen and (min-width: 1200px) {
  .nav__linkHome:hover {
    opacity: 1;
  }
}

@media screen and (min-width: 1200px) {
  .nav__linkHome {
    background-image: url("../img/home.png");
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    border-right: none;
    height: 40px;
    opacity: 1;
    padding-right: 30px;
    text-align: right;
    width: 156px;
  }
}

.nav__linkLast {
  border-bottom: 1px solid gray;
  border-right: none;
  text-align: left;
}

@media screen and (min-width: 1200px) {
  .nav__linkLast {
    background-image: url("../img/navbackLast.png");
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    border-bottom: none;
    padding-left: 47px;
    text-align: left;
    width: 250px;
  }
}

.nav--active {
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}

/*--------------------------------------------
 Slide
---------------------------------------------*/
.slide {
  position: relative;
}

.slide__list {
  font-size: 0;
  height: auto;
  width: 100%;
}

.slide__item {
  display: block;
  margin: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.slide__bg {
  display: block;
  height: 100%;
  width: 100%;
}

.slide__bg1 {
  background-image: url(../img/topSlide1_mb.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (min-width: 769px) {
  .slide__bg1 {
    background-image: url(../img/topSlide1.jpg);
  }
}

.slide__bg2 {
  background-image: url(../img/topSlide2_mb.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (orientation: landscape){
  .slide__bg2{
    background-position: top;
  }
}

@media screen and (min-width: 769px) {
  .slide__bg2 {
    background-image: url(../img/topSlide2.jpg);
  }
}

.slide__bg3 {
  background-image: url(../img/topSlide3_mb.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (min-width: 769px) {
  .slide__bg3 {
    background-image: url(../img/topSlide3.jpg);
  }
}

/*--------------------------------------------
 mobileNavButton
---------------------------------------------*/
.mobileNavButton {
  background-image: url("../img/home__mb.png");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  height: 40px;
  left: 0;
  position: fixed;
  top: 16px;
  width: 58px;
}

@media screen and (min-width: 1200px) {
  .mobileNavButton {
    display: none;
  }
}

.mobileNavButton span {
  -webkit-transform: translate(-50%, -50%);
  background-color: #fff;
  display: block;
  font-size: 0;
  height: 0px;
  left: 50%;
  padding-top: 2px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  width: 20px;
}

.mobileNavButton span:before, .mobileNavButton span:after {
  background-color: #fff;
  content: "";
  display: block;
  height: 2px;
  overflow: hidden;
  position: absolute;
  width: 20px;
}

.mobileNavButton span:before {
  top: -8px;
}

.mobileNavButton span:after {
  top: 8px;
}

.mobileNavButton--active span {
  -webkit-transform: translateX(-10px) rotate(45deg);
  transform: translateX(-10px) rotate(45deg);
}

.mobileNavButton--active span:before {
  -webkit-transform: translateX(0px) translateY(8px) rotate(90deg);
  transform: translateX(0px) translateY(8px) rotate(90deg);
}

.mobileNavButton--active span:after {
  opacity: 0;
}

/*--------------------------------------------
 We are metasight
---------------------------------------------*/
.main1 {
  height: auto;
  margin: 16px 0;
  padding: 25px 0;
  position: relative;
  width: 100%;
}

.main1__line {
  background-color: #666;
  height: 1px;
  position: absolute;
  width: 0;
}

.main1__line1 {
  right: 0;
  top: 0;
}

.main1__line1::before {
  background-image: url("../img/linearrow1.png");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  content: "";
  height: 16px;
  left: -17px;
  position: absolute;
  width: 17px;
}

.main1__line2 {
  bottom: 0;
  left: 0;
}

.main1__line2::before {
  background-image: url("../img/linearrow2.png");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 16px;
  position: absolute;
  right: -17px;
  top: 0;
  width: 17px;
}

.main1__pic {
  display: block;
  height: 0;
  padding-top: 8.02775%;
  position: relative;
  width: 100%;
}

.main1__img {
  height: auto;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

/*--------------------------------------------
 About & Service
---------------------------------------------*/
.main2 {
  color: #fff;
  overflow: hidden;
  padding: 70px 0 0 0;
  position: relative;
}

.main2__bg {
  background-image: url("../img/top3bg_sp.jpg");
  background-position: bottom center;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

@media screen and (min-width: 769px) {
  .main2__bg {
    background-image: url("../img/top3bg_tab.jpg");
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
  }
}

@media screen and (min-width: 1200px) {
  .main2__bg {
    background-image: url("../img/top3bg.jpg");
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
  }
}

.main2__lr {
  flex-direction: column;
}

@media screen and (min-width: 769px) {
  .main2__lr {
    flex-direction: row;
  }
}

.main2__l, .main2__r {
  height: auto;
  padding: 0 20px 30px 20px;
  position: relative;
  width: 100%;
}

@media screen and (min-width: 769px) {
  .main2__l, .main2__r {
    padding: 0 80px 160px 80px;
    width: 50%;
  }
}

@media screen and (min-width: 769px) {
  .main2__l {
    background-image: url("../img/metasight-line.png");
    background-position: 50% 50%;
    background-position: right top;
    background-repeat: no-repeat;
    background-repeat: repeat-y;
    background-size: cover;
    background-size: auto;
  }
}

.main2__r {
  padding-top: 30px;
}

@media screen and (min-width: 769px) {
  .main2__r {
    padding-top: 95px;
  }
}

.main2__pic {
  margin-left: -20px;
  width: calc(100% + 40px);
}

@media screen and (min-width: 769px) {
  .main2__pic {
    margin-left: -80px;
    width: calc(100% + 80px);
  }
}

.main2__img {
  height: auto;
  width: 100%;
}

.main2__ttl {
  text-align: left;
}

.main2__ttl1 {
  margin-bottom: 30px;
  margin-top: -5px;
}

@media screen and (min-width: 769px) {
  .main2__ttl1 {
    margin-bottom: 70px;
    margin-top: -35px;
  }
}

.main2__ttl2 {
  margin-bottom: 30px;
}

@media screen and (min-width: 769px) {
  .main2__ttl2 {
    margin-bottom: 40px;
  }
}

.main2__lTtl {
  font-family: "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
}

@media screen and (min-width: 769px) {
  .main2__lTtl {
    font-size: 30px;
    margin-bottom: 30px;
  }
}

.main2__mTtl {
  background-color: rgba(255, 255, 255, 0.2);
  font-size: 16px;
  font-weight: 300;
  margin: 0 0 20px -20px;
  padding: 0 15px;
  width: calc(100% + 40px);
}

@media screen and (min-width: 769px) {
  .main2__mTtl {
    margin: 0 0 20px 0;
    width: 100%;
  }
}

.main2__txt {
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 35px;
}

@media screen and (min-width: 769px) {
  .main2__txt {
    font-size: 16px;
    margin-bottom: 55px;
  }
}

.main2__button {
  height: 60px;
  margin: 0 auto;
  max-width: 100%;
  transition: opacity 0.3s;
  width: 335px;
}

.main2__button:hover {
  opacity: .8;
}

@media screen and (min-width: 769px) {
  .main2__button {
    height: 74px;
    margin: 0;
    width: 434px;
  }
}

/*--------------------------------------------
 Gallery
---------------------------------------------*/
.main3 {
  background-color: #fff;
  color: #000;
  line-height: 1;
  padding: 60px 20px 30px 20px;
  position: relative;
}

@media screen and (min-width: 769px) {
  .main3 {
    padding: 120px 80px 70px 80px;
  }
}

.main3__ttl {
  color: #000;
  margin-bottom: 25px;
}

@media screen and (min-width: 769px) {
  .main3__ttl {
    margin-bottom: 45px;
  }
}

.main3__ttlJp {
  color: #000;
}

.main3__list {
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media screen and (min-width: 769px) {
  .main3__list {
    flex-direction: row;
  }
}

.main3__item {
  height: auto;
  margin-bottom: 55px;
  width: 100%;
}

@media screen and (min-width: 769px) {
  .main3__item {
    width: 23%;
  }
}

.main3__thumbnail {
  display: block;
  height: 0;
  margin-bottom: 10px;
  padding-top: 56.04938%;
  position: relative;
  width: 100%;
}

@media screen and (min-width: 769px) {
  .main3__thumbnail {
    margin-bottom: 20px;
  }
}

.main3__thumbnail iframe,
.main3__thumbnail picture {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.main3__img {
  height: auto;
  width: 100%;
}

.main3__tag {
  font-family: "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 5px;
}

.main3__gttl {
  font-family: "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
}

@media screen and (min-width: 769px) {
  .main3__gttl {
    margin-bottom: 10px;
  }
}

.main3__text {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 10px;
}

@media screen and (min-width: 769px) {
  .main3__text {
    line-height: 2;
    margin-bottom: 20px;
  }
}

.main3__soft {
  align-items: center;
  display: flex;
  font-family: "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

@media screen and (min-width: 769px) {
  .main3__soft {
    margin-bottom: 15px;
  }
}

.main3__soft:after {
  background-color: #000;
  content: "";
  display: block;
  flex-grow: 2;
  height: 1px;
}

.main3__tool {
  font-size: 14px;
  font-weight: 300;
}

/*--------------------------------------------
 Works
---------------------------------------------*/
.main4 {
  background-color: #f5f5f5;
  color: #000;
  padding: 40px 20px 30px 20px;
  position: relative;
}

@media screen and (min-width: 769px) {
  .main4 {
    padding: 110px 0 45px 0;
  }
}

.main4__ttl {
  margin-bottom: 20px;
}

@media screen and (min-width: 769px) {
  .main4__ttl {
    margin-bottom: 50px;
  }
}

.main4__list {
  margin-bottom: 20px;
}

@media screen and (min-width: 769px) {
  .main4__list {
    margin-bottom: 50px;
  }
}

.main4__sTtl {
  background-color: black;
  color: #fff;
  font-family: "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 5px;
  padding: 0 15px;
}

@media screen and (min-width: 769px) {
  .main4__sTtl {
    font-size: 16px;
    line-height: 40px;
    margin-bottom: 0;
  }
}

.main4__item {
  font-family: "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 14px;
  font-weight: 600;
}

@media screen and (min-width: 769px) {
  .main4__item {
    align-items: center;
    display: flex;
    font-size: 16px;
    justify-content: space-between;
    line-height: 49px;
  }
}

.main4__item:not(:last-of-type) {
  border-bottom: 1px solid #dcdddd;
}

.main4__lr {
  flex-direction: column;
  justify-content: space-between;
}

@media screen and (min-width: 769px) {
  .main4__lr {
    flex-direction: row;
  }
}

.main4__l, .main4__r {
  width: 100%;
}

@media screen and (min-width: 769px) {
  .main4__l, .main4__r {
    width: 47%;
  }
}

.main4__tag {
  color: #666;
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-weight: 300;
}

@media screen and (min-width: 769px) {
  .main4__tag {
    font-size: 12px;
  }
}

/*--------------------------------------------
 News
---------------------------------------------*/
.main5 {
  color: #fff;
  overflow: hidden;
  padding: 75px 20px 60px 20px;
  position: relative;
}

@media screen and (min-width: 769px) {
  .main5 {
    padding: 110px 0 60px 0;
  }
}

.main5__bg {
  background-image: url("../img/top6_mb.jpg");
  background-position: bottom center;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

@media screen and (min-width: 769px) {
  .main5__bg {
    background-image: url("../img/top6.jpg");
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
  }
}

.main5__ttl {
  font-size: 36px;
  margin-bottom: 20px;
}

@media screen and (min-width: 769px) {
  .main5__ttl {
    font-size: 40px;
    margin-bottom: 35px;
  }
}

.main5__ttlJp {
  font-size: 12px;
  font-weight: 400;
}

@media screen and (min-width: 769px) {
  .main5__ttlJp {
    font-size: 16px;
  }
}

.main5__table {
  font-size: 18px;
  margin: 0 auto 40px auto;
  max-width: 750px;
  position: relative;
  width: 100%;
}

@media screen and (min-width: 769px) {
  .main5__table {
    margin: 0 auto 60px auto;
  }
}

.main5__item {
  display: flex;
  flex-direction: column;
  font-weight: 300;
  padding-bottom: 25px;
}

@media screen and (min-width: 769px) {
  .main5__item {
    align-items: center;
    flex-direction: row;
    padding-bottom: 15px;
  }
}

.main5__date, .main5__link {
  font-size: 14px;
}

@media screen and (min-width: 769px) {
  .main5__date, .main5__link {
    font-size: 18px;
  }
}

.main5__date-head {
  align-items: center;
  display: flex;
  font-size: 14px;
  margin-bottom: 5px;
  width: 100%;
}

@media screen and (min-width: 769px) {
  .main5__date-head {
    font-size: 18px;
    margin-bottom: 0;
    width: 30%;
  }
}

.main5__date {
  display: inline-block;
}

@media screen and (min-width: 769px) {
  .main5__date {
    width: 50%;
  }
}

.main5__cat {
  background-color: white;
  color: black;
  display: inline-block;
  font-size: 10px;
  line-height: 1;
  margin: 0 5px;
  padding: 5px 25px;
  text-align: center;
}

@media screen and (min-width: 769px) {
  .main5__cat {
    font-size: 14px;
    margin: 0 25px;
    padding: 5px 0;
    width: 50%;
  }
}

.main5__headline {
  line-height: 1.5;
  width: 100%;
}

@media screen and (min-width: 769px) {
  .main5__headline {
    width: 70%;
  }
}

.main5__link {
  display: block;
}

.main5__link span {
  color: #fff;
  display: inline-block;
  position: relative;
  text-decoration: none;
}

.main5__link span:after {
  -webkit-transform: scale(0, 1);
  -webkit-transform-origin: right top;
  background: #fff;
  border-radius: 1px;
  bottom: -4px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: -webkit-transform 0.8s;
  transition: transform 0.8s;
  transition: transform 0.8s, -webkit-transform 0.8s;
  width: 100%;
}

.main5__link:hover span:after {
  -webkit-transform-origin: left top;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: left top;
}

.main5__more {
  position: relative;
}

.main5__button {
  height: 60px;
  margin: 0 auto;
  transition: opacity 0.3s;
  width: 335px;
}

.main5__button:hover {
  opacity: .8;
}

@media screen and (min-width: 769px) {
  .main5__button {
    height: 80px;
    width: 568px;
  }
}

/*--------------------------------------------
 Recruit
---------------------------------------------*/
.main6 {
  color: #fff;
  padding: 85px 20px 50px 20px;
}

@media screen and (min-width: 769px) {
  .main6 {
    padding: 110px 0 50px 0;
  }
}

.main6__ttl {
  font-size: 35px;
  margin-bottom: 25px;
}

@media screen and (min-width: 769px) {
  .main6__ttl {
    font-size: 40px;
    margin-bottom: 65px;
  }
}

.main6__ttlJp {
  font-size: 16px;
  font-size: 12px;
  font-weight: 400;
}

@media screen and (min-width: 769px) {
  .main6__ttlJp {
    font-size: 16px;
  }
}

.main6__flexBox {
  flex-direction: column;
  justify-content: space-between;
}

@media screen and (min-width: 769px) {
  .main6__flexBox {
    flex-direction: row;
  }
}

.main6__l, .main6__c, .main6__r {
  width: 100%;
}

@media screen and (min-width: 769px) {
  .main6__l, .main6__c, .main6__r {
    width: 31%;
  }
}

.main6__list {
  margin-bottom: 30px;
}

@media screen and (min-width: 769px) {
  .main6__list {
    margin-bottom: 50px;
  }
}

.main6__sTtl {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-family: "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 10px;
  padding: 0 15px;
}

@media screen and (min-width: 769px) {
  .main6__sTtl {
    line-height: 40px;
  }
}

.main6__sTtlWhite {
  background-color: #cbcbcb;
  color: #000;
}

.main6__item {
  align-items: center;
  display: flex;
  font-size: 14px;
  font-weight: 300;
  justify-content: space-between;
}

.main6__itemMargin {
  margin-bottom: 25px;
}

/*--------------------------------------------
 Company
---------------------------------------------*/
.main7 {
  background-color: #212121;
  color: #fff;
  padding: 70px 20px 0px 20px;
  position: relative;
}

@media screen and (min-width: 769px) {
  .main7 {
    padding: 90px 80px 80px 80px;
  }
}

.main7__lr {
  flex-direction: column;
  justify-content: space-between;
}

@media screen and (min-width: 769px) {
  .main7__lr {
    flex-direction: row;
  }
}

.main7__l, .main7__r {
  width: 100%;
}

@media screen and (min-width: 769px) {
  .main7__l, .main7__r {
    width: 48%;
  }
}

.main7__ttl {
  border-bottom: 2px solid #fff;
  font-size: 35px;
  line-height: 1.2;
  margin-bottom: 65px;
  margin-bottom: 0px;
  padding-bottom: 20px;
  text-align: center;
}

@media screen and (min-width: 769px) {
  .main7__ttl {
    font-size: 40px;
    padding-bottom: 25px;
    text-align: left;
  }
}

.main7__ttlJp {
  font-size: 12px;
  font-weight: 400;
}

@media screen and (min-width: 769px) {
  .main7__ttlJp {
    font-size: 16px;
  }
}

.main7__table {
  width: 100%;
}

.main7__item:not(:last-of-type) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.main7__item-ttl, .main7__item-description {
  font-size: 14px;
  font-weight: 300;
  padding: 8px 0;
}

@media screen and (min-width: 769px) {
  .main7__item-ttl, .main7__item-description {
    padding: 10px 0;
  }
}

.main7__item-ttl {
  padding-right: 20px;
  vertical-align: baseline;
  white-space: nowrap;
}

@media screen and (min-width: 769px) {
  .main7__item-ttl {
    padding-right: 55px;
  }
}

.main7__r {
  height: 210px;
  margin-left: -20px;
  width: calc(100% + 40px);
}

@media screen and (min-width: 769px) {
  .main7__r {
    height: auto;
    margin-left: 0;
    width: 50%;
  }
}

.main7__r iframe {
  height: 100%;
  width: 100%;
}

/*--------------------------------------------
 Aside - アサイド
---------------------------------------------*/
.aside {
  bottom: 0px;
  height: 50px;
  position: fixed;
  right: 0px;
  width: 375px;
}

@media screen and (min-width: 769px) {
  .aside {
    bottom: 25px;
    height: 84px;
    position: fixed;
    right: 0px;
    width: 563px;
  }
}

.aside__list {
  font-size: 0;
  justify-content: space-between;
}

.aside__item {
  height: 50px;
  transition: opacity 0.3s;
  width: 185px;
}

.aside__item:hover {
  opacity: .8;
}

@media screen and (min-width: 769px) {
  .aside__item {
    height: 84px;
    width: 278px;
  }
}

.aside__img {
  height: auto;
  width: 100%;
}

/*--------------------------------------------
 Footer - フッター
---------------------------------------------*/
.footer {
  color: #fff;
  padding: 25px 20px 75px 20px;
}

@media screen and (min-width: 769px) {
  .footer {
    padding: 50px 30px;
  }
}

.footer__flex-box {
  align-items: center;
  justify-content: center;
}

.footer__flex-item {
  font-size: 0;
}

.footer__copy {
  color: #fff;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 1px;
}

@media screen and (min-width: 769px) {
  .footer__copy {
    font-size: 14px;
  }
}

.loader {
  align-items: center;
  background-color: black;
  display: flex;
  height: 100vh;
  justify-content: center;
  left: 0;
  position: fixed;
  top: 0;
  transition: all 1s;
  width: 100%;
  z-index: 1000;
}

.loader__spinner {
  -webkit-animation: material-spinner 4s infinite;
  animation: material-spinner 4s infinite;
  border: 5px transparent solid;
  border-bottom: 5px #62BFED solid;
  border-radius: 100px;
  border-top: 5px #62BFED solid;
  height: 50px;
  position: relative;
  top: -25px;
  width: 50px;
}

.loaded {
  opacity: 0;
  visibility: hidden;
}

/*--------------------------------------------
 Inview - インビュー
---------------------------------------------*/
.inview .page__bg, .inview picture, .inview iframe {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.inview .page__bg {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  transition: all 3s ease-in-out;
}

.inview .main1__line {
  transition: width 0.8s ease-in-out 0s;
  width: 0;
}

.view .page__bg, .view picture, .view iframe {
  opacity: 1;
}

.view .page__bg {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.view .main1__line {
  width: 40%;
}
/*# sourceMappingURL=sourcemaps/index.css.map */
