@charset "utf-8";

/* ------------------------------
Variable Setting（変数設定）
------------------------------ */
:root {
  /* ホワイト */
  --white01: #ffffff;

  /* ブラック */
  --black01: #212121;

  /* グレー */
  --gray01: #F0F0F0;
  --gray02: #d9d9d9;
  --gray03: #959595;
  --gray04: #6a6a6a;
  --gray05: #6e6e6e;
  --gray06: #ededed;
  --gray07: #bebebe;

  /* ブルー */
  --blue01: #0b90d7;
  --blue02: #cae0e1;
  --blue03: #E9F7FF;

  /* イエロー */
  --yellow01: #ffe32a;

  /* レッド */
  --red01: #cc0000;

  /* 文字サイズ */
  --px10: 0.625rem;
  --px12: 0.75rem;
  --px14: 0.875rem;
  --px16: 1rem;
  --px18: 1.125rem;
  --px20: 1.25rem;
  --px22: 1.375rem;
  --px24: 1.5rem;
  --px26: 1.625rem;
  --px28: 1.75rem;
  --px30: 1.875rem;
  --px32: 2rem;
  --px34: 2.125rem;
  --px36: 2.25rem;
  --px38: 2.375rem;
  --px40: 2.5rem;

  /* 画面サイズ */
  --vwMax: 1920;
  /* PC */
  --vwLarge: 1280;
  /* PC */
  --vwSmall: 810;
  /* SP */
  /*  */
  /* calc( ( 100vw / var(--vwLarge) ) * xx ) */
  /* PC */
  /*  */
  /* calc( ( 100vw / var(--vwSmall) ) * xx ) */
  /* SP */

  /* アニメーション設定 */
  --anim01: opacity 2s ease-in-out 1s, filter 2s ease-in-out 1s, clip-path 2s ease-in-out 1s;
  --anim02: opacity 2s ease-in-out 2.5s, filter 2s ease-in-out 2.5s;
  --anim03: opacity 2s ease-in-out 4.5s, filter 2s ease-in-out 4.5s;
  --anim04: opacity 2s ease-in-out 6.5s;
  --anim05: opacity 1s ease-in-out 0.5s, filter 1s ease-in-out 0.5s;
}

/* ------------------------------
Basic Style and Tools
------------------------------ */
html {
  scroll-behavior: smooth;
  color: var(--black01);
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  background: var(--blue03);
}
.wbr { 
  word-break: keep-all; overflow-wrap: break-word; 
}
.ib {
  display: inline-block;
}
@media (max-width:800px) {}

@media (min-width:801px) {
  .sp__only {
    display: none;
  }
}

@media (max-width:800px) {
  .pc__only {
    display: none;
  }
}

.content {
  width: calc(100% - 40px);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.common__content {
  margin-bottom: 70px;
  padding: 50px;
  background: var(--white01);
}

main {
  margin-top: 23px;
}

.radius8 {
  border-radius: 8px;
  overflow: hidden;
}

.radius5 {
  border-radius: 5px;
  overflow: hidden;
}

.radius4 {
  border-radius: 4px;
  overflow: hidden;
}

.caption {
  font-size: var(--px12);
  margin-top: 10px;
  &.right {
    text-align: right;
  }
}
.more__btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  height: 60px;
  width: 100%;
  border-radius: 30px;
  font-size: var(--px20);
  text-decoration: none;
  gap: 7px;

  &.gray {
    background: var(--gray03);
    color: var(--white01);

    &:hover,
    &:focus {
      background: var(--gray04);
    }
  }

  &.blue {
    background: var(--blue01);
    color: var(--white01);

    &:hover,
    &:focus {
      background: var(--gray04);
    }
  }

  &.blue2 {
    background: var(--blue02);
    color: var(--black01);

    &:hover,
    &:focus {
      background: var(--gray04);
      color: var(--white01);
    }
  }

  &.blue3 {
    background: var(--blue03);
    color: var(--black01);
    border: var(--blue01) solid 2px;

    &:hover,
    &:focus {
      background: var(--gray04);
      color: var(--white01);
    }
  }

  &.yellow {
    background: var(--yellow01);
    color: var(--black01);

    &:hover,
    &:focus {
      background: var(--gray04);
      color: var(--white01);
    }
  }

  & .txt {
    align-self: center;
  }

  & .icon {
    align-self: center;
  }
}

