* {
  margin: 0;
  padding: 0;
  border: 0;
  /* border: 1px dashed #aaa; */
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: var(--text-color);
}

ul {
  list-style: none;
}

ol {
  list-style: none;
}

:root {
  --text-color: #5d4d48;
  --heavy-green:#9DC742;
  --heavy-green-transparent: rgba(157, 199, 66, 0.5);
  --light-green: #F1F7E4;
  --heavy-blue: #4883B7;
  --light-blue: rgb(80, 186, 238);
  --blue-2: #B4C7E7;
  --light-blue-3: #E5F8FC;
  --light-blue-transparent: rgba(80, 186, 238, 0.3);

  /* --main-color: #8cbf33; */
  --main-color: #9DC742;
  --light-color: #268035;
  --heavy-color: #195523;
  --gray-green-color: #93c09a;
  --gray-green-2-color: #b0beb1;
  /* --gray-color: #4d4d4d; */
  --gray-color: #5d4d48;
  --trans-green: rgba(226, 246, 227, 0.9);
  --light-blue-2: #E5F8FC;
  --light-green: #f1f7e4;
  
  --let-full-width: 80rem;
}

/* Layout -------------------------------------------------------------------- */

.ly_inner {
  width: 100%;
  padding-left: 60px;
  padding-right: 60px;
}
@media screen and (max-width: 768px) {
  .ly_inner {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
}

.ly_margin_content {
  padding-left: 24%;
  padding-right: 24%;
}
@media screen and (max-width: 1025px) {
  .ly_margin_content {
    padding-left: 5%;
    padding-right: 5%;
  }
}

.ly_text_center {
  text-align: center;
}

.ly_mb_10 {
  margin-bottom: 10px;
}

.ly_mt_40 {
  margin-top: 40px;
}

.ly_mb_40 {
  margin-bottom: 40px;
}

.ly_mt_60 {
  margin-top: 60px;
}

.ly_mr_40 {
  margin-right: 40px;
}


/* Header -------------------------------------------------------------------- */

.bl_header.scroll_nav {
  position: sticky;
  top: 0;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
}

/* Header - Logo -------------------------------------------------------------------- */
.bl_logo {
  text-decoration: none;
  display: inline-block;
  width: 165px;
}
.bl_header.scroll_nav .bl_logo {
  display: flex;
  width: 245px;
}
@media screen and (max-width: 768px) {
  .bl_logo {
    width: 123px;
  }
  .bl_header.scroll_nav .bl_logo {
    display: block;
    width: 123px;
  }
}



.bl_logo_top {
  display: flex;
}

.bl_logo_top_imgWrapper {
  /* width: 30%; */
  width: 46px;
}
@media screen and (max-width: 768px) {
  .bl_logo_top_imgWrapper {
    width: 34px;
  }
}

.bl_logo_top_imgWrapper > img {
  width: 100%;
}

.bl_logo_top_name {
  width: 70%;
  padding-left: 12px;
  padding-top: 7px;
}
@media screen and (max-width: 768px) {
  .bl_logo_top_name {
    padding-left: 9px;
  }
}

.bl_header.scroll_nav .bl_logo_top_name {
  display: none;
}

@media screen and (max-width: 768px) {
  .bl_header.scroll_nav .bl_logo_top_name {
    display: block;
    padding-left: 9px;
  }
}

.bl_logo_top_name_letters {
  display: flex;
  justify-content: space-between;
  line-height: 0.95rem;
}
@media screen and (max-width: 768px) {
  .bl_logo_top_name_letters {
    line-height: 0.7rem;
  }
}

.bl_logo_top_name_letters > span {
  font-size: 0.625rem;
  font-family: 'Poppins', sans-serif;
}
@media screen and (max-width: 768px) {
  .bl_logo_top_name_letters > span {
    font-size: 0.45rem;
    font-weight: 300;
  }
}

.bl_logo_bottom_ttl {
  font-size: 1rem;
  font-weight: 300;
  width: 100%;
  display: flex;
  justify-content: center;
  border-top: 1px solid var(--text-color);
  padding-top: 2px;
  margin-top: 3px;
}
.bl_header.scroll_nav .bl_logo_bottom_ttl {
  position: relative;
  top: -3px;
  border:  none;
  justify-content: center;
  align-items: center;
  padding-top: 0;
  margin-top: 0;
  font-size: 1.125rem;
}

@media screen and (max-width: 768px) {
  .bl_logo_bottom_ttl {
    font-size: 0.75rem;
    font-weight: 300;
    width: 100%;
    display: flex;
    justify-content: center;
    border-top: 1px solid var(--text-color);
    padding-top: 1px;
    margin-top: 2px;
  }

  .bl_header.scroll_nav .bl_logo_bottom_ttl {
    font-size: 0.75rem;
    position: static;
    border:  none;
    border-top: 1px solid var(--text-color);
    justify-content: center;
    align-items: center;
    padding-top: 1px;
    margin-top: 2px;
  }
}


/* Header - contact -------------------------------------------------------------------- */

.bl_contact {
  display: inline-block;
}
@media screen and (max-width: 600px) {
  .bl_contact {
    display: none;
  }
}

.bl_contact_second {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .bl_contact {
    text-align: center;
  }
}

.bl_contact_top_phone {
  font-size: 1.375rem;
  font-weight: 300;
  font-family: 'Quicksand', sans-serif;
  letter-spacing: 3px; /* CHECK pxで指定して良いのか? */
}
@media screen and (max-width: 768px) {
  .bl_contact_top_phone {
    position: relative;
    top: 2px;
    font-size: 1rem;
  }
}

.bl_contact_bottom_officeTime {
  font-size: 0.75rem;
  letter-spacing: 1px;
  font-weight: 400;
}

.bl_contact_bottom_officeTime > span {
  font-family: 'Quicksand', sans-serif;
}

.bl_contact_top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .bl_contact_top {
    justify-content: center;
    align-items: center;
  }
}

.bl_contact_top_imgWrapper {
  width: 1.375rem;
  height: 1.375rem;
}
@media screen and (max-width: 768px) {
  .bl_contact_top_imgWrapper {
    width: 1rem;
    height: 1rem;
  }
}



/* bl_hamburger_menu * -------------------------------------------------------------------------------- */


.bl_hamburger_menu_btn {
  display: none;
}
.bl_header.scroll_nav .bl_hamburger_menu_btn {
  display: none;
}
@media screen and (max-width: 768px) {
  .bl_header.scroll_nav .bl_hamburger_menu_btn,
  .bl_hamburger_menu_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 100;
    background-color: transparent;
    width: 60px;
    height: 60px;
  }
}


.bl_hamburger_menu_btn span,
.bl_hamburger_menu_btn span:before,
.bl_hamburger_menu_btn span:after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: var(--text-color);
  position: absolute;
}
.bl_hamburger_menu_btn span:before {
  bottom: 8px;
}
.bl_hamburger_menu_btn span:after {
  top: 8px;
}

#menu_btn_check:checked ~ .bl_hamburger_menu_btn span {
  background-color: rgba(255, 255, 255, 0); /*メニューオープン時は真ん中の線を透明にする*/
}
#menu_btn_check:checked ~ .bl_hamburger_menu_btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#menu_btn_check:checked ~ .bl_hamburger_menu_btn span::after {
  top: 0;
  transform: rotate(-45deg);
}
#menu_btn_check {
  display: none;
}

.bl_hamburger_menu_content ul {
  padding: 70px 10px 0;
}
.bl_hamburger_menu_content ul li {
  /* border-bottom: solid 1px #ffffff; */
  list-style: none;
}
.bl_hamburger_menu_content ul li a {
  display: block;
  width: 100%;
  font-size: 0.825rem;
  font-weight: 300;
  box-sizing: border-box;
  text-decoration: none;
  padding: 0 15px 0 0;
  position: relative;
  line-height: 2rem;
}

.bl_hamburger_menu_content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}

.bl_hamburger_menu_content ul li a::after {
  content: "";
  display: inline-block;
  margin-left: 5px;
  width: 10px;
  border-top: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 5px solid var(--heavy-green);
}


.bl_hamburger_menu_content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%; /*leftの値を変更してメニューを画面外へ*/
  z-index: 80;
  background-color: white;
  border-left: 1px solid var(--text-color);
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5);
  transition: all 0.5s; /*アニメーション設定*/
}

#menu_btn_check:checked ~ .bl_hamburger_menu_content {
  left: 50%; /*メニューを画面内へ*/
}
@media screen and (max-width: 690px) {
  #menu_btn_check:checked ~ .bl_hamburger_menu_content {
    left: 30%; /*メニューを画面内へ*/
  }
}



