@charset "UTF-8";

/*
	##### OGIS #####
	about/assets/css/about_pc.css
*/


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

.sec {
  display: block;
  width: 100%;
  max-width: 920px;
  padding: 120px 0;
  margin: 0 auto;
  counter-increment: number;

  &.sec-01 {
    padding-top: 150px
  }

  @media (width > 1400px) {
    max-width: calc(920 / 1400 * 100vw);
    padding: calc(120 / 1400 * 100vw) 0;

    &.sec-01 {
      padding-top: calc(150 / 1400 * 100vw);
    }
  }
}

.line {
  all: unset;
  display: block;
  height: 1px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  background-color: var(--color-5);

  @media (width > 1400px) {
    max-width: calc(1100 / 1400 * 100vw);
  }
}

.sec-ttl {
  display: inline-block;
  padding-left: 75px;
  margin-bottom: 48px;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: .14em;
  line-height: 1.6666666666666667;
  position: relative;

  &::before {
    content: counter(number, decimal-leading-zero);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-family: "Catamaran", sans-serif;
    font-weight: 400;
    font-size: 24px;
    letter-spacing: 0;
    width: 62px;
    height: 62px;
    border: solid 1.5px var(--color-4);
    border-radius: 50%;
    color: var(--color-4);
    position: absolute;
    left: 0;
    top: -.38em;
  }

  @media (width > 1400px) {
    padding-left: calc(75 / 1400 * 100vw);
    margin-bottom: calc(48 / 1400 * 100vw);
    font-size: calc(24 / 1400 * 100vw);

    &::before {
      font-size: calc(24 / 1400 * 100vw);
      width: calc(62 / 1400 * 100vw);
      height: calc(62 / 1400 * 100vw);
      border-width: calc(1.5 / 1400 * 100vw);
    }
  }
}

em.bold {
  font-style: normal;
  font-size: 120%;
  font-weight: 700;
  color: var(--color-3)
}
em.marker {
  font-size: 110%;
  font-style: normal;
  font-weight: 700;
  color: var(--color-3);
  text-decoration: underline;
  text-decoration-thickness: .5em;
  text-decoration-color: #fdffa1;
  text-underline-offset: -.25em;
}


/* --------------------------------------------------
profile page
-------------------------------------------------- */

.sub-column {
  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: calc(14 / 1400 * 100vw) calc(14 / 1400 * 100vw);
  background-position: 0 7px;
  background-color: var(--bg-col);

  @media (width > 1400px) {
    border-radius: calc(10 / 1400 * 100vw);
  }
}

.profile .sec-01 .sub-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 70px auto 80px;
  padding-bottom: 70px;

  .ttl {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 340px;
    height: 50px;
    border-radius: 0 0 10px 10px;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: .14em;
    color: #fff;
    background-color: var(--color-6);
  }
  .txt {
    width: 760px;
    margin: 50px 0 20px;
  }
  .chart-1-1 {
    width: 646px;
    height: auto;
  }

  @media (width > 1400px) {
    margin: calc(70 / 1400 * 100vw) auto calc(80 / 1400 * 100vw);
    padding-bottom: calc(70 / 1400 * 100vw);

    .ttl {
      width: calc(340 / 1400 * 100vw);
      height: calc(50 / 1400 * 100vw);
      font-size: calc(22 / 1400 * 100vw);
      border-radius: 0 0 calc(10 / 1400 * 100vw) calc(10 / 1400 * 100vw);

    }
    .txt {
      width: calc(760 / 1400 * 100vw);
      margin: calc(50 / 1400 * 100vw) 0 calc(20 / 1400 * 100vw);
    }
    .chart-1-1 {
      width: calc(646 / 1400 * 100vw);
    }
  }
}

.chart-1-2 {
  margin: 40px auto 0;
  width: 624px;
  height: auto;

  @media (width > 1400px) {
    margin-top: calc(40 / 1400 * 100vw);
    width: calc(624 / 1400 * 100vw);
  }
}

