@charset "UTF-8";
/*
  contents

 - reset（編集しない）
 - base（font-familyなどの変更。fontは1.6rem＝16px）
 - link（テキストリンク関連）
 - button（ボタン関連）
 - typography（見出し・注釈・本文など共通）
 - main（各セクションごとのスタイル）
 - footer（コピーライトなどフッター関連）
 - utility（clearfix・mb10など）
 */
/* -----------------------------------------
  reset（編集しない）
  ----------------------------------------- */
  html, body, div, span, object, iframe,
  h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  abbr, address, cite, code,
  del, dfn, em, img, ins, kbd, q, samp,
  small, strong, sub, sup, var,
  b, i,
  dl, dt, dd, ol, ul, li,
  fieldset, form, label, legend,
  table, caption, tbody, tfoot, thead, tr, th, td,
  article, aside, canvas, details, figcaption, figure,
  footer, header, menu, nav, section, summary,
  time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    max-height: 99999px;
    line-height: 0;
  }

  body {
    line-height: 1;
  }

  article, aside, details, figcaption, figure,
  footer, header, menu, nav, section {
    display: block;
  }

  ol, ul {
    list-style: none;
  }

  blockquote, q {
    quotes: none;
  }

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

  /* remember to define focus styles! */
  :focus {
    outline: 0;
  }

  /* remember to highlight inserts somehow! */
  ins {
    text-decoration: none;
  }

  del {
    text-decoration: line-through;
  }

  /* tables still need 'cellspacing=&quot;0&quot;' in the markup */
  table {
    border-collapse: collapse;
    border-spacing: 0;
  }

  *, *:before, *:after {
    box-sizing: border-box;
  }

/* -----------------------------------------
  base（font-familyなどの変更。fontは1.6rem＝16px）
  ----------------------------------------- */
  /* rem用 */
  html {
    font-size: 62.5%;
  }

  body {
    font-family:'Karla',"游ゴシック Medium" , "Yu Gothic Medium" , "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "メイリオ" , Meiryo , "Meiryo UI" , Avenir , "Open Sans" ,  Helvetica,"Helvetica Neue", Arial , Verdana , Roboto ,"ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-size: 1.6rem;
    color: #160f0a;    
  }

  /* 解析タグの隙間対策 */
  body > img {
    display: none;
  }

  #content-wrapper {
    position: relative;
  }
  /* 画像の隙間対策 */
  #content-wrapper img {
    display: block;
    vertical-align: bottom;
    width: 100%;
  }

/* -----------------------------------------
  settings
  ----------------------------------------- */
  #content-wrapper a {
    display: inline-block;
    -webkit-transition: opacity 0.5s ease-out;
    transition: opacity 0.5s ease-out;
  }
  #content-wrapper a:hover {
    opacity: 0.7;
  }
