.p-pattern02__column {
  padding: 4rem 6rem;
  margin-top: 3rem;
  color: var(--color-text-contrast);
  background-color: var(--color-primary);
  border-radius: var(--radius-lg);
}
@media (max-width: 1024px) {
  .p-pattern02__column {
	  padding: 3rem;
	}
}
.p-pattern03__heading {
  --border-width: 0;
  margin-bottom: var(--section-gap-xs);
}

.p-pattern11 {
  margin-block: var(--section-gap-md);
}
.p-pattern11__heading {
  --border-width: 0;
  padding-left: calc(50 * var(--vw) - 50%);
  margin-right: 20rem;
  margin-bottom: var(--section-gap-xs);
  margin-left: calc(50% - 50 * var(--vw));
  text-align: left;
  background-color: var(--color-bg-primary);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
@media (max-width: 1024px) {
	.p-pattern11__body{
		padding: 3rem;
	}
  .p-pattern11__heading {
    margin-right: 5rem;
  }
}
@media (max-width: 525px) {
  .p-pattern11__heading {
    margin-right: 0;
  }
}
@media (min-width: 1025px) {
  .p-pattern11__intro {
    max-width: 80rem;
    margin-inline: auto;
	  margin-top: 80px;
  }
}
.p-pattern11__list {
  --row-gap: 1.5em;
  --prefix-color: var(--color-text-primary);
  margin-top: var(--section-gap-xs);
  font-size: var(--font-size-lg);
  font-weight: 550;
}
@media (min-width: 1025px) {
  .p-pattern11__list {
    max-width: 60rem;
    margin-inline: auto;
  }
}
.p-pattern12 {
  margin-block: var(--section-gap-md);
}
.p-pattern12__heading {
  --border-width: 0.8rem;
  position: relative;
  padding-left: calc(var(--border-width) + 0.85em);
}
.p-pattern12__heading::before {
  position: absolute;
  top: 0.175lh;
  bottom: 0.1lh;
  left: 0;
  width: var(--border-width);
  content: "";
  background-color: currentcolor;
}
.p-pattern12__list {
  --prefix-color: var(--color-text-primary);
}

.price-table{
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
	margin-bottom: 1em;
}

table.price{
  width: 100%;
  min-width: 980px;          
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--color-primary);
  background: #fff;
}

table.price th,
table.price td{
  border-right: 1px solid var(--color-primary);
  border-bottom: 1px solid var(--color-primary);
  padding: 18px 20px;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}

table.price tr > *:last-child{
  border-right: 0;
}

table.price tr:last-child > *{
  border-bottom: 0;
}

table.price tr:first-child > th{
	color: #254A66;
  background: color-mix(in srgb, var(--color-primary) 60%, transparent);
  font-weight: 700;
}

table.price tr > th:first-child{
	color: #254A66;
  background: color-mix(in srgb, var(--color-primary) 60%, transparent);
  font-weight: 700;
  width: 160px;
}

table.price tr:first-child > th:first-child{
  background: color-mix(in srgb, var(--color-primary) 60%, transparent);
}

@media (min-width: 981px){
  .price-table{
    overflow-x: visible;
  }
  table.price{
    min-width: 0;
  }
}

@media (max-width: 980px){
  .price-table{
    overflow-x: visible;  
  }
  table.price{
    width: 100%;
    min-width: 0;
    table-layout: fixed;   
    font-size: 14px;
  }
  table.price th,
  table.price td{
    padding: 10px 6px;
    white-space: normal;   
    word-break: break-word;
    line-height: 1.4;
  }	
table.price tr > th:first-child{
    width: auto;      
  }
}

/* =========
  Flow
========= */
.c-flow{
  --accent: #254A66;
  --arrow: var(--color-primary);
  --gap: 14px;
  list-style: none;
  padding: 0;
  margin:1em 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--gap);
}

.c-flow__item{
  position: relative;
  display: flex;
  align-items: center;
}

.c-flow__label{
  display: inline-block;
  padding: 14px 22px;
  border: 2px solid var(--accent);
  color: var(--accent);
  background: color-mix(in srgb, var(--color-primary) 60%, transparent);
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.c-flow__item:nth-child(3) .c-flow__label{
  white-space: normal;
  max-width: 46ch;
}

.c-flow__item:not(:last-child)::after{
  content: "";
  display: block;
  margin-left: var(--gap);
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 14px solid var(--arrow);
}

@media (max-width: 768px){
  .c-flow{
    --gap: 10px;
  }
  .c-flow__label{
    padding: 12px 16px;
    font-size: 14px;
    white-space: normal;    
    max-width: 100%;
  }
  .c-flow__item{
    /*flex: 1 1 48%;*/
  }
  .c-flow__item:nth-child(3){
    flex-basis: 100%;
  }
  .c-flow__item:not(:last-child)::after{
    border-top-width: 10px;
    border-bottom-width: 10px;
    border-left-width: 12px;
    margin-left: var(--gap);
  }
}

@media (max-width: 1025px) {
	.l-image-section__image {
		max-width:100%;
	}
}