@charset "utf-8";
/* CSS Document */




h1.area_h1 {
  background: #ffde00;
  color: #666;
  font-size: 0.7rem;
  font-weight: normal;
  padding: 5px;
}

h2 {
  text-align: center;
  line-height: 1.25;
  color: #0073b9;
}
h2 span {display: inline-block}
main p {margin-bottom: 0}

p.note {
  text-indent: -1em;
  margin: 0.5em 0 0 1em;
  line-height: 1.5
}
p.note::before {content: "※";}

@media only screen and (min-width: 501px),print {  /*スマホ以外*/
  #header {margin-top: 20px;}
  h1.area_h1 {
    position: fixed;
    top: 0;left: 0;right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20px;
  }
  h1.area_h1 span {width:940px }
  h2 {font-size: 28px;}
}
@media only screen and (max-width: 500px) {  /*スマホサイズ*/
  h2 {font-size: 22px;}
  main > *:first-of-type h2:first-of-type {margin-top: 1rem}
}






/*====================================================
メイン（ファーストビュー）
=====================================================*/
#area_main {background: #336699; position: relative}
#area_main a {text-decoration: none;}

#area_main .main_title {
  color: #FFF;
  display: flex;
  flex-direction: column;
  font-weight: bold;
  line-height: 1;
}
#area_main .main_title .area_name {
  background: #ffde00;
  color:#000;
  padding: 0.5em;
  border-radius: 5px;
}
#area_main .main_title .title_sub {transform: skewX(-15deg);}
#area_main .main_title .title {letter-spacing: 0.05em;}

#area_main .text {
  color: #FFF;
  line-height: 1.5;
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

/****料金と作業例******/
#area_main .price_area{
  position: relative;z-index: 2;
}
#area_main .price_area dl dt {
  background: #ffde00;
  color:#000;
  font-weight: bold;
  text-align: center;
}
#area_main .price_area dl.price_box dd {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
#area_main .price_area dl.price_box .name {
  color: #999;
}
#area_main .price_area dl.price_box .fee {
  color: #bb0000;
}
#area_main .price_area dl.price_box .buhin {
  color: #434343;
  padding-right: 1em;
}

#area_main .price_area dl.ex_box dd{
  display: flex;
  justify-content: center;
  padding: 1em 0;
}
#area_main .price_area dl.ex_box li {color: #666}
#area_main .price_area dl.ex_box li::before {
  content: "\f00c";
  font-family: FontAwesome;
  font-weight: bold;
  color: #169cd9;
  margin-right: 0.25em;
}

/****ベネフィット******/
#area_main .benefit {
  display: flex;
  justify-content: space-between;
  position: relative;z-index: 2;
}
#area_main .benefit li {
  width: calc((100% - 30px) / 4);
  background: rgba(255,255,255,0.8);
  color: #004986;
  font-weight: bold;
  text-align: center;
  line-height: 1.35;
  border: solid 1px #FFF;
  box-shadow: inset 0 0 20px #FFF, inset 0 0 20px #FFF, inset 0 0 10px #FFF;
}
/****CTA******/
#area_main .cta_button {
  display: flex;
  position: relative;z-index: 2;
}
#area_main .cta_button a {
  color: #FFF;
  font-weight: bold;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px #FFF;
  border-radius: 10px;
  box-shadow: 0 3px 5px rgba(0,0,0,0.5);
}
#area_main .cta_button a:hover {opacity: 1}
#area_main .cta_button a img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(6%) saturate(7499%) hue-rotate(303deg) brightness(118%) contrast(100%);
}
#area_main .cta_button a.tell {background: #bb0000;}
#area_main .cta_button a.mail {background: #ee7500;}
#area_main .cta_button a.tell:hover {background: #ffde00;}
#area_main .cta_button a.mail:hover {background: #ffde00;}

/****ページ内リンク******/
#area_main .page_nav {
  background: #FFF;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  box-shadow: 0 3px 10px rgba(0,0,0,0.5);
  position: relative;z-index: 2;
}
#area_main .page_nav li {width: calc(100% / 6)}
#area_main .page_nav li:not(:last-of-type) {
  border-right: solid 1px #ccc;
}
#area_main .page_nav li a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: #004986;
  font-weight: bold;
  position: relative;
}
#area_main .page_nav li a:hover {
  opacity: 1;
  background: #FFFF66;
  text-decoration: underline;
}

#area_main .page_nav li a::after {
  content: ""; display: block;
  background: #004986;
  width: 10px; height: 5px;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  position: absolute;
  bottom: 2px;
  left: calc(50% - 2.5px);
}

