@charset "UTF-8";
/*===cssのリセット===*/
html,div,span,iframe,h1,h2,h3,h4,h5,h6,p,img,small,strong,ol,ul,li,form,label,table,tbody,tfoot,thead,tr,th,td,footer,header,nav,section {
  font-size: 100%; margin: 0; padding: 0; vertical-align: baseline; border: 0; outline: 0; background: transparent;
}
footer,header,nav,section {
  display: block;
}
nav ul {
  list-style: none;
}
a {
  text-decoration: none; color: #453025;
}
table {
  border-spacing: 0; border-collapse: collapse;
}
ol,ul,li{
  list-style: none;  padding:0;  margin:0;
}
/*===================================*/
/*===clearfix===*/
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
/*===wrap===*/
.wrap {
  overflow: hidden;
}
/*===================================*/
/*===サイト全体の基準となるCSS===*/
html {
    font-size: 16px;
    line-height: 30px;
  }
 @media screen and (max-width:768px){
   html{
     font-size: 14px;
     line-height: 27px;
   }
 }
body {
    font-family: 'メイリオ', 'Meiryo', 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'Noto Sans Japanese', Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    margin: 0;
    padding: 0;
  /*サイトのデフォルトとなる文字の色を指定*/
    color: #2B160B;
  }
/*===================================*/
/*===見出しを全て太字で表示===*/
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}
img {
  max-width: 100%;
  height: auto;
}
/*===================================*/
/*===sp版pc版での表示切り替え===*/
.pc_item{display: block!important;}
.sp_item{display: none!important;}

@media screen and (max-width: 768px){
  .pc_item{display: none!important;}
  .sp_item{display: block!important;}
}
/*===================================*/
/*===全体の幅===*/
.inner{max-width: 1200px; margin: auto;}
@media (max-width: 1200px){
  .inner{width: 98%;}
}
@media (max-width: 768px){
  .inner{width: 95%; max-width: 450px; margin: auto;}
}
/*===================================*/
/*======*/
.center{margin: 0 auto;}

.mt20_10{margin-top: 20px;}
.mt30_20{margin-top: 30px;}
.mt40_30{margin-top: 40px;}
.mt50_30{margin-top: 50px;}
.mt60_50{margin-top: 60px;}
.mt100_50{margin-top: 100px;}

.mb100_50{margin-bottom: 100px;}

