@charset "UTF-8";

@property --font-size-base {
  syntax: "<integer>";
  inherits: false;
  initial-value: 16;
}

@property --leading-trim {
  syntax: "*";
  inherits: false;
  initial-value: calc((1em - 1lh) / 2);
}

:root {
  /* Specify a safe font-family for the default Gothic typeface. */
  font-family: "Noto Sans JP", sans-serif;

  /* From an accessibility perspective, the line spacing within a paragraph should be at least 1.5 times the text size. (https://waic.jp/translations/WCAG21/#visual-presentation) */
  line-height: 2;

  /* Remove leading white space for a cleaner text alignment. */
  text-spacing-trim: trim-start;

  /* Use the browser's default method to determine word breaking. */
  word-break: initial;

  /* Apply strict line breaking rules to enhance readability in languages that require it. */
  line-break: strict;

  /* Allow long words to be broken and wrapped at any point to prevent overflow. */
  overflow-wrap: anywhere;

  /* Prevent mobile browsers from scaling text sizes automatically. */
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;

  /* Preventing the layout shift caused by scrollbars. */
  scrollbar-gutter: stable;

  /* Eliminate the tap highlight color on mobile devices for a cleaner interface. */
  -webkit-tap-highlight-color: transparent;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  --rem-ratio: calc(1rem / var(--font-size-base));
  --contents-width: 1064px;
  --color-text: #333;
  --color-white: #fff;
  --color-link: #ff4d00;
  --transition-time: 0.25s;
}

/* ベース
----------------------------------------------------------------- */
body {
  /* Ensures the body element occupies at least 100% of the viewport's block size. */
  min-block-size: 100svb;
  font-size: calc(18 * var(--rem-ratio));
  /* font-feature-settings: "palt"; */
  color: var(--color-text);
  overflow-x: hidden;
}

small {
  font-size: 1em;
}

img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

sup {
  font-size: 0.7em;
}

picture {
  display: block;
}

:where(a[href^="geo:"], a[href^="tel:"], a[href^="mailto:"], a[href^="http://maps.apple.com/"])
{
  text-decoration: none;
  pointer-events: none;
  color: inherit;
}

a {
  color: var(--color-link);

  & .el-externalIcon {
    translate: 0 0.15em;
  }
}

@media (any-hover: hover) {
  a {
    transition: var(--transition-time);

    &:where(:hover) {
      opacity: 0.7;
    }
  }
}

/* レイアウト (prefix: ly- )
----------------------------------------------------------------- */
.ly-wrapper {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100svh;
}

.ly-header_section {
  height: 128px;
  background: url(/sites/default/files/images/custom/bg_header.png) no-repeat
    bottom center;
  padding: 20px 0 0;

  &.--nav {
    height: unset;
    border-bottom: 2px solid #fb9d02;
    background: unset;
    padding: 15px 0 0;
  }

  @media (max-width: 767px) {
    & {
      height: calc(146 / 375 * 100vw);
      background-image: none;
      padding-block-start: 0;
      padding-inline-end: 0;
    }

    & .ly-inner {
      display: grid;
      grid-template-columns: 1fr;
      padding-inline: 0;
      position: relative;
    }

    &.--nav {
      display: none;
    }
  }

  &.--navSp {
    display: none;
    background: unset;
    padding: 0;
    position: absolute;
    inset: calc(128 / 375 * 100vw) 0 0;
    z-index: 1;

    @media (min-width: 768px) {
      display: none !important;
    }
  }
}

.ly-footer {
  position: relative;
  isolation: isolate;
}

.ly-footer_section {
  background: #fffdee;
  padding-block: 60px;

  &.--copyright {
    background: #fb9d02;
    padding-block: unset;
  }

  @media (max-width: 767px) {
    & {
      padding-block: 50px 24px;
    }

    &.--copyright {
      & .ly-inner {
        padding-inline: calc((10 / 375) * 100%);
      }
    }
  }
}

.ly-inner {
  max-width: var(--contents-width);
  margin-inline: auto;
  padding-inline: 20px;

  @media (max-width: 767px) {
    & {
      padding-inline: calc((16 / 375) * 100%);
    }
  }
}

.ly-main {
  isolation: isolate;
  background: #fffdee;
  padding-block-start: 80px;

  @media (max-width: 767px) {
    padding-block-start: 50px;
  }
}

/* エレメントモジュール (prefix: el- )
----------------------------------------------------------------- */
.el-hederLogo {
  width: 778px;
  translate: -70px -50px;

  @media (max-width: 767px) {
    & {
      width: unset;
      translate: unset;
    }

    & img {
      width: 100%;
      max-width: none;
    }
  }
}

.el-copyright {
  display: grid;
  place-content: center;
  min-height: 59px;
  font-size: calc(14 * var(--rem-ratio));
  color: var(--color-white);

  @media (max-width: 767px) {
    & {
      font-size: calc(13 * var(--rem-ratio));
    }
  }
}

.el-label {
  display: grid;
  place-items: center;
  width: fit-content;
  height: fit-content;
  font-size: calc(12 * var(--rem-ratio));
  font-weight: bold;
  color: var(--color-white);
  background-color: #ff4d00;
  border-radius: 4px;
  padding-inline: 8px;
}