@media only screen and (min-width: 501px),print {/*スマホ以外*/
  #area_main {
    background: url("../images/service_area/change/main_bg_pc.webp") no-repeat center bottom;
    position: relative;
    width: 960px;
    margin: 0 auto;
    padding: 30px 30px 25px;
  }
  
  #area_main .main_title {align-items: flex-start;}
  #area_main .main_title .title_sub,
  #area_main .main_title .title {
    text-shadow: 0 2px 5px rgba(0,0,0,0.8);
    margin-top: 15px;
  }
  #area_main .main_title .title_sub {font-size: 24px;}
  #area_main .main_title .title {font-size: 46px;}
  
  #area_main p,
  #area_main .benefit {margin-right: 310px}
  
  /****料金と作業例******/
  #area_main .price_area {
    position: absolute;
    top:30px; right: 30px;
    background: #FFF;
    border-radius: 10px;
    overflow: hidden;
    width: 280px;
  }
  #area_main .price_area dl.price_box dt {line-height: 3;}
  #area_main .price_area dl.price_box dd {
    padding: 20px 0 20px;
    line-height: 1;
  }
#area_main .price_area dl.price_box .name {
  font-size: 14px;
}
#area_main .price_area dl.price_box .fee {
  font-size: 40px;
  margin: 20px 0 10px;
}

  #area_main .price_area dl.ex_box dt {display: none}
  #area_main .price_area dl.ex_box dd{
    border-top: solid 1px #ccc;
    padding: 25px 0;
  }
  
  /****ベネフィット******/
  #area_main .benefit li {
    font-size: 18px;
    padding: 0.6em 0;
  }
  /****CTA******/
  #area_main .cta_button {margin: 15px 0;}
  #area_main .cta_button a {
    width: 220px; height: 60px;
    margin-right: 10px;
  }
  #area_main .cta_button a .nam {
    font-size: 1.25rem;
  }
  #area_main .cta_button img {
    width: 30px;
    margin-right: 5px;
  }
  /****ページ内リンク******/
  #area_main .page_nav li a {height: 70px;}
  #area_main .page_nav li a br {display: none}
}
@media only screen and (max-width: 500px) {/*スマホサイズ*/
  #area_main {
    position: relative;
    padding:20px 10px 15px;
    background: url("../images/service_area/change/main_bg_sp1.webp") no-repeat center bottom;
    background-size: 100% auto;
  }
  #area_main::before {
    content: "";display: block;
    position: absolute;
    top: 0;bottom: 0;left: 0; right: 0;
    background: url("../images/service_area/change/main_bg_sp2.webp") no-repeat center top;
    background-size: 100% auto;
    z-index: 0;
  }
  #area_main > * {
    position: relative;
    z-index: 1;
  }
  #area_main .main_title {align-items: center;}
  #area_main .main_title .title_sub,
  #area_main .main_title .title {
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    margin-top: 15px;
  }
  #area_main .main_title .title_sub {font-size: 4.5vw}
  #area_main .main_title .title {font-size: 7.4vw;margin-top: 10px;}

  #area_main p {line-height: 1.5;}
  
  /****料金と作業例******/
  #area_main .price_area {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
  }
  #area_main .price_area dl {
    width: calc((100% - 10px) / 2);
    background: #FFF;
    border-radius: 5px;
    overflow: hidden;
  }
  #area_main .price_area dt {
    font-size: 3.5vw;
    line-height: 2.5;
  }
  #area_main .price_area dl.price_box dd {
    font-size: 3vw;
    line-height: 1;
    padding: 1em 0;
  }
  #area_main .price_area dl.price_box .fee {
    font-size: 7.5vw;
    margin: 3vw 0 1vw;
  }
  #area_main .price_area dl.price_box .buhin {
    font-size: 4vw;
  }
  
  #area_main .price_area dl.ex_box dd{
    font-size: 3vw;
  }
  /****ベネフィット******/
  #area_main .benefit li {
    font-size: 3.5vw;
    padding: 1em 0;
  }  
  /****CTA******/
  #area_main .cta_button {
    justify-content: space-between;
    margin: 10px 0;
  }
  #area_main .cta_button a {
    width: calc((100% - 10px) / 2);
    border-radius: 5px;
    font-size: 4.5vw;
    padding: 4vw 0;
  }
  #area_main .cta_button img {
    width: 4.5vw;
    margin-right: 3px;
  }
  /****ページ内リンク******/
  #area_main .page_nav {border-radius: 5px;}
  #area_main .page_nav li a {
    font-size: 3vw;
    line-height: 1.25;
    height: 4.5em;
    padding-bottom: 5px;
  }
}




