/**
 * GASGASエネルギー トップページスタイル
 * ブレイクポイント: 960px
 */

.character-icon {
  font-size: 60px;
  display: block;
  margin: 0 auto;
}

.character-icon--life {
  color: #1E88E5;
}

.character-icon--house {
  color: #4CAF50;
}

.character-icon--car {
  color: #FFC107;
}

.character-icon--health {
  color: #9C27B0;
}

.home-dummy-area {
  border: solid 0.0625rem var(--color-gray);
  padding: var(--space-s);
}

/* 検索フォーム */
.home-search {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-s);
  /*align-items: center;*/
  /*!*box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);*!*/
  /*position: relative;*/
  /*overflow: hidden;*/
}

/* 2つの子要素を「最低これだけは欲しい」幅にして、余ったら伸ばす */
.home-search__main,
.home-search__banner{
  flex: 1 1 calc(420 / 16 * 1rem); /* grow:1 / shrink:1 / basis:420px(=最小の目安) */
  /*min-width: 320px; !* ここが実質の「最小nサイズ」 *!*/
}

.home-search__main {
  padding: var(--space-s) var(--space-l);
  background-color: var(--color-gray);
  display: flex;
  align-items: center;
  /*box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);*/
  position: relative;
  overflow: hidden;
}

.home-search__banner {

}

.home-search__banner img {
  width: 100%;
}

.home-search__banner .wp-block-image {
  margin: 0;
}

.home-search__character {
  width: 115px;
  margin-right: 20px;
  flex-shrink: 0;
}

@media (960px > width) {
  .home-search__character {
    display: none;
  }
}

.home-search__character img {
  object-fit: cover;
  aspect-ratio: 115 /163;
  width: 100%;
  height: auto;
}

.home-search__character-img {
  max-width: 100%;
  height: auto;
}

.home-search__content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-s);
  overflow: hidden;
}

.home-search__form-wrapper {
}

.home-search__keywords {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: clamp(0.938rem, 0.887rem + 0.25vw, 1.188rem);
}

.home-search__keywords ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.home-search__keywords ul li {
  list-style: none;
  display: flex;
}

.home-search__keyword-label {
  margin-right: 10px;
  white-space: nowrap;
  color: #333;
  /*font-size: var(--step-1);*/
  font-weight: bold;
}

.home-search__keywords ul li a {
  margin-right: var(--space-s);
  /*font-size: var(--step-1);*/
  font-weight: bold;
  color: #333;
  text-decoration: underline;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 12.5rem;
}

/* レスポンシブスタイル */
@media (max-width: 960px) {
  /* 検索フォーム */
  .home-search {
    /*flex-direction: column;*/
    align-items: flex-start;
    /*padding: var(--space-s) var(--space-xs);*/
  }

  .home-search__character {
    width: 80px;
    margin-right: 0;
    margin-bottom: 15px;
    margin-inline: auto;
  }

  .home-search__content {
    width: 100%;
  }

  .home-search__form-wrapper {
    width: 100%;
  }
}

/* スマホ向けスタイル */
@media (max-width: 600px) {
  /* メインナビゲーション */
  .character-icon {
    font-size: 40px;
  }

  .home-search__keywords ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .home-search__keyword-label {
    margin-right: 0;
    font-size: var(--step-0);
  }

  .home-search__keywords ul li a {
    margin-right: .5em;
    margin-bottom: .3em;
    font-size: var(--step-0);
  }


}