/* -----------------------------------------
  aos
  ----------------------------------------- */
  /* 全体フェードアップ */
  [data-aos="fadeUp-anime"] {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  [data-aos="fadeUp-anime"].aos-animate {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
/* -----------------------------------------
  main（各セクションごとのスタイル）
  ----------------------------------------- */
  /* サイトの最大幅 */
  html {
    background-color: #FFF!important;
  }
  #content-wrapper {
    max-width: 1920px;
    margin: 0 auto;
  }
  .header {
    background-color: transparent;
    padding: 2rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
  }
  .header-logo {
    position: absolute;
    top: 60px;
    left: 54px;
    z-index: 1;
  }
  .header-list {
    display: flex;
    justify-content: flex-end;
    margin: 48px;
  }
  .header-list .header-item {
    padding-right: 26px;
  }
  .header-item:last-child{
    padding-right: 0;
  }
  .header-list .header-item a {
    display: inline-block;
    color: #160f0a;
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
    position: relative;
  }
  .header-list .header-item a::after {
    position: absolute;
    bottom: -18px;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #160f0a;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: left top;
    transform-origin: left top;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
  }
  .header-list .header-item a:hover::after {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  .inner {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
  }
  .pc {
    display: block !important; 
  }
  .sp { 
    display: none !important;
  }
  .header button {
    display: none;
    z-index: 10000;
  }
/* -----------------------------------------
  drawer
  ----------------------------------------- */

  .drawer--top .drawer-hamburger, .drawer--top.drawer-open .drawer-hamburger {
    right: 10px;
    top: 0px;
  }
  .header .sp-nav {
    height: 100%;
  }
  .sp-menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    top: 25%;
    left: 8%;
  }
  .sp-nav::before {
    content: '';
    width: 77.6px;
    height: 51.2px;
    display: inline-block;
    background: transparent url(../img/logo_sp.png) no-repeat top center / cover;
    position: absolute;
    top: 16px;
    left: 16px;
  }
  #navi li {
    margin-bottom: 18px;
  }
  #navi a {
    font-size: 36px;
    line-height: 1.2;
    font-weight: bold;
    position: relative;
  }
  #navi a:hover {
    text-decoration: none;
  }
  #navi a::after{
    position: absolute;
    bottom: 2px;
    left: 0;
    content: '';
    width: 100%;
    height: 4px;
    background: #160f0a;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: left top;
    transform-origin: left top;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s;
  }
  #navi a:hover::after{
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
  .drawer-hamburger-icon, .drawer-hamburger-icon:after, .drawer-hamburger-icon:before {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #160f0a;
  }
  .drawer-hamburger-icon:after, .drawer-hamburger-icon:before {
    position: absolute;
    top: 0;
    left: -12px;
    content: " ";
  }
  .drawer-hamburger-icon:after {
    top: 0;
    left: 12px;
  }
  .drawer-hamburger {
    padding: 12px;
  }
  .drawer-open .drawer-hamburger-icon {
    background: #fff;
    border: 1px solid #160f0a;
    transition: unset;
  }
  .drawer-open .drawer-hamburger-icon::before {
    background: #fff;
    border: 1px solid #160f0a;
    top: -1px;
    left: -13px;
    transition: unset;
  }
  .drawer-open .drawer-hamburger-icon::after {
    background: #fff;
    border: 1px solid #160f0a;
    top: -1px;
    left: 11px;
    transition: unset;
  }
  .drawer-hamburger-icon, .drawer-hamburger-icon::before, .drawer-hamburger-icon::after {
    transition: unset;
  }
  .drawer-hamburger-icon {
    margin-top: 0;
    margin-right: 0;
    position: absolute;
    top: 30px;
    right: 26px;
  }
  

/* -----------------------------------------
  fv
  ----------------------------------------- */

  #fv {
    margin-bottom: 175px;
  }
  #fv .inner {
    display: flex;
    justify-content: center;
    padding-top: 210px;
  }
  #fv .fv-img {
    margin: 0 32px 40px 24px;
    display: flex;
    align-items: center;
  }
  #fv .fv-contents {
    padding: 40px 0 32px 72px;
  }
  #fv .fv-contents img {
    height: auto;
    padding: 0 16px;
  }
  #fv .fv-ttl {
    margin-bottom: 36px;
  }
  #fv .fv-ttl h2 {
    line-height: 1.4;
    font-size: 32px;
    letter-spacing: 0;
  }
  #fv .fv-ttl span {
    color: #eb6010;
    line-height: 1.1;
    font-size: 72px;
  }
  #fv .fv-desc p {
    line-height: 1.8;
  }

/* -----------------------------------------
  about
  ----------------------------------------- */
  #about {
    color: #fff;
    padding-left: 120px;
    width: 100%;
  }
  #about .bg-adjust {
    background: #eb6010;
    width: 100%;
    position: relative;
    padding:180px 0 120px 250px;
    position: relative;
  }
  #about .bg-adjust::before{
    content: '';
    background: transparent url(../img/about_bg.png) no-repeat top center / cover;
    display: block;
    position: absolute;
    bottom: 0;
    left: 66px;
    width: 66px;
    height: 66px;
  }
  #about .bg-adjust::after{
    content: '';
    background: transparent url(../img/about_bg.png) no-repeat top center / cover;
    display: block;
    position: absolute;
    bottom: 66px;
    left: 0;
    width: 66px;
    height: 66px;
  }
  #about .about-desc {
    line-height: 1.8;
    padding-right: 32px;
    max-width: 600px;
  }
  .section-ttl  {
    margin-bottom: 60px;
  }
  .section-ttl h2 {
    font-size: 72px;
    line-height: 1;
    margin-bottom: 40px;
  }
