/* =========================
   RINKO SECTION
========================= */

.rinko-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px 32px 70px;
  box-sizing: border-box;
}


/* =========================
   HERO
========================= */

.rinko-hero {
  position: relative;
  width: 100%;
  height: 490px;
  border-radius: 22px;
  overflow: hidden;
  background: #eef7fb;
}

.rinko-hero-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.rinko-hero-text {
  position: absolute;
  top: 46%;
  left: 5%;
  transform: translateY(-50%);
  z-index: 2;
}

.rinko-hero-text h1 {
  margin: 0 0 32px;
  font-size: 46px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  font-weight: 500;
  color: #183f65;
}

.rinko-hero-text h2 {
  margin: 0 0 16px;
  font-size: 22px;
  line-height: 1.6;
  font-weight: 700;
  color: #1b3956;
}

.rinko-hero-text p {
  margin: 0;
  font-size: 14px;
  line-height: 2;
  font-weight: 700;
  color: #29445e;
}

/* 左側グラデーション */
.rinko-hero::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.58) 0%,
    rgba(255,255,255,0.30) 38%,
    rgba(255,255,255,0) 48%
  );

  z-index: 1;
  pointer-events: none;
}


/* =========================
   FLOW TITLE
========================= */

.rinko-flow {
  margin-top: 42px;
}

.rinko-flow-title {
  margin: 0 0 24px 6px;
}

.rinko-flow-title h2 {
  margin: 0 0 4px;
  font-size: 32px;
  line-height: 1.4;
  font-weight: 700;
  color: #111;
}

.rinko-flow-title p {
  margin: 0;
  font-size: 16px;
  letter-spacing: 0.05em;
  color: #1f405d;
}


/* =========================
   FLOW BOX
========================= */

.rinko-flow-box {
  display: flex;
  align-items: center;
  gap: 32px;

  padding: 32px 28px;

  border: 1.5px solid #8bc5ec;
  border-radius: 16px;

  background: #fff;
  box-sizing: border-box;
}


/* =========================
   STEPS - PC
========================= */

.rinko-steps {
  flex: 1;
  min-width: 0;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rinko-step {
  flex: 0 0 auto;
  width: 120px;
  text-align: center;
}

.step-icon {
  position: relative;

  width: 72px;
  height: 72px;

  margin: 0 auto 12px;

  border: 1.5px solid #61bcc9;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #fff;
}

.step-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.step-num {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);

  width: 28px;
  height: 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #61bcc9;
  color: #fff;

  font-size: 14px;
  font-weight: 700;
}

.rinko-step p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 600;
  color: #222;
}

.step-arrow {
  display: block;
  flex: 0 0 auto;

  color: #aaa;
  font-size: 30px;
  font-weight: 300;
}


/* =========================
   BUTTON
========================= */

.rinko-guide-btn {
  flex: 0 0 188px;

  min-height: 72px;
  padding: 0 24px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
border: none;  
  border-radius: 18px;

  background: #f8b62d;
  color: #fff;

  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;

  text-decoration: none;
  box-sizing: border-box;
  box-shadow: 0 5px 7px rgba(0, 0, 0, 0.16);

  cursor: pointer;
  transition: transform 0.25s, opacity 0.25s, box-shadow 0.25s;
 
}

.rinko-guide-btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.rinko-btn-arrow {
  font-size: 28px;
  font-weight: 300;
}


/* ==================================================
   TABLET
================================================== */

@media screen and (max-width: 1100px) {

  .rinko-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .rinko-hero {
    height: 380px;
  }

  .rinko-hero-text h1 {
    font-size: 40px;
  }

  .rinko-hero-text h2 {
    font-size: 19px;
  }

  .rinko-flow-box {
    flex-direction: column;
    align-items: stretch;
  }

  /* Tabletでもステップは横一列 */
  .rinko-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .rinko-step {
    width: 105px;
  }

  .step-icon {
    width: 66px;
    height: 66px;
  }

  .step-icon img {
    width: 65px;
    height: 65px;
  }

  .rinko-guide-btn {
    flex: auto;
    width: 100%;
    min-height: 70px;
  }

}


/* ==================================================
   SP
================================================== */

