/*
Theme Name: toyonakarousan
Theme URI: https://rousan.local
Description: toyonakaRousan
Author: ayumi.matsumoto
Author URI: https://rousan.local
Description: 豊中労山オリジナルのテーマです。
Version: 1.0
*/
  body {
    font-family: "Inter", "Noto Sans JP",
             "Hiragino Kaku Gothic ProN", "Hiragino Sans",
             "Yu Gothic", "Meiryo", sans-serif;
    font-style: normal;
    margin: 0;
    overflow-x: hidden;
    background: var(--stone-0);
  }
  html {
    line-height: 1.15;
    scroll-behavior: smooth;
  }
  main {
    display: block
  }
  a {
    text-decoration: none;
    cursor: pointer;
    color: var(--stone-9);
  }
  input:focus {
    border: 2px solid var(--stone-7);
    outline: none;
  }
  input {
    color: var(--stone-9);
  }
  textarea {
    resize:none;
    padding:10px;
    color: var(--stone-9);
  }
  li {
    list-style: none;
  }
  *, *::before, *::after {
    box-sizing: border-box;
  }
  body, h1, h2, h3, h4, p, a, dt, dd {
    font-size: 1rem;    
    color: var(--stone-9);
    letter-spacing: 0.1em;
  }
  .l-body {
    flex: 1 1 auto;
  }
  .l-body-main {
    overflow-x: hidden;
  }
  .l-main-container {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 1200px;
    position: relative;
    z-index: 10;
  }
  .back-btn {
    margin: 20px;
    padding: 15px 25px;
    cursor: pointer;
    border: solid 1px var(--stone-8);
    background: var(--stone-8);
    border-radius: 5px;
    text-align: center;
  }
  .back-btn a {
    color: var(--stone-0);
  }
  @media (min-width: 1024px) {
    .l-main-container {
      max-width: 90%;
      height: 100vh;
    }
  }
  .caution {
    color: var(--red-7);
    font-weight: 600;
  }
  .strong-info {
    color: var(--stone-9);
    font-weight: 600;
    text-decoration: underline;
  }
  @media screen and (max-width: 60em) {
    body, h1, h2, h3, h4, p, a, dt, dd {
      font-size: .9rem;
      letter-spacing: 0;
      transform:none;
    }
  }

  /** パンくず */
  .breadcrumb {
    width: 100%;
  }
  @media screen and (min-width: 975.99px) {
    .breadcrumb {
        margin-bottom: 2rem;
    }
  }
  .breadcrumb_list {
    display: flex;
    flex-wrap: wrap;
    color: var(--stone-9);
    font-family: TsukuGoPr5-R-HelveticaNowTextLight;
    line-height: 140%;
  }
  @media screen and (min-width: 975.99px) {
    .breadcrumb_list {
        max-width: min(1380px, 100vw);
        min-width: 975.99px;
        padding-inline: 32px;
        margin-left: auto;
        margin-right: auto;
    }
  }
  .breadcrumb_list li {
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
    padding-right: 0;
  }
  .breadcrumb_list li:after {
    position: relative;
    top: 1px;
    content: "";
    display: inline-block;
    width: 10px;
    height: 20px;
    margin: 0 8px;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAxMiAyMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEgMUwxMSAxMUwxIDIxIiBzdHJva2U9ImJsYWNrIi8+Cjwvc3ZnPgo=);
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
  }
  /** 投稿一覧 */
  .post-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    list-style: none;
    grid-gap: 24px;
    gap: 24px;
    margin-bottom: 80px;
    padding: 0;
    margin: 0;
  }
  .post-item {
    display: grid;
    grid-template-columns: 90px 1fr;
    grid-gap: 15px;
    gap: 15px;
    border-top: 1px solid var(--stone-6);
    padding-block: 15px;
  }
  .post-item .thumb {
    width: 100%;
    border-radius: 0;
    display: grid;
    place-items: start center;
  }
  .post-item .thumb img {
    width: 90px;
    height: 90px;
    max-width: 100%;
    object-fit: cover;
    display: block;
    border-radius: 5px;
  }
  .post-item .detail {
    display: grid;
    grid-gap: 10px;
    gap: 10px;
    grid-template-columns: 1fr;
  }
  .post-item .post-title {
    font-weight: 700;
  }
  .post-item p {
    padding: 0;
    margin: 0;
    color: var(--stone-9);
  }
  .post-item .post-footer {
    display: flex;
    align-items: center;
    gap: 1em;
  }
  .post-item .post-footer a {
    position: relative;
    display: inline-block;
    padding: 5px;
    text-align: center;
    border-radius: 20px;
    width: 110px;
    font-size: 0.75rem;
    color: var(--stone-0);
    background: var(--stone-9);
    border: solid 1px var(--stone-9);
  }
  @media screen and (max-width: 60em) {
    .post-list {
      grid-template-columns: 1fr;
    }
    .post-item {
      width: 100%;
    }
  }

  /** プライバシーポリシー */
  .l-privacypolicy {
    width: 100%;
    position: relative;
    margin: 0 auto 3rem;
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    justify-content:center;
    align-items: center;
    z-index: 10;
  }
  @media (min-width: 1024px) {
    .l-privacypolicy {
      max-width: 1400px;
    }
  }
  .l-privacypolicy-main {
    width: 90%;
  }
  .l-privacypolicy-main .l-privacypolicy-main h2 {
    margin-bottom: 3vw;
  }
  .l-privacypolicy-main h3, .l-privacypolicy-main h2 {
    font-weight: 600;
    transform: none;
  }
  .l-privacypolicy-main p {
    line-height: 1.5;
    transform: none;
  }
  .l-privacypolicy-main li {
    list-style: disc;
    color: var(--stone-9);
    line-height: 1.5;
  }