@charset "utf-8";



.page_ttl_wrap {
    position: relative;
    background-image: url(../img/about/about_mv.png);
    background-repeat: no-repeat;
    background-size: 90%;
    background-position: center;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10% 0;
	color: #fff;
	    text-shadow: 2px 3px 3px rgb(0 0 0 / 60%);
}


.flow_section {
  background: #FFE8CB;
  padding: 80px 20px;
}

.flow_inner {
  max-width: 1320px;
  margin: 0 auto;
}

/* STEP共通 */
.flow_step {
  position: relative;
  margin-bottom: 60px;
}

.step_label {
    position: absolute;
    top: -20px;
    left: -50px;
    background: #ff7a00;
    color: #fff;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: bold;
}

.step_box {
  background: #fff;
  border-radius: 30px;
  padding: 50px 40px;
}

.step_box.center {
  text-align: center;
}

.step_ttl {
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 20px;
}

/* STEP1 */
.step1_wrap {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 20px;
}

.contact_card {
  width: 370px;
  background: #fff;
  border: 2px solid #ccc;
}

.contact_card.tel .card_ttl {
  background: #2d6b00;
}

.contact_card.fax .card_ttl {
  background: #7aa9c4;
}

.card_ttl {
  color: #fff;
  padding: 10px;
  text-align: center;
  font-weight: bold;
      margin: 0;
}

.card_number {
  font-size: 22px;
  font-weight: bold;
  padding: 15px;
  text-align: center;
  border: 1px solid;
  max-width: 300px;
  margin: 0 auto;
  margin-top: 20px;
}

.contact_card.tel .card_number {
  color: #4caf50;
	max-width: 240px;
}

.contact_card.fax .card_number {
  color: #2c6cb0;
	max-width: 240px;
}

.card_text {
  font-size: 16px;
  padding: 10px 15px 20px;
  line-height: 1.6;
}

.step_note {
  text-align: center;
  font-size: 16px;
}

/* STEP2 */
.delivery_area {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  border-top: 2px solid #ff7a00;
  padding-top: 15px;
}

.area_label {
  background: #ff7a00;
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 17px;
}

.area_text {
  font-size: 18px;
}

/* 矢印 */
.flow_arrow {
      width: 0;
    height: 0;
    margin: 0 auto 40px;
    border-left: 35px solid transparent;
    border-right: 35px solid transparent;
    border-top: 35px solid #ff7a00;
}

/* 注意事項 */
.flow_notice {
  border: 3px solid #ff7a00;
  border-radius: 20px;
  padding: 30px;
  background: #fff;
}

.notice_ttl {
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 24px;
  margin-top: 0;
}

.flow_notice ol {
  padding-left: 20px;
}

.flow_notice li {
  margin-bottom: 10px;
  font-size: 18px;
}

/* =====================
   SP
===================== */

@media (max-width: 768px) {

  .step1_wrap {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .step_box {
    padding: 25px 20px;
  }

  .step_ttl {
    font-size: 16px;
	 text-align: left;
  }
	
	.contact_card {
    width: 300px;
}
	
	.step_label {
    position: absolute;
    top: -20px;
    left: -10px;
    padding: 10px 30px;
    border-radius: 30px;
}
	
	.area_text {
    font-size: 16px;
	text-align: left;
}
	
	.delivery_area {
		flex-direction: column;
    align-items: flex-start;
	}
	
	.flow_step {
    margin-bottom: 30px;
}
	
	.flow_notice li {
    margin-bottom: 20px;
    font-size: 16px;
}
	
	.flow_arrow {
	margin: 0 auto 30px;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-top: 25px solid #ff7a00;
	}

	
	.notice_ttl {
    margin-bottom: 15px;
    font-size: 20px;
}
	
}

.company_section {
  background: #fff;
  padding: 80px 20px;
    margin-bottom: 100px;
}

.company_inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* タイトル */
.company_title {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 60px;
}

/* テーブル */
.company_table {
  width: 100%;
}

/* 行 */
.company_row {
  display: flex;
  align-items: center;
  padding: 25px 0;
  border-bottom: 2px solid #ff7a00;
    padding-bottom: 5px;
}

/* 左（項目） */
.company_row dt {
  width: 200px;
  font-weight: bold;
  font-size: 16px;
}

/* 右（内容） */
.company_row dd {
  flex: 1;
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}

/* =====================
   SP
===================== */

@media (max-width: 768px) {

  .company_row {
    flex-direction: column;
	align-items: flex-start;
	padding-top: 15px;
  }

  .company_row dt {
    width: 100%;
    font-size: 16px;
  }

  .company_row dd {
    font-size: 16px;
  }

	.company_title {
    margin: 0px;
	font-size: 20px;
}
	
	.company_section {
    padding: 50px 15px;
    margin-bottom: 20px;
}
	
	
	.page_ttl_wrap .page_ttl {
    font-size: 18px;
}


	
}