@charset "UTF-8";

/* 共通部分 */
html {
  font-size: 100%;}


body{
    

      font-family: noto-sans-jp;
      line-height:1.8;
      color: #110101;
      box-sizing: border-box;
      margin: 0;
      font-size: 18px;
      width: auto;
    
}
main {
  margin-top:calc(13vh + 20px);
  /* ヘッダーの高さ */
  margin-bottom:calc(10vh + 20px);
  /* フッターの高さ */
}

a{
  text-decoration: none;
  color: #000;
}


img{
  max-width: 100%;
  vertical-align: bottom;
  line-height: 0;
}

/* 追加 hタグのスペース除去 */
h1,h2,h3,h4,h5{
  margin: 0;
  padding: 0;
}


/* 背景 */
.bg_ivory{
  background: #FBFBEF;
  opacity: 1;
  width: 100%;
  height: 100%;
  text-align: center;
  box-sizing: border-box;
  padding: 5%;
  }

.bg_lightblue{
    background: rgba(224,255,255,0.3);
    width: 100%;
    height: 100%;
   text-align: center;
   box-sizing: border-box;
   padding: 5%;
  }

  .bg_navy{
      background: #37538C;
      /* background-size: cover; */
      width: 100%;
      height: 100%;
      /* position: absolute;
      background-position: top; */
     text-align: center;
     box-sizing: border-box;
      }
  

