@CHARSET "UTF-8";
/*
*** basic setting on css/normalize.css ***
*/


/* = common setting
-------------------------------------------------------------- */ 

*{
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html{
  overflow-y: scroll;
}
body {
  margin: 0;
  font-size: 14px;
  font-weight: normal;
  font-family: 'Montserrat',YuGothicM, YuGothic, Meiryo,sans-serif;
  color: #222;
  line-height: 1.7;
  letter-spacing: 1px;
  -webkit-font-smoothing: antialiased;
  -webkit-font-feature-settings: 'palt' 1;
  font-feature-settings: 'palt' 1;
}
@font-face {
  font-family: YuGothicM;
  font-weight: normal;
  src: local('YuGothic-Medium'),
       local('Yu Gothic Medium'),
       local('YuGothic-Regular');
}
a {
  outline: none;
  color: #222;
  text-decoration: none;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
img{
  max-width: 100%;
  height: auto;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  vertical-align: bottom;
}
iframe{
  max-width: 100%;
}
h1,h2,h3,h4,h5,h6{
  margin: 0 0 20px;
}
ul,dl,dt,dd{
  margin: 0;
  padding: 0;
  font-weight: normal;
}
li{
  list-style-type: none;
  margin: 0;
  padding: 0;
}
p{
  margin: 0 0 20px;
}
.sp_none{
  display: none;
}

table{
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
table tr:not(:last-child){
  border-bottom: #dfe0e3 solid 1px;
}
table th{
  padding: 10px 0;
  text-align: left;
  font-weight: normal;
}
table td{
  padding: 10px;
  word-break: break-all;
}

.youtube_wrap{
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.youtube_wrap iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wrapper{
  width: 90%;
  max-width: 980px;
  margin: 0 auto;
}

#main_visual{
  border: #fff solid 10px;
  position: relative;
  text-align: center;
  background: url('../images/main_bg.jpg') no-repeat center center;
  background-size: cover;
  padding: 20px 20px 80px;
}
.logo{
  display: block;
  margin: 0 auto;
  width: 60px;
}
#main_visual__inner{
  margin: 50px auto;
  width: 70%;
  max-width: 250px;
}
#main_visual__inner li:not(:last-child){
  margin-bottom: 30px;
}
#main_visual__inner li:nth-child(2) img{
  width: 25%;
}
#main_visual__inner li:last-child img{
  width: 70%;
}
#main_visual__scroll{
  display: inline-block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: 2;
  padding: 10px 10px 60px;
  overflow: hidden;
  color: #fff;
  font-size: 11px;
  line-height: 1;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
}
#main_visual__scroll::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 50px;
  background: #fff;
  animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes sdl {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}


.container{
  position: relative;
}
.container::after{
  content: '';
  background: url('../images/side_logo.png') no-repeat center center;
  background-size: contain;
  position: absolute;
  bottom: -20px;
  right: 0;
  z-index: 2;
  width: 100px;
  height: 600px;
  filter: invert(100%);
  opacity: .5;
}
.section{
  padding: 50px 0;
}
.section .wrapper{
  position: relative;
  z-index: 10;
}
.section_title{
  text-align: center;
  font-size: 24px;
  margin-bottom: 30px;
  line-height: 1.4;
}
.section_title span{
  display: block;
  font-size: 50%;
}
#about h1{
  font-size: 18px;
  text-align: center;
  margin: 0;
  line-height: 1.5;
}
#service{
  background: #f0f0ee;
  position: relative;
}
#logo_bg{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 2;
  max-width: 300px;
}
#service ul li{
  text-align: center;
  margin-bottom: 5px;
}
#company{
  background: #292b31;
}
#company{
  color: #fff;
}
#company a{
  color: #fff;
  text-decoration: underline;
}
#company a:hover{
  text-decoration: none;
}
#company table{
  font-size: 80%;
  margin: 0 auto;
  max-width: 600px;
}
#company table th{
  width: 25%;
}

#site_footer{
  padding: 50px 0 20px;
  text-align: center;
}
#footer_copy{
  margin: 50px 0 0;
  font-size: 12px;
}





/* =RWD
-------------------------------------------------------------- */

@media screen and (min-width: 768px){
  .pc_none{
    display: none;
  }
  .sp_none{
    display: block;
  }
  a[href*="tel:"] {
    pointer-events: none !important;
    cursor: default !important;
    text-decoration: none !important;
  }
  table th{
    padding: 20px;
    display: table-cell;
    vertical-align: top;
    width: 250px;
  }
  table td{
    padding: 20px;
    display: table-cell;
  }
  #main_visual__inner{
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    margin: 100px auto;
  }
  #main_visual__inner li:not(:last-child){
    margin: 0;
  }
  .section{
    border: #fff solid 10px;
  }
  #about h1{
    font-size: 24px;
  }
  .section_title{
    font-size: 30px;
  }
  .container::after{
    right: 10px;
  }
}
@media screen and (min-width: 1024px){
  body{
    font-size: 16px;
  }
  .logo{
    width: 120px;
  }
  #main_visual{
    height: 100vh;
  }
  #main_visual__inner{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 5;
    margin: 0 auto;
    width: 90%;
  }
  #main_visual__inner li{
    width: 600px;
    padding: 0 20px;
  }
  #main_visual__inner li:nth-child(2){
    width: 120px;
  }
  #main_visual__inner li:nth-child(2) img,
  #main_visual__inner li:last-child img{
    width: auto;
  }
  #main_visual__scroll{
    padding: 10px 10px 90px;
    font-size: 14px;
  }
  #main_visual__scroll::after{
    height: 80px;
  }
  .section{
    padding: 80px 0;
  }
  #about h1{
    font-size: 30px;
  }
  .section_title{
    font-size: 48px;
    margin-bottom: 50px;
  }
  .section_title span{
    font-size: 18px;
  }
  #service ul li{
    font-size: 20px;
  }
  #company table{
    font-size: 16px;
    max-width: 800px;
  }
  .container::after{
    width: 200px;
    height: 1200px;
    bottom: -80px;
  }
  #footer_copy{
    margin-top: 100px;
  }
}