@font-face {
  font-family: 'ZenMaruGothic';
  src: url('../../assets/fonts/ZenMaruGothic-Regular.woff2') format('woff2');
  font-weight: 500;
  font-style: regular;
  font-display: block;
}

@font-face {
  font-family: 'ZenMaruGothic';
  src: url('../../assets/fonts/ZenMaruGothic-Medium.woff2') format('woff2');
  font-weight: 600;
  font-style: medium;
  font-display: block;
}

@font-face {
  font-family: 'ZenMaruGothic';
  src: url('../../assets/fonts/ZenMaruGothic-Light.woff2') format('woff2');
  font-weight: 400;
  font-style: light;
  font-display: block;
}

@font-face {
  font-family: 'ZenMaruGothic';
  src: url('../../assets/fonts/ZenMaruGothic-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: bold;
  font-display: block;
}

@font-face {
  font-family: 'ZenMaruGothic';
  src: url('../../assets/fonts/ZenMaruGothic-Black.woff2') format('woff2');
  font-weight: 900;
  font-style: black;
  font-display: block;
}


body {
  font-size: 16px;
  --font-color: #6C3B01;
  --font-color-accent: #B45C4C;
  --bg-base-color: #F5F8FF;
  --bg-yellow: #FFFB8C;
  --bg-lightBlue: #B5E1FF;
  --bg-lightYellow: #FFFED4;
  --bg-green: #A5FF9F;
  --bg-lightGreen: #D1FFCD;
  --bg-lightpink: #FFE6E6;
  --bg-pink: #FFD5D5;
  --accent-orange: #FD5000;
  --accent-red:#FA9B9B;
  --accent-green01: #71936D;
  --accent-green02: #00B900;
  --white-color: #ffffff;
  font-family:'ZenMaruGothic', sans-serif;
  font-weight: 500;
  color: var(--font-color);
  line-height: 1.75;
  overflow-x: hidden;
}

/* 共通スタイル */
.bold {
  font-weight: bold;
}
h1 {
  margin-top: 0;
  padding-top: 30px;
}
.red {
  color: var(--accent-orange);
}
.under_line {
  background: linear-gradient(transparent 70%, var(--bg-pink) 70%);
}
.bg-blue {
  background-color: var(--bg-lightBlue);
}
.bg-green {
  background-color: var(--bg-green);
}
.bg_yellow {
  background-color: var(--bg-yellow);
}
.bg-lightBlue {
  background-color: var(--bg-lightBlue);
}
.bg-lightYellow {
  background-color: var(--bg-lightYellow);
}
.bg-lightGreen {
  background-color: var(--bg-lightGreen);
}
.bg-white {
  background-color: var(--white-color);
}
.underline {
    padding-bottom: 3px;
    border-bottom: 1px solid var(--font-color);
}
.pc_only {
  display: block;
  @media (max-width: 768px) {
    display: none;
  }
}
.sp_only {
  display: none;
  @media (max-width: 768px) {
    display: block;
  }
}

/* 共通ボタン */
.button {
  cursor: pointer;
  display: flex;
  margin: 20px auto 30px;
  align-items: center;
  justify-content: space-between;
  width: 250px;
  border-bottom: var(--accent-green01) 2px dashed;
  transition: opacity 0.3s ease;
  &:hover {
    opacity: 0.6;
  }
  &:hover i {
    transform: translateX(10px);
  }
  span {
    display: block;
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-green01);
  }
  i {
    display: block;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
  }
}

/* 共通ボタン2 */
.section__button {
  transition: transform 0.3s ease;
  margin-bottom: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  min-width: 50px;
  height: 50px;
  border-radius: 50%;
  border: var(--accent-green01) solid 1px;
  background: transparent;
  cursor: pointer;
  transition: opacity 0.3s;
  &:hover {
    opacity: 0.6;
  }
  &:hover svg {
    transform: translateX(7px);
  }

  & svg {
    transition: transform 0.3s ease;
    width: 25px;
    height: 25px;
    stroke: var(--accent-green01);
    fill: none;
    stroke-width: 1;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
}
.resize,
.bottom-yellow {
  width: 100%;
  height: 30px;
}

/* アコーディオンメニュー */
.accordion {
    max-width: 500px;
    width: 90%;
    padding: 0 1em;
    margin: 0 auto 15px;
    border: 2px solid var(--accent-green01);
    border-radius: 20px;
    
    &:last-of-type {
      margin-bottom: 50px;
    }
}

.accordion summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    border: none;
    color: var(--font-color);
    font-weight: 700;
    font-size: 1.175rem;
    cursor: pointer;
    padding: 0.15em 0.25em;
    margin-bottom: 0;
    transition: opacity .3s;
    text-align: left;
    &:hover {
      opacity: 0.6;
    }
}

.accordion summary::-webkit-details-marker {
    display: none;
}

.accordion summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid var(--font-color);
    border-right: 3px solid var(--font-color);
    content: '';
    transition: transform .3s;
}

.accordion[open] summary::after {
    transform: rotate(225deg);
}

.accordion div {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 0 0em 1.5em;
  color: var(--font-color);
  transition: transform .5s, opacity .5s;
  .accordion-subtitle {
    margin-top: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    display: inline-block;
  }
}

.accordion[open] div {
    transform: none;
    opacity: 1;
}
.accordion__menu {
  text-align: left;
}

/* 共通 検索バーとボタン */
.search__wrapper {
  margin-top: 20px;
  margin-bottom: 50px;

  input {
    width: 248px;
    height: 50px;
    border-radius: 20px;
    background-color: var(--white-color);
    border: var(--accent-green02) solid 2px;
    padding-left: 23px;
    color: var(--font-color);
    font-size: 1.25rem;
    margin-right: 8px;
  }
  button {
    background-color: #FFECEC;
    width: 80px;
    height: 50px;
    border: var(--accent-green02) solid 2px;
    border-radius: 20px;
    font-size: 1.375rem;
    text-align: center;
  }
}

/* ローディング */
#loading {
  position: fixed;
  inset: 0;
  background: var(--bg-base-color);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 1.5s ease,
              visibility 1.5s ease;
}
.loading__inner {
  text-align: center;
}
.loading__title {
  font-size: 2rem;
  font-weight: 400;
  color: #666;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 2s ease forwards;
  & img {
    width: 110px;
  }
}
.loading__text {
  margin-top: 10px;
  font-size: 1rem;
  color: var(--font-color);
  opacity: 0;
  animation: fadeIn 2s ease forwards;
  animation-delay: 1s;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
#loading.hidden {
  display: none;
}
/* spヘッダー */
.sp__header {
  display: none;

  @media (max-width: 768px) {
    z-index: 9999;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 10px;
    left: 0;
    right: 0;
    width: 100%;
    padding: 10px 0 10px 15px; 
    height: 60px; 
    .logo__link {
      cursor: pointer;
      .logo {
        width: 85px;
        height: 50px;
      }

    }
    .hambergar__container {
      width: 127px;
      height: 60px;
      background-color: var(--accent-green02);
      border-radius: 27.5px 0 0 27.5px;
      display: flex;
      justify-content: center;
      gap: 30px;
      align-items: center;
      @media (max-width: 768px) {
        top: 10px;
      }
      
      .hambergar_box {
        width: 30px;
        height: 18px;
        position: relative;
        span {
          display: inline-block;
          height: 2px;
          width: 100%;
          background-color: var(--white-color);
          border-radius: 9999px;
          position: absolute;
          &:nth-child(1) {
            top: 0;
          }
          &:nth-child(2) {
            top: 50%;
            transform: translateY(-50%);
          }
          &:nth-child(3) {
            bottom: 0;
          }
        }
      }
      .serch__img {
        width: 30px;
        height: 30px;
      }
    }
  }
}
/* spサイズ パンクズリスト */
.center__column {
  position: relative;
}
.breadcrumb__list {
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  justify-content: start;
  align-items: center;
  padding-top: 20px;
  padding-left: 10px;
  
  .breadcrumb__item {
    margin-left: 5px;
    white-space: nowrap;
    @media (max-width: 768px) {
        font-size: 0.75rem;
        margin-left: 2px;
      }
    &:not(:last-child)::after {
      content: "›";
      margin: 0 3px;
      display: inline-flex;
      align-items: center;
      line-height: 1;
    }
    .breadcrumb__link {
      cursor: pointer;
      font-size: 0.875rem;
      @media (max-width: 768px) {
        font-size: 0.75rem;
      }
    }
  }
}
#toppage .breadcrumb__list {
  display: none;
}


