@charset "utf-8";
/* CSS Document */

@import url("reset.css");
/*########################################################
#　ベース
########################################################*/
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1+Code:wght@700&family=M+PLUS+1p:wght@800&family=M+PLUS+Rounded+1c:wght@800;900&family=Noto+Sans+JP:wght@800&display=swap');
/*
font-family: 'M PLUS 1 Code', monospace;
font-family: 'M PLUS 1p', sans-serif;
font-family: 'M PLUS Rounded 1c', sans-serif;
font-family: 'Noto Sans JP', sans-serif;
*/
:root {
  --color_red: #bd1d1e; /* var(--color_red); *//*赤色*/
  --color_blue: #0068b7; /* var(--color_blue); *//*青*/
  --color_orange: #ee7500; /* var(--color_orange); *//*オレンジ*/
  --color_yellow: #fff100; /* var(--color_yellow); *//*黄色*/
  --color_pink: #e20077; /* var(--color_pink); *//*ピンク色*/
  --color_light_pink: #eb6877; /* var(--color_light_orange); *//*ピンク色*/
  --color_white: #ffffff; /* var(--color_white); *//*白色*/
  --color_light_orange: #fffbcc; /* var(--color_light_orange); *//*背景用*/
  --color_text: #333333; /* var(--color_text); *//*水色[背景用]*/
  
  --ff_MP1C: 'M PLUS 1 Code', monospace; /* var(--ff_MP1C); */
  --ff_MP1p: 'M PLUS 1p', sans-serif; /* var(--ff_MP1p); */
  --ff_MPr1C: 'M PLUS Rounded 1c', sans-serif; /* var(--ff_MPr1C); */
  --ff_NotoSans: 'Noto Sans JP', sans-serif; /* var(--ff_NotoSans); */
}
html {
    scroll-behavior: smooth;
}
@media screen and (min-width:501px){/*PC*/
  html {font-size: 62.5%;}
  :root {
    --fs_100: 10rem; /* var(--fs_100); */
    --fs_80: 8rem; /* var(--fs_80); */
    --fs_60: 6rem; /* var(--fs_60); */
    --fs_50: 5rem; /* var(--fs_50); */
    --fs_40: 4rem; /* var(--fs_40); */
    --fs_32: 3.2rem; /* var(--fs_32); */
    --fs_24: 2.4rem; /* var(--fs_24); */
    --fs_16: 1.6rem; /* var(--fs_16); */
  }
  body {
    font-size:1.8rem; /*18px*/
    min-width: 960px;
/*    overflow-x: hidden;*/
  }
}
@media screen and (max-width:500px){/*SP*/
  :root {
    --fs_100: 25vw; /* var(--fs_100); */
    --fs_80: 20vw; /* var(--fs_80); */
    --fs_60: 15vw; /* var(--fs_60); */
    --fs_50: 7.5vw; /* var(--fs_50); */
    --fs_40: 6.5vw; /* var(--fs_40); */
    --fs_32: 5vw; /* var(--fs_32); */
    --fs_24: 4.5vw; /* var(--fs_24); */
    --fs_16: 3.5vw; /* var(--fs_16); */
  }
  body {font-size:4vw; /**/ }
}

.ff_MP1C { font-family:var(--ff_MP1C); }
.ff_MP1p { font-family:var(--ff_MP1p); }
.ff_MPr1C { font-family:var(--ff_MPr1C); }
.ff_NotoSans { font-family:var(--ff_NotoSans); }
h2,#shiharai h3 {font-family:var(--ff_MP1p);}


.fs_100,.fs_60,.fs_50,.fs_40,.fs_32,.fs_24{font-weight: bold}
.fs_100 { font-size: var(--fs_100); }
.fs_80 { font-size: var(--fs_80); }
.fs_60 { font-size: var(--fs_60); }
.fs_50 { font-size: var(--fs_50); }
.fs_40 { font-size: var(--fs_40); }
.fs_32 { font-size: var(--fs_32); }
.fs_24 { font-size: var(--fs_24); }
.fs_16 { font-size: var(--fs_16); }