@media (max-width: 768px){
.mt20_10{margin-top: 10px;}
.mt30_20{margin-top: 20px;}
.mt40_30{margin-top: 30px;}
.mt50_30{margin-top: 30px;}
.mt60_50{margin-top: 50px;}
.mt100_50{margin-top: 50px;}

.mb100_50{margin-bottom: 50px;}
}
/*===================================*/
/*===ヘッダー===*/
#header{
  background-color: rgb(255,255,255,0.8);
  height: 60px;
  position: fixed;
  z-index: 999;
  width: 100%;
  top: 0;
}
.header{
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  padding-left: 10px;
  box-sizing: border-box;
}
.header_logo{
  margin: 10px 0 0;
  width: 210px;
}
.logo_link{
  display: block;
}
@media (max-width: 768px) {
  #header{
    height: 50px;
  }
  .header_logo{
    position: absolute;
    width: 155px;
    margin: auto;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
  }
}
.header_nav{
  width: 70%;
  margin-left: auto;
}
.header_con{
  display: flex;
}
.header_item{
  width: 100%;
  height: 60px;
  margin: auto 0 auto auto;
  line-height: 60px;
  text-align: center;
  cursor: pointer;
}
.header_link{
  display: block;
}
@media (min-width: 769px) {
  .header_item:hover{
    background-color: #fff;
    transition: .5s;
  }
  .header_drop li {
    height: 0;
    overflow: hidden;
    transition: .5s;
    background-color: rgb(255,255,255,0.8);
  }
  .header_drop:hover > ul > li {
    height: 50px;
    line-height: 50px;
    overflow: visible;
  }
  .header_drop:hover > ul > li:hover{
    background-color: #fff;
  }
}
/*===ハンバーガー===*/
*, *:before, *:after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
/* menu toggle */
#toggle {
  display: none;
}
#toggle:checked ~ .header_menu {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
#toggle:checked ~ .cp_container {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.toggle_mobilebar {
  display: none;
}
@media (max-width: 768px) {
  /* menu */
  .header_menu {
    position: fixed;
    left: -190px;
    overflow-y: hidden;
    width: 190px;
    height: 100%;
    padding: 50px 20px 0 20px;
    background-color: #453025;
  }
  .header_con{
    display: block;
  }
  .header_menu li {
    border-bottom: 1px solid #B9874D;
    line-height: 50px;
  }
  .header_menu li:first-child {
    border-top: 1px solid #B9874D;
  }
  .header_menu a {
    color: #FFF9E0;
  }
  .header_menu a:hover{
    color: #B9874D;
  }
  .header_item{
    height: 50px;
  }
  .header_drop{
    height: 150px;
  }
  .header_drop li:first-child{
    border-top: none;
  }
  .header_drop li:last-child{
    border-bottom: none;
  }
  .header_drop > a,
  .header_drop > p{
    display: none;
  }
  /*=== toggle ===*/
  .toggle_mobilebar {
    display: block;
    z-index: 10;
    position: fixed;
    top: 0;
    left: 0;
    padding: 0 25px;
    height: 50px;
  }
  .toggle_icon {
    display: block;
    position: relative;
    width: 25px;
    height: 100%;
    cursor: pointer;
    -webkit-transition: transform .3s ease-in;
    transition: transform .3s ease-in;
  }
  .toggle_icon > span {
    display: block;
    position: absolute;
    top: 55%;
    margin-top: -4px;
    width: 100%;
    height: 2px;
    border-radius: 1px;
    background-color: #453025;
    -webkit-transition: transform .3s ease;
    transition: transform .3s ease;
  }
  .toggle_icon > span:before,
  .toggle_icon > span:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 1px;
    background-color: #453025;
    -webkit-transition: transform .3s ease-in;
    transition: transform .3s ease-in;
  }
  .toggle_icon > span:before {
    -webkit-transform: translateY(-9px);
    transform: translateY(-9px);
  }
  .toggle_icon > span:after {
    -webkit-transform: translateY(9px);
    transform: translateY(9px);
  }
  #toggle:checked + .toggle_mobilebar .toggle_icon {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  #toggle:checked + .toggle_mobilebar span:before,
  #toggle:checked + .toggle_mobilebar span:after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  #toggle:checked + .toggle_mobilebar span,
  #toggle:checked + .toggle_mobilebar span:after{
    background-color: #B9874D;
  }
  #toggle:checked ~ .header_menu {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  #toggle:checked ~ .cp_container {
    -webkit-transform: translateX(250px);
    transform: translateX(250px);
  }
}
/*===================================*/
/*===メインビジュアル===*/
.top{
  text-align: center;
}
.top_img{
  width: 100%;
  height: 620px;
  object-fit: cover;
}
.down_text{
  margin-top: 10px;
  color: #B9874D;
  font-size: 18px;
  line-height: 21px;
}
@media (max-width: 768px) {
  .top_img{
    height: 200px;
  }
}
/*===================================*/
/*===タイトル===*/
.title_left{
  font-size: 25px;
  position: relative;
  padding-bottom: 15px;
  letter-spacing: .1em;
  display: block;
}
.title_left:before {
  content: '';
  position: absolute;
  width: 70px;
  border-bottom: 4px solid #B9874D;
  bottom: 0;
}
.title_center{
  font-size: 25px;
  position: relative;
  padding-bottom: 15px;
  letter-spacing: .1em;
  text-align: center;
  display: block;
}
.title_center:before {
  content: '';
  position: absolute;
  width: 70px;
  border-bottom: 4px solid #B9874D;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.sub_title{
  font-size: 16px;
  display: block;
}
@media (max-width: 768px) {
  .title_center,
  .title_left{
    font-size: 18px;
    padding-bottom: 10px;
  }
  .title_center:before,
  .title_left:before {
    width: 50px;
    border-bottom: 2px solid #B9874D;
  }
  .sub_title{
    font-size: 14px;
  }
}
/*===================================*/
/*===パンクズ===*/
#pankuzu{
  display: flex;
  margin-top: 5px;
}
#pankuzu li{
  margin-right: 5px;
}
#pankuzu a:hover{
  color: #B9874D;
  border-bottom: 1px solid #B9874D;
}
/*===================================*/
/*===リンクボタン===*/
.link_btn{
  display: block;
  width: 220px;
  height: fit-content;
  color: #7C4709;
  text-align: center;
  letter-spacing: .1em;
  border: 2px solid #7C4709;
  box-sizing: border-box;
  transition: .3s;
  padding: 8px 0;
}
.link_btn:hover{
  background-color: #7C4709;
  color: #fff;
}
@media (max-width: 768px) {
  .link_btn{
    width: 170px;
    padding: 5px 0;
  }
}
/*===================================*/
/*===取り扱い業務===*/
.business_contents{
  display: flex;
  justify-content: space-between;
}
.con_item{
  width: 31%;
}
.con_link{
  position: relative;
  width: 100%;
  height: 150px;
  outline: 2px solid #fff;
  outline-offset: -7px;
}
.con_title{
  font-size: 25px;
  color: #fff;
  letter-spacing: .2em;
  font-weight: normal;
  text-align: center;
  line-height: 150px;
}
.con_link_text{
  position: absolute;
  color: #fff;
  right: 20px;
  bottom: 10px;
}
.con_text{
  margin-top: 15px;
  padding: 0 5px;
}
@media (max-width: 768px) {
  .business_contents{
    display: block;
  }
  .con_item{
    width: auto;
    margin-top: 30px;
  }
  .con_item:last-child{
    margin-right: auto;
  }
  .con_link{
    height: 130px;
  }
  .con_title{
    font-size: 18px;
    line-height: 130px;
  }
}
.generalcivil_bg{
  background: url(../images/index_contents01.jpg) no-repeat;
  background-position: center center;
  background-size: cover;
}
.household_bg{
  background: url(../images/index_contents02.jpg) no-repeat;
  background-position: center center;
  background-size: cover;
}
.criminal_bg{
  background: url(../images/index_contents03.jpg) no-repeat;
  background-position: center center;
  background-size: cover;
}
.con_link:hover{
  opacity: .8;
  transition: .1s;
}
/*===================================*/
/*===事務所について===*/
.office_bg{
  background: url(../images/index_office01.jpg) no-repeat;
  background-position: center center;
  background-size: cover;
  padding-bottom: 30px;
}
.off_item{
  background-color: rgb(255,255,255,0.9);
  padding: 40px 50px;
  display: inline-block;
}
@media (max-width: 768px) {
  .office_bg{
    background: url(../images/index_office_sp01.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
    padding: 30px 0;
  }
  .off_item{
    width: auto;
    padding: 30px 20px;
  }
}
/*===================================*/
/*===お知らせ===*/
.news_list{
  padding: 20px 30px;
  border-top: 2px solid #e0e0e0;
  display: flex;
}
.news_list:last-child{
  border-bottom: 2px solid #e0e0e0;
}
.news_date{
  font-size: 14px;
  font-weight: bold;
  width: 20%;
  min-width: 120px;
  display: block;
}
.news_text{
  width: 80%;
}
@media (max-width: 768px) {
  .news_list{
    padding: 15px 10px;
    display: block;
  }
  .news_date{
    width: auto;
  }
  .news_text{
    width: auto;
  }
}
/*===================================*/
/*===弁護士紹介===*/
.lawyer_bg{
  background: url(../images/index_lawyer01.jpg) no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 50px 7%;
}
.lawyer_item{
  width: 350px;
  margin-left: auto;
}
.lawyer_text{
  width: 370px;
  text-align: center;
  font-size: 25px;
  font-weight: bold;
  background: linear-gradient(transparent 50%, #FFF2C7 50%);
}
@media (max-width: 768px) {
  .lawyer_bg{
    max-width: 450px;
    margin: 0 auto;
    background: none;
    padding: 0;
  }
  .lawyer_img{
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  .lawyer_item{
    margin-top: 30px;
    width: auto;
  }
  .lawyer_text{
    width: 270px;
    text-align: center;
    font-size: 18px;
    margin-right: auto;
    margin-left: auto;
  }
  .lawyer_item .link_btn{
    margin-right: auto;
    margin-left: auto;
  }
}
/*===================================*/
/*===費用・お問い合わせ===*/
.banner{
  display: flex;
  justify-content: space-between;
}
.bnr_link{
  width: 48%;
  text-align: center;
}
.bnr_link a{
  display: block;
  padding: 40px 0;
}
.bnr_title{
  font-size: 25px;
  position: relative;
  padding-bottom: 15px;
  letter-spacing: .1em;
  text-align: center;
  display: block;
  color: #fff;
}
.bnr_title:before {
  content: '';
  position: absolute;
  width: 70px;
  border-bottom: 2px solid #fff;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.bnr_text{
  color: #fff;
  margin-top: 30px;
  line-height: 1rem;
}
@media (max-width: 768px) {
  .banner{
    display: block;
  }
  .bnr_link{
    width: auto;
    margin-top: 20px;
  }
  .bnr_title{
    font-size: 18px;
    padding-bottom: 10px;
  }
  .bnr_title:before {
    width: 50px;
  }
  .bnr_text{
    margin-top: 20px;
  }
}
.attorneysfee_bg{
  background: url(../images/index_cost01.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  transition: .3s;
}
.contact_bg{
  background: url(../images/index_contact01.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  transition: .3s;
}
.bnr_link:hover{
  opacity: .8;
  transition: .3s;
}
/*===================================*/
/*===アクセス===*/
.access iframe{
  width: 100%;
}
.access_text{
  margin-top: 30px;
  text-align: center;
}
@media (max-width: 768px) {
  .access iframe{
    height: 200px;
  }
}
/*===================================*/
/*===フッター===*/
.footer{
  background-color: #453025;
}
.foot_link{
  padding-top: 50px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.foot_link_item{
  line-height: 20px;
  padding: 0 15px;
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
  box-sizing: border-box;
  margin-left: -1px;
  margin-bottom: 15px;
}
.foot_link_item a{
  color: #fff;
  display: block;
  border-bottom: 1px solid transparent;
}
.foot_link_item a:hover{
  border-bottom: 1px solid #fff;
}
.footer_logo{
  margin: 50px auto 0 auto;
  display: block;
  width: 210px;
}
.footer small{
  display: block;
  color: #fff;
  padding: 20px 0 10px 0;
  font-size: 10px;
  text-align: center;
}
@media (max-width: 768px) {
  .foot_link_item{
    width: 50%;
    padding: 0;
    border: none;
    margin-left: 0;
  }
  .foot_link_item a{
    width: 110px;
  }
  .foot_link_item:nth-child(2n+1) a{
    margin-left: auto;
  }
  .foot_link_item:nth-child(2n) a{
    margin-left: 30px;
  }
  .footer small{
    padding: 10px 0 20px 0;
  }
}
/*===================================*/
/*===下層ページ・ページタイトル===*/
.page_title{
  width: 360px;
  height: fit-content;
  padding: 13px 0;
  text-align: center;
  background-color: rgb(255,255,255,0.2);
  border: 2px solid #fff;
  font-size: 25px;
  letter-spacing: .2em;
  font-weight: normal;
  color: #fff;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  position: absolute;
}
@media (max-width: 768px) {
  .page_title{
    width: 220px;
    padding: 5px 0;
    font-size: 18px;
  }
}
.page_img{
  width: 100%;
  height: 150px;
  object-fit: cover;
  position: relative;
}
/* 背景画像 */
#generalcivil{
  background: url(../images/generalcivil_top_pc.jpg) no-repeat;
  background-position: center center;
  background-size: cover;
}
#household{
  background: url(../images/household_top_pc.jpg) no-repeat;
  background-position: center center;
  background-size: cover;
}
#criminal{
  background: url(../images/criminal_top_pc.jpg) no-repeat;
  background-position: center center;
  background-size: cover;
}
#office{
  background: url(../images/office_top_pc.jpg) no-repeat;
  background-position: center center;
  background-size: cover;
}
#lawyers{
  background: url(../images/lawyers_top_pc.jpg) no-repeat;
  background-position: center center;
  background-size: cover;
}
#attorneysfee{
  background: url(../images/attorneysfee_top_pc.jpg) no-repeat;
  background-position: center center;
  background-size: cover;
}
#news{
  background: url(../images/news_top_pc.jpg) no-repeat;
  background-position: center center;
  background-size: cover;
}
#contact{
  background: url(../images/contact_top_pc.jpg) no-repeat;
  background-position: center center;
  background-size: cover;
}
#sitemap{
  background: url(../images/sitemap_top_pc.jpg) no-repeat;
  background-position: center center;
  background-size: cover;
}
@media (max-width: 768px) {
  .page_img{
    height: 100px;
  }
  #generalcivil{
    background: url(../images/generalcivil_top_sp.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
  }
  #household{
    background: url(../images/household_top_sp.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
  }
  #criminal{
    background: url(../images/criminal_top_sp.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
  }
  #office{
    background: url(../images/office_top_sp.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
  }
  #lawyers{
    background: url(../images/lawyers_top_sp.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
  }
  #attorneysfee{
    background: url(../images/attorneysfee_top_sp.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
  }
  #news{
    background: url(../images/news_top_sp.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
  }
  #contact{
    background: url(../images/contact_top_sp.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
  }
  #sitemap{
    background: url(../images/sitemap_top_sp.jpg) no-repeat;
    background-position: center center;
    background-size: cover;
  }
}
/*===================================*/
/*===下層ページ・見出し===*/
.heading{
  font-size: 25px;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 10px;
}
.heading_sub{
  font-size: 20px;
  line-height: 33px;
  font-weight: bold;
  padding-left: 20px;
  border-left: 7px solid #B9874D;
}
@media (max-width: 768px) {
  .heading{
    font-size: 18px;
    padding-bottom: 10px;
  }
  .heading_sub{
    font-size: 16px;
    line-height: 23px;
    padding-left: 15px;
    border-left: 5px solid #B9874D;
  }
}
/*===================================*/
/*=== 一般民事事件・家事事件・刑事事件 ===*/
  .trouble_list li{
    list-style-type: disc;
    margin-left: 50px;
  }
  .reason{
    border: 3px dashed #B9874D;
    padding: 40px 30px;
    position: relative;
  }
  .reason_title{
    font-size: 20px;
    padding: 0 15px;
    background-color: #fff;
    position: absolute;
    top: -18px;
    left: 20px;
  }
  .border{
    display: block;
    background-color: #e0e0e0;
    height: 2px;
  }