@media screen and (max-width: 767px) {

  .rinko-section {
    padding: 80px 16px 48px;
  }


  /* =========================
     HERO
  ========================= */

  .rinko-hero {
    position: relative;
    height: 300px;
    border-radius: 14px;
    overflow: hidden;
    background: #f2f9fc;
  }

  .rinko-hero-img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    /*
      数値を大きくすると
      画像内の右側を多く表示
    */
    object-position: 62% center;
  }

  .rinko-hero::after {
    background: linear-gradient(
      90deg,
      rgba(255,255,255,0.78) 0%,
      rgba(255,255,255,0.52) 38%,
      rgba(255,255,255,0.12) 64%,
      rgba(255,255,255,0) 78%
    );
  }

  .rinko-hero-text {
    position: absolute;

    top: 50%;
    left: 20px;

    transform: translateY(-50%);

    width: 58%;
    padding: 0;

    z-index: 2;
  }

  .rinko-hero-text h1 {
    margin: 0 0 15px;

    font-size: 27px;
    line-height: 1.45;
    letter-spacing: 0.06em;
  }

  .rinko-hero-text h2 {
    margin: 0 0 8px;

    font-size: 13px;
    line-height: 1.6;
  }

  .rinko-hero-text p {
    margin: 0;

    font-size: 10px;
    line-height: 1.7;
  }

  .rinko-hero-text p br {
    display: none;
  }


  /* =========================
     FLOW TITLE
  ========================= */

  .rinko-flow {
    margin-top: 32px;
  }

  .rinko-flow-title {
    margin-left: 2px;
    margin-bottom: 18px;
  }

  .rinko-flow-title h2 {
    font-size: 25px;
  }

  .rinko-flow-title p {
    font-size: 14px;
  }


  /* =========================
     FLOW BOX
  ========================= */

  .rinko-flow-box {
    padding: 26px 16px 20px;
    gap: 24px;
    border-radius: 12px;
  }


  /* =========================
     STEPS - SP
     2排 × 3列
  ========================= */

  .rinko-steps {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 30px 10px;

    align-items: start;
  }

  .rinko-step {
    width: auto;
    min-width: 0;
    text-align: center;
  }

  .step-icon {
    width: 62px;
    height: 62px;

    margin: 0 auto 10px;
  }

  .step-icon img {
    width: 54px;
    height: 54px;
    object-fit: contain;
  }

  .step-num {
    width: 24px;
    height: 24px;

    top: -10px;

    font-size: 12px;
  }

  .rinko-step p {
    margin: 0 auto;

    max-width: 110px;

    font-size: 11px;
    line-height: 1.45;
  }

  /* SPでは矢印を非表示 */
  .step-arrow {
    display: none;
  }


  /* =========================
     BUTTON
  ========================= */

  .rinko-guide-btn {
    width: 100%;
    min-height: 64px;

    padding: 10px 20px;

    font-size: 14px;
  }

}


/* =========================
   USE CASE SECTION
========================= */

.rinko-usecase-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px 70px;
  box-sizing: border-box;
}


/* TITLE */

.rinko-usecase-title {
  margin-bottom: 28px;
}

.rinko-usecase-title h2 {
  margin: 0 0 6px;

  font-size: 32px;
  line-height: 1.4;
  font-weight: 700;
  color: #111;
}

.rinko-usecase-title p {
  margin: 0;

  font-size: 16px;
  letter-spacing: 0.03em;
  color: #1f405d;
}


/* =========================
   GRID
========================= */

.rinko-usecase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px;
}


/* =========================
   CARD
========================= */

.rinko-usecase-card {
  min-height: 300px;

  display: grid;
  grid-template-columns: minmax(0, 1fr) 52%;
  gap: 26px;

  padding: 30px;

  border: 1.5px solid #8bc5ec;
  border-radius: 16px;

  background: #fff;

  box-sizing: border-box;
}


/* TEXT */

.rinko-usecase-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.rinko-case-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 80px;
  height: 30px;

  padding: 0 16px;

  border-radius: 999px;

  background: #f8b62d;
  color: #fff;

  font-size: 13px;
  line-height: 1;
  font-weight: 700;
}