/* ハンバーガーメニュー */
.hambergar__container {
  cursor: pointer;
  position: fixed;
  top: 50px;
  right: 0;
  z-index: 200;
  width: 90px;
  height: 200px;
  border-radius: 10px 0 0 10px;
  padding: 60px auto 30px;
  background-color: var(--accent-green02);
  right: 0;
  transition: right 0.3s ease, height 0.3s ease;
  &.active {
    right: 450px;
    height: 110px;
    .hambergar__box {
      span {
        &:nth-child(1) {
          transform: translate(-50%, 0) rotate(45deg);
          top: 50%;
        }
        &:nth-child(2) {
          opacity: 0;
        }
        &:nth-child(3) {
          transform: translate(-50%, 0) rotate(-45deg);
          bottom: auto;
          top: 50%;
        }
      }
    }
    .serch_img {
      display: none;
    }
  }
  .hambergar__box {
    padding-top: 60px;
    padding-bottom: 50px;
    width: 100%;
    height: 30px;
    position: relative;
    
    & span {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      width: 35px;
      height: 4.5px;
      border-radius: 9999px;
      background-color: var(--white-color);
      transition: transform 0.7s ease;
      &:nth-child(1) {
        top: 40px;
      }
      &:nth-child(2) {
        top: 50%;
        transform: translate(-50%, -50%);
      }
      &:nth-child(3) {
        bottom: 40px;
      }
    }
    
  }
  .serch_img {
    width: 35px;
    height: 35px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

.hambergar__menu {
  position: fixed;  /* スクロール位置に関係なく常に画面に対して固定 */
  right: 0;
  top: 0;
  overflow-y: auto;
  height: 100vh;
  z-index: 99999;
  transform: translateX(100%);
  width: 450px;
  background-color: var(--white-color);
  border-left: var(--accent-green02) solid 20px;
  padding-left: 40px;
  padding-right: 40px;
  transition: transform 0.3s ease;
  .hambergar__top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    .go_to_home_link {
      margin-top: 20px;
      img {
        width: 100px;
      }
    }
    .hambergar__button {
      margin: 50px 40px 35px auto;
      width: 25px;
      height: 25px;
      position: relative;
    
      span {
        position: absolute;
        top: 0;
        left: 0;
        display: inline-block;
        height: 3px;
        width: 100%;
        background-color: var(--accent-green02);
        border-radius: 9999px;
        &:nth-child(1) {
          transform: rotate(45deg);
        }
        &:nth-child(2) {
          transform: rotate(135deg);
        }
      }
    }
  }
  
  nav {
    margin-bottom: 60px;

    .nav__category-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-left: 14px;
      padding-right: 14px;
      padding-bottom: 10px;
      padding-top: 10px;
      border-bottom: dotted var(--font-color) 0.75px;

      &:has(.accordion__button.active) + ul {
        display: block;
      }
      .nav__category-title {
        font-size: 1.25rem;
      }
      
      .accordion__button {
        width: 20px;
        height: 20px;
        position: relative;
        cursor: pointer;
        

        span {
          position: absolute;
          height: 1.5px;
          border-radius: 9999px;
          width: 100%;
          background-color: var(--font-color);
          transition: transform 0.5s ease;

          &:nth-child(1) {
            left: 0;
            top: 50%;
            transform: translateY(-50%) rotate(0deg);
          }
          &:nth-child(2) {
            top: 50%;
            left: 0;
            transform: rotate(90deg) translateY(-50%);
          }
        }
        &.active {          
          span {
            &:nth-child(1) {
              display: none;
            }
            &:nth-child(2) {
              transform: rotate(0deg);
            }
          }
        }
      }
    }
    ul {
      display: none; /*  初期非表示 */
      transition: display 0.5s ease;
      margin-top: 16px;
      margin-bottom: 25px;
      
      li {
        margin-bottom: 16px;
        padding-left: 14px;
        a {
          cursor: pointer;
          span {
            display: inline-block;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            margin-right: 10px;
            background-color: transparent;
            border: 2px solid;
            opacity: 0.4;
          }
          .green {
            border-color: var(--accent-green02);
          }
          .orange {
            border-color: var(--accent-orange);
          }
          .red {
            border-color: var(--accent-red);
          }
        }
      }
    }
  }
  .button_wrapper {
    text-align: center;
  }
  .close-hambergar__container{
    width: 95px;
    margin: 60px auto 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;

    .hambergar__box {
      width: 20px;
      height: 20px;
      position: relative;

      span {
        height: 2px;
        width: 100%;
        background-color: var(--accent-green02);
        position: absolute;
        top: 50%;
        transform: translateY(-50%);

        &:nth-child(1) {
          transform: rotate(45deg);
        }
        &:nth-child(2) {
          transform: rotate(135deg);
        }
      }
    }
    .close-title {
      font-weight: normal;
    }
  }
  @media (max-width: 768px) {
    width: 360px;
    padding-left: 20px;
    padding-right: 20px;
    .hambergar__button {
      margin: 35px 25px 25px auto;
    }
    .search__wrapper {
      margin-bottom: 25px;
      display: flex;
      justify-content: space-between;
      input {
        width: 220px;
        font-size: 1rem;
      }
      button {
        width: 65px;
        font-size: 1rem;
      }
    }
  }
}

/* 水玉 */
.left__column {
  a {
    z-index: 9999;
  }
  .mizutama {
    position: fixed;
    z-index: -10;
    &.mizutama01 {
      left: 0;
      width: 190px;
      animation: mizutama01 10s linear infinite;
    }
    &.mizutama02 {
      left: 120px;
      width: 100px;
      animation: mizutama01 18s linear infinite;
    }
    &.mizutama03 {
      left: 90px;
      width: 200px;
      animation: mizutama01 15s linear infinite;
    }
    &.mizutama04 {
      left: 200px;
      width: 160px;
      animation: mizutama01 20s linear infinite;
    }
    &.mizutama05 {
      left: 160px;
      width: 90px;
      animation: mizutama01 85s linear infinite;
    }
    &.mizutama06 {
      left: 190px;
      width: 80px;
      animation: mizutama01 40s linear infinite;
    }
    &.mizutama07 {
      left: 0px;
      width: 250px;
      animation: mizutama01 35s linear infinite;
    }
    &.mizutama08 {
      left: 120px;
      width: 90px;
      animation: mizutama01 35s linear infinite;
    }
  }
}
/* カテゴリー、タグ */
.bg_white_victor {
  width: 100%;
  transform: translateY(-3px);
  @media (max-width: 768px) {
    transform: translateY(-11px);
  }
}
.container .center__column .category__wrapper {
  background-color: var(--white-color);
  text-align: center;
  padding: 30px;
  position: relative;
  width: 370px;
  margin: 30px auto;
}
.up-dated__text {
  text-align: center;
}
/* タグ一覧（/tags/）の関連ページリスト */
.tag-archive__list {
  width: 90%;
  max-width: 640px;
  margin: 30px auto;
  list-style: none;
  padding: 0;
}
.tag-archive__item {
  margin-bottom: 14px;
}
.tag-archive__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  background-color: var(--white-color);
  border-radius: 12px;
  text-decoration: none;
  color: var(--font-color);
  transition: opacity 0.3s ease;
}
.tag-archive__link:hover {
  opacity: 0.7;
}
.tag-archive__page {
  font-size: 1.05rem;
}
/* おすすめページ */
.pics {
  text-align: center;
  padding-top: 30px;
  padding-bottom: 40px;
  .pics__title {
    display: inline-block;
    font-size: 1.25rem;
    padding-bottom: 5px;
    border-bottom: var(--font-color) solid 0.5px;
    margin-bottom: 35px;
  }
  .pics__links {
    width: 90%;
    margin: 0 auto 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
    @media (max-width: 768px) {
      flex-direction: column;
    }
    a {
      transition: opacity 0.3s ease;
      
      @media (max-width: 768px) {
        width: 70%;
      }
      &:hover {
        opacity: 0.6;
      }
    }
    span {
      font-size: 1rem;
    }
  }
}

/* 気になること */
.concern {
  background-color: var(--bg-green);
  position: relative;
  text-align: center;
  padding-bottom: 80px;
  .concern__top-img {
    position: absolute;
    transform: translateY(-94%);
    left: 0;
    right: 0;
  }
  .concern__title {
    padding-top: 80px;
    display: inline-block;
    font-size: 1.5rem;
    padding-bottom: 10px;
    border-bottom: var(--font-color) solid 0.5px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
  }
  p {
    font-size: 1.125rem;
    @media (max-width: 768px) {
      font-size: 1rem;
    }
  }
  .concern__wrapper {
    width: 80%;
    max-width: 600px;
    margin: 40px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 22px 18px;
    position: relative;
    @media (max-width: 768px) {
      width: 90%;
    }
    .concern__link {
      .darusa {
        width: 125px;
        position: absolute;
        top: 0;
        left: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
        &:hover {
          opacity: 0.7;
          transform: rotate(-8deg);
        }
        @media (max-width: 768px) {
          width: 110px;
        }
      }
      .fuan {
        width: 99px;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%) rotate(-3deg);
        transition: transform 0.3s ease, opacity 0.3s ease;
        &:hover {
          opacity: 0.7;
          transform: translateX(-50%) rotate(-11deg);
        }
        @media (max-width: 768px) {
          width: 95px;
        }
      }
      .school {
        width: 99px;
        position: absolute;
        top: 0;
        right: 10px;
        transition: transform 0.3s ease, opacity 0.3s ease;
        &:hover {
          opacity: 0.7;
          transform: rotate(-8deg);
        }
        @media (max-width: 768px) {
          width: 90px;
        }
      }
      .doctor {
        width: 230px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
        &:hover {
          opacity: 0.7;
          transform: rotate(-3deg) translateY(-50%);
        }
        @media (max-width: 768px) {
          width: 200px;
        }
      }
      .skin {
        width: 97px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
        &:hover {
          opacity: 0.7;
          transform: rotate(-8deg) translateY(-50%);
        }
        @media (max-width: 768px) {
          width: 90px;
        }
      }
      .qol {
        width: 170px;
        position: absolute;
        bottom: 0;
        left: 20px;
        transition: transform 0.3s ease, opacity 0.3s ease;
        &:hover {
          opacity: 0.7;
          transform: rotate(-8deg);
        }
        @media (max-width: 768px) {
          width: 160px;
        }
      }
      .medicine {
        width: 75px;
        position: absolute;
        bottom: 0px;
        right: 40px;
        transition: transform 0.3s ease, opacity 0.3s ease;
        &:hover {
          opacity: 0.7;
          transform: rotate(-8deg);
        }
        @media (max-width: 768px) {
          width: 70px;
        }
      }
    }
  }
}
.center__column {
  z-index: 9998;
}
.right__column {
  position: relative;
  .mizutama {
    position: fixed;
    z-index: -10;
    &.mizutama01 {
      right: 0;
      width: 190px;
      animation: mizutama02 10s linear infinite;
    }
    &.mizutama02 {
      right: 190px;
      width: 90px;
      animation: mizutama02 18s linear infinite;
    }
    &.mizutama03 {
      right: 110px;
      width: 200px;
      animation: mizutama02 15s linear infinite;
    }
    &.mizutama04 {
      right: 70px;
      width: 160px;
      animation: mizutama02 35s linear infinite;
    }
    &.mizutama05 {
      right: 60px;
      width: 90px;
      animation: mizutama02 75s linear infinite;
    }
    &.mizutama06 {
      right: 190px;
      width: 80px;
      animation: mizutama02 30s linear infinite;
    }
    &.mizutama07 {
      right: 240px;
      width: 120px;
      transform: rotate(-180deg);
      animation: mizutama02 25s linear infinite;
    }
    &.mizutama08 {
      right: 210px;
      width: 90px;
      animation: mizutama02 35s linear infinite;
    }
  }
}
@keyframes mizutama01 {
  0% {
    top: calc(100vh + 250px);
    left: 0;
  }
  100% {
    top: -250px;
    left: 2%;
  }
}
@keyframes mizutama02 {
  0% {
    top: calc(100vh + 250px);
    right: 0%;
  }
  100% {
    top: -250px;
    right: 4%;
  }
}
/* もくじ */
.index {
  width: 80%;
  padding: 20px 30px;
  margin: 0 auto 100px;
  border: var(--font-color) solid 1px;
  box-shadow: var(--bg-lightBlue) 8px 8px 0;
  @media (max-width: 768px) {
    width: 90%;
  }
  & > .index__title {
    font-size: 1.25rem;
    @media (max-width: 768px) {
      font-size: 1.1rem;
    }
  }
  .index__item {
    margin-bottom: 10px;
    .index__link {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: var(--font-color) dotted 1px;
      padding: 2px 10px;
      transition: 0.3s opacity;
      &:hover {
        opacity: 0.6;
      }
      &:hover svg {
        stroke: var(--accent-green02);
        transform: translateY(5px);
      }
      .index__title {
        text-align: left;
        font-size: 1rem;
      }
      .section__button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        min-width: 30px;
        height: 30px;
        border-radius: 50%;
        border: var(--accent-green01) solid 1px;
        background: transparent;
        cursor: pointer;
        transition: opacity 0.3s, border-color 0.3s;
        
        &:hover {
          opacity: 0.6;
          border-color: var(--accent-green02);
        }
        
        & svg {
          width: 30px;
          height: 30px;
          stroke: var(--accent-green01);
          fill: none;
          stroke-width: 1;
          stroke-linecap: round;
          stroke-linejoin: round;
          transition: stroke 0.3s ease, transform 0.3s ease;
        }
      }
    }
  }
}
/* ふりがな */
ruby {
  ruby-align: center;
}
rt {
  font-size: 0.6em;
  color: var(--font-color);
}