.outlink {
  display: inline-block;
  padding: 0 0 0 2.25em;

  &::after {
    content: '';
    background: url(../img/common/icon_outlink.svg) center center / 100% 100% no-repeat;
    width: 1.2em;
    height: 1.2em;
    display: inline-block;
    margin-left: 10px;
    vertical-align: sub;
  }
}

.text__outlink {
  display: inline;
  color: var(--blue01);
  text-decoration: underline;
  margin-right: 0.5em;

  &::after {
    content: '';
    background: url(../img/common/icon_outlink_blue.svg) center center / 100% 100% no-repeat;
    width: 1.2em;
    height: 1.2em;
    display: inline-block;
    margin-left: 10px;
    vertical-align: sub;
  }
}

.text__link {
  color: var(--blue01);
  text-decoration: underline;
}

@media screen and (max-width:810px) {
  .common__content {
    padding: 20px;
  }
}

/* LIST STYLE */
.link__list {
  & ul {
    list-style: none;

    & li {
      display: block;

      & a {
        display: block;
        font-size: var(--px16);
        padding: 0 0 0 1.5em;
        position: relative;
        text-decoration: none;

        &:before {
          content: '▶︎';
          color: var(--blue01);
          position: absolute;
          left: 0;
          top: 50%;
          transform: translateY(-50%);
          display: inline-block;
        }
        &.coming__soon {
          pointer-events: none;
          color: var(--gray03);
          &:before {
            filter: grayscale(1) ; opacity: .7;
          }
        }
      }
    }
  }
}

.link__list2 {
  & ul {
    list-style: none;

    & li {
      display: block;

      & a {
        display: block;
        font-size: var(--px16);
        padding: 0 0 0 1.5em;
        position: relative;
        text-decoration: none;

        &:before {
          content: '';
          position: absolute;
          left: 0;
          top: 50%;
          transform: translateY(-50%) translateX(50%);
          display: inline-block;
          width: 0.5625em;
          height: 1.125em;
          background: url(../img/common/icon_arrow_right_black.svg) center center / 100% 100% no-repeat;
        }
      }

      &+li {
        margin-top: 16px;
      }
    }
  }
}

.normal__list {
  & ul {
    list-style: none;

    & li {
      display: block;
      position: relative;
      padding: 0 0 0 1em;
      font-size: var(--px16);

      &::before {
        content: '・';
        display: inline;
        position: absolute;
        left: 0;
        top: 0;
      }
    }
  }
}

.note__list {
  & ul {
    list-style: none;

    & li {
      display: block;
      position: relative;
      padding: 0 0 0 1em;
      font-size: var(--px16);

      &::before {
        content: '※';
        display: inline;
        position: absolute;
        left: 0;
        top: 0;
      }
    }
  }
}

.note__list2 {
  & ul {
    list-style: none;

    & li {
      display: block;
      position: relative;
      padding: 0 0 0 2em;
      font-size: var(--px16);

      & .num {
        display: inline-block;
        position: absolute;
        left: 0;
        top: 0;
      }
    }
  }
}

.example__list {
  display: block;
  position: relative;
  padding: 0 0 0 2em;
  font-size: var(--px16);

  & .ex {
    position: absolute;
    left: 0;
    top: 0;
  }

  & ul {
    list-style: none;

    & li {
      display: block;
      position: relative;
      padding: 0 0 0 1em;
      font-size: var(--px16);

      &::before {
        content: '・';
        display: inline;
        position: absolute;
        left: 0;
        top: 0;
      }
    }
  }
}