/*エリア外の時
************************************/
#area_main .not_cover {
  position: absolute;
  background: rgba(0,0,0,0.65);
  top: 0;  left: 0; right: 0; bottom: 0;
  
  display: flex;
  align-items: center;
  justify-content: center;
  
}
#area_main .not_cover p {
  margin: 0;
  font-weight: bold;
  color: #ffde00;
  text-shadow: 0 0 10px #000,0 0 10px #000,0 0 10px #000,0 0 10px #000,0 0 10px #000;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.35;
}
#area_main .not_cover p span {display: inline-block}
@media only screen and (min-width: 501px),print {/*スマホ以外*/
  #area_main .not_cover {padding: 0 320px 220px 30px;}
  #area_main .not_cover p {font-size: 35px;}
}
@media only screen and (max-width: 500px) {/*スマホサイズ*/
  #area_main .not_cover {padding: 0 10px 85vw;}
  #area_main .not_cover p {font-size: 8vw;}
}




/*====================================================
このような時は○○がおすすめ
=====================================================*/
#recommended_case h2 {color: #ee7500}
#recommended_case .case_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#recommended_case .case_list li {
  width: calc((100% - 10px) / 2);
  background: #fffef4;
  border: solid 1px #ee7500;
  border-radius: 10px;
  margin-top: 10px;
}
#recommended_case .case_list li .title {
  color: #a74200;
  font-weight: bold;
  margin: 0;
}


@media only screen and (min-width: 501px),print {  /*スマホ以外*/
  #recommended_case h2 {margin-top: 1rem}
  #recommended_case .case_list li {
    border-radius: 10px;
    padding: 15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
  }
  #recommended_case .case_list li .title {
  font-size: 18px;
  }
  #recommended_case .case_list li .text {width: 100%;}
}
@media only screen and (max-width: 500px) {  /*スマホサイズ*/
  #recommended_case h2 {margin-bottom: 0.5rem}
  #recommended_case .case_list li {
    border-radius: 5px;
    padding: 10px;
  }
  #recommended_case .case_list li .title {
    text-align: center;
    margin-bottom: 0.5rem;
  }
  #recommended_case .case_list li .img {
    max-width: 80%;
    margin: auto;
  }
  #recommended_case .case_list li .text {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}


/*====================================================
サービス料金
=====================================================*/
/***料金****************************************/
#service_price .price {position: relative;}
#service_price .price .chara {position: absolute}
#service_price .price h2.price_title {
  color: #FFF;
  margin: 0;
  line-height: 1.3;
}
#service_price .price {
  background: #169cd9;
  color: #FFF;
}
#service_price .price .price_box {
  background: #ffff66;
  color: #ff0000;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin: 0;
  line-height: 1;
}
#service_price .price .price_box .fee {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#service_price .price .free {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  color: #888;
  margin: 10px 0;
}
#service_price .price .free li {
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#service_price .price .free .yen {color: #169cd9;}

#service_price .price .text {margin-bottom: 0}

@media only screen and (min-width: 501px),print {  /*スマホ以外*/
  #service_price {margin-top: 3rem}
  #service_price .chara {right: 60px;bottom: 15px;}
  #service_price .price {padding:  0 30px 15px;}
  #service_price .price h2.price_title {padding: 15px 0;}
  #service_price .price .text {padding-right: 220px;}
  #service_price .price .price_box {
    font-size: 18px;
    padding: 15px;
    border-radius: 10px;
  }
  #service_price .price .price_box .fee .name {margin-bottom: 10px;}
  #service_price .price .price_box .fee .yen {font-size: 42px}
  #service_price .price .price_box .buhin {font-size: 24px;}
  #service_price .price .free li {
  width: calc((100% - 20px) / 3);
    font-size: 18px;
    padding: 10px;
    border-radius: 10px;
    line-height: 1;
  }
  #service_price .price .free li .yen .zero {font-size: 32px;margin-top: 5px;}
}
@media only screen and (max-width: 500px) {  /*スマホサイズ*/
  #service_price {margin: 2rem -10px 0}
  #service_price .price {padding: 0 10px 15px;}
  #service_price .chara {
  top: 0; right: 10%;
  height: 90px;width: auto;
  }
  #service_price .price h2.price_title {
    padding: 18px 0;
    padding-right: calc(10% + 130px);
    white-space: nowrap;
  }
  #service_price .price h2.price_title span {display: block;}
  #service_price .price .text {line-height: 1.5;margin-top: 10px;}
  #service_price .price .price_box {
    font-size: 16px;
    padding: 10px;
    border-radius: 5px;
    flex-direction: column;
    align-items: center;
  }
  
  #service_price .price .price_box .fee .name {margin-bottom: 10px;}
  #service_price .price .price_box .fee .yen {
    font-size: 32px;
  }
  #service_price .price .price_box .buhin {margin-top: 5px;}
  #service_price .price .free {margin: 5px 0}
  #service_price .price .free li {
  width: calc((100% - 10px) / 3);
    padding: 10px;
    border-radius: 5px;
    line-height: 1;
  }
  #service_price .price .free li .yen .zero {font-size: 28px;margin-top: 5px;}
}