/* トップページ */
#main.container {
  width: 100%;
  display: flex;
  align-items: start;
  background-color: var(--bg-base-color);
  position: relative;

  .left__column {
    flex: 1;
    position: sticky;
    top: 250px;
    height: 100vh;

    @media (max-width: 768px) {
      display: none;
    }

    .line__container {
      display: block;
      position: sticky;
      top: 50%;
      transform: translateY(-50%);
      width: 80%;
      max-width: 255px;
      margin: 0 auto;
      background-color: white;
      border-radius: 20px;
      padding: 30px 20px;
      text-align: center;
      z-index: 9999;
      transition: opacity 0.3s ease;
      &:hover {
        opacity: 0.7;
      }
      .line__img {
        width: 65px;
        margin-bottom: 20px;
      }

      .qr__img {
        width: 80%;
        margin-bottom: 20px;
      }

      .oc__text_box {
        position: relative;
        display: inline-block;

        &::before {
          position: absolute;
          left: -1em;
          top: 0;
          content: '';
          width: 2px;
          height: 100%;
          background-color: var(--font-color);
          border-radius: 3px;
          transform: rotate(-30deg);
          @media (max-width: 1084px) {
            background-color: transparent;            
          }
        }

        &::after {
          position: absolute;
          right: -1em;
          top: 0;
          content: '';
          width: 2px;
          height: 100%;
          background-color: var(--font-color);
          border-radius: 3px;
          transform: rotate(30deg);
          @media (max-width: 1084px) {
            background-color: transparent;            
          }
        }

        .oc__text {
          font-size: 1rem;
          @media (max-width: 1083px) {
            font-size: 0.85rem;
          }
          @media (max-width: 904px) {
            display: none;
          }
          .column_br {
            display: none;
            @media (max-width: 1025px) {
              display: block;              
            }
          }
        }
      }
    }
  }

  .center__column {
    z-index: 9998;
    width: 100%;
    max-width: 600px;
    flex-shrink: 0;
    background-color: var(--white-color);

    @media (max-width: 768px) {
      width: 100%;
      max-width: 100%;
    }
    
    .center__wrapper {
      height: 350px;
      background: url(../images/background/bg_yellow.webp) no-repeat top center;
      text-align: center;
      position: relative;
      @media (max-width: 768px) {
        background-size: 160% 280px;
        padding-top: 60px;
        height: 310px;
      }
      
      
      .logo__link {
        @media (max-width: 768px) {
          display: none;
        }
        .logo {
          width: 125px;
          display: inline-block;
          margin: 20px auto 14px;
        }
      }

      .title {
        font-size: 1.5rem;
        @media (max-width: 768px) {
          padding-top: 30px;
        }
      }

      .subtitle {
        font-size: 1.25rem;
      }
    }

    .hero {
      position: relative;
      z-index: 0;
      margin: 30px 0 80px;
      display: block;
    }

    .sec01 {
      width: 90%;
      margin: 0 auto;
      text-align: center;

      .about_site_title {
        display: inline-block;
        padding-bottom: 10px;
        margin-bottom: 30px;
        font-size: 1.5rem;
        border-bottom: solid 0.5px var(--font-color);
      }

      .about_site_text {
        font-size: 1.125rem;
        text-align: left;
        margin-bottom: 30px;
        @media (max-width: 768px) {
          font-size: 1rem;
          margin-bottom: 40px;         
        }
      }
    }
    .bg_lightblue {
      position: relative;
      top: 1px;
      width: 100%;
      margin-top: 30px;
      @media (max-width: 768px) {
        margin-top: 40px;        
      }
    }
    
    .sec02 {
      text-align: center;
      
      .sec02__center {
        text-align: center;
        .sec02__title {
          display: inline-block;
          margin: 95px auto 10px;
          font-size: 1.5rem;
          padding-bottom: 10px;
          border-bottom: var(--font-color) dotted 0.5px;
        }
        .sec02__sub-title {
          margin: 10px auto 90px;
          font-size: 1.125rem;
        }
      }
      
      .support {
        position: relative;
        margin: 0 auto 35px;
        width: 157px;
        height: 203px;

        .support__accent {
          position: absolute;
          top: -40px;
          right: -40px;
          width: 65px;
        }
        .support__button {
          cursor: pointer;
          display: block;
          border: var(--white-color) solid 1px;
          border-radius: 30px;
          box-shadow: var(--font-color) 0 5px 0;
          &.lightpink {
            background-color: var(--bg-lightpink);
            transition: opacity 0.3s ease;
            &:hover {
            opacity: 0.7;
            }
          } 
          .support__title {
            display: inline-block;
            margin-top: 15px;
            font-size: 1.5rem;
            padding-bottom: 10px;
            border-bottom: var(--font-color-accent) solid 1px;
            @media (max-width: 768px) {
              font-size: 1.25rem;
            }
          }
          .support__img {
            margin: 15px auto;
            display: block;
            width: 50px;
            height: 50px;
          }
          .support__text {
            font-size: 0.9375rem;
            margin-bottom: 15px;
          }
        } 
      }
      .support-info__button {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 340px;
        margin: 38px auto;
        border: var(--white-color) solid 1px;
        box-shadow: var(--font-color) 0 5px 0;
        border-radius: 30px;
        padding: 15px 15px 15px 25px;
        text-align: left;
        &:last-of-type {
            margin-bottom: 80px;
          }
        &.lightpink {
          background-color: var(--bg-lightpink);
          transition: opacity 0.3s ease;
          &:hover {
            opacity: 0.7;
          }
        }
        &.pink {
          background-color: var(--bg-pink);
          transition: opacity 0.3s ease;
          &:hover {
            opacity: 0.7;
          }
        } 
        .support__botton-left {
          .support__title {
            font-size: 1.375rem;
            padding-bottom: 5px;
            border-bottom: var(--font-color-accent) solid 1px;
            @media (max-width: 768px) {
              font-size: 1.25rem;
            }
          }
          .support__subtitile {
            padding-top: 7px;
            font-size: 0.9375rem;
          }
        }
        .support__img {
          &:first-child {
            width: 50px;
          }
          &:nth-child(2) {
            width: 45px;
          }
          &:nth-child(3) {
            width: 75px;
          }
          &:last-child {
            width: 55px;
          }
        }
      }
    }

    .sec_line {
      .line__container {
        display: block;
        width: 180px;
        margin: 0px auto 40px;
        text-align: center;
        .line__img {
          display: block;
          margin: 0px auto 30px;
        }
        .qr__img {
          display: block;
          margin: 0 auto 30px;
        }
        .qr__img {
          display: block;
          width: 80%;
          margin: 0 auto 25px;
        }
        .oc__text_box {
          position: relative;
          display: inline-block;

          &::before {
            position: absolute;
            left: -1em;
            top: 0;
            content: '';
            width: 2px;
            height: 100%;
            background-color: var(--font-color);
            border-radius: 3px;
            transform: rotate(-30deg);
            @media (max-width: 1084px) {
              background-color: transparent;            
            }
          }

          &::after {
            position: absolute;
            right: -1em;
            top: 0;
            content: '';
            width: 2px;
            height: 100%;
            background-color: var(--font-color);
            border-radius: 3px;
            transform: rotate(30deg);
            @media (max-width: 1084px) {
              background-color: transparent;            
            }
          }
        }
      }
      .button.go_to_line {
        margin-bottom: 60px;
      }
    }
    .sec03 {
      padding-top: 30px;
      padding-bottom: 50px;
      position: relative;
      text-align: center;
      .sec03__top-img {
        position: absolute;
        top: -5px;
        left: 0;
        right: 0;
      }
      .sec03__top-img {
        margin-bottom: 112px;
      }
      .future__img {
        display: block;
        margin: 30px auto 0;
        width: 250px;
        padding-bottom: 18px;
        border-bottom: var(--font-color) solid 0.5px;
      }
      .qol {
        width: 380px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 20px;
        text-align: left;
        font-size: 1.125rem;
        @media (max-width: 769px) {
          font-size: 0.975rem;
          width: 90%;
          max-width: 330px;
        }
      }
      .flower {
        width: 90px;
        display: block;
        margin: 77px auto 140px;
        @media (max-width: 768px) {
          width: 60px;
          margin-bottom: 80px;
        }
      }
      .enquete__link {
        cursor: pointer;
        display: block;
        width: 380px;
        margin: 0 auto 30px;
        transition: opacity 0.3s ease;
        &:hover {
          opacity: 0.7;
        }
        @media (max-width: 768px) {
          width: 340px;
        }
        .enquete_link-img {
          width: 100%;
        }
        .button {
          &:nth-child(1) {
            margin-bottom: 20px;
          }
        }
      }
    }
    
    .sec04 {
      background-color: var(--white-color);
      position: relative;
      text-align: center;
      .sec04__top-img {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
      }
      .about-sle__title {
        display: inline-block;
        margin-bottom: 30px;
        padding-top: 140px;
        font-size: 1.5rem;
        padding-bottom: 5px;
        border-bottom: var(--font-color) solid 0.5px;
      }
      p {
        text-align: left;
        width: 80%;
        max-width: 540px;
        margin: 0 auto 66px;
      }
      .about-sle__enquete {
        margin-bottom: 100px;
      }
    }
    .sec05 {
      background-color: var(--bg-green);
      position: relative;
      text-align: center;
      padding-bottom: 80px;
      .sec05__top-bg {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
      }
      .concern__title {
        padding-top: 120px;
        display: inline-block;
        font-size: 1.5rem;
        padding-bottom: 10px;
        border-bottom: var(--font-color) solid 0.5px;
        margin-bottom: 20px;
        margin-left: auto;
        margin-right: auto;
      }
      p {
        font-size: 1.125rem;
        @media (max-width: 768px) {
          font-size: 1rem;
        }
      }
      .concern__wrapper {
        width: 80%;
        max-width: 600px;
        margin: 40px auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 22px 18px;
        position: relative;
        @media (max-width: 768px) {
          width: 90%;
        }
        .concern__link {
          .darusa {
            width: 125px;
            position: absolute;
            top: 0;
            left: 0;
            transition: transform 0.3s ease, opacity 0.3s ease;
            &:hover {
              opacity: 0.7;
              transform: rotate(-8deg);
            }
            @media (max-width: 768px) {
              width: 110px;
            }
          }
          .fuan {
            width: 99px;
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%) rotate(-3deg);
            transition: transform 0.3s ease, opacity 0.3s ease;
            &:hover {
              opacity: 0.7;
              transform: translateX(-50%) rotate(-11deg);
            }
            @media (max-width: 768px) {
              width: 95px;
            }
          }
          .school {
            width: 99px;
            position: absolute;
            top: 0;
            right: 10px;
            transition: transform 0.3s ease, opacity 0.3s ease;
            &:hover {
              opacity: 0.7;
              transform: rotate(-8deg);
            }
            @media (max-width: 768px) {
              width: 90px;
            }
          }
          .doctor {
            width: 230px;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            left: 0;
            transition: transform 0.3s ease, opacity 0.3s ease;
            &:hover {
              opacity: 0.7;
              transform: rotate(-3deg) translateY(-50%);
            }
            @media (max-width: 768px) {
              width: 200px;
            }
          }
          .skin {
            width: 97px;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            right: 0;
            transition: transform 0.3s ease, opacity 0.3s ease;
            &:hover {
              opacity: 0.7;
              transform: rotate(-8deg) translateY(-50%);
            }
            @media (max-width: 768px) {
              width: 90px;
            }
          }
          .qol {
            width: 170px;
            position: absolute;
            bottom: 0;
            left: 20px;
            transition: transform 0.3s ease, opacity 0.3s ease;
            &:hover {
              opacity: 0.7;
              transform: rotate(-8deg);
            }
            @media (max-width: 768px) {
              width: 160px;
            }
          }
          .medicine {
            width: 75px;
            position: absolute;
            bottom: 0px;
            right: 40px;
            transition: transform 0.3s ease, opacity 0.3s ease;
            &:hover {
              opacity: 0.7;
              transform: rotate(-8deg);
            }
            @media (max-width: 768px) {
              width: 70px;
            }
          }
        }
      }
    }
    .sec06 {
      background-color: var(--white-color);
      text-align: center;
      .sec06__top-bg {
        width: 100%;
      }
      .update__titie {
        margin: 43px auto 23px;
        display: inline-block;
        font-size: 1.5rem;
        padding-bottom: 5px;
        border-bottom: var(--font-color) solid 0.5px;
      }
      .update__list {
        text-align: left;
        &:last-child {
          margin-bottom: 45px;
        }
        
        .update_link {
          width: 340px;
          margin: 0 auto 10px;
          padding: 5px 10px 5px;
          border-bottom: var(--accent-green01) solid 0.5px;
          cursor: pointer;
          display: block;
          transition: opacity 0.3s ease, opacity 0.3s ease;
          &:hover {
            opacity: 0.7;
          }
        
          .update__time {
            font-size: 1rem;
          }
          .update__text {
            font-size: 1.125rem;
          }
        }
      }
    }
    .sec07 {
      background-color: var(--bg-yellow);
      padding-bottom: 70px;

      .sec07__top-img {
        width: 100%;
      }
      .term__title {
        width: 200px;
        margin: 70px auto 23px;
        font-size: 1.5rem;
        padding-bottom: 5px;
        border-bottom: var(--font-color) solid 0.5px;
      }
      .term__text {
        width: 90%;
        max-width: 550px;
        margin: 0 auto;
      }
    }
    
    .footer__top-img {
      height: 30px;
      width: 100%;
      transform: translateY(-30px); 
    }
    .footer {
      background-color: var(--bg-yellow);
      text-align: center;
      margin-top: -30px;
      padding-top: 20px;

      .footer__line-button {
        margin-top: 0;
      }
      .footer__line-sp {
        display: none;
        @media (max-width: 768px) {
          display: block;
        }
      }
      .line__container {
        display: block;
        width: 80%;
        max-width: 255px;
        margin: 30px auto 25px;
        padding: 30px 20px;
        background-color: var(--white-color);
        border-radius: 20px;
        text-align: center;
        transition: opacity 0.3s ease;
        &:hover {
          opacity: 0.7;
        }
        .line__img {
          display: block;
          width: 65px;
          margin: 0 auto 20px;
        }
        .qr__img {
          display: block;
          width: 80%;
          margin: 0 auto 20px;
        }
        .oc__text_box {
          position: relative;
          display: inline-block;

          &::before {
            position: absolute;
            left: -1em;
            top: 0;
            content: '';
            width: 2px;
            height: 100%;
            background-color: var(--font-color);
            border-radius: 3px;
            transform: rotate(-30deg);
          }

          &::after {
            position: absolute;
            right: -1em;
            top: 0;
            content: '';
            width: 2px;
            height: 100%;
            background-color: var(--font-color);
            border-radius: 3px;
            transform: rotate(30deg);
          }

          .oc__text {
            font-size: 1rem;
            line-height: 1.6;
          }
        }
      }
      .button.go_to_line {
        margin: 0 auto 40px;
      }
      .footer__copy {
        display: inline-block;
        margin: 40px auto 70px;
      }
      .footer__flower {
        display: block;
        width: 52px;
        margin: 0 auto;
        padding-bottom: 40px;
        
      }
    }
    .section {
      text-align: left;
    }
  }
  