.doc__list {
  & ul {
    list-style: none;

    & li {
      display: block;
      position: relative;
      padding: 0 0 0 2em;
      font-size: var(--px16);

      & .icon {
        display: block;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);

        &.pdf {
          background: url(../img/common/icon_pdf.svg) center center / 100% 100% no-repeat;
          width: 1.5em;
          height: 1.5em;
        }
      }

      & a {
        display: block;
        text-decoration: none;
      }

      &+li {
        margin-top: 16px;
      }
    }
  }
}

.doc__image__list {
  & ul {
    list-style: none;
    gap: 67px;
    justify-content: flex-start;

    & li {
      flex-basis: calc((100% - 135px) / 3);

      & .doc__image {
        margin: 0 0 8px 0;

        & .dummy {
          background: var(--gray02);
          aspect-ratio: 3 / 4;
        }
      }

      & .doc__name {
        display: block;
        position: relative;
        padding: 0 0 0 2em;
        font-size: var(--px16);
        line-height: 1.2;

        & .icon {
          display: block;
          position: absolute;
          left: 0;
          top: 0;

          &.pdf {
            background: url(../img/common/icon_pdf.svg) center center / 100% 100% no-repeat;
            width: 1.5em;
            height: 1.5em;
          }
        }
      }

      & .doc__discription {
        margin-top: 8px;

        & ul {
          & li {
            font-size: var(--px12);
            line-height: 1.5;
            display: block;
            position: relative;
            padding: 0 0 0 1em;

            &:before {
              content: '・';
              position: absolute;
              left: 0;
              top: 0;
              display: block;
            }
          }
        }
      }

      & a {
        display: block;
        text-decoration: none;
      }
    }
  }

  &+.doc__image__list {
    margin-top: 80px;
  }
}

@media screen and (max-width:810px) {
  .doc__image__list {
    & ul {
      justify-content: space-between;
      gap: 40px 0;

      & li {
        flex-basis: calc((100% - 20px) / 2);
      }
    }
  }
}

.tel__list {
  width: 100%;
  max-width: 840px;
  margin: 40px auto 0 auto;

  & ul {
    gap: 20px;
    list-style: none;

    & li {
      flex-basis: calc((100% - 40px) / 3);
      line-height: 1.2;

      & .tel__title {
        font-size: var(--px12);
        font-weight: 700;
        margin-bottom: 4px;
        margin-top: 0;
      }

      & .tel__subtitle {
        font-size: var(--px10);
        font-weight: 400;
        margin-bottom: 4px;
        margin-top: 0;
      }

      & .tel__number {
        font-size: var(--px30);
        font-weight: 700;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        margin-bottom: 8px;
        margin-top: 0px;

        & .icon {
          flex-basis: 1.266em;
          height: 0.73em;
          background: url(../img/common/icon_freedial.svg) center center / 100% 100% no-repeat;
          margin-right: 0.5em;
        }

        & a {
          text-decoration: none;
          line-height: 1.2;
        }
      }

      & .tel__subnumber {
        font-size: var(--px24);
        font-weight: 700;
        display: flex;
        flex-wrap: wrap;
        align-items: flex-end;
        margin: 0;

        & .icon {
          flex-basis: 1.2em;
          height: 1.2em;
          background: url(../img/common/icon_call.svg) center center / 100% 100% no-repeat;
          margin-right: 0.5em;
        }

        & a {
          text-decoration: none;
          line-height: 1.2;
        }
      }

      & a {
        pointer-events: none;
      }
    }
  }
}

@media screen and (max-width:810px) {
  .tel__list {
    & ul {
      justify-content: center;
      gap: 40px 20px;

      & li {
        flex-basis: 280px;

        & a {
          pointer-events: all;
        }
      }
    }
  }
}

.category__list {
  margin-top: 40px;

  & ul {
    list-style: none;
    gap: 30px;

    & li {
      flex-basis: calc((100% - 30px) / 2);
      display: flex;
      flex-wrap: wrap;
      padding: 16px 22px;
      align-items: center;
      background: var(--gray01);

      & a {
        text-decoration: none;
      }
    }
  }
}