* {box-sizing: border-box}
html,body {height: 100%;color: #333333; line-height: 1.5;}
body {
/*  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro","メイリオ", Meiryo, Osaka,  "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;*/
font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', Meiryo, メイリオ, '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック体', 'Yu Gothic', YuGothic, 'MS PGothic', Osaka, arial, sans-serif;
}
img,source {
  max-width: 100%;
  height: auto;
}
h2,p,dd,section li {line-height: 1.5}
a {text-decoration: none;}
p + p {margin-top: 1rem}

.t_bold {font-weight: bold}
.t_center {text-align: center}
.t_red {color: var(--color_red);}
.t_yellow {color: var(--color_yellow);}
.marker {
  background:linear-gradient(transparent 50%, #ffe240 0%);
}

p.note, .note li,figcaption.note {
  text-indent: -1em;
  margin-left: 1em;
}
p.note::before, .note li::before,figcaption.note::before {content: "※";}

.bg_img {
  background: url("../img/bg.jpg") repeat-x bottom center;
}
.bg_orange {background: var(--color_light_orange);}
.bg_blue {
  background: #2b80ec;
  background-image: linear-gradient(rgba(75, 175, 238, 1), rgba(43, 128, 236, 1));
}







/*==========================================================
共通設定
==========================================================*/
section,.inner {
  position: relative;
  display: block;
}
h2,#shiharai h3 {
  font-size: var(--fs_40);
  text-align: center;
  font-weight: bold;
  line-height: 1.5;
}

h2.red {color: var(--color_red);}
h2.orange,#shiharai h3.orange {color: var(--color_orange);}
h2.blue {color: var(--color_blue);}
h2.border {padding: 1rem 0;}
h2.border.red {border-color: var(--color_red);}
h2.border.orange {border-color: var(--color_orange);}
h2.border.blue {border-color: var(--color_blue);}

@media screen and (min-width:501px){/*PC*/
  .SP {display: none}
  section {padding: 50px 0;}
  .inner {
    display: block;
    width: 960px;
    margin: 0 auto;
  }
  h2.border {
    border-top: solid 5px;
    border-bottom: solid 5px
  }

}
@media screen and (max-width:500px){/*SP*/
  .PC {display: none}
  section {padding: 1.5rem 0;}
  .inner {padding: 0 10px}
  h2.border {
    border-top: solid 4px;
    border-bottom: solid 4px
  }
}





/*==========================================================
ハンバーガーメニュー
==========================================================*/
@media screen and (max-width:500px){/*SP*/}




/*==========================================================
ヘッダー
==========================================================*/
header {font-weight: bold;}

header .header_line {
  background: var(--color_red);
  color: var(--color_white);
  display: flex;
  align-items: center;
}
@media screen and (min-width:501px){/*PC*/
  header .inner {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
  }
  header .inner .logo img {height: 40px;width: auto}
  header .inner .header_right {
    display: flex;
    align-items: center;
  }
  header .inner .header_right .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: var(--fs_16);
  }
  header .inner .header_right .text span {margin-bottom: 5px;}
  header .inner .header_right .LP_header_tell {
    display: flex;
    align-items: center;
  }
  
  header .inner .header_right.mail .text{
    display: block;
    font-size: 22px;
  }
  header .inner .header_right.mail .text span{margin-right: 15px;}
  
  header .LP_header_tell .tell_free {
    background: var(--color_blue);
    color: var(--color_white);
    line-height: 40px;
    border-radius: 5px;
    padding: 0 10px;
    margin: 0 5px;
  }
  header .LP_header_tell .tell_number {
    color: var(--color_blue);
    font-size: 40px;
    margin-bottom: -5px;
  }

  header .header_line {
    height: 40px;
    justify-content: center;
    font-size: 22px;
    padding-top: 3px;
  }
}
@media screen and (max-width:500px){/*SP*/
  header .inner {display: none}
  
  header .header_line {
    padding: 2vw;
    justify-content: space-between;
  }
  header .header_line .logo{
    width: 20vw;
  }
  header .header_line .text {
    width: 75%;
    font-size: 3.2vw;
    line-height: 1.5;
  }
}


/*==========================================================
メイン画像
==========================================================*/
h1.mainvisual {
  position: relative;
  line-height: 0;
}
h1.mainvisual img {
  position: relative;

  z-index: 5
}
h1.mainvisual span {
  position: absolute;
  bottom: 10px;  left: 10px;  right: 10px;
  z-index: 0;
}
@media screen and (min-width:501px){/*PC*/
  h1.mainvisual {
    text-align: center;
    background: url("../img/mainvisual_bg.jpg") no-repeat center bottom;
  }
}
@media screen and (max-width:500px){/*SP*/}




/*==========================================================
フッター画像｜フッター
==========================================================*/
.footervisual {
  background: url("../img/footer_bg.jpg") repeat-x center bottom;
}
footer,footer a {
  background: #000;
  color: var(--color_white);
  text-align: center;
  padding: 1rem;
}
footer p {
  display: block;
  text-decoration: underline;
  margin-bottom: 2em;
}
@media screen and (min-width:501px){/*PC*/}
@media screen and (max-width:500px){/*SP*/
  .footervisual .inner {padding: 0}
  footer {padding-bottom: 30vw}
}



/*==========================================================
固定バナー
==========================================================*/
#go_top {
  display: block;
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 1;
}

#mail_link {
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  -moz-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -ms-writing-mode: vertical-rl;

  display:flex;
  justify-content: center;
  align-items: center;
  
  position: fixed;
  right: 0;
  top: 100px;
/*  opacity: 0.85;*/
  z-index: 9999;
  
  /*background: #dd2323;*/
  background: #ee7500c9;
  border: solid #FFFFFF;
  border-width: 2px 0 2px 2px;
  padding: 1em 0.85em  1em 0.85em;;
  border-radius: 1em 0 0 1em;
}
#mail_link ,
#mail_link * {
  color: #FFFFFF;
  font-weight: bold;
  font-size: 2rem;
}
#mail_link:hover {
  /*opacity: 1*/
  background: #ee7500;
  }
  #floatingnumber {
    position: fixed;
    left: 0px;
    right: 0;
    bottom: 0;
    z-index: 9999;
  }
  #floatingnumber a {
    display: block;
    line-height: 0 !important;
    padding: 0;
    margin: 0;
    box-shadow: 0 0 8px #000;
  }
#floatingnumber a img {width: 100%}
@media screen and (min-width:501px){/*PC*/
}
@media screen and (max-width:500px){/*SP*/
/*#go_top {bottom: 22vw;}*/
#go_top {bottom: 5px;}
}