/* Header - Hamburger -------------------------------------------------------------------- */

@media screen and (max-width: 768px) {
  .bl_hamburger {
    width: 60px;
    height: 60px;
    background: #ddd; /* delete */
  }
}

/* Header - ask button -------------------------------------------------------------------- */

.bl_askBtn {
  text-decoration: none;
  background-color: var(--main-color);
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
  width: 160px;
  height: 92px;
  transition: box-shadow 0.25s;
}
@media screen and (max-width: 768px) {
  .bl_askBtn {
    display: none;
    border-radius: 0;
  }
}

.bl_header.scroll_nav .bl_askBtn {
  border-radius: 0;
  width: 60px;
  height: 60px;
}


.bl_askBtn:hover {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}


.bl_askBtn_ttl {
  color: white;
  font-size: 0.8125rem;
  padding: 0 10px 9px 10px;
  letter-spacing: 1px;
  transition: color 0.25s;
}

.bl_header.scroll_nav .bl_askBtn_ttl {
  display: none;
}

.bl_askBtn:hover .bl_askBtn_ttl {
  color: var(--text-color);
}

.bl_askBtn_imgWrapper {
  width: 100%;
  text-align: center;
  margin-top: 14px;
}

.bl_askBtn_imgWrapper > svg {
  width: 100%;
}


/* Header ask Button narrow ---------------------------------------- */

.bl_askBtn_narrow {
  display: none;
}
@media screen and (max-width: 768px) {
  .bl_askBtn_narrow {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--main-color);
    width: 60px;
    height: 60px;
  }
}

.bl_askBtn_narrow_imgWrapper {
  width: 100%;
  text-align: center;
}

.bl_askBtn_narrow_imgWrapper > svg {
  width: 100%;
}


/* Header - Navigation -------------------------------------------------------------------- */
.bl_header_second_row {
  width: 100%;
  text-align: center;
  background-color: white;
}

/* Header - Navigation -------------------------------------------------------------------- */

/* bl_nav ------- */

.bl_nav_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 16px;
  height: 32px;
  box-shadow: 0 3px 6px 1px rgba(0, 0, 0, 0.1);
  background-color: white;
}
@media screen and (max-width: 768px) {
  .bl_nav_list {
    display: none;
  }
}

.bl_nav_list > * {
  position: relative;
  flex: 1;
}

.bl_nav_item {
  display: inline-block;
  text-decoration: none;
  text-align: center;
  width: 100%;
  padding: 5px;
  color: var(--gray-color);
  transition: 0.25s;
  font-weight: 300;
}

.bl_nav_item_ttl {
  position: relative;
  font-weight: 300;
  z-index: 100;
}
@media screen and (max-width: 900px) {
  .bl_nav_item_ttl {
    font-size: 0.825rem;
  }
}


.bl_nav_item .bl_nav_item_ttl::after {
  content: "";
  position: absolute;
  z-index: -1;
  display: block;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: var(--heavy-green-transparent);
  transform: scale(0, 1);
  transform-origin: 0% 50%;
  transition: 0.25s;
}

.bl_nav_item:hover .bl_nav_item_ttl::after {
  transform: scale(1, 1);
}

.bl_nav_item > .bl_nav_lv2_list {
  display: none;
}

.bl_nav_item:hover > .bl_nav_lv2_list {
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 0 3px 0 var(--gray-green-2-color);
}

.bl_nav_lv2_item {
  display: inline-block;
  width: 100%;
  text-decoration: none;
  /* color: var(--heavy-color); */
  color: var(--gray-color);
  transition: 0.25s;
  background-color: #fff;
  padding: 10px 5px;
  position: relative;
  font-weight: 300;
}
@media screen and (max-width: 900px) {
  .bl_nav_lv2_item {
    font-size: 0.825rem;
  }
}

.bl_nav_lv2_item::after {
  content: "";
  position: absolute;
  display: block;
  /* top: 100%; */
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--heavy-color);
  transform: scale(0, 0);
  transform-origin: 50% 50%;
  transition: 0.25s;
}

.bl_nav_lv2_item:hover {
  background-color: var(--main-color);
  /* color: var(--gray-color); */
  color: white;
}

.bl_nav_lv2_item:hover::after {
  transform: scale(1, 1);
}

.bl_header.scroll_nav .bl_nav_list {
  display: none;
}

/* Header - layout -------------------------------------------------------------------- */

.ly_header_first_row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 92px;
  border-radius: 20px;
  box-shadow: 0 3px 6px 1px rgba(0, 0, 0, 0.1);
  background-color: white;
}
@media screen and (max-width: 768px) {
  .ly_header_first_row {
    height: 60px;
    border-radius: 0;
  }
}

.bl_header.scroll_nav .ly_header_first_row {
  border-radius: 0;
  height: 60px;
}

.ly_header_first_row_left {
}
@media screen and (max-width: 768px) {
  .ly_header_first_row_left {
    display: flex;
    justify-content: space-between;
  }
}

