@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&family=Noto+Sans+JP:wght@100;300;400;500;700;900&family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap");
/* CSS Document */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  word-break: break-all;
}
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, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
ul, ol {
  list-style: none;
}
html, body {
  margin: 0 auto;
  padding: 0;
  font-family: "Roboto", "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "ＭＳ Ｐゴシック", sans-serif;
  font-feature-settings: "palt";
  font-size: 20px;
  text-align: left;
  color: #444;
  min-width: 1200px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  html, body {
    font-size: 4vw;
    min-width: 240px;
    max-width: 767px;
  }
}

/*表示・非表示*/
@media screen and (min-width:768px) {
  .pc {
    display: block;
  }
  .smp {
    display: none;
  }
  .sp{
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .smp {
    display: block;
  }
  .sp{
    display: block;
  }
}

/*wrap*/
.wrap1200{
  max-width: 1240px;
  padding-right: 20px;
  padding-left: 20px;
  margin: 0 auto;
}

/*img*/
img {
  border-style: none;
  vertical-align: bottom;
  padding: 0;
  line-height: 0em;
  max-width: 100%;
  height: auto;
}
figure {
  margin: 0 auto;
  text-align: center;
}
/*youtube*/
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25% !important;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/*txt*/
p {
  line-height: 1.5em;
  letter-spacing: 0.1em;
  margin: 0 0 1em;
  padding: 0;
}
p:last-child {
  margin: 0;
}
strong {
  font-weight: bold;
}
.bold {
  font-weight: bold;
}
.normal {
  font-weight: normal;
}
.under_line {
  text-decoration: underline;
}
.line_through {
  text-decoration: line-through;
}
.mincho {
  font-family: "Noto Serif JP", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "メイリオ", Meiryo, serif;
}
.white {
  color: #fff;
}
.black {
  color: #333;
}
.gy {
  color: #aaa;
}
.red {
  color: #c83232;
}
.blue {
  color: #326496;
}
.left {
  text-align: left;
}
.right {
  text-align: right;
}
.center {
  text-align: center;
}
/*link*/
a {
  color: inherit;
  text-decoration: none;
}
/*a:hover {
  text-decoration: none !important;
}*/
.opa {
  transition: 0.3s opacity;
}
.opa:hover {
  opacity: 0.7;
}
/*form*/ ::placeholder {
  color: #d3d3d3;
  line-height: 1.25em;
}
::-ms-input-placeholder {
  color: #d3d3d3;
  line-height: 1.25em;
}
input[type="submit"], button {
  -webkit-appearance: none;
}
input, textarea, select, button {
  width: 100%;
  padding: 0.5em;
  outline: none;
  background: #fff;
  border: 1px solid #444;
  color: #444;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "ＭＳ Ｐゴシック", sans-serif;
  font-size: 0.8rem;
  line-height: 1.25em;
  box-sizing: border-box;
  border-radius: 0;
}
textarea {
  text-align: left;
  height: 10em;
  font-weight: normal;
}
input[type="radio"], input[type="checkbox"] {
  width: auto;
  padding: 0;
  border: none;
  margin-right: 0.5em;
  cursor: pointer;
}
label {
  cursor: pointer;
}
select.empty {
  color: #d3d3d3;
}
.select {
  border: 1px solid #444;
  padding: 0.5em;
  position: relative;
}
.select:after {
  content: "";
  pointer-events: none;
  width: 12px;
  height: 12px;
  border-left: 2px solid #444;
  border-top: 2px solid #444;
  position: absolute;
  right: 1em;
  top: calc(50% - 3px);
  transform: translateY(-50%) rotate(225deg);
}
.select select {
  -webkit-appearance: none;
  border: none;
  padding: 0;
}
@media screen and (max-width: 768px) {
  input, textarea {
    font-size: 1rem;
  }
  textarea {
    height: 10em;
  }
}


/*色*/
:root{
  --orange:#ea5514;
  --yellow:#ffe21a;
}


/*------------------------------------------
ヘッダー
--------------------------------------------*/

header{
display: flex;
justify-content: space-between;
  align-items: center;
    text-align: center;
  height: 120px;
}

header .left{
  display: flex;
  align-items: center;
  margin-left: 20px;
}

header .left .buddy{
  margin-right: 30px;
  text-align: left;
}

header .left .buddy img{
  max-width: 230px;
}

header .left .buddy p{
  font-size: 10px;
  padding-top: 10px;
  font-feature-settings: "palt";
  text-align: left;
}

header .left .akiba-jpx .flex{
  display: flex;
}

header .left .akiba-jpx p {
  font-size: 10px;
  margin-left: 20px;
}

header .right{
  display: flex;
  align-items: center;
  flex-shrink: 0;
}


header .h-tel-area{
  margin-right: 20px;
  
}

header .h-tel-area a{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    pointer-events: none;
}

header .h-tel-area a strong{
font-size: 1.6rem;
    line-height: 1.25em;
    letter-spacing: 0.1em;
  color: #000;
}

header .h-tel-area a span{
  display: inline-block;
  margin-right: 8px;
    line-height: 0;
}

header .h-tel-area p{
  font-size: 14px;
}

header .h-contact-area{
  display: flex;
}

header .h-contact-area .file-btn{
     background: #ea5514;
    color: #fff;
    text-align: center;
    width: 160px;
    height: 130px;
}

header .h-contact-area .file-btn a{
display: block;
    padding: 30px 0;
    font-size: 0.9rem;
  font-weight: bold;
}

header .h-contact-area .file-btn a span{
  display: block;
  padding: 4px 0 6px;
}

header .h-contact-area .contact-btn {
  /*background: #ea5514;*/

  color: #fff;
  text-align: center;
  width: 160px;
  height: 130px;
}

header .h-contact-area .contact-btn a{
  display: block;
  padding: 30px 0;
  font-size: 0.9rem;
  color: #ea5514;
  font-weight: bold;
}

header .h-contact-area .contact-btn a span{
  display: block;
  font-weight: bold;
  padding: 9px 0 9px 0;
}


@media screen and (max-width:768px) {
  header{
    display: inherit;
    padding: 10px;
  }
  
  header .right{
    display: none;
  }
  
  header .left{
    justify-content: space-between;
    margin-left: 0;
  }
  
header .left .buddy{
  margin-right: 0;
  text-align: left;
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-right:10px;
}
  
  header .left .buddy img{
    width: 100%;
  }
  
header .left .akiba-jpx{
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-left:10px;
}
  
  header .left .akiba-jpx p {
  margin-left: 0;
  text-align: left;
}
  
}

header a:hover {
    opacity: .8;
}

/*fv*/


#fv{
  max-width: 100vw;
  height:  calc(( 800 / 1920 ) * 100%);
  overflow: hidden;
}

#fv .flex{
  display: flex;
  
}

#fv .flex .left{
  width: 50%;
  background: var(--orange); 
  padding-top: 4rem;
  padding-bottom: 4rem;
  text-align: center;
}


#fv .flex .left h1{
  display: block;
  padding-right: 20px;
  padding-left: 20px;
}

#fv .left .left_txt{
  text-align: center;
  /*padding-top: calc(( 60 / 1920 ) * 100vw);*/
  padding-top: 3rem;
  padding-right: 20px;
  padding-left: 20px;
}

#fv .flex .left .left_txt a.fv_contact{
  display: block;
  background: var(--yellow);
  border-radius: 999px;
  text-align: center;
  width: clamp(300px, 40vw, 460px);
  color: #444;
  padding: 10px 10px 10px 10px;
  font-weight: bold;
  font-size: 1.2rem;
  position: relative;
  margin: 100px auto 0 auto;
}

#fv .flex .left .left_txt a.fv_file {
  color: #fff;
  margin-top:20px;
  display: block;
  text-decoration: underline;
}