/*==========================================================
ショートカット
==========================================================*/
.shortcut {
  background: var(--color_red);
  display: flex;
  align-items: center;
  overflow: hidden;

}
.shortcut a {
  position: relative;
  display: block;
  color: var(--color_white);
  border-bottom: solid 2px var(--color_white);
  font-weight: bold;
  text-align: center;
  padding:0 0.5em 5px;
  margin-bottom: 10px;
}
.shortcut a::after {
  content: "";
  border: solid transparent;
  border-top-color: var(--color_white);
  position: absolute;
}
.shortcut a:hover{
  color: var(--color_yellow);
  border-bottom-color: var(--color_yellow);
}
.shortcut a:hover::after{
  border-top-color: var(--color_yellow);
}
@media screen and (min-width:501px){/*PC*/
  .shortcut {
    height: 70px;
    justify-content: center;
    font-size: 20px;
  }
  .shortcut li {margin: 0 1em}
  .shortcut a::after {
    border-width: 10px 20px 0px 20px;
    left: calc(50% - 20px);
    bottom: -15px;
  }
}
@media screen and (max-width:500px){/*SP*/
  .shortcut {
    justify-content: space-around;
    padding: 0.5rem 0;
  }
  .shortcut a {
    font-size: var(--fs_16);
  border-bottom: solid 1px var(--color_white);
  }
  .shortcut a::after {
    border-width: 0.75em 1.5em 0px 1.5em;
    left: calc(50% - 1.5em);
    bottom: -1em;
  }
}





/*==========================================================
電話
==========================================================*/
.parts_tell::before {
  content: "";
  display: block;
  width: 0;height: 0;
  border: solid transparent;
  border-top-color: var(--color_white);
  position: absolute;
  top: 0;
}
.bg_orange + .parts_tell::before {
  border-top-color: var(--color_light_orange);
}

.parts_tell .text {
  color: var(--color_white);
  font-weight: bold;
}
.parts_tell .text h2 {text-shadow: 0 0 10px var(--color_blue);}

.parts_tell .text ul {
  display: flex;
  justify-content: space-between;
}
.parts_tell .tell_button {
  position: relative;
  background: var(--color_white);
  font-weight: bold;
}
.parts_tell .staff_img {position: absolute}
.parts_tell .tell_button .tell {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.parts_tell .tell_button .tell_free{
  display: inline-block;
  background: linear-gradient(to bottom, #db6464 0, #dd3e3f 31%, #dd3e3f 45%, #c10e0e 50%, #d31b07 83%, #df0a0a 100%);
  background: -webkit-linear-gradient(-90deg, #db6464 0, #dd3e3f 31%, #dd3e3f 45%, #c10e0e 50%, #d31b07 83%, #df0a0a 100%);
  color: var(--color_white);
  border-radius: 5em;
}
.parts_tell .tell_button .tell_number{
  display: inline-block;
  background: linear-gradient(to bottom, #db6464 0, #dd3e3f 31%, #dd3e3f 45%, #c10e0e 50%, #d31b07 83%, #df0a0a 100%);
  background: -webkit-linear-gradient(-90deg, #db6464 0, #dd3e3f 31%, #dd3e3f 45%, #c10e0e 50%, #d31b07 83%, #df0a0a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.parts_tell .tell_button .tell_text{
  display: block;
  color: var(--color_blue);
  text-align: center;
}
.parts_tell .tell_button.mail {
}
  .parts_tell .tell_button .mail_link {
    border: solid #fff;
  background: linear-gradient(to bottom, #db6464 0, #dd3e3f 31%, #dd3e3f 45%, #c10e0e 50%, #d31b07 83%, #df0a0a 100%);
    display: flex;
    justify-content: center;
    align-items: center;
  line-height: 1;
    color: #FFF;
}
 .parts_tell .tell_button .mail_link:hover {
  background: #FFF;
   color: #df0a0a;
   border-color: #df0a0a;
}
.parts_tell .tell_button .mail_link i.mark {
  position: absolute;
  transform: rotate(90deg);
}

.parts_tell .coupon {  text-align: center;}

@media screen and (min-width:501px){/*PC*/
  .parts_tell {padding-top: 50px}
  .parts_tell::before {
    border-width: 50px 100px 0px 100px;
    left: calc(50% - 100px);
  }
  .parts_tell .text h2 {
    margin-left:  120px; 
  }
  .parts_tell .text ul {
    margin: 20px 95px 20px 215px; 
  }
  .parts_tell .text ul li {
    font-size: var(--fs_32);
    padding: 10px;
    width: calc((100% - 10px)/ 2);
    text-align: center;
    border: solid 5px var(--color_white);
  }
  .parts_tell .staff_img {
    top: -220px;
    left: -40px;
  }
  .parts_tell .tell_button {
    width: 860px;
    margin: auto;
  border-radius: 15px;
  }
  .parts_tell .tell_button a{
    display: block;
  border-radius: 15px;
    padding: 20px 30px;    
  }
  .parts_tell .tell_button .tell_free {
    font-size: 40px;
    padding: 10px 30px;
  }
  .parts_tell .tell_button .tell_number{
    font-size: 70px;
  }
  .parts_tell .tell_button .tell_text {
    font-size: var(--fs_32);
    margin-top: 10px;
  }
  .parts_tell .tell_button .mail_link {
    border-width: 4px;
    font-size: 45px;
  }
  .parts_tell .tell_button .mail_link i{
    font-size: 55px;
    margin-top: -5px;
  }
  .parts_tell .tell_button .mail_link i.mark{
    font-size: 40px;
    right: 20px;
  }

  .parts_tell .coupon {margin-top: 20px}
}
@media screen and (max-width:500px){/*SP*/
  .nomark .parts_tell {padding-top: 1rem;}
  .nomark .parts_tell::before {display: none}
  .parts_tell::before {
    border-width: 1.5rem 3rem 0px 3rem;
    left: calc(50% - 3rem);
  }
  .parts_tell .text h2 {
    padding-left: 20%;
    font-size: 6.75vw;
  }
  .parts_tell .text h2 .fs_100 {
    font-size: 13vw;
  }
  .parts_tell .text ul {
    padding: 0.75rem 5px 0.75rem 25%;
  }
  .parts_tell .text ul li {
    font-size: 3.5vw;
    padding: 0.5em 0.5em 0.4em;
    flex-grow: 1;
    text-align: center;
    border: solid 2px var(--color_white);
  }
  .parts_tell .text ul li:first-of-type {margin-right: 5px;}

  .parts_tell .staff_img {
    height: 30vw;    width: auto;
    top: calc(-30vw + 1px);
    left: -5px;
  }
  .parts_tell .tell_button {
    margin-bottom: 10px;
  border-radius: 10px;
  }
  .parts_tell .tell_button a{
    display: block;
    padding: 0.75rem 1rem;    
  border-radius: 10px;
  }
  .parts_tell .tell_button .tell_free {
    font-size: 4vw;
    padding: 0.5em;
  }
  .parts_tell .tell_button .tell_number{
    font-size: 8vw;
    margin-bottom: -0.2em;
  }
  .parts_tell .tell_button .tell_text {
    margin-top: 10px;
  }
  .parts_tell .note {
    font-size: var(--fs_16);
    color: var(--color_white);
    text-align: center;
  }

  .parts_tell .tell_button .mail_link {
    border-width: 2px;
    font-size: 5.5vw;
    padding: 0.75em 0.5em 0.75em 0;
  }
  .parts_tell .tell_button .mail_link i{
    font-size: 6.5vw;
    margin-top: -0.1em;
  }
  .parts_tell .tell_button .mail_link i.mark{
    font-size: 5vw;
    right: 10px;
  }
  
  .parts_tell .coupon {margin-top: 5px}

}




/*==========================================================
鍵のことならお任せください
==========================================================*/
#service ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#service ul li {
  position: relative;
  overflow: hidden;
}
#service ul span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to bottom, #db6464 0, #dd3e3f 31%, #dd3e3f 45%, #c10e0e 50%, #d31b07 83%, #df0a0a 100%);
  color: var(--color_white);
  font-size: var(--fs_24);
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width:501px){/*PC*/
  #service ul {
    width: 860px;
    margin: 50px auto;
  }
  #service ul li {
    width: 200px;
    border-radius: 15px;
  }
  #service ul li:nth-of-type(n+5){margin-top: 20px;}
  #service ul span {height: 50px;}
}
@media screen and (max-width:500px){/*SP*/
  #service ul {
    margin: 1rem auto;
    padding: 0 5px;
  }
  #service ul li {
    width: calc((100% - 10px) / 3);
    border-radius: 10px;
  }
  #service ul li:nth-of-type(n+4){margin-top: 5px;}
  #service ul span {
    padding: 0.75em 0 0.65em;
    font-size: var(--fs_16);
  }
}




