@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;
  overflow: hidden;
  font-size: 14px;
  font-weight: normal;
  font-family : 'Noto Sans JP','Hiragino Kaku Gothic ProN', Meiryo, sans-serif;
  color: #000;
  line-height: 1.7;
  letter-spacing: 1px;
}
.font_mincyo{
  font-family: "游明朝",YuMincho,"HG明朝E" serif;,
}
a {
  outline: none;
  color: #000;
  text-decoration: none;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
a:hover {
  color: #000;
}
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{
  font-weight: normal;
  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;
}

.btn_link{
  background: #000;
  border: #000 solid 1px;
  color: #fff;
  display: block;
  padding: 10px 20px;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  border-radius: 30px;
}
.btn_link:hover{
  background: #fff;
  color: #000;
}

table{
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
table th{
  padding: 10px 5px;
  background: #333;
  color: #fff;
  border: #ccc solid 1px;
  font-weight: normal;
  width: 40%;
  vertical-align: top;
  text-align: center;
}
table td{
  padding: 10px;
  border: #ccc solid 1px;
}

.txt_right{
  text-align: right;
}

/* Clearing floats */
.clear:after{
  clear: both;
}
.clear:before,
.clear:after{
  display: table;
  content: "";
}

.accordion dd{
  display: none;
}

.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: 1050px;
  margin: 0 auto;
}



/* =header
-------------------------------------------------------------- */

#site_header{
  position: relative;
  padding: 0 5%;
  height: 50px;
  display: flex;
  align-items: center;
}
#header_logo img{
  width: 80px;
}
#site_description{
  display: none;
}
#header_nav__btn{
  position: fixed;
  top: 0;
  right: 0;
  width: 50px;
  height: 50px;
  text-align: center;
  z-index: 9999;
  cursor: pointer;
  background: #0068b7;
}
#header_nav__btn .border_wrap{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}
#header_nav__btn .border{
  width: 30px;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  display: block;
  margin-bottom: 8px;
  transition: all .4s;
  box-sizing: border-box;
}
#header_nav__btn .border:last-child{
  margin: 0;
}
#header_nav__btn.open .border:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
}
#header_nav__btn.open .border:nth-of-type(2) {
  opacity: 0;
}
#header_nav__btn.open .border:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
  transform: translateY(-10px) rotate(45deg);
}
#header_nav__inner{
  display: none;
  width: 100%;
  height: 100%;
  background: #0068b7;
  z-index: 999;
  position: fixed;
  top: 0;
  left: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.main_navigation{
  position: relative;
  padding: 60px 0;
}
.main_navigation li a{
  display: block;
  padding: 15px;
  position: relative;
  color: #fff;
  border-bottom: #aaa solid 1px;
}
.main_navigation li a span{
  font-size: 11px;
  margin-left: 20px;
}
.main_navigation li a i{
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.main_navigation .sub_nav.open>a i::before{
  content: '\f068';
}
.sub_nav>a{
  pointer-events: none;
}
.sub_nav ul{
  display: none;
}
.sub_nav li a{
  padding-left: 30px;
  background: #aaa;
  border-bottom: #fff solid 1px;
}





/* =Footer
-------------------------------------------------------------- */

#site_footer{
  background: #eee;
  padding: 50px 0 20px;
  /*color: #fff;*/
  margin-top: 80px;
}
#footer_logo img{
  width: 200px;
}
#footer_info h2{
  margin: 20px 0 10px;
  font-size: 16px;
}
#footer_info p{
  font-size: 12px;
}
#footer_map{
  margin: 50px 0;
}
#footer_map li a{
  display: block;
  padding: 10px;
  position: relative;
  /*color: #fff;*/
  border-bottom: #000 dotted 1px;
}
#footer_map li a i{
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
#footer_copy{
  text-align: center;
  font-size: 11px;
  margin: 50px 0 0;
}







/* =Top
-------------------------------------------------------------- */

#main_visual{
  background: url('../images/top/main.jpg') no-repeat center center;
  background-size: cover;
  position: relative;
  padding: 100px 5%;
}
#main_visual h1{
  width: 80%;
  margin: 0;
}
#front_service{
  background: #7ecef4;
}

#front_company{
  background: #0068b7;
}
.front_service__txt{
  padding: 50px 5% 20px;
}
.front_service__txt h2{
  font-size: 20px;
  border-bottom: #000 solid 2px;
  position: relative;
  margin-bottom: 20px;
}
.front_service__txt h2 span{
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 70%;
}
#front_company .front_service__txt{
  color: #fff;
}
#front_company .front_service__txt h2{
  border-bottom: #fff solid 2px;
}
.front_service__img{
  position: relative;
  width: 100%;
  height: 200px;
  display: block;
  overflow: hidden;
}
.front_service__img::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transition: 1s;
}
.front_service__img:hover::before{
  transform: scale(1.1);
}
#front_service .front_service__img::before{
  background-image: url('../images/top/photo01.jpg');
}
#front_company .front_service__img::before{
  background-image: url('../images/top/photo02.jpg');
}






