@charset "UTF-8";
/*@import "variables/**";*/
/*
    基本スタイル
*/
/*
    リセットCSS等の基本設定
*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "游ゴシック Medium", YuGothic, YuGothicM, メイリオ, Meiryo, sans-serif;
  /*	font-size: $fz-base;
	font-weight: $fw-base;
	color: $MainColor;
	line-height: $lh-base;*/
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /*	background: $SubColor;*/
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
a, p, span,
blockquote, code,
ol, ul, li, dl, dt, dd,
div, section, article, main, aside,
nav, header, footer,
img, figure, figcaption,
address, time, audio, video,
iframe, fieldset,
form, label, table, caption,
tbody, tfoot, thead,
tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
}

article, aside, footer, header, nav, section, main {
  display: block;
}

li, ol {
  list-style: none;
}

a:link, a:visited, a:hover, a:active {
  text-decoration: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  table-layout: fixed;
  border: 1px solid #ececec;
}

th, td {
  padding: 4px 6px;
  text-align: left;
  vertical-align: top;
  border: 1px solid #ff0000;
}

input, textarea {
  padding: 8px;
  border: 1px solid #ff0000;
  border-radius: 0;
  background-image: none;
  font-family: inherit;
  font-size: inherit;
  -webkit-appearance: none;
}

input:focus, textarea:focus {
  outline: none;
  border: 1px solid #ff0000;
  -webkit-box-shadow: none;
          box-shadow: none;
}

textarea {
  resize: none;
}

input[type="submit"] {
  cursor: pointer;
  border: none;
}

input[type="submit"]:hover, input[type="submit"]:focus {
  outline: none;
  border: none;
}

input[type="submit"] ::-moz-focus-inner {
  padding: 0;
  border: none;
}

input[type="radio"] {
  display: none;
}

input[type="radio"] + span {
  display: inline-block;
  position: relative;
  padding: 0 0 0 1.2em;
  margin: 0 0.2em 0;
  cursor: pointer;
}

input[type="radio"] + span::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #fff;
  border: 1px solid #ff0000;
  border-radius: 50%;
  width: 1em;
  height: 1em;
  display: block;
}

input[type="radio"] + span::after {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

input[type="radio"] + span:focus, input[type="radio"] + span:checked {
  outline: none;
  border: 1px solid #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: #ff0000;
}

input[type="radio"]:checked + span::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0.2em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #ff0000;
  border-radius: 50%;
  width: 0.6em;
  height: 0.6em;
  display: block;
  opacity: 1;
}

input[type="checkbox"] {
  display: none;
}

input[type="checkbox"] + span {
  display: inline-block;
  position: relative;
  padding: 0 0 0 1.2em;
  margin: 0 0.2em 0;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

input[type="checkbox"] + span::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #fff;
  border: 1px solid #ff0000;
  border-radius: 2px;
  width: 1em;
  height: 1em;
  display: block;
}

input[type="checkbox"] + span::after {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

input[type="checkbox"]:checked + span::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  width: 1em;
  height: 0.6em;
  margin-top: -0.2em;
  display: block;
  border-left: 3px solid #ff0000;
  border-bottom: 3px solid #ff0000;
  opacity: 1;
}

select {
  width: 100%;
  padding: 8px 24px 8px 8px;
  border-radius: 0;
  background-image: none;
  border: 1px solid #ff0000;
  font-family: inherit;
  font-size: 1em;
  cursor: pointer;
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select:focus {
  outline: none;
  border: 1px solid #ff0000;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.hidden {
  display: none;
}

.inner {
  margin: 0 auto;
  max-width: 100%;
  width: 1100px;
}

.wrapper {
  overflow: hidden;
}

section {
  margin-bottom: 80px;
}

h2 {
  font-size: 1.6em;
  text-align: center;
  margin-bottom: 20px;
}

small {
  font-size: .5rem;
  margin: 5px;
}

/*
    モジュール
*/
.header {
  position: absolute;
  top: 0;
  right: 0;
  padding: 32px 0 24px;
  width: 100%;
  -webkit-transition: none;
  transition: none;
  z-index: 100;
}

@media only screen and (max-width: 959px) {
  .header {
    padding: 0px 0 24px;
  }
}

.header .inner {
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 1280px;
  min-width: 960px;
  width: 76%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media only screen and (max-width: 959px) {
  .header .inner {
    min-width: auto;
    width: auto;
  }
}

.header .inner .bl_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

@media only screen and (max-width: 959px) {
  .header .inner .bl_nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    padding: 110px 15px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.88);
    z-index: 90;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
  }
}