/*==========================================================
安心と実績
==========================================================*/
#anshin .anshin_title {position: relative}
#anshin .anshin_title img.staff_left ,
#anshin .anshin_title img.staff_right {position: absolute;}
#anshin h3.anshin_title_sub {
  color : var(--color_orange);
  font-family: var(--ff_MP1p);
  font-size: var(--fs_50);
  text-align: center;
  font-weight: bold;
  text-shadow: 0 0 10px #FFFFFF,0 0 10px #FFFFFF,0 0 10px #FFFFFF,0 0 10px #FFFFFF,0 0 10px #FFFFFF,0 0 10px #FFFFFF,0 0 10px #FFFFFF,0 0 10px #FFFFFF,0 0 10px #FFFFFF,0 0 10px #FFFFFF,0 0 10px #FFFFFF,0 0 10px #FFFFFF,0 0 10px #FFFFFF,0 0 10px #FFFFFF,0 0 10px #FFFFFF,0 0 10px #FFFFFF,0 0 10px #FFFFFF,0 0 10px #FFFFFF,0 0 10px #FFFFFF,0 0 10px #FFFFFF,0 0 10px #FFFFFF,0 0 10px #FFFFFF,0 0 10px #FFFFFF,0 0 10px #FFFFFF,0 0 10px #FFFFFF,0 0 10px #FFFFFF,0 0 10px #FFFFFF,0 0 10px #FFFFFF,0 0 10px #FFFFFF,0 0 10px #FFFFFF,0 0 10px #FFFFFF,0 0 10px #FFFFFF,0 0 10px #FFFFFF,0 0 10px #FFFFFF,0 0 10px #FFFFFF,0 0 10px #FFFFFF,0 0 10px #FFFFFF,0 0 10px #FFFFFF,0 0 10px #FFFFFF,0 0 10px #FFFFFF,0 0 10px #FFFFFF,0 0 10px #FFFFFF,0 0 10px #FFFFFF,0 0 10px #FFFFFF,0 0 10px #FFFFFF,0 0 10px #FFFFFF,0 0 10px #FFFFFF,0 0 10px #FFFFFF,0 0 10px #FFFFFF,0 0 10px #FFFFFF,0 0 10px #FFFFFF,0 0 10px #FFFFFF,0 0 10px #FFFFFF,0 0 10px #FFFFFF,0 0 10px #FFFFFF,0 0 10px #FFFFFF,0 0 10px #FFFFFF,0 0 10px #FFFFFF,0 0 10px #FFFFFF,0 0 10px #FFFFFF,0 0 10px #FFFFFF,0 0 10px #FFFFFF;
}
#anshin h3.svgText text {
  stroke            : var(--color_white);
  fill              : var(--color_orange);
  text-anchor       : middle;
  dominant-baseline : alphabetic;
  font-size: var(--fs_50);
}
#anshin h3.svgText > svg > use:nth-of-type(1) {
  stroke-width      : 0.5em;
  paint-order       : stroke;
  stroke-linejoin   : round ;
}
#anshin h3.svgText > svg > use:nth-of-type(2) {
  stroke-width      : 0;
}