@media screen and (max-width:810px) {
  .category__list {
    & ul {
      gap: 20px;

      & li {
        flex-basis: 100%;
      }
    }
  }
}

.select__list {
  & ul {
    list-style: none;
    justify-content: flex-start;
    gap: 20px;

    & li {
      & label {
        display: block;
        position: relative;
        padding: 0 0 0 1.5em;

        & input {
          position: absolute;
          left: 0;
          top: 0;
        }
      }
    }
  }
}

.faq__list {
  & ul {
    list-style: none;
    gap: 30px;

    & li {
      background: var(--blue03);
      position: relative;
      padding: 20px 20px 20px 76px;
      flex-basis: calc((100% - 30px) / 2);

      &::before {
        content: 'Q';
        color: var(--blue01);
        font-size: 26px;
        font-weight: 700;
        position: absolute;
        left: 20px;
        top: 20px;
        line-height: 1.2;
      }
    }
  }
}

@media screen and (max-width:810px) {
  .faq__list {
    & ul {
      gap: 20px;

      & li {
        flex-basis: 100%;
      }
    }
  }
}

.schedule {
  & dl {
    font-size: var(--16px);
    & dt {
      flex-basis: 6em; 
      &::after {
        content: '：'; display: inline;
      }
    }
    & dd {
      flex-basis: calc( 100% - 6em );
    }
  }
}

/* TITLE STYLE */
.content__title {
  margin-bottom: 35px;

  & h3 {
    font-size: var(--px28);
    font-weight: 700;
    text-align: center;
    color: var(--blue01);
  }

  & p {
    margin: 20px 0 0 0;
    font-size: var(--px16);
    text-align: center;
  }
}

.content__title2 {
  background: var(--blue01);
}

.page__title {
  width: calc(100% - 40px);
  max-width: 1000px;
  margin: 0 auto 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 112px;
  background: var(--blue01);

  & h2 {
    font-size: var(--px24);
    font-weight: 700;
    color: var(--white01);
  }
}

.section__title {
  background: var(--blue01);
  color: var(--white01);
  padding: 4px 16px;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  height: 50px;
}

.section__subtitle {
  font-size: var(--px16);
  font-weight: 700;
  padding: 0 0 10px 0;
  border-bottom: var(--black01) solid 1px;
  margin-bottom: 20px;
  &.blue {
    color: var(--blue01); border-bottom: var(--blue01) solid 1px;
  }
}

.note__title {
  font-size: var(--px16);
  margin-bottom: 0;
  font-weight: 400;
}

.howto__web__title {
  font-size: var(--px20);
  font-weight: 700;
  position: relative;
  padding: 0 0 0 1.8em;
  margin: 27px 0 27px 0;

  &::before {
    content: '';
    width: 1.2em;
    height: 1.2em;
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url(../img/common/icon_pc.svg) center center / 100% 100% no-repeat;
  }
}

.howto__paper__title {
  font-size: var(--px20);
  font-weight: 700;
  position: relative;
  padding: 0 0 0 1.8em;
  margin: 27px 0 27px 0;

  &::before {
    content: '';
    width: 1.6em;
    height: 1.6em;
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url(../img/common/icon_paper.svg) center center / 100% 100% no-repeat;
  }
}

.wrapper {
  background: var(--white01);
  padding: 75px 0;
}

.box {
  background: var(--blue03);
  padding: 20px;
}