.el-linkIcon {
  display: grid;
  place-content: center;
  width: 20px;
  aspect-ratio: 1;
  border-radius: 50%;

  &.--orange {
    background-color: #fb9d02;

    &::after {
      content: "";
      width: 12px;
      aspect-ratio: 1;
      mask: url("/sites/default/files/images/custom/icon_arrow-right.svg")
        center no-repeat;
      mask-size: contain;
      background: var(--color-white);
      translate: 5% 0;
    }
  }
}

.el-linkIconDown {
  width: 14px;
  aspect-ratio: 1;
  mask: url("/sites/default/files/images/custom/icon_arrow-down.svg") center
    no-repeat;
  mask-size: contain;

  &.--orange {
    background-color: #fd9d02;
  }
}

.el-externalIcon {
  display: inline-block;
  width: 19px;
  aspect-ratio: 1;
  mask: url("/sites/default/files/images/custom/icon_external.svg") center
    no-repeat;
  mask-size: contain;
  background-color: #707070;
}

.el-accordionIcon {
  display: grid;
  place-content: center;
  width: 20px;
  aspect-ratio: 1;
  border-radius: 50%;
  position: relative;

  &.--orange {
    background-color: #fb9d02;
  }

  &::before,
  &::after {
    content: "";
    background: var(--color-white);
    margin: auto;
    position: absolute;
    inset: 0;
  }

  &::before {
    width: 1px;
    height: 11px;
  }

  &::after {
    width: 11px;
    height: 1px;
  }
}

.el-hamburgerMenu {
  display: none;
  place-content: center;
  width: 36px;
  aspect-ratio: 1;
  border-radius: 4px;
  background: var(--color-white);
  position: relative;
  z-index: 1;

  @media (max-width: 767px) {
    & {
      display: grid;
      position: absolute;
      top: 13px;
      left: auto;
      right: calc(16 / 375 * 100vw);
    }
  }
}

.el-pageTop {
  display: grid;
  place-content: center;
  width: 48px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #64c4f7;
  position: fixed;
  inset: auto 70px 230px auto;
  z-index: calc(infinity);
  transition: unset;

  &::before {
    content: "";
    width: 30px;
    aspect-ratio: 1;
    mask: url("/sites/default/files/images/custom/icon_arrow-down.svg") center
      no-repeat;
    mask-size: contain;
    background: var(--color-white);
    rotate: 180deg;
    translate: 0 -5%;
  }

  .is-bnrHidden & {
    bottom: 60px;
  }

  @media (any-hover: hover) {
    &:where(:hover) {
      transition: var(--transition-time);
    }
  }

  @media (max-width: 767px) {
    & {
      width: 40px;
      inset: auto 16px 180px auto;
    }

    .is-bnrHidden & {
      bottom: 60px;
    }

    &::before {
      width: 25px;
    }
  }
}

.el-titleIcon {
  display: flex;
  align-items: center;
  gap: 0 26px;
  margin-block-end: 40px;
}
@media screen and (width < 768px) {
  .el-titleIcon {
    flex-direction: column;
    gap: 26px 0;
  }
}

.el-titleIcon_head {
  display: block;
  width: 100px;
  height: auto;
}

.el-titleIcon_body {
  display: block;
  flex: 1 0 0;
  font-size: calc(24 * var(--rem-ratio));
  font-weight: bold;
  color: #fe4d01;
  line-height: 1.667;
}

.el-titleIcon_bodyNote {
  display: block;
  font-size: calc(14 * var(--rem-ratio));
  font-weight: 400;
  color: var(--color-text);
}

.el-titleV3 {
  display: grid;
  grid-auto-flow: column;
  justify-content: start;
  gap: 10px;
  font-size: calc(24 * var(--rem-ratio));
  font-weight: bold;
  line-height: calc(32 / 24);
  color: #ff4d00;
  margin-block-end: calc(20px + var(--leading-trim));

  &::before {
    content: "";
    width: 20px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: currentColor;
    margin-block-start: calc(((1lh - 1rem) / 2) + ((1rem - 20px) / 2));
  }

  @media (max-width: 767px) {
    & {
      gap: 6px;
      font-size: calc(20 * var(--rem-ratio));
      line-height: calc(32 / 20);
    }
  }
}

.el-titleV4 {
  font-size: calc(22 * var(--rem-ratio));
  font-weight: bold;
  color: #ff4d00;
  line-height: 1.1;
  margin-block-end: 28px;

  &:not(:first-of-type) {
    margin-block-start: 40px;
  }
}
@media screen and (width < 768px) {
  .el-titleV4 {
    margin-block-end: 24px;

    &:not(:first-of-type) {
      margin-block-start: 30px;
    }
  }
}

.el-listCircle {
  margin-block-end: 30px;
  font-size: calc(20 * var(--rem-ratio));
  font-weight: bold;
  color: #333;

  & > li {
    border-bottom: 1px dashed #707070;
    padding-left: 26px;
    padding-block-end: 20px;
    margin-block-end: 20px;
    position: relative;

    &::before {
      content: "";
      display: block;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background-color: #ff4d00;
      position: absolute;
      left: 0;
      top: 0.5em;
    }
  }

  &.--noBorder > li {
    border-bottom: none;
    padding-block-end: 0;
  }
}