#fv .flex .left .left_txt a.fv_contact::after{
  content: "";
  background: url("../images/ico_btn_arrow3.png")no-repeat;
  width: 17px;
  height: 16px;
  background-size: contain;
  position: absolute;
  top: 50%;
  right :20px;
  transform: translateY(-50%);
}

#fv .flex .left .left_txt a:hover{
  opacity: 0.8;
}

#fv .flex .left .left_logo{
  background: #fff;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  margin-top:2rem;
}


#fv .flex .left .left_logo dl{
  max-width: 648px;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  align-items: center;
}

#fv .flex .left .left_logo dl img{
  width: 100%;
}

#fv .flex .left .left_logo dt{
  width: 100%;
}

#fv .flex .left .left_logo dt img.ex{
  max-width: 7.75rem;
}

#fv .flex .left .left_logo dd{
  width: 33.3%;
  padding: 0 10PX;
}



#fv .flex .left .left_logo dd img.safie{
  max-width: 109px;
  margin-top: 1rem;
}

#fv .flex .left .left_logo dd img.svacan{
  max-width: 177px;
  margin-top: 1rem;
}

#fv .flex .left .left_logo dd img.data{
  max-width: 65px;
  margin-top: 1rem;
}


#fv .flex .right{
  width: 50%;
  overflow: hidden;
  background: url("../images/fv_img.jpg") no-repeat;
  background-size: cover;
 background-position: top left;
  position: relative;
}

#fv .flex .right .fv_comp-file{
    background: #fff;
    position: absolute;
    right: 0;
    bottom: 20px;
    padding: 210px 20px 20px 30px;
    border-radius: 10px 0 0 10px;
    text-align: center;
    box-shadow: rgba(0, 0, 0, 0.8) 0 0 5px
}

#fv .flex .right .fv_comp-file::after{
  content: "";
  background: url("../images/file_img.png")no-repeat;
  width: 287px;
  height: 174px;
  position: absolute;
  top:20px;
  left:50%;
  transform: translateX(-50%);
  background-size: contain;
}



#fv .flex .right .fv_comp-file a{
  display: block;
  background: var(--orange);
  color: #fff;
  padding: 15px 20px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

#fv .flex .right .fv_comp-file span{
  font-size: 16px;
  font-weight: 400;
}

#fv .flex .right a:hover{
  opacity: .8;
}





@media screen and (max-width:768px) {
  #fv .flex{
    flex-direction: column;
  }
  
  #fv .flex .left{
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
  }
  
  #fv .flex .left .left_img{
    padding: 20px 20px 0 20px;;
  }
  
  #fv .flex .left .left_txt{
  padding-top: 1rem;
  }
  
  #fv .flex .left .left_txt a.fv_contact{
    width: 80%;
    margin: 20px auto 0 auto;
  }
}




/*フッター*/
footer p.copyright {
  background: #444;
  color: #fff;
  font-size: 0.5rem;
  padding: 1em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  footer p.copyright {
    font-size: 0.66rem;
  }
}
/*固定フッター*/
@media print, screen and (min-width: 768px) {
  body {
    padding-bottom: 0 !important;
  }
  #fixed_btn {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  footer {
    border-bottom: 1px solid #fff;
  }
  #fixed_btn {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 999;
  }
  #fixed_btn ul {
    display: flex;
    width: 100%;
  }
  #fixed_btn ul li {
    width: 50%;
  }
  #fixed_btn ul li:nth-child(2) {
    border-left: 1px solid #fff;
  }
  #fixed_btn ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    background: #444;
    color: #fff;
    padding: 7.5% 0 5%;
  }
  #fixed_btn ul li a span {
    width: 6.25vw;
  }
  #fixed_btn ul li a p {
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    margin-top: 0.33em;
  }
}


.swiper {
  padding: 40px 0;
  width: 100%;
  box-shadow: rgba(0, 0, 0, 0.25) 0 0 5px 2px;
}

.swiper .swiper-wrapper{
  transition-timing-function:linear!important;/*動きを滑らかにする*/
  -webkit-transition-timing-function:linear!important;
  -o-transition-timing-function:linear!important;
}
  
@media screen and (max-width: 767px) {
  .swiper {
    box-shadow: none;
    padding: 20px 0;
  }
}
.swiper .swiper-slide {
  width: 100%;
}
.swiper .swiper-slide p {
  width: 300px;
  padding: 20px 0;
  box-shadow: rgba(0, 0, 0, 0.25) 0 0 5px 2px;
  border: 3px solid #ea5514;
  margin: 0;
  text-align: center;
  font-weight: bold;
}
/*cv*/
.cv {
  margin-top: 100px;
}
.cv.mt0 {
  margin-top: 0;
}
.cv ul {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}
.cv ul li {
  width: 580px;
}
.cv ul li a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 90px;
  border: 3px solid #ea5514;
  background: #ea5514;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1em;
  box-shadow: rgba(0, 0, 0, 0.25) 0 0 5px 2px;
}
.cv ul li a.file {
  background: #fff;
  color: #444;
}

.cv ul li a.file:hover {
  opacity: .8;
}
.cv ul li a span {
  margin-right: 10px;
  line-height: 0;
}
.cv ul li a small {
  width: 100%;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  line-height: 1em;
  margin-top: -1.5em;
}
@media screen and (max-width: 767px) {
  .cv ul {
    padding: 0 5%;
    display: block;
  }
  .cv ul li {
    width: 100%;
    margin: 5% auto;
  }
  .cv ul li a {
    height: 15vw;
  }
  .cv ul li a.tel {
    pointer-events: all;
    height: 17.5vw;
  }
  .cv ul li a span {
    margin-right: 2.5%;
  }
  .cv ul li a small {
    letter-spacing: 0;
    margin-top: -1em;
  }
}
/*メイン*/
#content {
  overflow: hidden;
  background: #fff;
  position: relative;
  z-index: 75;
}
section {
  width: 100%;
  margin: 0 auto;
  padding: 80px 0;
}
.maincontent {
  padding: 0;
  margin: 0 auto;
  width: 1200px;
}
@media screen and (max-width: 767px) {
  section {
    padding: 10% 0;
  }
  .maincontent {
    width: 90%;
  }
}
/*title*/
h1, h2, h3, h4, h5, h6 {
  letter-spacing: 0.1em;
}
h2.tit_h2 {
  padding-top: 30px;
  position: relative;
  text-align: center;
  font-size: 1.7rem;
  line-height: 1.2em;
  letter-spacing: 0.1em;
  color: #ea5514;
  margin-bottom: 50px;
}
h2.tit_h2:before {
  content: "";
  width: 70px;
  height: 8px;
  background: #444;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  margin: auto;
}
@media screen and (max-width: 767px) {
  h2.tit_h2 {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    margin-bottom: 7.5%;
  }
  h2.tit_h2:before {
    width: 12.5vw;
    height: 1.25vw;
  }
}
/*sec01*/
#sec01 ul {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
#sec01 ul li {
  width: 25%;
  text-align: center;
}

#sec01 ul li h3{
  font-size: 1.2rem;
  color: var(--orange);
  font-weight: bold;
  margin: 20px 0 0 0;
}

#sec01 ul li p {
  font-size: 0.9rem;
  color: #444444;
  margin-top: 1em;
}
@media screen and (max-width: 767px) {
  #sec01 ul {
    flex-wrap: wrap;
    width: calc(100% + 5vw);
    margin: -3.75vw 0 -3.75vw -2.5vw;
  }
  #sec01 ul li {
    width: calc(50% - 5vw);
    margin: 3.75vw 2.5vw;
  }
  #sec01 ul li figure img {
    width: 75%;
  }
  #sec01 ul li p {
    font-size: 0.8rem;
  }
}

#sec01 .ex{
  max-width: 1000px;
  border: 3px solid;
  border-color: var(--orange);
  margin: 60px auto 60px auto;
  padding: 10px 60px 20px 60px;
  box-shadow: 20px 20px 0 #eaa596;
}