/* -----------------------------------------
  peformance
  ----------------------------------------- */

  #performance {
    padding: 24em 24px 80px;
    background: #f7f6f5;
    margin-top: -270px;
  }

  #performance .pfm-list {
    display: flex;
    justify-content: space-between;
  }
  #performance .pfm-list li {
    margin-right: 3%;
  }
  #performance .pfm-list li:last-child{
    margin-right: 0;
  }

  #performance .pfm-ttl {
    line-height: 1.5;
    font-size: 32px;
    letter-spacing: .2px;
    margin-bottom: 40px;
  }
  #performance .pfm-ttl span{
    color: #eb6010;
  }
  #performance .pfm-item li{
    margin:0 0 34px 24px;
    line-height: 1.2;
    font-weight: bold;
    position: relative;
  }
  #performance .pfm-item li::before {
    content: '';
    display: block;
    background: transparent url(../img/border.png) no-repeat top center / cover;
    position: absolute;
    width: 16px;
    height: 1px;
    top: 10px;
    left: -28px;
  }
  .bg-pfm {
    width: 100%;
    height: 1300px;
    background: #f7f6f5;
    position: absolute;
    top: 1040px;
    z-index: -10;
  }
  .pfm01 p, .pfm02 p, .pfm03 p{
    line-height: 1.8;
    margin-bottom: 32px;
    display: inline-block;
    width: 100%;
    max-width: 260px;
  }
/* -----------------------------------------
  contractor
  ----------------------------------------- */

  #contractor {
    color: #fff;
    padding-right: 120px;
    width: 100%;
  }
  #contractor .bg-adjust {
    background: #160f0a;
    width: 100%;
    position: relative;
    padding: 200px 32px 100px 24px;
    position: relative;
  }
  #contractor .bg-adjust::before{
    content: '';
    background: transparent url(../img/ctr_bg.png) no-repeat top center / cover;
    display: block;
    position: absolute;
    bottom: 66px;
    right: 0;
    width: 66px;
    height: 66px;
  }
  #contractor .bg-adjust::after{
    content: '';
    background: transparent url(../img/ctr_bg.png) no-repeat top center / cover;
    display: block;
    position: absolute;
    bottom: 0;
    right: 66px;
    width: 66px;
    height: 66px;
  }
  #contractor .bg-adjust .inner {
    display: flex;
    justify-content: flex-start;
  }
  .accent {
    color: #eb6010;
  }
  #contractor .section-ttl h2 {
    margin-bottom: 16px;
  }
  #contractor .section-ttl p {
    margin: 0 0 40px 8px;
  }
  .section-ttl p {
    line-height: 1.5;
  }
  #contractor .section-ttl img {
    width: 230px;
  }
  #contractor .ctr-head {
    margin-left: 40px;
  }
  #contractor .ctr-intro {
    margin-left: 48px;
  }
  #contractor .ctr-intro p {
    line-height: 1.8;
  }
  #contractor .intro-ttl {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 10px;
    margin-bottom: 24px;
    border-bottom: 1px solid #fff;
  }
  #contractor .intro-ttl h3 {
    font-size: 24px;
    letter-spacing: 4px;
    margin-right: 24px;
    line-height: 1.2;
  }
  #contractor .intro-ttl p {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.2;
  }
  #contractor .intro-contents p {
    margin-bottom: 28px;
  }
  #contractor .intro-contents span {
    line-height: 1.2;
    display: inline-block;
    border: 1px solid #fff;
    padding: 6px;
    margin: 8px 0 12px 0;
  }

/* -----------------------------------------
  cases
  ----------------------------------------- */