.rinko-usecase-content h3 {
  margin: 38px 0 32px;

  font-size: 25px;
  line-height: 1.45;
  font-weight: 700;
  color: #111;
}

.rinko-usecase-content p {
  margin: auto 0 0;

  font-size: 14px;
  line-height: 1.9;
  color: #222;
}


/* IMAGE */

.rinko-usecase-image {
  width: 100%;
  height: 100%;
  min-height: 270px;

  overflow: hidden;

  border-radius: 14px;
  background: #e9e9e9;
}

.rinko-usecase-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
}


/* ==================================================
   TABLET
================================================== */

@media screen and (max-width: 1100px) {

  .rinko-usecase-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .rinko-usecase-grid {
    gap: 24px;
  }

  .rinko-usecase-card {
    grid-template-columns: 1fr;
  }

  .rinko-usecase-image {
    min-height: 220px;
  }

}


/* ==================================================
   SP
================================================== */

@media screen and (max-width: 767px) {

  .rinko-usecase-section {
    padding: 0 16px 48px;
  }

  .rinko-usecase-title {
    margin-bottom: 20px;
  }

  .rinko-usecase-title h2 {
    font-size: 22px;
    line-height: 1.45;
  }

  .rinko-usecase-title p {
    font-size: 13px;
  }

 
  .rinko-usecase-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .rinko-usecase-card {
    min-height: auto;

    grid-template-columns: 1fr;
    gap: 20px;

    padding: 20px;

    border-radius: 14px;
  }

  .rinko-case-label {
    min-width: 72px;
    height: 27px;

    padding: 0 13px;

    font-size: 11px;
  }

  .rinko-usecase-content h3 {
    margin: 22px 0 16px;

    font-size: 21px;
    line-height: 1.45;
  }

  .rinko-usecase-content p {
    margin: 0;

    font-size: 13px;
    line-height: 1.8;
  }

  .rinko-usecase-content p br {
    display: none;
  } 

  .rinko-usecase-image {
    min-height: 0;
    height: 180px;

    border-radius: 10px;
  }

}


/* =========================
   RINKO MERIT SECTION
========================= */

.rinko-merit-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px 70px;
  box-sizing: border-box;
}


/* =========================
   TITLE
========================= */

.rinko-merit-title {
  margin-bottom: 24px;
}

.rinko-merit-title h2 {
  margin: 0 0 5px;
  font-size: 32px;
  line-height: 1.4;
  font-weight: 700;
  color: #111;
}

.rinko-merit-title p {
  margin: 0;
  font-size: 16px;
  letter-spacing: 0.03em;
  color: #1f405d;
}


/* =========================
   BOX
========================= */

.rinko-merit-box {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));

  border: 1.5px solid #8bc5ec;
  border-radius: 16px;

  padding: 34px 24px 30px;

  background: #fff;
  box-sizing: border-box;
}


/* =========================
   ITEM
========================= */

.rinko-merit-item {
  position: relative;

  min-width: 0;
  padding: 0 25px;

  text-align: center;
}

/* 縦線 */
.rinko-merit-item:not(:last-child)::after {
  content: "";

  position: absolute;
  top: 12px;
  right: 0;

  width: 1px;
  height: calc(100% - 24px);

  background: #aaa;
}


/* =========================
   ICON
========================= */

.rinko-merit-icon {
  width: 92px;
  height: 92px;

  margin: 0 auto 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #eaf4fb;
}

.rinko-merit-icon img {
  width: 100px;
  height: 100px;

  object-fit: contain;
}


/* =========================
   TEXT
========================= */

.rinko-merit-item h3 {
  margin: 0 0 22px;

  font-size: 17px;
  line-height: 1.5;
  font-weight: 700;

  color: #111;
}

.rinko-merit-item p {
  margin: 0;

  font-size: 13px;
  line-height: 1.8;

  color: #222;
}


/* ==================================================
   TABLET
================================================== */

@media screen and (max-width: 1100px) {

  .rinko-merit-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .rinko-merit-box {
    padding-left: 14px;
    padding-right: 14px;
  }

  .rinko-merit-item {
    padding: 0 16px;
  }

  .rinko-merit-item h3 {
    font-size: 15px;
  }

  .rinko-merit-item p {
    font-size: 12px;
  }

}