#about__site.center__column {
  z-index: 9998;
  .center__wrapper {
    .title {
      display: inline-block;
      font-size: 1.75rem;
      padding-bottom: 5px;
      margin-top: 30px;
      margin-bottom: 15px;
      border-bottom: var(--font-color) solid 1px;
      @media (max-width: 768px) {
        padding-top: 0;
      }
    }
  }
  .sec01 {
    .text {
      text-align: left;
      font-size: 1.125rem;
      &:first-child {
        margin-top: 30px;
      }
      &:last-child {
        margin-bottom: 70px;
      }
    }
  }
  .bg__img {
    width: 100%;
  }
  .sec02 {
    background-color: var(--bg-yellow);
    padding-bottom: 30px;
  }
  .section__title {
    display: inline-block;
    font-size: 1.5rem;
    padding-bottom: 7px;
    border-bottom: var(--font-color) solid 0.5px;
    margin-bottom: 30px;
    @media (max-width: 768px) {
      font-size: 1.175rem;
    }
  }
  .section__text {
    text-align: left;
    font-size: 1.125rem;
    width: 90%;
    max-width: 500px;
    margin: 0 auto 37px;
  }
  
  .sec03 {
    background-color: var(--bg-lightBlue);
    padding-bottom: 10px;
    .section__title {
      margin-top: 30px;
    }
  }
  section {
    position: relative;
    .bg__img {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
    }
  }
  .sec04 {
    padding-top: 70px;
    background-color: var(--bg-green);
  }
  .sec05 {
    padding-top: 70px;
    padding-bottom: 10px;
    background-color: var(--bg-yellow);
  }
  .sec06 {
    padding-top: 90px;
    padding-bottom: 50px;
    background-color: var(--bg-lightBlue);
  }
}
#first.center__column {
  z-index: 9998;
  .center__wrapper {
    .logo__link {
      &.pc_only {
        display: block;
        @media (max-width: 768px) {
          display: none;
        }
      }
    }
    .title {
      font-size: 1.5rem;
      margin-bottom: 15px;
      padding-bottom: 5px;
      border-bottom: var(--font-color) solid 1px;
      display: inline-block;
    }
    .sub_title {
      display: block;
      font-size: 1rem;
      font-weight: 600;
      margin-top: 0;
    }
  }
  .sec01 {
    padding-top: 40px;
    .first__text {
      text-align: left;
      margin-bottom: 22px;
    }
  }
  .sec02 {
    padding-top: 30px;
    .sec02__title {
      display: inline-block;
      font-size: 1.25rem;
      padding-bottom: 5px;
      border-bottom: var(--font-color) solid 0.5px;
      margin-bottom: 35px;
    }
    .sec02__links {
      width: 90%;
      margin: 0 auto;
      display: flex;
      justify-content: space-around;
      align-items: center;
      gap: 20px;
      @media (max-width: 768px) {
        flex-direction: column;
      }
      a {
        transition: opacity 0.3s ease;
        
        @media (max-width: 768px) {
          width: 70%;
        }
        &:hover {
          opacity: 0.6;
        }
      }
      span {
        font-size: 1rem;
      }
    }
  }
  .sec03 {
    position: relative;
    padding-bottom: 70px;
    .sec03__top-img {
      position: absolute;
      top: -40px;
      left: 0;
      right: 0;
    }
    .concern__title {
      font-size: 1.25rem;
      padding-bottom: 5px;
      border-bottom: var(--font-color) solid 0.5px;
      margin-bottom: 20px;
      display: inline-block;
    }
    .concern__text {
      font: 1.175rem;
    }
    .concern__wrapper {
      width: 80%;
      max-width: 600px;
      margin: 40px auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 22px 18px;
      position: relative;
      @media (max-width: 768px) {
        width: 90%;
      }
      .concern__link {
        .darusa {
          width: 125px;
          position: absolute;
          top: 0;
          left: 0;
          transition: transform 0.3s ease, opacity 0.3s ease;
          &:hover {
            opacity: 0.7;
            transform: rotate(-8deg);
          }
          @media (max-width: 768px) {
            width: 110px;
          }
        }
        .fuan {
          width: 99px;
          position: absolute;
          top: 0;
          left: 50%;
          transform: translateX(-50%) rotate(-3deg);
          transition: transform 0.3s ease, opacity 0.3s ease;
          &:hover {
            opacity: 0.7;
            transform: translateX(-50%) rotate(-11deg);
          }
          @media (max-width: 768px) {
            width: 95px;
          }
        }
        .school {
          width: 99px;
          position: absolute;
          top: 0;
          right: 10px;
          transition: transform 0.3s ease, opacity 0.3s ease;
          &:hover {
            opacity: 0.7;
            transform: rotate(-8deg);
          }
          @media (max-width: 768px) {
            width: 90px;
          }
        }
        .doctor {
          width: 230px;
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          left: 0;
          transition: transform 0.3s ease, opacity 0.3s ease;
          &:hover {
            opacity: 0.7;
            transform: rotate(-3deg) translateY(-50%);
          }
          @media (max-width: 768px) {
            width: 200px;
          }
        }
        .skin {
          width: 97px;
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          right: 0;
          transition: transform 0.3s ease, opacity 0.3s ease;
          &:hover {
            opacity: 0.7;
            transform: rotate(-8deg) translateY(-50%);
          }
          @media (max-width: 768px) {
            width: 90px;
          }
        }
        .qol {
          width: 170px;
          position: absolute;
          bottom: 0;
          left: 20px;
          transition: transform 0.3s ease, opacity 0.3s ease;
          &:hover {
            opacity: 0.7;
            transform: rotate(-8deg);
          }
          @media (max-width: 768px) {
            width: 160px;
          }
        }
        .medicine {
          width: 75px;
          position: absolute;
          bottom: 0px;
          right: 40px;
          transition: transform 0.3s ease, opacity 0.3s ease;
          &:hover {
            opacity: 0.7;
            transform: rotate(-8deg);
          }
          @media (max-width: 768px) {
            width: 70px;
          }
        }
      }
    }
  }
}
#contact.center__column {
  z-index: 9998;
  .center__wrapper {
    .logo__link {
      display: block;
      cursor: pointer;
      .logo {
        margin-bottom: 20px;
      }
      @media (max-width: 768px) {
        display: none;
      }
    }
    .title {
      font-size: 1.25rem;
      padding-bottom: 5px;
      border-bottom: var(--font-color) solid 1px;
      margin-bottom: 10px;
      display: inline-block;
    }
  }
  .sec01 {
    .title__text {
      font-size: 1rem;
      text-align: left;
    }
    .sec01__flex {
      margin: 20px auto 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      .sec01__flex-item {
        width: 25%;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1rem;
        border-radius: 20px;
        border: var(--bg-green) 3px solid;
        &.active {
          background-color: var(--bg-green);
        }
      }
      /* 親要素にposition: relativeが必要 */
      .triangle-wrapper {
        position: relative;
        display: inline-block;
        width: 0;
        height: 0;
      }
    }
    .thanks__text {
      text-align: left;
      margin-bottom: 70px;
    }
    .button {
      border-left: transparent;
      border-top: transparent;
      border-right: transparent;
    }
    form {
      margin-bottom: 100px;
      input {
        width: 235px;
        height: 42px;
        font-size: 1rem;
        padding-left: 0;
      }
      button {
        height: 42px;
        font-size: 1rem;
      }
    }
  }
  .sec02 {
    .form {
      text-align: left;
      width: 90%;
      margin: 0 auto;
      
      input {
        padding: 4px;
        width: 100%;
        margin-top: 14px;
        margin-bottom: 25px;
        border-radius: 10px;
      }
      textarea {
        padding: 4px;
        width: 100%;
        margin-top: 14px;
        margin-bottom: 65px;
        border-radius: 10px;
      }
      button {
        border-left: transparent;
        border-right: transparent;
        border-top: transparent;
      }
    }
    p {
      width: 90%;
      margin: 0 auto 60px;
      text-align: left;
    }
    &.confirm {
      width: 90%;
      margin: 0 auto 60px;
      table {
        width: 100%;
        text-align: left;
        margin: 0 auto 48px;
        border-collapse: collapse;
        background-color: var(--white-color);
        border: var(--bg-lightGreen) solid 2px;
        border-radius: 14px;
        overflow: hidden;
        tr {
          th,
          td {
            padding: 18px 20px;
            vertical-align: top;
            border-bottom: var(--bg-lightGreen) solid 1px;
          }
          th {
            width: 34%;
            white-space: nowrap;
            font-weight: 600;
            color: var(--accent-green01);
            background-color: var(--bg-lightGreen);
          }
          td {
            line-height: 1.7;
            word-break: break-word;
          }
          &:last-child {
            th,
            td {
              border-bottom: none;
            }
          }
        }
        @media (max-width: 768px) {
          tr {
            display: block;
            border-bottom: var(--bg-lightGreen) solid 1px;
            &:last-child {
              border-bottom: none;
            }
            th,
            td {
              display: block;
              width: auto;
              border-bottom: none;
            }
            th {
              padding: 14px 16px 4px;
              background-color: transparent;
            }
            td {
              padding: 0 16px 14px;
            }
          }
        }
      }
      .form {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 12px 28px;
        width: 100%;
        margin: 0 auto;
        @media (max-width: 768px) {
          flex-direction: column;
        }
      }
      button {
        width: 220px;
        max-width: 100%;
        margin: 0;
        border-left: transparent;
        border-top: transparent;
        border-right: transparent;
      }
    }
  }
}
#page404.center__column {
  z-index: 9998;
  .center__wrapper {
    .title {
      font-size: 1.25rem;
    }
    .page404__text {
      font-size: 1rem;
    }
  }
  .sec01 {
    .sec01__wrapper {
      border-left: var(--accent-green02) solid 12px;
      padding-left: 20px;
      text-align: left;
      width: 80%;
      margin: 55px auto 78px;
      p {
        font-weight: bold;
      }
      ul {
        li {
          list-style: circle;
          margin-left: 1em;
        }
      }
    }
    .button {
      border-left: transparent;
      border-right: transparent;
      border-top: transparent;
      margin-bottom: 40px;
    }
    .search__wrapper {
      margin-bottom: 50px;
    }
  }
  .sec02 {
    background-color: var(--bg-yellow);
    .term__title {
      margin-top: 40px;
    }
    .term__text {
      width: 90%;
      margin: 30px auto ;
      text-align: left;
    }
  }
}
#menu-sle.center__column {
  z-index: 9998;
  .breadcrumb__list {
    padding-top: 0;
  }
  .enquete__link {
    display: block;
    width: 90%;
    margin: 30px auto 40px;
    transition: opacity 0.3s ease;
    &:hover {
      opacity: 0.6;
    }
  }
  .sec01 {
    .title {
      font-size: 1.25rem;
      margin-top: 20px;
      margin-bottom: 25px;
      padding-bottom: 5px;
      border-bottom: var(--font-color) solid 1px;
      display: inline-block;
      @media (max-width: 768px) {
        margin-top: 40px;
        padding-top: 0;
      }
    }
    .title__text {
      font-size: 1rem;
      text-align: left;
      margin-bottom: 30px;
    }
  }
  .sec02 {
    padding: 20px 5%;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: opacity 0.3s;
    .menu-sle {
      text-align: left;
      flex: 1;
      margin-left: 20px;
      @media (max-width: 768px) {
        margin-left: 10px;
      }
      .sub-title {
        font-size: 1.25rem;
        @media (max-width: 768px) {
          font-size: 1.175rem;    
        }
      }
      p {
        @media (max-width: 768px) {
          font-size: 0.785rem;    
        }
      }
    }
    &:hover {
      opacity: 0.6;
    }
    .icon {
      width: 60px;
      height: auto;
      @media (max-width: 768px) {
        width: 40px;     
      }
    }
    .big_icon{
      width: 40px;
      margin-right: 20px;
      @media (max-width: 768px) {
        width: 30px;
        margin-right: 10px;     
      }
    }
    &:hover {
      .section__button {
        transform: translateX(15px);
      }
    }
  }
  .pb50 {
    padding-bottom: 50px;
  }
  .section__button {
    transition: transform 0.3s ease;
    margin-bottom: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    min-width: 30px;
    height: 30px;
    border-radius: 50%;
    border: var(--accent-green01) solid 1px;
    background: transparent;
    cursor: pointer;

    & svg {
      width: 15px;
      height: 15px;
      stroke: var(--accent-green01);
      fill: none;
      stroke-width: 1;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
  }
  .resize,
  .bottom-yellow {
    width: 100%;
    height: 30px;
  }
}
#about__sle.center__wrapper {
    .title {
      padding-bottom: 5px;
      border-bottom: var(--font-color) solid 1px;
      display: inline-block;
      @media (max-width: 768px) {
        font-size: 1.175rem;
      }
    }
  }
  .sec01 {
    .subtitle {
      text-align: left;
      margin: 30px auto 40px;
    }
  }
  .section {
    width: 90%;
    padding-bottom: 0;
    padding-top: 40px;
    margin: 0 auto 40px;
    text-align: left;

    .section__title-box {
      text-align: center;
      margin-bottom: 35px;
      .section__title {
        display: inline-block;
        text-align: left;
        max-width: 100%;
        font-size: 1.5rem;
      }
    }
    .about-sle__title {
      display: block;
      font-size: 1.25rem;
      padding-top: 40px;
      font-weight: bold;
      padding-top: 0;
      padding-bottom: 5px;
      border-bottom: var(--font-color) solid 1px;
      margin-bottom: 20px;
    }
    .about-sle_sub-title {
      font-weight: bold;
      font-size: 1.1rem;
      margin-bottom: 0;
    }
    .about-sle__text {
      width: 100%;
      margin-bottom: 35px;
    }
    &.sec05 {
      background-color: var(--white-color);
      p {
        font-size: 1rem;
      }
    }
    &.summary__wrapper {
      width: 100%;
      padding-top: 0;
      padding-bottom: 20px;
      margin-bottom: 0;
      .summary__header {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 0px 24px;
        
        &::before,
        &::after {
          content: "";
          flex: 1;
          border-top: 0.5px solid var(--font-color); /* 茶色の点線 */
        }
        
        .summary__title {
          font-size: 1.25rem;
          font-weight: bold;
          color: #8B4513; /* 茶色テキスト */
          white-space: nowrap;
        }
      }
      .summary__text {
        width: 90%;
        margin: 15px auto 0;
        padding-bottom: 30px;
      }
    }
    .pregnancy-subtitle {
      display: inline-block;
      text-align: left;
    }
  }
  .syutten_wrapper {
    border-left: var(--accent-green02) solid 4px;
    padding-left: 10px;
  }
  .bg_blue_victor {
    position: relative;
    top: 1px;
  }
  .myPieChart_wrapper {
    width: 250px;
    height: 300px;
    margin: 0 auto;
  }
  .section h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
  }
  .sub_title {
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 20px;
    margin-top: 40px;
  }
}
#about__sle.diagnosis {
  .sec02 {
    .diagnosis__title {
      margin-bottom: 20px;
    }
  }
  .sec04.about-diagnosis {
    p {
      width: 100%;
    }
    .rinsyokensakojinhyou {
      margin-bottom: 30px;
    }

    .bold_impact {
        font-weight: bold;
        padding-left: 1em;
        border-left: solid 10px var(--accent-green02);
    }

    .category_wrapper {
        margin: 0 auto 30px;
        background-color: #FFF8F0;
        border: 1px solid #9E7975;
        padding: 10px 5%;
    }

    @media (width < 768px) {
        .category_wrapper {
            padding: 10px;
        }
    }

    .flex_center {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 25px;
        margin-bottom: 40px;
    }

    @media (width < 768px) {
        .flex_center {
            flex-direction: column;
            gap: 0px;
        }
    }

    .abc {
      font-size: clamp(2.5rem, 1.955rem + 2.73vw, 4rem);
      font-family: montserrat, sans-serif;
      display: inline-block;
      margin: 0;
    }

    .hissu {
      display: inline-block;
      flex-shrink: 0;
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background-color: var(--accent-red);
      text-align: center;
      line-height: 70px;
    }

    .category_title {
        font-weight: bold;
        align-self: center;
    }

    .category_table {
        width: 96%;
        margin: 0 auto 80px;
    }

    @media (width < 794px) {

      .category_table,
      .category_table tr,
      .category_table tr th,
      .category_table tr td {
          display: table;
          text-align: left;
      }

      .category_table tr th {
          margin-left: 0.5em;
          margin-bottom: 0;
      }

      .category_table tr td {
          margin-left: 1em;
      }
    }

    .category_table tr th {
        width: 90px;
        height: 25px;
        line-height: 25px;
    }

    .category_atention {
        background-color: #fff;
        border: 10px solid #9a5952;
        padding: 5%;
        margin-bottom: 70px;
    }

    @media (width < 796px) {
        .category_atention {
            border: none;
            padding: 20px;
        }
    }

    .category_atention_title {
        font-weight: bold;
        text-align: center;
        font-size: clamp(1.156rem, 1.115rem + 0.18vw, 1.25rem);
        margin: 0;
    }

    .category_atention_text {
        line-height: 140%;
    }

    .category_table tr th {
        width: 150px;
    }
  }
  .sec04.sledai {
    .kensa_table {
        font-size: 16px;
    }

    .kensa_table,
    .kensa_table_left,
    .kensa_table_center,
    .kensa_setumei,
    .koumoku {
        border: 1px solid #000;
    }

    .kensa_table_left,
    .koumoku,
    .kensa_table_center,
    .kensa_setumei {
        padding: 2%;
    }

    .koumoku,
    .setumei {
        background-color: #9E7975;
        color: rgb(255, 255, 255);
        font-size: 20px;
        font-weight: normal;
    }

    .kensa_setumei {
        width: 72%;
    }
  }
  .sec04.bg_yellow {
    background-color: var(--bg-yellow);
    padding-bottom: 50px;
    margin: 0 auto;
  }
  .bg-yellow {
    display: block;
  }
  .section__sub-title {
    font-size: 1rem;
    margin-bottom: 20px;
  }
}
#school__job.center__column {
  .wellcome {
    width: 90%;
    margin: 0 auto;
    text-align: center;
    .wellcome__title {
      padding-bottom: 8px;
      border-bottom: var(--font-color) solid 1px;
      display: inline-block;
      margin: 0 auto 20px;
      font-size: 1.25rem;
    }
    .wellcome__section-title {
      text-align: left;
      font-size: 1.1rem;
      padding-bottom: 8px;
      border-bottom: var(--font-color) solid 0.5px;
    }
    .wellcome__text {
      text-align: left;
      font-size: 1rem;
      margin: 10px auto 25px;
      &:last-child {
        margin-bottom: 30px;
      }
    }
  }
}
#system.center__column {
  .section {
    .about-sle__title {
      text-align: left;
    }
    .about-sle__text {
      text-align: left;
    }
  }
}
#results.center__column {
  .section {
    .about-sle__title {
      text-align: left;
    }
    .about-sle__text {
      text-align: left;
    }
  }
  table {
    width: 90%;
    margin: 0 auto 50px;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid var(--accent-green01);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 5px 5px 0 var(--bg-lightBlue);
    text-align: left;
    font-size: 0.9rem;
    line-height: 1.7;
    @media (max-width: 768px) {
      width: 92%;
      font-size: 0.82rem;
      line-height: 1.6;
    }
  }
  table td {
    padding: 14px 16px;
    vertical-align: top;
    border-bottom: 1px solid var(--bg-lightGreen);
    @media (max-width: 768px) {
      padding: 11px 10px;
    }
  }
  /* 見出し行 */
  table tr:first-child td {
    background-color: var(--accent-green01);
    color: var(--white-color);
    font-weight: 700;
    text-align: center;
    padding: 11px 14px;
    border-bottom: none;
  }
  table tr:first-child td:first-child {
    width: 40%;
  }
  /* 左列（検査項目・基準） */
  table tr:not(:first-child) td:first-child {
    background-color: var(--bg-lightGreen);
    border-right: 1px solid #fff;
    font-size: 0.85rem;
  }
  /* 最終行の下線を消す */
  table tr:last-child td {
    border-bottom: none;
  }
  table .bold {
    display: inline-block;
    margin-bottom: 4px;
    color: var(--accent-green01);
    font-size: 0.95rem;
    @media (max-width: 768px) {
      font-size: 0.9rem;
    }
  }
}
#jukyuusya.center__column {
  .sec02 {
    .accordion__answer_title {
      margin: 20px 0 15px ;
      font-size: 1rem;
      font-weight: 600;
    }
    .accordion_answer_subtitle {
      margin-bottom: 10px;
      font-weight: 500;
    }
  }
}
#about__sle_.center__column {
  .sec02.section {
    text-align: left;
  }
}