#cases {
  padding: 140px 0;
}
#cases p,
#cases span {
  line-height: 1.8;
}
#cases h3{
  line-height: 1.8;
}
#cases .cases_pu {
  text-decoration: none;
  color: #160f0a;
  flex: 0 1 auto;
}
#cases .section-ttl {
  text-align: center;
}
#cases .inner {
  max-width: 1600px;
}
#cases .section-ttl span {
  color: #eb6010;
}
#cases .cases_list {
  display:flex;
  justify-content:space-between;
  padding:0 2%;
  width:100%;
  flex:0 1 auto;
}
#cases .cases_item:last-child {
  margin-right: 0;
}
#cases .cases_item {
  margin-right: 4%;
}
#cases .bg_orange {
  display: inline-block;
  background: #eb6010;
  font-size: 2.5rem;
  font-weight: bold;
  color: #fff;
  padding: 0 6%;
  margin-top: 1em;
}
.txt_orange {
  color: #eb6010;
}
#cases .txt_bold {
  font-weight: bold;
  font-size: 2rem;
  margin-top: 1em;
}
.txt_small {
  text-align: right;
  margin: 4% 2% 0;
  font-size: 1.2rem;
}
/* -----------------------------------------
  modal
  ----------------------------------------- */
  #modal_content01,
  #modal_content02,
  #modal_content03 {
    z-index: 100;
    display: none;
    position:fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
  }
  .modal_inner h2,
  .modal_inner h3,
  .modal_inner p {
    line-height: 1.5;
    color: #fff;
  }
  .modal_inner h2 {
    font-size: 3rem;
    font-weight: normal;
    display: inline-block;
    padding: 0 3%;
    margin-right: 5%;
    margin-bottom: 3%;
    border: 2px solid #fff;
  }
  .modal_inner h3 {
    font-size: 3rem;
    letter-spacing: .08em;
    display: inline-block;
  }
  .modal_content {
    display: flex;
    flex-direction: column;
    width: 80%;
    margin: 0 auto;
  }
  .modal_inner .before {
    margin-left: 3%;
    margin-bottom: 1em;
  }
  .modal_inner .after {
    margin-left: auto;
    padding-left: 3%;
  }
  .modal_inner .after_ttl,
  .modal_inner .before_ttl {
    font-size: 6rem;
    font-weight: bold;
    margin: .4em 0;
  }
  .after_ttl {
    text-align: right;
  }
  .modal_inner .after_txt,
  .modal_inner .before_txt {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1em;
  }
  .txt_mb {
    margin-bottom: 1em;
  }
  #modal_content01 .modal_inner{
    position: absolute;
    left: 50%;
    top: 42%;
    transform: translate(-50%,-50%);
    width: 90%;
    max-width: 90%;
    overflow-y:scroll;
    height: 75%;
    padding: 5em 5%;
    background: transparent url(../img/bg_case01.jpg) no-repeat top center / cover;
    z-index: 200;
  }
  #modal_content01 .before_content{
    max-width: 470px;
  }
  #modal_content02 .before_content{
    max-width: 320px;
  }
  #modal_content03 .before_content{
    max-width: 390px;
  }
  #modal_content01 .after_content{
    max-width: 370px;
    margin-left: auto;
  }
  #modal_content02 .after_content{
    max-width: 400px;
    margin-left: auto;
  }
  #modal_content03 .after_content{
    max-width: 380px;
    margin-left: auto;
  }
  #modal_content02 .modal_inner{
    position: absolute;
    left: 50%;
    top: 42%;
    transform: translate(-50%,-50%);
    width: 90%;
    max-width: 90%;
    overflow-y:scroll;
    height: 75%;
    padding: 5em 5%;
    background: transparent url(../img/bg_case02.jpg) no-repeat top center / cover;
    z-index: 200;
  }
  #modal_content03 .modal_inner{
    position: absolute;
    left: 50%;
    top: 42%;
    transform: translate(-50%,-50%);
    width: 90%;
    max-width: 90%;
    overflow-y:scroll;
    height: 75%;
    padding: 5em 5%;
    background: transparent url(../img/bg_case03.jpg) no-repeat top center / cover;
    z-index: 200;
  }
  #modal_overlay01 {
    display:none;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.7);
    z-index: 50;
    position: fixed;
  }
  .button_link {
    position: fixed;
    display: inline-block;
    width: 3em;
    height: 3em;
    border: 3px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    top: 7%;
    right: 7%;
    z-index: 200;
  }
  .button_link::after {
    content: '';
    display: inline-block;
    width: 1.7em;
    position: absolute;
    transform: rotate(45deg);
    top: 46%;
    right: 16%;
    border: 2px solid #fff;
  }
  .button_link::before {
    content: '';
    display: inline-block;
    width: 1.7em;
    position: absolute;
    transform: rotate(-45deg);
    top: 46%;
    right: 16%;
    border: 2px solid #fff;
  }