/* ==================================================
   SP
================================================== */

@media screen and (max-width: 767px) {

  .rinko-merit-section {
    padding: 0 16px 48px;
  }

  .rinko-merit-title {
    margin-bottom: 18px;
  }

  .rinko-merit-title h2 {
    font-size: 24px;
  }

  .rinko-merit-title p {
    font-size: 13px;
  }


  /* 2列 × 2排 */

  .rinko-merit-box {
    grid-template-columns: repeat(2, minmax(0, 1fr));

    padding: 22px 12px;

    border-radius: 12px;
  }

  .rinko-merit-item {
    padding: 14px 5px 22px;
  }


  /* PCの縦線をリセット */

  .rinko-merit-item:not(:last-child)::after {
    display: none;
  }


  /* SP：中央の縦線 */

  .rinko-merit-item:nth-child(odd) {
    border-right: 1px solid #d3d3d3;
  }


  /* SP：上下の区切り線 */

  .rinko-merit-item:nth-child(-n+2) {
    border-bottom: 1px solid #d3d3d3;
  }


  .rinko-merit-icon {
    width: 76px;
    height: 76px;

    margin-bottom: 12px;
  }

  .rinko-merit-icon img {
    width: 85px;
    height: 85px;
  }

  .rinko-merit-item h3 {
    margin-bottom: 13px;

    font-size: 14px;
    line-height: 1.45;
  }

  .rinko-merit-item p {
    font-size: 12px;
    line-height: 1.7;
  }

  .rinko-merit-item p br {
    display: none;
  }

}

/* =========================
   BEFORE SECTION
========================= */

.rinko-before-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px 70px;
  box-sizing: border-box;
}


/* TITLE */

.rinko-before-title {
  margin-bottom: 24px;
}

.rinko-before-title h2 {
  margin: 0 0 5px;
  font-size: 32px;
  line-height: 1.4;
  font-weight: 700;
  color: #111;
}

.rinko-before-title p {
  margin: 0;
  font-size: 16px;
  letter-spacing: 0.03em;
  color: #1f405d;
}


/* =========================
   MAIN BOX
========================= */

.rinko-before-box {
  display: grid;
  grid-template-columns:
    minmax(0, 1.2fr)
    minmax(280px, 0.9fr)
    minmax(300px, 1fr);

  gap: 34px;

  padding: 28px 30px;

  border-radius: 18px;
  background: #e4f9ff;

  box-sizing: border-box;
}


/* =========================
   LEFT TEXT
========================= */

.rinko-before-info {
  padding: 16px 10px;
}

.rinko-before-info h3 {
  margin: 0 0 28px;

  font-size: 24px;
  line-height: 1.6;
  font-weight: 700;

  color: #111;
}

.rinko-before-info p {
  margin: 0;

  font-size: 14px;
  line-height: 2;

  color: #222;
}


/* =========================
   CARD
========================= */

.rinko-before-card {
  overflow: hidden;

  border: 1px solid #9fc9e5;

  background: #fff;
}

.rinko-before-card-title {
  padding: 11px 18px;

  background: #6fa6c9;
  color: #fff;

  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
}


/* =========================
   BAG
========================= */

.rinko-bag-content {
  min-height: 250px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 20px;

  box-sizing: border-box;
}

.rinko-bag-img {
  width: 70%;
  max-width: 220px;
  height: 150px;

  object-fit: contain;
}

.rinko-bag-text {
  width: 100%;
  margin-top: 8px;
}

.rinko-bag-text strong {
  display: block;

  margin-bottom: 5px;

  font-size: 18px;
  color: #111;
}

.rinko-bag-text span {
  display: block;

  font-size: 14px;
  line-height: 1.5;

  color: #333;
}


/* =========================
   TOOLS
========================= */

.rinko-tools-grid {
  min-height: 250px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 20px 26px;

  padding: 22px 28px;

  box-sizing: border-box;
}

.rinko-tool-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
}

.rinko-tool-item img {
  width: 72px;
  height: 72px;

  margin-bottom: 8px;

  object-fit: contain;
}