.ly_header_first_row_right {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .ly_header_first_row_right {
    background-color: white;
    justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  .ly_header_narrow_right {
    display: flex;
  }
}

.ly_header_second_row {
  display: none;
}
@media screen and (max-width: 600px) {
  .ly_header_second_row {
    display: block;
  }
}


/* Layout - Margin - top -------- */
.ly_header_top_padding {
  padding-top: 26px;
}
@media screen and (max-width: 768px) {
  .ly_header_top_padding {
    display: none;
  }
}

.ly_header_bottom_padding {
  padding-bottom: 40px;
}

.ly_mt_26 {
  margin-top: 26px;
}

.ly_mt_logo {
  margin-top: 3px;
}

/* Layout - Margin - left -------- */

.ly_ml_logo {
  margin-left: 46px;
}
@media screen and (max-width: 1025px) {
  .ly_ml_logo {
    margin-left: 20px;
  }
}


/* Layout - Margin - contact */

.ly_mr_contact {
  margin-right: 40px;
}
@media screen and (max-width: 900px) {
  .ly_mr_contact {
    margin-right: 10px;
    text-align: center;
  }
}

/* Layout - Margin - phone */
.ly_mb_phonenum {
  margin-bottom: 3px;
}

/* Layout - Margin - nav */
.ly_margin_nav {
  margin-left: 100px;
  margin-right: 100px;
  margin-top: 12px;
}
@media screen and (max-width: 1100px) {
  .ly_margin_nav {
    margin-left: 0;
    margin-right: 0;
    margin-top: 12px;
  }
}

.ly_header_inner {
  width: 100%;
  padding-left: 60px;
  padding-right: 60px;
}
@media screen and (max-width: 768px) {
  .ly_header_inner {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

.bl_header.scroll_nav .ly_header_inner {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

@media screen and (max-width: 600px) {
  .ly_content_first_row {
    display: none;
  }
}

/* Footer -------------------------------------------------------------------------- */

.bl_footer {
  background-color: var(--light-green);
  border-top: 2px solid var(--heavy-green);
  padding-top: 10px;
}

/* Footer - Info ----*/
.ly_mb_footerInfo {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .ly_mb_footerInfo {
    margin-bottom: 20px;
  }
}

.bl_footerInfo_txt > p {
  font-size: 0.75rem;
  font-weight: 300;
}

.bl_footerFirstRow {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .bl_footerFirstRow {
    display: block
  }
}

.bl_footer_left {
  width: 50%;
  display: flex;
  justify-content: space-between;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .bl_footer_left {
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}

.bl_footer_right {
  width: 50%;
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .bl_footer_right {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.bl_footer_left_left {
  text-align: left;
}
@media screen and (max-width: 768px) {
  .bl_footer_left_left {
    text-align: center;
  }
}


.bl_footerMap {
  width: 160px;
  height:160px;
}
@media screen and (max-width: 768px) {
  .bl_footerMap {
    width: 100%;
    height:160px;
  }
}

.bl_footerMap > iframe {
  width: 100%;
  height:100%;
}

.ly_mb_footerMap {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .ly_mb_footerMap {
    margin-bottom: 20px;
  }
}

.bl_footerSitemap_main {
  display: flex;
  justify-content: space-between;
}

.bl_footerSitemap_alt > ul {
  display: flex;
}

.bl_footerSitemap_ttl {
  font-size: 1rem;
  font-weight: 300;
  border-bottom: 1px dashed var(--text-color);
}

.bl_footerSitemap_item {
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

.bl_footerSitemap_item::after {
  content: "";
  position: absolute;
  z-index: -1;
  display: inline-block;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--heavy-green-transparent);
  transform: scale(0, 1);
  transform-origin: 0% 50%;
  transition: 0.25s;
}

.bl_footerSitemap_item:hover::after {
  transform: scale(1, 1);
}

.bl_footer_bar {
  border-top: 1px dashed var(--text-color);
  margin-top: 40px;
  margin-left: 160px;
  margin-right: 160px;
  margin-bottom: 10px;
}

.bl_notion_list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .bl_notion_list {
    display: block;
  }
}

.bl_notion {
  width: 48%;
}
@media screen and (max-width: 768px) {
  .bl_notion {
    width: 100%;
  }
}

.ly_mb_notion {
}
@media screen and (max-width: 768px) {
  .ly_mb_notion {
    margin-bottom: 10px;
  }
}

.bl_notion_main {
  font-size: 0.825rem;
  font-weight: 300;
}

.bl_notion_sub {
  font-size: 0.75rem;
  font-weight: 300;
}

.ly_mb_16 {
  margin-bottom: 16px;
}

.el_copyright {
  font-size: 0.75rem;
  font-weight: 300;
  text-align: center;
}

.ly_mt_40 {
  margin-top: 40px;
}

.ly_mt_36 {
  margin-top: 36px;
}

.ly_mt_20 {
  margin-top: 20px;
}

.ly_ml_20 {
  margin-right: 20px;
}


/* Footer - Logo -------------------------------------------------------------------- */
.bl_footer_logo {
  text-decoration: none;
  display: inline-block;
  width: 165px;
}

.bl_footer_logo_top {
  display: flex;
}

.bl_footer_logo_top_imgWrapper {
  /* width: 30%; */
  width: 46px;
}

.bl_footer_logo_top_imgWrapper > img {
  width: 100%;
}

.bl_footer_logo_top_name {
  width: 70%;
  padding-left: 12px;
  padding-top: 6px;
}

.bl_footer_logo_top_name_letters {
  display: flex;
  justify-content: space-between;
  line-height: 0.95rem;
}

.bl_footer_logo_top_name_letters > span {
  font-size: 0.625rem;
  font-family: 'Poppins', sans-serif;
}

.bl_footer_logo_bottom_ttl {
  font-size: 1rem;
  font-weight: 300;
  width: 100%;
  display: flex;
  justify-content: center;
  border-top: 1px solid var(--text-color);
  padding-top: 2px;
  margin-top: 3px;
}

.hp_footer_party_txt {
  font-size: 0.75rem;
  font-weight: 300;
  margin-bottom: 10px;
}


/* Section Title -------------------------------------------------------------------- */

.bl_sectTtl {
  /* background-color: #e4e4e4; */
  border-bottom: 2px dashed var(--text-color);
}

.bl_sectTtl_news {
}
@media screen and (max-width: 768px) {
  .bl_sectTtl_news {
    border-bottom: 2px dashed var(--text-color);
  }
}

.bl_sectTtl_ttl {
  color: var(--gray-color);
  font-size: 1.75rem;
  font-weight: 100;
}
@media screen and (max-width: 1025px) {
  .bl_sectTtl_ttl {
    font-size: 1.5rem;
  }
}

.bl_sectTtl_ttl > span {
  color: var(--heavy-blue);
  font-weight: 100;
}

/* Section Title - layout -------- */

.ly_margin_section {
  margin-left: 15%;
  margin-right: 15%;
  margin-bottom: 36px;
  min-width: 720px;
}
@media screen and (max-width: 1025px) {
.ly_margin_section {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 36px;
  min-width: 720px;
}
}
@media screen and (max-width: 768px) {
.ly_margin_section {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 36px;
  min-width: 0;
}
}


/* Page Title -------------------------------------------------------------------------------- */

.arc_contents {
  /* position: relative; */
  /* z-index: -1; */
  /* top: -300px; */
  overflow: hidden;
  height: 300px;
}

.bl_pageTtl_bg {
  border-bottom-left-radius: 2000px 140px;
  border-bottom-right-radius: 2000px 140px;
  width: 100%;
  height: 100%;
  background-image: url("../images/hero_4.jpg");
  background-position: 50% 50%;
  background-size: cover;
  /* margin-left: -200px; */
  margin-right: -200px;
  /* padding-left: 200px; */
  /* padding-right: 200px; */
}

.bl_pageTtl {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  height: 140px;
}

.bl_pageTtl_ttl_wrapper {
  width: 60%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .bl_pageTtl_ttl_wrapper {
    width: 55%;
  }
}

.bl_pageTtl_ttl_wrapper_no_list {
  width: 100%;
  text-align: center;
}

.bl_pageTtl_textarea {
  width: 100%;
  height: 100%;
}

.bl_pageTtl_ttl {
  position: relative;
  z-index: 1;
  font-size: 2.25rem;
  font-weight: 100;
  padding-left: 5px;
  padding-right: 5px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .bl_pageTtl_ttl {
    font-size: 1.75rem;
  }
}

.bl_pageTtl_ttl::after {
  content: "";
  position: absolute;
  z-index: -1;
  display: inline-block;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: var(--heavy-green-transparent);
}

.bl_pageTtl_list {
  width: 40%;
  padding-right: 10px; 
}
@media screen and (max-width: 768px) {
  .bl_pageTtl_list {
    width: 45%;
  }
}

.bl_pageTtl_list > li {
  font-size: 1rem;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .bl_pageTtl_list > li {
    font-size: 0.825rem;
    font-weight: 300;
  }
}

.ly_pageTtl_contents {
  display: flex;
  align-items: center;
}

.bl_pageTtl_background_wrap {
  overflow: hidden;
}

.bl_pageTtl_background_arc {
  border-bottom-left-radius: 2000px 140px;
  border-bottom-right-radius: 2000px 140px;
  overflow: hidden;
  margin-left: -200px;
  margin-right: -200px;
  padding-left: 200px;
  padding-right: 200px;
}

.bl_pageTtl_background {
  height: 400px;
  background-image: url("../images/hero_4.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}

.ly_pageTtl_background_position {
  position: relative;
  z-index: -1;
  top: -400px;
  margin-bottom: -400px;
}

.ly_pageTtl_ttl_br {
  display: none;
}
@media screen and (max-width: 768px) {
  .ly_pageTtl_ttl_br {
    display: block;
  }
}

/* Page Nav -------------------------------------------------------------------------------- */

.el_page_nav {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .el_page_nav {
    display: block;
  }
}


.el_page_nav_link {
  display: inline-block;
  text-decoration: none;
  text-align: center;
  margin: 0 15px;
}
@media screen and (max-width: 768px) {
  .el_page_nav_link {
    border-bottom: 1px dashed var(--text-color);
  }
}

.el_page_nav_item {
  font-size: 1.25rem;
  font-weight: 100;
  position: relative;
}

.el_page_nav_item > span {
  color: var(--heavy-blue);
  font-weight: 100;
}


.el_page_nav_item::before {
  content: "";
  position: absolute;
  z-index: -1;
  display: inline-block;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: var(--heavy-green-transparent);
  transform: scale(0, 1);
  transform-origin: 0% 50%;
  transition: 0.25s;

}

.el_page_nav_item:hover::before {
  transform: scale(1, 1);
}

.el_page_nav_arrow {
  width: 15px;
  border-top: 10px solid var(--text-color);
  border-right: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid transparent;
  margin: 5px auto;
  transition: boader-top 0.25s;
}
@media screen and (max-width: 768px) {
  .el_page_nav_arrow {
    display: none;
  }
}


.el_page_nav_link:hover .el_page_nav_arrow {
  border-top: 10px solid var(--heavy-green);
}

.el_page_nav_bar {
  position: relative;
  top: 0.5rem;
  border-left: 1px dashed var(--text-color);
  height: 1rem;
}
@media screen and (max-width: 768px) {
  .el_page_nav_bar {
    display: none;
  }
}


/* Topic title -------------------------------------------------------------------------------- */

.bl_topic {
  border-left: 8px solid var(--light-blue);
  padding-left: 10px;
  font-size: 1.25rem;
  margin-top: 40px;
  margin-bottom: 10px;
  color: var(--gray-color);
  font-weight: 400;
}

.ly_topic {
  margin-left: -2rem;
}
@media screen and (max-width: 768px) {
  .ly_topic {
    margin-left: 0;
  }
}

/* Message -------------------------------------------------------------------------------- */

.bl_message_title_ttl {
  display: inline-block;
  font-size: 1.75rem;
  font-weight: 300;
  border-bottom: 2px dashed var(--light-blue);
  color: var(--gray-color);
  padding-left: 20px;
  padding-right: 20px;
}

.el_message_text > p {
  font-size: 0.875rem;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 300;
  line-height: 2rem;
}

/* Keyword -------------------------------------------------------------------------------- */

.hp_h6 {
  font-size: 1.125rem;
  font-weight: 400;
}

.hp_key_word_blue_back {
  background-color: var(--light-blue-2);
  padding: 1rem;
  border-radius: 10px;
}

.hp_key_word_blue_back_2 {
  background-color: var(--blue-2);
  padding: 1rem;
  border-radius: 10px;
}

.ly_margin_keyword {
  margin-bottom: 20px;
}

.ly_margin_keyword_left_indent_50 {
  margin-left: 50px;
}

/* FAQ -------------------------------------------------------------------------------- */

.bl_faqItem2 {
  border-bottom: 1px dashed var(--text-color);
  padding-bottom: 3px;
}

.bl_q_mark_faq {
  display: block;
  font-size: 1.25rem;
  width: 2rem;
  height: 2rem;
  text-align: center;
  margin-right: 1rem;
  color: white;
  background-color: var(--heavy-blue);
  border-radius: 50% 50%;
}

.bl_faqItem2_ttl {
  position: relative;
  z-index: 1;
  font-size: 1.25rem;
  flex: 1;
}

.bl_faqItem2 .bl_faqItem2_ttl::after {
  content: "";
  position: absolute;
  z-index: -1;
  display: block;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--heavy-green-transparent);
  transform: scale(0, 1);
  transform-origin: 0% 50%;
  transition: 0.25s;
}

.bl_faqItem2:hover .bl_faqItem2_ttl::after,
.bl_faqItem2_ttl.is_active::after
{
  transform: scale(1, 1);
}

.bl_arrow_down_faq_small {
  position: relative;
  top: 5px;
  width: 10px;
  border-top: 8px solid var(--text-color);
  border-right: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid transparent;
  transition: border-top 0.25s;
  margin-left: 1rem;
  margin-right: 1rem;
}


.bl_faqItem2:hover .bl_arrow_down_faq_small,
.bl_arrow_down_faq_small.is_active
{
  border-top: 8px solid var(--heavy-green);
}

.bl_faqItem2_body_txt > p {
  font-size: 0.875rem;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 300;
}

.ly_faq_ttl {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ly_margin_faq_ttl {
  margin-left: 20%;
  margin-right: 20%;
}
@media screen and (max-width: 1025px) {
  .ly_margin_faq_ttl {
    margin-left: 5%;
    margin-right: 5%;
  }
}

.ly_faqItem_left {
  display: flex;
  align-items: center;
}

.bl_faqItem2_body {
  max-height: 0;
  min-height: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s;
}

.bl_faqItem2_body.is_active {
  opacity: 1;
  visibility: visible;
}

.bl_faqItem2_body_txt {
  transform: scaleY(0);
  transform-origin: 0% 0%;
  transition: 0.2s;
}

.bl_faqItem2_body_txt.is_active {
  transform: scaleY(1);
}

.el_faq_word_caption {
  margin-bottom: 1rem;
}

.el_faq_word_caption > p {
  font-size: 0.875rem;
  margin-top: 5px;
  margin-left: 30px;
  font-weight: 300;
}

.ly_indent_20 {
  margin-left: 20px;
}



/* Slider -------------------------------------------------------------------------- */
.ly_z_index_100 {
  position: relative;
  z-index: 100;
}

@media screen and (max-width: 768px) {
  .ly_z_index_100{
    position: absolute;
    top: 0;
    width: 100%;
    
  }
  }

.ly_slider_position {
  position: relative;
  top: -162px;
}

.slider {
  position: relative;
  z-index: 1;
  height: 520px;
  
}


.slider-item01 {
  background:url("../images/kuroshio_topmv.webp?250306");
}

@media screen and (max-width:980px) {

  .slider-item01 {
    background:url("../images/kuroshio_topmv_sp.webp?250306")!Important;
    background-position: center ! Important;
    background-size: cover ! Important;
  }

}


.slider-item02 {
  background:url("../images/hero_1.jpg");
}

.slider-item03 {
  background:url("../images/hero_2.jpg");
}

.slider-item04 {
  background:url("../images/hero_3.jpg");
}

.slider-item05 {
  background:url("../images/hero_4.jpg");
}

.slider-item06 {
  background:url("../images/hero_5.jpg");
}

.slider-item {
  width: 100%;
  height: 520px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.arc_wrapper {
  overflow: hidden;
}

.arc {
  border-bottom-left-radius: 2000px 140px;
  border-bottom-right-radius: 2000px 140px;
  overflow: hidden;
  margin-left: -200px;
  margin-right: -200px;
  padding-left: 200px;
  padding-right: 200px;
}

.arc_imageWrapper {
  height: 300px;
}

.arc_imageWrapper > img {
  width: 100%;
  height: 100%;
}

/* Menu Item -------------------------------------------------------------------------------- */

.bl_menuItem {
  display: block;
  width: 160px;
  height: 160px;
  text-decoration: none;
  box-shadow: 0 3px 6px #00000029;
  border: 2px solid var(--text-color);
  border-radius: 5px;
  /* margin: 0 10px 10px; */
  transition: background-color 0.25s, color 0.25s, box-shadow 0.25s, border 0.25s;
}
@media screen and (max-width: 768px) {
  .bl_menuItem {
    width: 100%;
    height: 86px;
    display: flex;
    flex-direction: row-reverse;
  }
}

.bl_menuItem:hover {
  background-color: #fff;
  color: var(--heavy-color);
  /* box-shadow: 0 0 3px var(--gray-color); */
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
  border: 2px solid var(--heavy-color);
}


.bl_menuItem_ttl_wrapper {
  width: 100%;
  height: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--light-green);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  transition: background-color 0.25s;
}
@media screen and (max-width: 768px) {
  .bl_menuItem_ttl_wrapper {
    width: 70%;
    height: 100%;
    justify-content: flex-start;
    padding-left: 30px;
    background-color: white;
    border-top-left-radius: 0;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 5px;
  }
}

.bl_menuItem:hover .bl_menuItem_ttl_wrapper {
  background-color: var(--heavy-green);
}


.bl_menuItem_ttl {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text-color);
  transition: color 0.25s;
}
@media screen and (max-width: 768px) {
  .bl_menuItem_ttl {
    position: relative;
    z-index: 1;
  }
}


@media screen and (max-width: 768px) {
  .bl_menuItem_ttl::after {
    content: "";
    position: absolute;
    z-index: -1;
    display: inline-block;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: var(--heavy-green-transparent);
  }
}


.bl_menuItem_ttl__multiLine {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--text-color);
  transition: color 0.25s;
}
@media screen and (max-width: 768px) {
  .bl_menuItem_ttl__multiLine {
    font-size: 1.25rem;
    position: relative;
    z-index: 1;
  }
}

@media screen and (max-width: 768px) {
  .bl_menuItem_ttl__multiLine::after {
    content: "";
    position: absolute;
    z-index: -1;
    display: inline-block;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: var(--heavy-green-transparent);
  }
}

.bl_menuItem:hover .bl_menuItem_ttl,
.bl_menuItem:hover .bl_menuItem_ttl__multiLine
{
  color: white;
}


.bl_menuItem_icon {
  width: 100%;
  height: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .bl_menuItem_icon {
    width: 30%;
    height: 100%;
    background-color: var(--light-green);
    border-top-left-radius: 5px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 0;
  }
}

.bl_menuItem_imgWrapper {
  width: 93px;
  height: 93px;
}

.bl_menuItem_imgWrapper > img {
  width: 100%;
}

/* Menu Item - Layout -------- */

.ly_menu_row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 42px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .ly_menu_row {
    margin-bottom: 0;
  }
}

.ly_mt_menu {
  margin-top: -110px;
}

.ly_menuItem_ttl_br {
}
@media screen and (max-width: 768px) {
  .ly_menuItem_ttl_br {
    display: none;
  }
}

.ly_mb_menuItem {
}
@media screen and (max-width: 768px) {
  .ly_mb_menuItem {
    margin-bottom: 10px;
  }
}


/* Flow -------------------------------------------------------------------------------- */

.bl_step_1_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bl_step_box_1 {
  width: 460px;
  background-color: white;
  display: flex;
  box-shadow: 3px 3px 6px #00000029;
}
@media screen and (max-width: 768px) {
  .bl_step_box_1 {
    width: 100%;
  }
}

.bl_step_box {
  width: 100%;
  background-color: white;
  display: flex;
  box-shadow: 3px 3px 6px #00000029;
}

.bl_step_left {
  background-color: var(--heavy-green);
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.bl_step_step > h6 {
  color: white;
  font-size: 1.125rem;
  margin-top: 18px;
  margin-left: 10px;
  margin-right: 10px;
}

.bl_step_num {
  position: relative;
  top: -10px;
  margin-left: 10px;
  margin-right: 10px;
}

.bl_step_num > h5 
{
  color: white;
  font-size: 2.25rem;
}

.bl_step_right {
  border-top: 2px dashed var(--text-color);
  border-right: 2px dashed var(--text-color);
  border-bottom: 2px dashed var(--text-color);
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  padding-top: 18px;
  padding-right: 100px;
  padding-bottom: 32px;
  padding-left: 40px;
}
@mEdia screen and (max-width: 768px) {
  .bl_step_right {
    border-top: 2px dashed var(--text-color);
    border-right: 2px dashed var(--text-color);
    border-bottom: 2px dashed var(--text-color);
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    padding-top: 18px;
    padding-right: 20px;
    padding-bottom: 32px;
    padding-left: 20px;
  }
}

.bl_step_ttl {
  font-size: 1.5rem;
  font-weight: 300;
}

.bl_step_ttl_bar {
  width: 100%;
  height: 1px;
  background-color: #9DC742;
}

.bl_step_text_wrapper > p {
  font-size: 0.875rem;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 300;
}


.bl_arrow_down {
  position: relative;
  top: 14px;
  left: 8px;
  width: 10px;
  border-top: 24px solid var(--heavy-blue);
  border-right: 24px solid transparent;
  border-bottom: 24px solid transparent;
  border-left: 24px solid transparent;
}

.bl_arrow_right {
  position: relative;
  left: 13px;
  width: 10px;
  border-top: 24px solid transparent;
  border-right: 24px solid transparent;
  border-bottom: 24px solid transparent;
  border-left: 24px solid var(--heavy-blue);
}


/* info */
.bl_info_box {
  width: 260px;
  height: 260px;
  border-radius: 5px;
  box-shadow: 3px 3px 6px #00000029;
  padding: 10px 20px;
  background-color: white;
}
@media screen and (max-width: 768px) {
  .bl_info_box {
    display: none;
  }
}

.bl_info_box_arrow {
}
@media screen and (max-width: 768px) {
  .bl_info_box_arrow {
    display: none;
  }
}

.bl_info_box_tel {
  text-align: center;
  background-color: white;
}

.bl_info_box_contact {
  background-color: var(--heavy-green);
  border-radius: 5px;
  padding: 3px;
  box-shadow: 3px 3px 6px #00000029;
  /* margin-left: 10px;
  margin-right: 10px; */
}

.el_txt {
  font-size: 0.875rem;
}

.el_txt > p {
  font-size: 0.875rem;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 300;
}

.bl_link_wrapper {
  text-align: right;
}

.el_link {
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 300;
  border-bottom: 1px dashed var(--text-color);
  position: relative;
  z-index: 1;
}

.el_link::before {
  content: "";
  display: inline-block;
  width: 10px;
  border-top: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 4px solid var(--heavy-green);
}

.el_link::after {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: -1;
  background-color: var(--heavy-green-transparent);
  transform: scale(0, 0);
  transform-origin: 0% 50%;
  transition: 0.25s;
}

.el_link:hover::after {
  transform: scale(1, 1);
}


/* Flow - ask button -------------------------------------------------------------------- */

.bl_askBtn_flow {
  text-decoration: none;
  background-color: var(--main-color);
  transition: box-shadow 0.25s;
}

.bl_askBtn_flow:hover {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.bl_askBtn_ttl_flow {
  width: 80%;
  color: white;
  font-size: 0.8125rem;
  letter-spacing: 1px;
  transition: color 0.25s;
}

.bl_askBtn_flow:hover .bl_askBtn_ttl_flow {
  color: var(--text-color);
}


.bl_askBtn_imgWrapper_flow {
  width: 20%;
  display: inline-block;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bl_askBtn_imgWrapper_flow > svg {
  width: 100%;
}

.ly_askBtn_flow {
  display: flex;
}

.ly_askBtn_mt_40 {
  margin-top: 40px;
}


/* Flow -　paper list -------------------------------------------------------------------- */

.bl_info_box_paper {
  border-bottom: 1px dashed var(--text-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative; /* リスト用 */
  z-index: 10;
}

.bl_info_box_paper_ttl {
  display: inline-block;
  font-size: 1rem;
  position: relative; /* 蛍光ペン用 */
  margin-left: 10px;
}

.bl_arrow_down_small {
  position: relative;
  top: 5px;
  width: 10px;
  border-top: 8px solid var(--text-color);
  border-right: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid transparent;
  transition: border-top 0.25s;
}

.bl_info_box_paper:hover .bl_arrow_down_small {
  border-top: 8px solid var(--heavy-green);
}

.bl_paper_list {
  display: none;
}

.bl_info_box_paper:hover > .bl_paper_list {
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 0 3px 0 var(--gray-green-2-color);
}

.bl_paper_item {
  display: inline-block;
  width: 100%;
  text-decoration: none;
  color: var(--gray-color);
  transition: 0.25s;
  background-color: #fff;
  padding: 10px 5px;
  position: relative;
  font-weight: 300;
  top: 5px;
}

.bl_paper_item::after {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--heavy-color);
  transform: scale(0, 0);
  transform-origin: 50% 50%;
  transition: 0.25s;
}

.bl_paper_item:hover {
  background-color: var(--main-color);
  color: white;
}

.bl_paper_item:hover::after {
  transform: scale(1, 1);
}

.ly_paper_mb_5px {
  margin-bottom: 5px;
}


.bl_info_box_paper .bl_info_box_paper_ttl::after {
  content: "";
  position: absolute;
  z-index: -1;
  display: inline-block;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: var(--heavy-green-transparent);
  transform: scale(0, 1);
  transform-origin: 0% 50%;
  transition: 0.25s;
}

.bl_info_box_paper:hover .bl_info_box_paper_ttl::after {
  transform: scale(1, 1);
}


/* Flow -　paper list narrow -------------------------------------------------------------------- */

.bl_info_box_paper_narrow {
  display: none;
}
@media screen and (max-width: 768px) {
  .bl_info_box_paper_narrow {
    border-bottom: 1px dashed var(--text-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative; /* リスト用 */
    z-index: 10;
  }
}

.bl_info_box_paper_narrow_ttl {
  display: inline-block;
  font-size: 1rem;
  position: relative; /* 蛍光ペン用 */
  margin-left: 10px;
}

.bl_arrow_down_small {
  position: relative;
  top: 5px;
  width: 10px;
  border-top: 8px solid var(--text-color);
  border-right: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid transparent;
  transition: border-top 0.25s;
}

.bl_info_box_paper_narrow:hover .bl_arrow_down_small {
  border-top: 8px solid var(--heavy-green);
}

.bl_paper_narrow_list {
  display: none;
}

.bl_info_box_paper_narrow:hover > .bl_paper_narrow_list {
  position: absolute;
  display: block;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 0 3px 0 var(--gray-green-2-color);
}

.bl_paper_narrow_item {
  display: inline-block;
  width: 100%;
  text-decoration: none;
  color: var(--gray-color);
  transition: 0.25s;
  background-color: #fff;
  padding: 10px 5px;
  position: relative;
  font-weight: 300;
  top: 5px;
}

.bl_paper_narrow_item::after {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--heavy-color);
  transform: scale(0, 0);
  transform-origin: 50% 50%;
  transition: 0.25s;
}

.bl_paper_narrow_item:hover {
  background-color: var(--main-color);
  color: white;
}

.bl_paper_narrow_item:hover::after {
  transform: scale(1, 1);
}

.ly_paper_narrow_mb_5px {
  margin-bottom: 5px;
}


.bl_info_box_paper_narrow .bl_info_box_paper_narrow_ttl::after {
  content: "";
  position: absolute;
  z-index: -1;
  display: inline-block;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: var(--heavy-green-transparent);
  transform: scale(0, 1);
  transform-origin: 0% 50%;
  transition: 0.25s;
}

.bl_info_box_paper_narrow:hover .bl_info_box_paper_narrow_ttl::after {
  transform: scale(1, 1);
}
/* FLow - background -------------------------------------------------------------------------------- */

.bl_flow_bg_1 {
  position: relative;
  z-index: -1;
  top: -1320px;
  width: 100%;
  height: 460px;
  background: url("../images/background_blue.svg");
}

.bl_flow_bg_2 {
  position: relative;
  z-index: -1;
  top: -1065px;
  width: 100%;
  height: 460px;
  background: url("../images/background_green.svg");
}

.ly_mb_flow_bg {
  margin-bottom: -920px;
}

/* Top page - Fee -------------------------------------------------------------------------------- */

.bl_section_fee {
  background: url("../images/bg_fee_4.png");
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.bl_inner_fee {
  background-color: rgba(255, 255, 255, 0.95);
  margin-left: 160px;
  margin-right: 160px;
}
@media screen and (max-width: 1025px) {
  .bl_inner_fee {
    background-color: rgba(255, 255, 255, 0.95);
    margin-left: 0;
    margin-right: 0;
  }
}

.ly_margin_fee {
  padding-top: 44px;
  padding-bottom: 44px;
}

.ly_section_fee_2 {
  margin-left: 40px;
  margin-right: 40px;
}

.ly_section_fee_3 {
  margin-left: 140px;
  margin-right: 140px;
}
@media screen and (max-width: 768px) {
  .ly_section_fee_3 {
    margin-left: 20px;
    margin-right: 20px;
  }
}

.ly_pt_40 {
  padding-top: 40px;
}

.ly_pb_40 {
  padding-bottom: 40px;
}

/* News -------------------------------------------------------------------------------- */

.ly_news_section_ttl {
  writing-mode: vertical-rl;
  letter-spacing: 5px;
}
@media screen and (max-width: 768px) {
  .ly_news_section_ttl {
    writing-mode: horizontal-tb;
    letter-spacing: 0;
  }
}

.ly_news {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .ly_news {
    display: block;
  }
}

.ly_news_list {
  width: 90%;
}

.ly_mt_news_list {
}
@media screen and (max-width: 768px) {
  .ly_mt_news_list {
    margin-top: 20px;
  }
}

.ly_mt_news {
  margin-top: 40px;
}

.bl_pagination {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.page-numbers {
  position: relative;
  z-index: 1;
  margin-right: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.125rem;
  width: 30px;
  height: 30px;
  border-bottom: 1px dashed var(--text-color);
  text-decoration: none;
  transition: 0.25s;
  color: var(--gray-color);
}

.page-numbers.current {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.125rem;
  width: 30px;
  height: 30px;
  margin-right: 30px;
  border-bottom: 1px dashed var(--text-color);
  background-color: #fff;
  transition: 0.25s;
}

.page-numbers.current::after
{
  content: "";
  position: absolute;
  z-index: -1;
  display: inline-block;
  bottom: 2px;
  width: 100%;
  height: 7px;
  background-color: var(--heavy-green-transparent);
  transform: scale(1, 1);
  transform-origin: 0% 50%;
  transition: 0.25s;
}

.page-numbers::after
{
  content: "";
  position: absolute;
  z-index: -1;
  display: inline-block;
  bottom: 2px;
  width: 100%;
  height: 7px;
  background-color: var(--heavy-green-transparent);
  transform: scale(0, 1);
  transform-origin: 0% 50%;
  transition: 0.25s;
}


.page-numbers:hover::after
{
  transform: scale(1, 1);
}

.prev,
.next {
  width: 100px;
}


/* Post -------------------------------------------------------------------------- */

.bl_post {
  text-decoration: none;
  display: flex;
  margin-bottom: 18px;
  align-items: center;
}

.bl_post_date {
  position: relative;
  top: 3px;
  font-size: 0.75rem;
  background-color: var(--heavy-blue);
  color: white;
  padding: 1px 5px 0px 5px;
  font-weight: 300;
  font-family: 'Quicksand', sans-serif;
  letter-spacing: 1px;
  border-radius: 0.6rem;
}

.bl_post_ttl_wrapper {
  border-bottom: 1px dashed var(--text-color);
  width: 100%;
  margin-left: 24px;
}

.bl_post_ttl {
  position:relative;
  display: inline-block;
  font-size: 0.825rem;
  font-weight: 300;
}

.bl_post_ttl_wrapper .bl_post_ttl::after {
  content: "";
  position: absolute;
  z-index: -1;
  display: inline-block;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--heavy-green-transparent);
  transform: scale(0, 1);
  transform-origin: 0% 50%;
  transition: 0.25s;
}

.bl_post_ttl_wrapper:hover .bl_post_ttl::after {
  transform: scale(1, 1);
}

/* Post - Single ---------------------------------------- */

.bl_post_ttl_date_single {
  font-size: 1rem;
  font-weight: 300;
}

.bl_post_ttl_single {
  font-size: 1.5rem;
  font-weight: 300;
}


/* Traffic Accident - Link -------------------------------------------------------------------------------- */

.bl_traffic_site_link_inner {
  display: block;
  width: 300px;
  margin: 0 auto;
}

.bl_traffic_site_link_inner > a {
  text-decoration: none;
  color: var(--gray-color);
}

.parent {
  width: 300px;
  height: 124px;
  position: relative;
  overflow: hidden;
}

.bl_traffic_site_link_imgWrapper {
  width: 300px;
  height: 124px;
}

.bl_traffic_site_link_imgWrapper > img {
  width: 100%;
}

.bl_traffic_site_link_inner .mask {
  width: 300px;
  height: 124px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  background-color: rgba(255,255,255,0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all .3s;
}

.bl_traffic_site_link_inner:hover .mask {
  opacity: 1;
}

.bl_traffic_site_caption {
  font-weight: 700;
}


/* Debt -------------------------------------------------------------------------------- */

.bl_debt_flow_imgWrapper {
  width: 100%;
  height: 350px;
}
@media screen and (max-width: 1025px) {
  .bl_debt_flow_imgWrapper {
    width: 100%;
    height: 450px;
  }
}
@media screen and (max-width: 690px) {
  .bl_debt_flow_imgWrapper {
    width: 100%;
    height: 350px;
  }
}

.bl_debt_flow_imgWrapper > img {
  width: 100%;
}


/* Challenged - Table -------------------------------------------------------------------------------- */

.ly_cell_center_center {
  font-size: 0.75rem;
  text-align: center;
  vertical-align: middle;
}

.ly_cell_left_top {
  font-size: 0.75rem;
  text-align: left;
  vertical-align: top;
}

.th_bgcolor {
  background-color: #ED7c30;
  color: white;
}

.td_bgcolor_1 {
  background-color: #F9D6CD;
}
.td_bgcolor_2 {
  background-color: #FCECE7;
}

table {
  table-layout:fixed;
  width:100%;
}

table th,
table td {
  padding: 5px;
}

table th {
  color: white;
}


/* bl_fee -------------------------------------------------------------------------------- */

.bl_fee {
}

.bl_fee > *:last-child {
  padding: 1rem 0 1rem 0;
}

.bl_fee_ttl {
  border-bottom: 1px dashed var(--text-color);
  font-size: 1.5rem;
  color: var(--heavy-blue);
  font-weight: 300;
}

.hp_quote {
  font-size: 1rem;
}

.bl_fee_lv2_ttl {
  font-size: 1.125rem;
  color: var(--gray-color);
}

.bl_fee_list_item {
  border-bottom: 2px solid var(--gray-green-2-color);
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.bl_fee_list_item_ttl {
  font-size: 1rem;
  color: var(--gray-color);
  flex: 1;
  padding: 0 2% 0 2%;
  
}


.bl_fee_list_item_ttl_irregular {
  font-size: 1rem;
  color: var(--gray-color);
  padding: 0 2% 0 2%;
  width: 30%;
}


.bl_fee_list_item_fee {
  font-size: 1rem;
  color: var(--light-color);
  flex: 1;
  padding: 0 2% 0 2%;
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* 右揃え */
  font-size: 16px; /* デフォルトのフォントサイズ */
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .bl_fee_list_item_fee {
    font-size: 14px; /* スマホやタブレットでのフォントサイズ調整 */
    line-height: 1.4; /* 行間調整 */
  }
}

.bl_fee_list_item_fee span {
  color: var(--light-color);
  display: block; /* 行ごとに分ける */
  word-break: break-word; /* 単語が行を超えないようにする */
}

.bl_fee_list_item_fee_1col {
font-size: 1rem;
  color: var(--light-color);
  padding: 0 2% 0 2%;
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* 右揃え */
  font-size: 16px; /* デフォルトのフォントサイズ */
}


.bl_table_note {
  color: var(--text-color);
  font-size: 0.875rem;
  margin-left: 2rem;
}


/* bl_fee_table -------------------------------------------------------------------------------- */

.bl_fee_table > table {
  border-collapse: collapse;
}

.bl_fee_table > table th {
  padding: 10px 40px;
  border-bottom: 2px solid var(--light-color);
  font-size: 1.125rem;
  color: var(--heavy-color);
}
@media screen and (max-width: 690px) {
  .bl_fee_table > table th {
    padding: 0 0;
    font-size: 1rem;
  }
}

.bl_fee_table > table td {
  padding: 10px 40px;
  border-bottom: 2px solid var(--gray-green-2-color);
  color: var(--light-color);
  font-size: 1.125rem;
}
@media screen and (max-width: 690px) {
  .bl_fee_table > table td {
    padding: 0 0;
    font-size: 1rem;
  }
}

.bl_fee_table > table td:first-child {
  padding: 10px;
  border-bottom: 2px solid var(--gray-green-2-color);
  color: var(--gray-color);
}

.bl_fee_table > table td:nth-child(3n) {
  border-left:dotted 2px #B4BEB2;
}
/* bl_philosophy -------------------------------------------------------------------------------- */

.bl_philosophy {
  border-top: 1px solid var(--text-color);
  border-bottom: 1px solid var(--text-color);
}

.ly_philosophy {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 690px) {
  .ly_philosophy {
    display: block;
  }
}

.bl_philosophy_ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
}
@media screen and (max-width: 690px) {
  .bl_philosophy_ttl {
    padding: 10px;
  }
}

.bl_philosophy_ttl_base {
  /* background-color: var(--heavy-green); */
  border: 1px solid var(--text-color);
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 1025px) {
  .bl_philosophy_ttl_base {
    width: 150px;
    height: 150px;
  }
}

.bl_philosophy_ttl_inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.bl_philosophy_ttl_main {
  position: relative;
  font-size: 32px;
  font-weight: 300;
  margin-top: -10px;
  margin-bottom: 10px;
  color: var(--text-color);
}
@media screen and (max-width: 1025px) {
  .bl_philosophy_ttl_main {
    font-size: 2rem;
  }
}

.bl_philosophy_ttl_main::before {
  content: "";
  position: absolute;
  z-index: -1;
  display: inline-block;
  bottom: 3px;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: var(--heavy-green-transparent);
  transform: scale(1, 1);
  transform-origin: 0% 50%;
  transition: 0.25s;

}

.bl_philosophy_ttl_sub {
  font-size: 14px;
  font-weight: 300;
  border-bottom: 2px solid var(--text-color);
  color: var(--text-color);
  padding-bottom: 3px;
  margin-top: -10px;
}
@media screen and (max-width: 1025px) {
  .bl_philosophy_ttl_sub {
    font-size: 1rem;
  }
}

.bl_philosophy_list_item {
  display: flex;
  align-items: center;
  color: var(--text-color);
}
@media screen and (max-width: 768px) {
  .bl_philosophy_list_item {
    padding-left: 10%;
    padding-right: 10%;
  }
}

.bl_philosophy_list_item_num {
  font-size: 36px;
  font-weight: 300;
  margin-right: 20px;
  color: var(--text-color);
}
@media screen and (max-width: 1025px) {
  .bl_philosophy_list_item_num {
    font-size: 2rem;
  }
}

.bl_philosophy_list_item_ttl {
  font-size: 1.5rem;
  font-weight: 300;
  border-bottom: 1px dashed var(--text-color);
}
@media screen and (max-width: 1025px) {
  .bl_philosophy_list_item_ttl {
    font-size: 1.25rem;
  }
}

.bl_philosophy_txt {
  text-align: center;
  line-height: 2.125rem;
  font-size: 1.125rem;
  color: var(--text-color);
}

/* bl_philosophy -------------------------------------------------------------------------------- */

.bl_office_interior {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1025px) {
  .bl_office_interior {
    display: block;
  }
}

.bl_office_interior_item {
  width: 380px;
  height: 300px;
}
@media screen and (max-width: 1025px) {
  .bl_office_interior_item {
    width: 100%;
    height: 100%;
  }
}

.bl_office_interior_item_imgWrapper > img {
  width: 380px;
  height: 300px;
  object-fit: cover;
  object-position: 50% 50%;
  vertical-align: middle;
}
@media screen and (max-width: 1025px) {
  .bl_office_interior_item_imgWrapper > img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: 50% 50%;
  }
}

.bl_office_interior_item.bl_office_interior_left {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  overflow: hidden;
}

.bl_office_interior_item.bl_office_interior_right {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  overflow: hidden;
}

@media screen and (max-width: 1025px) {
  .bl_office_interior_item.bl_office_interior__double_topleft.bl_office_interior_top,
  .bl_office_interior_item.bl_office_interior__double_topright.bl_office_interior_top,
  .bl_office_interior_item.bl_office_interior_left.bl_office_interior_top,
  .bl_office_interior_item.bl_office_interior_right.bl_office_interior_top {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 0;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 0;
  }

  .bl_office_interior_item.bl_office_interior__double_topleft.bl_office_interior_middle,
  .bl_office_interior_item.bl_office_interior__double_topright.bl_office_interior_middle,
  .bl_office_interior_item.bl_office_interior_left.bl_office_interior_middle,
  .bl_office_interior_item.bl_office_interior_right.bl_office_interior_middle {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .bl_office_interior_item.bl_office_interior__double_topleft.bl_office_interior_bottom,
  .bl_office_interior_item.bl_office_interior__double_topright.bl_office_interior_bottom,
  .bl_office_interior_item.bl_office_interior_left.bl_office_interior_bottom,
  .bl_office_interior_item.bl_office_interior_right.bl_office_interior_bottom {
    border-top-left-radius: 0;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 10px;
  }
}

.bl_office_interior_item_caption {
  background-color: var(--light-green);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--text-color);
}

.bl_office_interior_item_caption_inner {
  padding: 10px;
}

.bl_office_interior_item_ttl {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 300;
}

.bl_office_interior_item_txt {
  font-size: 1rem;
  line-height: 2rem;
  font-weight: 300;
}
@media screen and (max-width: 1025px) {
  .bl_office_interior_item_txt {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.bl_office_interior_bar {
  margin-top: 50px;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
  width: 100px;
  height: 1px;
  text-align: center;
  background-color: var(--gray-color);
}

.bl_office_interior__double_top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
@media screen and (max-width: 1025px) {
  .bl_office_interior__double_top {
    display: block;
    margin-bottom: 0;
  }
}

.bl_office_interior__double_topleft {
  border-top-left-radius: 10px;
  overflow: hidden;
}

.bl_office_interior__double_topright {
  border-top-right-radius: 10px;
  overflow: hidden;
}

.bl_office_interior__double_bottom {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  overflow: hidden;
  height: 300px;
}

.ly_reverse {
  flex-direction: row-reverse;
}

/* el_office_txt -------------------------------------------------------------------------------- */

.el_office_txt > span {
  position: relative;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 2px;
  color: var(--text-color);
  text-align: center;
  line-height: 2rem;
}

.el_office_txt {
  min-width: 490px;
}
@media screen and (max-width: 768px) {
  .el_office_txt {
    text-align: left;
    font-size: 1.5rem;
    line-height: 2.25rem;
  }
}

.el_office_txt > span::before {
  content: "";
  position: absolute;
  z-index: -1;
  display: inline-block;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 7px;
  background-color: var(--heavy-green-transparent);
  transform: scale(1, 1);
  transform-origin: 0% 50%;
  transition: 0.25s;

}

.ly_office_txt_br {
  display: none;
}
@media screen and (max-width: 690px) {
  .ly_office_txt_br {
    display: block;
  }
}

/* input -------------------------------------------------------------------------------- */

input[type="text"] {
  border: 1px solid var(--text-color);
  width: 100%;
  height: 2rem;
  border-radius: 5px;
  font-size: 1rem;
}

.hp_box {
  border: 1px solid var(--text-color);
  width: 100%;
  height: 2rem;
  border-radius: 5px;
  font-size: 1rem;
}

.hp_textarea {
  border: 1px solid var(--text-color);
  width: 100%;
  height: 10rem;
  border-radius: 5px;
  font-size: 1rem;
}

.radio-input > span > label > input {
  display: none;
}

.radio-input > span > label > input + span {
  padding-left: 30px;
  position: relative;
  margin-right: 20px;
  font-size: 1.125rem;
  color: var(--text-color);
}

.radio-input > span > label > input + span::before,
.radio-input > span > label > input + input + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 0;
  width: 18px;
  height: 18px;
  border: 1px solid var(--gray-color);
  border-radius: 50%;
}

.radio-input > span > label > input:checked + span::after,
.radio-input > span > label > input:checked + input + span::after {
  content: "";
  display: block;
  position: absolute;
  top: 9px;
  left: 5px;
  width: 10px;
  height: 10px;
  background-color: var(--heavy-blue);
  border-radius: 50%;
}

.input_ttl {
  border-left: 8px solid var(--light-blue);
  padding-left: 10px;
  font-size: 1.25rem;
  margin-top: 40px;
  margin-bottom: 10px;
  color: var(--text-color);
  font-weight: 400;
  margin-left: -2rem;
}
@media screen and (max-width: 768px) {
  .input_ttl {
    margin-left: 0;
  }
}

.send {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.125rem;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 5px;
  background-color: var(--heavy-green);
  text-decoration: none;
  transition: 0.25s;
  color: var(--text-color);
}

.send:hover {
  border: 1px solid var(--text-color);
  color: var(--text-color);
  background-color: #fff;
}

.bl_privacy_link {
  font-size: 1rem;
  text-decoration: none;
  font-weight: 300;
}

.bl_privacy_link_text_wrapper {
  border-bottom: 2px dashed var(--text-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bl_privacy_link_text_wrapper > p {
  position: relative;
}

.bl_privacy_link_text_wrapper > p:after {
  content: "";
  position: absolute;
  z-index: -1;
  display: block;
  bottom: 2px;
  width: 100%;
  height: 7px;
  background-color: var(--heavy-green-transparent);
  transform: scale(0, 1);
  transform-origin: 0% 50%;
  transition: 0.25s;
}

.bl_privacy_link_text_wrapper:hover > p:after {
  transform: scale(1, 1);
}

.bl_arrow_right_small {
  width: 10px;
  height: 10px;
  border-top: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid var(--text-color);
  transition: border-left 0.25s;
  margin-left: 1rem;
  margin-right: 1rem;
}


.bl_privacy_link_text_wrapper:hover .bl_arrow_right_small
{
  border-left: 8px solid var(--heavy-green);
}


/* Lawyer -------------------------------------------------------------------------------- */

.bl_lawyer_list {
  display: flex;
  justify-content: space-between;
}

.bl_lawyer_list_item {
  width: 250px;
}

.bl_lawyer_list_item > a {
  text-decoration: none;
  color: var(--gray-color);
}

.bl_lawyer_list_item_wrapper {
  display: flex;
  align-items: center;
}

.bl_lawyer_list_name {
  font-weight: 300;
  margin-left: 10px;
  border-bottom: 1px dashed var(--text-color);
}

.bl_list_imgWrapper {
  width: 100px;
  border-radius: 50%;
  overflow: hidden;
  transition: box-shadow 0.25s;
}

.bl_list_imgWrapper > img {
  width: 100%;
  vertical-align: bottom;
}

.bl_lawyer_list_item:hover .bl_list_imgWrapper {
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}


.bl_lawyer_list_arrow {
  width: 15px;
  border-top: 10px solid var(--text-color);
  border-right: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid transparent;
  margin: 5px auto;
  transition: boader-top 0.25s;
}

.bl_lawyer_list_item:hover .bl_lawyer_list_arrow{
  border-top: 10px solid var(--heavy-green);
}

/* new -------- */

.bl_lawyer_list_new {
  display: flex;
  justify-content: center;
  gap: 0px 48px;
}
@media screen and (max-width: 768px) {
  .bl_lawyer_list_new {
    gap: 0px 1rem;
  }
}

.bl_lawyer_list_link_new {
  text-decoration: none;
}

.bl_lawyer_list_item_imgWrapper_new {
  width: 200px;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  transition: box-shadow 0.25s;
}
@media screen and (max-width: 768px) {
  .bl_lawyer_list_item_imgWrapper_new {
    width: 150px;
  }
}

.bl_lawyer_list_item_new:hover .bl_lawyer_list_item_imgWrapper_new {
  box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.3);
}

.bl_lawyer_list_item_imgWrapper_new > img {
  width: 100%;
  vertical-align: top;
}

.bl_lawyer_list_name_new {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px dashed var(--text-color);
}

.ly_lawyer_list_left {
  display: flex;
  align-items: center;
  gap: 0px 10px;
}

.bl_lawyer_list_name_main_new {
  position: relative;
  font-weight: 300;
  font-size: 1.25rem;
}
@media screen and (max-width: 768px) {
  .bl_lawyer_list_name_main_new {
    font-size: 1rem;
  }
}

.bl_lawyer_list_name_main_new::after {
  content: "";
  position: absolute;
  z-index: -1;
  display: block;
  bottom: 2px;
  width: 100%;
  height: 7px;
  background-color: var(--heavy-green-transparent);
  transform: scale(0, 1);
  transform-origin: 0% 50%;
  transition: 0.25s;
}

.bl_lawyer_list_item_new:hover .bl_lawyer_list_name_main_new::after {
  transform: scale(1, 1);
}

.bl_lawyer_list_name_sub_new {
  font-weight: 300;
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  .bl_lawyer_list_name_sub_new {
    font-size: 0.75rem;
  }
}

.bl_lawyer_list_arrow_down {
  position: relative;
  top: 5px;
  width: 8px;
  border-top: 8px solid var(--text-color);
  border-right: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid transparent;
  margin-left: 10px;
  margin-right: 10px;
  transition: border-top 0.25s;
}

.bl_lawyer_list_item_new:hover .bl_lawyer_list_arrow_down {
  border-top: 8px solid var(--heavy-green);
}

/* bl_portrait -------------------------------------------------------------------------------- */

.bl_portrait {
  display: flex;
  align-items: baseline;
  color: var(--gray-color);
}
@media screen and (max-width: 690px) {
  .bl_portrait {
    display: block;
    width: 360px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.bl_portrait_imgWrapper {
  width: 360px;
  /* border: 1px solid var(--text-color); */
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 768px) {
  .bl_portrait_imgWrapper {
    width: 100%;
    box-shadow: none;
  }
}

.bl_portrait_imgWrapper > img {
  width: 100%;
  vertical-align: bottom;
}

.bl_portrait_name {
  position: relative;
  width: 400px;
  height: 100px;
  background-color: white;
  left: -15px;
  bottom: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .bl_portrait_name {
    width: 100%;
    max-width: 100%;
    height: 100px;
    top: 10px;
    left: 0;
  }
}

.bl_portrait_name::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 50%;
  height: 100%;
  border-top: 1px solid var(--text-color);
  border-left: 1px solid var(--text-color);
}

.bl_portrait_name::after {
  position: absolute;
  right: 0;
  bottom: 0;
  content: "";
  display: block;
  width: 50%;
  height: 100%;
  border-bottom: 1px solid var(--text-color);
  border-right: 1px solid var(--text-color);
}

.bl_portrait_name_inner {
  display: block;
  text-align: center;
}

.bl_portrait_name_main {
  display: flex;
  align-items:baseline;
}

.hp_lawyer_name {
  position: relative;
  z-index: 1;
  font-size: 1.75rem;
  font-weight: 300;
}
@media screen and (max-width: 1025px) {
  .hp_lawyer_name {
    font-size: 1.75rem;
  }
}

.hp_lawyer_name:after {
  content: "";
  position: absolute;
  z-index: -1;
  display: block;
  bottom: 2px;
  width: 100%;
  height: 7px;
  background-color: var(--heavy-green-transparent);
  transform: scale(1, 1);
  transform-origin: 0% 50%;
  transition: 0.25s;
}

.hp_lawyer {
  font-size: 1.25rem;
  font-weight: 300;
  margin-right: 12px;
}
@media screen and (max-width: 1025px) {
  .bl_portrait_name_main > .hp_lawyer {
    font-size: 1.25rem;
  }
}

.bl_portrait_name_eng {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 2px;
}
@media screen and (max-width: 1025px) {
  .bl_portrait_name_eng {
    font-size: 1rem;
  }
}


/* Arrow -------------------------------------------------------------------------------- */

.js-scroll-fadein {
  transition: opacity 1s;
  visibility: hidden;
  opacity: 0;
}

.js-scroll-fadein.is-fadein {
  visibility: visible;
  opacity: 1;
}


/* Anchor -------------------------------------------------------------------------------- */

.hp_anchor_for_header {
  display: block;
  margin-top:-120px;
  padding-top:120px;
}