@charset "UTF-8";

/*----------------------------------------
	ウィジェット・メニュー
----------------------------------------*/
.kojiman-menu ul {
  padding: 0;
  list-style: none;
}

.kojiman-menu h5,
.kojiman-menu li a {
  box-sizing: border-box;
  color: rgb(51, 51, 51);
  /* cursor: pointer; */
  display: block;
  font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 18px;
  font-weight: 400;
  height: 52.3906px;
  line-height: 32.4px;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 0px;
  padding-bottom: 10px;
  padding-left: 4px;
  padding-right: 4px;
  padding-top: 10px;
  text-decoration-color: rgb(51, 51, 51);
  text-decoration-line: none;
  text-decoration-style: solid;
  text-decoration-thickness: auto;
  text-size-adjust: 100%;
}

.kojiman-menu h5 {
  font-weight: bold;
}

/*----------------------------------------
	プルダウンメニュー
----------------------------------------*/
.selectbox-base {
  display: inline-flex;
  align-items: center;
  position: relative;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 20px;
}

/* 擬似要素で下向きの矢印を作る */
.selectbox-base::after {
  position: absolute;
  right: 14px;
  width: 10px;
  height: 6px;
  background: #555;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  pointer-events: none;
  transition: background 0.2s ease;
}

.selectbox-base select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  min-width: 220px;
  width: 100%;
  height: 2.7em;
  padding: 0.5em calc(0.8em + 24px) 0.5em 0.8em;
  border: 1px solid #ddd;
  border-radius: 4px;
  /* border-radius: 8px; */
  background: #fff;
  color: #333;
  font-size: 18px;
  /* font-size: 0.95rem; */
  line-height: 1;
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04); */
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.selectbox-base select:hover {
  border-color: #c8c8c8;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.selectbox-base select:focus {
  outline: none;
  border-color: #8ab4f8;
  box-shadow: 0 0 0 3px rgba(138, 180, 248, 0.25);
}

@media (prefers-color-scheme: dark) {
  .selectbox-base::after {
    background: #aaa;
  }
  .selectbox-base select {
    background: #1f1f1f;
    color: #eaeaea;
    border-color: #3a3a3a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  }
  .selectbox-base select:hover {
    border-color: #555;
  }
}

/*----------------------------------------
	投稿コンテンツ
----------------------------------------*/
.boast-helpful-info-table {
  width: auto;
  text-align: left;
  margin-bottom: 80px !important;
}

.boast-helpful-info-table td {
  background-color: white;
}

.boast-helpful-thoughts {
  margin-bottom: 3em;
}

.boast-helpful-pic-g2 {
  margin-top: 3em;
}

.boast-helpful-pic-title {
  margin-bottom: 1.5em;
}

.boast-helpful-pic-area {
  display: flex;
  flex-wrap: wrap;
  /* justify-content: space-between; */
  /* justify-content: space-around; */
  gap: 1.5rem;
}

.boast-helpful-pic-item {
  flex: 1 1 calc(33.3% - 1rem); /*flex-grow, flex-shrink, flex-basis を指定*/
  max-width: calc(33.3% - 1rem);
  box-sizing: border-box;
}

.boast-helpful-pic-item img {
    width: 100%; /* 画像をアイテムの幅いっぱいに表示 */
    height: auto; /* アスペクト比を維持 */
    display: block;
}

.boast-helpful-pic-item figcaption {
  font-size: 1em;
}

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

/*834px以下*/
@media screen and (max-width: 834px){
  /*必要ならばここにコードを書く*/
  .boast-helpful-pic-item {
    flex: 1 1 calc(50% - 1rem); /*flex-grow, flex-shrink, flex-basis を指定*/
    max-width: calc(50% - 1rem);
  }
}

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
  .boast-helpful-pic-item {
    flex: 1 1 100%; /*flex-grow, flex-shrink, flex-basis を指定*/
    max-width: 100%;
  }
}