@charset "UTF-8";
/* CSS Document - Japanese Version */
/* CSS Document - Common Styles */
* {
  margin: 0;
  padding: 0;
}

a {
  color: #1A1A1A;
}
a:hover {
  color: #00A2E1;
}
a[name]:hover {
  color: #1A1A1A;
}

img {
  border-style: none;
  max-width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  img.headline {
    height: 36px;
    width: auto;
  }
}
@media (max-width: 767px) {
  img.headline_en {
    height: 24px;
    width: auto;
  }
}

#frame {
  padding-top: 10px;
  max-width: 1180px;
  width: 100%;
  text-align: left;
  overflow: hidden;
  background: #fff;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  #frame {
    width: 90vw;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #frame {
    width: 95vw;
  }
}

#menu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  height: 100px;
}
#menu .menu-nav {
  display: block;
}
#menu .menu-nav .menuline {
  text-align: center;
  line-height: 1.5;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 20px;
}
#menu .menu-nav .menuline a {
  white-space: nowrap;
}
#menu .menu-nav .menuline .language {
  font-size: small;
}
#menu .menu-nav .menuline .language a {
  font-size: small;
}
#menu .menu-toggle {
  display: none;
}
@media (max-width: 767px) {
  #menu {
    height: auto;
  }
  #menu .menu-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-align: center;
        align-items: center;
    gap: 10px;
    width: 100%;
    height: 56px;
  }
  #menu .menu-header .menu-logo {
    -ms-flex-order: 0;
        order: 0;
  }
  #menu .menu-header .menu-logo img {
    max-width: 100%;
    height: auto;
  }
  #menu .menu-header .menu-toggle {
    display: block;
    -ms-flex: none;
        flex: none;
    -ms-flex-order: 1;
        order: 1;
    -ms-flex-positive: 0;
        flex-grow: 0;
    margin: 0 auto;
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
  }
  #menu .menu-header .menu-toggle .menu-icon {
    position: absolute;
    height: 2px;
    left: 12.5%;
    right: 12.5%;
    top: 25%;
    bottom: 25%;
    background: #334459;
    display: block;
  }
  #menu .menu-header .menu-toggle .menu-icon::before, #menu .menu-header .menu-toggle .menu-icon::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: #334459;
    transition: all 0.3s ease;
  }
  #menu .menu-header .menu-toggle .menu-icon::before {
    top: -6px;
  }
  #menu .menu-header .menu-toggle .menu-icon::after {
    bottom: -6px;
  }
  #menu .menu-header .menu-toggle[aria-expanded=true] .menu-icon {
    background: transparent;
  }
  #menu .menu-header .menu-toggle[aria-expanded=true] .menu-icon::before {
    top: 0;
    -ms-transform: rotate(45deg);
        transform: rotate(45deg);
  }
  #menu .menu-header .menu-toggle[aria-expanded=true] .menu-icon::after {
    bottom: 0;
    -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
  }
  #menu .menu-nav {
    display: none;
    position: absolute;
    height: calc(100svh - 56px);
    top: 56px;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 1000;
    padding: 64px 24px;
  }
  #menu .menu-nav[aria-hidden=false] {
    display: block;
  }
  #menu .menu-nav .menuline {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    gap: 16px;
    text-align: left;
    -ms-flex-align: start;
        align-items: start;
  }
  #menu .menu-nav .menuline a {
    display: block;
    padding: 8px 0;
    font-size: 15px;
    text-decoration: none;
  }
  #menu .menu-nav .menuline span {
    display: block;
    padding: 8px 0;
  }
  #menu .menu-nav .menuline .language {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  #menu {
    height: auto;
  }
  #menu .menu-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
        flex-direction: row;
    -ms-flex-pack: justify;
        justify-content: space-between;
    -ms-flex-align: center;
        align-items: center;
    gap: 10px;
    width: 100%;
    height: 56px;
  }
  #menu .menu-header .menu-logo img {
    max-width: 100%;
    height: auto;
  }
  #menu .menu-header .menu-toggle {
    display: block;
    -ms-flex: none;
        flex: none;
    -ms-flex-order: 1;
        order: 1;
    -ms-flex-positive: 0;
        flex-grow: 0;
    margin: 0 auto;
    width: 24px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
  }
  #menu .menu-header .menu-toggle .menu-icon {
    position: absolute;
    height: 2px;
    left: 12.5%;
    right: 12.5%;
    top: 25%;
    bottom: 25%;
    background: #334459;
    display: block;
  }
  #menu .menu-header .menu-toggle .menu-icon::before, #menu .menu-header .menu-toggle .menu-icon::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: #334459;
    transition: all 0.3s ease;
  }
  #menu .menu-header .menu-toggle .menu-icon::before {
    top: -6px;
  }
  #menu .menu-header .menu-toggle .menu-icon::after {
    bottom: -6px;
  }
  #menu .menu-header .menu-toggle[aria-expanded=true] .menu-icon {
    background: transparent;
  }
  #menu .menu-header .menu-toggle[aria-expanded=true] .menu-icon::before {
    top: 0;
    -ms-transform: rotate(45deg);
        transform: rotate(45deg);
  }
  #menu .menu-header .menu-toggle[aria-expanded=true] .menu-icon::after {
    bottom: 0;
    -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
  }
  #menu .menu-nav {
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 1000;
    padding: 20px 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  #menu .menu-nav[aria-hidden=false] {
    display: block;
  }
  #menu .menu-nav .menuline {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    gap: 16px;
    text-align: left;
  }
  #menu .menu-nav .menuline a {
    display: block;
    padding: 8px 0;
    font-size: 15px;
  }
  #menu .menu-nav .menuline .language {
    display: none;
  }
}