.el-listHeadline {
  margin-block: 20px;

  & > li {
    display: flex;
    font-size: calc(12 * var(--rem-ratio));

    & + & {
      margin-block-start: 8px;
    }
  }

  .el-listHeadline_head {
    margin-inline-end: 2px;
  }

  .el-listHeadline_body {
    flex: 1 0 0;
  }
}

.el-textHeadLine {
  display: flex;
  margin-block: 20px;

  &.--fs14 {
    font-size: calc(14 * var(--rem-ratio));
    line-height: 1.714;
  }

  &.--taR {
    width: fit-content;
    margin-inline-start: auto;
    margin-inline-end: 0;
  }

  .el-textHeadLine_head {
    margin-inline-end: 2px;
  }

  .el-textHeadLine_body {
    flex: 1 0 0;
  }
}

.el-listPic {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;

  & > li {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 215px;
    min-height: 271px;
    background-color: #FDECDB;
    border-radius: 10px;
    padding-inline: 14px;
  }
}

.el-listPic_tit {
  display: grid;
  place-items: center;
  width: 100%;
  font-size: calc(20 * var(--rem-ratio));
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
  margin-block-end: calc(10px + var(--leading-trim));
}

.el-columBox {
  &.--col2 {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    gap: 30px;

    .el-columBox_item {
      width: calc(50% - 15px);
    }
  }

  &.--style1 {
    gap: 50px;

    .el-columBox_item:first-child {
      width: auto;
      flex: 1 0 0;
    }

    .el-columBox_item:last-child {
      width: 164px;
    }
  }
}
@media screen and (width < 768px) {
  .el-columBox {
    &.--col2 {
      flex-direction: column;
      gap: 28px;

      .el-columBox_item {
        width: 100%;
        gap: 24px;
      }
    }

    &.--style1 {
      flex-direction: column;
      align-items: center;
      gap: 30px;

      .el-columBox_item:last-child {
        width: 164px;
      }
    }
  }
}

.el-columBox_item {
  &.--col2 {
    display: flex;
    gap: 20px;
  }

  &.--figure {
    figure {
      display: flex;
      flex-direction: column;
      gap: 15px 0;

      img {
        width: 100%;
        max-width: none;
      }
    }

    figcaption {
      font-size: calc(18 * var(--rem-ratio));
      font-weight: 500;
      line-height: 1.33;
    }
  }
}
@media screen and (width < 768px) {
  .el-columBox_item {
    &.--col2 {
      flex-direction: column;
    }

    &.--figure {
      figure {
        width: calc(200 / 375 * 100vw);
        align-items: center;
        margin-left: auto;
        margin-right: auto;
        gap: 10px 0;

        img {
          width: 100%;
          max-width: none;
        }
      }

      figcaption {
        text-align: center;
      }
    }
  }
}

.el-bottom_borderDash {
  &:first-of-type {
    margin-block-start: 50px;
  }

  &:not(:last-of-type){
    border-bottom: 1px dashed #707070;
    padding-block-end: 40px;
    margin-block-end: 40px;
  }

  &.--second {
    &:first-of-type {
      margin-block-start: 0;
    }
  }
}
@media screen and (width < 768px) {
  .el-bottom_borderDash {
    &:first-of-type {
      margin-block-start: 40px;
    }

    &:not(:last-of-type) {
      padding-block-end: 30px;
      margin-block-end: 30px;
    }

    &.--second {
      &:not(:last-of-type) {
        border-bottom-width: 0;
        margin-block-end: 0;
      }
    }
  }
}

.el-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;

  &.--supervised {
    width: 68px;
    min-height: 68px;
    background-color: var(--color-link);
    border-radius: 50%;
    color: var(--color-white);
    font-size: calc(18 * var(--rem-ratio));
    font-weight: 600;
    line-height: calc(24 / 18);
  }
}

.el-physician_title {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  width: 100%;

  & > span:first-child {
    font-size: calc(22 * var(--rem-ratio));
    font-weight: 400;
    line-height: calc(32 / 22);
    margin-right: 0.3em;
  }

  & > span:last-child {
    font-size: calc(16 * var(--rem-ratio));
    font-weight: 400;
    line-height: calc(32 / 16);
  }
}

.el-physician_text {
  font-size: calc(16 * var(--rem-ratio));
  font-weight: 400;
  line-height: calc(32 / 16);
}

/* ブロックモジュール (prefix: bl- )
----------------------------------------------------------------- */
.bl-nav {
  display: flex;
  justify-content: center;
  gap: 0 1px;
  width: fit-content;
  font-size: calc(16 * var(--rem-ratio));
  font-weight: 500;
  line-height: calc(26 / 16);
  margin-inline: auto;
  padding-block-end: 23px;
  position: relative;
}