@media (max-width: 768px) {
  .trouble_list li{
    margin-left: 20px;
  }
  .reason{
    padding: 20px 10px;
  }
  .reason_title{
    font-size: 16px;
    padding: 0 5px;
    top: -15px;
    left: 10px;
  }
}
/*===================================*/
/*=== お問い合わせボタン ===*/
.contact_btn{
  text-align: center;
}
.contact_btn_text{
  position: relative;
  display: inline-block;
  font-size: 20px;
  line-height: 35px;
  font-weight: bold;
  text-align: center;
}
.contact_btn_text:before, .contact_btn_text:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 70px;
  height: 3px;
  background-color: #2B160B;
}
.contact_btn_text:before {
  left:-60px;
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
}
.contact_btn_text:after {
  right: -60px;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}
.contact_btn_link{
  max-width: 500px;
  display: block;
  background-color: #453025;
  color: #fff;
  line-height: 100px;
  font-size: 23px;
  box-sizing: border-box;
  outline: #fff solid 2px;
  outline-offset: -7px;
  margin: 30px auto 0;
  cursor: pointer;
  transition: .3s;
}
.contact_btn_link:hover{
  background-color: #B9874D;
}
@media (max-width: 768px) {
  .contact_btn_text{
    font-size: 14px;
    line-height: 27px;
  }
  .contact_btn_text:before, .contact_btn_text:after {
    display: none;
  }
  .contact_btn_link{
    font-size: 16px;
    line-height: 60px;
  }
}