#anshin ul li {
  overflow: hidden;
  background: var(--color_white);
  border: solid 2px var(--color_red);
}
#anshin ul li h4 {
  display: flex;
  justify-content: space-between;
  background: var(--color_red);
  color: var(--color_white);
  font-weight: bold;
  text-align: center;
  font-size: var(--fs_32);
  padding: 5px 0 5px 5px;
}
#anshin ul li h4 span{
  display: flex;
  align-items: center;
  justify-content: center;
}
#anshin ul li h4 span:nth-of-type(2){
  flex-grow: 1;
  line-height: 1.3;
}
#anshin ul li .inner_box {
  padding: 15px;
}
#anshin ul li:nth-of-type(2) .inner_box .t_center {margin: 1rem 0;}
#anshin ul li .strong {
  font-weight: bold;
  text-align: center;
  font-size: var(--fs_40);
}
@media screen and (min-width:501px){/*PC*/
  #anshin .anshin_title h2 {margin:1rem 120px 70px}
  #anshin h3 {margin: 6rem 0;}
  #anshin .anshin_title img.staff_left ,
  #anshin .anshin_title img.staff_right {top: -50px;}
  #anshin .anshin_title img.staff_left {left: 0}
  #anshin .anshin_title img.staff_right {right: 0}
  #anshin h3.svgText text {margin: 50px 0}
  #anshin ul {
    display: flex;
    justify-content: space-between;
    width: 820px;
    margin: auto;
  }
  #anshin ul li {
    width: 400px;
    border-radius: 15px;
  }
  #anshin ul li h4 span:nth-of-type(1){margin-left: 10px}
}
@media screen and (max-width:500px){/*SP*/
  #anshin .anshin_title h2 {
    font-size: 6vw;
    margin: 0 0 2rem;
  }
  /*#anshin h3 {margin: 1rem -10px;}*/
  #anshin h3.anshin_title_sub {
    margin: 1.5rem 0;
    line-height: 1.5em;
  }
  #anshin .anshin_title img.staff_left ,
  #anshin .anshin_title img.staff_right {
    height: 40vw;
    width: auto;
    bottom: -1rem;
  }
  #anshin .anshin_title img.staff_left {left: -10px}
  #anshin .anshin_title img.staff_right {right: -10px}
  #anshin h3.svgText text {
    font-size: 6vw;
    margin: 2rem 0;
  }
  #anshin ul li {border-radius: 10px;}
  #anshin ul li:nth-child(2) {margin-top: 1rem;}
#anshin ul li h4 {
  font-size: 6vw;
}

  #anshin ul li h4 span:nth-of-type(1){
    max-width: 15%;
    margin-left: 5px;
  }
}




/*==========================================================
選ばれる4つの理由
==========================================================*/
#riyuu h2 span.t3 {display: block}
#riyuu .riyuu dl {
  position: relative;
    border: solid 2px var(--color_red);
    background: var(--color_white);
  display: flex;
  justify-content: space-between;
  align-items: center;
    padding: 5px 10px;
}
#riyuu .riyuu dl .img {position: absolute;}
#riyuu .riyuu dl dt {line-height: 0}
@media screen and (min-width:501px){/*PC*/
  #riyuu .riyuu {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 40px;
  }
  #riyuu .riyuu dl .img {top: -181px}
  #riyuu .riyuu dl .img.staff_left {left: 0;}
  #riyuu .riyuu dl .img.staff_right {right: 0;}
  #riyuu .riyuu dl {
    width: calc((100% - 20px)/ 2);
    border-radius: 15px;
  }
  #riyuu .riyuu dl:nth-child(n+3) {margin-top: 20px}
  #riyuu .riyuu dl dt {width: 190px;}
  #riyuu .riyuu dl dd {
    width: calc(100% - 200px);
    padding: 10px 0;
  }
}
@media screen and (max-width:500px){/*SP*/
  #riyuu h2 span.t2 {
    display: block;
    padding-left: 2.1em;
    margin-top: 0.5em;
  }
  #riyuu h2 span.t3 {
    margin-top: -1em;
  }
  #riyuu .riyuu {margin-top: 1.5rem}
  #riyuu .riyuu dl .img {
    top: calc(-30vw - 2px);
  }
  #riyuu .riyuu dl .img img {height: 30vw}
  #riyuu .riyuu dl .img.staff_left {left: -10px;}
  #riyuu .riyuu dl .img.staff_right {right: -10px;}
  #riyuu .riyuu dl {
    border-radius: 10px;
  }
  #riyuu .riyuu dl:nth-child(n+2) {margin-top: 10px}
  #riyuu .riyuu dl dt {width: 30%;}
  #riyuu .riyuu dl dd {
    width: 70%;
    padding: 10px 5px 10px 10px;
  }
}




/*==========================================================
サービス料金について
==========================================================*/
/***見出し***********/
#price {padding: 0}
#price .price_title {
  position: relative;
  background: var(--color_red);
}
#price .price_title::after {
  content: "";
  display: block;
  width: 0;height: 0;
  border: solid transparent;
  border-top-color: var(--color_red);
  position: absolute;
}
#price .price_title h2 {color: var(--color_white);}
#price .price_title .price_inner {
  position: relative;
  background: var(--color_white);
  border-radius: 15px;
  overflow: hidden;
}
#price .price_title .price_inner img {position: absolute;}
#price .price_title .price_inner li {
  list-style: disc outside;
}
#price .price_title .note {color: var(--color_white);}