#sec01 .ex h4{
  color: var(--orange);
  border-bottom: dashed 2px;
  border-color: var(--orange);
  font-size: 1.2rem;
  text-align: center;
  padding: 0 0 10px 0;
}

#sec01 .ex .item{
  display: flex;
  justify-content: center;
  margin: 20px 0 0 0;
}

#sec01 .ex p{
  font-size: 0.8rem;
  font-weight: bold;
}

@media screen and (max-width:768px) {
  #sec01 .ex{
    padding: 20px;
  }
}


/*sec01_follow*/
#sec01_follow {
  background: #ea5514;
  color: #fff;
  position: relative;
}

#sec01_follow:before {
  content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 40px 45px 0 45px;
    border-color: #ffffff transparent transparent transparent;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
}

#sec01_follow dl {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
#sec01_follow dl dt {
  width: 50%;
  text-align: center;
}
#sec01_follow dl dd {
  width: 50%;
}
#sec01_follow dl dd h3 {
  font-size: 1.8rem;
  border-bottom: 5px solid #fff100;
  margin-bottom: 0.33em;
}
#sec01_follow dl dd p {
  margin-top: 0.25em;
  font-size: 1rem;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
  #sec01_follow {
    padding: 10% 0;
    position: relative;
  }
  #sec01_follow:before {
    border-width: 5vw 7.5vw 0 7.5vw;
  }
  #sec01_follow dl {
    display: block;
  }
  #sec01_follow dl dt {
    width: 100%;
    text-align: center;
    margin-bottom: 5%;
  }
  #sec01_follow dl dt img {
    width: 66.66%;
  }
  #sec01_follow dl dd {
    width: 100%;
    text-align: center;
  }
  #sec01_follow dl dd h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5em;
  }
  #sec01_follow dl dd ul {
    margin: 0 5%;
  }
  #sec01_follow dl dd p {
    text-align: left;
    font-size: 1.2rem;
  }

}
/*reason*/
#reason p.lead{
  text-align: center;
  font-weight: bold;
  font-size: 0.8rem;
}


#reason .reason_cta{
  margin-top: 40px;
}

#reason .reason_cta ul{
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
}

#reason .reason_cta li{
      width: 580px;
}

#reason .reason_cta a{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 90px;
    border: 3px solid #ea5514;
    background: #ea5514;
    color: #fff;
    font-size: 1rem;
    letter-spacing: 0.1em;
    line-height: 1em;
    box-shadow: rgba(0, 0, 0, 0.25) 0 0 5px 2px;
}

#reason .reason_cta a span{
margin-right: 10px;
  line-height: 0;
}

#reason .reason_cta a.file {
    background: #fff;
    color: #444;
}

#reason .reason_cta a.file:hover{
  opacity: .8;
}

#reason .reason_cta ul li a small{
  width: 100%;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  line-height: 1em;
  margin-top: -1.5em;
}

@media screen and (max-width: 767px) {
  #reason .reason_cta ul {
    padding: 0 5%;
    display: block;
  }
  #reason .reason_cta ul li {
    width: 100%;
    margin: 5% auto;
  }
  #reason .reason_cta ul li a {
    height: 15vw;
  }
  #reason .reason_cta ul li a.tel {
    pointer-events: all;
    height: 17.5vw;
  }
  #reason .reason_cta ul li a span {
    margin-right: 2.5%;
  }
  #reason .reason_cta ul li a small {
    letter-spacing: 0;
    margin-top: -1em;
  }
}



#reason ul.item li {
  margin: 90px 0 0 50px;
  background: #fff;
  padding: 50px 60px 50px 50px;
  box-shadow: rgba(0, 0, 0, 0.25) 0 0 5px 2px;
  position: relative;
}
#reason ul.item li .num {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: #ea5514;
  color: #fff;
  font-size: 0.9rem;
  position: absolute;
  left: -50px;
  top: -50px;
}
#reason ul.item li .num strong {
  font-size: 3em;
}
#reason ul.item li dl {
  display: flex;
  width: 100%;
}
#reason ul.item li dl dt {
  width: calc(100% - 540px);
  padding: 0 30px;
}
#reason ul.item li dl dd {
  width: 540px;
}
#reason ul.item li dl dt h3 {
  font-size: 1.4rem;
  color: #ea5514;
  line-height: 1.5em;
  margin-bottom: 30px;
}
#reason ul.item li dl dt p {
  font-size: 0.8rem;
}


#reason ul.item .document{
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
}

#reason ul.item .document .doc_item{
width: calc(50% - 10px);  
}

#reason ul.item .document .doc_item p{
margin-bottom: 0;
  font-size: 0.8rem;
}