/***選べる決済方法****************************************/
#service_price .payment {
  background: #d0ebf7;
}
#service_price .payment h3.payment_title {
  color: #0073b9;
  text-align: center;
  margin: 0;
}
#service_price .payment .method_list {
  display: flex;
  justify-content: space-between;
}
#service_price .payment .method_list li {
  background: #fff;
  display: flex;
  flex-direction: column;
}
#service_price .payment .method_list li .method {
  color: #0073b9;
  font-weight: bold;
  text-align: center;
  line-height: 1.25;
}
#service_price .payment .method_list li .img {
  flex-grow: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.note {color: #666666;font-size: 0.9rem}
@media only screen and (min-width: 501px),print {  /*スマホ以外*/
  #service_price .payment {
    padding: 0 30px 15px;
    margin-top: 1rem;
  }
  #service_price .payment h3.payment_title {
    font-size: 28px;
    padding: 15px 0;
  }
  #service_price .payment .method_list li {
    width: calc((100% - 20px) / 3);
    padding: 10px;
    border-radius: 10px;
  }
  #service_price .payment .method_list li .method {
    font-size: 18px;
    margin: 0 -10px 10px;
    padding: 0 10px 10px;
    border-bottom: dashed 1px #169cd9;
  }
  #service_price .payment .method_list li.credit .img img {
    width: calc((100% - 10px) / 3);
  }
  #service_price .payment .method_list li.credit .img img:not(:nth-of-type(3n)) {margin-right: 5px}
  #service_price .payment .method_list li.qr .img img {
    height: 37px;
  }
  #service_price .payment .method_list li.qr .img img:not(:nth-of-type(2n)) {margin-right: 10px}
}
@media only screen and (max-width: 500px) {  /*スマホサイズ*/
  #service_price .payment {
    padding: 0 10px 10px;
  }
  #service_price .payment h3.payment_title {
    font-size: 22px;
    padding: 10px 0;
  }
  #service_price .payment .method_list li {
    width: calc((100% - 10px) / 3);
    padding:0 10px 10px;
    border-radius: 5px;
  }
  #service_price .payment .method_list li .method {
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3em;
    margin: 0 -10px 10px;
    padding: 0 10px;
    border-bottom: dashed 1px #169cd9;
  }
  #service_price .payment .method_list li.credit .img img {
    width: calc((100% - 10px) / 2);
  }
  #service_price .payment .method_list li.credit .img img:nth-of-type(2n) {margin-left: 5px;}
  #service_price .payment .method_list li.qr .img img {
    height: 7vw;
  }
}


/*====================================================
料金例
=====================================================*/
#ex_price .ex_price_title {
  color: #0073b9;
  position: relative;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  padding-bottom: 5px;
  text-align: center;
}
#ex_price .ex_price_title span {display: inline-block}
#ex_price .ex_price_title::after {
  content: "";display: block;
  background: #0073b9;
  width: 80%;height: 3px;
  position: absolute;
  bottom: 0;left: 10%;
}