.chart-1-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 16px;
  margin-top: 50px;
  margin-bottom: 80px;

  li {
    display: block;
    min-height: 250px;

    &:nth-child(2) {
      grid-column: 1/2;
      grid-row: 1/2;

      dd {
        background-image: url(../images/pct-1-1.svg);
      }
    }
    &:nth-child(1) {
      grid-column: 2/3;
      grid-row: 1/2;

      dl {
        border: 1.5px solid var(--color-3);
      }
      dt {
        background-color: var(--color-3);
      }
      dd {
        background-image: url(../images/pct-1-2.svg)
      }
    }
    &:nth-child(3) {
      grid-column: 3/4;
      grid-row: 1/2;

      dd {
        background-image: url(../images/pct-1-3.svg)
      }
    }
  }
  dl {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;

    dt {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      height: 50px;
      background-color: rgba(var(--rgb-3), .7);
      color: #fff;
      font-weight: 600;
      font-size: 17px;
    }
    dd {
      flex: 1 1 auto;
      display: block;
      text-align: center;
      padding-top: 116px;
      padding-bottom: 1em;
      font-weight: 700;
      font-size: 14px;
      line-height: 1.5714285714285714;
      background-color: var(--bg-col);
      background-size: 96px 96px;
      background-position: center top 10px;
      background-repeat: no-repeat;
    }
  }

  @media (width > 1400px) {
    column-gap: calc(16 / 1400 * 100vw);
    margin-top: calc(50 / 1400 * 100vw);
    margin-bottom: calc(80 / 1400 * 100vw);

    li {
      min-height: calc(250 / 1400 * 100vw);
    }
    dl {
      border-radius: calc(10 / 1400 * 100vw);
  
      dt {
        height: calc(50 / 1400 * 100vw);
        font-size: calc(17 / 1400 * 100vw);
      }
      dd {
        padding-top: calc(116 / 1400 * 100vw);
        font-size: calc(14 / 1400 * 100vw);
        background-size: calc(96 / 1400 * 100vw) calc(96 / 1400 * 100vw);
        background-position: center top calc(10 / 1400 * 100vw);
      }
    }
  }
}

.chart-1-4 {
  display: block;
  width: 753px;
  height: auto;
  margin: 60px auto 70px;

  @media (width > 1400px) {
    width: calc(753 / 1400 * 100vw);
    margin: calc(60 / 1400 * 100vw) auto calc(70 / 1400 * 100vw);
  }
}

.chart-1-5 {
  display: block;

  figure {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    figcaption {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 10px;
  
      .small {
        font-size: 70%;
        font-weight: 600;
        vertical-align: baseline;
      }
      &::before {
        content: '●';
        color: var(--color-4);
        font-size: .7em;
        padding-right: .2em;
        display: inline-block;
        translate: 0 -.25em;
      }
    }
    .img-box {
      width: 100%;
      height: auto;
    }
  }

  .fig-note {
    font-size: 15px;
    line-height: 2;
    text-align: right;
    margin-top: 1em;
  }

  @media (width > 1400px) {
    figure figcaption {
      font-size: calc(16 / 1400 * 100vw);
      margin-bottom: calc(10 / 1400 * 100vw);
    }
    .fig-note {
      font-size: calc(15 / 1400 * 100vw);
    }
  }
}


.double-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 20px;
  margin: 60px 0;

  @media (width > 1400px) {
    column-gap: calc(20 / 1400 * 100vw);
    margin: calc(60 / 1400 * 100vw) 0;
  }
}