.right__column {
  flex: 1;
  top: 40px;
  position: sticky;
  height: 100vh;
  @media (max-width: 768px) {
      display: none;
  }
}

/* =============================================
   アンケート結果ページ共通スタイル
   ============================================= */

/* アンケート概要カード */
.enquete-summary {
  background: var(--bg-lightYellow);
  border: 1px solid var(--font-color);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 0 auto 30px;
  width: 85%;
  max-width: 460px;
  box-shadow: 5px 5px 0 var(--bg-lightBlue);
  text-align: center;
}
.enquete-summary__period {
  font-size: 0.875rem;
  margin-bottom: 16px;
  color: var(--font-color);
}
.enquete-summary__stats {
  display: flex;
  justify-content: center;
  gap: 36px;
}
.enquete-summary__stat-num {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--accent-green01);
  line-height: 1;
  margin-bottom: 4px;
}
.enquete-summary__stat-label {
  font-size: 0.8rem;
}

/* 質問バッジ */
.q-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.q-badge__num {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  background-color: var(--accent-green01);
  color: var(--white-color);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
}
.q-badge__text {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
}

/* 棒グラフ */
.chart {
  margin: 16px 0 20px;
}
.chart__item {
  margin-bottom: 14px;
}
.chart__meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  margin-bottom: 6px;
}
.chart__meta-label {
  flex: 1;
}
.chart__meta-count {
  flex-shrink: 0;
  color: var(--accent-green01);
  font-weight: 600;
}
.chart__track {
  background-color: #e8ede8;
  border-radius: 6px;
  height: 26px;
  overflow: hidden;
}
.chart__fill {
  height: 100%;
  border-radius: 6px;
  background-color: var(--accent-green01);
  opacity: 0.75;
}
.chart__fill--blue {
  background-color: #74b9d8;
  opacity: 0.8;
}
.chart__fill--yellow {
  background-color: #d4b800;
  opacity: 0.7;
}
.chart__fill--pink {
  background-color: var(--accent-red);
  opacity: 0.7;
}
.chart__fill--light {
  background-color: #a8c8a0;
  opacity: 0.75;
}
.chart__note {
  font-size: 0.8rem;
  color: #888;
  margin-top: -10px;
  margin-bottom: 16px;
}

