@charset "utf-8";
/* CSS Document */

.apTopMainVisual {
  background: linear-gradient(0deg, var(--c-light-blue) 0%, var(--c-white) 100%);
}

.apImg {
  margin: 0 auto;
  max-width: 1200px;
}

.apImg img {
  width: 100%;
  height: auto;
  display: block;
}

.apReadTxt{
	margin: 0 auto 64px;
	width: 90%;
	max-width: 1040px;
	text-align: center;
}

.apReadDesc{
	margin: 0 auto 64px;
	padding: 16px;
	background-color: #efffed;
	border-radius: 16px;
	width: 90%;
	max-width: 1040px;
}

.apTwoColumn{
	display: flex;
	flex-wrap: wrap;
	gap: 1em;
	flex: 1;
}

.apTwoColumn > li{
	width: calc(50% - 1em);
	text-align: center;
}

.apRecommendWrap{
	margin: 0 auto 64px;
	display: flex;
	width: 90%;
	max-width: 1200px;
	justify-content: space-between;
}

.apBg{
	padding: 1px;
	background-color: var(--c-apBg);
}

.apFlowWrap{
	margin: 0 auto 64px;
	width: 90%;
	max-width: 1200px;
	display: flex;
	justify-content: space-between;
	gap: 1em;
}

.apCompanyList{
	margin: 0 auto 64px;
	width: 90%;
	max-width: 916px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 12px;
}

/* =========================================================
   利用料金シミュレーター (.apSurveySimulator)
========================================================= */
.apSurveySimulator {
  margin: 64px auto;
  padding: 24px 16px;
  border-radius: 16px;
  background-color: var(--c-white);
  width: 90%;
  max-width: 1200px;
  box-sizing: border-box;
}

.apSimulatorTit {
  text-align: center;
  font-size: var(--fs-c-24-36);
  font-weight: 900;
  margin-bottom: 24px;
  color: var(--c-text);
}

.apSurveySimulatorBox {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.apSurveySimulatorBox > dt {
  background-color: #d3e6f6;
  color: var(--c-primary);
  padding: 10px 16px;
  font-weight: bold;
  font-size: var(--fs-15);
  border-radius: 6px;
}

.apSurveySimulatorBox > dd {
  padding: 8px 16px;
  background-color: #f4f6f9;
  border-radius: 6px;
  display: flex;
  align-items: center;
}

.apSurveySimulatorBox label {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  font-size: var(--fs-15);
  width: 100%;
}

.apSurveySimulatorBox input[type="text"],
.apSurveySimulatorBox input[type="number"] {
  padding: 6px 12px;
  border: 1px solid var(--c-border);
  border-radius: 4px;
  width: 80px;
  margin-right: 8px;
  text-align: right;
  font-weight: bold;
  background-color: var(--c-white);
}

.apSurveySimulator .priceResult {
  width: 100%;
  padding: 16px;
  border-radius: 8px;
  box-sizing: border-box;
  background-color: var(--c-bg-light);
  border: 1px solid var(--c-border-dark);
  margin: 24px auto 0;
  max-width: 600px;
}

.apSurveySimulator .priceResult p {
  margin-bottom: 0;
  text-align: center;
  line-height: 1.5;
}

.apSurveySimulator .priceResult p:nth-child(1) {
  font-size: var(--fs-c-18-24);
  color: var(--c-text-muted);
}

.apSurveySimulator .priceResult p:nth-child(2) {
  font-size: var(--fs-c-20-26);
  font-weight: bold;
  color: var(--c-text-muted);
}

.apSimAlert {
  color: var(--c-red);
  font-size: var(--fs-13);
  font-weight: bold;
  margin-top: 4px;
  text-align: right;
  min-height: 1.5em;
}

.apSurveySimulator .simSupplement {
  margin-top: 24px;
  font-size: var(--fs-13);
  color: var(--c-text-muted);
  line-height: 1.6;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.apSurveySimulator .simSupplement > ul,
.apSurveySimulator .simSupplement > p,
.apSimDescWrap {
  text-align: left;
  display: inline-block;
  width: 90%;
}

.apSurveySimulator .simSupplement > ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.apSimDescWrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
  background: var(--c-white);
  padding: 16px;
  border-radius: 8px;
  border: 1px solid var(--c-border);
}

.apSimDescWrap ul {
  margin-left: 20px;
}

.apSimDescWrap > div > div {
  font-weight: bold;
  margin-bottom: 8px;
  color: var(--c-primary);
}

.apSimDescTit{
	margin: 1em auto;
	font-size: var(--fs-16);
	text-align: center;
	font-weight: bold;
}

@media (min-width: 768px) {
  .apSurveySimulatorBox {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
  }

  .apSurveySimulatorBox > dt:nth-of-type(1) { grid-column: 1; grid-row: 1; }
  .apSurveySimulatorBox > dd:nth-of-type(1) { grid-column: 1; grid-row: 2; }
  .apSurveySimulatorBox > dt:nth-of-type(2) { grid-column: 2; grid-row: 1; }
  .apSurveySimulatorBox > dd:nth-of-type(2) { grid-column: 2; grid-row: 2; }

  .apSimDescWrap {
    flex-direction: row;
    justify-content: space-between;
  }
}