.bl-nav_item {
  &:nth-of-type(1) {
    width: max(calc((100 / 4) * 1%), 335px);
  }

  &:not(:nth-of-type(1)) .bl-nav_textGroup::before {
    content: "";
    width: 1px;
    height: 100%;
    background: #f4baa1;
    position: absolute;
    inset: 0 auto 0 -1px;
  }

  &:is(.is-open, .is-current) {
    & :is(.bl-nav_text, .bl-nav_link) {
      color: #ff4d00;
    }

    & .el-linkIconDown {
      background-color: #ff4d00;
    }
  }

  &.is-current {
    & .bl-nav_textGroup {
      &::after {
        content: "";
        width: 18px;
        height: 16px;
        background: #ff4d00;
        clip-path: polygon(0% 100%, 100% 100%, 50% 0%);
        margin-inline: auto;
        position: absolute;
        inset: auto 0 -23px 0;
      }
    }
  }
}

.bl-nav_textGroup {
  display: grid;
  align-items: center;
  height: 100%;
  padding: 10px 18px;
  position: relative;
}

.bl-nav_text {
  transition: var(--transition-time);

  & {
    user-select: none;
  }

  &:has(> .el-linkIconDown) {
    display: grid;
    grid-auto-flow: column;
    justify-content: start;
    align-items: center;
    gap: 0 10px;
  }

  & .el-linkIconDown {
    transition: var(--transition-time);
  }
}

.bl-nav_link {
  color: currentColor;

  @media (any-hover: hover) {
    &:where(:hover) {
      color: #ff4d00;
      opacity: 1;
    }
  }
}

.bl-nav_itemBody {
  display: none;
  width: 100%;
  padding-block-start: 24px;
  position: absolute;
  inset: 72px 0 auto;
  z-index: 1;
}

.bl-navSubWrapper {
  border-radius: 0 0 10px 10px;
  border: 1px solid #f4baa1;
  border-top: unset;
  background: var(--color-white);
  padding: 28px 50px 60px;
}

.bl-navSubLinks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 calc((70 / 1024) * 100%);
}

.bl-navSubLinks_link {
  font-size: calc(16 * var(--rem-ratio));
  color: currentColor;

  &:has(> .el-linkIcon) {
    display: grid;
    grid-auto-flow: column;
    justify-content: space-between;
  }

  & .el-linkIcon {
    width: 18px;
    margin-block-start: calc(((1lh - 1rem) / 2) + ((1rem - 18px) / 2));
    transition: var(--transition-time);

    &::after {
      width: 10px;
    }
  }

  & + & {
    border-top: 1px dashed #707070;
    margin-block-start: calc(20px + var(--leading-trim));
    padding-block-start: calc(20px + var(--leading-trim));
  }

  @media (any-hover: hover) {
    &:where(:hover) {
      color: #fb4d02;
      opacity: 1;

      & .el-linkIcon {
        background-color: #fb4d02;
      }
    }
  }
}

.bl-navSp {
  border-bottom: 1px solid #d1d1d1;
  background: var(--color-white);
}

.bl-navSp_item {
  padding: 24px 0 0;

  & + & {
    border-top: 1px solid #d1d1d1;
  }
}

.bl-navSp_body {
  display: none;
  border-top: 1px solid #d1d1d1;
  padding-inline: calc((16 / 375) * 100%);
}

.bl-navSp_text,
.bl-navSp_link {
  font-weight: bold;
  line-height: calc(28 / 18);
  color: currentColor;
  border-left: 3px solid #fb9d02;
  margin-block-end: 24px;
  margin-inline: calc((16 / 375) * 100%);
  padding-inline-start: 14px;
  position: relative;
  user-select: none;

  &::before {
    content: "";
    width: 3px;
    height: 100%;
    background: #f7d3c4;
    position: absolute;
    inset: 0 auto auto 0;
  }

  &:has(> .el-linkIcon, > .el-accordionIcon) {
    display: grid;
    grid-auto-flow: column;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }

  .is-close & > .el-accordionIcon {
    &::before {
      display: none;
    }
  }
}

.bl-navSp_subLink {
  display: block;
  font-size: calc(16 * var(--rem-ratio));
  line-height: calc(30 / 16);
  color: currentColor;
  padding-block: calc(24px + var(--leading-trim));

  &:has(> .el-linkIcon) {
    display: grid;
    grid-auto-flow: column;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }

  & + & {
    border-top: 1px dashed #c1c1c1;
  }
}

.bl-footerNav {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 0 calc((70 / 1024) * 100%);

  @media (max-width: 767px) {
    & {
      grid-template-columns: 1fr;
      gap: 40px 0;
    }
  }
}

.bl-footerNav_item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  align-items: start;

  &:first-child {
    width: 370px;
  }

  @media (max-width: 767px) {
    & {
      display: initial;
    }

    &:first-child {
      width: 100%;
    }
  }
}

.bl-footerNav_title {
  font-weight: bold;
  line-height: calc(28 / 18);
  border-left: 3px solid #fb9d02;
  margin-block-end: calc(30px + var(--leading-trim));
  padding-inline-start: 17px;
  position: relative;

  &::before {
    content: "";
    width: 3px;
    height: 100%;
    background: #fde5be;
    position: absolute;
    inset: 0 auto auto 0;
  }

  @media (max-width: 767px) {
    & + & {
      margin-block-start: 40px;
    }
  }
}