/* 参加者の声 */
.voice-section {
  background-color: var(--bg-lightYellow);
  padding: 30px 24px;
  margin: 0 auto 30px;
  width: 90%;
  max-width: 500px;
  border-radius: 12px;
}
.voice-section__title {
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: var(--font-color) solid 0.5px;
}
.voice-card {
  background: var(--white-color);
  border-left: 4px solid var(--accent-green01);
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
  margin-bottom: 14px;
  font-size: 0.9375rem;
  line-height: 1.75;
  &:last-child {
    margin-bottom: 0;
  }
}
.voice-card__tag {
  font-size: 0.75rem;
  color: var(--accent-green01);
  font-weight: 600;
  margin-bottom: 6px;
}
.symptom-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.symptom-list li {
  background: var(--white-color);
  border-left: 4px solid var(--accent-green01);
  border-radius: 0 8px 8px 0;
  padding: 10px 16px;
  margin-bottom: 8px;
  font-size: 0.9375rem;
  line-height: 1.6;
}
.symptom-list__note {
  margin-top: 14px;
  font-size: 0.8125rem;
  line-height: 1.7;
  color: #888;
}

/* 次回リンク */
.enquete-nav {
  width: 90%;
  margin: 0 auto 20px;
}
.enquete-nav__title {
  font-size: 0.875rem;
  text-align: center;
  margin-bottom: 12px;
  color: #888;
}