.rinko-tool-item span {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 700;

  color: #111;
}


/* ==================================================
   TABLET
================================================== */

@media screen and (max-width: 1100px) {

  .rinko-before-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .rinko-before-box {
    grid-template-columns: 1fr 1fr;
  }
 
  .rinko-before-info {
    grid-column: 1 / -1;
  }

}


/* ==================================================
   SP
================================================== */

@media screen and (max-width: 767px) {

  .rinko-before-section {
    padding: 0 16px 48px;
  }


  /* TITLE */

  .rinko-before-title {
    margin-bottom: 18px;
  }

  .rinko-before-title h2 {
    font-size: 24px;
    line-height: 1.45;
  }

  .rinko-before-title p {
    font-size: 13px;
  }


  /* MAIN */

  .rinko-before-box {
    display: grid;
    grid-template-columns: 1fr;

    gap: 16px;

    padding: 18px;

    border-radius: 14px;
  }


  /* TEXT */

  .rinko-before-info {
    padding: 4px 2px 10px;
  }

  .rinko-before-info h3 {
    margin-bottom: 14px;

    font-size: 20px;
    line-height: 1.6;
  }

  .rinko-before-info p {
    font-size: 14px;
    line-height: 1.85;
  }


  /* CARD */

  .rinko-before-card {
    width: 100%;
  }

  .rinko-before-card-title {
    padding: 10px 14px;
    font-size: 16px;
  }


  /* BAG */

  .rinko-bag-content {
    min-height: auto;

    padding: 18px 16px;
  }

  .rinko-bag-img {
    width: 65%;
    max-width: 180px;

    height: 120px;
  }

  .rinko-bag-text strong {
    font-size: 18px;
  }

  .rinko-bag-text span {
    font-size: 14px;
  }


  /* TOOLS */

  .rinko-tools-grid {
    min-height: auto;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px 12px;

    padding: 18px 14px;
  }

  .rinko-tool-item img {
    width: 80px;
    height: 80px;
  }

  .rinko-tool-item span {
    font-size: 14px;
  }

}

/* =========================
   RINKO VIDEO
========================= */

.rinko-video-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px 70px;
  box-sizing: border-box;
}


/* TITLE BAR */

.rinko-video-heading {
  width: 100%;

  padding: 15px 30px;

  border-radius: 999px;

  background: #f8b62d;
  color: #fff;

  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;

  box-sizing: border-box;
}


/* VIDEO */

.rinko-video-wrap {
  width: 100%;
  max-width: 760px;
  aspect-ratio: 16 / 9;

  margin: 42px auto 0;

  border-radius: 18px;
  overflow: hidden;
  background: #ddd;
}

.rinko-video-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.rinko-video-note {
  margin: 18px 0 10px;
  font-size: 14px;
  font-weight: 600;
  color: #555;
}

.rinko-video-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 190px;
  padding: 12px 22px;

  background: #f8b62d;
  color: #fff;

  border: none;
  border-radius: 999px;

  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;

  text-decoration: none;
  cursor: pointer;

  appearance: none;
  -webkit-appearance: none;

  transition: opacity .25s, transform .25s;

  text-decoration: none;
  box-sizing: border-box;
  box-shadow: 0 5px 7px rgba(0, 0, 0, 0.16);

  cursor: pointer;
  transition: transform 0.25s, opacity 0.25s, box-shadow 0.25s;
}

.rinko-video-btn:hover {
  opacity: .85;
  transform: translateY(-1px);
}

.rinko-video-btn:focus {
  outline: none;
}

@media (max-width: 767px) {
  .rinko-video-btn {
    width: 100%;
    min-width: 0;
    padding: 12px 18px;
    font-size: 13px;
  }
}

html {
  scroll-behavior: smooth;
}

@media (max-width: 767px) {
  .rinko-video-btn {
    width: 70%;
    min-width: 0;
  }

  .rinko-video-note {
    margin-top: 16px;
    font-size: 13px;
  }
}
/* =========================
   TABLET
========================= */

@media screen and (max-width: 1100px) {

  .rinko-video-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .rinko-video-wrap {
    max-width: 700px;
  }

}