#cboxLoadedContent { /*スクロールバナー非表示*/
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  #reason ul.item li {
    margin: 15% 0 10%;
    padding: 12.5% 5% 5%;
  }
  #reason ul.item li .num {
    width: 15vw;
    height: 15vw;
    left: -3.75vw;
    top: -7.5vw;
  }
  #reason ul.item li .num strong {
    font-size: 2em;
  }
  #reason ul.item li dl {
    display: block;
  }
  #reason ul.item li dl dt {
    width: 100%;
    padding: 0;
    margin-bottom: 7.5%;
  }
  #reason ul.item li dl dd {
    width: 100%;
  }
  #reason ul.item li dl dd img {
    width: 100%;
  }
  #reason ul.item li dl dt h3 {
    margin-bottom: 5%;
  }
  #reason ul.item .document{
    flex-direction: column;
    margin-top:30px;
  }
  #reason ul.item .document .doc_item{
    width: 100%;
  }
  #reason ul.item .document .doc_item + .doc_item{
    margin-top:10px;
  }
}
/*partner*/
#partner p.lead {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
#partner ul {
  display: flex;
  width: calc(100% + 30px);
  margin-left: -15px;
}
#partner ul li {
  width: calc(33.33% - 30px);
  margin: 0 15px;
}
#partner ul li dl dt {
  margin-bottom: 20px;
}
#partner ul li dl dt h3 {
  background: #ea5514;
  color: #fff;
  font-size: 1rem;
  line-height: 1.5em;
  padding: 0.5em;
  text-align: center;
}
#partner ul li dl dt h3 span {
  display: block;
  font-size: 0.9rem;
}
#partner ul li dl dd h4 {
  font-size: 0.9rem;
  color: #ea5514;
  margin-bottom: 0.5em;
}
#partner ul li dl dd p {
  font-size: 0.8rem;
}
#partner ul li dl dd figure.btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  background: #fff;
  border: 3px solid #ea5514;
  color: #ea5514;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  font-weight: bold;
  position: relative;
  cursor: pointer;
  transition: 0.3s opacity;
}
#partner ul li dl dd figure.btn a span {
  position: absolute;
  right: 1.5em;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  transition: 0.3s right;
}
#partner ul li dl dd figure.btn a:hover {
  opacity: 0.7;
}
#partner ul li dl dd figure.btn a:hover span {
  right: 1em;
}
@media screen and (max-width: 767px) {
  #partner ul {
    display: block;
    width: 100%;
    margin-left: 0;
  }
  #partner ul li {
    width: 100%;
    margin: 10% auto;
  }
  #partner ul li dl dt {
    margin-bottom: 2.5%;
  }
  #partner ul li dl dt figure img {
    width: 100%;
  }
  #partner ul li dl dd figure.btn a {
    height: 12.5vw;
  }
  #partner ul li dl dd figure.btn a span {
    width: 3.75vw;
  }
}
/*partner-modal*/
.modal_box_partner {
  width: 1000px;
  background: #fff;
}
.modal_box_partner h3 {
  background: #ea5514;
  color: #fff;
  font-size: 1rem;
  line-height: 1.5em;
  padding: 0.5em;
  text-align: center;
}
.modal_box_partner h3 span {
  display: block;
  font-size: 0.9rem;
}
.modal_box_partner_in {
  padding: 60px;
}
.modal_box_partner_in dl {
  display: flex;
  justify-content: space-between;
}
.modal_box_partner_in dl dt {
  width: 50%;
  padding-right: 60px;
}
.modal_box_partner_in dl dd {
  width: 50%;
}
.modal_box_partner_in h4 {
  font-size: 0.9rem;
  color: #ea5514;
  margin-bottom: 0.5em;
}
.modal_box_partner_in h4:not(:first-child) {
  margin-top: 2em;
}
.modal_box_partner_in p {
  font-size: 0.8rem;
}
.modal_box_partner_in ul li {
  font-size: 0.8rem;
  line-height: 1.5em;
  padding-left: 1.25em;
  position: relative;
}
.modal_box_partner_in ul li:before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
}
.modal_box_partner_in figure.btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  width: 380px;
  height: 60px;
  margin-top: 60px;
  background: #fff;
  border: 3px solid #ea5514;
  color: #ea5514;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  font-weight: bold;
  position: relative;
  cursor: pointer;
  transition: 0.3s opacity;
}
.modal_box_partner_in figure.btn a span {
  position: absolute;
  right: 1.5em;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  width: 18px;
  transition: 0.3s top;
}
.modal_box_partner_in figure.btn a:hover {
  opacity: 0.7;
}
.modal_box_partner_in figure.btn a:hover span {
  top: 40%;
}
@media screen and (max-width: 767px) {
  .modal_box_partner {
    width: 100%;
  }
  .modal_box_partner_in {
    padding: 5%;
  }
  .modal_box_partner_in dl {
    display: block;
  }
  .modal_box_partner_in dl dt {
    width: 100%;
    padding: 0;
    margin-bottom: 2.5%;
  }
  .modal_box_partner_in dl dd {
    width: 100%;
  }
  .modal_box_partner_in figure.btn a {
    width: 100%;
    height: 12.5vw;
    margin-top: 10%;
  }
  .modal_box_partner_in figure.btn a span {
    width: 3.75vw;
  }
}
/*safety*/
#safety{
  background: #f5f5f5;
}
#safety p.lead {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
#safety ul {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 30px);
  margin: 30px 0 -30px -15px;
}
#safety ul li {
  width: calc(33.33% - 30px);
  margin: 30px 15px;
}
#safety ul li h3 {
  font-size: 1.2rem;
  color: #ea5514;
  padding-bottom: 0.5em;
  margin-bottom: 0.75em;
  position: relative;
}
#safety ul li h3:before {
  content: "";
  width: 100%;
  height: 1px;
  background: #444;
  position: absolute;
  left: 0;
  bottom: 0;
}
#safety ul li h3:after {
  content: "";
  width: 50px;
  height: 1px;
  background: #ea5514;
  position: absolute;
  left: 0;
  bottom: 0;
}
#safety ul li p {
  font-size: 0.8rem;
}
@media screen and (max-width: 767px) {
  #safety ul {
    display: block;
    width: 100%;
    margin: 7.5% auto;
  }
  #safety ul li {
    width: 100%;
    margin: 7.5% auto;
  }
  #safety ul li h3:after {
    width: 10vw;
  }
}


/*file_follow*/

#file_follow dl {
  display: flex;
  border: 1px solid #ea5514;
}
#file_follow dl dt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50%;
  background: #ea5514;
}
#file_follow dl dd {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 50%;
  padding: 30px;
  background: #fff;
}
#file_follow dl dt h3 {
  text-align: center;
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
#file_follow dl dt ul li {
  margin-top: 10px;
}
#file_follow dl dt ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  height: 60px;
  background: #fff;
  color: #ea5514;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  font-weight: bold;
  border: none;
  position: relative;
  transition: 0.3s opacity;
  box-shadow: rgba(0, 0, 0, 0.25) 0 0 5px 2px;
  text-align: center;
}
#file_follow dl dt ul li a span.txt{
  font-size: .6rem;
}

#file_follow dl dt ul li a span.ico {
  position: absolute;
  left: 1.5em;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  display: inline-block;
  text-align: center;
}
#file_follow dl dt ul li a span.arrow {
  position: absolute;
  right: 1.5em;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
}
#file_follow dl dt ul li a:hover {
  opacity: 0.7;
}
#file_follow dl dt ul li:nth-child(1) a span.arrow {
  transition: 0.3s right;
}
#file_follow dl dt ul li:nth-child(1) a:hover span.arrow {
  top: 50%;
  right: 1em;
}
#file_follow dl dt ul li:nth-child(2) a {
  background: #444;
  color: #fff;
}
#file_follow dl dt ul li:nth-child(2) a span.arrow {
  transition: 0.3s right;
}
#file_follow dl dt ul li:nth-child(2) a:hover span.arrow {
  top: 50%;
  right: 1em;
}
@media screen and (max-width: 767px) {
  #file_follow {
    padding: 2.5% 0;
  }
  #file_follow .maincontent {
    width: 95%;
  }
  #file_follow dl {
    display: block;
  }
  #file_follow dl dt {
    width: 100%;
    padding: 5% 10%;
  }
  #file_follow dl dd {
    display: block;
    width: 100%;
    padding: 5% 10%;
  }
  #file_follow dl dt h3 {
    text-align: center;
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0;
  }
  #file_follow dl dt ul {
    width: 100%;
  }
  #file_follow dl dt ul li {
    width: 100%;
    margin-top: 5%;
  }
  #file_follow dl dt ul li a {
    width: 100%;
    height: 12.5vw;
  }
  #file_follow dl dt ul li a span.ico {
    width: 5vw;
  }
  #file_follow dl dt ul li a span.arrow {
    width: 3.75vw;
  }
  #file_follow dl dt ul li:nth-child(1) a span.arrow {
    transition: 0.3s right;
  }
  #file_follow dl dt ul li:nth-child(1) a:hover span.arrow {
    right: 1em;
  }
  #file_follow dl dt ul li:nth-child(2) a {
    background: #444;
    color: #fff;
  }
  #file_follow dl dt ul li:nth-child(2) a span.arrow {
    transition: 0.3s right;
  }
  #file_follow dl dt ul li:nth-child(2) a:hover span.arrow {
    top: 50%;
    right: 1em;
  }
}
/*staff*/
#staff{
  background: #f5f5f5;
}


#staff p.lead {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  font-weight: bold;
}

#staff figure.img {
  margin: 40px auto;
}
#staff figure.logo {
  margin: 40px auto 60px;
}
#staff .staff_box {
  margin: 40px auto;
  background: #fff;
  border-top: 10px solid #ea5514;
  padding: 60px 60px 40px;
  box-shadow: rgba(0, 0, 0, 0.25) 0 0 5px 2px;
}
#staff .staff_box dl {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0 auto 40px;
}
#staff .staff_box dl dt {
  width: 280px;
  margin-right: 40px;
}
#staff .staff_box dl dd {
  width: calc(100% - 280px);
}
#staff .staff_box dl dd h3 {
  font-size: 1.2rem;
  padding-bottom: 0.75em;
  margin-bottom: 1em;
  position: relative;
}

#staff .staff_box dl dd h3:before {
  content: "";
  width: 100%;
  height: 2px;
  background: #444;
  position: absolute;
  left: 0;
  bottom: 0;
}
#staff .staff_box dl dd h3:after {
  content: "";
  width: 50px;
  height: 2px;
  background: #ea5514;
  position: absolute;
  left: 0;
  bottom: 0;
}

#staff .staff_box dl dd h3.big{
  font-size: 1.5rem;
}
#staff .staff_box dl dd h3.big span{
  font-size: 1.3rem;
  margin-right: 1em;
}

#staff .staff_box dl dd h3 span.dep{
  display: block;
  font-size: 1em;
}