/* メニュー enquete カード（menu-enquete.html 用） */
.enquete__link {
  display: block;
  width: 90%;
  max-width: 500px;
  margin: 0 auto 20px;
  transition: opacity 0.3s ease;
  &:hover {
    opacity: 0.7;
  }
  img {
    width: 100%;
  }
}
#menu-enquete.center__column {
  .sec02 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    margin: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    &:hover {
      opacity: 0.7;
    }
    .menu-sle {
      .sub-title {
        font-size: 0.8rem;
        font-weight: 600;
        color: var(--accent-green01);
        margin-bottom: 4px;
      }
      p {
        font-size: 1rem;
        font-weight: 600;
      }
    }
  }
}
#enquete01.center__column,
#enquete02.center__column,
#enquete03.center__column {
  .sec01 {
    width: 90%;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    .subtitle {
      text-align: left;
      font-size: 1rem;
      line-height: 1.8;
      margin: 0 auto 30px;
    }
  }
  .section {
    width: 90%;
    padding-top: 30px;
    padding-bottom: 10px;
    margin: 0 auto 10px;
    text-align: left;
    .about-sle__title {
      font-size: 1.1rem;
      font-weight: 700;
      padding-bottom: 5px;
      border-bottom: var(--font-color) solid 1px;
      margin-bottom: 18px;
    }
    .about-sle__text {
      font-size: 0.9375rem;
      line-height: 1.75;
      margin-bottom: 0;
      color: #555;
      background: var(--bg-base-color);
      padding: 12px 16px;
      border-radius: 8px;
    }
  }
  .section + .section {
    border-top: 1px dashed #ddd;
  }
}

/* =========================================================
   ブログ（更新情報一覧・ブログ記事）
   ========================================================= */
#blog .center__wrapper .title,
#blog-article .center__wrapper .title {
  display: inline-block;
  font-size: 1.75rem;
  margin-top: 30px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--font-color);
  @media (max-width: 768px) {
    padding-top: 0;
  }
}

/* ---- 更新情報一覧 ---- */
.news__section {
  width: 90%;
  max-width: 520px;
  margin: 0 auto 60px;
  padding: 30px 0 50px;
}
.news__list {
  list-style: none;
  display: grid;
  gap: 14px;
}
.news__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px 14px;
  padding: 16px 18px;
  background-color: var(--white-color);
  border: 1px solid #e7eee4;
  border-radius: 8px;
  box-shadow: 4px 4px 0 var(--bg-lightGreen);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.news__item:hover {
  opacity: 0.78;
  transform: translateY(-2px);
}
.news__icon {
  flex-shrink: 0;
  color: var(--accent-orange);
  font-size: 1.3rem;
}
.news__date {
  flex-shrink: 0;
  font-size: 0.78rem;
  line-height: 1;
  white-space: nowrap;
  color: #777;
}
.news__text {
  flex: 1;
  min-width: 0;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--font-color);
  @media (max-width: 768px) {
    font-size: 0.875rem;
  }
}
.news__cat {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 4px 10px;
  border-radius: 999px;
  background-color: var(--accent-green01);
  color: var(--white-color);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
}
/* カテゴリー別の文字色 */
.news__cat.is-update {
  background-color: var(--accent-green01);
  color: var(--white-color);
}
.news__cat.is-aboutme {
  background-color: var(--bg-yellow);
  color: var(--font-color);
}
.news__cat.is-sleinfo {
  background-color: var(--bg-lightpink);
  color: var(--font-color);
}
.news__cat.is-news {
  background-color: var(--accent-red);
  color: var(--font-color);
}
.news__cat.is-blog {
  background-color: var(--accent-green02);
  color: var(--white-color);
}
.news__empty {
  padding: 26px 20px;
  background-color: var(--bg-base-color);
  border-radius: 8px;
  text-align: center;
  line-height: 1.8;
}
.pager {
  margin-top: 32px;
}
.pager .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.pager .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  border: 1px solid var(--accent-green01);
  border-radius: 999px;
  background-color: var(--white-color);
  color: var(--accent-green01);
  font-size: 0.9rem;
  font-weight: 700;
  transition: opacity 0.3s ease, background-color 0.3s ease;
}
.pager .page-numbers.current {
  background-color: var(--accent-green01);
  color: var(--white-color);
}
.pager a.page-numbers:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .news__section {
    width: 88%;
    padding-top: 20px;
  }
  .news__item {
    grid-template-columns: 1fr auto;
    padding: 15px 14px;
  }
  .news__date {
    grid-column: 1 / 2;
  }
  .news__cat {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }
  .news__text {
    grid-column: 1 / -1;
  }
}

/* ---- おすすめのページ ---- */
.recommend {
  position: relative;
  background-color: var(--bg-lightBlue);
  padding: 10px 20px 50px;
  text-align: center;
}
.recommend .bg_lightblue {
  width: 100%;
  display: block;
}
.recommend__title {
  font-size: 1.5rem;
  margin: 20px auto 35px;
}
.recommend__wrapper {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.recommend__card {
  flex: 1;
  max-width: 230px;
  text-align: left;
  transition: opacity 0.3s ease;
}
.recommend__card:hover {
  opacity: 0.75;
}
.recommend__img {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  background-color: #d9d9d9;
}
.recommend__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 14px;
}
.recommend__label {
  flex: 1;
  font-size: 0.95rem;
  font-weight: 700;
  border-bottom: 1px dotted var(--font-color);
  padding-bottom: 4px;
  @media (max-width: 768px) {
    font-size: 0.85rem;
  }
}
.recommend__foot .section__button {
  width: 40px;
  min-width: 40px;
  height: 40px;
}
.recommend__foot .section__button svg {
  width: 20px;
  height: 20px;
}

/* ---- よく読まれているページ ---- */
.popular {
  position: relative;
  background-color: var(--bg-lightGreen);
  padding: 0 20px 70px;
  text-align: center;
}
.popular__top-bg {
  width: 100%;
  display: block;
  margin-bottom: 10px;
}
.popular__title {
  display: inline-block;
  font-size: 1.5rem;
  padding-bottom: 8px;
  margin: 30px auto 12px;
  border-bottom: var(--font-color) dotted 1px;
}
.popular__lead {
  font-size: 0.95rem;
  margin-bottom: 35px;
}
.popular__wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 14px;
  max-width: 460px;
  margin: 0 auto;
}
.popular__link {
  display: inline-block;
  transition: transform 0.3s ease;
}
.popular__link:hover {
  transform: translateY(-4px) rotate(-1deg);
}
.popular__link img {
  height: 56px;
  width: auto;
}

/* ---- ブログ記事（本文＋サイドバー） ---- */
.article__layout {
  display: flex;
  gap: 22px;
  padding: 35px 20px 0;
  @media (max-width: 480px) {
    gap: 14px;
  }
}
.article__main {
  flex: 1;
  min-width: 0;
}
.article__side {
  width: 150px;
  flex-shrink: 0;
  @media (max-width: 480px) {
    width: 120px;
  }
}
.article__img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  background-color: #d9d9d9;
}
.article__date {
  font-size: 0.8rem;
  margin-top: 12px;
}
.article__date + .article__date {
  margin-top: 4px;
}
.article__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 10px 0 14px;
}
.article__tag {
  display: inline-block;
  background-color: var(--accent-green02);
  color: var(--white-color);
  font-size: 0.75rem;
  line-height: 1.6;
  padding: 2px 18px;
  border-radius: 9999px;
}
.article__tag.is-update {
  background-color: var(--accent-green01);
  color: var(--white-color);
}
.article__tag.is-aboutme {
  background-color: var(--bg-yellow);
  color: var(--font-color);
}
.article__tag.is-sleinfo {
  background-color: var(--bg-lightpink);
  color: var(--font-color);
}
.article__tag.is-news {
  background-color: var(--accent-red);
  color: var(--font-color);
}
.article__tag.is-blog {
  background-color: var(--accent-green02);
  color: var(--white-color);
}
.article__title {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.5;
  border-bottom: 1px solid var(--font-color);
  padding-bottom: 12px;
  margin-bottom: 26px;
  @media (max-width: 480px) {
    font-size: 1.1rem;
  }
}
.article__lead {
  font-size: 0.95rem;
  margin-bottom: 45px;
}
.article__h2 {
  font-size: 1.1rem;
  font-weight: 700;
  border-left: 5px solid var(--bg-green);
  padding-left: 12px;
  margin-bottom: 18px;
}
.article__body {
  font-size: 0.9rem;
  line-height: 1.9;
  margin-bottom: 55px;
}
.article__h2 + .article__body {
  margin-top: 0;
}

/* サイドバー */
.side__heading {
  font-size: 1.05rem;
  font-weight: 700;
  border-left: 5px solid var(--bg-green);
  padding-left: 10px;
  margin-bottom: 6px;
}
.side__heading + .side__list {
  margin-bottom: 30px;
}
.side__list {
  list-style: none;
}
.side__list a {
  display: block;
  font-size: 0.85rem;
  padding: 9px 4px;
  border-bottom: 1px solid #e0e0e0;
  transition: opacity 0.3s ease;
  @media (max-width: 480px) {
    font-size: 0.8rem;
  }
}
.side__list a:hover {
  opacity: 0.6;
}
.article__side--bottom {
  width: 90%;
  max-width: 520px;
  margin: 28px auto 0;
  padding: 22px 20px;
  background-color: var(--bg-base-color);
  border: 1px solid #e7eee4;
  border-radius: 8px;
  box-shadow: 4px 4px 0 var(--bg-lightGreen);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.article__side--bottom .side__heading {
  display: inline-block;
  border-left: none;
  border-bottom: 1px solid var(--font-color);
  padding-left: 0;
  padding-bottom: 5px;
  margin-bottom: 14px;
}
.article__side--bottom .side__heading + .side__list {
  margin-bottom: 0;
}
.article__side--bottom .side__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.article__side--bottom .side__list li {
  list-style: none;
}
.article__side--bottom .side__list a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 14px;
  background-color: var(--white-color);
  border: 1px solid #dfe8dc;
  border-radius: 999px;
  font-size: 0.82rem;
}
@media (max-width: 600px) {
  .article__side--bottom {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* 前へ・次へ・一覧に戻る */
.article__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 45px 20px 60px;
}
.article__nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  white-space: nowrap;
}
.article__nav-back {
  border: 1px solid var(--font-color);
  border-radius: 9999px;
  padding: 12px 28px;
  font-size: 0.95rem;
  transition: opacity 0.3s ease;
  @media (max-width: 480px) {
    padding: 12px 18px;
    font-size: 0.85rem;
  }
}
.article__nav-back:hover {
  opacity: 0.6;
}