.header .inner .bl_nav.open {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

@media only screen and (max-width: 959px) {
  .header .inner .bl_nav .bl_globalnav {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-top: 0px;
  }
}

.header .inner .bl_nav .bl_globalnav .bl_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

@media only screen and (max-width: 959px) {
  .header .inner .bl_nav .bl_globalnav .bl_menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.header .inner .bl_nav .bl_globalnav .bl_menu .el_menu_item {
  margin: 0 16px;
}

@media only screen and (max-width: 959px) {
  .header .inner .bl_nav .bl_globalnav .bl_menu .el_menu_item {
    margin: 0;
    border-top: 1px solid #333;
  }
  .header .inner .bl_nav .bl_globalnav .bl_menu .el_menu_item:last-child {
    border-bottom: 1px solid #333;
  }
}

.header .inner .bl_nav .bl_globalnav .bl_menu .el_menu_item a {
  padding-bottom: 8px;
  font-size: 1.4rem;
  color: #fff;
  position: relative;
}

@media only screen and (max-width: 959px) {
  .header .inner .bl_nav .bl_globalnav .bl_menu .el_menu_item a {
    display: block;
    padding: 13px 0;
    font-size: 1.5rem;
    font-size: 1rem;
  }
}

.header .inner .bl_nav .bl_globalnav .bl_menu .el_menu_item a.active::after {
  opacity: 1;
}

.header .inner .bl_nav .bl_globalnav .bl_menu .el_menu_item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease-out;
  transition: opacity 0.4s ease-out;
}

@media only screen and (max-width: 959px) {
  .header .inner .bl_nav .bl_globalnav .bl_menu .el_menu_item a::after {
    content: none;
  }
}

.header .inner .bl_nav .bl_globalnav .bl_menu .el_menu_item a:hover::after {
  opacity: 1;
}

.ly_main_image {
  background-image: url(../img/main.png);
  background-size: cover;
  padding: 0;
  height: 100vh;
  overflow: hidden;
}

.ly_main_image:before {
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: ' ';
}

@media only screen and (max-width: 769px) {
  .ly_main_image:before {
    height: 300px;
  }
}

@media only screen and (max-width: 769px) {
  .ly_main_image {
    height: 300px;
  }
}

.ly_main_image .wrapper {
  position: absolute;
  top: 50%;
  left: 11.875%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #fff;
  text-align: left;
  line-height: 2;
}

.ly_main_image .wrapper h1 {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 769px) {
  .ly_main_image .wrapper h1 {
    font-size: 1.2rem;
  }
}

.ly_main_image .wrapper p {
  font-size: 1rem;
  letter-spacing: 0.2em;
}

@media only screen and (max-width: 769px) {
  .ly_main_image .wrapper p {
    margin-top: 8px;
    font-size: .78rem;
    padding: 0 10px;
  }
}

@media only screen and (max-width: 769px) {
  .ly_main_image .wrapper {
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    line-height: 2;
    top: 25%;
    height: 200px;
  }
}

.bl_service ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.bl_service ul li {
  width: 33.333%;
  text-align: center;
}

.bl_service ul li img {
  margin: 0 auto 10px;
  width: 50%;
  height: auto;
  display: block;
}

.bl_service ul li p {
  font-weight: bold;
  font-size: 1.1rem;
}

@media only screen and (max-width: 769px) {
  .bl_service ul li p {
    font-size: .78rem;
  }
}

.el_sub_text {
  font-weight: bold;
  margin-bottom: 2rem;
  text-align: center;
  font-size: 1.2rem;
}

.bl_works ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.bl_works ul li {
  width: 30.333%;
  height: 350px;
  margin-bottom: 20px;
  overflow: hidden;
  text-align: center;
  border: 1px #cccccc solid;
  position: relative;
}

@media only screen and (max-width: 769px) {
  .bl_works ul li {
    width: 46%;
    height: 200px;
  }
}

.bl_works ul li img {
  margin: 0 auto 10px;
  width: 100%;
  height: auto;
  display: block;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  /*
                &:hover{
                    transform:scale(1.02,1.02);
                    transition:0.5s all;
                    
                }*/
}

.bl_works ul li .caption {
  text-align: center;
  padding-top: 50%;
  color: #fff;
  height: 100%;
}

.bl_works ul li .el_mask {
  width: 100%;
  height: 100%;
  position: absolute;
  /* 絶対位置指定 */
  top: 0;
  left: 0;
  opacity: 0;
  /* マスクを表示しない */
  background-color: rgba(0, 0, 0, 0.4);
  /* マスクは半透明 */
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.bl_works ul li .el_mask:hover {
  opacity: 1;
  /* マスクを表示する */
}

.ly_about {
  text-align: center;
}

.ly_about p {
  margin: 0 20px;
}

@media only screen and (max-width: 769px) {
  .ly_about p {
    font-size: .78rem;
  }
}

.el_photo {
  margin: 0 auto 20px;
  display: block;
}

.el_photo img {
  border-radius: 50%;
  /* 角丸半径を50%にする(=円形にする) */
  width: 180px;
  /* ※縦横を同値に */
  height: 180px;
  /* ※縦横を同値に */
}

@media only screen and (max-width: 769px) {
  .el_photo img {
    width: 100px;
    /* ※縦横を同値に */
    height: 100px;
    /* ※縦横を同値に */
  }
}

/*1.フェードインアニメーションの指定*/
.scroll {
  opacity: 0;
}

/*一瞬表示されるのを防ぐ*/
.fadeInDown {
  -webkit-animation-name: fadeInDown;
          animation-name: fadeInDown;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

/*2.上下の動きを指定*/
.updown {
  -webkit-transform: translateY(-100px);
          transform: translateY(-100px);
}

.downup {
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}

/*3.左右の動きを指定*/
.sect02 {
  overflow: hidden;
}

/*横スクロールバーを隠す*/
.slide-right {
  -webkit-transform: translateX(200px);
          transform: translateX(200px);
}

.slide-left {
  -webkit-transform: translateX(-200px);
          transform: translateX(-200px);
}

.bl_scroll {
  position: absolute;
  bottom: 0px;
  left: 50%;
  z-index: 20;
}

@media only screen and (max-width: 769px) {
  .bl_scroll {
    display: none;
  }
}

.bl_scroll a {
  color: #ffffff;
  display: inline-block;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  text-decoration: none;
  padding-top: 60px;
}

.bl_scroll a span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 30px;
  height: 50px;
  margin-left: -15px;
  border: 2px solid #fff;
  border-radius: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.bl_scroll a span::before {
  position: absolute;
  top: 10px;
  left: 50%;
  content: '';
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: sdb 2s infinite;
  animation: sdb 2s infinite;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@-webkit-keyframes sdb {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes sdb {
  0% {
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(0, 20px);
            transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.drawer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  height: 70px;
  padding: 0 1em;
}

.drawer.selected {
  position: fixed;
  z-index: 666;
  top: 0;
}

.navbar_toggle {
  z-index: 9999;
}

.navbar_toggle_icon {
  position: relative;
  display: block;
  height: 2px;
  width: 30px;
  background: #fff;
  -webkit-transition: ease .5s;
  transition: ease .5s;
}

.navbar_toggle_icon:nth-child(1) {
  top: 0;
}

.navbar_toggle_icon:nth-child(2) {
  margin: 8px 0;
}

.navbar_toggle_icon:nth-child(3) {
  top: 0;
}

/*OPEN時の動き*/
.navbar_toggle.open .navbar_toggle_icon:nth-child(1) {
  top: 10px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.navbar_toggle.open .navbar_toggle_icon:nth-child(2) {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
}

.navbar_toggle.open .navbar_toggle_icon:nth-child(3) {
  top: -10px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media screen and (min-width: 960px) {
  nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .navbar_toggle {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */