@charset "utf-8";

.page-mv {
  background-color: #fffef5;
  /*background-image: repeating-linear-gradient(90deg, #ffbd3943, #ffbd3943 1px, transparent 1px, transparent 20px), repeating-linear-gradient(0deg, #ffbd3943, #ffbd3943 1px, transparent 1px, transparent 20px);*/
  min-height: 200px;
  text-align: center;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.page-mv-text {
  color: #E95B10;
}

.tc-content {
  max-width: 900px;
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
}

.tc-content h2 {
  font-size: 20px;
  font-weight: bold;
  color: #E95B10;
  margin: 40px 0 20px;
}

.tc-content li {
  margin-left: 1.5em;
  padding-left: 0.5em;
}

.p-space {
  margin-top: 16px;
  margin-bottom: 8px;
}



/* ここから下は会社概要のcss */

:root {
  --text: #111;
  --muted: #666;
  --line: #e5e5e5;
  --accent: #ff6b00;
  --maxw: 880px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", Arial, sans-serif;
  color: var(--text);
  line-height: 1.75;
  background: #fff;
}

.company-wrapper {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 28px 16px 80px;
}

/* List */
.info-list {
  margin: 0;
  padding: 0;
}

.info-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.info-item:first-child {
  border-top: none;
}

.info-term {
  margin: 0;
  font-weight: 700;
  color: var(--accent);
  font-size: 16px;
}

.info-desc {
  margin: 0;
  font-size: 16px;
  color: var(--text);
  word-break: keep-all;
}

.info-desc a {
  text-decoration: underline;
}

/* PC(横並び) */
@media (min-width: 960px) {
  .info-item {
    grid-template-columns: 180px 1fr;
    /* 左:見出し / 右:内容 */
    align-items: start;
    gap: 24px;
    padding: 22px 0;
  }

  .info-term {
    font-size: 15px;
    /* 画像の印象に合わせやや小さめ */
    line-height: 1.6;
  }

  .info-desc {
    font-size: 15px;
  }
}








/* ここから下はヘルプページ */
.help-wrapper{
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 16px;
}

.help-title{
    background-color: #FFA672;
    padding: 8px;
    text-align: center;
    margin-bottom: 16px;
}

.help-title h2{
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
}

.help-text{
    margin-bottom: 32px;
}

.help-question{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    gap: 8px;
}

.help-answer{
  font-size: 16px;
}

.delete{
  color: #ffffff;
  border-radius: 50px;
  background-color: #E3165C;
  width: 256px;
  font-weight: bold;
  text-align: center;
  margin: 0 auto;
  padding: 12px 16px;
  margin-bottom: 32px;
}

.delete:hover{
  background-color: #F376A1;
}

.p-red{
  color: #E3165C;
}

.p-bold{
  font-weight: bold;
}

.disc{
  list-style-type: disc;
  margin-left: 1.5em;
  padding-left: 0.5em;
}

.disc li{
  margin-bottom: 8px;
}




/* 問い合わせボタン */
.help-contact{
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-btn{
  max-width: 350px;
  height:120px;
  background-color: #FFFBF4;
  border: 2px solid #FF782A;
  border-radius: 8px;
  padding: 10px;
}

.contact-btn-text{
  display: flex;
  align-items: center;
  gap: 8px;
}

.c-text1{
  color: #E95B10;
  font-size: 23px;
  font-weight: bold;
}

.contact-btn p{
  font-size: 16px;
  font-weight: regular;
  color: #404040;
}




/* ここから下は記事一覧ページ */

.article-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.article-item {
  gap: 12px;
  align-items: flex-start;
  border-bottom: 1px solid #ddd;
  padding-bottom: 12px;
  text-decoration: none;
  color: inherit;
}

.article-item:hover {
  opacity: 0.8; /* ホバー効果 */
}

.article-image {
  max-width: 275px;
  aspect-ratio: 16 / 9;
  background: #ccc;
  flex-shrink: 0;
}

.article-text {
  flex: 1;
}

.article-date {
  font-size: 14px;
  color: #555;
  margin: 0 0 4px 0;
}

.article-title {
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
}

/* スマホ (640px以下) では縦並び */
@media (max-width: 640px) {
  .article-list {
    grid-template-columns: 1fr;
  }

  .article-item {
    display: flex;
    flex-direction: row;
  }

  .article-image {
    max-width: 180px;
    aspect-ratio: 16 / 9;
    flex-shrink: 0;
  }
}





/* ここから下は記事詳細ページ */
.article-detail {
  max-width: 800px;
  margin: 0 auto;
}

.date {
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
}

.title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
}

.eyecatch {
  width: 100%;
  height: 400px;
  background: #ccc;
  margin-bottom: 24px;
}

.content p {
  margin-bottom: 20px;
}

.content h2 {
  font-size: 18px;
  font-weight: bold;
  margin: 32px 0 16px;
}