#staff .staff_box dl dd h3 span.post{
  font-size: 1rem;
  margin-right: 1em;
}

#staff .staff_box dl dd h4 {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5em;
}
#staff .staff_box p.txt {
  display: none;
  font-size: 0.8rem;
  line-height: 1.75em;
  text-align: justify;
}
#staff .staff_box.active p.txt {
  display: block;
}
hr {
  display: inline-block;
  overflow: inherit;
}
#staff .staff_box figure.btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 40px auto 0;
  width: 380px;
  height: 60px;
  border: 3px solid #ea5514;
  background: #fff;
  color: #ea5514;
  font-size: 1rem;
  letter-spacing: 0.1em;
  line-height: 1em;
  box-shadow: rgba(0, 0, 0, 0.25) 0 0 5px 2px;
  position: relative;
  cursor: pointer;
}
#staff .staff_box figure.btn span {
  position: absolute;
  right: 1.5em;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transition: 0.3s top;
}
#staff .staff_box figure.btn span.off {
  display: none;
  transform: translateY(-50%) rotate(-90deg);
}
#staff .staff_box figure.btn:before {
  content: "続きを読む";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin: auto;
}
#staff .staff_box figure.btn:hover span {
  top: 60%;
}
#staff .staff_box figure.btn.active {
  background: #ea5514;
  color: #fff;
}
#staff .staff_box figure.btn.active span.on {
  display: none;
}
#staff .staff_box figure.btn.active span.off {
  display: inline;
}
#staff .staff_box figure.btn.active:before {
  content: "閉じる";
}
#staff .staff_box figure.btn.active:hover span {
  top: 40%;
}
@media screen and (max-width: 767px) {
  #staff p.lead {
    margin-bottom: 5%;
  }
  #staff figure.img {
    margin: 5% auto;
  }
  #staff figure.logo {
    margin: 5% auto 7.5%;
  }
  #staff figure.logo img {
    width: 75%;
  }
  #staff .staff_box {
    margin: 7.5% auto;
    border-top: 1.25vw solid #ea5514;
    padding: 5%;
  }
  #staff .staff_box dl {
    display: block;
    margin: 0 auto 5%;
  }
  #staff .staff_box dl dt {
    width: 100%;
    margin: 0 auto 5%;
  }
  #staff .staff_box dl dt img {
    width: 75%;
  }
  #staff .staff_box dl dd {
    width: 100%;
  }
  #staff .staff_box dl dd h3 {
    padding-bottom: 0.5em;
    margin-bottom: 0.75em;
  }
  #staff .staff_box dl dd h3:after {
    width: 10vw;
  }
  #staff .staff_box dl dd h4 {
    font-size: 1.2rem;
  }
  #staff .staff_box figure.btn span {
    position: absolute;
    right: 1.5em;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transition: 0.3s top;
  }
  #staff .staff_box figure.btn span.off {
    display: none;
    transform: translateY(-50%) rotate(-90deg);
  }
  #staff .staff_box figure.btn:before {
    content: "続きを読む";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    margin: auto;
  }
  #staff .staff_box figure.btn:hover span {
    top: 60%;
  }
  #staff .staff_box figure.btn.active {
    background: #ea5514;
    color: #fff;
  }
  #staff .staff_box figure.btn.active span.on {
    display: none;
  }
  #staff .staff_box figure.btn.active span.off {
    display: inline;
  }
  #staff .staff_box figure.btn.active:before {
    content: "閉じる";
  }
  #staff .staff_box figure.btn.active:hover span {
    top: 40%;
  }
  #staff .staff_box figure.btn {
    width: 100%;
    height: 12.5vw;
  }
}
/*qanda*/
#qanda dl {
  margin: 40px auto;
}
#qanda dl dt {
  border-bottom: 2px solid #444;
  padding: 0 40px 10px 30px;
  font-size: 1rem;
  font-weight: bold;
  position: relative;
}
#qanda dl dt strong {
  position: absolute;
  left: 0;
  top: 0.125em;
  color: #ea5514;
}
#qanda dl dt span {
  position: absolute;
  right: 10px;
  top: calc(50% - 5px);
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid #444;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
}
#qanda dl dt span:before {
  content: "";
  width: 14px;
  height: 2px;
  background: #ea5514;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  margin: auto;
}
#qanda dl dt span:after {
  content: "";
  width: 2px;
  height: 14px;
  background: #ea5514;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  margin: auto;
  transition: 0.3s;
}
#qanda dl dt span.active:after {
  transform: translateX(-50%) translateY(-50%) rotate(90deg);
  opacity: 0;
}
#qanda dl dd {
  display: none;
  margin-top: 20px;
}
#qanda dl dd p {
  font-size: 0.8rem;
}
@media screen and (max-width: 767px) {
  #qanda dl {
    margin: 7.5% auto;
  }
  #qanda dl dt {
    padding: 0 6.75vw 1.25% 5vw;
  }
  #qanda dl dt strong {
    top: 0.15em;
  }
  #qanda dl dt span {
    right: 0;
    top: calc(50% - 0.625%);
    width: 5vw;
    height: 5vw;
  }
  #qanda dl dt span:before {
    width: 2.5vw;
  }
  #qanda dl dt span:after {
    height: 2.5vw;
  }
  #qanda dl dd {
    margin-top: 2.5%;
  }
}
/*----------------------------------------------------
------------------------------------------------------
company
------------------------------------------------------
------------------------------------------------------*/
/*スマホ自動リンク追加無効*/
@media screen and (max-width:768px){
	#company{
	pointer-events: none;
}
}
#company .com_flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border: 8px solid #ea5514 /*#f7c7b1*/ ;
  padding: 40px;
  letter-spacing: 0.1rem;
  font-size: 0.8rem;
}
#company .com_flex .con1 {
  border: solid 2px #ea5514;
  padding: 10px;
  width: calc(50% - 20px);
  background: #fff;
}
#company .com_flex .con1 h2 {
  color: #ea5514;
}
#company .com_flex .con1 p {
  margin: 5px 0 5px 0.5em;
  font-weight: bold;
}
#company .com_flex dl {
  margin: 5px 0 5px 0.5em;
  display: flex;
}
#company .com_flex dt {
  font-weight: bold;
  width: 200px;
}
#company .com_flex dd {
  width: calc(100% - 200px);
}
#company .com_flex .con2 {
  width: calc(50% - 20px);
  background: #fff;
}
#company .com_flex div:nth-of-type(n+3) {
  margin-top: 40px;
}
#company .com_flex .con2 h2 {
  background: #ea5514;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  margin-bottom: 10px;
}
#company .com_flex .con2 h2 span {
  font-size: .8rem;
}
#company .com_flex .con2 h2 span::before {
  content: " - "
}
#company .com_flex .con2 li {
  margin: 5px 0 5px 0.5em;
}
#company .com_flex .con2 p.remarks {
  font-size: .8em;
  text-align: right;
}

#company .com_flex .con3 {
    width: calc(50% - 20px);
  background: #fff;
}

#company .com_flex .con3 h2 {
  background: #ea5514;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  margin-bottom: 10px;
}

#company .com_flex .con3 .flex{
  display: flex;
}


#company .com_flex .con3 dl {
  display: block;
}

#company .com_flex .con3 .txt dt,
#company .com_flex .con3 .txt dd{
  display: block;
  width: 100%;
}

#company .com_flex .con3 div .logo{
  width: 50px;
  margin-left: 10px;
}

@media screen and (max-width: 767px) {
  #company .com_flex {
    flex-direction: column;
    border: 0;
    padding: 0;
  }
  #company .com_flex div + div {
    margin-top: 20px;
  }
  #company .com_flex div:nth-of-type(n+3) {
    margin-top: 20px;
  }
  #company .com_flex .con1 {
    width: 100%
  }
  #company .com_flex .con2 {
    width: 100%
  }
  
  #company .com_flex .con3 {
    width: 100%;
  }
  
  #company .com_flex .con3 .txt dt,
