.featureBox .num {
	margin: 0 0 10px 0;
	padding: 0 0 0 0;
	font-size: 1.5rem;
	font-weight: bold;
	color: #F28E1B;
	letter-spacing: .05em;
	background-size: 30px auto;
}

.featureBox h3 {
	font-size: 160%;
}
.featureBox .num .em {
	margin: 0 0 0 10px;
	font-size: 3.0rem;
	color: transparent;
	-webkit-text-stroke: 1px #F28E1B;
	text-stroke: 1px #F28E1B;
	letter-spacing: 0;
	line-height: 1;
}


.portal-link {
    display: block;
    padding: 15px 30px;
    background-color: #fff;
    border: 2px solid #F28E1B;
    margin: 15px auto;
    color: #F28E1B;
    font-weight: bold;
}

.portal-link:hover {
    opacity: 0.5;
}

/***************************************************
grid-container
***************************************************/

.grid-container {
  display: grid;
  gap: 16px;
}

/* モバイル：768px以下 */
@media (max-width: 767.98px) {
  .grid-container {
    grid-template-columns: 1fr;
    grid-template-areas:
      "photo"
      "title"
      "heading"
      "detail-illust";
  }

  .inner-01-photo   { grid-area: photo; }
  .inner-02-title   { grid-area: title; }
  .inner-03-heading { grid-area: heading; }

  .inner-04-detail  {
    width: 100%;
  }

  .inner-05-illust  {
    width: 100%;
  }
}

/* PC：768px以上（新しい要件に対応） */
@media (min-width: 768px) {
  .grid-container {
    grid-template-columns: 1fr 2fr;
    grid-template-areas:
      "title title"
      "heading heading"
      "photo detail"
      "illust illust";
  }

  .inner-01-photo   { grid-area: photo; }
  .inner-02-title   { grid-area: title; }
  .inner-03-heading { grid-area: heading; }
  .inner-04-detail  { grid-area: detail; }
  .inner-05-illust  { grid-area: illust;}

}


/***************************************************
hansokubox
***************************************************/
.hansokubox {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 40px;
}

.hansokusabbox {
    width: calc((100% - 5%) / 3);
    border: 3px solid #ff9900;
    padding: 30px 10px;
    border-radius: 8px;
    background: rgb(242, 142, 27, 0.05);
}

.hansokusabbox h2 {
    font-weight: 600;
    color: #ff9900;
    font-size: 45px;
    margin: -60px;
}

.hansokusabbox div h4 {
    line-height: 2.2rem;
    margin-bottom: 20px;
}

.hansokusabbox div {
    margin-top: 80px;
    text-align: center;
}



.hansokusabbox h2 span {
    background: #ff9900;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 1.5rem;
    margin: auto;
}

@media screen and (max-width:767.98px) {
    .hansokubox {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 0px;
    flex-direction: column;
}
    
    .hansokusabbox {
    width: 100%;
    border: 3px solid #ff9900;
    padding: 30px 30px;
    border-radius: 8px;
    background: rgb(242, 142, 27, 0.05);
    margin: 20px 0;
}
}

/***************************************************
faq
***************************************************/
.faq {
    max-width: 960px;
    margin: 0 auto;
    width: 96%;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 1em 0;
}
.faq-question {
  cursor: pointer;
  font-weight: bold;
  position: relative;
  padding-right: 2em;
}
.faq-question::after {
  content: "＋";
  position: absolute;
  right: 0;
}
.faq-question.active::after {
  content: "−";
}
.faq-answer {
  display: none;
  padding-top: 0.5em;
  color: #444;
}