@charset "UTF-8";

/*
	##### OGIS #####
	info/assets/css/info_pc.css
*/


/* --------------------------------------------------
contents section
-------------------------------------------------- */

.main-lead {
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  line-height: 2;
  color: var(--color-3);
  margin: 100px 0 120px;

  @media (width < 1400px) {
    margin: calc(100 / 1400 * 100vw) 0 calc(120 / 1400 * 100vw);
  }
}


.two-cols-area {
  display: flex;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto 120px;
  padding: 0 30px;
  column-gap: 68px;

  .anchor-contents-area {
    flex: 1 1 850px;
  }
  .side-menu-area {
    flex: 0 0 182px;
  }

  @media (width < 1160px) {
    column-gap: calc(68 / 1160 * 100vw);

    .anchor-contents-area {
      flex: 1 1 calc(850 / 1160 * 100vw);
    }
    .side-menu-area {
      flex: 0 0 calc(182 / 1160 * 100vw);
      white-space: nowrap;
    }
  }
}
.anchor-links {
  position: sticky;
  top: 130px;
  left: 0;

  .link-list {
    font-weight: 700;
    font-size: 16px;

    li {
      margin-bottom: 1.25em;

      a {
        text-decoration: none;
        color: var(--color-6);

        &::before {
          content: '● ';
          font-size: 50%;
          letter-spacing: .14em;
          vertical-align: middle;
          color: transparent;
          -webkit-text-stroke: 1px var(--color-4);
        }

        &.current::before {
          color: var(--color-4);
        }
      }
    }
  }
}
.answers-area .inner-sec {
  margin-bottom: 66px;

  & + .line {
    all: unset;
    display: block;
    height: 1px;
    width: 100%;
    margin: 0 auto 66px;
    background-color: var(--color-5);
  }
  .inner-sec-ttl {
    font-weight: 700;
    font-size: 20px;
    color: var(--color-6);
    margin-bottom: 30px;

    &::before {
      content: '● ';
      font-size: 50%;
      letter-spacing: .14em;
      vertical-align: middle;
      color: var(--color-4);
    }
  }
}
.faq-list-box {
  display: flex;
  flex-direction: column;
  row-gap: 15px;

  .q-a-box {
    display: block;
    width: 100%;
    padding: 20px 95px 20px 40px;
    border-radius: 10px;
    background-image:
      linear-gradient(rgba(255, 255, 255, .3) 1px, transparent 0),
      linear-gradient(90deg, rgba(255, 255, 255, .3) 1px, transparent 0);
    background-size: 10px 10px;
    background-color: var(--bg-col);
    position: relative;

    @media (width < 1400px) {
      padding-right: calc(95 / 1400 * 100vw);
    }

    .quest + .answr {
      overflow: hidden;
      display: grid;
      grid-template-rows: minmax(0, 1fr);
      transition: grid-template-rows .3s ease;

      &.hide {
        grid-template-rows: minmax(0, 0fr);
        transition: grid-template-rows .3s ease;
      }
      & .inner {
        padding-top: 20px;
      }
    }

    .quest, .answr {
      display: grid;
      grid-template-columns: 40px 1fr;
      font-weight: 500;
      font-size: 15px;
      line-height: 1.8666666666666667;

      &::before {
        display: inline-block;
        font-family: "Catamaran", sans-serif;
        font-weight: 600;
        font-size: 34px;
        line-height: 1;
        align-self: first baseline;
      }
    }

    .quest {
      cursor: pointer;

      &::before {
        content: 'Q ';
        color: var(--color-6);
      }
      &::after {
        position: absolute;
        top: 22px;
        right: 24px;
        content: '';
        display: inline-block;
        width: 26px;
        height: 26px;
        background: url(../images/arrw-faq.svg) no-repeat center / contain;
        rotate: 0;
        transition: rotate .3s ease;
      }
      &.is-open::after {
        rotate: 90deg;
      }
    }

    .answr::before {
      content: 'A ';
      color: var(--color-4);
      padding-top: 20px;
    }
  }

  .related-link {
    display: block;
    width: 360px;
    height: 50px;
    margin: 1em auto;
  
    a {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      height: 100%;
      border-width: 1px;
      border-radius: 100px;
      border-style: solid;
      border-color: transparent;
      background-color: #595757;
      color: #fff;
      font-weight: 600;
      font-size: 16px;
      overflow: hidden;
      text-decoration: none;
      position: relative;
  
      &.pop::after {
        content: '';
        display: block;
        position: absolute;
        top: 50%;
        right: 25px;
        width: 14px;
        height: 14px;
        transform: translateY(-58%);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        background-image: url(../../../assets/images/related-pop-w.svg);
      }
  
      @media (hover: hover) {
        transition: .3s ease;
  
        &:hover {
          color: #595757;
          background-color: #fff;
          border-color: #595757;
  
          &::after {
            background-image: url(../../../assets/images/related-pop.svg);
          }
        }
      }
    }
  }
}








.guidelines-area {
  margin-top: 150px;

  @media (width < 1400px) {
    margin-top: calc(150 / 1400 * 100vw);
  }

  .related-link {
    display: block;
    width: 560px;
    height: 100px;
    margin: 60px auto 50px;

    a {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      height: 100%;
      font-weight: 700;
      font-size: 18px;
      letter-spacing: .14em;
      color: #fff;
      text-decoration: none;
      background: url(../images/related-link-bttn_pc.jpg) no-repeat center / contain;
      border-radius: 10px;
      overflow: hidden;

      @media (hover: hover) {
        opacity: 1;
        transition: opacity .3s ease;

        &:hover {
          opacity: .7
        }
      }
    }
  }
}
.guidelines-list .inner-sec {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 40px;
  width: 100%;
  padding-bottom: 50px;
  margin-bottom: 40px;
  border-radius: 10px;
  background-image:
    linear-gradient(rgba(255, 255, 255, .3) 1px, transparent 0),
    linear-gradient(90deg, rgba(255, 255, 255, .3) 1px, transparent 0);
  background-size: 10px 10px;
  background-color: var(--bg-col);

  .inner-sec-ttl {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 10px 10px;
    min-width: 340px;
    min-height: 40px;
    font-size: 16px;
    letter-spacing: .014em;
    background-color: var(--color-3);
    color: #fff;
    padding: 0 1em;
  }

  .inner {
    display: block;
    width: 100%;
    max-width: 750px;
    padding: 0 30px;
    font-size: 15px;
    line-height: 1.4666666666666666;

    .details + .details {
      margin-top: 1.5em;
    }

    .details dt {
      font-weight: 700;

      &::before {
        font-feature-settings: normal;
        display: inline-block;
        content: '●';
        font-size: 65%;
        vertical-align: middle;
        line-height: 1;
        translate: 0 -.075em;
        padding-right: .5em;
        color: var(--color-3);
      }
    }
    .details dd {
      margin-top: .5em;
      padding-left: 1em;
    }

    &.table-style {

      dl.details {
        display: flex;

        & + & {
          margin-top: 2.5em;
        }
        dt, dd {
          display: block
        }
        dt {
          min-width: 160px;
        }
        dd {
          margin: 0;
          border-left: 1px solid rgba(var(--rgb-3), .3);
        }
      }
    }
  }
}

