.ask_wrap {
  text-align: center;
  margin: 3em 0;
}

.ask_wrap button {
    background: #313131;
    border-radius: 3px;
    position: relative;
    text-align: center;
    margin: 0 auto;
    max-width: 220px;
    padding: 10px 25px;
    color: #fff;
    transition: 0.3s ease-in-out;
    font-weight: 500;
    margin-left: 10px;
}

.ask_wrap button:hover {
    background: #eee;
    color: #313131;
}

.custom_wrap{
  max-width: 1200px;
  margin: 0 auto 20px;
}

/* 個別アイテム */
.custom-item{
  display: flex;
  justify-content: space-between;
  background-color: #fff;
  color: #000;
  width: 100%;
  padding: 0;
  margin: 20px 0;
}

.custom-desc{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40%;
  padding: 5px;
  overflow-wrap: anywhere;
  white-space: pre-wrap;     /* ← 改行コードをそのまま表示 */
}

.custom-img{ width: 60%; }

.custom-img img{
  width: 100%;
  height: 125px;
  object-fit: cover;
  object-position: center;
}

/* PC サイズ調整 */
@media (min-width: 600px){
  .ask_wrap { margin: 4em 0; }
  .custom-img img{ height: 270px; }
}

@media (min-width: 1200px){
  .custom-item{ font-size: 1.6rem; }
  .custom-desc, .custom-img{ width: 50%; }
  .custom-img img{ height: 300px; }
}