/*===================================*/
/*===下層・事務所案内===*/
.office_message{
  display: grid;
}
.office_message figure{
  grid-row: 1 / 3;
  grid-column: 1;
}
.office_message_title{
  font-size: 23px;
  line-height: 35px;
  margin: 10px 0 4vw 4vw;
  grid-row: 1;
  grid-column: 2;
}
.office_message_text{
  grid-row: 2;
  grid-column: 2;
  margin: 0 0 0 4vw;
}
.office_message_text p{
  margin-bottom: 2vw;
}
.office_message_text p:last-child{
  margin: 0;
}
.office_message_text p::first-letter{
  margin-left: 1rem;
}
@media (max-width: 768px) {
  .office_message{
    display: block;
  }
  .office_message figure{
    float: left;
    width: 40%;
  }
  .office_message img{
    margin: 25px 0 0;
    padding: 0 10px 0 0;
  }
  .office_message_title{
    font-size: 18px;
    line-height: 23px;
    margin: 0;
  }
  .office_message_text{
    margin: 25px 0 0;
  }
}
/* 事務所概要 */
.office_info{
  display: grid;
}
.office_name{
  grid-row: 1;
  grid-column: 1;
  height: 33px;
}
.office_info img{
  grid-row: 1 / 3;
  grid-column: 2;
  margin: 0 0 0 auto;
}
.office_info_text{
  grid-row: 2;
  grid-column: 1;
  margin: 30px 4vw 0 0;
}
.office_info_text p:first-child{
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .office_info{
    display: block;
  }
  .office_name{
    height: auto;
  }
  .office_info img{
    margin: 20px 0 0;
  }
  .office_info_text{
    margin: 20px 0 0;
  }
}
/*===================================*/
/*===下層・弁護士紹介===*/
.lawyers_title span{
  font-size: 20px;
  margin-right: 1rem;
}
.lawyers_introduction{
  display: flex;
  align-items: flex-start;
}
.lawyers_introduction img{
  width: 48%;
  margin-right: 5%;
}
.lawyers_message{
  width: 47%;
}
.lawyers_message_title{
  display: inline-block;
  padding: 0 10px;
  font-size: 25px;
  font-weight: bold;
  margin: 10px 0 0;
  background: linear-gradient(transparent 50%, #FFF2C7 50%);
}
.lawyers_message_text{
  margin: 30px 0 0;
}
@media (max-width: 768px) {
  .lawyers_title span{
    font-size: 16px;
  }
  .lawyers_introduction{
    flex-direction: column;
  }
  .lawyers_introduction img{
    width: auto;
    margin: 0;
  }
  .lawyers_message{
    width: auto;
    margin: 30px 0 0;
  }
  .lawyers_message_title{
    display: table;
    font-size: 18px;
    margin: 10px auto 0;
  }
}
/* 経歴 */
.career{
  display: flex;
  justify-content: center;
}
.career ul{
  border-left: 2px solid #e0e0e0;
  padding: 15px;
}
@media (max-width: 768px) {
  .career{
    flex-direction: column;
  }
  .career ul{
    padding: 0 0 0 10px;
  }
}
/*===================================*/
/*===下層・弁護士費用===*/
.attorneysfee_title span{
  font-weight: normal;
  font-size: 20px;
  margin: 0 0 0 1rem;
}
.cost{
  padding: 0 30px;
}
.cost p{
  margin: 20px 0 0;
}
.cost p:first-of-type{
  margin: 0;
}
.start, .reward{
  position: relative;
  padding: 0 0 0 150px;
}
.start::before{
  content: "着手金";
  position: absolute;
  color: #fff;
  background-color: #453025;
  width: 120px;
  line-height: 30px;
  left: 0;
  text-align: center;
}
.reward::before{
  content: "報酬金";
  position: absolute;
  color: #fff;
  background-color: #453025;
  width: 120px;
  line-height: 30px;
  left: 0;
  text-align: center;
}
.supplement{
  background-color: #F7F4EF;
  padding: 25px 30px;
}
@media (max-width: 768px) {
  .attorneysfee_title span{
    font-size: 14px;
    display: block;
    margin: 0;
  }
  .cost{
    padding: 0;
  }
  .cost p{
    margin: 15px 0 0;
  }
  .start, .reward{
    padding: 0 0 0 110px;
  }
  .start::before{
    width: 90px;
    line-height: 25px;
  }
  .reward::before{
    width: 90px;
    line-height: 25px;
  }
  .supplement{
    padding: 10px 15px;
  }
}
/*===================================*/
/*===お問い合わせ===*/
.form_tel{
  border: 4px solid #B9874D;
  text-align: center;
  max-width: 600px;
  padding: 20px;
  margin-right: auto;
  margin-left: auto;
}
.form_tel_number{
  font-weight: bold;
  font-size: 40px;
  line-height: 40px;
  margin: 0 0 5px;
}
.form_text{
  margin-left: 30px;
}
.form{
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.form_item{
  display: flex;
}
.form_item_label{
  width: 35%;
  font-weight: bold;
}
.form_item_label_required{
  color: #f00;
  font-size: 12px;
  margin-left: 1rem;
}
.form_item_input{
  width: 65%;
  height: 40px;
  background-color: #f7f7f7;
  border: 1px solid #cbcbcb;
  padding: 0 10px;
}
.form_item_textarea{
  width: 65%;
  min-height: 150px;
  background-color: #f7f7f7;
  border: 1px solid #cbcbcb;
  padding: 5px 10px;
}
.personal_info{
  width: 65%;
  height: 150px;
  overflow: auto;
  border: 1px solid #cbcbcb;
  padding: 10px;
  font-size: 12px;
  line-height: 18px;
}
.personal_info p{
  margin-top: 5px;
}
.personal_info p:first-of-type{
  margin-top: 0;
}
.form_btn{
  -webkit-appearance: none;
  width: 250px;
  height: 60px;
  color: #fff;
  background-color: #453025;
  border: 0;
  font-size: 18px;
  display: block;
  outline: #fff solid 2px;
  outline-offset: -7px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 15px;
  cursor: pointer;
  transition: .3s;
}
.form_btn:hover{
  background-color: #B9874D;
}
.agree{
  text-align: center;
}
@media (max-width: 768px){
  .form_tel{
    padding: 40px 20px;
  }
  .form_tel_number{
    font-size: 28px;
    line-height: 28px;
    margin: 0 0 5px;
  }
  .form_text{
    margin-left: 0;
  }
  .form_item{
    flex-direction: column;
  }
  .form_item_label{
    width: auto;
    font-weight: bold;
    margin-left: 1rem;
  }
  .form_item_input{
    width: auto;
    height: 30px;
  }
  .form_item_textarea{
    width: auto;
    min-height: 130px;
  }
  .personal_info{
    width: auto;
    height: 130px;
  }
  .form_btn{
    width: 100%;
    font-size: 16px;
    margin-top: 10px;
  }
}
/*===================================*/
/*===サイトマップ===*/
.sitemap{
  padding: 0 100px;
}
.sitemap_item{
  margin-top: 20px;
  border-bottom: 2px solid #cbcbcb;
  padding-bottom: 20px;
}
.sitemap_item a{
  text-decoration: underline;
  font-weight: normal;
  font-size: 16px;
  line-height: 33px;
  padding-left: 20px;
  border-left: 7px solid #B9874D;
}
@media (max-width: 768px) {
  .sitemap{
    padding: 0;
  }
  .sitemap_item{
    margin-top: 10px;
    padding-bottom: 10px;
  }
  .sitemap_item a{
    font-size: 14px;
    line-height: 23px;
    padding-left: 15px;
    border-left: 5px solid #B9874D;
  }
}
/*===================================*/
/*===お知らせ===*/
.news_item{
  border-bottom: 2px solid #cbcbcb;
  padding: 20px 0;
}
.news_title{
  display: block;
  font-weight: bold;
  padding-left: 20px;
  border-left: 7px solid #B9874D;
}
.news_item input {
  display: none;
}
.news_contents {
  height: 0;
  padding: 0 30px;
  opacity: 0;
  overflow: hidden;
  transition: 0.3s;
  box-sizing: border-box;
}
.news_item input:checked ~ .news_contents {
  height: auto;
  padding-top: 10px;
  opacity: 1;
}
@media (max-width: 768px) {
  .news_item{
    padding: 10px 0;
  }
  .news_title{
    padding-left: 10px;
    border-left: 5px solid #B9874D;
  }
  .news_contents {
    padding: 0 15px;
  }
}
/*===================================*/
/*===404===*/
.not_found_title{
  font-weight: bold;
  font-size: 40px;
  text-align: center;
  margin-bottom: 30px;
}
.not_found_text{
  text-align: center;
}
.not_found_text a{
  text-decoration: underline;
}
.not_found_text a:hover{
  color: #B9874D;
}
@media screen and (max-width: 768px){
  .not_found_title{
    font-size: 23px;
    margin-bottom: 20px;
  }
}
/*===================================*/