/* =Common
-------------------------------------------------------------- */

.page_container{
  padding: 50px 0;
}
.page_title{
  font-size: 22px;
  text-align: center;
  margin-bottom: 50px;
  font-weight: bold;
}
.page_title span{
  display: block;
  color: #0068b7;
  font-size: 60%;
}

#page_404 p{
  text-align: center;
  margin-bottom: 50px;
}

.section{
  padding: 50px 0;
}
.section_title{
  border-left: #0068b7 solid 5px;
  padding-left: 15px;
  font-size: 18px;
  margin-bottom: 30px;
  font-weight: bold;
  line-height: 1.5;
}

.photos{
  margin-top: 30px;
}
.photos li{
  margin-bottom: 10px;
}
.photos p{
  margin: 5px 0 0;
  text-align: center;
}

/* =Contact
-------------------------------------------------------------- */

span.required{
  background: #a72126;
  color: #fff;
  padding: 1px 10px;
  margin-right: 5px;
  font-size: 12px;
  display: inline-block;
}
span.optional{
  background: #0068b7;
  color: #fff;
  padding: 1px 10px;
  margin-right: 5px;
  font-size: 12px;
  display: inline-block;
}
#contact_form{
  max-width: 700px;
}
#contact_form dt{
  margin-bottom: 10px;
}
#contact_form dd{
  margin-bottom: 30px;
}
#contact_form input[type="text"],
#contact_form input[type="email"],
#contact_form input[type="tel"],
#contact_form textarea{
  font-size: 16px;
  padding: 5px;
  background: #f7f8f8;
  border: #000 soilid 1px;
  border-radius: 5px;
  line-height: 1.7;
  width: 100%;
}
#contact_form dl{
  margin-bottom: 30px;
}
#contact_form dt{
  margin-bottom: 5px;
}
#form_submit_button{
  font-size: 16px;
  transition: .3s;
  outline: 0;
  background: #000;
  padding: 15px;
  color: #fff;
  text-align: center;
  margin: 0 auto;
  width: 100%;
  max-width: 400px;
  display: block;
  border: 0;
  cursor: pointer;
  border-radius: 10px;
}
.error_blank{
  color: #a72126;
  font-weight: bold;
}
span.loading {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border-top: 5px solid rgba( 0, 0, 0, 0.5 );
  border-right: 5px solid rgba( 0, 0, 0, 0.5 );
  border-bottom: 5px solid rgba( 0, 0, 0, 0.5 );
  border-left: 5px solid #ffffff;
  -webkit-transform: translateZ( 0 );
  -ms-transform: translateZ( 0 );
  transform: translateZ( 0 );
  -webkit-animation: load-circle 1.0s linear infinite;
  animation: load-circle 1.0s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -30px;
  margin-left: -30px;
}
@-webkit-keyframes load-circle {
  0% {
    -webkit-transform: rotate( 0deg );
    transform: rotate( 0deg );
  }
  100% {
    -webkit-transform: rotate( 360deg );
    transform: rotate( 360deg );
  }
}

@keyframes load-circle {
  0% {
    -webkit-transform: rotate( 0deg );
    transform: rotate( 0deg );
  }
  100% {
    -webkit-transform: rotate( 360deg );
    transform: rotate( 360deg );
  }
}

#thanks_mess h2{
  font-size: 16px;
  text-align: center;
  margin-bottom: 30px;
}
#thanks_mess p{
  margin-bottom: 30px;
}
#tel_box{
  border: #000 solid 1px;
  padding: 20px 10px;
  text-align: center;
  margin: 0 auto 50px;
  max-width: 500px;
}
#tel_box h3{
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 10px;
}
#tel_box .tel{
  margin: 0;
  font-size: 20px;
  font-weight: bold;
}






/* =SERVICE
-------------------------------------------------------------- */
.service_section{
  margin-bottom: 50px;
}
.service_section__txt dl{
  margin-bottom: 30px;
}
.service_section__txt dt{
  background: #333;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 10px;
}

.service_result li{
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}
.service_result li h3{
  text-align: center;
  font-size: 18px;
  margin-bottom: 10px;
  position: relative;
  padding-bottom: 5px;
}
.service_result li h3::after{
  content: '';
  width: 100px;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.service_result li p{
  margin: 0;
}
.service_result__before{
  background: #efefef;
  border: #333 solid 1px;
  position: relative;
}
.service_result__before::after{
  content: '';
  border-top: 30px solid #333;
  border-right: 30px solid transparent;
  border-left: 30px solid transparent;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}
.service_result__before h3::after{
  background: #333;
}
.service_result__after{
  background: #ffe4e1;
  border: #ff0000 solid 1px;
}
.service_result__after h3{
  color: #ff0000;
}
.service_result__after h3::after{
  background: #ff0000;
}



#partners li{
  text-indent: -1em;
  padding-left: 1em;
  margin-bottom: 5px;
}