/* ------------------------------
HEADER（ヘッダー）
------------------------------ */
.header {
  background: var(--white01);
  padding: 20px;
  z-index: 100;

  & .content {
    max-width: 1400px;

    & .site__name {
      flex-basis: calc(100% - 238px);
      font-size: var(--px24);
      align-self: center;
      font-weight: 500;      
      & img {
        width: 130px; 
        display: block;
      }
      & .text {
        display: inline-block;
      }
      & a {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap:0 10px;
        text-decoration: none;
      }
    }

    & .logo__box {
      flex-basis: 238px;
      align-self: center;

      & ul {
        list-style: none;
        align-items: center;

        & li {
          &:nth-of-type(1) {
            flex-basis: 91px;
          }

          &:nth-of-type(2) {
            flex-basis: 127px;

          }
        }
      }
    }

    & .btn__box {
      display: none;
      flex-basis: 40px;
      height: 40px;

      & .menu__button {
        width: 100%;
        height: 100%;
        position: relative;
        text-indent: -9999px;
        z-index: 100;
        transform: translateX();
        overflow: visible;
        cursor: pointer;
        background: var(--blue01);

        & span {
          width: 70%;
          height: 2px;
          position: absolute;
          background: var(--white01);
          transition: all 0.25s linear 0s;

          &:nth-of-type(1) {
            left: 50%;
            top: 50%;
            transform: translateX(-50%) translateY(-8px);
          }

          &:nth-of-type(2) {
            left: 50%;
            top: 50%;
            transform: translateX(-50%) translateY(0);
          }

          &:nth-of-type(3) {
            left: 50%;
            top: 50%;
            transform: translateX(-50%) translateY(8px);
          }
        }

        &.active {
          & span {
            &:nth-of-type(1) {
              transform: translateX(-50%) translateY(0) rotate(45deg);
              width: 100%;
            }

            &:nth-of-type(2) {
              opacity: 0;
            }

            &:nth-of-type(3) {
              transform: translateX(-50%) translateY(0) rotate(-45deg);
              width: 100%;
            }
          }
        }
      }
    }
  }
}

@media screen and (max-width:810px) {
  .header {
    position: sticky;
    left: 0;
    top: 0;
    padding: 20px 0;

    & .content {
      & .site__name {
        flex-basis: calc(100% - 50px);
        & .text {
          font-size: var(--px16);
        }
        & img {
          width: 100px;
        }
        & a[

        ]
      }

      & .logo__box {
        display: none;
      }

      & .btn__box {
        display: block;
      }
    }
  }
}
@media screen and (max-width:480px ) {
  .header {
    padding: 10px 0;
    & .content {
      width: calc( 100% - 20px );
      & .site__name {
        
        & .text {
          font-size: var(--px12);
        }
        & img {
          width: 80px;
        }
        & a {
          gap: 0 0;
        }
      }
    }
  }
}

/* ------------------------------
NAVIGATION（グローバルナビゲーション）
------------------------------ */
.navi {
  position: sticky;
  left: 50%;
  top: 0;
  width: 100%;
  margin-top: 35px;
  z-index: 100;

  & ul {
    list-style: none;
    padding: 16px 30px;
    background: var(--white01);
    width: calc(100% - 40px);
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);

    & li {
      & a {
        text-decoration: none;
        font-size: var(--16px);
        font-weight: 700;
        &.coming__soon {
          pointer-events: none;
          color: var(--gray07);
        }
      }

      &:last-of-type {
        & a {
          display: flex;
          height: 40px;
          border-radius: 20px;
          flex-wrap: wrap;
          justify-content: center;
          justify-items: center;
          background: var(--yellow01);
          padding: 0 20px;
          align-items: center;
          font-size: var(--px18);
          font-weight: 700;

          &:hover {
            background: var(--gray04);
            color: var(--white01);
          }
          &.coming__soon {
            background: var(--gray03);
            color: var(--white01);
            pointer-events: none;
            &:hover {
              background: var(--gray03);
              color: var(--white01);
            }
          }
        }
      }
    }
  }
}

@media screen and (max-width:810px) {
  .navi {
    position: fixed;
    width: 100%;
    height: calc(100% - 80px);
    top: 80px;
    left: 0;
    display: none;
    transform: none;
    margin: 0;

    & .content {
      width: 100%;
      padding-bottom: 40px;
      height: 100%;
      align-content: flex-start;

      & li {
        flex-basis: 100%;

        & a {
          display: block;
          text-align: center;

        }

        &:not(:last-of-type) {
          & a {
            padding: 1em 0;
          }
        }

        &+li:not(:last-of-type) {
          border-top: var(--gray03) dotted 1px;
        }

        &:last-of-type {
          margin-top: 20px;
        }
      }
    }

    &.active {
      display: block;

    }
  }
}