.price_jirei {
  border: solid 2px #0073b9;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 10px;
}
.pj_title {
  background: #0073b9;
  color: #fff;
  font-weight: bold;
  padding: 0.5em;
  line-height: 1.15;
}
.pj_title span {
  font-weight: normal;
  font-size: 1rem;
}
.price_jirei .pj_naiyo {
  padding: 10px;

}
.pj_title sup{color: #FFF;}

.price_jirei .t_item,
.price_jirei .goukei {
  display: flex;
  flex-direction: column;
}
.price_jirei .pj_naiyo .t_item .t_naiyo,
.price_jirei .goukei dd {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.price_jirei .pj_naiyo .taisyo {
  display: flex;
  flex-grow: 1
}
.price_jirei .pj_naiyo .t_item {
  border: solid 2px #8CD8FD;
  flex-grow: 1;
}
.price_jirei .pj_naiyo .t_item .t_title {
  background: #8CD8FD;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
  padding:0;
}
.price_jirei .pj_naiyo .t_item .t_naiyo {
  padding: 0.3rem 0;
}

.price_jirei .next {position: relative;background: #FFF}
.price_jirei .next::before {
  content: "";
  display: block;
  background: #0073b9;
  position: absolute;
  width: 10px;height: 10px;
}
.price_jirei .goukei dt {font-weight: bold;text-align: center;}
.price_jirei .goukei dd {
  color: #FF0000;
  font-size: 2rem;
  line-height: 1.5em;
}
@media screen and (min-width: 501px),print {/*PC*/
  #ex_price .ex_price_title {
    font-size: 28px;
    margin-top: 3rem;
  }
  .price_jirei .pj_naiyo {display: flex;justify-content: flex-start;padding: 20px;}
  .price_jirei .pj_naiyo .t_item:not(:last-child) {margin-right: 10px}
  .pj_title {
    font-size: 1.25rem;
    text-align: center;
  }
  .price_jirei .pj_naiyo .taisyo {width: 480px}
  .price_jirei .next {
    width: 30px;
    margin: 0 10px;
  }
  .price_jirei .next::before {
    top: calc(50% - 20px);
    width: 20px; height: 40px;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
  }  
  .price_jirei .goukei {width: calc(100% - 520px)}
  .price_jirei .goukei dt {padding-top: 0.5rem}
}
@media screen and (max-width: 500px) {/*SP*/
  #ex_price .ex_price_title {
    font-size: 22px;
    margin: 2rem 0 1rem;
  }
  .price_jirei .pj_naiyo .t_item:not(:last-child) {margin-right: 5px}
  .pj_title {
    font-size: 1.1rem;
  }
  .price_jirei .goukei {
    flex-direction: row;justify-content: center;align-items: flex-end;
    margin: 10px 0 5px;
  }
  .price_jirei .goukei * {line-height: 1 !important;}
  .price_jirei .goukei dt {
    margin-right: 5px;
    margin-bottom: 0.1em;
  }
  .price_jirei .goukei dd {
    flex-grow:initial ;
  }
  .price_jirei .next {
    width: 100%;
    height: 5px;
    margin: 5px auto 0;
  }
  .price_jirei .next::before {
    left: calc(50% - 30px);
    width: 60px; height: 10px;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
  }  
}









/*====================================================
どちらが必要？
=====================================================*/
#which_service {
  background: #ebf7eb;
}
#which_service h2 {
  color: #008c56;
  margin: 0;
}
#which_service .which_case .case {
  overflow: hidden;
  background: #fff;
  border: solid 1px;
}
#which_service .which_case .case dt {
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 0.5rem;
}
#which_service .which_case .case ul {
  padding-left: 1.25em;
}
#which_service .which_case .case ul li {text-indent: -1.25em}
#which_service .which_case .case ul li::before {
  content: "\f14a";
  font-family: "Font Awesome 6 Free";
  font-weight: bold;
  margin-right: 0.25em;
}
#which_service .which_case .case ul li:not(:first-of-type){margin-top: 0.3rem}

#which_service .which_case .case.case_1 {border-color: #ee7500}
#which_service .which_case .case.case_1 dt {background: #ee7500}
#which_service .which_case .case.case_1 ul li::before {color: #ee7500}

#which_service .which_case .case.case_2 {border-color: #008c56}
#which_service .which_case .case.case_2 dt {background: #008c56}
#which_service .which_case .case.case_2 ul li::before {color: #008c56}

@media only screen and (min-width: 501px),print {  /*スマホ以外*/
  #which_service {
    padding: 0 15px 20px;
    margin-top: 3rem;
  }
  #which_service h2 {padding-top: 30px;margin-bottom: 20px}
  #which_service .which_case {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
  }
  #which_service .which_case .case {
    width: calc((100% - 15px) / 2);
    border-radius: 10px;
  }
  #which_service .which_case .case dd {padding: 10px 15px}
}
@media only screen and (max-width: 500px) {  /*スマホサイズ*/
  #which_service {
    padding: 0 10px 1rem;
    margin: 2rem -10px 0;
  }
  #which_service h2 {padding-top: 1rem;margin-bottom: 1rem}
  #which_service .which_case .case {
    border-radius: 5px;
    margin: 1rem 0;
  }
  #which_service .which_case .case dd {padding: 10px}
}







