@charset "UTF-8";

.subpage-h2 {
  text-align: center;
  font-size: 26px;
  margin-bottom: 40px;
}
.guide-wrap {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 80px;
}
.guide-wrap .img {
  width: 33%;
  text-align: center;
  padding-left: 20px;
}
.guide-wrap .img img {
  width: 250px;
}
.guide-wrap .guide-text {
  width: 77%;
  line-height: 2em;
  padding-right: 20px;
}
.pagelink-list {
  max-width: 1000px;
  margin: auto;
  display: flex;
  align-items: center;
  padding: 0 20px;
}
.pagelink-list li {
  width: calc(100% / 3);
  border-left: solid 1px #272625;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  position: relative;
}
.pagelink-list li:last-child {
  border-right: solid 1px #272625;
}
.pagelink-list li a {
  text-decoration: underline;
}


/*----- 手続きの流れ -----*/
.step-box {
  border: 1px solid #ccc;
  padding: 20px;
  margin: 20px;
  max-width: 1280px;
  /* background-color: #fefefe; */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.step-box h2 {
  font-size: 20px;
  font-weight: bold;
  border-bottom: 1px dotted #ccc;
  padding-bottom: 5px;
  margin-bottom: 10px;
}
.step-box .step-text a {
  text-decoration: underline;
}
.step-box .step-list {
  padding-left: 1em;
}
.step-box .download {
  margin-top: 10px;
}
.arrow {
  text-align: center;
  font-size: 20px;
  margin: 10px 0;
  color: #484A4F;
}


/*----- 手数料 -----*/
.guide-com-wrap .guide-ymd {
  text-align: right;
  margin-bottom: 10px;
}
.guide-com-wrap .guide-comment {
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.8;
  margin-bottom: 40px;
}
.guide-com-wrap .guide-comment li {
    list-style-type: disc;
    margin-left: 20px;
}

.guide-com-wrap .guide-table-group {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
}
.guide-com-card {
  flex: 1 1 calc(33.333% - 6% / 3);
  min-width: 300px;
}
.guide-com-card h3 {
  margin-bottom: 10px;
  border-bottom: 2px solid #ccc;
  padding-bottom: 5px;
}
.guide-com-card table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}
.guide-com-card th, td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: left;
}
.guide-com-card th {
    background-color: #F4F2EE;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.2em;
    white-space: nowrap;
}
.guide-com-card td {
    vertical-align: middle; 
}
.guide-com-card td:last-of-type  { 
    text-align: right;
    width: 20%;
}
.guide-com-card .bottom-dotted {
  border-bottom: 1px #ccc dotted;
}
  /*--- "+1生産者あたり"のインデント ---*/
.guide-com-card .indent {
  text-align: right;
  border-top: 1px #ccc dotted;
}

/*-------------------------------------------
タブレット
-------------------------------------------*/
@media (max-width: 1024px) {

/*----- 手数料 -----*/
.guide-com-wrap .guide-table-group {
    flex: 1 1 calc(50% - 10px); /* タブレット: 2列 */
  }
}



/*-------------------------------------------
スマートフォン
-------------------------------------------*/
@media screen and (max-width: 767px) {
  .subpage-h2 {
    font-size: 21px;
  }
  .guide-wrap {
    display: block;
    align-items: flex-start;
    padding: 0 20px;
    margin-bottom: 60px;
  }
  .guide-wrap .img {
    width: 60%;
    text-align: left;
    padding: 0;
    margin-bottom: 20px;
  }
  .guide-wrap .guide-text {
    width: 100%;
    padding: 0;
  }
  .pagelink-list li {
    font-size: 14px;
  }


/*----- 手数料 -----*/
  .guide-com-wrap .guide-table-group {
    flex: 1 1 100%; /* スマートフォン: 1列 */
  }
}


@media screen and (max-width: 481px) {
  .guide-com-wrap .guide-comment li span {
    display: block;
  }
}