.profile .sec-03 .sub-column {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

  .ttl {
    display: flex;
    flex-direction: column;
    row-gap: .5em;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.3636363636363635;
    text-align: center;
    color: var(--color-6);
    margin-bottom: 20px;

    .small {
      font-weight: 600;
      font-size: 15px;
      line-height: 1.4666666666666666;
    }
  }

  @media (width > 1400px) {
    padding: calc(40 / 1400 * 100vw);

    .ttl {
      font-size: calc(22 / 1400 * 100vw);
      margin-bottom: calc(20 / 1400 * 100vw);
  
      .small {
        font-size: calc(15 / 1400 * 100vw);
      }
    }
  }

  .flow-chart {
    width: 100%;

    .left-side {
      padding: 35px;
      margin-bottom: 40px;
      font-size: 14px;
      font-weight: 600;
      line-height: 1.5714285714285714;
      background-color: #fff;
      position: relative;

      &::after {
        content: '';
        display: block;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 14px 15px;
        border-color: var(--color-3) transparent transparent transparent;
        position: absolute;
        top: 100%;
        left: 50%;
        translate: -50% 13px;
      }

      @media (width > 1400px) {
        padding: calc(35 / 1400 * 100vw);
        margin-bottom: calc(40 / 1400 * 100vw);
        font-size: calc(14 / 1400 * 100vw);

        &::after {
          border-width: calc(14 / 1400 * 100vw) calc(15 / 1400 * 100vw);
          translate: -50% calc(13 / 1400 * 100vw);
        }
      }
    }
    .right-side {
      display: block;
      background-color: #fff;

      dt {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 34px;
        font-size: 15px;
        font-weight: 700;
        color: #fff;
        background-color: var(--color-3)
      }
      dd {
        display: block;
        width: 100%;
        padding: 35px 45px;
        font-size: 14px;
        line-height: 1.7857142857142858;
      }

      @media (width > 1400px) {
        dt {
          height: calc(34 / 1400 * 100vw);
          font-size: calc(15 / 1400 * 100vw);
        }
        dd {
          padding: calc(35 / 1400 * 100vw) calc(45 / 1400 * 100vw);
          font-size: calc(14 / 1400 * 100vw);
        }
      }
    }
  }
}

.profile .related-link {
  display: block;
  width: 440px;
  height: 75px;
  margin: 0 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: var(--color-3);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    overflow: hidden;
    text-decoration: none;
    position: relative;

    &::after {
      content: '';
      display: block;
      position: absolute;
      top: 50%;
      right: 30px;
      width: 38px;
      height: 8px;
      transform: translateY(-50%);
      background-repeat: no-repeat;
      background-position: center;
      background-size: contain;
      background-image: url(../../../assets/images/arrw-r-long.svg);
    }

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

      &:hover {
        color: var(--color-3);
        background-color: #fff;
        border-color: var(--color-3);

        &::after {
          background-image: url(../../../assets/images/arrw-r-long-b.svg);
        }
      }
    }

    dl {
      display: inline-block;

      & * {
        display: inline
      }
    }
  }

  @media (width > 1400px) {
    width: calc(440 / 1400 * 100vw);
    height: calc(75 / 1400 * 100vw);

    a {
      border-width: calc(1 / 1400 * 100vw);
      border-radius: calc(100 / 1400 * 100vw);
      font-size: calc(16 / 1400 * 100vw);

      &::after {
        right: calc(30 / 1400 * 100vw);
        width: calc(38 / 1400 * 100vw);
        height: calc(8 / 1400 * 100vw);
      }
    }
  }
}

.box-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 17px;
  margin-top: 60px;

  li {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: var(--bg-col);
    background-image: radial-gradient(closest-side, rgba(255, 255, 255, .5) 30%, transparent 0);
    background-size: 6px 6px;
    border-radius: 10px;
    padding: 30px 1em;
  }

  @media (width > 1400px) {
    column-gap: calc(17 / 1400 * 100vw);
    margin-top: calc(60 / 1400 * 100vw);
  
    li {
      border-radius: calc(10 / 1400 * 100vw);
      padding: calc(30 / 1400 * 100vw) 1em;
    }
  }
}

.chart-1-6 {
  width: 782px;
  margin: 80px auto;

  @media (width > 1400px) {
    width: calc(782 / 1400 * 100vw);
    margin: calc(80 / 1400 * 100vw) auto;
  }
}


/* --------------------------------------------------
field page
-------------------------------------------------- */