#company .com_flex .con3 .txt dd{
  width: 100%;
}
  
  #company .com_flex dl {
    flex-direction: column;
  }
  #company .com_flex dt {
    font-weight: bold;
    width: 100%;
  }
  #company .com_flex dd {
    width: 100%;
  }
  #company .com_flex .con2 dd {
    margin-left: 1em;
  }
}
/*cta*/
#cta {
  background: #f5f5f5;
}
/*資料請求フォーム*/
#form_file {
  background: #ea5514;
}
#form_file .maincontent {
  background: #ffff;
  padding: 40px 100px 60px;
}
#form_file h3 {
  text-align: center;
  font-size: 1.7rem;
  line-height: 1.5em;
  color: #ea5514;
  border-bottom: 1px solid #444;
  padding-bottom: 0.33em;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 767px) {
  #form_file .maincontent {
    padding: 5%;
  }
  #form_file h3 {
    font-size: 1.33rem;
    margin-bottom: 5%;
  }
}
/*フォーム*/
.form_wrap {
  display: flex;
}
.form_wrap .form_detail {
  width: 50%;
}
.form_wrap .form_form {
  width: 50%;
  padding-left: 80px;
}
@media screen and (max-width: 767px) {
  .form_wrap {
    display: block;
  }
  .form_wrap .form_detail {
    width: 100%;
  }
  .form_wrap .form_form {
    width: 100%;
    padding-left: 0;
    margin-top: 10%;
  }
}
.form_wrap .form_detail h4 {
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.5em;
  margin-bottom: 30px;
}
.form_wrap .form_detail h4 sup {
  vertical-align: super;
  font-size: 66.66%;
}
.form_wrap .form_detail figure.file {
  margin: 30px auto;
}
.form_wrap .form_detail figure.file img {
  width: 370px;
}
.form_wrap .form_detail_list {
  border: 1px solid #444;
  padding: 20px 40px;
}
.form_wrap .form_detail_list h5 {
  text-align: center;
  font-size: 1rem;
  padding-bottom: 1em;
  margin-bottom: 1em;
  position: relative;
}
.form_wrap .form_detail_list h5:before {
  content: "";
  width: 100%;
  height: 2px;
  background: #444;
  position: absolute;
  left: 0;
  bottom: 0;
}
.form_wrap .form_detail_list h5:after {
  content: "";
  width: 50px;
  height: 2px;
  background: #ea5514;
  position: absolute;
  left: 0;
  bottom: 0;
}
.form_wrap .form_detail_list ul {
  margin: 0;
}
.form_wrap .form_detail_list ul li {
  font-size: 0.8rem;
  font-weight: bold;
  padding-left: 30px;
  margin: 10px auto;
  position: relative;
}
.form_wrap .form_detail_list ul li:before {
  content: "";
  width: 18px;
  height: 18px;
  background: url("../images/ico_check2.png") center center no-repeat;
  background-size: 100%;
  position: absolute;
  left: 0;
  top: 0.25em;
}


.form_wrap .form_form a.download{
    display: block;
    background: #ea5514;
    color: #fff;
    width: 100%;
    padding: 20px;
    font-size: 16px;
    margin-top: 20px;
    font-weight: bold;
  text-align: center;
  position: relative;
  box-shadow:  rgba(0, 0, 0, 0.25) 0 0 5px;
}

.form_wrap .form_form a:hover{
  opacity: .8;
}

.form_wrap .form_form a span.arrow{
  position: absolute;
    right: 1.5em;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    transition: 0.3s right;
}

.form_wrap .form_form a:hover span{
      right: 1em;
    top: 50%;
}

.form_wrap .form_tel {
  background: #f5f5f5;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form_wrap .form_tel p {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: auto;
}
.form_wrap .form_tel p a {
  display: flex;
  pointer-events: none;
}
.form_wrap .form_tel p a span {
  width: 18px;
  line-height: 0;
  margin-right: 5px;
}
.form_wrap .form_tel p a strong {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: #000;
}
.form_wrap .form_tel p small {
  font-size: 0.7rem;
  margin-top: 0.5em;
}
@media screen and (max-width: 767px) {
  .form_wrap .form_detail h4 {
    font-size: 1rem;
    margin-bottom: 5%;
  }
  .form_wrap .form_detail figure.file {
    margin: 5% auto;
  }
  .form_wrap .form_detail figure.file img {
    width: 100%;
  }
  .form_wrap .form_form .form_detail_list {
    padding: 2.5%;
  }
  .form_wrap .form_form .form_detail_list h5 {
    padding-bottom: 0.5em;
    margin-bottom: 0.5em;
  }
  .form_wrap .form_form .form_detail_list h5:after {
    width: 10vw;
  }
  .form_wrap .form_form .form_detail_list ul {
    margin: 0 2.5%;
  }
  .form_wrap .form_form .form_detail_list ul li {
    padding-left: 6.25vw;
    margin: 1.25% auto;
  }
  .form_wrap .form_form　.form_detail_list ul li:before {
    width: 3.75vw;
    height: 3.75vw;
  }
  .form_wrap .form_tel {
    padding: 5% 2.5%;
    text-align: center;
  }
  .form_wrap .form_tel p a {
    pointer-events: all;
  }
  .form_wrap .form_tel p a span {
    width: 3.75vw;
    margin-right: 2.5%;
  }
  .form_wrap .form_tel p a strong {
    font-size: 1.6rem;
  }
}
.form_wrap .form_form p {
  font-size: 0.8rem;
  margin: auto;
}
.form_wrap .form_form table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 20px;
}
.form_wrap .form_form .pv_check {
  margin: 20px auto 40px;
}
.form_wrap .form_form .pv_check label {
  display: flex;
  font-size: 0.9rem;
  font-weight: bold;
}
.form_wrap .form_form .pv_check p.att {
  font-size: 0.7rem;
  line-height: 1em;
  text-align: left;
  margin-top: 1em;
}
.form_wrap .form_form .pv_check p.att a {
  color: #ea5514;
  text-decoration: underline;
}
.form_wrap .form_form button[type="submit"] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 70px;
  background: #ea5514;
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  font-weight: bold;
  border: none;
  position: relative;
  cursor: pointer;
  transition: 0.3s opacity;
  margin-bottom: 20px;
}
.form_wrap .form_form button[type="submit"]:last-child {
  margin-bottom: 20px;
}
.form_wrap .form_form button[type="submit"] span {
  position: absolute;
  right: 1.5em;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  transition: 0.3s right;
}
.form_wrap .form_form button[type="submit"]:hover {
  opacity: 0.7;
}
.form_wrap .form_form button[type="submit"]:hover span {
  right: 1em;
}
@media screen and (max-width: 767px) {
  .form_wrap .form_form table {
    border-spacing: 0 5%;
  }
  .form_wrap .form_form .pv_check {
    margin: 2.5% auto 7.5%;
  }
  .form_wrap .form_form button[type="submit"] {
    height: 15vw;
    margin-bottom: 5%;
  }
  .form_wrap .form_form button[type="submit"] span {
    right: 1.25em;
    width: 3.75vw;
  }
}




/*modal*/
.modal_window {
  display: none;
  position: relative;
}
.modal_box {
  position: relative;
}
#reason02_modal.modal_box .close_btn {
  position: absolute;
  left: 0;
  top: 0;
  background: #444;
  color: #fff;
  padding: 0.5em;
  font-size: 0.9rem;
  cursor: pointer;
  transition: 0.3s;
}
#reason02_modal.modal_box .close_btn:hover {
  opacity: 0.7;
}
#reason02_modal.modal_box .close_btn i {
  margin-right: 0.5em;
}
#reason02_modal.modal_box img {
  max-width: 1440px;
}
@media screen and (max-width: 767px) {
  #reason02_modal.modal_box .close_btn {
    font-size: 0.6rem;
  }
  #reason02_modal.modal_box img {
    width: 100%;
  }
}