/* =========================
   SP
========================= */

@media screen and (max-width: 767px) {

  .rinko-video-section {
    padding: 0 16px 48px;
  }

  .rinko-video-heading {
    padding: 12px 20px;

    font-size: 16px;
  }

  .rinko-video-wrap {
    width: 100%;

    margin-top: 24px;

    border-radius: 12px;
  }

}

/* =========================
   DETAIL SECTION
========================= */

.rinko-detail-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px 70px;
  box-sizing: border-box;
}


/* =========================
   STEP BACKGROUND BOX
========================= */

.rinko-detail-box {
  padding: 28px;

  border-radius: 18px;

  background:#e4f9ff;

  box-sizing: border-box;
}


/* =========================
   2 COLUMN GRID
========================= */

.rinko-detail-grid {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 28px 30px;
}


/* =========================
   CARD
========================= */

.rinko-detail-card {
  padding: 18px; 
  border: 1px solid #8bc5ec;
  border-radius: 16px;
  background: #fff; 
  box-sizing: border-box;
}


/* HEADER */

.rinko-detail-head {
  display: flex;
  align-items: center;

  gap: 12px;

  margin-bottom: 16px;
}

.rinko-detail-num {
  flex: 0 0 auto;

  width: 34px;
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #f8b62d;

  color: #fff;

  font-size: 13px;
  font-weight: 700;
}

.rinko-detail-head h3 {
  margin: 0;

  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;

  color: #111;
}


/* =========================
   CARD BODY
========================= */

.rinko-detail-body {
  display: grid;

  grid-template-columns: 48% minmax(0, 1fr);

  gap: 18px;

  align-items: stretch;
}


/* IMAGE */

.rinko-detail-img {
  width: 100%;

  aspect-ratio: 16 / 10;

  overflow: hidden;

  border-radius: 10px;

  background: #ffffff;
}

.rinko-detail-img img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
}


/* TEXT */

.rinko-detail-text {
  display: flex;

  flex-direction: column;

  min-width: 0;
}

.rinko-detail-text p {
  margin: 0;

  font-size: 14px;
  line-height: 1.7;

  color: #222;
}


/* =========================
   POINT
========================= */

.rinko-point {
  margin-top: auto;
  padding: 12px 14px;
  border-radius: 7px;
  background: #fff4cb;
  box-sizing: border-box;
}

.rinko-point strong {
  display: block; 
  margin-bottom: 4px; 
  font-size: 14px; 
  color: #ffac00;
}

.rinko-point strong::first-letter {
  color: #eaa100;
}

.rinko-point span {
  display: block;
  font-size: 11px;
  line-height: 1.6;
  color: #222;
}


/* =========================
   AFTER SECTION
========================= */

.rinko-after-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 28px;
}


/* AFTER CARD */

.rinko-after-card {
  padding: 22px;
  border: 1px solid #8bc5ec;
  border-radius: 16px;
  background: #fff;
  box-sizing: border-box;
}

.rinko-after-card h3 {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
  color: #111;
}

.rinko-after-body {
  display: grid;
  grid-template-columns: 44% minmax(0, 1fr);
  gap: 20px;
  align-items: center;
}


/* IMAGE */

.rinko-after-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 10px;
  background: #ddd;
}

.rinko-after-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}


/* TEXT */

.rinko-after-text p {
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.7;
  color: #222;
}

.rinko-after-text small {
  display: block;
  font-size: 12px;
  line-height: 1.7;
  color: #222;
}


/* ==================================================
   TABLET
================================================== */

@media screen and (max-width: 1100px) {

  .rinko-detail-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .rinko-detail-box {
    padding: 22px;
  }

  .rinko-detail-grid {
    gap: 22px;
  }

  .rinko-detail-body {
    grid-template-columns: 1fr;
  }

  .rinko-detail-text p {
    font-size: 12px;
  }

}


/* ==================================================
   SP
================================================== */