.bl-footerNav_titleLink {
  color: currentColor;

  &:has(> .el-linkIcon) {
    display: grid;
    grid-auto-flow: column;
    justify-content: start;
    gap: 0 8px;
  }

  & .el-linkIcon {
    margin-block-start: calc(((1lh - 1rem) / 2) + ((1rem - 18px) / 2));
  }
}

.bl-footerNavList {
  padding-inline-start: 20px;
}

.bl-footerNavList_item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  font-size: calc(16 * var(--rem-ratio));

  &::before {
    content: "";
    width: 10px;
    aspect-ratio: 1;
    border-radius: calc(infinity * 1px);
    background: #fd9d02;
    margin-block-start: calc(((1lh - 1rem) / 2) + ((1rem - 8px) / 2));
  }

  & + & {
    margin-block-start: calc(20px + var(--leading-trim));
  }
}

.bl-footerNavList_link {
  color: currentColor;
}

.bl-footerNavListUnder {
  @media (max-width: 767px) {
    .bl-footerNavList_link + & {
      margin-block-start: calc(18px + var(--leading-trim));
    }
  }
}

.bl-footerNavListUnder_item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 7px;
  font-size: calc(16 * var(--rem-ratio));

  &::before {
    content: "";
    width: 6px;
    aspect-ratio: 1;
    border-radius: calc(infinity * 1px);
    background: #fd9d02;
    margin-block-start: calc(((1lh - 1rem) / 2) + ((1rem - 4px) / 2));
  }

  & + & {
    margin-block-start: calc(20px + var(--leading-trim));
  }
}

.bl-footerNavListUnder_link {
  color: currentColor;
}

.bl-footerColumn {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0 calc((10 / 1024) * 100%);

  .bl-footerNav + & {
    margin-block-start: 60px;
  }

  @media (max-width: 767px) {
    & {
      grid-auto-flow: row;
      grid-template-columns: unset;
      gap: 24px 0;
    }

    .bl-footerNav + & {
      margin-block-start: calc(50px + var(--leading-trim));
    }
  }
}

.bl-footerColumn_logo {
  @media (max-width: 767px) {
    & {
      display: block;
      margin-inline: auto;
    }
  }
}

.bl-footerinformation {
  display: grid;
  grid-auto-flow: column;
  justify-content: start;
  gap: 0 calc((28 / 1024) * 100%);

  @media (max-width: 767px) {
    & {
      display: initial;
    }
  }
}

.bl-footerinformation_item {
  font-size: calc(14 * var(--rem-ratio));

  @media (max-width: 767px) {
    & {
      display: inline;
    }

    & + & {
      padding-inline-start: 2em;
    }
  }
}

.bl-footerinformation_link {
  color: currentColor;
}

.bl-btn_wrapper {
  display: grid;
  grid-auto-flow: column;
  justify-content: center;
  gap: 0 calc((20 / 1024) * 100%);

  &.--left {
    justify-content: start;
  }

  .un-toplinksBtn + & {
    margin-block-start: 66px;
  }

  .bl-sectionUnder_text + & {
    margin-block-start: calc(30px + var(--leading-trim));
  }

  @media (max-width: 767px) {
    .un-toplinksBtn + & {
      margin-block-start: 46px;
    }
  }
}

.bl-sectionUnder_pic {
  img {
    width: 100%;
    max-width: none;
  }
}

.bl-sectionUnder_note {
  font-size: calc(14 * var(--rem-ratio));
  margin-block-end: 35px;

  &:last-of-type {
    margin-block-end: 0;
  }

  &.--right {
    text-align: right;
    line-height: 1.714;
  }

  &.--mt20 {
    margin-block-start: 20px;
  }

  a {
    color: var(--color-text);
  }
}
@media screen and (width < 768px) {
  .bl-sectionUnder_note {
    &.--spLeft {
      text-align: left;
    }
  }
}

.bl-sectionUnder_box {
  max-width: 920px;
  margin: 0 auto;
  background-color: #f8f8f8;
  padding-inline: 45px;
  padding-block: 50px;
  margin-block-start: 50px;
}
@media screen and (width < 768px) {
  .bl-sectionUnder_box {
    padding-inline: calc(22 / 375 * 100vw);
    padding-block: calc(30 / 375 * 100vw);
    margin-block-start: calc(30 / 375 * 100vw);
  }
}

.bl-btn {
  font-weight: 500;
  line-height: calc(28 / 18);
  color: currentColor;
  border-radius: 8px;
  border: 1px solid #fb9d02;
  background: var(--color-white);
  padding: 20px 25px;

  &:has(> .el-linkIcon) {
    display: grid;
    grid-auto-flow: column;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
  }

  & .el-linkIcon {
    transition: var(--transition-time);
  }

  & .el-externalIcon {
    margin-inline-start: 5px;
    transition: var(--transition-time);
  }

  &.--size604 {
    max-width: 604px;
  }

  @media (any-hover: hover) {
    &:where(:hover) {
      color: #fb4d02;
      border-color: currentColor;
      background: #fff7f4;
      opacity: 1;

      & .el-linkIcon {
        background-color: #fb4d02;
      }

      & .el-externalIcon {
        background-color: #fb4d02;
      }
    }
  }
}