/* -----------------------------------------
  contact
  ----------------------------------------- */
  #contact {
    background: #f7f6f5;
  }
  #contact .section-ttl {
    padding: 140px 0;
    text-align: center;
    background: #fff;
  }
  #contact .section-ttl span {
    color: #eb6010;
  }

/* -----------------------------------------
  フォーム
  ----------------------------------------- */


.form {
  background: #f7f6f5;
  max-width: 650px;
  margin: 50px auto ;
  line-height: 1.6;
  padding: 40px 0 240px 0;
}
.formTable {
  width: 100%;
  table-layout: fixed;
  margin: 20px 0;
  border-bottom: none;
}
.formTable tr{
  margin-bottom: 12px;
}
.formTable th{
  padding: 0 20px;
  vertical-align: top;
  color: #160f0a;
  font-size: 16px;
  font-weight: normal;
  background-color: #f5f5f5;
  position: relative;
  text-align: left;
  line-height: 1.5;
  margin-right: 12px;
  display: block;
  width: 100%;
}
.formTable td {
  vertical-align: top;
  padding: 20px;
  white-space: normal;
  word-break: break-all;
  word-wrap: break-word;
  font-size: 16px;
  color:#555;
  display: block;
  width: 100%;
}
form input {
  padding: 18px 10px;
}
input.name, input.company{
  width: 100%;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1em;
}
input.name:focus {
  border: 1px solid rgba(0, 0, 0, 0.32);
  box-shadow: none;
  outline: none;
}
 input.company:focus {
  border: 1px solid rgba(0, 0, 0, 0.32);
  box-shadow: none;
  outline: none;
}

input[type="email"] {
  width: 100%;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1em;
}
input[type="email"]:focus {
  border: 1px solid rgba(0, 0, 0, 0.32);
  box-shadow: none;
  outline: none;
}
input[type="submit"] {
  max-width: 610px;
  width: 100%;
  height: 60px;
  border-style: none;
  background: #eb6010;
  border: 1px solid #eb6010;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  -webkit-transition: filter 0.5s ease-out;
  -moz-transition: filter 0.5s ease-out;
  -ms-transition: filter 0.5s ease-out;
  transition: filter 0.5s ease-out;
  cursor: pointer;
  -webkit-appearance: none;
  line-height: .2;
  padding: 52px 10px;
  transition: 0.3s ease 0s;
  font-feature-settings: "palt";
  letter-spacing: 6px;
}
input[type="submit"]:hover {
  filter: brightness(120%);
}
input[type="submit"]:active {
  background: #eb6010a7;
  border: 1px solid #eb6010a7;
  color: #fff;
  -webkit-transform : translateY(4px);
  -ms-transform : translateY(4px);
  transform : translateY(4px);
}
.formTable textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1em;
  height: 200px;
  padding: 10px;
  width: 100%;
}
.formTable textarea:focus{
  border: 1px solid rgba(0, 0, 0, 0.32);
  box-shadow: none;
  outline: none;
}
span.t_color {
  background-color: transparent;
  border: 1px solid #eb6010;
  color: #eb6010;
  padding: 1px 12px;
  margin-left: 20px;
  display: inline-block;
  line-height: 1.5;
}
.message{
  margin-top: 20px;
  text-align: center;
  font-size: 16px;
  line-height: 20px;
  color: #F00;
  font-weight: bold;
}
.TaC {
  text-align: center;
  margin: 0 auto;
}

/* -----------------------------------------
  footer（コピーライトなどフッター関連）
  ----------------------------------------- */
br.spe {
  display: none;
}
/* -----------------------------------------
  footer
  ----------------------------------------- */

  #footer {
    padding: 80px 4% 180px;
    position: relative;
  }
  #footer .footer-content {
    display: flex;
    justify-content: space-between;
  }
  #footer .footer-content p {
    line-height: 2em;
    color: #333333;
  }
  #footer .company h2 {
    margin-bottom: 32px;
  }
  #footer .company h3 {
    margin-bottom: 20px;
  }
  #footer .company p {
    line-height: 1.5;
    color: #333333;
  }
  #footer .footer-nav {
    display: flex;
    flex-direction: column;
    margin: 0 2% 0 60px;
  }
  #footer .footer-nav .footer-item a {
    text-decoration: none;
    color: inherit;
  }
  #footer .footer-nav li {
    line-height: 1.5;
    margin-bottom: 20px;
    position: relative;
  }
  #footer .footer-nav li::after {
    content: '';
    display: block;
    background: transparent url(../img/border.png) no-repeat top center / cover;
    position: absolute;
    width: 16px;
    height: 1px;
    top: 12px;
    left: -32px;
  }
  #footer .copyright {
    position: absolute;
    color: #333333;
    bottom: 100px;
    right: 74px;
  }
  .sp_br {
    display: none;
  }
  .address th,
  .address td {
    line-height: 2em;
    font-weight: normal;
    color: #333333;
  }
  .address th {
    white-space: nowrap;
  }
  .company-desc {
    padding: 0 1em 0 1.5em;
  }
  .company-wrapper {
    display: flex;
    justify-content: space-between;
    width: 700px;
  }