@media screen and (max-width: 767px) {

  .rinko-detail-section {
    padding: 0 16px 48px;
  }


  /* STEP BOX */

  .rinko-detail-box {
    padding: 16px;

    border-radius: 14px;
  }


  /* 1列にする */

  .rinko-detail-grid {
    grid-template-columns: 1fr;

    gap: 16px;
  }


  /* CARD */

  .rinko-detail-card {
    padding: 15px;

    border-radius: 10px;
  }


  /* HEADER */

  .rinko-detail-head {
    gap: 10px;

    margin-bottom: 14px;
  }

  .rinko-detail-num {
    width: 30px;
    height: 30px;

    font-size: 14px;
  }

  .rinko-detail-head h3 {
    font-size: 18px;
  }


  /* BODY */

  .rinko-detail-body {
    grid-template-columns: 42% minmax(0, 1fr);

    gap: 13px;

    align-items: start;
  }


  .rinko-detail-img {
    border-radius: 8px;
  }

  .rinko-detail-text p {
    font-size: 14px;

    line-height: 1.75;
  }


  /* POINT */

  .rinko-point {
    margin-top: 12px;

    padding: 9px 10px;
  }

  .rinko-point strong {
    font-size: 13px;
  }

  .rinko-point span {
    font-size: 11px;
  }


  /* =========================
     TRAIN / ASSEMBLY
  ========================= */

  .rinko-after-grid {
    grid-template-columns: 1fr;

    gap: 16px;

    margin-top: 16px;
  }

  .rinko-after-card {
    padding: 16px;

    border-radius: 12px;
  }

  .rinko-after-card h3 {
    margin-bottom: 14px;

    font-size: 18px;
  }

  .rinko-after-body {
    grid-template-columns: 40% minmax(0, 1fr);

    gap: 14px;
  }

  .rinko-after-text p {
    margin-bottom: 12px;

    font-size: 13px;
    line-height: 1.75;
  }

  .rinko-after-text small {
    font-size: 12px;
    line-height: 1.6;
  }

}


/* ==================================================
   VERY SMALL SP
================================================== */

@media screen and (max-width: 440px) {
 

  .rinko-detail-body,
  .rinko-after-body {
    grid-template-columns: 1fr;
  }

  .rinko-detail-img {
    aspect-ratio: 16 / 9;
  }

  .rinko-after-img {
    aspect-ratio: 16 / 9;
  }

}

/* =========================
   CHECK SECTION
========================= */

.rinko-check-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px 70px;
  box-sizing: border-box;
}


/* =========================
   TITLE
========================= */

.rinko-check-title {
  margin-bottom: 22px;
}

.rinko-check-title h2 {
  margin: 0 0 5px;

  font-size: 32px;
  line-height: 1.4;
  font-weight: 700;

  color: #111;
}

.rinko-check-title p {
  margin: 0;

  font-size: 16px;
  letter-spacing: 0.03em;

  color: #1f405d;
}


/* =========================
   CHECK BOX
========================= */

.rinko-check-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;

  gap: 8px;

  padding: 26px 32px;

  border-radius: 16px;

  background: #e4f9ff;

  box-sizing: border-box;
}


/* =========================
   CHECK LIST
========================= */

.rinko-check-list {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 18px 24px;

  align-items: center;
}

.rinko-check-item {
  display: flex;
  align-items: center;

  gap: 10px;

  font-size: 15px;
  line-height: 1.5;
  font-weight: 600;

  color: #111;

  cursor: pointer;
}

.rinko-check-item input {
  width: 16px;
  height: 16px;

  flex: 0 0 auto;

  accent-color: #f8b62d;
}


/* =========================
   MESSAGE
========================= */

.rinko-check-message {
  padding-left: 34px;

  border-left: 1px solid #9fc9e5;

  display: flex;
  flex-direction: column;
  justify-content: center;

  color: #28608b;
}

.rinko-check-message span {
  font-size: 17px;
  line-height: 1.5;
font-weight: 700;
}

.rinko-check-message strong {
  margin-top: 4px;

  font-size: 17px;
  line-height: 1.5;
  font-weight: 700;
}


/* =========================
   FAQ / NOTICE GRID
========================= */

.rinko-info-grid {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 24px;

  margin-top: 34px;
}


/* =========================
   INFO CARD
========================= */

.rinko-info-card {
  padding: 26px 28px;

  border-radius: 14px;

  background: #fff7d4;

  box-sizing: border-box;
}