/* =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;
    vertical-align: middle;
    width: 250px;
  }
  table td{
    padding: 20px;
  }
  #main_visual{
    padding: 200px 5%;
  }
  .front_section{
    display: flex;
    align-items: center;
  }
  .front_service__txt{
    width: 50%;
    padding: 50px 30px;
    position: relative;
    z-index: 5;
  }
  .front_section__inner{
    max-width: 550px;
  }
  #front_company .front_section__inner{
    margin: 0 0 0 auto;
  }
  .front_service__img{
    width: 50%;
    align-self: stretch;
    height: auto;
  }
  .front_service__img::after{
    content: '';
    top: 0;
    width: 150px;
    height: 100%;
    position: absolute;
    z-index: 5;
  }
  #front_service .front_service__img::after{
    right: -150px;
    background: #7ecef4;
    transform-origin: top left;
    transform: skewX(-15deg);
  }
  #front_company .front_service__img::after{
    left: -150px;
    background: #0068b7;
    transform-origin: top right;
    transform: skewX(15deg);
  }
  #front_service{
    flex-direction: row-reverse;
  }
  #site_footer__inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #footer_map li a{
    display: inline;
    padding: 0;
    border: 0;
  }
  #footer_map li a:hover{
    text-decoration: underline;
  }
  #footer_map li a i{
    right: auto;
    left: -15px;
  }
  #footer_map li{
    margin-bottom: 20px;
    font-size: 14px;
  }
  #footer_map{
    margin: 0;
  }
  .page_title{
    font-size: 28px;
  }
  #thanks_mess{
    text-align: center;
  }
  .service_section{
    margin-bottom: 80px;
  }
  .service_section__inner{
    display: flex;
    margin-bottom: 30px;
  }
  .service_section__txt{
    width: 50%;
    padding-right: 30px;
  }
  .service_section__illust{
    width: 50%;
  }
  .service_result{
    display: flex;
    justify-content: space-between;
  }
  .service_result li{
    width: 48%;
  }
  .service_result__before::after{
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    border-left: 30px solid #333;
    border-right: 0;
    left: auto;
    right: -30px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
  }
  .photos{
    display: flex;
    justify-content: space-between;
  }
  .photos li{
    margin: 0;
    width: 49%;
  }
}
@media screen and (min-width: 1024px){
  body{
    font-size: 16px;
  }
  #page{
    padding-top: 120px;
  }
  #site_header{
    height: 120px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    box-shadow: 0 2px 3px rgba(0,0,0,.3);
    padding: 20px 30px;
    background: #fff;
  }
  #header_logo{
    margin: 0 auto 0 0;
  }
  #header_logo img{
    width: 180px;
  }
  #site_description{
    display: block;
    font-size: 12px;
    margin: 0;
    position: absolute;
    top: 20px;
    right: 30px;
  }
  #header_nav__btn{
    display: none;
  }
  #header_nav__inner{
    display: block;
    position: static;
    background: none;
    overflow: visible;
  }
  .main_navigation{
    padding: 50px 0 0;
    display: flex;
    align-items: center;
  }
  .main_navigation li{
    margin-left: 50px;
    text-align: center;
  }
  .main_navigation li a{
    color: #000;
    border: 0;
    padding: 0;
  }
  .main_navigation li a span{
    position: absolute;
    color: #0068b7;
    margin: 0;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    opacity: 0;
    transition: .3s;
  }
  .main_navigation li a:hover,
  .main_navigation li.current a{
    transform: translateY(-5px);
  }
  .main_navigation li a:hover span,
  .main_navigation li.current span{
    bottom: -15px;
    opacity: 1;
  }
  .main_navigation li a i{
    display: none;
  }
  .front_service__txt{
    padding: 80px 50px;
  }
  .front_service__txt h2{
    font-size: 28px;
  }
  .front_service__txt p{
    font-size: 18px;
    margin-bottom: 50px;
  }
  .front_section{
    min-height: 500px;
  }
  #footer_info p{
    font-size: 14px;
  }
  .page_title{
    font-size: 36px;
    margin-bottom: 80px;
  }
  #thanks_mess h2{
    font-size: 20px;
    margin-bottom: 50px;
  }
  #thanks_mess p{
    line-height: 2.5;
    margin-bottom: 50px;
  }
  #tel_box .tel{
    font-size: 30px;
  }
  .page_container{
    padding: 80px 0;
  }
  .section{
    padding: 80px 0;
  }
  .section_title{
    font-size: 28px;
    padding-left: 20px;
  }
  .service_result li{
    padding: 30px 50px;
  }
  #partners ul{
    display: flex;
    flex-wrap: wrap;
  }
  #partners li{
    width: 50%;
  }
  .service_section__txt p{
    margin-bottom: 30px;
  }
  .service_section__txt dt{
    padding: 5px 20px;
  }
}