.bl-footerBnr_wrapper {
  position: fixed;
  inset: auto 70px 90px auto;

  .is-bnrHidden & {
    display: none;
  }

  @media (any-hover: hover) {
    .bl-footerBnr:hover {
      opacity: 1;
    }
  }

  @media (max-width: 767px) {
    & {
      max-width: 375px;
      margin-inline-start: auto;
      inset: auto 28px 10px 16px;
    }
  }
}

.bl-footerBnr_close {
  display: grid;
  place-content: center;
  width: 26px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid #fb4d02;
  background: var(--color-white);
  position: absolute;
  inset: -14px -14px auto auto;

  &::before {
    content: "";
    width: 11px;
    aspect-ratio: 1;
    mask: url("/sites/default/files/images/custom/close.svg") center no-repeat;
    mask-size: contain;
    background-color: #fb4d02;
    transition: var(--transition-time);
  }

  @media (any-hover: hover) {
    &:where(:hover) {
      &::before {
        opacity: 0.7;
      }
    }
  }
}

.bl-breadcrumbs_wrapper {
  --_border: 1px solid #d5d5d5;

  width: 100vw;
  border-top: var(--_border);
  border-bottom: var(--_border);
  background: var(--color-white);
  margin-block-start: 108px;
  margin-inline: calc(50% - 50vw);
  padding-inline: calc(50vw - 50%);

  @media (max-width: 767px) {
    & {
      margin-block-start: 70px;
    }
  }
}

.bl-breadcrumbs {
  display: flex;
  align-items: center;
  font-size: calc(14 * var(--rem-ratio));
  line-height: calc(36 / 14);
  min-height: 55px;

  @media (max-width: 767px) {
    & {
      display: block;
      padding-block: 17px;
    }
  }
}

.bl-breadcrumbs_item {
  @media (max-width: 767px) {
    & {
      display: inline;
    }
  }
}

.bl-breadcrumbs_item:not(:last-of-type) {
  &::after {
    display: inline-block;
    content: ">";
    margin-inline: 0.25em;
  }
}

.bl-breadcrumbs_link {
  color: #fd9d02;
}

.bl-titleIcon {
  margin-block-end: 40px;

  .el-titleIcon {
    margin-block-end: 10px;
  }

  .el-titleIcon_bodyNote {
    padding-inline-start: 126px;
  }
}
@media screen and (width < 768px) {
  .bl-titleIcon {
    .el-titleIcon_bodyNote {
      padding-inline-start: 0;
    }
  }
}

.bl-section {
  & + & {
    margin-block-start: 70px;
  }

  @media (max-width: 767px) {
    & + & {
      margin-block-start: 40px;
    }
  }
}

.bl-section_box {
  border-radius: 10px;
  padding-inline: 44px;
  padding-block: 40px;

  .bl-section_boxPic {
    margin-block-start: 0;
    border-bottom: 1px dashed #707070;
    padding-block-end: 30px;
    margin-block-end: 30px;

    img {
      display: block;
      margin-inline: auto;
      margin-block-end: 30px;
    }

    .el-textHeadLine {
      margin-block: 0;
    }

    .el-textHeadLine_head {
      margin-inline-end: 0.5em;
    }
  }

  .bl-section_boxText {
    font-size: calc(14 * var(--rem-ratio));

    & + & {
      margin-block-start: 16px;
    }

    a {
      color: var(--color-text);
      letter-spacing: -0.03em;
    }
  }

  &.--silver {
    background-color: #F5F3EE;
  }
}
@media screen and (width < 768px) {
  .bl-section_box {
    padding-inline: 25px;
    padding-block: 20px;

    .bl-section_boxPic {
      padding-block-end: 20px;
      margin-block-end: 20px;
    }
  }
}

.bl-section_title {
  display: inline-grid;

  font-size: calc(28 * var(--rem-ratio));
  font-weight: bold;
  line-height: calc(38 / 28);
  border: 1px solid #fd9d02;
  box-shadow: 6px 6px 0 0 #fd9d02;
  background: #fcf8ea;
  margin-inline-end: 90px;
  margin-block-end: -1em;
  padding: 20px 24px 20px 74px;
  translate: 0 0.5em;
  position: relative;
  z-index: 1;

  &::before {
    content: "";
    width: 74px;
    aspect-ratio: 1;
    background: url(/sites/default/files/images/custom/icon_clip.svg) 0 0
      no-repeat;
    background-size: contain;
    position: absolute;
    inset: -22px 0 0;
    z-index: 1;
  }

  @media (max-width: 767px) {
    & {
      font-size: calc(24 * var(--rem-ratio));
      line-height: calc(36 / 24);
      margin-inline-end: 63px;
      margin-block-end: -0.5em;
      padding: 10px 15px 10px 61px;
    }

    &::before {
      width: 63px;
      inset: -19px 0 0;
    }
  }
}