/*====================================================
おすすめのシリンダー
=====================================================*/
#recommended_change_key h2 {color: #0073b9;}
.recommended_keys .key {
  position: relative;
  border: solid 1px #0073b9;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
}
.recommended_keys .key * {margin: 0}
.recommended_keys .key .img {
  position: absolute;
}
.recommended_keys .key .title {
  font-size: 1.15rem;
  line-height: 1;
  font-weight: bold;
  height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.recommended_keys .key .title .type {
  background: #0073b9;
  color: #fff;
  padding: 0.5rem;
}
.recommended_keys .key .title .name span {
  display: block;
  color: #0073b9;
  margin: 0.25rem 0 0 0.5rem;
}

.recommended_keys .key .text {
  margin: 0.5rem 0;
  padding: 0.5rem 0;
  flex-grow: 1;
  border-top:  dotted 1px #0073b9;
  border-bottom:  dotted 1px #0073b9;
}
.recommended_keys .key .security th {
  font-weight: normal;
  text-align: left;
  width: 8em;
  white-space: nowrap;
}
.recommended_keys .key .security td {color: #ff9900;}
.recommended_keys .key .security td.no_star {color: #444;}
.recommended_keys .key .security td::before {content: "：";color: #444;}

/***上記以外にも色々なメーカーの鍵を取り揃えております*****************/
#recommended_change_key .others {
  background: #eeeeee;
}
#recommended_change_key .others .others_title {
  font-weight: bold;
  text-align: center;
  margin: 0;
}
#recommended_change_key .others ul {
  display: flex;
  justify-content: space-between;
}
#recommended_change_key .others ul li {
  background: #FFF;
  color: #0073b9;
  font-weight: bold;
  text-align: center;
  font-size: 0.9rem;
  line-height: 3;
}
#recommended_change_key .others .note {text-align: center;}

@media only screen and (min-width: 501px),print {  /*スマホ以外*/
  .recommended_keys {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .recommended_keys .key {
    width: calc((100% - 10px) / 2);
    padding: 15px;
  }
  .recommended_keys .key .img {
    top: 15px;right: 15px;
  }
  /***上記以外にも色々なメーカーの鍵を取り揃えております*****************/
  #recommended_change_key .others {
    padding: 15px 15px 5px;
  }

  #recommended_change_key .others ul li {
    width: calc((100% - 50px) / 6);
    border-radius: 10px;
    margin: 15px 0 10px;
  }
}
@media only screen and (max-width: 500px) {  /*スマホサイズ*/
  .recommended_keys .key {padding: 10px;}
  .recommended_keys .key .img {
    top: 10px;right: 10px;
  }
  /***上記以外にも色々なメーカーの鍵を取り揃えております*****************/
  #recommended_change_key .others {
    padding: 10px 10px 5px;
  }
  #recommended_change_key .others ul {flex-wrap: wrap}
  #recommended_change_key .others ul li {
    width: calc((100% - 20px) / 3);
    border-radius: 5px;
    margin: 5px 0;
  }
}









/*====================================================
施工実績一覧
=====================================================*/
#work_full {border-radius: 0 !important}
#work_full .work_full_title {padding: 0 !important}

@media only screen and (min-width: 501px) {  /*スマホ以外*/
}
@media only screen and (max-width: 500px) {  /*スマホサイズ*/
  #work_full {margin-top: 1rem !important}
}








