@charset "utf-8";
body {
  background-color: #F4F8FF;
}
main {
  margin-bottom: min(15.625vw,200px);

  @media (max-width: 768px) {
    margin-bottom: 100px;
  }
}
/* ↓↓↓ fv ↓↓↓ */
.fv {
  padding: min(13.359375000000002vw,171px) 20px 0;
  margin: 0 auto;

  @media (max-width: 768px) {
    padding-top: 112px;
  }
}
.fv .inner {
  max-width: 1056px;
  container-type: inline-size;
  margin: 0 auto;
}
.fv .inner .ttl {
  .en {
    font-size: 6.0606060606060606cqw;
    font-family: var(--text-poppins);
    font-weight: 600;
    line-height: 1.0476190476190477;
    letter-spacing: 0;
    color: #103585;

    @media (max-width: 768px) {
      font-size: 4.2rem;
    }
  }

  .ja {
    position: relative;
    font-size: 1.893939393939394cqw;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: block;
    padding-left: 1.5151515151515151cqw;
    margin-top: 1.7045454545454544cqw;

    @media (max-width: 768px) {
      font-size: 1.5rem;
      padding-left: 14px;
      margin-top: 0;
    }

    &::before {
      content: '';
      position: absolute;
      width: 0.7575757575757576cqw;
      height: auto;
      aspect-ratio: 1/1;
      border-radius: 50%;
      background-color: #103585;
      top: 1.1363636363636365cqw;
      left: 0;

      @media (max-width: 768px) {
        width: 8px;
        top: 8px;
      }
    }
  }
}
.fv .inner .breadcrumbs {
  margin-top: 11.363636363636363cqw;

  @media (max-width: 768px) {
    margin-top: 64px;
  }

  .list {
    display: flex;
    gap: 3.0303030303030303cqw;

    @media (max-width: 768px) {
      gap: 24px;
    }

    .item {
      position: relative;
      font-size: 1.231060606060606cqw;
      font-weight: 500;
      letter-spacing: 0.05em;

      @media (max-width: 768px) {
        font-size: 1.2rem;
      }

      +.item::before {
        content: '';
        position: absolute;
        width: 1px;
        height: 100%;
        background-color: rgba(16, 53, 133,.5);
        translate: -100% 0;
        top: 0;
        left: -1.5151515151515151cqw;
        
        @media (max-width: 768px) {
          left: -12px;
        }
      }

      .link {
        color: rgba(16, 53, 133,.5);
        transition: color ease .3s;

        @media (min-width: 769px) {
          &:hover {
            color: rgba(16, 53, 133);
          }
        }
      }
    }
  }
}
.fv .img {
  width: auto;
  height: 500px;
  display: block;
  overflow: clip;
  border-radius: min(0.78125vw,10px);
  margin: min(1.875vw,24px) -20px 0;

  @media (max-width: 768px) {
    height: 360px;
    border-radius: 8px;
    margin-top: 14px;
  }

  img {
    object-fit: cover;
    object-position: center;

    @media (max-width: 768px) {
      height: 100%;
    }
  }
}
/* ↑↑↑ fv ↑↑↑ */
/* ↓↓↓ anchor_block ↓↓↓ */
.anchor_block {
  padding: 0 20px;
  margin: min(10.46875vw,134px) auto 0;

  @media (max-width: 768px) {
    margin-top: 80px;
  }
}
.anchor_block .inner {
  max-width: 1056px;
  container-type: inline-size;
  margin: 0 auto;
}
.anchor_block .inner .list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1363636363636365cqw;

  @media (max-width: 768px) {
    gap: 8px;
  }

  .item {
    width: calc((100% - 1.1363636363636365cqw*3)/4);
    
    @media (max-width: 768px) {
      width: calc((100% - 8px)/2);
    }

    .link {
      width: 100%;
      font-size: max(1.4204545454545454cqw,1rem);
      font-weight: 700;
      letter-spacing: 0;
      color: #103585;
      display: flex;
      gap: 0.946969696969697cqw;
      justify-content: space-between;
      align-items: center;
      border-radius: 0.3787878787878788cqw;
      border: 1px solid #103585;
      padding: 1.9886363636363635cqw 2.367424242424242cqw 1.9886363636363635cqw 3.4090909090909087cqw;

      @media (max-width: 768px) {
        font-size: 1.5rem;
        gap: 10px;
        border-radius: 4px;
        padding: 14px 16px;
      }
      
      .icon {
        position: relative;
        width: 3.65296803652968cqw;
        height: fit-content;
        aspect-ratio: 1/1;
        border: 1px solid #103585;
        background-color: #103585;
        border-radius: 0.684931506849315cqw;
        overflow: clip;
        transition: background-color ease .3s;

        @media (max-width: 768px) {
          width: 26px;
          border-radius: 4px;
        }

        &::before,
        &::after {
          content: '';
          position: absolute;
          width: 1.0273972602739725cqw;
          height: auto;
          aspect-ratio: 9/8;
          mask-image: url(../img/news/iocn_arrow.svg);
          rotate: 90deg;
          mask-repeat: no-repeat;
          mask-position: center;
          mask-size: contain;
          background-color: #fff;
          transition: background-color ease .3s, top ease .3s;
          translate: -50% -50%;
          top: 50%;
          left: 50%;

          @media (max-width: 768px) {
            width: 9px;
          }
        }
        &::after {
          top: -50%;
        }
      }
      
      @media (min-width: 769px) {
        &:hover {
          
          .icon {
            background-color: transparent;

            &::before,
            &::after {
              background-color: #103585;
            }
            &::before {
              top: 150%;
            }
            &::after {
              top: 50%;
            }
          }
        }
      }
    }
  }
}
/* ↑↑↑ anchor_block ↑↑↑ */
/* ↓↓↓ location ↓↓↓ */
.location {
  padding: 0 20px;
  margin: min(11.71875vw,150px) auto 0;
  
  @media (max-width: 768px) {
    margin-top: 64px;
  }

  &:nth-of-type(1) {
    margin-top: min(8.75vw,112px);

    @media (max-width: 768px) {
      margin-top: 80px;
    }
  }
}
.location .inner {
  max-width: 1056px;
  container-type: inline-size;
  border-top: 1px solid #D5E2FD;
  padding-top: 5.109489051094891cqw;
  margin: 0 auto;

  @media (max-width: 768px) {
    flex-direction: column;
    padding-top: 16px;
  }
}
.location .inner .flex {
  display: flex;
  align-items: flex-start;

  @media (max-width: 768px) {
    flex-direction: column;
  }

  .place {
    position: relative;
    font-size: 3.0303030303030303cqw;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #103585;
    flex-shrink: 0;
    padding-left: 3.2196969696969697cqw;

    @media (max-width: 768px) {
      font-size: 2.2rem;
      padding-left: 22px;
    }
    
    &::before {
      content: '';
      position: absolute;
      width: 1.5151515151515151cqw;
      height: auto;
      aspect-ratio: 1/1;
      border-radius: 50%;
      background-color: #103585;
      top: 1.893939393939394cqw;
      left: 0;

      @media (max-width: 768px) {
        width: 12px;
        top: 14px;
      }
    }
  }
  .img {
    width: 30.77651515151515cqw;
    height: fit-content;
    flex-shrink: 0;
    margin-left: 2.367424242424242cqw;

    @media (max-width: 768px) {
      width: 100%;
      margin-left: unset;
      margin-top: 24px;
    }
  }
  .info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2.272727272727273cqw;
    margin-left: 5.303030303030303cqw;

    @media (max-width: 768px) {
      flex: unset;
      width: 100%;
      gap: 24px;
      margin-left: unset;
      margin-top: 48px;
    }

    .item:not(:last-of-type) {
      border-bottom: 1px solid #AEBDDF;
      padding-bottom: 2.272727272727273cqw;

      @media (max-width: 768px) {
        padding-bottom: 24px;
      }
    }

    .txt {
      font-size: 1.4204545454545454cqw;
      font-weight: 500;
      line-height: 1.7333333333333334;
      letter-spacing: 0.04em;

      @media (max-width: 768px) {
        font-size: 1.5rem;
      }

    }
    .indent {
      display: block;
      text-indent: -0.5em;
      padding-left: 0.5em;
    }

    .link {
      width: fit-content;
      font-size: 1.4204545454545454cqw;
      font-weight: 700;
      letter-spacing: 0.04em;
      color: #103585;
      display: flex;
      align-items: center;
      gap: 2.272727272727273cqw;

      @media (max-width: 768px) {
        font-size: 1.5rem;
        gap: 24px;
      }
      
        .icon {
          position: relative;
          width: 1.893939393939394cqw;
          height: fit-content;
          aspect-ratio: 1/1;
          border: 1px solid #103585;
          background-color: #103585;
          border-radius: 0.1893939393939394cqw;
          overflow: clip;
          transition: background-color ease .3s;

          @media (max-width: 768px) {
            width: 20px;
            border-radius: 2px;
          }

          &::before,
          &::after {
            content: '';
            position: absolute;
            width: 1.0273972602739725cqw;
            height: auto;
            aspect-ratio: 9/8;
            mask-image: url(../img/news/iocn_arrow.svg);
            mask-repeat: no-repeat;
            mask-position: center;
            mask-size: contain;
            background-color: #fff;
            transition: background-color ease .3s, left ease .3s;
            translate: -50% -50%;
            top: 50%;
            left: 50%;

            @media (max-width: 768px) {
              width: 9px;
            }
          }
          &::after {
            left: -50%;
          }
        }
        
        @media (min-width: 769px) {
          &:hover {
            .icon {
              background-color: transparent;

              &::before,
              &::after {
                background-color: #103585;
              }
              &::before {
                left: 150%;
              }
              &::after {
                left: 50%;
              }
            }
          }
        }
    }
  }
}
.location .inner .box {
  border-radius: 0.946969696969697cqw;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 1.893939393939394cqw;
  padding: 3.787878787878788cqw 6.25cqw;
  margin-top: 7.575757575757576cqw;

  @media (max-width: 768px) {
    border-radius: 10px;
    gap: 32px;
    padding: 40px 16px;
    margin-top: 64px;
  }
}
.location .inner .box .unit {
  display: flex;
  align-items: flex-start;

  @media (max-width: 768px) {
    flex-direction: column;
  }

  &:not(:last-of-type) {
    border-bottom: 1px solid #AEBDDF;
    padding-bottom: 1.893939393939394cqw;

    @media (max-width: 768px) {
      padding-bottom: 32px;
    }
  }

  .unit_name {
    height: fit-content;
    font-size: 1.893939393939394cqw;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #103585;
    flex-shrink: 0;

    @media (max-width: 768px) {
      font-size: 2rem;
    }
  }

  .group {
    flex: 1;
    margin-left: 6.25cqw;
    
    @media (max-width: 768px) {
      margin-left: unset;
      margin-top: 16px;
    }
    
    &+.group {
      margin-left: 2.272727272727273cqw;
      
      @media (max-width: 768px) {
        margin-left: unset;
        margin-top: 32px;
      }
    }

    .unit_txt {
      font-size: max(1.3257575757575757cqw,1rem);
      font-weight: 500;
      line-height: 1.8571428571428572;
      letter-spacing: 0.04em;

      @media (max-width: 768px) {
        font-size: 1.4rem;
      }
    }

    .indent {
      display: block;
      text-indent: -0.5em;
      padding-left: 0.5em;
    }

    .link {
      width: fit-content;
      font-size: 1.4204545454545454cqw;
      font-weight: 700;
      letter-spacing: 0.04em;
      color: #103585;
      display: flex;
      align-items: center;
      gap: 2.272727272727273cqw;
      margin-top: 1.5151515151515151cqw;

      @media (max-width: 768px) {
        font-size: 1.4rem;
        gap: 24px;
        margin-top: 16px;
      }
      
        .icon {
          position: relative;
          width: 1.893939393939394cqw;
          height: fit-content;
          aspect-ratio: 1/1;
          border: 1px solid #103585;
          background-color: #103585;
          border-radius: 0.1893939393939394cqw;
          overflow: clip;
          transition: background-color ease .3s;

          @media (max-width: 768px) {
            width: 20px;
            border-radius: 2px;
          }

          &::before,
          &::after {
            content: '';
            position: absolute;
            width: 1.0273972602739725cqw;
            height: auto;
            aspect-ratio: 9/8;
            mask-image: url(../img/news/iocn_arrow.svg);
            mask-repeat: no-repeat;
            mask-position: center;
            mask-size: contain;
            background-color: #fff;
            transition: background-color ease .3s, left ease .3s;
            translate: -50% -50%;
            top: 50%;
            left: 50%;

            @media (max-width: 768px) {
              width: 9px;
            }
          }
          &::after {
            left: -50%;
          }
        }
        
        @media (min-width: 769px) {
          &:hover {
            .icon {
              background-color: transparent;

              &::before,
              &::after {
                background-color: #103585;
              }
              &::before {
                left: 150%;
              }
              &::after {
                left: 50%;
              }
            }
          }
        }
    }
  }
}
/* ↑↑↑ location ↑↑↑ */