/* ===== お薬についてページ（aboutmedicine） ===== */
#aboutmedicine.center__column {
  /* 薬カードのグリッド */
  .med-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 24px 16px;
    width: 92%;
    margin: 0 auto 50px;
  }
  /* 薬カード（1つの薬を枠線で囲う） */
  .med-card {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    background-color: var(--white-color);
    box-shadow: 4px 4px 0 var(--bg-lightBlue);
    transition: opacity 0.3s ease;
  }
  .med-card:hover {
    opacity: 0.75;
  }
  .med-card__img {
    display: block;
    width: 100%;
    height: 160px;
    object-fit: cover;
    border: 2px solid var(--accent-green01);
    border-bottom: none;
    border-radius: 14px 14px 0 0;
  }
  .med-card__head {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 84px;
    border-left: 2px solid var(--accent-green01);
    border-right: 2px solid var(--accent-green01);
    background-color: var(--bg-lightGreen);
    padding: 8px 12px;
    text-align: center;
  }
  .med-card__kind {
    margin: 0 0 3px;
    font-size: 0.72rem;
    color: var(--font-color);
  }
  .med-card__name {
    margin: 0;
    color: var(--accent-green01);
    font-weight: 700;
    font-size: 1rem;
  }
  .med-card__generic {
    margin: 2px 0 0;
    font-size: 0.78rem;
    color: var(--font-color);
  }
  .med-card__body {
    flex: 1;
    border: 2px solid var(--accent-green01);
    border-top: none;
    border-radius: 0 0 14px 14px;
    padding: 12px 14px;
  }
  .med-card__text {
    margin: 0;
    text-align: left;
    font-size: 0.85rem;
    line-height: 1.7;
  }
  @media (max-width: 768px) {
    .med-grid {
      grid-template-columns: 1fr 1fr;
      gap: 16px 10px;
    }
    .med-card__img {
      height: 120px;
    }
    .med-card__name {
      font-size: 0.92rem;
    }
    .med-card__text {
      font-size: 0.8rem;
    }
  }
  @media (max-width: 480px) {
    .med-grid {
      grid-template-columns: 1fr 1fr;
    }
    .med-card__img {
      height: 110px;
    }
  }
}

/* ===== 更新情報：日付の横のカテゴリーバッジ ===== */
.update__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2px;
}
.update__meta .update__time {
  color: var(--font-color);
  letter-spacing: 0.02em;
  line-height: 1;
}
.update__category {
  display: inline-flex;
  align-items: center;
  padding: 2px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: var(--white-color);
  background-color: var(--accent-green01);
  border-radius: 999px;
  white-space: nowrap;
}
/* カテゴリー別の色分け */
.update__category.is-update {
  background-color: var(--accent-green01);
}
.update__category.is-aboutme {
  background-color: var(--bg-yellow);
  color: var(--font-color);
}
.update__category.is-sleinfo {
  background-color: var(--bg-lightpink);
  color: var(--font-color);
}
.update__category.is-news {
  background-color: var(--accent-red);
  color: var(--font-color);
}
.update__category.is-blog {
  background-color: var(--accent-green02);
}

/* =========================================
   コメント（single.php / comments.php）
   ========================================= */
.comments {
  width: 90%;
  max-width: 720px;
  margin: 40px auto;
  color: var(--font-color);
}
.comments__title {
  font-size: 1.1rem;
  font-weight: bold;
  padding-bottom: 8px;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--bg-green);
}
.comments__list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}
.comments__list .children {
  list-style: none;
  margin: 0;
  padding-left: 24px;
}
.comments__list .comment-body {
  background: var(--white-color);
  border: 1px solid #e8ede8;
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 14px;
}
.comments__list .comment-author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
}
.comments__list .comment-author .avatar {
  border-radius: 50%;
}
.comments__list .comment-meta {
  font-size: 0.78rem;
  color: #9b9b9b;
  margin: 4px 0 8px;
}
.comments__list .comment-meta a { color: #9b9b9b; }
.comments__list .comment-content {
  font-size: 0.95rem;
  line-height: 1.8;
}
.comments__list .reply {
  margin-top: 8px;
  font-size: 0.85rem;
}
.comments__list .reply a {
  color: var(--accent-green01);
  font-weight: bold;
}
.comments__closed {
  color: #9b9b9b;
  font-size: 0.9rem;
}

/* コメント投稿フォーム */
.comment-respond {
  background: var(--bg-base-color);
  border-radius: 16px;
  padding: 22px 20px;
  margin-top: 24px;
}
.comment-reply-title {
  font-size: 1.05rem;
  font-weight: bold;
  margin-bottom: 14px;
}
.comment-form label {
  display: block;
  font-weight: bold;
  font-size: 0.9rem;
  margin: 12px 0 6px;
}
.comment-form .required { color: var(--accent-orange); }
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--white-color);
}
.comment-form textarea { resize: vertical; }
.comment-notes,
.comment-form .logged-in-as {
  font-size: 0.8rem;
  color: #9b9b9b;
}
.comment-form .form-submit { margin-top: 16px; }
.comment-form .submit {
  cursor: pointer;
  border: none;
}

/* ===============================================
   いま、気になること：タグをCSSで描画（手描き風の枠＋画鋲）
   従来は画像（kininaru-*.webp）だったタグを文字＋枠で表現する。
   位置・回転・ホバー・モバイル幅は既存の .darusa 等の指定を流用し、
   ここでは「枠（手描き風）・画鋲・文字」の見た目だけを足す。
   =============================================== */
.concern__tag {
  /* 枠（::after）と画鋲（::before）の位置基準。散らばし配置では
     .darusa 等の position:absolute が優先され、こちらは popular の
     flex 配置（home.php）で枠・画鋲を正しく重ねるために効く。 */
  position: relative;
  display: inline-block;
  padding: 14px 22px;
  background: #fff;
  color: var(--font-color);
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.12em;
  white-space: nowrap;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* タグのホバー（旧 .darusa 等の個別ホバーの代わり。flex配置で全タグ共通） */
.concern__link:hover .concern__tag {
  transform: translateY(-3px) rotate(-1deg);
  opacity: 0.85;
}

/* 画像時代の固定幅（width:Npx）を打ち消し、文字量に合わせて枠を伸縮させる。
   既存指定（.sec05/.concern 配下）と同じ詳細度にし、後勝ちで上書きする。 */
.concern__wrapper .concern__link .concern__tag.darusa,
.concern__wrapper .concern__link .concern__tag.fuan,
.concern__wrapper .concern__link .concern__tag.school,
.concern__wrapper .concern__link .concern__tag.doctor,
.concern__wrapper .concern__link .concern__tag.skin,
.concern__wrapper .concern__link .concern__tag.qol,
.concern__wrapper .concern__link .concern__tag.medicine {
  width: auto;
}

/* 手描き風の枠線：枠だけを SVG フィルターで揺らす（文字はくっきり保つ） */
.concern__tag::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1.6px solid var(--font-color);
  border-radius: 2px;
  filter: url(#oursle-rough);
  pointer-events: none;
}

/* 画鋲（ピン）：頭の丸＋細い針を1つの擬似要素で描く */
.concern__tag::before {
  content: "";
  position: absolute;
  top: -13px;
  left: 50%;
  width: 9px;
  height: 15px;
  transform: translateX(-50%) rotate(7deg);
  background:
    radial-gradient(circle at 50% 30%, #5b4a3a 0 4px, transparent 4.4px),
    linear-gradient(#9c8c76, #9c8c76);
  background-size: 9px 8px, 2px 15px;
  background-position: top center, bottom center;
  background-repeat: no-repeat;
  pointer-events: none;
}

@media (max-width: 768px) {
  .concern__tag {
    font-size: 0.9rem;
    padding: 12px 18px;
    letter-spacing: 0.08em;
  }
}

/* ===============================================
   Cookie利用の同意バナー（トップページ）
   未選択のときだけ cookie-consent.js が hidden を外して表示する。
   =============================================== */
.cookie-consent {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 640px;
  z-index: 10000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 16px;
  padding: 16px 18px;
  background: #fffdf8;
  color: var(--font-color);
  border: 1.5px solid var(--font-color);
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}
/* hidden 属性を尊重（display:flex に負けないように明示） */
.cookie-consent[hidden] {
  display: none;
}
.cookie-consent__text {
  flex: 1 1 280px;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}
.cookie-consent__buttons {
  flex: 0 0 auto;
  display: flex;
  gap: 10px;
}
.cookie-consent__agree,
.cookie-consent__reject {
  font-family: inherit;
  font-size: 0.9rem;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--font-color);
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.cookie-consent__agree {
  background: var(--font-color);
  color: #fff;
}
.cookie-consent__reject {
  background: transparent;
  color: var(--font-color);
}
.cookie-consent__agree:hover,
.cookie-consent__reject:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .cookie-consent {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .cookie-consent__buttons {
    justify-content: center;
  }
}

/* ===============================================
   アンケート募集カード（menu-enquete）。旧 enquete.webp の置き換え。
   =============================================== */
.enquete-card {
  width: 80%;
  max-width: 720px;
  margin: 30px auto;
  padding: 26px 28px;
  color: var(--font-color);
  background: var(--bg-lightYellow);
  border: 2px solid #ecdf93;
  border-radius: 20px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}
.enquete-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.enquete-card__title {
  margin: 0;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.enquete-card__badge {
  flex: 0 0 auto;
  padding: 6px 18px;
  font-size: 0.95rem;
  color: #fff;
  background: var(--font-color);
  border-radius: 999px;
  white-space: nowrap;
}
.enquete-card__subtitle {
  margin: 12px 0 0;
  font-size: 1.2rem;
  font-weight: 700;
}
.enquete-card__lead {
  margin: 14px 0 0;
  font-size: 1rem;
  line-height: 1.8;
}
.enquete-card__bottom {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 20px;
}
.enquete-card__example {
  flex: 1 1 auto;
  margin: 0;
  padding: 14px 18px;
  font-size: 0.9rem;
  line-height: 1.7;
  background: #fffafa;
  border: 1.5px solid #f3b6b6;
  border-radius: 14px;
}
.enquete-card__cta {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.enquete-card__button {
  display: inline-block;
  padding: 14px 30px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  background: #e693b5;
  border-radius: 14px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.enquete-card__button:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}
.enquete-card__note {
  font-size: 0.8rem;
}
@media (max-width: 600px) {
  .enquete-card {
    padding: 22px 18px;
  }
  .enquete-card__title {
    font-size: 1.4rem;
  }
  .enquete-card__bottom {
    flex-direction: column;
    align-items: stretch;
  }
}

/* お問い合わせフォームの reCAPTCHA */
.sec02 .form .g-recaptcha {
  margin: 14px 0 25px;
}