.bl-section_body {
  border: 1px solid #f7c1a5;
  background: #fff;
  margin-inline-start: 25px;
  padding: 90px 38px 40px;
  clip-path: polygon(0 0, calc(100% - 56px) 0, 100% 46px, 100% 100%, 0 100%);
  position: relative;

  &::before {
    content: "";
    width: 98px;
    height: 1px;
    background: #f7c2a9;
    position: absolute;
    inset: 0 -44px auto auto;
    rotate: 39deg;
    transform-origin: top left;
  }

  &::after {
    content: "";
    width: 50px;
    height: 40px;
    border-left: 1px solid #f7c2a9;
    border-bottom: 1px solid #f7c2a9;
    position: absolute;
    inset: 14px 12px auto auto;
    z-index: 1;
  }

  @media (max-width: 767px) {
    & {
      margin-inline-start: 19px;
      padding: 60px 18px 19px;
      clip-path: polygon(
        0 0,
        calc(100% - 35px) 0,
        100% 30px,
        100% 100%,
        0 100%
      );
    }

    &::before {
      width: 47px;
      inset: 0 -14px auto auto;
      rotate: 40deg;
    }

    &::after {
      width: 30px;
      height: 24px;
      inset: 12px 11px auto auto;
    }
  }
}

.bl-section_row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 30px;
  gap: 24px;

  & > .bl-section_col.--w68 {
    width: 68px;
  }

  & > .bl-section_col:not(.--w68) {
    flex: 1 0 0;
  }
}

.bl-figure {
  &.--fit_width {
    & .bl-figure_body {
      width: fit-content;
      margin-inline: auto;
    }
  }

  .bl-section_text + &,
  & + .bl-section_text {
    margin-block-start: calc(40px + var(--leading-trim));
  }
}

.bl-check {
  font-weight: 500;
  border: 1px solid #e3e3e3;
  background: #fdfdfd;
  padding: 40px 50px 50px;

  .bl-section_text + & {
    margin-block-start: calc(40px + var(--leading-trim));
  }

  @media (max-width: 767px) {
    & {
      padding: 30px 20px;
    }
  }
}

.bl-check_item {
  & + &:not(.--summary) {
    border-top: 1px dashed #707070;
    margin-block-start: calc(30px + var(--leading-trim));
    padding-block-start: calc(30px + var(--leading-trim));
  }

  &.--summary {
    margin-block-start: 50px;
  }

  @media (max-width: 767px) {
    &.--summary {
      margin-block-start: 25px;
    }
  }
}

.bl-check_label {
  margin-block-end: calc(20px + var(--leading-trim));
}

.bl-check_text {
  &.--check {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 10px;
  }

  &::before {
    content: "";
    width: 24px;
    aspect-ratio: 1;
    border-radius: 4px;
    border: 2px solid #fb9d02;
    margin-block-start: calc(((1lh - 1rem) / 2) + ((1rem - 24px) / 2));
  }

  & + & {
    margin-block-start: calc(20px + var(--leading-trim));
  }
}

.bl-check_summary {
  display: grid;
  grid-auto-flow: column;
  justify-content: center;
  gap: 10px;
  font-feature-settings: "palt";
  font-size: calc(22 * var(--rem-ratio));
  font-weight: bold;
  line-height: calc(32 / 22);
  color: #ff4d00;
  text-align: center;

  &::before,
  &::after {
    content: "";
    width: 24px;
    aspect-ratio: 22/24;
  }

  &::before {
    mask: url("/sites/default/files/images/custom/icon_summary.svg") center
      no-repeat;
    mask-size: contain;
    background-color: #fb4d02;
    translate: 0 5%;
  }

  &::after {
    mask: url("/sites/default/files/images/custom/icon_summary02.svg") center
      no-repeat;
    mask-size: contain;
    background-color: #fb4d02;
    translate: 0 5%;
  }
}

.bl-sectionUnder {
  & + & {
    margin-block-start: 40px;
  }
}

.bl-supervision {
  display: flex;
  align-items: center;
  gap: 0;
  margin-block-start: 30px;
}
@media screen and (width < 768px) {
  .bl-supervision {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    gap: 0;
    margin-block-start: 0;
    width: calc(343 / 375 * 100vw);
    padding-left: 52px;

    & .el-label {
      height: 2em;
      position: absolute;
      left: 0;
      top: 6px;
    }
  }
}

.bl-supervision_name {
  font-size: calc(17 * var(--rem-ratio));
}

.bl-supervision_text {
  font-size: calc(13 * var(--rem-ratio));
}

.bl-supervision .el-label {
  margin-right: 12px;
}
@media screen and (width < 768px) {
  .bl-supervision .el-label {
    margin-right: 0;
  }
}

.bl-listThumb {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 920px;
  margin-inline: auto;
  gap: 20px;

  & > li {
    display: flex;
    flex-direction: column;
    width: calc(50% - 10px);
    border: 2px solid #fb9d02;
    border-radius: 10px;
    padding: 30px;
  }

  .el-titleV4 {
    margin-block-end: 20px;
  }

  p {
    margin-block-end: 30px;
  }

  figure {
    width: 100%;
    max-width: 308px;
    margin-inline: auto;
    margin-block-start: auto;
  }
}
@media screen and (width < 768px) {
  .bl-listThumb {
    gap: 20px;

    & > li {
      width: calc(100%);
      padding: calc(30 / 375 * 100vw);
    }

    p {
      text-align: justify;
    }

    figure {
      max-width: none;
    }
  }
}