/*====================================================
ご依頼の流れ
=====================================================*/
#service_flow {
  border: solid 5px #008c56 ;
  padding:0 20px 20px;
  margin-top: 2rem;
}
#service_flow h2 {
  background: #008c56 ;
  color: #FFF;
  margin: -5px -20px 20px;
  padding: 0.75rem 0;
}
#service_flow .step {
  padding: 1rem;
  border: #bababa 3px solid;
  display: flex;
  gap: 1rem;
  align-items: center;
}
#service_flow .border {
  border-left: 4px dotted #008c56;
  height: 1.75rem;
  margin-left: 4rem;
}
#service_flow .step_icon img {
  box-shadow: 3px 3px 0px 0px #b3b3b3;
  border-radius: 50%;
}
#service_flow .step_main {
  font-size: 20px;
  color: #ee7500;
  font-weight: bold;
  margin: 0;
}
#service_flow .step_number {
  background-color: #ee7500;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  padding: 2px 16px;
  margin-right: 6px;
}
#service_flow .step_text {
  margin: 0;
}
#service_flow .pay {
  margin-top: 1.5rem;
}
#service_flow .pay_name {
  background-color: #008c56;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 5px 1rem;
  margin: 0;
}
#service_flow .pay_img {
  border: 1px solid #008c56;
  border-top: none;
  padding: 10px 1rem;
}
#service_flow .border_none {
  border-bottom: none;
}
#service_flow .pay_note {
  padding: 1rem;
}
#service_flow .pay_note li {
  font-size: 14px;
  text-indent: -14px;
}
#service_flow .pay_note li:first-child {
  margin-bottom: 8px;
}
#service_flow .need_title {
  background-color: #0073b9;
  text-align: center;
  padding: 14px 16px;
  margin: 0;
}
#service_flow .need_title span {
  background-color: #fff;
  border-radius: 50px;
  font-size: 20px;
  color: #0073b9;
  font-weight: bold;
  padding: 10px 2rem;
}
#service_flow .open_need_content {
  background-color: #f5f5f5;
  border: #0073b9 2px solid;
  border-top: none;
  padding: 1rem;
}
#service_flow .open_need_content p {
  margin: 10px 0;
  line-height: 1.6;
}
#service_flow .open_need_content p.red {
  color: #df0505;
}

@media only screen and (max-width: 500px) { /*SP*/
#service_flow {
  padding:0 10px 10px;
}
#service_flow h2 {
  background: #008c56 ;
  color: #FFF;
  margin: -5px -10px 10px;
  padding: 0.5rem 0;
}
  #service_flow .step {
    padding: 1rem 10px;
    gap: 12px;
  }
  #service_flow .step_icon {
    flex: 1;
  }
  #service_flow .step_r {
    flex: 3;
  }
  #service_flow .step_number {
    font-size: 16px;
    display: block;
    margin: 0;
    background-color: transparent;
    padding: 0;
  }
  #service_flow .step_number span{
    display: inline;
    background-color: #ee7500;
    padding: 2px 10px;
  }
  #service_flow .step_main {
    font-size: 16px;
  }
  #service_flow .step_text {
    font-size: 14px;
  }
  #service_flow .border {
    margin-left: 3rem;
  }
  #service_flow .pay_name {
    font-size: 16px;
  }
  #service_flow .need_title {
    padding: 10px;
  }
  #service_flow .need_title span {
    font-size: 16px;
    background-color: transparent;
    color: #fff;
    padding: 0;
  }
  #service_flow .open_need_content {
    padding: 10px;
  }
  #service_flow .open_need_content p {
    font-size: 14px;
  }
}

@media only screen and (min-width: 501px) {  /*スマホ以外*/
}




/*====================================================
よくある質問
=====================================================*/



/*====================================================
エリア内の対応地域
=====================================================*/
#service_area {
  background: #e5f3ee;
}
#service_area h2 {
  color: #008c56;
  margin: 0;
}
#service_area h2 span {display: inline-block}
#service_area dl,
#service_area .shiku{
  border: solid 1px #008c56;
  background: #fff;
  margin-bottom: 10px;
}
#service_area .shiku .gais_text {
  color: #cc0000;
  text-align: center;
  margin: 0;
}
#service_area .shiku .gais {
  background: #eee;
  font-size: 0.9rem;
  padding: 0.5rem 0.5rem 0;margin-top: 0.5rem;
}



#service_area dl dt {
  text-align: center;
  color: #008c56;
  font-weight: bold;
  cursor: pointer;
  line-height: 2.5;
}
#service_area dl dd {
  display: none;
  padding: 1rem 0;
  margin: 0 1rem;
  border-top: dotted 1px #008c56;
}

#service_area dl.kinrin {
  margin: 0;
}
#service_area dl.kinrin dt {
  background: #008c56;
  color: #FFF;
}
#service_area dl.kinrin dd {
  border: none;
}
#service_area ul{display: flex;flex-wrap: wrap}
#service_area li {line-height: 1.75}
#service_area li::after {content: "｜";}

#service_area .shiku {padding: 0.5rem 1rem 1rem}

#service_area .accord {position: relative}
#service_area .accord::after {
  content: "＋";
  position: absolute;
  right: 1rem;
}
#service_area .accord.open::after {content: "－"}
#service_area .accord:hover {
  background: #ff9900;
  color: #FFF;
}
#service_area .note {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  text-align: center;
}
#service_area .kinrin .note {margin-top: -0.5rem;}

