@charset "utf-8";

/* CSS Document */
.wrap {
  max-width: 1024px;
  width: 90%;
  margin: auto;
}

.wrap_scroll {
  width: 100%;
  overflow: auto;
  border: 1px solid #eee;
}

.wrap_chank {
  max-width: none;
}

.wrap_mid {
  width: 1914px;
  display: flex;
  justify-content: flex-end;
  margin: 30px 0;
}

.wrap_table {
  width: 1914px;
  max-width: none;
  border-top: 1px solid #000;

  th {
    min-width: 173px;
    height: 60px;
    background: #000;
    color: #fff;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
  }

  td {
    width: 291px;
    min-width: 291px;
    padding: 20px;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;

    >* {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    &.ex01 {
      min-width: 193px;
      width: 193px;
    }

    &.ex02 {
      min-width: 390px;
      width: 390px;
    }

    .tag {
      width: 100%;
      display: flex;
      justify-content: center;
      background: var(--red);
      color: #fff;
    }
  }

  thead td {
    text-align: center;
    font-weight: bold;
    background: #eee;
  }
}

a.wrap_links {
  position: relative;
  align-items: flex-end;
  flex-wrap: wrap;
  width: 100%;

  .wrap_plate {
    position: absolute;
    top: 0;
    left: 0;
    line-height: 1.25;
  }

  .wrap_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    color: var(--red);
    border: 1px solid var(--red);
    margin-top: 10px;
  }
}

.point_white {
  background-color: #fff;
  text-align: left;
  padding: 20px;
  width: 95%;
}

.W_500 {
  max-width: 480px;
  width: 100%;
}

.W_1000 {
  max-width: 1024px;
  width: 100%;
}

.flow_point {
  display: flex;
  gap: 40px 60px;
  flex-wrap: wrap;
}

.point {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 880px;
  width: 100%;
  margin-top: 70px;
  margin-left: auto;
  margin-right: auto;
  background: #FFF8D2;
}

.poi_head {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  gap: 10px;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 0 40px;
  min-width: 241px;
  background: #FED800;
  margin-top: -25px;
  margin-bottom: 30px;
  position: relative;

  .f_rat {
    font-size: 2.4rem;
  }

  &::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 20px solid #FED800;
    /* 色はここで変更 */
    position: absolute;
    bottom: -19px;
    left: calc(50% - 8px);
  }
}

.point.warning {
  background: #FFEEED;

  .poi_head {
    background: var(--red);
    color: #fff;

    &::after {
      border-top: 20px solid var(--red);
    }
  }
}

.poi_body {
  max-width: 95%;
  margin: auto;
  padding-bottom: 20px;
}

.flow {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 60px;
  position: relative;

  &::before {
    content: '';
    display: block;
    width: 5px;
    background: var(--red);
    height: calc(100% - 300px);
    position: absolute;
    left: 27.5px;
  }
}

.flow_row {
  display: flex;
  gap: 20px 40px;
  position: relative;
}

.flow_num {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--fs-24);
  font-weight: bold;
  color: #fff;
  background: var(--red);
  min-width: 60px;
  height: 60px;
}
.flow_bnr {
  display: flex;
  gap: 30px;
  width: 100%;
  /* justify-content: space-between; */
  img {
    max-width: 288px;
  }
}

.flow_body {
  display: flex;
  gap: 23px;
}
.flow_img {
  flex-shrink: 0;
}
.red_nm {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 23px;
  height: 23px;
  background: var(--red);
  color: #fff;
  font-weight: bold;
  padding-left: 23px;
}
.pl_0 {
  padding-left: 0;
}
.flow_flex {
  display: flex;
  gap: 60px;
}
.flow_head {
  width: 100%;
}
@media screen and (max-width: 1023px) {}

@media screen and (max-width: 767px) {
.W_500 {
  max-width: 100%;
}
.wrap_chank {
  transform: scale(0.8); /* 縮小率 */
  transform-origin: top left;
  margin-bottom: -84%;
}
.flow {
  &::before {
    height: calc(100% - 26%);
    left: 17.5px;
  }
}
.flow_row {
  gap: 20px 15px;
}
.flow_bnr {
  flex-direction: column;
  gap: 10px;
  img {
    max-width: 200px;
  }
}
.flow_body{
  flex-direction: column;
  width: 100%;
}
.flow_num {
  min-width: 40px;
  height: 40px;
}
.flow_flex {
  flex-direction: column;
  gap: 0;
}
}