@charset "utf-8";
/* CSS Document */
.recommend_icon_area {
  width: 150px;
  flex: 0 0 150px;
  border-radius: 6px;
  overflow: hidden;
}
@media screen and (max-width: 576px) {
  .recommend_icon_area {
    width: 80%;
    flex: none;
  }
}
.recommend_icon_area img {
  width: 100%;
  height: auto;
  display: block;
}
.recommend_card .recommend_menu_title {
  color: #2f3437;
  margin-bottom: 10px;
}
.recommend_wrap {
  width: 100%;
  max-width: 1280px;
  gap: clamp(40px, 8vw, 100px);
        margin-right: auto;
     margin-left: auto;
}
.recommend_title {
  margin-bottom: 20px;
}
.recommend_inner {
  display: flex;
  align-items: flex-start;
  gap: clamp(24px, 6vw, 80px);
}
.recommend_inner .imgbox {
  width: clamp(260px, 32vw, 420px);
  flex: 0 0 clamp(260px, 32vw, 420px);
  border-radius: 10px;
  overflow: hidden;
}

.recommend_inner .imgbox img {
  width: 100%;
  height: auto;
  display: block;
}
/* right area */
.recommend_inner .txtbox {
  flex: 1;
}
/* card */
.recommend_card {
  margin-top: 60px;
  background: #FDF9F0;
  padding: 40px 28px 30px;
  position: relative;
      border-radius: 10px;
}
.recommend_tag {
  position: absolute;
  top: -22px;
  left: 28px;
  background:#994E2E;
  color: #fff;
  padding: 8px 18px;
    border-radius: 50px;
}
.recommend_tag p {
  color: #fff;
}
.recommend_card_body {
  display: flex;
  align-items: center;
  gap: 22px;
}

.recommend_card_body {
  position: relative; /* これがないと右下基準にならない */
}
.recommend_btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #a85c33;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
      position: absolute;
  right: 0px;
  bottom: 0;
    transition: transform 0.3s ease;
}

.recommend_btn i {
  color: #fff;
  line-height: 1;
    font-size: 12px;
}
.recommend_card:hover .recommend_btn {
  transform: translateX(4px);
}
.recommend_text_area {
  padding-right: 56px; /* ボタン分の逃げ（40 + 余白） */
}
.recommend_btn .icon img {
  display: block;
  width: 14px;
  height: 14px;
}
/* responsive */
@media (max-width: 1080px) {
    .recommendbox{
        max-width: 600px;
     margin-right: auto;
     margin-left: auto;
    }
    .recommendbox h4{
        text-align: center;
    }
  .recommend_inner {
    flex-direction: column;
          gap: 30px;
      
  }
   .recommend_inner .imgbox {
    width: 100%;
    max-width: 500px;
    flex: none;
    margin: 0 auto;
    height: 500px;
  }

  .recommend_inner .imgbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}
@media screen and (max-width: 576px){
      .recommend_card_body{
     flex-direction: column;
    }
}
.flow_a1 .inner {
  max-width: 1280px;
  margin: 0 auto;
}
.flow_a1 .item {
  display: grid;
  grid-template-columns: 72px 1fr minmax(260px, 300px);
  column-gap: clamp(16px, 3vw, 40px);
  position: relative;
  padding-bottom: 20px;
}
.flow_a1 .col-num {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.flow_a1 .col-num::before {
  content: "";
  position: absolute;
  left: 50%;
  top: calc(56px + 8px);
  bottom: 0;
  transform: translateX(-50%);
  width: 0;
  border-left: 2px dotted #222;
  opacity: .8;
  pointer-events: none;
}
.flow_a1 .item:last-child .col-num::before {
  display: none;
}
.flow_a1 .circle {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 1px solid #222;
  display: grid;
  place-items: center;
}
.flow_a1 .circle p {
  margin: 0;
  line-height: 1;
  letter-spacing: .02em;
  color: #111;
  font-family: "Lato", "Noto Sans JP", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.flow_a1 .txtbox {
  margin-top: 10px;
}
.flow_a1 .txtbox .title {
  margin: 0 0 10px;
  letter-spacing: .02em;
}
.flow_a1 .txtbox .text {
  margin: 0;
  line-height: 2;
  text-align: justify;
}
.flow_a1 .imgbox {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #cfcfcf;
  overflow: hidden;
  border-radius: 10px;
}
.flow_a1 .imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media screen and (max-width: 768px) {
  .flow_a1 .col-num {
    grid-area: col;
  }
  .flow_a1 .txtbox {
    grid-area: txtbox;
  }
  .flow_a1 .imgbox {
    grid-area: imgbox;
  }
  .flow_a1 .item {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "col col"
      "txtbox imgbox";
    column-gap: clamp(12px, 3vw, 24px);
    row-gap: clamp(12px, 3vw, 24px);
    padding-bottom: 32px;
  }
  .flow_a1 .col-num {
    justify-content: center;
    align-items: flex-start;
  }
  .flow_a1 .col-num::after {
    display: none;
  }
  .flow_a1 .inner {
    padding: 0 0;
  }
  .flow_a1 .txtbox .title {
    text-align: center;
  }
  .flow_a1 .item {
    grid-template-columns: 1fr;
    grid-template-areas:
      "col"
      "imgbox"
      "txtbox";
    row-gap: 16px;
    padding-bottom: 60px;
    max-width: 500px;
    margin-right: auto;
    margin-left: auto;
  }
  .flow_a1 .col-num {
    justify-content: flex-start;
    margin-bottom: -30px;
  }
  .flow_a1 .col-num::after {
    display: none;
  }
  .flow_a1 .imgbox {
    max-width: 400px;
    justify-self: center;
  }
  .flow_a1 .txtbox {
    width: 80%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 576px) {
  .flow_a1 .txtbox {
    width: 100%;
  }
}
/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px) {}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px) {}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px) {}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px) {}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px) {}