.rinko-info-card h3 {
  margin: 0 0 22px;

  font-size: 20px;
  line-height: 1.4;
  font-weight: 700;

  color: #f8b62d;
}


/* =========================
   FAQ
========================= */

.rinko-faq-list {
  display: flex;
  flex-direction: column;

  gap: 18px;
}

.rinko-faq-item strong {
  display: block;

  margin-bottom: 4px;

  font-size: 14px;
  line-height: 1.6;

  color: #111;
}

.rinko-faq-item p {
  margin: 0;

  font-size: 12px;
  line-height: 1.7;

  color: #222;
}


/* =========================
   NOTICE
========================= */

.rinko-notice-list {
  margin: 0;
  padding-left: 18px;
}

.rinko-notice-list li {
  margin-bottom: 9px;

  font-size: 14px;
  line-height: 1.7;

  color: #222;
}

.rinko-notice-list li:last-child {
  margin-bottom: 0;
}


/* ==================================================
   TABLET
================================================== */

@media screen and (max-width: 1100px) {

  .rinko-check-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .rinko-check-box {
    grid-template-columns: 1fr;
  }

  .rinko-check-message {
    padding: 18px 0 0;

    border-left: 0;
    border-top: 1px solid #9fc9e5;
  }

}


/* ==================================================
   SP
================================================== */

@media screen and (max-width: 767px) {

  .rinko-check-section {
    padding: 0 16px 48px;
  }


  /* TITLE */

  .rinko-check-title {
    margin-bottom: 18px;
  }

  .rinko-check-title h2 {
    font-size: 24px;
  }

  .rinko-check-title p {
    font-size: 13px;
  }


  /* CHECK */

  .rinko-check-box {
    display: block;

    padding: 20px 12px;

    border-radius: 14px;
  }

  .rinko-check-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 14px 5px;
  }

  .rinko-check-item {
    align-items: flex-start;

    gap: 3px;

    font-size: 10.5px;
    line-height: 1.5;
  }

  .rinko-check-item input {
    width: 14px;
    height: 14px;

    margin-top: 1px;
  }


  /* MESSAGE */

  .rinko-check-message {
    margin-top: 20px;
    padding: 16px 0 0;

    border-top: 1px solid #9fc9e5;
    border-left: none;

    text-align: center;

    align-items: center;
  }

  .rinko-check-message span {
    font-size: 12px;
  }

  .rinko-check-message strong {
    font-size: 14px;
  }


  /* FAQ / NOTICE */

  .rinko-info-grid {
    grid-template-columns: 1fr;

    gap: 16px;

    margin-top: 20px;
  }

  .rinko-info-card {
    padding: 20px 18px;

    border-radius: 12px;
  }

  .rinko-info-card h3 {
    margin-bottom: 17px; 
    font-size: 20px;
  }

  .rinko-faq-list {
    gap: 15px;
  }

  .rinko-faq-item strong {
    font-size: 14px;
  }

  .rinko-faq-item p {
    font-size: 12px;
    line-height: 1.7;
  }

  .rinko-notice-list {
    padding-left: 16px;
  }

  .rinko-notice-list li {
    margin-bottom: 8px;

    font-size: 14px;
    line-height: 1.7;
  }

}



.full-background {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;

  background-image: url('https://oportable.jp/.assets/bg2.png');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;

  z-index: -1;
}
 
.rinko-campaign-card {
  position: relative;
}
 
.rinko-campaign-card .rinko-bag-content {
  padding-top: 20px;
}
 
.rinko-campaign-sticker {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;

  width: 92px;
  height: 92px;
  box-sizing: border-box;
  border: 3px solid #fff;
  border-radius: 50%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  background: #ffe35b;
  color: #f21705;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.18);

  text-align: center;
  transform: rotate(10deg);
}

.rinko-campaign-sticker span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
}

.rinko-campaign-sticker strong {
  display: block;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.15;
}
 
.rinko-bag-text .rinko-campaign-message {
  margin-top: 8px;
  padding: 9px 12px;
  border-radius: 6px;

  background: #fff6d5;
  color: #cd1000;

  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}