@charset "UTF-8";
#flow .main .mv {
  background: no-repeat url("../../../common/img/room_01.jpg");
  background-position-y: 60%;
  position: relative;
  height: 350px;
  padding: 0 20px;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  background-size: cover;
}
#flow .main .mv .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: calc(50% + 50px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  max-width: 500px;
  width: 100%;
  padding: 20px;
  background-color: #fff;
  border-bottom: 2px solid #6bb8ef;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 16px -10px #172d4e;
          box-shadow: 0px 0px 16px -10px #172d4e;
}
#flow .main .mv .wrap .ttl {
  font-size: 2.8rem;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  letter-spacing: 6px;
}
#flow .main .mv .wrap p {
  font-size: 1.4rem;
  color: #6bb8ef;
  font-family: canada-type-gibson, sans-serif;
}
#flow .main .lead .container {
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: center;
}
#flow .main .flow {
  background-color: #eaf4fc;
}
#flow .main .flow .flow-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
#flow .main .flow .flow-list .flow_container {
  display: grid;
  grid-template-columns: 1fr 64px 2fr;
  grid-template-rows: -webkit-min-content 1fr -webkit-min-content;
  grid-template-rows: min-content 1fr min-content;
  gap: 0px 20px;
  grid-auto-flow: row;
  grid-template-areas: "area_img area_ico area_ttl" "area_img area_line area_contents" "area_img area_arrow area_contents";
}
@media screen and (max-width: 768px) {
  #flow .main .flow .flow-list .flow_container {
    grid-template-columns: -webkit-min-content 1fr;
    grid-template-columns: min-content 1fr;
    grid-template-rows: -webkit-min-content;
    grid-template-rows: min-content;
    gap: 0px 10px;
    grid-auto-flow: row;
    grid-template-areas: "area_ico area_ttl" "area_line area_img" "area_line area_contents" "area_arrow area_contents";
  }
}
#flow .main .flow .flow-list .flow_container:last-child .area_line,
#flow .main .flow .flow-list .flow_container:last-child .area_arrow {
  display: none;
}
#flow .main .flow .flow-list .area_img {
  grid-area: area_img;
}
#flow .main .flow .flow-list .area_ttl {
  grid-area: area_ttl;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#flow .main .flow .flow-list .area_ttl .ttl {
  font-size: clamp(1.8rem, 1.686rem + 0.57vw, 2.2rem);
  font-weight: bold;
}
#flow .main .flow .flow-list .area_contents {
  grid-area: area_contents;
  padding: 10px;
}
@media screen and (max-width: 768px) {
  #flow .main .flow .flow-list .area_contents {
    margin-top: 20px;
    padding: 0;
  }
}
#flow .main .flow .flow-list .area_contents .txtbox {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
}
#flow .main .flow .flow-list .area_ico {
  grid-area: area_ico;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#flow .main .flow .flow-list .area_line {
  grid-area: area_line;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6px 0;
}
#flow .main .flow .flow-list .area_line .border {
  width: 3px;
  height: 100%;
  background-image: linear-gradient(to bottom, #6bb8ef 3px, transparent 3px);
  background-size: 3px 12px;
  background-repeat: repeat-y;
  background-position: center;
}
#flow .main .flow .flow-list .area_arrow {
  grid-area: area_arrow;
  position: relative;
}
#flow .main .flow .flow-list .area_arrow::before {
  content: "";
  color: #6bb8ef;
  border-style: solid;
  border-color: transparent;
  border-width: 0.64952em 0.375em;
  border-top-color: currentColor;
  border-bottom: 0;
  position: absolute;
  top: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
#flow .main .flow .flow-list .step {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  aspect-ratio: 1/1;
  height: auto;
  padding: 10px;
  background-color: #2a6acb;
  color: #fff;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  font-size: clamp(1rem, 1.143rem + 0.29vw, 1.4rem);
  line-height: 1;
}
@media screen and (max-width: 768px) {
  #flow .main .flow .flow-list .step {
    padding: 5px;
  }
}
#flow .main .flow .flow-list .step .step-no {
  font-size: clamp(2rem, 1.771rem + 1.14vw, 2.8rem);
  font-weight: bold;
}/*# sourceMappingURL=index.css.map */