.bl-container_box {
  display: flex;
  width: 100%;
  margin-block: 40px;

  .bl-container_boxItems {
    width: 50%;

    &.--green {
      background-color: #EFFAF8;
    }

    &.--orange {
      background-color: #FAF2E5;
    }
  }

  .bl-container_boxTit {
    display: grid;
    place-items: center;
    width: 100%;
    min-height: 64px;
    font-size: calc(24 * var(--rem-ratio));
    font-weight: bold;

    .--green & {
      background-color: #64C0AB;
      color: var(--color-white);
    }

    .--orange & {
      background-color: #FD9D02;
      color: var(--color-white);
    }
  }

  .bl-container_boxLst {
    padding-inline: 36px;
    padding-block: 30px;

    & > li {
      position: relative;
      padding-inline-start: 28px;

      &::before {
        content: "";
        display: block;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        position: absolute;
        top: 0.6em;
        left: 0;
      }
    }
  }

  .--green .bl-container_boxLst > li::before {
    background-color: #64C0AB;
  }

  .--orange .bl-container_boxLst > li::before {
    background-color: #FB9D02;
  }
}
@media screen and (width < 768px) {
  .bl-container_box {
    flex-direction: column;

    .bl-container_boxItems {
      width: 100%;
    }

    .bl-container_boxTit {
      min-height: 64px;
      font-size: calc(24 * var(--rem-ratio));
      font-weight: bold;
    }

    .bl-container_boxLst {
      padding-inline: 25px;
      padding-block: 20px;

      & > li {
        position: relative;
        padding-inline-start: 28px;

        &::before {
          content: "";
          display: block;
          width: 16px;
          height: 16px;
          border-radius: 50%;
          position: absolute;
          top: 0.6em;
          left: 0;
        }
      }
    }
  }
}

/* ヘルパー (prefix: hp- )
----------------------------------------------------------------- */
@media screen and (max-width: 767px) {
  .hp-pcOnly {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .hp-spOnly {
    display: none;
  }
}

.hp-mb0 {
  margin-block-end: 0 !important;
}

.hp-mb48 {
  margin-block-end: 48px;
}

.hp-mt30 {
  margin-block-start: 30px;
}

.hp-mt40 {
  margin-block-start: 40px;
}

.hp-leadingTrim {
  &::before,
  &::after {
    content: "";
    display: block flow;
    inline-size: 0;
    block-size: 1px;
  }

  &::before {
    margin-block-end: var(--leading-trim);
  }

  &::after {
    margin-block-start: var(--leading-trim);
  }
}

.hp-visually-hidden {
  width: 1px !important;
  height: 1px !important;
  white-space: nowrap !important;
  border: 0 !important;
  margin: -1px !important;
  padding: 0 !important;
  position: absolute !important;
  clip: rect(0, 0, 0, 0) !important;
  overflow: hidden !important;
}

/* ユニーク (prefix: un- )
----------------------------------------------------------------- */
.un-externalModal {
  width: calc(1000 / 1366 * 100%);
  max-width: 1000px;
  padding: 80px min(calc(40 / 1000 * 100%), 40px);

  &::backdrop {
    background-color: rgba(0, 0, 0, 0.8);
  }
}
@media screen and (width < 798px) {
  .un-externalModal {
    width: 100%;
    max-width: 85vw;
    max-height: 85vh;
    overflow: auto;
    margin: auto;
    padding: calc(20 / 375 * 100vw) calc(25 / 375 * 100vw);
  }
}

.un-externalModal_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px 0;
}
@media screen and (width < 798px) {
  .un-externalModal_container {
    gap: 20px 0;
  }
}

.un-externalModal_title {
  font-size: calc(26 * var(--rem-ratio));
  font-weight: 500;
  text-align: center;
}
@media screen and (width < 798px) {
  .un-externalModal_title {
    font-size: calc(20 * var(--rem-ratio));
  }
}

.un-externalModal_text {
  text-align: center;
}
@media screen and (width < 798px) {
  .un-externalModal_text {
    font-size: calc(16 * var(--rem-ratio));
  }
}

.un-externalModal_bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 24px;
}

.un-externalModal_button {
  display: grid;
  place-items: center;
  width: calc(276 / 920 * 100%);
  max-width: 276px;
  min-height: 70px;
  font-size: calc(20 * var(--rem-ratio));
  font-weight: 500;
  color: #fff;

  &.--yes {
    background-color: #FD9D02;
  }

  &.--no {
    background-color: #8E8E8E;
  }
}
@media screen and (width < 798px) {
  .un-externalModal_button {
    width: 100%;
    max-width: 350px;
    min-height: 60px;
    font-size: calc(18 * var(--rem-ratio));
  }
}
@media (any-hover: hover) {
  .un-externalModal_button:hover {
    opacity: 0.7;
  }
}