/* ------------------------------
BREAD CRUMBS
------------------------------ */
.bread__crumbs {
  width: calc(100% - 40px);
  max-width: 1000px;
  margin: 30px auto 10px auto;
  z-index: 90;

  & ul {
    gap: 10px;
    justify-content: flex-start;

    & li {
      font-size: var(--px12);
      display: block;

      &:not(:last-of-type) {
        &:after {
          content: '▲';
          display: inline-block;
          margin-left: 10px;
          transform: rotate(90deg);
          color: var(--blue01);
        }
      }

      & a {
        color: var(--blue01);
        text-decoration: underline;
      }
    }
  }
}

/* ------------------------------
FOOTER
------------------------------ */
.footer {
  padding: 50px 0;
  background: var(--white01);

  & .site__name {
    font-size: var(--px20);
    font-weight: 700;
    text-align: center;
    line-height: 1.77;
    display: flex;
    justify-content: center;
    gap:0 1em;
  }

  & .content {
    & nav {
      margin: 60px 0 0 0;

      & ul {
        justify-content: center;
        gap: 20px 20px;
      }
    }

    & .sdgs__logo {
      padding: 27px 0;
      border-top: var(--gray03) solid 1px;
      border-bottom: var(--gray03) solid 1px;
      margin-top: 60px;

      & .img {
        width: 100%;
        max-width: 560px;
        margin: 0 auto;
        & .logo {
          display: block; flex-basis: calc( 55% - 10px );
        }
        & p {
          display: block; flex-basis: calc( 45% - 10px ); font-size: var(--px12); color: var(--blue01); line-height: 1.2; font-feature-settings: "palt";
        }
      }
    }
  }

  & .bottom__content {
    padding: 63px 20px 0 20px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 380px;
    grid-template-rows: auto auto;

    & .txt__link {
      grid-column: 1 / 2;
      grid-row: 1 / 2;
      margin-bottom: 35px;
    }

    & .copyright {
      grid-column: 1 / 2;
      grid-row: 2 / 3;
    }

    & .logo__box {
      grid-column: 2 / 3;
      grid-row: 1 / 3;
      align-self: end;

      & ul {
        list-style: none;
        gap: 30px;

        & li {
          &:nth-of-type(1) {
            flex-basis: 146px;
          }

          &:nth-of-type(2) {
            flex-basis: 204px;
          }
        }
      }
    }
  }
}

@media screen and (max-width:810px) {
  .footer {
    padding: 50px 0 20px 0;
    & .site__name {
      font-size: var(--px18);
    }
    & .content {
      & nav {
        & ul {
          gap: 10px 20px;

          & li {
            flex-basis: calc((100% - 20px) / 2);
          }
        }
      }
      & .sdgs__logo {
       
        & .img {
          gap: 10px 0; max-width: 360px;
          & .logo {
            flex-basis: 100%;
          }
          & p {
            flex-basis: 100%;
          }
        }
      }
    }

    & .bottom__content {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto auto;
      padding: 20px 20px 0 20px;

      & .txt__link {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
        margin-bottom: 35px;

        & ul {
          & li {
            text-align: center;

            & a {
              display: inline-block;
            }
          }
        }
      }

      & .copyright {
        grid-column: 1 / 3;
        grid-row: 3 / 4;
        margin-top: 20px;
        text-align: center;
      }

      & .logo__box {
        grid-column: 1 / 3;
        grid-row: 2 / 3;

        & ul {
          justify-content: center;
        }
      }
    }
  }
}


