.pageTtl {
  width: 100%;
  height: 242px;
  padding-top: 60px;
  background: url(../img/common/pagettl_bg.jpg) center/cover no-repeat;
  font-size: 28px;
}
@media screen and (min-width: 768px) {
  .pageTtl {
    font-size: clamp(30px, 4.2vw, 65px);
  }
}
@media screen and (min-width: 1024px) {
  .pageTtl {
    height: min(7.5em, 480px);
    padding-top: 65px;
    background-position: top center;
  }
}
@media screen and (min-width: 1440px) {
  .pageTtl {
    font-size: 65px;
  }
}
.pageTtl__inner {
  height: 100%;
  display: flex;
  align-items: center;
}
.pageTtl__ttl {
  font-weight: 600;
  display: flex;
  flex-direction: column-reverse;
  grid-gap: 0.1538em;
}
.pageTtl__ttl_jp {
  font-weight: 600;
  line-height: 1.5385;
}
.pageTtl__ttl_en {
  font-size: 49.23%;
}
.pageTtl__ttl_en::first-letter {
  font-size: 125%;
}

.breadcrumb {
  width: 100%;
  padding: 1.4286em 0;
  font-size: 10px;
}
@media screen and (min-width: 768px) {
  .breadcrumb {
    font-size: 12px;
  }
}
@media screen and (min-width: 1200px) {
  .breadcrumb {
    font-size: 14px;
  }
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  grid-gap: 1.0714em;
}
.breadcrumb__list > li {
  display: flex;
  align-items: center;
  grid-gap: 1.0714em;
  --lh: 1;
}
.breadcrumb__list > li:not(:last-child)::after {
  content: "";
  width: 4px;
  height: 8px;
  background: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="6" height="10" viewBox="0 0 6 10" fill="none">  <path d="M1 9L5 4.77778L1 1" stroke="%23fff"/></svg>') center/contain no-repeat;
  display: block;
  flex-shrink: 0;
}