/*ワントップ提案*/
body{
  position: relative;
}
#onetop{
  background: #f5f5f5;
}


#onetop h2 span{
 font-size: 1.2rem;
  display: block;
  margin-top:10px;
}

#onetop .flow{
  display: flex;
  margin-top:60px;
  justify-content: space-between;
}

#onetop .flow .item{
  background: #fff;
  padding:30px 20px 20px 20px; 
  width: calc((100% - 100px ) / 5);
  text-align: center;
  position: relative;
}


#onetop .flow .item:not(:last-child)::after{
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  border-left: 25px solid #ea5717;
  border-right: 0;
  position: absolute;
  top:50%;
  transform: translateY(-50%);
  right: -25px;
}


#onetop .flow .item figure{
  height: 100px;
  display: flex;
    justify-content: center;
    align-items: center;
}
#onetop .flow .item p{
  color: var(--orange);
  font-size: 1.2rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}

#onetop .maincontent p{
  margin-top: 20px;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width:768px) {
  #onetop {
    padding-right:20px;
    padding-left:20px;
  }
  #onetop .maincontent p{
    margin-top: 0;
    text-align: left;
  }
  #onetop .flow{
    flex-direction: column;
    margin-top:30px;
  }
  #onetop .flow .item{
     width: 100%;
    display: flex;
    align-items: center;
  }
  #onetop .flow .item + .item{
    margin-top: 25px;
  }
  
  #onetop .flow .item:not(:last-child)::after{
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 30px solid transparent;
  border-left: 30px solid transparent;
  border-top: 25px solid #ea5717;
  border-bottom: 0;
  position: absolute;
  top: inherit;
  transform: translateX(50%);
  right:50%;
  bottom: -25px;
}
  
  #onetop .flow .item figure{
    height: auto;
  }
  
  #onetop .flow .item figure img{
    width: 80%;
  }
  
  #onetop .flow .item p{
    width: 50%;
  }

  #onetop .maincontent > p{
    margin-top:30px;
    text-align: left;
  }
}

/*補助金の紹介*/
.subsidy{
  margin-top:80px;
}

.subsidy .box{
  border:solid 3px var(--orange);
  padding: 60px 60px;
  background: #fff;
  box-shadow: 10px 10px 0 #eaa596;
}

.subsidy .box .flex{
  display: flex;
}

.subsidy .box .flex figure{
  width: 40%;
  padding-right: 40px;
}

.subsidy .box .flex figure img{
  width: 100%;
}

.subsidy .box .flex .right{
 width:60%; 
}

.subsidy .box .flex .right h3{
  color: var(--orange);
  font-weight: 700;
  font-size: 24px;
  text-align: left;
}

.subsidy .box .flex .right p{
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  margin-top:20px;
}

.subsidy .box .flex .right a{
  background: var(--orange);
  color: #fff;
  display: block;
  text-align: center;
  padding: 10px;
  font-weight: 700;
}

.subsidy .box .flex .right a:hover{
  opacity: 0.8;
}

.subsidy .box .flex .right a span{
  font-size: 14px;
  font-weight: 400;
}

@media screen and (max-width:768px) {
  .subsidy{
  margin-top:40px;
}
  .subsidy .box{
    padding: 20px;
  }
  .subsidy .box .flex{
    flex-direction: column;
  }
  .subsidy .box .flex figure{
  width: 100%;
  padding-right: 0;
}
  .subsidy .box .flex figure img{
    width: 80%;
  }
  
  .subsidy .box .flex .right{
 width:100%; 
    margin-top:20px;
}
  .subsidy .box .flex .right h3{
    font-size: 18px;
  }
  .subsidy .box .flex .right p{
    font-size: 14px;
    margin-top:20px;
  }
  .subsidy .box .flex .right a{
    font-size: 14px;
    margin-top:10px;
  }
}


/*施工実績*/
#achieve{
  background: url("../images/achieve_bg.png") no-repeat;
  background-size: cover;
  background-position: top;
}
#achieve .item{
  max-width: 1000px;
  border: 3px solid;
  border-color: var(--orange);
  margin: 60px auto 60px auto;
  /*padding: 10px 60px 20px 60px;*/
  box-shadow: 20px 20px 0 #eaa596;
  background: #fff; 
}

#achieve .item h3{
  color: var(--orange);
  border-bottom: dashed 2px;
  border-color: var(--orange);
  font-size: 1.2rem;
  text-align: center;
  padding: 0 0 10px 0;
}

@media screen and (max-width:768px) {
  #achieve .item{
     margin: 30px auto 30px auto;
  }
}

#achieve .item .item_qty{
  background: #f5f5f5;
  padding: 20px 60px 20px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#achieve .item .item_qty th{
  color: var(--orange);
  font-weight: bold;
  font-size: 1.2rem;
  padding-right: 1rem;
}

#achieve .item .item_qty td{
font-weight: bold;
  font-size: 1.2rem;
}

@media screen and (max-width:768px) {
  #achieve .item .item_qty{
   padding: 20px 20px 20px 20px;
  }
  
  #achieve .item .item_qty tr{
    display: flex;
    flex-direction: column;
  }
}

#achieve .item .item_service{
  padding: 20px 60px 60px 60px;
  margin-top: 10px;
}

#achieve .item .item_service .list{
  display: flex;
  margin-top: 30px;
  font-size: 0.8rem;
  font-weight: bold;
  justify-content: space-around;
}

#achieve .item .item_service .list ul{
  width: 30%;
}

#achieve .item .item_service .list ul li{
  margin-top: .2em;
}

@media screen and (max-width:768px) {
  #achieve .item .item_service{
    padding: 20px 20px 20px 20px;
  }
  #achieve .item .item_service .list{
    flex-direction: column;
  }
  #achieve .item .item_service .list ul{
    width: 100%;
  }
  #achieve .item .item_service .list ul + ul{
    margin-top:10px;
  }
}

#achieve .item .item_logo{
  padding: 20px 60px 60px 60px;
  margin-top: 10px;
}

#achieve .item .item_logo ul{
  margin-top: 30px;
  display: flex;
  align-items: center;
}

#achieve .item .item_logo ul li{
  width: 33%;
  text-align: center;
}