.field-page {
  .pre-ttl {
    font-size: 60%;
  }
  .sec.sec-01 {
    padding-block: 150px 56px;

    @media (width > 1400px) {
      padding-top: calc(150 / 1400 * 100vw) calc(56 / 1400 * 100vw);
    }
  }
  .sec.sec-02 {
    padding-block: 0 200px;
    max-width: none;

    .sec-inner {
      max-width: 920px;
      margin: 0 auto;
    }
    .chart-2-0-2 {
      max-width: 1000px;
      margin: 0 auto 70px;
    }

    @media (width > 1400px) {
      padding-block-end: calc(200 / 1400 * 100vw);

      .sec-inner {
        max-width: calc(920 / 1400 * 100vw);
      }
      .chart-2-0-2 {
        max-width: calc(1000 / 1400 * 100vw);
        margin-bottom: calc(70 / 1400 * 100vw);
      }
    }
  }
  .lead-ttl {
    font-size: 700;
    font-size: 26px;
    letter-spacing: .14em;
    line-height: 1.4615384615384615;
    text-align: center;
    margin-bottom: 35px;

    & + .lead {
      margin-bottom: 35px;
    }

    @media (width > 1400px) {
      font-size: calc(26 / 1400 * 100vw);
      margin-bottom: calc(35 / 1400 * 100vw);

      & + .lead {
        margin-bottom: calc(35 / 1400 * 100vw);
      }
    }
  }
}
.chart-2-0-1 {
  max-width: 870px;
  margin: 0 auto;

  @media (width > 1400px) {
    max-width: calc(870 / 1400 * 100vw);
  }
}