@media screen and (min-width:501px){/*PC*/
#price .price_title {
  padding: 30px 0;
  margin-bottom: 70px;
  }
  #price .price_title::after {
    border-width: 50px 100px 0px 100px;
    bottom: -50px;
    left: calc(50% - 100px);
  }
  #price .price_title .price_inner {
    padding: 20px 40px 15px;
    margin: 30px auto 10px;
  }
  #price .price_title .price_inner img {
    top: 10px;
    right: 20px;
  }
  #price .price_title .price_inner ul {
    width: 680px;
  }
  #price .price_title .price_inner li {
    margin: 1rem;
  }
#price .price_title .note {margin-left: 1rem}
}
@media screen and (max-width:500px){/*SP*/
#price .price_title {
  padding: 1rem 0;
  margin-bottom: 2rem;
  }
  #price .price_title::after {
    border-width: 1.5rem 3rem 0px 3rem;
    bottom: -1.5rem;
    left: calc(50% - 3rem);
  }
  #price .price_title .price_inner {
    padding: 0.5rem 22% 0.5rem 1.5rem ;
    margin: 0.5rem 0;
  }
  #price .price_title .price_inner img {
    width: 25%;
    bottom: 0px;
    right: 3px;
  }
  #price .price_title .price_inner ul {
  }
  #price .price_title .price_inner li {
    margin: 0.5rem;
  }
}


/***サービス***********/
#price .service {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#price .service li {
  background: var(--color_red);
  border-color: var(--color_red);
  text-align: center;
  
  font-weight: bold;
}
#price .service li .title {
  background: var(--color_white);
  color: var(--color_red);
  font-size: var(--fs_32);
  border-radius: 2em;
}
#price .service li .price {
  color: var(--color_white);
  margin: 0;
}
@media screen and (min-width:501px){/*PC*/
  #price .service li {
    width: calc((100% - 30px) / 3);
    padding: 10px;
  }
  #price .service li:nth-child(n+4) {margin-top: 15px;}
  #price .service li .title {margin: 10px 0;}
}
@media screen and (max-width:500px){/*SP*/
  #price .service li {
    width: calc((100% - 10px) / 2);
    padding: 0.5rem;
  }
  #price .service li:nth-child(n+3) {margin-top: 10px;}
  #price .service li .title {
    margin: 0.5rem 0;
    font-size: 4.5vw;
    padding-top: 0.2em;
  }
}


/***支払い方法***********/
#shiharai ul.shiharai > li,
#shiharai ul.shiharai > li .title {
display: flex;
  flex-direction: column;
  justify-content: center;
}
#shiharai ul.shiharai > li {
  position: relative;
  background: var(--color_orange);
  padding: 0 10px 10px;
}
#shiharai ul.shiharai > li:nth-child(n+2)::before {
  content: "※";
  color: var(--color_white);
  position: absolute;
  top: 5px;
  right: 5px;
}
#shiharai ul.shiharai > li .title {
  text-align: center;
  line-height: 1.2;
  font-size: var(--fs_32);
  color: var(--color_white);
  font-weight: bold;
}
#shiharai ul.shiharai > li .title span {
  font-weight: normal;
  font-size: initial;
  margin-top: 0.3rem;
}
#shiharai ul.shiharai > li .img {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  background: var(--color_white);
  padding: 10px;
}
#shiharai ul.shiharai > li img {max-width: 80%}
#shiharai ul.shiharai > li .card {
  display: flex;
  justify-content: center;
}
#shiharai ul.shiharai > li .np {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
#shiharai ul.shiharai > li .np li {
  background: var(--color_pink);
  color: var(--color_white);
  text-align: center;  
}
#shiharai .note {font-size: initial;}
#shiharai ul.shiharai > li .score span{ font-size: 12px;margin-top: 7px;}


@media screen and (min-width:501px){/*PC*/
  #shiharai {
    margin-top: 50px;
    padding-top: 30px;
  }
  #shiharai ul.shiharai {
    display: flex;
    justify-content: space-between;
    margin: 30px 0 10px;
  }
  #shiharai ul.shiharai > li {
    width: calc((100% - 20px)/ 3);
  }
  #shiharai ul.shiharai > li .title {
    height: 2em;
  }
  #shiharai ul.shiharai > li .card img{
    width: 30%;
    margin: 0 1%;
  }
  #shiharai ul.shiharai > li .qr img {
    height: 40px;
    width: auto;
    margin: 2px 4px;
  }
  #shiharai ul.shiharai > li .np li {flex-grow: 1;}
  #shiharai ul.shiharai > li .np li:nth-child(n+2) {margin-left: 5px}
}
@media screen and (max-width:500px){/*SP*/
  #shiharai {
    margin: 2rem 0 0;
    padding: 1rem 0;
  }
  #shiharai ul.shiharai {margin: 1rem 0;}
  #shiharai ul.shiharai > li:nth-child(n+2) {margin-top: 10px;}
  #shiharai ul.shiharai > li .title {padding: 0.5rem 0}
  #shiharai ul.shiharai > li img { max-width: 60%}
  #shiharai ul.shiharai > li .card img {
    width: 18%;
    margin: 1rem 1%;
  }
#shiharai ul.shiharai > li .np {
  flex-direction: column;
  width: 6rem;
}
  #shiharai ul.shiharai > li .np li:nth-child(n+2) {margin-top: 1px}
  #shiharai ul.shiharai > li .score span{width: 100%;text-align: center}

}