@media screen and (max-width:768px) {
  #achieve .item .item_logo{
    padding: 20px 20px 20px 20px;
  }
  #achieve .item .item_logo ul{
    flex-direction: column;
  }
  
  #achieve .item .item_logo ul li{
    width: 50%;
  }

  
  #achieve .item .item_logo ul li + li{
    margin-top: 20px;
  }














   
}
/*case*/
#case {
  background: #f5f5f5;
}
#case .case_list {
  display: none;
}
#case .case_list.active {
  display: block;
}
#case p.lead {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
#case ul {
  margin: 80px auto 40px;
  display: flex;
  width: calc(100% + 30px);
  margin-left: -15px;
}
#case ul li {
  width: calc(33.33% - 30px);
  margin: 0 15px;
  background: #fff;
}
#case ul li h3 {
  background: #444;
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.25em;
  padding: 0.25em;
  text-align: center;
}
#case ul li h4 {
  background: #ea5514;
  color: #fff;
  font-size: 1rem;
  line-height: 1.25em;
  padding: 0.25em;
  text-align: center;
}
#case ul li figure img {
  width: 100%;
}
#case ul li dl dd {
  padding: 25px;
}
#case ul li h5 {
  font-size: 0.8rem;
  padding-left: 1em;
  margin-bottom: 0.25em;
  position: relative;
}
#case ul li h5:before {
  content: "●";
  color: #ea5514;
  position: absolute;
  left: 0;
  top: 0;
}
#case ul li p {
  font-size: 0.8rem;
}
#case ul li h5.strong {
  font-size: 0.9rem;
  color: #ea5514;
}
#case ul li p.strong {
  font-size: 0.9rem;
  color: #ea5514;
  font-weight: bold;
}
#case figure.btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  width: 600px;
  height: 60px;
  background: #ea5514;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.1em;
  font-weight: bold;
  border: none;
  position: relative;
  cursor: pointer;
  transition: 0.3s opacity;
}
#case figure.btn a span {
  position: absolute;
  right: 1.5em;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  width: 18px;
  transition: 0.3s top;
}
#case figure.btn a:hover {
  opacity: 0.7;
}
#case figure.btn a:hover span {
  top: 60%;
}
#case table {
  width: 100%;
  background: #fff;
  border-spacing: 2px;
}
#case table thead th {
  background: #444;
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  padding: 0.5em 0.75em;
  line-height: 1.25em;
}
#case table tbody td {
  background: #ccc;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  padding: 0.5em 0.75em;
  line-height: 1.25em;
}
#case table tbody tr:nth-child(2n) td {
  background: #e2e2e2;
}
@media screen and (max-width: 767px) {
  #case ul {
    margin: 10% auto;
    display: block;
    width: 100%;
    margin-left: 0;
  }
  #case ul li {
    width: 100%;
    margin: 5% auto;
  }
  #case ul li dl dd {
    padding: 2.5%;
  }
  #case figure.btn a {
    width: 100%;
    height: 12.5vw;
  }
  #case figure.btn a span {
    width: 3.75vw;
  }
  #case table {
    table-layout: fixed;
    border-spacing: 1px;
  }
  #case table thead th:nth-child(3) {
    width: 28%;
  }
  #case table thead th {
    vertical-align: middle;
    text-align: center;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    padding: 1em 0.5em;
  }
  #case table tbody td {
    vertical-align: middle;
    font-size: 0.55rem;
    letter-spacing: 0em;
    padding: 1em 0.5em;
  }


    
}


/*お気軽にご相談ください*/
#contact-area{
  background: #ea5514;
  color: #fff;
  position: relative;
  
}

#contact-area::before{
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 40px 45px 0 45px;
    border-color: #fff transparent transparent transparent;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
}

#contact-area .maincontent > p{
  text-align: center;
  font-weight: bold;
  font-size: 1.2rem;
}

#contact-area .cv ul li a {
  box-shadow: none;
}

#contact-area .cv ul li a.mail {
  background: var(--yellow);
  color: #444444;
}

@media screen and (max-width:768px) {
  #contact-area .maincontent > p{
    margin-top:20px;
  }
}


/*下層ページ*/
/*contact*/
#contact {
  background: #f5f5f5;
}
#contact .maincontent {
  width: 1000px;
  padding: 60px;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.25) 0 0 5px 2px;
}
#contact .form_wrap .form_detail {
  width: 50%;
  padding-right: 20px;
}
#contact .form_wrap .form_form {
  width: 50%;
  padding-left: 20px;
}
#contact .form_wrap p.small {
  font-size: 0.7rem;
}
@media screen and (max-width: 767px) {
  #contact .maincontent {
    width: 90%;
    padding: 5%;
  }
  #contact .form_wrap .form_detail {
    width: 100%;
    padding-right: 0;
    margin-bottom: 10%;
  }
  #contact .form_wrap .form_form {
    width: 100%;
    padding-left: 0;
  }
}
#contact .form_wrap .form_detail h4 {
  margin-bottom: 0.25em;
}
#contact .form_wrap .form_detail p {
  font-size: 0.8rem;
}
#contact .form_wrap .form_detail figure.img img {
  width: 100%;
}
#contact .form_wrap .form_detail .form_detail_list {
  border: none;
  padding: 0;
  margin: 40px auto;
}
#contact .form_wrap .form_detail .form_detail_list ul {
  margin: 0;
}
#contact .form_wrap .form_detail .form_detail_list ul li {
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  #contact .form_wrap .form_detail .form_detail_list {
    margin: 5% auto;
  }
}

#contact .ours{
  margin-top: 40px;
}

/*thanks*/
#thanks {
  background: #f5f5f5;
}
#thanks .maincontent {
  width: 1000px;
  padding: 60px;
  text-align: center;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.25) 0 0 5px 2px;
}
#thanks h2.tit_h2 {
  margin-bottom: 20px;
}
#thanks p.lead {
  text-align: center;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 40px;
  margin-top: 30px;
}
#thanks .thanks_tel {
  border-bottom: 1px solid #444;
  padding-bottom: 20px;
  margin: 40px auto;
}
#thanks .thanks_tel dl {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
#thanks .thanks_tel dl dt a {
  display: flex;
  align-items: center;
  pointer-events: none;
}
#thanks .thanks_tel dl dt a span {
  margin-right: 10px;
  line-height: 0;
}
#thanks .thanks_tel dl dt a strong {
  font-size: 1.4rem;
  color: #000;
  letter-spacing: 0.1em;
}
#thanks .thanks_tel dl dd p {
  text-align: left;
  font-size: 0.7rem;
  line-height: 1.5em;
  margin-left: 40px;
}
@media screen and (max-width: 767px) {
  #thanks .maincontent {
    width: 90%;
    padding: 5%;
  }
  #thanks h2.tit_h2 {
    margin-bottom: 2.5%;
  }
  #thanks p.lead {
    font-size: 0.9rem;
    margin-bottom: 5%;
    margin-top: 5%;
  }
  #thanks .thanks_tel {
    padding-bottom: 2.5%;
    margin: 5% auto;
  }
  #thanks .thanks_tel dl {
    display: block;
    text-align: center;
  }
  #thanks .thanks_tel dl dt a {
    justify-content: center;
    margin: auto;
    pointer-events: all;
  }
  #thanks .thanks_tel dl dt a span {
    width: 3.75vw;
    margin-right: 1.25%;
  }
  #thanks .thanks_tel dl dt a strong {
    font-size: 1.6rem;
  }
  #thanks .thanks_tel dl dd p {
    text-align: center;
    margin: 1.25% auto 0;
  }
}
#thanks .comment h4 {
  color: #ea5514;
  font-size: 1rem;
  margin-bottom: 20px;
}
#thanks .comment h4 strong {
  display: inline-block;
  position: relative;
}
#thanks .comment h4 strong:before {
  content: "";
  width: 5px;
  height: 1.5em;
  background: #f7c7b1;
  position: absolute;
  left: -2em;
  top: 0;
  transform: skewX(-22.5deg);
}
#thanks .comment h4 strong:after {
  content: "";
  width: 5px;
  height: 1.5em;
  background: #f7c7b1;
  position: absolute;
  right: -2em;
  top: 0;
  transform: skewX(-22.5deg);
}
#thanks .comment p {
  font-size: 0.8rem;
}
@media screen and (max-width: 767px) {
  #thanks .comment h4 {
    font-size: 0.9rem;
    margin-bottom: 2.5%;
  }
  #thanks .comment h4 strong:before {
    left: -1.25em;
  }
  #thanks .comment h4 strong:after {
    right: -1.25em;
  }
}
#thanks figure.btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  /*margin: 40px auto 0;*/
  margin: 0 auto 10px;
  width: 480px;
  height: 70px;
  background: #ea5514;
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  font-weight: bold;
  border: none;
  position: relative;
  cursor: pointer;
  transition: 0.3s opacity;
}
#thanks figure.btn a span {
  position: absolute;
  right: 1.5em;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  transition: 0.3s right;
}
#thanks figure.btn a:hover {
  opacity: 0.7;
}
#thanks figure.btn a:hover span {
  right: 1em;
}
@media screen and (max-width: 767px) {
  #thanks figure.btn a {
    width: 100%;
    height: 12.5vw;
    font-size: 0.8rem;
  }
  #thanks figure.btn a span {
    right: 1.25em;
    width: 3.75vw;
  }
}