/* ------------------------------
CHATBOT BANNER（みらいちゃんバナー）
------------------------------ */
.float__bnr {
  position: sticky;
  bottom: 0;

  & a {
    display: block;
    padding: 13px 0 0 82px;
    background: var(--blue01);
    color: var(--white01);
    text-decoration: none;
    width: 200px;
    height: 80px;
    position: relative;
    float: right;
    margin-right: 50px;
    margin-top: -80px;
    line-height: 1.5;
    overflow: visible;
    transform: translateY(-20px);

    &::before {
      content: '';
      display: block;
      width: 63px;
      height: 96px;
      position: absolute;
      left: 9px;
      bottom: 8px;
      background: url(../img/common/illust_mirai.png) center center / 100% 100% no-repeat;
      pointer-events: none;
    }

    &::after {
      position: absolute;
      right: 17px;
      bottom: 14px;
      width: 106px;
      height: 10px;
      background: url(../img/common/float_line.svg) center bottom / 100% 100% no-repeat;
      display: block;
      content: '';
    }

    &:hover,
    &:focus {
      background: var(--gray04);
    }
  }
}

@media screen and (max-width:810px) {
  .float__bnr {
    & a {
      margin-right: 20px;
    }
  }
}



.wrapper {
  background: var(--white01);
}

.qa {
  & details {
    &:not(:first-of-type) {
      margin-top: 18px;
    }

    & .question {
      background: var(--blue03);
      padding: 13px;
      font-size: var(--px16);
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      cursor: pointer;

      &:before {
        content: 'Q';
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-content: center;
        width: var(--px34);
        height: var(--px34);
        font-size: var(--px22);
        border-radius: 50%;
        background: var(--white01);
        text-align: center;
        font-weight: 600;
        color: var(--blue01);
      }

      & .txt {
        align-self: center;
        margin-right: auto;
        margin-left: 20px;
        font-size: var(--px16);
        font-weight: 400;
      }

      &:after {
        content: '▼ 開く';
        align-self: center;
        color: var(--blue01);
        font-weight: 400;
      }
    }

    &[open] {
      & h4 {
        &:after {
          content: '▲ 閉じる';
        }
      }
    }

    & summary {
      list-style: none;

      &::marker {
        content: none;
      }

      &::-webkit-details-marker {
        display: none;
      }
    }

    & .answer {
      background: var(--white01);
      padding: 25px 0 25px 0;

      & p {
        font-size: var(--px16);
        position: relative;
        padding: 0 0 0 67px;

        &:before {
          content: 'A';
          display: flex;
          flex-wrap: wrap;
          justify-content: center;
          align-content: center;
          width: var(--px34);
          height: var(--px34);
          font-size: var(--px22);
          border-radius: 50%;
          background: var(--blue01);
          color: var(--white01);
          text-align: center;
          position: absolute;
          left: 13px;
          top: 0;
          font-weight: 600;
        }
      }
    }
  }

  & .more__box {
    width: 100%;
    max-width: 385px;
    margin: 60px auto 0 auto;

    & a {
      gap: 1em;

      & .txt {}

      & .icon {
        background: url(../img/common/icon_arrow_right_white.svg) center center / 100% 100% no-repeat;
        width: 0.45em;
        height: 0.9em;
      }
    }
  }
}

.info {
  padding-top: 96px;
  padding-bottom: 120px;

  & .info__list {
    & ul {
      list-style: none;
      border-bottom: var(--black01) solid 1px;

      & li {
        padding: 34px 14px;
        border-top: var(--black01) solid 1px;

        & time {
          font-size: var(--px18);
          font-weight: 700;
          flex-basis: 140px;
          color: var(--blue01);
        }

        & p {
          font-size: var(--px18);
          flex-basis: calc(100% - 140px);
        }
      }
    }
  }

  & .more__box {
    width: 100%;
    max-width: 385px;
    margin: 60px auto 0 auto;
  }
}

@media screen and (max-width:810px) {
  .info {
    padding-bottom: 150px;

    & .info__list {
      & ul {
        & li {
          padding: 12px 20px;

          & time {
            flex-basis: 100%; font-size: var(--px16);
          }

          & p {
            flex-basis: 100%; font-size: var(--px16);
          }
        }
      }
    }
  }
}