@media only screen and (min-width: 501px) {  /*スマホ以外*/
  #service_area {
    padding: 0 15px 20px;
    margin-top: 3rem;
  }
  #service_area h2 {padding: 20px 0}
}
@media only screen and (max-width: 500px) {  /*スマホサイズ*/
  #service_area {
    padding: 0 10px 15px;
    margin-top: 2rem;
  }
  #service_area h2 {padding: 15px 0}
  #service_area li {font-size: 0.8rem}
  #service_area .shiku {
    height: 200px;
    overflow-x: scroll;
  }
  #service_area .note {font-size: 0.7rem}

}









/*====================================================
建物・場所別のサービス
=====================================================*/
#area_service_object {
  background: #f5f5f5;
}
#area_service_object .title {
  margin-top: 0
}

#area_service_object .title .object {
  color: #ee7500;
  margin: 0 0.5rem;
}
#area_service_object .case_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/*ケース
--------------------------------------------------*/
#area_service_object .case_list li.case {
  margin-top: 10px;
  border: solid 1px #0073b9;
  background: #FFF;
  padding: 0 10px 10px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
#area_service_object .case * {
  line-height: 1.5;
}
/**ナンバー********/
#area_service_object .case .number {
  background: #0073b9;
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 0.8rem;
  margin: 0 -10px 10px;
}

/**タイトル********/
#area_service_object .case_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#area_service_object .case_title .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;height: 65px;
  border: solid 1px #d0ebf7;
  background: #d0ebf766;
  border-radius: 50%;
}
#area_service_object .case_title .icon img {
  width: 45px;
  filter: brightness(0) saturate(100%) invert(30%) sepia(100%) saturate(1008%) hue-rotate(175deg) brightness(94%) contrast(103%);
}
#area_service_object .case_title .text {
  width: calc(100% - 75px);
  margin: 0;
  color: #0073b9;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}
#area_service_object .case_title .text span {
  display: inline-block;
  font-size: 1.1rem;
}

#area_service_object .case p.text {margin-right: -5px;}

/**事例********/
#area_service_object dl.ex {
  flex-grow: 1;
  margin: 0.5rem 0;
}
#area_service_object dl.ex dt {
  font-size: 0.85rem;
  font-weight: bold;
  color: #169cd9;
  margin-bottom: 5px;
}
#area_service_object dl.ex ul {
  display: flex;
  flex-wrap: wrap;
  margin-right: -10px;
}
#area_service_object dl.ex li {
  border: solid 1px #d0ebf7;
  background: #d0ebf766;
  color: #0073b9;
  font-size: 0.85rem;
  padding: 0 0.5em;
  margin: 0 5px 5px 0;
}

/**POINT********/
#area_service_object dl.point {
  border:solid 1px #ff9900;
  background: #ff990022;
}
#area_service_object .point dt {
  background: #ff9900;
  color: #fff;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1;
  padding: 5px;
}
#area_service_object .point dt::before{
  content: "\21";
  font-family: "Font Awesome 6 Free";
  font-weight: bold;
  display: inline-block;
  letter-spacing: 0;
  text-align: center;
  width: 1em;height: 1em;
  background: #fff;
  color: #ff9900;
  border-radius: 50%;
  margin-right: 0.3em;
}
#area_service_object .point dd {
  padding: 0.5em;
}

/*フォローアップ
--------------------------------------------------*/
#area_service_object .followup {
  position: relative;
  border: solid 1px #0073b9;
  background: #0073b9;
  padding: 0.2rem 1rem 0.7rem 110px;
  margin-top: 10px;
  border-radius: 10px;
}
#area_service_object .followup .uma {
  position: absolute;
  left: 0;  bottom: 0;
  width: 100px;
}
#area_service_object .followup p {
  color: #fff;
  margin-top: 0.5rem;
  line-height: 1.5;
}
#area_service_object .followup .title {
  color: #ffff00;
  font-weight: bold;
  font-size: 1.1rem;
}

@media only screen and (min-width: 501px) {  /*スマホ以外*/
  #area_service_object {
    padding: 2rem 1rem 1rem;
    margin: 3rem 0;
  }
  #area_service_object .case_list li.case {width: calc((100% - 20px) / 3)}
  #area_service_object .case * {
  font-size: 0.9rem;
  }
}
@media only screen and (max-width: 500px) {  /*スマホサイズ*/
  #area_service_object {
    padding: 2rem 10px 1rem;
    margin: 2rem 0;
  }
  #area_service_object .case_list li.case {width: 100%}
}