.catchcopy {
  margin-top: 48px;
  margin-bottom: 17px;
}

footer {
  text-align: center;
  font-size: small;
  margin-top: 48px;
  padding: 24px;
  display: grid;
  gap: 24px;
}

/*
########################################################
	aboutus
########################################################
*/
.aisatsubun {
  max-width: 700px;
  width: 100%;
  font-size: 15px;
  line-height: 180%;
  letter-spacing: 2px;
  text-align: left;
}
@media (max-width: 767px) {
  .aisatsubun {
    font-size: 14px;
  }
}

.gaiyoubun {
  max-width: 600px;
  width: 100%;
  font-size: 15px;
  line-height: 180%;
  letter-spacing: 2px;
  text-align: left;
}
@media (max-width: 767px) {
  .gaiyoubun {
    font-size: 14px;
  }
}

.gaiyou01 {
  float: left;
  width: 130px;
  padding-right: 20px;
  height: 60px;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .gaiyou01 {
    width: 100%;
    float: none;
    padding-right: 0;
    margin-bottom: 10px;
  }
}

.gaiyou02 {
  max-width: 600px;
  width: 100%;
  height: 60px;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .gaiyou02 {
    height: auto;
  }
}

.honda {
  line-height: 130%;
}

/*
########################################################
	lawyers
########################################################
*/
.lawyersbun {
  max-width: 940px;
  width: 100%;
  font-size: 15px;
  line-height: 150%;
  letter-spacing: 2px;
}
@media (max-width: 767px) {
  .lawyersbun {
    font-size: 14px;
  }
}

.lawyerimg {
  float: left;
  width: 300px;
  height: 600px;
  padding-right: 40px;
}
@media (max-width: 767px) {
  .lawyerimg {
    width: 100%;
    float: none;
    padding-right: 0;
    height: auto;
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .lawyerimg {
    width: 250px;
  }
}

.lawyerprofile {
  max-width: 940px;
  width: 100%;
  height: 600px;
  text-align: left;
}
@media (max-width: 767px) {
  .lawyerprofile {
    height: auto;
  }
}

.line {
  margin-top: 5px;
}

/*
########################################################
	gyoumu
########################################################
*/
.gyoumu {
  max-width: 800px;
  width: 100%;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 2px;
  text-align: left;
}
@media (max-width: 767px) {
  .gyoumu {
    font-size: 12px;
  }
}

table {
  border-collapse: collapse;
  max-width: 800px;
  width: 100%;
}
@media (max-width: 767px) {
  table {
    font-size: 12px;
  }
}
table td {
  border: solid 1px #E4E4E4;
  padding: 20px 20px 20px 30px;
}
@media (max-width: 767px) {
  table td {
    padding: 10px;
  }
}

.g02 {
  font-size: 12px;
  line-height: 140%;
}

/*
########################################################
	access
########################################################
*/
.accessbun {
  max-width: 500px;
  width: 100%;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 2px;
  text-align: left;
}
@media (max-width: 767px) {
  .accessbun {
    font-size: 12px;
  }
}

/*
########################################################
	kinkyu
########################################################
*/
.kinkyubun {
  max-width: 700px;
  width: 100%;
  font-size: 15px;
  line-height: 180%;
  letter-spacing: 2px;
  text-align: left;
}
@media (max-width: 767px) {
  .kinkyubun {
    font-size: 14px;
  }
}

.security-message {
  max-width: 1180px;
  width: 100%;
  font-size: 15px;
  line-height: 180%;
  letter-spacing: 2px;
  text-align: left;
  padding-top: 48px;
}
.security-message h1 {
  font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-weight: bold;
  font-size: 48px;
  color: #004D9E;
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .security-message h1 {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
.security-message p {
  margin-bottom: 24px;
  font-size: 16px;
}
@media (max-width: 767px) {
  .security-message p {
    font-size: 14px;
  }
}
.security-message p.mb-60 {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .security-message p.mb-60 {
    margin-bottom: 24px;
  }
}
.security-message p.ta-end {
  text-align: end;
}
.security-message p:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .security-message {
    font-size: 14px;
  }
}

.content-links {
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -ms-flex-pack: center;
      justify-content: center;
  font-size: 15px;
  line-height: 150%;
  letter-spacing: 2px;
  text-align: left;
}
@media (max-width: 767px) {
  .content-links {
    -ms-flex-direction: column;
        flex-direction: column;
  }
}

.footnav {
  text-align: center;
}

body {
  color: #1A1A1A;
  font-size: 15px;
  text-align: center;
  font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  width: 100%;
  letter-spacing: 2px;
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}