/*==========================================================
サービスの流れ
==========================================================*/
#flow ul.flow li {position: relative}
#flow ul.flow figure{
  border: solid 3px var(--color_blue);
  border-radius: 15px;
  overflow: hidden;
}
#flow ul.flow p {margin: 0}
#flow ul.flow .step {
  display: flex;
  margin: 0.5rem 0;
}
#flow ul.flow .step span {
  font-size: var(--fs_24);
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}
#flow ul.flow .step span:nth-child(1) {
  line-height: 1.5em;
  background-image: linear-gradient(to bottom,#0068b7, #2a80eb);
  color: var(--color_white);
  padding: 0 0.75rem;
  border-radius: 2em;
}
#flow ul.flow .step span:nth-child(2) {
  flex-grow: 1;
  color: var(--color_blue);
}
#flow ul.flow li:nth-child(n+2)::before {
  content: "";
  display: block;
  width: 0;height: 0;
  border: solid transparent;
  position: absolute;
}

@media screen and (min-width:501px){/*PC*/
  #flow ul.flow {
    display: flex;
    justify-content: space-between;
  }
  #flow ul.flow li {
    width: calc((100% - 90px) / 4);
    margin-top: 2rem;
  }
#flow ul.flow li:nth-child(n+2)::before {
    border-left-color: var(--color_blue);
    border-width: 30px 0px 30px 20px;
    top: 45px;
    left: -25px;
  }
}
@media screen and (max-width:500px){/*SP*/
  #flow ul.flow li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 2rem;
  }
  #flow ul.flow figure {width:calc(50% - 10px)}
  #flow ul.flow .text {width:  50%}
  #flow ul.flow li:nth-child(n+2)::before {
    border-top-color: var(--color_blue);
    border-width: 1rem 2rem 0 2rem;
    top: -1.5rem;
    left: calc(25% - 2rem);
  }
}




/*==========================================================
鍵のトラブルは不意におきてしまうもの…
==========================================================*/
#trouble h2 {
  background: var(--color_light_pink);
  color: var(--color_white);
  border-radius: 50%;
  padding: 1em 0;
}
#trouble .trouble {
  position: relative;
}
#trouble .trouble .user_img {
  position: absolute;
}
#trouble .trouble ul{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#trouble .trouble ul li {
  border: solid 3px #0075a9;
  background: #dbf8fa;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#trouble .trouble ul li .title {
  font-size: var(--fs_32);
  font-weight: bold;
  color: #535353;
  margin-bottom: 1.5rem;
}
@media screen and (min-width:501px){/*PC*/
  #trouble h2 {
    padding-left: 120px;
    margin: 20px 70px 40px;}
  #trouble .trouble {width: 820px;margin: auto}
  #trouble .trouble .user_img {
    top: -357px;
    left: 60px;
  }
  #trouble .trouble ul li {
    width: 400px;
    border-radius: 15px;
    margin-top: 20px;
    padding: 25px 25px 5px;
  }
}
@media screen and (max-width:500px){/*SP*/
  #trouble h2 {
    padding-left: 17vw;
  }
  #trouble .trouble .user_img {
    top: calc(-45vw + 10px);
    left: 0px;
  }
  #trouble .trouble .user_img  img{height: 45vw;width: auto}
  #trouble .trouble ul li {
    width: calc((100% - 10px)/ 2);
    border-radius: 10px;
    margin-top: 10px;
    padding: 0.5rem;
    text-align: center;
  }
}




/*==========================================================
どんな鍵のトラブルでもキーレスキューサービスにお任せください！
==========================================================*/
#omakase {color:var(--color_white); }
#omakase::before,
#omakase::after{
  content: "";
  display: block;
  width: 100%;
  clip-path: polygon(0 0, 50% 100%, 100% 0%);
  position: absolute;
  left: 0;right: 0;
  z-index: 2;
}
#omakase::before {background-color: var(--color_white);}
#omakase::after {background-color: #2b80ec;}
#omakase .inner * {
  position: relative;
  z-index: 10;
}
#omakase .inner .staff_img {
  position: absolute;
  right: 0;
  z-index: 5;
}
#omakase ul {
  display: flex;
  justify-content: space-between;
}
#omakase ul li {
  background: #ffde00;
  color: #333333;
  text-align: center;
  font-weight: bold;
  line-height: 1;
  padding: 0.5em 0 0.4em;
}
#omakase h2 {
  text-align: left;

  line-height: 1.35;
}
#omakase .benefit {
  display: flex;
  justify-content:space-around;
}
@media screen and (min-width:501px){/*PC*/
  #omakase {
    padding-top: 100px;
  }
  #omakase::before,
  #omakase::after{
    height:70px;
  }
  #omakase::before {top: 0}
  #omakase::after {bottom: -70px}
  #omakase .inner .staff_img {top: -100px}
  #omakase ul {width: 700px;}
  #omakase ul li {
    width: 340px;
    font-size: var(--fs_40);
    border-radius: 1rem;
  }
  #omakase h2 {
    font-size: var(--fs_60);
    margin: 30px 0 10px;
  }
  #omakase .benefit {margin: 0 50px 30px}
}
@media screen and (max-width:500px){/*SP*/
  #omakase {padding: 2rem 0 1rem}
  #omakase::before,
  #omakase::after{
    height: 1.5rem;
  }
  #omakase::before {top: 0}
  #omakase::after {bottom: -1.5rem}
  #omakase .inner .staff_img {
    width: 25%;
    top: -3rem;
  }
  #omakase .benefit img {width: 22%;}
  #omakase ul {width: 80%;}
  #omakase ul li {
    flex-grow: 1;
    font-size: 4.5vw;
    border-radius: 0.4em;
  }
  #omakase ul li:first-of-type {margin-right: 5px}
  #omakase h2 {
    font-size: 7vw;
    margin: 0.5rem 0;
  }
  #omakase .benefit {margin: 0 0 1rem}
}