.section {
  padding: 40px 0 60px;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .section {
    padding: 3.3333em 0 5.5556em;
  }
}
@media screen and (min-width: 1024px) {
  .section {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .section {
    font-size: 18px;
  }
}
.section__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-gap: 3.3333em;
}
@media screen and (min-width: 768px) {
  .section__inner {
    max-width: 700px;
  }
}
@media screen and (min-width: 1024px) {
  .section__inner {
    width: 90%;
    max-width: 1200px;
  }
}
@media screen and (min-width: 1440px) {
  .section__inner {
    width: calc(100% - 40px);
  }
}
.section__inner:has(.section__table) {
  grid-gap: 1.6667em;
}
.section__ttl {
  width: 100%;
  padding-bottom: 0.3125em;
  border-bottom: 1px solid var(--main);
  font-size: 177.78%;
  font-weight: 700;
}
.section__subTtl {
  padding-left: 1.4286em;
  font-size: 155.56%;
  font-weight: 700;
  position: relative;
}
.section__subTtl::before {
  content: "";
  width: 1.0714em;
  height: 1.0714em;
  background-color: var(--main);
  border-radius: 50%;
  position: absolute;
  top: 0.4286em;
  left: 0;
}
.section__row {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 2.2222em;
}
@media screen and (min-width: 768px) {
  .section__row {
    flex-direction: row;
  }
}
@media screen and (min-width: 1024px) {
  .section__row {
    grid-gap: 4.4444em;
  }
}
.section__row_img {
  width: 100%;
  max-width: 420px;
}
@media screen and (min-width: 768px) {
  .section__row_img {
    width: 35%;
    flex-shrink: 0;
  }
}
.section__conBlk {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-gap: 0.5556em;
}
.section__conBlk_ttl {
  margin-bottom: 0.9375em;
}
.section__conBlk_header {
  width: 100%;
}
.section__conBlk_body {
  width: 100%;
}
.section__conBlk_body .number-paren {
  counter-reset: number_paren_list 0;
}
.section__conBlk_body .number-paren > li {
  padding-left: 1.75em;
  position: relative;
}
.section__conBlk_body .number-paren > li::before {
  counter-increment: number_paren_list 1;
  content: "(" counter(number_paren_list) ")";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.section__conBlk_body .number-paren:has(li:nth-child(10)) > li {
  padding-left: 2.25em;
}
.section__conBlk_body .number-paren:has(li:nth-child(10)) > li::before {
  width: 2em;
  text-align: right;
}
.section__conBlk_body .number-dot {
  counter-reset: number_dot_list 0;
}
.section__conBlk_body .number-dot > li {
  padding-left: 1.5em;
  position: relative;
}
.section__conBlk_body .number-dot > li::before {
  counter-increment: number_dot_list 1;
  content: counter(number_dot_list) ".";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.section__conBlk_body .number-dot:has(li:nth-child(10)) > li {
  padding-left: 2em;
}
.section__conBlk_body .number-dot:has(li:nth-child(10)) > li::before {
  width: 1.75em;
  text-align: right;
}
.section__conBlk_body .alpha-list {
  counter-reset: alpha_list 0;
}
.section__conBlk_body .alpha-list--startC {
  counter-reset: alpha_list 2;
}
.section__conBlk_body .alpha-list > li {
  padding-left: 1.5em;
  position: relative;
}
.section__conBlk_body .alpha-list > li::before {
  counter-increment: alpha_list 1;
  content: "" counter(alpha_list, lower-alpha) ".";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.section__conBlk_body .alpha-list:has(li:nth-child(10)) > li {
  padding-left: 2em;
}
.section__conBlk_body .alpha-list:has(li:nth-child(10)) > li::before {
  width: 2em;
  text-align: right;
}
.section__conBlk_body .disc-list {
  padding-left: 1em;
}
.section__conBlk_body .disc-list > li {
  list-style: disc;
}
.section__conBlk_heading {
  font-weight: 700;
}
.section__conBlk:has(.section__conBlk_body--right) {
  align-items: flex-end;
}
.section__conBlk:has(.section__conBlk_body--right) .section__conBlk_body {
  width: auto;
}
.section__table {
  width: 100%;
}
.section__table th, .section__table td {
  display: block;
}
.section__table th {
  padding: 1em;
  background: rgba(255, 255, 255, 0.1);
  font-size: 111.11%;
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
}
.section__table td {
  padding: 1.1111em;
  --lh: 1.8;
}
.section__table td a {
  color: var(--main);
  text-decoration: underline;
  text-underline-offset: 0.2778em;
}
.section__table td a:hover {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .section__table th, .section__table td {
    border-bottom: 1px solid var(--main);
    display: table-cell;
  }
  .section__table td {
    padding: 2.2222em;
  }
}

.secNews__newsList {
  width: 100%;
  margin-bottom: 1.875em;
  display: grid;
  grid-gap: 1.25em;
}
@media screen and (min-width: 1600px) {
  .secNews__newsList {
    font-size: 20px;
  }
}
.secNews__newsList .listItem {
  width: 100%;
  padding-bottom: 1em;
  border-bottom: 1px solid var(--main);
  --lh: 1.8;
  transition: 0.5s;
}
.secNews__newsList .listItem__header {
  padding-right: 1.5em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  grid-gap: 10px;
  position: relative;
}
.secNews__newsList .listItem__header_ttl {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .secNews__newsList .listItem__header {
    padding-right: 0;
    flex-direction: row;
    align-items: center;
    grid-gap: 1em;
  }
  .secNews__newsList .listItem__header_date {
    flex-shrink: 0;
  }
}
@media screen and (min-width: 1024px) {
  .secNews__newsList .listItem__header {
    grid-gap: 1.5em;
  }
}
.secNews__newsList .listItem:has(.listItem__body) .listItem__header::after {
  content: "";
  width: 1em;
  height: 0.4em;
  background: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="9" viewBox="0 0 16 9" fill="none"><path d="M1 1.25L8 7.75L15 1.25" stroke="%23fff"/></svg>') center/contain no-repeat;
  display: block;
  flex-shrink: 0;
  transition: 0.5s;
}
.secNews__newsList .listItem:has(.listItem__body) .listItem__header.open::after {
  transform: rotate(180deg);
}
@media screen and (max-width: 767px) {
  .secNews__newsList .listItem:has(.listItem__body) .listItem__header::after {
    width: 1.25em;
    height: 0.6em;
    background: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="9" viewBox="0 0 16 9" fill="none"><path d="M1 1.25L8 7.75L15 1.25" stroke="%23A09152"/></svg>') center/contain no-repeat;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
}
.secNews__newsList .listItem__body {
  width: 100%;
  max-height: 0;
  padding: 0 1.3333em;
  background: var(--sub);
  font-size: 90%;
  --lh: 1.8;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transition: opacity 0.5s ease;
  transition: 0.5s;
}
.secNews__newsList .listItem__body.open {
  max-height: 10000px;
  padding: 1.6667em 1.3333em;
  margin-top: 2.2222em;
  opacity: 1;
  pointer-events: auto;
}

.secFaq__faqList {
  width: 100%;
  margin-bottom: 3.125em;
  display: grid;
  grid-gap: 0.9375em;
}
@media screen and (min-width: 768px) {
  .secFaq__faqList {
    margin-bottom: 4em;
    grid-gap: 1.75em;
  }
}
@media screen and (min-width: 1200px) {
  .secFaq__faqList {
    font-size: 18px;
  }
}
@media screen and (min-width: 1600px) {
  .secFaq__faqList {
    font-size: 20px;
  }
}
.secFaq__faqList .listItem {
  width: 100%;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--main);
}
.secFaq__faqList .listItem__qBlk {
  width: 100%;
  display: flex;
  align-items: center;
  grid-gap: 10px;
}
.secFaq__faqList .listItem__qBlk::before {
  content: "Q.";
  font-size: 250%;
  font-family: "Beau Rivage", cursive;
  flex-shrink: 0;
}
.secFaq__faqList .listItem__qBlk::after {
  content: "";
  width: 20px;
  height: 10px;
  margin-left: auto;
  background: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="9" viewBox="0 0 16 9" fill="none"><path d="M1 1.25L8 7.75L15 1.25" stroke="%23fff"/></svg>') center/contain no-repeat;
  display: block;
  flex-shrink: 0;
  transition: 0.5s;
}
.secFaq__faqList .listItem__qBlk.open::after {
  transform: rotate(180deg);
}
.secFaq__faqList .listItem__aBlk {
  width: calc(100% - 30px);
  max-height: 0;
  margin-left: auto;
  display: flex;
  align-items: flex-start;
  grid-gap: 10px;
  transition: 0.5s;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}
.secFaq__faqList .listItem__aBlk::before {
  content: "A.";
  font-size: 250%;
  font-family: "Beau Rivage", cursive;
  flex-shrink: 0;
  display: none;
}
.secFaq__faqList .listItem__aBlk.open {
  padding: 15px 0;
  max-height: 10000px;
  opacity: 1;
  pointer-events: auto;
}
.secFaq__faqList .listItem__aBlk.open::before {
  display: block;
}
.secFaq__faqList .listItem__aBlk_txtWrap {
  min-height: 4.5em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.secFaq__faqList .listItem__aBlk dl {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 8em 2.5em;
  grid-gap: 0 20px;
}
.secFaq__faqList .listItem__aBlk dl dt {
  font-weight: 400;
  text-align: right;
}
.secFaq__contactBlk {
  width: 100%;
  max-width: 400px;
  padding: 20px;
  margin: 0 auto;
  border: 1px solid var(--main);
}
.secFaq__contactBlk_ttl {
  padding-bottom: 0.25em;
  margin-bottom: 0.5em;
  font-size: 120%;
  font-weight: 500;
  text-align: center;
  position: relative;
}
.secFaq__contactBlk_ttl::after {
  content: "";
  width: 100px;
  height: 1px;
  background-color: var(--main);
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.secFaq__contactBlk a {
  color: var(--main);
}

.secDl {
  padding: 40px 0 60px;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .secDl {
    padding: 3.3333em 0 5.5556em;
  }
}
@media screen and (min-width: 1024px) {
  .secDl {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .secDl {
    font-size: 18px;
  }
}
.secDl__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  grid-gap: 20px;
}
@media screen and (min-width: 768px) {
  .secDl__list {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
}
.secDl__list .listItem {
  width: 100%;
  max-width: 14.2857em;
  padding-top: min(100%, 14.2857em);
  margin: 0 auto;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}
.secDl__list .listItem__link {
  width: 100%;
  height: 100%;
  background: #fff url(../img/top/case_slidebg.jpg) right bottom/140% no-repeat;
  color: var(--bg);
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  grid-gap: 0.5em;
  position: absolute;
  top: 0;
  left: 0;
}
.secDl__list .listItem__link:hover {
  opacity: 1;
}
.secDl__list .listItem__link:hover .listItem__arrow {
  transform: translateY(0.5em);
}
.secDl__list .listItem__ttl {
  font-size: 112.5%;
}
.secDl__list .listItem__arrow {
  font-size: 87.5%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}
.secDl__list .listItem__arrow:after {
  content: "";
  width: 1.0714em;
  height: 0.7143em;
  background-color: var(--main);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  display: block;
}

.page--404 .pageTtl {
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .page--404 .pageTtl {
    font-size: clamp(24px, 3.12vw, 50px);
  }
}
@media screen and (min-width: 1440px) {
  .page--404 .pageTtl {
    font-size: 50px;
  }
}
.page--404 .pageTtl__ttl_en {
  font-size: 49.23%;
}

.sec404 {
  padding: 40px 0 60px;
  font-size: 14px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .sec404 {
    padding: 3.3333em 0 5.5556em;
  }
}
@media screen and (min-width: 1024px) {
  .sec404 {
    font-size: 16px;
  }
}
@media screen and (min-width: 1200px) {
  .sec404 {
    font-size: 18px;
  }
}
.sec404__backLink {
  margin-top: 5em;
  color: var(--main);
}
.sec404__backLink a {
  position: relative;
  padding-bottom: 2px;
}
.sec404__backLink a::after {
  content: "";
  width: 0;
  height: 1px;
  background-color: var(--main);
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.5s;
}
.sec404__backLink a:hover::after {
  width: 100%;
}