.keywords-set {
  display: grid;
  grid-template-columns: 190px 1fr;

  .indicator {
    width: 100%;

    .anchor-num-list {
      position: sticky;
      top: 110px;
      text-align: center;
      line-height: 1.133333333;
      font-weight: 500;
      font-size: 66px;
      color: var(--color-3);

      @media (width > 1400px) {
        top: calc(110 / 1400 * 100vw);
      }

      a {
        text-decoration: none;
        font-size: 55%;
        opacity: .3;
        transition: opacity .3s ease, font-size .3s ease;

        &.current {
          font-size: 100%;
          opacity: 1;
        }

        @media (hover: hover) {
          &:hover {
            opacity: 1;
          }
        }
      }
    }
  }
}
.keywords-field {
  overflow: hidden;
  overflow-y: scroll;
  height: 100vh;
  padding-block: calc(120 / 1400 * 100vw);
  padding-inline: calc(180 / 1400 * 100vw) calc(170 / 1400 * 100vw); 
  border-radius: 10px 0 0 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: calc(14 / 1400 * 100vw) calc(14 / 1400 * 100vw);
  background-position: 0 7px;
  background-color: var(--bg-col);
  scroll-behavior: smooth;

  @media (width > 1400px) {
    border-radius: calc(10 / 1400 * 100vw) 0 0 calc(10 / 1400 * 100vw);
  }
}
.key-cols {
  background-color: #fff;
  width: 100%;
  border-radius: 10px;
  padding-block: calc(70 / 1400 * 100vw) calc(80 / 1400 * 100vw);
  padding-inline: calc(60 / 1400 * 100vw);
  counter-increment: keynum;

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

  @media (width > 1400px) {
    border-radius: calc(10 / 1400 * 100vw);

    & + & {
      margin-top: calc(80 / 1400 * 100vw);
    }
  }

  .key-ttl {
    font-weight: 700;
    font-size: 23px;
    letter-spacing: .14em;
    line-height: 1.391304347826087;
    color: var(--color-6);
    display: inline-flex;
    align-items: center;
    min-height: 60px;
    margin-bottom: 50px;

    &::before {
      content: counter(keynum, decimal-leading-zero);
      font-family: "Catamaran", sans-serif;
      font-weight: 500;
      font-size: 50px;
      padding-right: 15px;
    }
    .ttl {
      padding-left: 25px;
      border-left: solid 1px var(--color-6);
    }

    @media (width > 1400px) {
      font-size: calc(23 / 1400 * 100vw);
      min-height: calc(60 / 1400 * 100vw);
      margin-bottom: calc(50 / 1400 * 100vw);

      &::before {
        font-size: calc(50 / 1400 * 100vw);
        padding-right: calc(15 / 1400 * 100vw);
      }
      .ttl {
        padding-left: calc(25 / 1400 * 100vw);
      }
    }
  }
  .txt + .img-box {
    margin-top: calc(40 / 1400 * 100vw);
  }
  .inter-line {
    all: unset;
    display: block;
    width: 100px;
    height: 0;
    border-bottom: solid 1px var(--color-6);
    margin: 60px auto;
  }
  .sub-ttl {
    font-weight: 700;
    font-size: 20px;
    letter-spacing: .14em;
    line-height: 1.6;
    color: var(--color-6);
    text-align: center;
    margin-bottom: 30px;
  }

  @media (width > 1400px) {
    .inter-line {
      width: calc(100 / 1400 * 100vw);
      margin-block: calc(60 / 1400 * 100vw);
    }
    .sub-ttl {
      font-size: calc(20 / 1400 * 100vw);
      margin-bottom: calc(30 / 1400 * 100vw);
    }
  }
  .keys-related-links {
    padding-block-start: 30px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;

    & + .sub-section {
      margin-top: 80px;
    }
    .links-ttl {
      font-weight: 700;
      font-size: 16px;
      color: var(--color-3);
      padding: 20px 20px 0 0;
      white-space: nowrap;
    }
    .links-set {
      flex: 0 1 450px;
      container: link-area / inline-size;

      .links-list li {
        display: block;
        width: 100%;

        a {
          display: inline-block;
          width: 100%;
          padding: 20px 0 20px 2px;
          text-decoration: none;
          font-weight: 700;
          font-size: 15px;
          color: var(--color-3);
          background: url(../../../assets/images/arrw-r-long-b.svg) no-repeat center right 2px / 36px auto;
          border-bottom: solid 1px var(--color-3);

          @container link-area (width < 410px) {
            background: none;
          }

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

            &:hover {
              opacity: .5
            }
          }
        }
      }
    }
    @media (width > 1400px) {
      padding-block-start: calc(30 / 1400 * 100vw);
      max-width: calc(640 / 1400 * 100vw);

      & + .sub-section {
        margin-top: calc(80 / 1400 * 100vw);
      }
      .links-ttl {
        font-size: calc(16 / 1400 * 100vw);
        padding: calc(20 / 1400 * 100vw) calc(20 / 1400 * 100vw) 0 0;
      }
      .links-set {
        flex-basis: calc(450 / 1400 * 100vw);

      .links-list li a {
          padding: calc(20 / 1400 * 100vw) 0 calc(20 / 1400 * 100vw) calc(2 / 1400 * 100vw);
          font-size: calc(15 / 1400 * 100vw);
          background-size: calc(36 / 1400 * 100vw) auto;
        }
      }
    }
  }
  .spirits-list {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    width: 100%;
    margin: 40px 0 30px;

    li:not(:last-child) {
      display: block;
      padding: 25px 30px;
      background-color: #f2f2f2;
      font-weight: 700;
      font-size: 14px;
      line-height: 2;
      color: var(--color-3);

      span {
        display: flex;
        align-items: first baseline;
        column-gap: 10px;
        flex: 0 1 660px;

        &::before {
          flex: 0 0 8px;
          content: '';
          box-sizing: content-box;
          display: inline-block;
          width: 8px;
          height: 8px;
          border-radius: 50%;
          background-color: var(--color-3);
          background-clip: content-box;
          border: solid 1px transparent
        }
      }
    }
    li.etc {
      display: block;
      width: 100%;
      text-align: center;
      padding-top: 5px;
      font-weight: 700;
      font-size: 15px;
      color: var(--color-3);
    }

    @media (width > 1400px) {
      row-gap: calc(15 / 1400 * 100vw);
      margin: calc(40 / 1400 * 100vw) 0 calc(30 / 1400 * 100vw);
  
      li:not(:last-child) {
        padding: calc(25 / 1400 * 100vw) calc(30 / 1400 * 100vw);
        font-size: calc(14 / 1400 * 100vw);

        span {
          column-gap: calc(12 / 1400 * 100vw);
          flex-basis: calc(660 / 1400 * 100vw);
  
          &::before {
            width: calc(8 / 1400 * 100vw);
            height: calc(8 / 1400 * 100vw);
            flex-basis: calc(8 / 1400 * 100vw);
          }
        }
      }
      li.etc {
        padding-top: calc(5 / 1400 * 100vw);
        font-size: calc(15 / 1400 * 100vw);
      }
    }
  }
}

