@charset "UTF-8";

/* Table Of Contents
----------------------------------------------------------------------------
General Elements
header
gNav
visual
topicPath
footer
---------------------------------------------------------------------------- */


/*General Elements
---------------------------------------------------------------------------- */
html {
  font-size: 62.5%;
  overflow-y: scroll;
}

body {
  font-family: "游ゴシック体", "游ゴシック", YuGothic, 'Noto Sans Japanese', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  color: #FFF;
  position: relative;

}




@media screen and (max-width: 767px) {
  body {
    position: static;

  }

}

#fadeFX {
  overflow: hidden;
}

#fadeFX:before,
#fadeFX:after {
  content: "";
  display: block;
  width: 100%;
  height: 100vh;
  opacity: 0;
  position: fixed;
  top: 0;
  z-index: 1;
}

#fadeFX:before {
  background-image: linear-gradient(0deg,
    transparent 25%, #000 25%, #000 50%, transparent 50%, transparent 75%,#000 75%, #000
  );
  background-size: 80px 80px;
  left: 0;
}

#fadeFX:after {
  background-image: linear-gradient(0deg,
    #000 25%, transparent 25%, transparent 50%, #000 50%, #000 75%,transparent 75%, transparent
  );
  background-size: 80px 80px;
  right: 0;
}

.fadeOut {
  -webkit-transform-origin: center top 0;
  -moz-transform-origin: center top 0;
  -ms-transform-origin: center top 0;
  -o-transform-origin: center top 0;
  transform-origin: center top 0;
  -webkit-animation: fadeOut 1s cubic-bezier(.55, 0, .1, 1) both;
  animation: fadeOut 1s cubic-bezier(.55, 0, .1, 1) both;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
    /* -webkit-transform: scale(1); */
  }
  to {
    opacity: 0;
    /* -webkit-transform: scale(1.2); */
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
    /* transform: scale(1); */
  }
  to {
    opacity: 0;
    /* transform: scale(1.2); */
  }
}

.slideIn:before {
  -webkit-animation: slideInBefore 1s cubic-bezier(.55, 0, .1, 1) both;
  animation: slideInBefore 1s cubic-bezier(.55, 0, .1, 1) both;
}

.slideIn:after {
  -webkit-animation: slideInAfter 1s cubic-bezier(.55, 0, .1, 1) both;
  animation: slideInAfter 1s cubic-bezier(.55, 0, .1, 1) both;
}

@-webkit-keyframes slideInBefore {
  from {
    opacity: 1;
    left: 0;
    z-index: 4;
  }
  to {
    opacity: 1;
    left: 100vw;
    z-index: 4;
  }
}

@keyframes slideInBefore {
  from {
    opacity: 1;
    left: 0;
    z-index: 4;
  }
  to {
    opacity: 1;
    left: 100vw;
    z-index: 4;
  }
}

@-webkit-keyframes slideInAfter {
  from {
    opacity: 1;
    right: 0;
    z-index: 4;
  }
  to {
    opacity: 1;
    right: 100vw;
    z-index: 4;
  }
}

@keyframes slideInAfter {
  from {
    opacity: 1;
    right: 0;
    z-index: 4;
  }
  to {
    opacity: 1;
    right: 100vw;
    z-index: 4;
  }
}

a {
  color: #000;
  text-decoration: none;
  outline: none;

}

a:hover,
a:active,
a:visited,
a:focus {
  text-decoration: none;

}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}


/*l-header
---------------------------------------------------------------------------- */
.l-header {
  padding-top: 50px;
  background: #ffffff;
  position: relative;
  z-index: 2;
}

.l-header .container {
  max-width: 1330px;
  height: 100px;
  padding: 0 20px;
  margin: 0 auto;
  background: #ffffff;
  position: relative;
}

.l-header .logo {
  float: left;
}

.l-header .logo a {
  display: inline-block;
}

.l-header .logo a img {
  display: block;
  width: 399px;
  height: 99px;
}

.l-header .toggle {
  display: none;
}