/* フォント */
.noto-sans-jp {
  /* ゴシック体 サンセリフ書体*/
  font-family: "Noto Sans JP",sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.noto-serif-jp {
  /* 明朝体　　セリフ書体 */
  font-family: "Noto Serif JP",serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.m-plus-rounded-1c-regular {
  /* Mplus */
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 400;
  font-style: normal;
}


/* 文字色 */
.orange{
  color: #FFA500;
}
.white {
   color: #fff;
}

.red
{
  color: #FA5858;
}
.black{
  color: #000;
}

.box {
	text-align: center;
	position: relative;
}

/* 文字の装飾 */
.mark{
background: linear-gradient(transparent 70%, #fff799 70%);
font-weight: bold;
 }

 .bold{
  font-weight: bold;
  font-size: larger;
 }
 .large{
  font-size: 1.4em;
 }
 
 .dots {
  background-image: radial-gradient(circle at center, white 20%, transparent 20%); /* 点の色とサイズ調整 */
  background-position: top right; /* 点の位置 */
  background-repeat: repeat-x; /* 横方向に繰り返し */
  background-size: 1.1em 0.3em; /* 点の間隔とサイズ調整 */
  padding-top: .6em; /* 縦方向の位置調整 */
  /* 追加 */
  font-size: 2rem;
}
.chiisaku{
/* 小さく */
transform: scale(0.8);
}


/* 文字と画像の配置 */
.left{
  text-align: left;
}

.right{
  text-align: right;
  margin-right: 5%;
}
.center{
  text-align: center;
}

.margin{
  margin-left: 10%;
  margin-right: 10%;
}

.margin_bottom{
  margin-bottom: 15px;
}
 /* 反転 */
 .invert{
  display: inline-block;
  transform: scale(-1, 1);
}
 /* 見出し */
 .box_heading{
  display: block;
  align-items: center;
  padding: 5%;
  background: #ffffff;
  border-radius: 6px;
  position: relative;
  flex-direction: column;
  box-shadow: 2px 2px 4px gray;
  opacity: 1;
  line-height: 1.3;
  margin: 0 auto;
  box-sizing: border-box;
  max-width: 90%;
  }      


.box_heading .orange{
  color: #FE9A2E;
  text-shadow:
  1px 1px 0px #E6E6E6, -1px -1px 0px #E6E6E6,
 -1px 1px 0px #E6E6E6,  1px -1px 0px #E6E6E6,
  1px 0px 0px #E6E6E6, -1px  0px 0px #E6E6E6,
  0px 1px 0px #E6E6E6,  0px -1px 0px #E6E6E6;
  text-transform: uppercase;
  font-size: 1.8rem;
  opacity: 1;
} 
.box_heading .black{
  color: #000;
  font-size: 1.3rem;
  opacity: 1;
} 

.tenbinmidashi{
  background-image: url(./img/img/tenbin.png);
  background-size: cover;
  color: white;
  padding: 5% 1%;
  text-align: center;
  /* margin-top: -5%;
  margin-left: -5%;
  margin-right: -5%; */
}




/* モバイルファースト */
@media screen and (max-width: 598px){
.pconly{
  display: none;
 }
}
@media screen and (min-width: 599px){
.phoneonly{
  display: none;
 }
}

/* 【ヘッダー】*/

.header{
  background: #ffffff;
   margin-top: 0;
   /* padding: 10px; */
   width: 100%;
   position: fixed;
   top: 0;
   left: 0;
  /* 追加 */
  z-index: 1000;/* 数字が大きい程手前 */
}
/* ヘッダー大きさ */

  .header .container
  {
      height: 13vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 7px;
  }


/* ロゴの大きさ */
.area_logo_header {
  width:clamp(13.75rem, 6.703rem + 18.824vw, 18.75rem);
}

.area_logo_header .logo_img img{
  vertical-align: top;
  transform: scale(0.95);
  }

 /* ヘッダー右 */
.area_nav_header{
  /* margin-left: auto; */
  width: 40%;
}

/* リストナビ */
/* .list_nav_header{
  display: flex;
  align-items: center;
  List-style: none;
} */


.area_nav_header a{
  font: 12px noto-sans-jp;
  }
  
.mark_header{
  background: linear-gradient(transparent 70%, #fff799 70%);
font-weight: bold;
}
/* ボタン */


.btn_contact{
    display: flex;
    flex-direction:column;
    align-items: center;
    /* height: 6.4vh; */
    color: #14085F;
    /* width: 40vw; */
    border-radius: 5px;
    padding: 3%;
    vertical-align: bottom; 
    White-space: nowrap;
    border: 1px solid #333;

    }

/* トップ画下　お悩み　縦画面のみ表示 */
.bg_onayami{
  background-image: url(./img/bg/background_onayami_mobile.jpg);
  background-size: cover;
  /* お悩みエリア全体を覆う */
  padding: 20px 40px;
}

.box_onayami {
  /* position: absolute;
    top: 55%;
    left: 50%;
    -ms-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%); */
    display: block;    /* 追加 */
    margin:0;
    padding:2% 8% ;
    background-color: #ffffff;
    border-radius: 6px;
    opacity: 1;
  }

  .box_onayami .size{
    width: 70%;
    height: 60%;
    }
  
  .message_onayami{
    /* position: absolute;絶対配置 */
    font-weight: bold; /*太字に*/
    font-size: 1.2rem;
    White-space: nowrap;
    color: white;/*文字は白に*/
    /* top: 15%;
    left: 50%; */
    /* -ms-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%); */
    display: block;    /* 追加 */
    margin:0 0 10px 0;
    /* タイトルと下のボックスの空き */
    text-align: center;
    /* 中央寄せ */
    padding:0;
    
  }
.line {
  margin: 4px 0;  /* お悩みの各行の空き */
  border-bottom: #000 1px solid;/* 下の線アンダーライン */
  padding-bottom: 5px;
}

  .list_onayami{

      List-style: none;
    White-space: nowrap;
    font-size: 1.2rem;
     }

 /* 問い合わせフォーム端に二人 */
    .img_contact_mobile{
        padding-top: 0;
        position: relative;
        max-width: 100%;
        margin: 0 auto;
        display: block;
        text-align: center;
    }

  /* ★モバイルバナー */
.banner_mobile{
    display: block;
}

.banner_mobile .bg{
    background:rgba(224,255,255,0.3);
    background-size: cover;
    width: 100%;
    height: 100%;
    /* position: absolute; */
    background-position: top;
  }


.banner_mobile .img {
    padding: 5% 5%;
    width: 90%;
    position:relative;
}

.banner_mobile .btn{
  flex-direction:column;
  display: block;
  }

.banner_mobile .btn .text_btn{
  display: flex;
  flex-direction:column;
  align-items: center;
  /* 追加12-3 */
  gap: 5px;
  width: 70vw;
  margin: 0 auto;
  /* height: 11vh; */
  background: #FFA500;
  border-radius: 6px;
  padding: 3%;
  position: relative;
    /*コレ*/
    /* left: 15%; */
  /* vertical-align: bottom; */
  White-space: nowrap;  
  /* flex-direction: column; ２回書いている*/
  box-shadow: 2px 2px 4px gray;
  font-weight: bold;
  line-height: 120%;
  font-size: 1rem;
  }

/* 追加12−３ */
.text_btn span{
  display: block;
}

/* ★あなたの悩み */
.img_mw{
  padding-top: 0;

  /* position: relative; */
  /* max-width: 90%;
  margin: 0 auto; */
  /* display: column; */
}

.message_midikanahito{
  font-size: 1.3rem;}


  /* ★なぜ弁護士に早く相談した方がいいの？ */

  .message_keijijikennnniha{
   font-size: 1.3rem;
  }

  .comparisonchart{
   position: relative;
   max-width: 90%;
   top: 28%;
   left: 5%;
   display: column;
   margin-bottom: 25px;
  }

.img_baloon_syobun{
   padding: 0 20px;
   position: relative;
   text-align: center;
  }


  /* ★西船橋ゴール法律事務所が選ばれる5つの理由 */
  /* 追加12/3 */
  .tuyomi {
    width: 80%;
    margin: 0 auto;
    text-align: center; 
  }

  .tuyomi .black{
    font-size: 1.3rem;
   }

  .tuyomi .subtitle{
    white-space: nowrap;
   }

  .tuyomi .orange{
    font-size: 1.8rem;
    white-space: nowrap;
    color: #FFA500;
   }

  .img_kokogaanshin{
      padding-top: 0;
      position: relative;
      max-width: 60%;
      left: 38%;
      box-sizing: border-box;
   }
  
  .ryuu {
    background-color:#FBFBEF;
    padding:30px;
    border-radius: 30px;
    margin: 0 0 5% 0;
  }

  .ryuu h3 {
    font-size: 1.25rem;
    border-bottom: #FE9A2E 5px solid;
    /* display: inline-block;    下線が文字の幅だけになる */
    width: fit-content;    /* 内容物と同じサイズにwidthを設定 */
    margin: 0 auto 20px auto;    /* 左右がautoで下に20px開ける */
    background-color: white;
    padding: 5px;
  }

  .ryuu img {
    width: 100%;
  }

  /* 相談しやすい弁護士 */
  .position_soudanshiyasuibengoshi{
    padding-top: 0;
    position: relative;
    max-width: 90%;
    margin: 0 auto;
    /* ブラウザのセンターに */
    /* left: 10%; */
   }

/* ★解決事例 */
.kaiketsujirei{
   font-size: 2rem;
   padding-top: 3%;
   height: 8%;
   width: 100%;
  }

.kaiketu-box {
  width: 90%;
  margin: 0 auto;
  padding: 0 0 20px;
 background-color: white;
 box-shadow: 2px 2px 4px gray;
 border-radius: 10px;
}

.jirei-title {
  color: white;
  font-size: 1rem;
  /* display: flex;
  justify-content:space-between; */
  /* 横並び処理 */
  background-color: #37538C;
  position: relative;
  padding: 10px;
  /* 基準位置 */
  border-radius: 10px;
  box-sizing: border-box;
  text-align: left;
  /* 追加 */
  display: flex;

}
.jirei-title h3 span{
  font-size: 0.9rem;
  display: block;
  text-align: right;

}
.jirei-title img {
  width: 70px;
  height: 70px;
  margin-right: 10px;
  /* position: absolute;
  left:10px;
  top:7px; */
}

.kaiketu-title {
  font-size: 1.2rem;
  color: black;
  text-align: left;
  line-height: 1.6;
  font-weight: bold;
  padding-left: 2.6rem;
  background-image: url(./img/ico/point.png);
  background-size: 2rem;
  background-repeat: no-repeat;
  width: 80%;
  margin: 10px auto;

}

.kaiketu-title .mark{
  background: linear-gradient(transparent 70%, #fff799 70%);
}


.kaiketu-title img {
  height: 1.8rem;
  display: inline-block;
  max-width: 100%;
  padding-right: 10px;

}
summary {
  display: block;
}
summary::-webkit-details-marker {
  /* Safariで表示されるデフォルトの三角形アイコンを消します */
  display: none;
}
.kaihei{
  display: block;
  text-align: center;
  transition: all 0.5s;
}

.kaihei-moji{
white-space: nowrap;
}

details {
  position: relative;
}
.kaihei-all{
  position: absolute;
  left: 50%;
  bottom: -50px;
  transform: translate(-50%);
  display: flex;
  justify-content: center;
}
details[open] .kaihei {
  transform: rotate(180deg);
}
details .kaihei-moji::after {
  content: "解決結果を見る";
}
details[open] .kaihei-moji::after {
  content: "解決結果を閉じる";
}
dl {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border: 1px solid #333;
  /* padding: 10px; */
  max-width: 90%;
  margin: 0 20px 0 20px;
  border-radius: 5px;
  text-align: left;
  flex-direction: column;
  padding: 10px;
}
dt {
  border: 1px solid #333;
  padding: 5px 15px;
  white-space:nowrap;
  max-width: 20%;
  font-weight: bold;
  border-radius: 9999px;  /* 角丸を綺麗な丸に */
  /* margin-top: 5px;
  margin-left: 10px; */
  }

.soudango{
  background-color: orange;
  color: white;
  border: none;
}

dd {
  /* margin: 10px; */
  margin: 0;
  line-height: 1.8;
}


/* ★解決事例下のメッセージ */

.margin_message_kaiketsujirei{
  margin-top: 8%;
  font-size: 1.3rem;
  line-height: 1.4;
 }

/* 二人の画像と吹き出し */
.img_migarawokaihou{
    padding-top: 0;
    position: relative;
    max-width: 100%;
    margin: 0 auto;
  }

/* ★お客様の声 */
.img_kansyanokoe{
    position: absolute;
    right: -20px;
    bottom:-70px;
    width: 40%;    /* ラベルの大きさ */

}
/* ラベルがあるタイトルにだけつける */
.label-icon {
  margin-bottom: 70px;
}


.text_fuanwokakaeteiru{
 font-size: larger;
}

.text_message_okyakusamanokoe{
 font-size: 1.2rem;
}

.text_message_shinmininatte{
  font-size: 1.2rem;
  line-height: 1.3;
  }

  .kanshanokoe {
    background-color:#FBFBEF;
    padding:13px;
    border-radius: 10px;
    margin: 0 0 5% 0;
    position: relative;
    padding: 5%;
  }
  .kanshanokoe .area_title {
    height: 13vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 10px 20px 10px;
  }

  .kanshanokoe img {
    width: auto;
  }

  .kanshanokoe h3 {
    font-size: 1.5rem;
    white-space: nowrap;
    display: inline-block;
  }

 .kanshanokoe p{
  text-align: left;
 }
 





  /* ★弁護士紹介 */
  .title_bengoshisyokai{
    font-size: 2rem;
    text-align:center;
  }

 .bengoshi{
  background-color:#FBFBEF;
  padding:13px;
  border-radius: 10px;
  margin: 0 0 5% 0;
  position: relative;
  padding: 3%;
  box-sizing: border-box;
  box-shadow: 2px 2px 4px gray;
  border: #F3F781 1px solid;
 }

 .bengoshi_name{
  display: flex;

  box-sizing: border-box;
  align-items: flex-start;
 }
 .bengoshi_photo {
  width:30%;  /* 追加変更12-22 */
  max-width: 150px; /* 追加変更12-22 */
 }

 /* 追加変更12-22 弁護士さんの画像を500px ぐらいの横サイズで作っていただけると多分これはいらない*/
 .bengoshi_photo img {
  width: 100%;
 }
 .rightbox{
  display: block;
  margin-left: 10px;
  box-sizing: border-box;
  width: 70%;  /* 追記12-22 */
 }
 .rightbox .daihyobengoshi{
 font-size: 1.5rem;
 }

 .rightbox .name{
  font-size: 1.6rem;
  }

 /* .bengoshi img{
  width: 350px;
 } */
 .rightbox p{
  display: inline;
  box-sizing: border-box;
 }

 .profilebox{
  background-color: white;
  border-radius: 10px;
  padding: 5%;
 }



  /* ★無料相談～ご依頼後の流れ */

  .nagare {
    background-color:#ffffff;
    padding-bottom: 2%;
    border-radius: 10px;
    margin: 0 0 5% 0;
    position: relative;
    text-align: center;
    box-shadow: 2px 2px 4px gray;
  
  }

  .balloon-bottom{
    position: relative;
    padding: 10px;
    background-color: #37538C;
    margin-bottom: 1em;
    color: white;
    font-size: 1.4rem;
    border-radius: 10px;
    text-align: left;
  }
  .balloon-bottom::before{
    content: '';
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    left: 20px;
    bottom: -14px;    /* ちょっとだけ食い込ませる */
    border-top: 15px solid #37538C;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
  }

  .nagare h4{
    margin: 0 auto 20px auto;
    font-size: 1.3rem;
    border-bottom: #FE9A2E 5px solid;
    /* display: inline-block;    下線が文字の幅だけになる */
    width: fit-content;    /* 内容物と同じサイズにwidthを設定 */
  }

  .nagare img{
    width: 90%;
    margin-bottom: 10px;
  }

  .nagare p{
    margin: 0 10% 10% 10%;
    text-align: left;
  }

  .img_nagare{

     margin: 0 auto;
     max-width: 100%;

  }



/* ★よくある質問 */

.title_yokuarushitsumon{
  width: 100%;
  vertical-align: bottom;
  line-height: 0;
  background-size:100% auto;
  background-position: center;
}

/* FAQ */
.qa-1 {
    max-width: 80%;
    margin-bottom: 10%;
    border: none;
    border-radius: 5px;
    box-shadow: 0 4px 4px rgb(0 0 0 / 2%), 0 2px 3px -2px rgba(0 0 0 / 5%);
    background-color: #fff;
    margin-left: 10%;
}

.qa-1 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em 1em 3em;
    color: #333333;
    cursor: pointer;
    text-align: left;
}

.qa-1 summary::before,
.qa-1 p::before {
    position: absolute;
    left: 1em;
    font-weight: 600;
    font-size: 1.3rem;
}

.qa-1 summary::before {
    color: #000;
    content: "Q";
}

.qa-1 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #333333b3;
    border-right: 3px solid #333333b3;
    content: '';
    transition: transform .5s;    /* アニメーション */
}

.qa-1[open] summary::after {
    transform: rotate(225deg);
}

.qa-1 p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 3em 1.5em;
    color: #333;
    transition: transform .5s, opacity .5s;
}

.qa-1[open] p {
    transform: none;
    opacity: 1;
    text-align: left;
}

.qa-1 p::before {
    color: #FA5858;
    line-height: 1.2;
    content: "A";
}

.img_hokanimoshitsumongaareba{

    padding-top: 0;
    position: relative;
    max-width: 80%;
    margin: 0 auto;;

}

/* 事務所紹介 */
.jimusyosyokai {
  background-color:#ffffff;
  padding:13px;
  border-radius: 10px;
  margin: 0 0 5% 0;
  position: relative;
  padding: 7%;
  text-align: center;
  box-shadow: 2px 2px 4px gray;
}

.jimusyosyokai h3{
  padding: 3% 6%;
  margin: 0 auto 20px auto;
  border: solid 2px #000000;
  font-size: 1.25rem;
  border-radius: 5%;
  width: fit-content;
}

.jimusyosyokai img{
  width: 100%;
}

.jimusyosyokai p{
  text-align: left;
  display: inline-block;
}

/* 弁護士事務所紹介 */
/* googlemap のサイズ指定 */
.jimusyosyokai iframe {
  width: 100%;
  aspect-ratio: 4/3;
}

/* ★弁護士費用 */
.text_message_bengoshihiyou{
  font-size: 1.2rem;
  }

.img_ryoukinhyou{
  max-width: 80%;
  vertical-align: bottom;
  line-height: 0;
  margin-left: 10%;
}

.text_message_bengoshihiyou{
  font-size: 1.1rem;
  }

  table th {/*table内のthに対して*/
    padding: 10px;/*上下左右10pxずつ*/
    background: #FBFBEF;
    text-align: center;
    width: 55px;
    font-weight: bold;
    white-space: nowrap;
  }
  
  table td {/*table内のtdに対して*/
    padding: 3px 10px;/*上下3pxで左右10px*/
    text-align: left;
    background: #ffffff;
  }
  table {
    border-collapse: collapse;
    width:90%;
    margin: 0 auto
  }

  table th, table td {
    border: solid 1px black;
    /*実線 1px 黒*/
  }

  /* 最後のメッセージ等 */

  /* copyrightのところ */
 .copyright{
  background-color: white;
  font-size: small;
  text-align: center;
  margin: 20px 0 0 0;
  width: 100%;
  box-sizing: border-box;
 }
  

 /* フッター */
 .contact_button{
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 10%;
  List-style: none;
  color: #000;
  background:rgba(23,2,2,0.8);
   margin: 0;
   padding: 10px 5px;  /* 黒枠とボタンの隙間  */
   width: 100%;
   position: fixed;
   bottom: 0;
   left: 0;
   white-space: nowrap;
  /* 追加 */
  z-index: 1000;/* 数字が大きい程手前 */
  box-sizing: border-box;
  font-size: 0.7rem;
  text-align: center;
  column-gap: 5px;
 }

 .tel_btn{
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#f1e767+0,feb645+100;Yellow+3D */
background: linear-gradient(to bottom,  #f1e767 0%,#feb645 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

  padding: 3% 4%;
  border-radius: 5px;
  box-sizing: border-box;
  text-align: center;
  flex:1;  /* 割合１のサイズ */

 }

 .mail_btn{
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#87e0fd+0,53cbf1+40,05abe0+100;Blue+3D+%23+16 */
background: linear-gradient(to bottom,  #87e0fd 0%,#53cbf1 40%,#05abe0 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

  padding: 3% 3%;
  border-radius: 5px;
  box-sizing: border-box;
  text-align: center;
  /* line-height:1.2; */
  flex:1;  /* 割合１のサイズ */
 }

 .line_btn{
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#d2ff52+0,91e842+100;Neon */
background: linear-gradient(to bottom,  #d2ff52 0%,#91e842 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */

  
    padding: 3% 3%;
    border-radius: 5px;
    box-sizing: border-box;
    text-align: center;
    /* line-height:1.2; */
    flex:1;  /* 割合１のサイズ */
   }




/* タブレット用 */
@media screen and (min-width: 599px) {

  /* ★あなたの悩み、相談してみませんか*/
  .position_mw{
    display: flex; /* 横並びにする */
    justify-content: space-around;    /* 均等揃え左右にスペースが空く */

    row-gap: 100px;/* 縦方向のスペース */

    flex-direction: column;   /* 縦並びにする */

    margin: 80px 0;
  }


}


/* パソコン用 */
@media screen and (min-width: 1024px) {



    /* 文字の装飾や配置 */
    .left{
      /* PCのみ左寄せを打ち消す */
    text-align: center;
    }





  /*PCヘッダー */
  /* .area_logo_header {
    width: 20%;
  } */

  .btn_contact{
    display: flex;
    flex-direction:column;
    align-items: center;
    /* height: 6.4vh; */
    color: #14085F;
    /* width: 40vw; */
    border-radius: 5px;
    padding: 2%;
    max-width: 50%;
    vertical-align: bottom; 
    White-space: nowrap;
    border: 1px solid #333;
    
    }
  .bg_onayami{
    display: none;
  }



/* PC見出し */
.box_heading{
  display: block;
  align-items: center;
  padding: 2%;
  background: #ffffff;
  border-radius: 6px;
  position: relative;
  flex-direction: column;
  box-shadow: 2px 2px 4px gray;
  opacity: 1;
  line-height: 1.3;
  margin: 0 auto;
  box-sizing: border-box;
  max-width: 50%;
  } 

  /* 問い合わせフォームPC */
  .banner_mobile .btn .text_btn{
    display: flex;
    flex-direction:column;
    align-items: center;
    /* 追加12-3 */
    gap: 5px;
    max-width: 30vw;
    margin: 0 auto;
    /* height: 11vh; */
    background: #FFA500;
    border-radius: 6px;
    padding: 1%;
    position: relative;
      /*コレ*/
      /* left: 15%; */
    /* vertical-align: bottom; */
    White-space: nowrap;  
    /* flex-direction: column; ２回書いている*/
    box-shadow: 2px 2px 4px gray;
    font-weight: bold;
    line-height: 120%;
    font-size: 1rem;
    }
  /* あなたの悩みPC */
  .position_mw{
    display: flex; /* 横並びにする */
    justify-content: space-around;    /* 均等揃え左右にスペースが空く */
    gap: 5%;    /* ギャップが有る */
    flex-direction:row;   /* 横並びにする      */

    /* column=>水平方向　　row;=>垂直方向 */
    margin: 80px 0;

  }
  /* .img_mw{
    padding-top: 0;
    display: flex;
    box-sizing: border-box; 
    width: 80%;
  } */


  /* 比較表PC */
  .comparisonchart{
    position: relative;
    max-width: 60%;
    top: 28%;
    left: 20%;
    display: column;
    margin-bottom: 25px;
   }

/* 選ばれる理由PC */


.position_soudanshiyasuibengoshi{
  padding-top: 0;
  position: relative;
  max-width: 90%;
  margin: 0 auto;
  /* ブラウザのセンターに */
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
 }

 .ryuu {
  background-color:#FBFBEF;
  padding:30px;
  border-radius: 30px;
  width: 30%;
}



/* 解決事例PC */
.kaiketu-box {
  width: 50%;
  margin: 0 auto;
  padding: 0 0 20px;
 background-color: white;
 box-shadow: 2px 2px 4px gray;
 border-radius: 10px;
}


/* 感謝の声PC */
.img_kansyanokoe{
  position: absolute;
  right: -20px;
  bottom:-70px;
  width: 30%;    /* ラベルの大きさ */
}

.kanshanokoe {
  background-color:#FBFBEF;
  padding:13px;
  border-radius: 10px;
  margin: 0 0 5% 0;
  position: relative;
  padding: 5%;
  width: 30%;
}

/* 弁護士紹介PC */
.bengoshi{
  background-color:#FBFBEF;
  padding:13px;
  border-radius: 10px;
  margin: 0 0 5% 0;
  position: relative;
  padding: 2%;
  box-sizing: border-box;
  box-shadow: 2px 2px 4px gray;
  border: #F3F781 1px solid;
  width: 45%;
 }

/* 相談から依頼後の流れPC */
.nagare {
  background-color:#ffffff;
  padding-bottom: 2%;
  border-radius: 10px;
  margin: 0 0 5% 0;
  position: relative;
  text-align: center;
  box-shadow: 2px 2px 4px gray;
  width: 40%;
}
/* 事務所案内PC */
.jimusyosyokai {
  background-color:#ffffff;
  padding:13px;
  border-radius: 10px;
  margin: 0 0 5% 0;
  position: relative;
  padding: 7%;
  text-align: center;
  box-shadow: 2px 2px 4px gray;
  width: 30%;
}

/* 弁護士費用PC */
table {
  border-collapse: collapse;
  width:800px;
  margin: 0 auto
}

table th {/*table内のthに対して*/
  padding: 10px;/*上下左右10pxずつ*/
  background: #FBFBEF;
  text-align: center;
  width: 100px;
  font-weight: bold;
}

.img_kokogaanshin{
  padding-top: 0;
  position: relative;
  max-width: 30%;
  left: 60%;
  box-sizing: border-box;
}



}

@media screen and (min-width: 599px){
  .phoneonly{
  display: none;
  }
  }