/*==========================================================
お客様の声
==========================================================*/
#voice ul.voice li {
  border: solid 3px var(--color_orange);
  background: var(--color_white);
}
#voice ul.voice li figure span.img {
  display: block;
  background: #facd89;
  border-radius: 50%;
  line-height: 0;
  overflow: hidden;
}
#voice ul.voice li figure figcaption {
  text-align: center;
  font-weight: bold;
  color: #555555;
  margin-top: 0.5rem;
}
#voice ul.voice li .title {
  font-size: var(--fs_24);
  color: var(--color_orange);
  font-weight: bold;
  text-align: center;
}

@media screen and (min-width:501px){/*PC*/
  #voice {padding-top: 100px}
  #voice ul.voice {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
  }
  #voice ul.voice li {
    width: calc((100% - 40px) / 3);
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 15px;
    padding: 1.5rem;
  }
  #voice ul.voice li .title {margin: 1rem 0 0;}
  #voice ul.voice li figure figcaption span {margin-left: 0.5em}
}
@media screen and (max-width:500px){/*SP*/
  #voice {padding-top: 2rem}
  #voice ul.voice li {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border-radius: 10px;
    padding: 0.5rem;
    margin-top: 10px;
  }
  #voice ul.voice li .title {
    order: 1;
    width: 100%;
    margin-bottom: 0.5rem;
  }
  #voice ul.voice li figure {
    order: 2;
    width: 7em;
  }
  #voice ul.voice li figure figcaption span {display: block;}
  #voice ul.voice li .text {
    order: 3;
    width: calc(100% - 7.5em);
    margin: 0;
  }
}




/*==========================================================
キーレスキューサービスが安心な理由とは？
==========================================================*/
#why {font-weight: bold;}
#why .why_intro,#why .why_intro figure{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#why .why_intro figure span {
  background: var(--color_white);
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0,117,169,0.5);
}
#why .why_box {
  background: var(--color_white);
  border: solid 5px var(--color_red);
}
#why .why_box .title,#why .why_box .hosyo {
  text-align: center;
}
#why .why_box .title {
  font-size: var(--fs_40);
  color: var(--color_red);
}
@media screen and (min-width:501px){/*PC*/
  #why .why_intro {margin: 40px 0}
  #why .why_intro figure {margin-right: 1rem;}
  #why .why_intro figure span {
    width: 150px;
    margin: 0 1rem;
  }
  #why .why_box {
    width: 800px;
    margin: auto;
    border-radius: 30px;
    padding: 2rem 6rem;
  }
  #why .why_box .hosyo {
    font-size: var(--fs_60);
    margin: 3rem 0 5rem;
  }

}
@media screen and (max-width:500px){/*SP*/
  #why .why_intro  {
    margin: 1rem 0;
  }
  #why .why_intro figure {width: 80px}
  #why .why_intro p {width: calc(100% - 90px)}
  #why .why_intro figure span:first-of-type {display: none}
  #why .why_box {
    border: solid 3px var(--color_red);
    border-radius: 10px;
    padding: 0.75rem;
  }
  #why .why_box .hosyo {
    font-size: var(--fs_50);
    margin: 1rem 0 ;
  }
}




/*==========================================================
よくある質問
==========================================================*/
#faq .faq_title {position: relative}
#faq .faq_title .title_sub {
  font-weight: bold;
  text-align: center
}
#faq .faq_title .staff_img {
  position: absolute;
}
#faq dl {
  background: var(--color_white);
  border: solid 2px var(--color_orange);
    margin: 10px auto 0;
    overflow: hidden;
  }

#faq dl .faq_q {
  position: relative;
  background: var(--color_orange);
  color: var(--color_white);
  font-weight: bold;
}
#faq dl .faq_q::after {
  content: "＋";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1em;
  display: flex;
  align-items: center;
}
#faq dl .faq_q.open::after {
  content: "－";
}
#faq dl .faq_a {
  position: relative;
  padding: 1em;
  display: none;
}

@media screen and (min-width:501px){/*PC*/
  #faq .faq_title .title_sub {
    font-size: var(--fs_24);
    margin: 1.5rem 0 3rem;
  }
  #faq .faq_title .staff_img {
    top: -40px;
    left: 30px;
  }
  #faq dl {
    width: 860px;
    border-radius: 15px;
  }
  #faq dl .faq_q {
    text-align: center;
    padding: 1em;
  }
  #faq dl .faq_a {
    padding: 1em 1.5em;
  }
}
@media screen and (max-width:500px){/*SP*/
  #faq .faq_title h2 {padding-left: 2rem;}
  #faq .faq_title .title_sub {
    margin: 1rem 0;
  }
  #faq .faq_title .staff_img {
    height: 35vw;
    width: auto;
    top: -1.25rem;
    left: 0;
  }
  #faq dl {
    border-radius: 10px;
  }
  #faq dl .faq_q {
    padding: 1em 2em 1em 1em;
    line-height: 1.5;
  }
  #faq dl .faq_q::after {right: 0.5em;}
  #faq dl .faq_a {
    padding: 1em;
  }
}






/*----------------------------------------------
クーポン利用で～　2024/12/19追加
-----------------------------------------------*/
.use_coupon {margin: 10px 0}
.use_coupon s,.use_coupon .use {display: block}
.use_coupon s {  color: var(--color_white);}
.use_coupon .use {
  margin: 0 5px 10px;
  padding: 5px 0;
  border-bottom: dotted 2px var(--color_yellow);
  color: var(--color_yellow);
}

@media screen and (min-width:501px){/*PC*/
  .use_coupon .use { font-size: 24px;}
}
@media screen and (max-width:500px){/*SP*/
  .use_coupon s {font-size: 2.5vw}
}