/* -----------------------------------------
  SP
  ----------------------------------------- */

@media (max-width: 640px) {
  .header button {
    display: block;
    position: absolute;
    width: 32px;
    height: 40px;
    top: 32px;
    right: 30px;
  }
  .header-item {
    display: none;
  }
  .pc {
    display: none !important; 
  }
  .sp { 
    display: block !important;
  }
  .header-logo {
    top: 16px;
    left: 16px;
  }
  .header-list {
    margin: 28px;
  }
  .header-logo img {
    width: 80%;
  }
  #fv {
    margin-bottom: 25%;
  }
  #fv .inner {
    flex-direction: column;
    padding-top: 140px;
  }
  #fv .fv-ttl, #fv .fv-desc {
    display: flex;
    justify-content: center;
  }
  #fv .fv-ttl {
    margin-bottom: 54px;
    width: 100%;
  }
  #fv .fv-ttl h2 {
    font-size: 6vw;
  }
  #fv .fv-ttl span {
    font-size: 14.25vw;
  }
  #fv .fv-ttl img {
    max-width: 100%;
    height: auto;
  }
  #fv .fv-desc {
    line-height: 2.4;
    padding-left: 12px;
  }
  #fv .fv-contents {
    padding: 40px 8px 32px;
  }
  br.spe {
    display: inline-block;
  }
  br.ret {
    display: none
  }
  #about {
    padding-left: 24px;
  }
  #about .bg-adjust {
    padding: 100px 0 140px 60px;
  }
  #about .about-desc {
    margin-bottom: 40px;
  }
  #about .bg-adjust::before{
    bottom: 0;
    left: 50px;
    width: 50px;
    height: 50px;
  }
  #about .bg-adjust::after{
    bottom: 50px;
    left: 0;
    width: 50px;
    height: 50px;
  }
  .pfm-ttl {
    margin-bottom: 20px;
  }
  .section-ttl h2 {
    margin-bottom: 20px;
    font-size: 60px;
  }
  .pfm-list {
    flex-direction: column;
  }
  .pfm-item li {
    margin: 0 0 20px 24px;
  }
  .pfm-contents {
    display: flex;
    justify-content: center;
  }
  .pfm01 p, .pfm02 p, .pfm03 p {
    max-width: 300px;
  }
  .pfm01, .pfm02, .pfm03  {
    margin-bottom: 24px;
  }
  .bg-pfm {
    height: 2140px;
    top: 1300px;
  }
  #cases {
    padding: 100px 0;
  }
  #cases .cases_list {
    flex-direction: column;
    justify-content: center;
    padding: 0 4%;
  }
  #cases .cases_item {
    margin: 0 auto 15%;
  }
  #cases .cases_item:last-child {
    margin: auto;
  }

  #contractor {
    padding-right: 24px;
  }

  #contact .section-ttl {
    padding: 100px 0;
  }
  #contractor .section-ttl h2, #contractor .section-ttl p {
    margin-left: 40px;
  }
  #contractor .bg-adjust {
    padding: 80px 32px 120px 0;
  }
  #contractor .bg-adjust::before{
    bottom: 50px;
    right: 0;
    width: 50px;
    height: 50px;
  }
  #contractor .bg-adjust::after{
    bottom: 0;
    right: 50px;
    width: 50px;
    height: 50px;
  }
  #contractor .bg-adjust .inner {
    display: flex;
    flex-direction: column;
  }
  #contractor .section-ttl img {
    width: 100%;
  }
  #contractor .intro-ttl h3 {
    font-size: 20px;
  }
  #contractor .intro-ttl p {
    font-size: 18px;
  }
  #contractor .ctr-head {
    margin-left: 0;
  }
  #contractor .ctr-intro {
    margin-left: 24px;
  }
  .form {
    padding: 0 0 60px 0;
  }
  input[type="submit"] {
    max-width: 92%;
    padding: 32px 10px;
  }
  .formTable {
    width: 100%;
    table-layout: fixed;
    margin: 20px 0;
    text-align: left;
    border-bottom: none;
  }
  .formTable th{
    font-size: 14px;
    width: 100%;
    display: block;
    padding: 5px 5%;
  }
  .formTable td {
    width: 100%;
    display: block;
  }
  input {
    display: block;
    margin: 0 auto;
  }
  span.t_color {
    margin-left: 20px;
    margin-right: -45px;
  }
  .formTable td {
    vertical-align: top;
    padding: 10px 6% 20px;
    white-space: normal;
    word-break: break-all;
    word-wrap: break-word;
    font-size: 13px;
    color:#555;
    width: 100%;
    display: block;
    position: relative;
  }
  input[type="submit"]:hover {
    filter: brightness(100%);
  }
  #footer {
    flex-direction: column;
    align-items: center;
    padding: 0 12px 80px;
  }
  #footer .company-logo h2 {
    margin-bottom: 40px;
  }
  #footer .footer-nav {
    margin: 0 2% 0 5em;
  }
  .company-wrapper {
    justify-content: space-between;
    flex-direction: column;
    margin-bottom: 3em;
    width: 100%;
  }
  #footer .company-logo {
    padding: 0 1em 0 1.5em;
    margin-left: 5%;
  }
  #footer .company-desc {
    margin-left: 5%;
    padding: 1em 1em 1em 1.5em;
  }
  #footer .footer-content {
    flex-direction: column;
  }
  #footer .copyright {
    bottom: -40px;
    right: 0;
    text-align: center;
    position: relative;
    display: block;
    font-size: 3vw;
  }
  .txt_small {
    font-size: 1rem;
    margin: 4% 6% 0;
  }
  .modal_inner h2 {
    padding: 0 10%;
    font-size: 2.5rem;
  }
  .modal_inner h3 {
    font-size: 2rem;
    display: block;
  }
  .modal_inner p {
    font-size: 1.35rem;
  }
  .before_txt {
    font-size: 2rem;
  }
  .modal_inner .after_ttl,
  .modal_inner .before_ttl {
    font-size: 4rem;
    margin: .2em 0;
  }
  .modal_inner .after_txt,
  .modal_inner .before_txt {
    font-size: 1.8rem;
    margin-bottom: 1em;
  }
  .modal_ttl {
    margin-bottom: 5%;
  }
  #modal_content03 .modal_inner,
  #modal_content02 .modal_inner,
  #modal_content01 .modal_inner {
    width: 93%;
    max-width: 92%;
    height: 79%;
    padding: 2em 5%;
  }
  .modal_content {
    width: 100%;
  }
  .modal_inner .before {
    margin-left: 0;
  }
  .sp_br {
    display: block;
  }
  .after_ttl {
    text-align: left;
  }
  #modal_content03 .before_content,
  #modal_content02 .before_content,
  #modal_content01 .before_content {
    max-width: 100%;
  }
  #modal_content03 .after_content,
  #modal_content02 .after_content,
  #modal_content01 .after_content {
    max-width: 100%;
    margin-left: 0;
  }
  .modal_inner .after {
    margin-left: 0;
    padding-left: 0;
  }
  .button_link {
    width: 2em;
    height: 2em;
    border: 2px solid #fff;
    top: 5%;
    right: 8%;
  }
  .button_link::before {
    width: 1.4em;
    top: 46%;
    right: 9%;
    border: 1px solid #fff;
  }
  .button_link::after {
    width: 1.4em;
    top: 46%;
    right: 9%;
    border: 1px solid #fff;
  }
}

/* /@media */

/* -----------------------------------------
  utility（clearfix・mb10など）
  ----------------------------------------- */
  /* clearfix */
  #content-wrapper .clearfix {
    width: 100%;
  }
  #content-wrapper .clearfix:after {
    content: "";
    display: block;
    clear: both;
  }


