@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
*,
::before,
::after {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

::marker {
  color: #7A1433;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 20px;
}

@media screen and (min-width: 768px) {
  html {
    scroll-padding-top: 200px;
  }
}

html,
body {
  color: #000000;
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
}

img {
  height: auto;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.sp-hidden {
  display: none;
}

@media screen and (min-width: 1200px) {
  .sp-hidden {
    display: block;
  }
}

.list-none {
  list-style: none;
}

h1 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin: 0;
}

@media screen and (min-width: 1200px) {
  h1 {
    font-size: 1.5rem;
  }
}

h2 {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
}

@media screen and (min-width: 1200px) {
  h2 {
    font-size: 1.25rem;
  }
}

h3 {
  font-size: 1.125rem;
  font-weight: 500;
}

p {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.8;
}

a {
  -webkit-transition: all .3s;
  transition: all .3s;
}

a:hover {
  opacity: .8;
}

.mb10 {
  margin-bottom: 10px;
}

.global-header {
  position: relative;
  width: 100%;
}

.global-header-inner {
  background: -webkit-gradient(linear, left top, left bottom, from(#9B3A5A), to(#52262F));
  background: linear-gradient(180deg, #9B3A5A, #52262F);
  color: #fff;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}

.global-header-inner-content {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 80px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  max-width: 1240px;
  padding: 0 20px;
  position: relative;
}

@media screen and (min-width: 1200px) {
  .global-header-inner-content {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}

@media screen and (max-width: 768px) {
  .global-header-inner-content .btn {
    display: none;
  }
}

@media screen and (max-width: 1199px) {
  .global-header-inner-content .btn {
    padding-right: 60px;
  }
}

.global-header-inner-content .btn a {
  border: 1px solid #fff;
  border-radius: 50vh;
  cursor: pointer;
  display: inline-block;
  line-height: 32px;
  min-width: 152px;
  text-align: center;
}

.global-header-inner-content .btn a:hover {
  opacity: .8;
}

@media screen and (max-width: 768px) {
  .header-logo h1 {
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 768px) {
  .header-logo p {
    font-size: 0.75rem;
  }
}

.hamburger {
  position: fixed;
  top: 16px;
  right: 20px;
  z-index: 100;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
}

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

.hamburger .hamburger__line {
  position: absolute;
  left: 11px;
  width: 26px;
  height: 2px;
  background-color: #fff;
  -webkit-transition: all .4s;
  transition: all .4s;
}

.hamburger .hamburger__line:nth-of-type(1) {
  top: 14px;
}

.hamburger .hamburger__line:nth-of-type(2) {
  top: 23px;
}

.hamburger .hamburger__line:nth-of-type(3) {
  top: 32px;
}

.hamburger.active .hamburger__line:nth-of-type(1) {
  -webkit-transform: translateY(9px) rotate(-45deg);
          transform: translateY(9px) rotate(-45deg);
}

.hamburger.active .hamburger__line:nth-of-type(2) {
  opacity: 0;
}

.hamburger.active .hamburger__line:nth-of-type(3) {
  -webkit-transform: translateY(-9px) rotate(45deg);
          transform: translateY(-9px) rotate(45deg);
}

@media screen and (max-width: 1199px) {
  .global-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: -webkit-gradient(linear, left top, left bottom, from(#9B3A5A), to(#52262F));
    background: linear-gradient(180deg, #9B3A5A, #52262F);
    -webkit-box-shadow: 2px 0 4px rgba(0, 0, 0, 0.1);
            box-shadow: 2px 0 4px rgba(0, 0, 0, 0.1);
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform .4s;
    transition: -webkit-transform .4s;
    transition: transform .4s;
    transition: transform .4s, -webkit-transform .4s;
    z-index: 90;
  }
}

.global-nav.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.global-nav-list {
  display: block;
  padding: 100px 0 0;
}

@media screen and (min-width: 1200px) {
  .global-nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
  }
}

@media screen and (max-width: 1199px) {
  .global-nav-list li {
    padding: 15px 0;
  }
}

.global-nav-list li a {
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.5;
  padding: 0 15px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.global-nav-list li a:hover {
  opacity: .8;
}

.global-nav-list li.btn {
  display: block;
  margin: 0 0 0 20px;
}

@media screen and (min-width: 1200px) {
  .global-nav-list li.btn {
    display: none;
  }
}

.global-footer {
  background: -webkit-gradient(linear, left top, left bottom, from(#9B3A5A), to(#52262F));
  background: linear-gradient(180deg, #9B3A5A, #52262F);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 30px 20px;
}

.global-footer-inner {
  color: #fff;
  margin: 0 auto;
  max-width: 1240px;
}

@media screen and (min-width: 1200px) {
  .global-footer-inner-content {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.global-footer-inner-content .footer-logo {
  display: inline-block;
  min-width: 240px;
  font-weight: 600;
  margin-right: 60px;
}

@media screen and (max-width: 1199px) {
  .global-footer-inner-content .footer-logo {
    display: block;
    margin-bottom: 20px;
  }
}

.global-footer-inner-content .footer-logo p {
  font-size: 1.25rem;
}

.global-footer-inner-content .footer-logo span {
  font-size: 0.75rem;
  word-break: keep-all;
}

.footer-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0;
  row-gap: 10px;
}

.footer-nav-list li {
  font-size: 0.75rem;
}

@media screen and (max-width: 768px) {
  .footer-nav-list li {
    width: 50%;
  }
}

.footer-nav-list li:not(:last-child) {
  border-right: 1px solid #fff;
}

@media screen and (max-width: 768px) {
  .footer-nav-list li:not(:last-child) {
    border: none;
  }
}

@media screen and (max-width: 1199px) {
  .footer-nav-list li:first-child a {
    padding-left: 0;
  }
}

.footer-nav-list li a {
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.5;
  padding: 0 20px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media screen and (max-width: 768px) {
  .footer-nav-list li a {
    padding-left: 0;
  }
}

.footer-nav-list li a:hover {
  opacity: .8;
}

.copyright {
  margin-top: 30px;
  text-align: center;
}

.content-wrapper {
  padding: 80px 0 0;
}

.content {
  margin: 0 auto;
  max-width: 1240px;
  padding: 10px 10px;
}

@media screen and (min-width: 768px) {
  .content {
    padding: 40px 20px 60px;
  }
}

#loadingLogo {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: #fff;
  z-index: 10000;
  display: none;
}

@media screen and (max-width: 768px) {
  #loadingLogo {
    height: 100dvh;
  }
}

#loadingLogo.show {
  display: block;
  -webkit-animation: fadein-keyframes 1s ease 2.5s 1 forwards;
          animation: fadein-keyframes 1s ease 2.5s 1 forwards;
}

#loadingLogo .loading-anime-img {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 280px;
}

@-webkit-keyframes fadein-keyframes {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadein-keyframes {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.mainBlock-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
}

@media screen and (min-width: 768px) {
  .mainBlock-inner {
    -webkit-column-gap: 20px;
            column-gap: 20px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media screen and (min-width: 1200px) {
  .mainBlock-inner {
    -webkit-column-gap: 40px;
            column-gap: 40px;
  }
}

@media screen and (min-width: 768px) {
  .mainBlock-inner-content {
    width: 50%;
  }
}

@media screen and (min-width: 1200px) {
  .mainBlock-inner-content {
    width: 50%;
  }
}

.mainBlock-inner .mainBlock-img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .mainBlock-inner .mainBlock-img {
    width: 50%;
  }
}

@media screen and (min-width: 1200px) {
  .mainBlock-inner .mainBlock-img {
    width: 580px;
  }
}

.mainBlock-inner .mainBlock-img .slider-item {
  width: 100%;
}

.mainBlock-inner .mainBlock-img .slider-item img {
  width: 100%;
}

.mainBlock-inner .mainBlock-img .slick-arrow {
  display: none !important;
}

.card-wrapper {
  -webkit-column-gap: 10px;
          column-gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 10px;
}

@media screen and (min-width: 768px) {
  .card-wrapper {
    -webkit-column-gap: 20px;
            column-gap: 20px;
    row-gap: 20px;
  }
}

.card-wrapper .card {
  background-color: #fff;
  -webkit-box-shadow: 0px 2px 12px #f2f2f2;
          box-shadow: 0px 2px 12px #f2f2f2;
  overflow: hidden;
  position: relative;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.card-wrapper .card::before {
  content: "";
  display: block;
  padding-top: 100%;
}

.card-wrapper .card::after {
  background: -webkit-gradient(linear, left top, left bottom, from(#9B3A5A), to(#52262F));
  background: linear-gradient(180deg, #9B3A5A, #52262F);
  content: "";
  height: 100%;
  left: 0px;
  position: absolute;
  top: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  width: 100%;
  z-index: 1;
}

.card-wrapper .card-inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0px;
  padding: 20px;
  position: absolute;
  top: 0px;
  z-index: 2;
  width: 100%;
}

.card-wrapper .card-inner h2 {
  position: relative;
  display: inline-block;
  font-size: 0.875rem;
  vertical-align: middle;
}

@media screen and (min-width: 768px) {
  .card-wrapper .card-inner h2 {
    font-size: 1.125rem;
  }
}

.card-wrapper .card-inner h2::before, .card-wrapper .card-inner h2::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -16px;
  margin: auto;
  content: "";
  vertical-align: middle;
}

.card-wrapper .card-inner h2::before {
  left: -22px;
  width: 12px;
  height: 1px;
  background: #7A1433;
}

.card-wrapper .card-inner h2::after {
  border-right: 1px solid #7A1433;
  border-top: 1px solid #7A1433;
  height: 6px;
  left: -16px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 6px;
}

.card-wrapper .card-inner p {
  line-height: 1.3;
}

@media screen and (max-width: 768px) {
  .card-wrapper .card-inner p {
    font-size: 0.75rem;
  }
}

.card-wrapper .card-inner p:last-child {
  margin-top: 10px;
}

.card_hover .card:hover {
  color: #fff;
  opacity: 1;
}

.card_hover .card:hover::after {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.card_hover .card:hover h2::before {
  background: #fff;
}

.card_hover .card:hover h2::after {
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
}

.card_hover .card:hover ul li {
  color: #fff;
}

.card_hover .card:hover ul li::marker {
  color: #fff;
}

.mainBlock-inner-content {
  -webkit-column-gap: 10px;
          column-gap: 10px;
  row-gap: 10px;
}

@media screen and (min-width: 768px) {
  .mainBlock-inner-content {
    -webkit-column-gap: 20px;
            column-gap: 20px;
    row-gap: 20px;
  }
}

.mainBlock-inner-content .card {
  width: calc(50% - 5px);
}

@media screen and (min-width: 768px) {
  .mainBlock-inner-content .card {
    width: calc(50% - 10px);
  }
}

.page_card {
  -webkit-column-gap: 10px;
          column-gap: 10px;
  row-gap: 10px;
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .page_card {
    -webkit-column-gap: 30px;
            column-gap: 30px;
    row-gap: 30px;
  }
}

.page_card .card {
  width: calc(50% - 5px);
}

@media screen and (min-width: 768px) {
  .page_card .card {
    width: calc(25% - 25px);
  }
}

.page_card .card p:last-child {
  font-size: 0.75rem;
  text-align: center;
}

.case_detail_card {
  -webkit-column-gap: 10px;
          column-gap: 10px;
  margin-top: 40px;
  row-gap: 10px;
}

@media screen and (min-width: 768px) {
  .case_detail_card {
    -webkit-column-gap: 30px;
            column-gap: 30px;
    row-gap: 30px;
  }
}

.case_detail_card .card {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .case_detail_card .card {
    width: calc((100% / 3) - 20px);
  }
}

.case_detail_card .card::before {
  padding-top: 60%;
}

@media screen and (min-width: 768px) {
  .case_detail_card .card::before {
    padding-top: 80%;
  }
}

.case_detail_card .card ul {
  list-style: disc;
}

@media screen and (max-width: 768px) {
  .case_detail_card .card ul {
    width: 90%;
  }
}

.case_detail_card .card ul::marker {
  color: #7A1433;
}

.case_detail_card .card ul li {
  margin-top: 5px;
  color: #000000;
  font-size: 0.75rem;
}

@media screen and (min-width: 768px) {
  .case_detail_card .card ul li {
    font-size: 0.875rem;
    margin-top: 10px;
  }
}

.jikenbo-list .card {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .jikenbo-list .card {
    width: calc(50% - 15px);
  }
}

@media screen and (min-width: 1200px) {
  .jikenbo-list .card {
    width: calc(25% - 25px);
  }
}

@media screen and (max-width: 768px) {
  .jikenbo-list .card::before {
    padding-top: 60%;
  }
}

.jikenbo-list .card-inner {
  -webkit-box-pack: stretch;
      -ms-flex-pack: stretch;
          justify-content: stretch;
  padding: 60px 20px 20px;
}

.lead {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 60px 0;
  row-gap: 10px;
}

@media screen and (min-width: 1200px) {
  .lead {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 30px;
            column-gap: 30px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.lead h2 {
  border-left: 5px solid #7A1433;
  padding-left: 20px;
  white-space: inherit;
}

@media screen and (min-width: 1200px) {
  .lead h2 {
    white-space: nowrap;
  }
}

.subBlock {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-column-gap: 25px;
          column-gap: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 40px;
}

@media screen and (min-width: 1200px) {
  .subBlock {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.subBlock-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .subBlock-content {
    -webkit-column-gap: 20px;
            column-gap: 20px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media screen and (min-width: 1200px) {
  .subBlock-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 45%;
  }
}

.subBlock-content-inner {
  -webkit-box-shadow: 0px 2px 12px #f2f2f2;
          box-shadow: 0px 2px 12px #f2f2f2;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: 16px;
  padding: 20px 10px;
}

@media screen and (min-width: 1200px) {
  .subBlock-content-inner {
    padding: 20px 20px;
  }
}

.subBlock-content-inner h2 {
  font-size: 0.875rem;
  margin-bottom: 15px;
}

.subBlock-content-inner p {
  font-size: 0.75rem;
  line-height: 1.2;
}

.subBlock_left {
  width: 100%;
}

@media screen and (min-width: 1200px) {
  .subBlock_left {
    width: 55%;
  }
}

.subBlock_left h2 {
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.subBlock_left dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 20px 0;
}

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

.subBlock_left dl:nth-of-type(1) {
  padding: 0 0 20px;
}

.subBlock_left dl:last-child {
  padding: 20px 0 0;
}

.subBlock_left dl:not(:last-child) {
  border-bottom: 1px solid #ddd;
}

.subBlock_left dl dt {
  color: #999;
  font-size: 0.75rem;
  width: 15%;
}

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

@media screen and (min-width: 1200px) {
  .subBlock_left dl dt {
    width: 15%;
  }
}

.subBlock_left dl dd {
  color: #9B3A5A;
  font-size: 0.875rem;
  width: 85%;
}

@media screen and (min-width: 1200px) {
  .subBlock_left dl dd {
    width: 85%;
  }
}

.subBlock_right {
  text-align: center;
}

.subBlock_right h2 {
  display: inline-block;
  position: relative;
}

.subBlock_right h2::before, .subBlock_right h2::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -16px;
  margin: auto;
  content: "";
  vertical-align: middle;
}

.subBlock_right h2::before {
  left: -22px;
  width: 12px;
  height: 1px;
  background: #7A1433;
}

.subBlock_right h2::after {
  border-right: 1px solid #7A1433;
  border-top: 1px solid #7A1433;
  height: 6px;
  left: -16px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 6px;
}

.subBlock_right p {
  text-align: left;
}

.subBlock .chat {
  overflow: hidden;
  position: relative;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.subBlock .chat a {
  position: relative;
  z-index: 2;
}

.subBlock .chat:hover {
  color: #fff;
}

.subBlock .chat:hover::after {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.subBlock .chat:hover h2::before {
  background: #fff;
  z-index: 2;
}

.subBlock .chat:hover h2::after {
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  z-index: 2;
}

.subBlock .chat::after {
  background: -webkit-gradient(linear, left top, left bottom, from(#9B3A5A), to(#52262F));
  background: linear-gradient(180deg, #9B3A5A, #52262F);
  content: "";
  height: 100%;
  left: 0px;
  position: absolute;
  top: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  width: 100%;
  z-index: 1;
}

.page_title {
  border-left: 5px solid #7A1433;
  margin-bottom: 20px;
  padding-left: 20px;
}

@media screen and (min-width: 768px) {
  .page_title {
    margin-bottom: 40px;
  }
}

.page_title:not(:nth-of-type(1)) {
  margin-top: 60px;
}

.page_title h2 {
  font-size: 1.25rem;
}

@media screen and (min-width: 768px) {
  .page_title h2 {
    font-size: 2rem;
  }
}

.page_title p {
  font-size: 0.75rem;
}

@media screen and (min-width: 768px) {
  .page_title p {
    font-size: 0.875rem;
  }
}

.list_decimal {
  font-size: 0.875rem;
  line-height: 1.5;
  margin-top: 40px;
}

.list_decimal li {
  padding-left: 2.5em;
  text-indent: -2.5em;
}

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

.back_white {
  background: #F5F3F3;
}

.back_white_box {
  background: #fff;
  -webkit-box-shadow: 0px 2px 12px #f2f2f2;
          box-shadow: 0px 2px 12px #f2f2f2;
  padding: 20px;
}

@media screen and (min-width: 768px) {
  .back_white_box {
    padding: 40px;
  }
}

.back_white_box:not(:nth-of-type(1)) {
  margin-top: 10px;
}

@media screen and (min-width: 768px) {
  .back_white_box:not(:nth-of-type(1)) {
    margin-top: 20px;
  }
}

.back_white_box .name {
  border-left: 5px solid #7A1433;
  font-size: 1.5rem;
  line-height: 1.5;
  margin-bottom: 10px;
  padding-left: 20px;
}

@media screen and (min-width: 768px) {
  .back_white_box .name {
    font-size: 2rem;
  }
}

.back_white_box_title {
  border-left: 5px solid #7A1433;
  padding-left: 20px;
  font-size: 1.125rem;
  line-height: 1.5;
  margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
  .back_white_box_title {
    font-size: 1.25rem;
  }
}

.back_white_box ul {
  line-height: 1.5;
  list-style: disc;
  padding-left: 1em;
}

.back_white_box ul li {
  font-size: 0.875rem;
}

.back_white_box ul li:not(:first-child) {
  margin-top: 10px;
}

.back_white_box ul li span {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 5px;
}

.back_white_box .decimal {
  list-style: decimal;
}

.back_white_box .decimal li {
  font-size: 0.875rem;
}

.back_white_box .decimal li ul ::marker {
  font-size: 0.875rem;
}

.back_white_box .decimal ::marker {
  color: #000;
  font-size: 1.25rem;
}

.back_white_box .katakana {
  list-style: katakana;
  padding-left: 2em;
  text-indent: .1em;
}

.back_white_box .list_none {
  list-style: none;
  text-indent: -1.5em;
}

.case_card .card::after {
  content: none;
}

.case_card .card h2 {
  text-align: center;
}

.case_card .card h2 a {
  color: #9B3A5A;
}

.case_card .card ul {
  color: #7A1433;
  list-style: disc;
}

.case_card .card ul li {
  margin-top: 5px;
}

.case_card .card ul li a {
  color: #9B3A5A;
  font-size: 0.875rem;
  text-decoration: underline;
}

.case_card .card ul li a:hover {
  opacity: .6;
}

.disc_none {
  list-style: none !important;
}

.fee_table {
  border: 1px solid #d9d9d9;
  border-collapse: collapse;
  font-size: 0.875rem;
  font-weight: 400;
}

.fee_table:nth-of-type(1) {
  margin-bottom: 20px;
}

.fee_table thead {
  background: #f5f5f5;
}

.fee_table thead th:not(:first-child) {
  border-left: 1px solid #d9d9d9;
}

.fee_table tbody {
  text-align: left;
}

.fee_table tbody th {
  background: #f5f5f5;
  border-top: 1px solid #d9d9d9;
}

.fee_table th {
  font-weight: 400;
  padding: 1em 2em;
}

.fee_table td {
  border-left: 1px solid #d9d9d9;
  border-top: 1px solid #d9d9d9;
  padding: 1em 2em;
}

.mapText-inner {
  margin-top: 20px;
}

.mapText-inner:first-of-type {
  margin-right: 40px;
}

.mapText-inner p:first-child {
  font-size: 1.25rem;
  margin-bottom: 10px;
  padding-left: 10px;
}

.mapText-inner p:last-child {
  padding-left: 1em;
}

.mapText-inner ul {
  padding-left: 2em;
}

@media screen and (max-width: 768px) {
  .map iframe {
    height: 300px;
  }
}

.line {
  display: inline-block;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.line:hover {
  opacity: 0.6;
}

.line img {
  display: block;
  margin-top: 10px;
  width: 154px;
}

.mailform {
  border: 1px solid #000;
  border-radius: 50vh;
  cursor: pointer;
  display: inline-block;
  line-height: 40px;
  margin-top: 10px;
  min-width: 260px;
  text-align: center;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.mailform:hover {
  opacity: .6;
}

.data-detail a {
  color: #9B3A5A;
}

.num_list {
  word-wrap: break-word;
}

.num_list a {
  margin-right: 10px;
}

.contact_form dt {
  margin-bottom: 5px;
}

.contact_form dt:not(:first-child) {
  margin-top: 24px;
}

.contact_form dt .required {
  color: #7A1433;
  margin-left: 5px;
}

.contact_form dd input {
  background: #f5f5f5;
  border: none;
  line-height: 48px;
  padding-left: 1em;
}

.contact_form dd textarea {
  border: none;
  background: #f5f5f5;
  padding: 1em 0 1em 1em;
}

@media screen and (max-width: 768px) {
  .contact_form dd input[type="text"],
  .contact_form dd textarea {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.contact_form .submit {
  text-align: center;
}

.contact_form .submit input {
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 50vh;
  line-height: 40px;
  min-width: 240px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.contact_form .submit input:hover {
  opacity: .5;
}

.contact_form .agree_wrap {
  margin: 40px 0 20px;
  text-align: center;
}

.contact_form .agree_wrap a {
  color: #9B3A5A;
  margin-left: 10px;
}

.all-data-btn {
  background: #9B3A5A;
  border-radius: 50vh;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 0.875rem;
  line-height: 40px;
  margin-top: 20px;
  min-width: 172px;
  text-align: center;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.all-data-btn:hover {
  opacity: .8;
}

.chat-btn {
  border: 1px solid #000;
  border-radius: 50vh;
  cursor: pointer;
  display: inline-block;
  font-size: 0.875rem;
  line-height: 40px;
  margin: 20px 0;
  min-width: 242px;
  text-align: center;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.chat-btn:hover {
  opacity: .5;
}

.philo-img {
  margin-bottom: 40px;
}

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

.philo-img img {
  max-width: 100%;
}

.overscroll {
  overflow-x: scroll;
}

.flex_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: 20px;
}

@media screen and (min-width: 1200px) {
  .flex_wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.flex_wrap img {
  max-width: 100%;
}

.other-list li {
  font-size: 1.125rem;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .other-list li {
    font-size: 0.75rem;
  }
}

.padding-left {
  padding-left: 25px;
}

.data-detail .content {
  max-width: 850px;
}

.data-detail p {
  font-size: 1.0625rem;
  letter-spacing: 0.08em;
  line-height: 2.5;
}

@media screen and (max-width: 768px) {
  .data-detail p {
    font-size: 0.875rem;
    line-height: 2;
  }
}

.data-detail .back_white_box .decimal li {
  font-size: 1.0625rem;
  letter-spacing: 0.08em;
  line-height: 2.5;
}

@media screen and (max-width: 768px) {
  .data-detail .back_white_box .decimal li {
    font-size: 0.875rem;
    line-height: 2;
  }
}

.data-detail .back_white_box ul li {
  font-size: 1.0625rem;
  letter-spacing: 0.08em;
  line-height: 2.5;
}

@media screen and (max-width: 768px) {
  .data-detail .back_white_box ul li {
    font-size: 0.875rem;
    line-height: 2;
  }
}

.data-detail .back_white_box ul li span {
  font-size: 1.0625rem;
  letter-spacing: 0.08em;
  line-height: 2.5;
}

@media screen and (max-width: 768px) {
  .data-detail .back_white_box ul li span {
    font-size: 0.875rem;
    line-height: 2;
  }
}

@media screen and (min-width: 768px) {
  .data-detail .back_white_box_title {
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 768px) {
  .data-detail .back_white_box_title {
    font-size: 1.125rem;
  }
}

/* === Link color: deep blue (global override) === */

/* 本文など通常リンクは濃い青 */
.content a,
main a {
  color: #003366 !important;
  text-decoration: underline;
}
.content a:hover,
main a:hover {
  color: #001a66 !important;
}

/* ヘッダーのメニューリンクは白に戻す */
.global-header-inner a,
.global-nav-list li a,
.global-header-inner-content .btn a {
  color: #ffffff !important;
  text-decoration: none !important;
}
.global-header-inner a:hover,
.global-nav-list li a:hover,
.global-header-inner-content .btn a:hover {
  opacity: 0.8;
  color: #ffffff !important; /* ホバー時も白を維持 */
}

html, body {
  font-size: 1.125rem !important; /* 16px → 約18px相当、全体を約12%拡大 */
  line-height: 1.9 !important;    /* 行間も少し広げると読みやすい */
}

/*# sourceMappingURL=style.min.css.map */