@media screen and (max-width: 767px){
  .l-header {
    width: 100%;
    height: 70px;
    background: transparent;
    padding-top: 0;
    z-index: 2;
  }

  .l-header .container {
    height: 70px;
    padding: 0;
  }

  .l-header .logo {
    float: none;
    height: 70px;
    padding-top: 10px;
    padding-left: 17.5px;
    background: transparent;
  }
  
  .l-header .logo a {
    display: block;
    width: 240px;
    height: 50px;
    background: url(http://shimizujimusyo.jp/property/companylogosp.png) no-repeat center center / 100% auto;
    position: relative;
    z-index: 4;
  }

  .l-header .logo a img {
    display: none;
  }

  .l-header .toggle {
    display: block;
    width: 30px;
    height: 40px;
    background: transparent;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 17.5px;
    z-index: 4;
  }

  .l-header .toggle span {
    display: block;
    width: 40px;
    height: 2px;
    background: #000;
    position: absolute;
    left: 0;
    margin: auto;
    transition: all 0.3s ease;
  }
  .l-header .toggle span:nth-child(1) {
    width: 30px;
    top: 13px;
  }
  .l-header .toggle span:nth-child(2) {
    width: 30px;
    top: 23px;
  }

  .l-header.open .toggle span:nth-child(1) {
    top: 18px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .l-header.open .toggle span:nth-child(2) {
    top: 18px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}

@media screen and (max-width: 320px) {
  .l-header .logo a {
    width: 200px;
    height: 50px;
  }
}


/* l-nav
---------------------------------------------------------------------------- */
.l-nav {
  float: right;
}

.l-nav ul li {
  float: left;
  display: table;
  height: 100px;
  margin-left: 35px;
}

.l-nav ul li a {
  display: table-cell;
  vertical-align: middle;
  opacity: 0.3;
  font-family: arial, "游ゴシック体", "游ゴシック", YuGothic, 'Noto Sans Japanese', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-weight: 700;
  color: #000;
  font-size: 22px;
  font-size: 2.2rem;
  letter-spacing: 0.015em;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.l-nav ul li a:hover,
.l-nav ul li a.current {
  opacity: 1;
}

@media screen and (max-width: 1050px){
  .l-nav {
    float: left;
    width: 100%;
    margin-top: 30px;
  }
  
  .l-nav ul li {
    height: auto;
  }
  
  .l-nav ul li:first-child {
    margin-left: 0;
  }
}

@media screen and (max-width: 767px){
  .l-nav {
    float: none;
    width: 100%;
    height: 100vh;
    padding: 105px 17.5px 0 17.5px;
    margin-top: 0;
    background: rgba(222,222,222,222.95);
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: all 0.3s ease;
  }

  .l-nav.open {
    position: fixed;
    opacity: 1;
    z-index: 3;
  }

  .l-nav ul li {
    float: none!important;
    display: block;
    padding: 0;
    margin-left: 0;
  }

  .l-nav ul li a {
    display: block;
    padding: 14px 0;
    font-size: 21.26px;
    font-size: 2.126rem;
    text-align: left;
    transition: all 0.3s ease;
  }

  .l-nav ul li a:hover,
  .l-nav ul li a.current {
    opacity: 1;
  }
}


/* l-mv
---------------------------------------------------------------------------- */
.l-mv {
  height: 240px;
  padding: 100px 15px;
  background: url(../../images/common/bg_mv.jpg) no-repeat center center / cover;
  position: relative;
}

.l-mv:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.l-mv h1 {
  font-weight: 700;
  color: #000;
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 1.35;
  letter-spacing: 0.1em;
  text-align: center;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 767px){
  .l-mv {
    height: 150px;
    padding: 55px 15px;
  }

  .l-mv h1 {
    font-size: 26px;
    font-size: 2.6rem;
  }
}


/* l-box
---------------------------------------------------------------------------- */
.l-box {
}

@media screen and (max-width: 767px){
  .l-box {
  }
}


/* l-pageBody
---------------------------------------------------------------------------- */
.l-pageBody {
  width: 100%;
  padding: 0 20px;
  background: #ffffff;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 767px){
  .l-pageBody {
    padding: 0 17.5px;
  }
}


/* l-content
---------------------------------------------------------------------------- */
.l-content {
  max-width: 1290px;
  margin: 0 auto;
}

@media screen and (max-width: 767px){
  .l-content {
    margin: 0 auto;
  }
}


/* l-pageTop
---------------------------------------------------------------------------- */
.l-pageTop {
}

@media screen and (max-width: 767px){
}


/* l-footer
---------------------------------------------------------------------------- */
.l-footer {
  padding: 135px 0 75px 0;
  margin-top: -15px;
  background: #ffffff;
  position: relative;
  z-index: 2;
}

.l-footer .container {
  max-width: 1330px;
  padding: 0 20px;
  margin: 0 auto;
}

.l-footer .copyright small {
  font-family: arial, "游ゴシック体", "游ゴシック", YuGothic, 'Noto Sans Japanese', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-weight: 700;
  color: #000;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.35;
}

@media screen and (max-width: 767px){
  .l-footer {
    padding: 75px 0 40px 0;
  }
  
  .l-footer .copyright small {
    font-size: 12.5px;
    font-size: 1.25rem;
    line-height: 1.49;
  }
}