/* セクション全体の設定 */
.reserve_btn_01{
  height: 80px !important;
}

.reserve_btn_02{
  height: 80px !important;
}

#section3 .inner {
  max-width: 1000px;
  /* margin: 0 auto; */
  padding: 20px;
  margin-bottom: 60px;
}

#section3 .tokutyou {
  max-width: 1000px;
  /* margin: 0 auto; */
  padding: 20px;
}

/* セクションタイトルの設定 */
#section3 .section-title {
  text-align: center;
  margin-bottom: 20px;
}

/* グリッドレイアウト設定 */
#section3 .feature-grid {
  display: grid; /* グリッドレイアウトを適用 */
  grid-template-columns: repeat(2, 1fr); /* 2列表示 */
  gap: 16px; /* アイテム間のスペース */
}

/* 各アイテムのスタイル */
#section3 .feature-item {
  text-align: center; /* 中央揃え */
}

/* 画像のスタイル */
#section3 .feature-item img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 10px;
}

/* 親要素 */
.title-container {
  display: flex;
  justify-content: center; /* 中央寄せ */
  align-items: center; /* 縦位置も中央 */
  margin: 20px 0; /* 上下の余白 */
}

/* 楕円で囲まれたタイトル */
.notice-title {
  display: inline-block;
  padding: 10px 30px; /* 内側余白で楕円の形状を調整 */
  font-size: 24px; /* フォントサイズ */
  font-weight: bold; /* 太字 */
  color: #ffffff; /* 文字色を白に設定 */
  background-color: #EB6270; /* 楕円の背景色 */
  border-radius: 50px; /* 楕円形を作成 */
  text-align: center; /* 文字を中央に配置 */
}

.balloon_kirari{
  /* height: 127px; */
  height: 60px;
  text-align: center;
}

.balloon_kirari p {
  margin: 0;
  padding: 0;
  line-height: 55px;
  font-weight: 600;
  font-size: 40px;
  color: #EB6270;
}

.under {
  /* border-bottom: solid 3px #EB6270; */
  color: #737373;
}


/* 親要素の設定 */
.image-container {
  position: relative;
  width: 525px; /* 必要に応じて画像の幅を設定 */
  height: auto; /* 高さを画像比率に従う */
  overflow: hidden; /* 必要に応じて画像が範囲外に出ないように */
  display: inline-block; /* インライン要素のように動作 */
  margin-top: 1rem;
  cursor: pointer;
}

/* ボタン風のアニメーションを持つ画像 */
.clicking-animation {
  display: block;
  width: 100%; /* 親要素の幅にフィット */
  height: auto;
  position: relative;
  animation: double_click_effect 1.2s infinite; /* アニメーションの持続時間を短縮 */
}

/* 企業健診バナー */

.kigyou{
  text-align: center;
  padding: 0px 20px 5px;
}


/* ダブルクリックを表現するアニメーション */
@keyframes double_click_effect {
  0%, 20% {
      transform: translateY(0); /* 初期位置（押されていない状態） */
  }
  25%, 30% {
      transform: translateY(5px); /* 1回目の押し込み */
  }
  35%, 40% {
      transform: translateY(0); /* 1回目から戻る */
  }
  45%, 50% {
      transform: translateY(5px); /* 2回目の押し込み */
  }
  55%, 60% {
      transform: translateY(0); /* 2回目から戻る */
  }
  100% {
      transform: translateY(0); /* 押されていない状態に戻る */
  }
}

.reserve_btn_01_kirari {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, #3cc5de 0%, #3cc5de 50%, #00b3cd 50%, #00b3cd 100%);
  border: none;
  border-radius: 5px;
  font-weight: 600;
  height: 60px;
  width: 320px;
}

.reserve_btn_01_kirari a {
  color: #ffffff;
  font-size: 25px !important;
  text-decoration: none;
}

.reserve_btn_02_kirari {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, #FF4444 0%, #FF4444 50%, #BF3434 50%, #BF3434 100%);
  border: none;
  border-radius: 5px;
  font-weight: 600;
  height: 60px;
  width: 320px;
}

.reserve_btn_02_kirari a {
  color: #ffffff;
  font-size: 25px !important;
  text-decoration: none;
}

.reserve_btn_03_kirari {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, #06c755 0%, #06c755 50%, #00b651 50%, #00b651 100%);
  border: none;
  border-radius: 5px;
  font-weight: 600;
  height: 60px;
  width: 300px;
}

.reserve_btn_03_kirari a {
  color: #ffffff;
  font-size: 25px !important;
  text-decoration: none;
}

.pickup2 {
  width: 100%;
  margin: 0 auto 0;
  padding: 40px 10px;
  text-align: center;
}

/*pc用*/
@media screen and (min-width:641px){
  /* メインビジュアルの親要素 */
  .mainvisual {
    position: relative; /* 子要素を相対配置可能にする */
    width: 100%; /* 全幅対応 */
  }

  /* トップ画像を包む親要素を基準にする */
  /* .top-image-container {
    position: relative; ボタンの基準にする
    display: inline-block; 子要素の配置を調整
  } */

  .today-reserve-btn {
    position: absolute; /* 親要素 .mainvisual を基準に配置 */
    /* top: 95%; */
    left: 70%; /* 水平方向で中央揃え */
    transform: translate(-50%, -50%); /* 中央基準にする */
    z-index: 10; /* 最前面に表示 */
  }

  /* ボタン画像のスタイル */
  .today-reserve-btn img {
      width: 200px; /* ボタンの幅 */
      max-width: 100%; /* レスポンシブ対応 */
  }

  .pickup__inner2 {
    display: flex !important; /* 横並びに配置 */
    justify-content: space-between; /* 均等な間隔を確保 */
    align-items: center; /* 縦位置を揃える */
    gap: 10px; /*各要素間のスペースを設定*/
    width: 80%;
    margin: auto;
  }

  .menu img{
    width: 36%;
  }

  .kigyou img{
    width:600px;
    margin:auto;
  }

  .pickup .pickup__text a {
    width: 80% !important;
    /* margin: 10px 20px !important; */
    margin-top: 25px !important;
  }

  .pickup .pickup__text .img.img--devihujin {
    right: auto;
    left: -22px;
    top: -177px;
    width: 30%;
  }

  .kenkou_banner img{
    width: 60%;
  }

  .button-container {
    display: flex; 
    justify-content: center;
    gap: 20px;
    padding: 20px 0 !important;
    margin: 50px 0;
  }
  
  .button-container a img {
    width: 240px;
    height: auto;
    cursor: pointer;
    transition: opacity 0.3s ease-in-out;
  }

  .button-container2 {
    display: flex; 
    justify-content: center;
    /* gap: 15px; */
    /* margin: 10px 0 30px; */
  }

  .button-container2 a img {
    width: 310px;
    height: auto;
    cursor: pointer;
    transition: opacity 0.3s ease-in-out;
  }

  .pickup {
    padding: 100px 10px !important;
  }

  .pickup__text--title {
    margin-bottom: 3rem !important;
  }

  .reserve_btn_01{
    margin-top: 2rem !important;
  }

  .reserve_btn_02{
    margin-bottom: 2rem !important;
  }

  .pickup .pickup__copy {
    left: 3em;
    position: relative;
    z-index: 1;
    font-size: 26px;
    font-weight: bold;
  }

  .img-fluid-new{
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
  }

  #reserve .reserve_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    max-width: 1100px; /* pickup__text の幅に合わせて調整 */
    margin: 0 auto 50px;
    padding: 0px 0px;
  }

  .pickup .reserve .reserve_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    max-width: 1100px; /* pickup__text の幅に合わせて調整 */
    margin: 0 auto;
    padding: 30px 0;
  }

  .reserve_btn .tel_btn,
  .reserve_btn .web_btn {
    max-width: 500px;
  }

  .reserve_btn img {
    width: 100%;
    height: auto;
    display: block;
  }

  .reserve_btn h2 {
    margin: 0;
    padding: 0;
  }

  #reserve .reserve_btn img {
    width: 450px;
    height: auto;
  }

  #news {
    width: 53%;
    background-color: #fffce9;
    height: auto;
    padding: 20px 5px 20px;
    margin: 0 auto 30px;
  }

  #news .news {
    text-align: center;
    padding: 0px 175px 10px;
    margin: -50px 0 0;
  }

  #news .news img {
    max-width: 400px;
  }

  #news .news-list {
    padding: 0px 70px 10px;
  }

  #news .news-list img {
    width: 12px;
    margin: -1px 16px 0px 0px;
  }

  #section2 .inner {
    padding:30px 0px;
  }

  #section2 .time_title img{
    width: 35%;
    margin: 20px 0px 0px;
  }

  #section3 {
    position: relative;
    overflow: hidden;
  }

  #section3::before {
    content: "";
    position: absolute;
    top: 200px;
    left: 0;
    width: 100%;
    height: 7509px; 
    background-image: url("../../images/kasugai-kirari/bg_section3.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: contain;
    z-index: 0;
  }

  #section3 > * {
    position: relative;
    z-index: 1;
  }

  #section3 .tokutyou {
    max-width: 600px;
    padding: 20px;
    margin: 0px auto;
  }

  #section3 .recommend {
    max-width: 600px;
    padding: 0px 80px;
    margin: 0px auto;
    scale: 0.5;
  }

  #section3 .tokutyou_point {
    display: flex;
    flex-wrap: wrap;
  }

  #section3 .access-btn {
    margin: -35px auto 50px;
    max-width: 35%;
  }

  .slideshow {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: auto;
    aspect-ratio: 1200 / 590; /* 高さを自動で確保（画像の比率に応じて調整） */
    margin: 0 auto 20px;
  }
  

  .slideshow .slide-pc{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
    opacity: 0;
    animation: fade 18s infinite;
  }

  .slideshow .slide-pc:nth-child(1) {
    animation-delay: 0s;
  }
  
  .slideshow .slide-pc:nth-child(2) {
    animation-delay: 6s;
  }
  
  .slideshow .slide-pc:nth-child(3) {
    animation-delay: 12s;
  }
  
  @keyframes fade {
    0% { opacity: 0; }
    10% { opacity: 1; }
    40% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 0; }
  }

  details {
    border: 1.5px solid #ccc;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 1);
  }
  details:not(:last-child) {
    margin-bottom: 10px;
  }
  
  details summary {
    cursor: pointer;
    padding: 10px;
    background: #ffffff;
    font-size: 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    position: relative;
  }

  details summary::after {
    content: '▶';
    color: #f0465a;
    font-size: 14px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  details[open] summary::after {
    content: '▼';
  }
  
  details[open] summary {
    border-bottom: 0.5px solid #ccc;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  

  details summary .label {
    display: inline-block;
    width: 110px;
    text-align: center;
    padding: 4px 8px;
    border-radius: 20px;
    color: #fff;
    font-size: 12px;
    white-space: nowrap;
    margin: 0px 15px 0px 10px;
  }

  details summary .label.important {
    background-color: #f0465a;
  }

  details summary .label.normal {
    background-color: #aaa;
  }

  details summary .date {
    font-weight: bold;
    font-size: 14px;
    color: #555;
    margin: 0px 15px 0px 5px;
  }

  details summary .title {
    font-size: 14px;
    color: #333;
  }
  
  details p {
    margin: 0;
    padding: 20px;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  :root {
    --scroll-gap: 30px;
  }
  
  .scroll_wrap {
    /* margin-block-start: 20vh; */
    width: 100%;
    overflow: hidden;
  }
  
  .scroll_inner {
    display: flex;
    flex-wrap: nowrap;
    gap: 0 var(--scroll-gap);
    animation: infiniteScroll 10s linear infinite;
  }
  
  .scroll_cont {
    display: grid;
    place-content: center;
    flex-shrink: 0;
    min-width: 22vw;
    aspect-ratio: 1 / 1;
    color: white;
    font-size: 1.375rem;
    font-weight: bold;
  
    /* z */
  }

  .splide__arrow {
    display: none !important;
  }

  /* スライダー画像調整 */
.splide__slide img {
  max-width: 600px;
  height: auto;
  display: block;
  margin: 0;
}

/* ドットスタイル調整 */
.splide__pagination li button {
  background: #ccc;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 5px;
  border: none;
}

/* アクティブなドットだけ黒に */
.splide__pagination li button.is-active {
  background: #000;
}

.splide__track {
  padding: 0 !important;
}

.splide {
  padding: 0px 0px 55px !important;
  margin: 0 0 60px;
}

/* スライド1枚の幅に制限をかける */
.splide__slide {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 !important;
  margin: 0 !important;
}

/* aタグの横幅は画像に合わせる */
.splide__slide a {
  display: inline-block;
  max-width: 100%;
  width: auto;
}

/* 画像のサイズを制限 */
.splide__slide img {
  display: block;
  width:300px;  /* 必要に応じて調整 */
  height: auto;
}

.splide__slide {
  max-width: 450px !important; /* スライド幅上限を制限する */
}




  
}

/*SP用*/
@media screen and (max-width:640px) {
  /* メインビジュアルの親要素 */
  .mainvisual {
    position: relative; /* 子要素を相対配置可能にする */
    width: 100%; /* 全幅対応 */
  }

  /* トップ画像を包む親要素を基準にする */
  /* .top-image-container {
    position: relative; ボタンの基準にする
    display: inline-block; 子要素の配置を調整
  } */

  .today-reserve-btn {
    position: absolute; /* 親要素 .mainvisual を基準に配置 */
    bottom: 0%;
    left: 68%; /* 水平方向で中央揃え */
    transform: translate(-190%, -50%); /* 中央基準にする */
    z-index: 10; /* 最前面に表示 */
  }

  /* ボタン画像のスタイル */
  .today-reserve-btn img {
      width: 100%; /* ボタンの幅 */
      max-width: 100%; /* レスポンシブ対応 */
  }

  .today-reserve-btn::before, .today-reserve-btn::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    border: 1px solid #ff717b;
    border-radius: 50%;
    box-sizing: border-box;
    pointer-events: none;
    animation: pulsate 4s linear infinite;
  }
  
  .today-reserve-btn::after {
    animation-delay: 2s;
  }

  @keyframes pulsate {
    0% {
      transform: scale(1);
      opacity: 1;
    }
  
    100% {
      transform: scale(1.8);
      opacity: 0;
    }
  }

  #section3 .inner {
    /* padding: 10px 20px; */
    padding: 10px 0px;
  }
  .pickup__text--title{
    margin-bottom: 3rem !important;
  }

  .reserve_btn_01{
    margin-top: 2rem !important;
  }

  .reserve_btn_02{
    margin-bottom: 2rem !important;
  }

  #section3 .feature-grid .feature-item .headline04{
    padding: 0 3px 10px !important;
    font-size: 17px !important;
  }

  .balloon_kirari{
    width: 90%;
    /* height: 120px; */
    height: 30px;
  }
  
  .balloon_kirari p {
    margin:0;
    padding:0;
    line-height: 35px;
    font-weight: 600;
    font-size: 25px;
  }

  .modalContents .pickup2 .pickup__text .pickup__text--title {
    font-size: 4.5vw;
  }

  .menu img{
    width: 90%;
  }

  /* 親要素の設定 */
  .image-container {
    position: relative;
    width: 370px; /* 必要に応じて画像の幅を設定 */
    height: auto; /* 高さを画像比率に従う */
    overflow: hidden; /* 必要に応じて画像が範囲外に出ないように */
    display: inline-block; /* インライン要素のように動作 */
  }

  /* コピーライトのデザイン */
  .footer-copy-line {
    display: block;
    width: 100%;
    padding: 10px 5px 130px; /* 通常の高さ */
    text-align: center;
    color: #ffffff;
    font-size: 3.5vw;
    background: #ff717b;
    transition: padding 0.3s ease, height 0.3s ease;
    position: relative; /* コピーライトを基準にする */
    z-index: 1; /* 背面に配置 */
  }

  /* 空き状況がないときのスタイル */
  .footer-copy-line.hidden {
    height: 0;
    padding: 10px 5px 110px; /* 高さを低くする */
    overflow: hidden;
  }

  /* 吹き出し全体のスタイル */
  .availability-bubble {
    position: relative;
    display: flex; /* 横並びにする */
    align-items: center; /* 中央揃え */
    justify-content: center; /* 中央配置 */
    background-color: #f0465a; /* 吹き出しの背景色（青） */
    color: #ffffff; /* テキストの色（白） */
    padding: 10px 20px; /* 内側の余白 */
    border-radius: 10px; /* 吹き出しの角を丸くする */
    max-width: 300px; /* 吹き出しの最大幅 */
    text-align: center; /* テキストを中央揃え */
    margin: 20px auto 9px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* 吹き出しに影を追加 */
    font-size: 16px; /* フォントサイズ */
    line-height: 1.5; /* 行間 */
    gap: 15px; /* ラベル間の間隔 */
    bottom: 10px;
  }

  /* 吹き出しの下に三角形を追加 */
  .availability-bubble::after {
    content: '';
    position: absolute;
    bottom: -20px; /* 吹き出しの下に三角形を配置 */
    left: 70%;
    transform: translateX(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: #f0465a transparent transparent transparent; /* 三角形の色 */
  }

  /* 吹き出し内のラベル（今日・明日空き） */
  .availability-label {
    display: inline-block; /* 横並びにする */
    font-weight: bold; /* 太字にする */
    border-radius: 5px;
  }

  /* 空きあり情報の非表示 */
  .availability-bubble.hidden {
    display: none; /* 完全に非表示 */
  }

  .footer-fixed-line:nth-child(2) {
    margin-bottom: 0px;
  }

  /* .pickup{
    padding-bottom: 0px !important;
  } */

  main .headline03 {
    margin: 0 auto 30px !important;
  }

  .footer-fixed-line {
    height: auto!important;
    padding-right: 0!important;
    padding-left: 0!important;
  }

  .page-top-line {
    bottom: 150px!important;
  }

  .pickup .pickup__text .img {
    height: 28vw !important;
  }

  .pickup .pickup__text .img.img--devihujin {
    /* padding-right: 0; */
    /* padding-left: 33vw; */
    left: -4%;
    top: -120px;
  }

  .pickup .pickup__copy.pickup__copy--devihujin {
    padding-right: 0;
    padding-left: 32vw;
  }

  .kenkou_banner img{
    width: 100%;
  }

  .button-container {
    display: flex; 
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 15px 20px !important;
    margin: 30px 0 0px;
  }
  
  .button-container a {
    width: 45%;
    box-sizing: border-box;
  }

  img[alt="きらり歯科特徴"] {
    margin-bottom: 0 !important;
  }

  img[alt="きらり歯科特徴01"] {
    margin-bottom: 0 !important;
  }
  img[alt="きらり歯科特徴02"] {
    margin-bottom: 0 !important;
  }
  img[alt="きらり歯科特徴03"] {
    margin-bottom: 0 !important;
  }
  img[alt="きらり歯科特徴04"] {
    margin-bottom: 0 !important;
  }

  .reserve_btn_05 {
    height: 80px !important;
  }

  #reserve .tel_btn {
    padding: 10px 5px 0px;
    margin: 20px 0 -20px;
  }

  #reserve .web_btn {
    padding: 10px 5px 20px;
    margin: 0 0 10px;
  }

  .reserve .tel_btn {
    margin: -30px 0 -90px;
  }

  .reserve .web_btn {
    margin: 10px 0 -50px;
  }

  #news {
    width: 100%;
    background-color: #fffce9;
    height: auto;
    padding: 10px 5px 20px;
    margin: 0 0 30px;
  }

  #news .news {
    padding: 0px 55px 5px;
    margin: -30px 0 0;
  }

  #news .news-list {
    margin: -15px 20px 0px;
  }

  #news .news-list img {
    width: 12px;
    margin: -1px 16px 0px 0px;
  }

  #section2 .inner {
    padding: 0px 20px 50px;
  }

  #section3 .tokutyou {
    padding: 0px 50px 0px;
    margin: -20px 0 0;
  }

  #section3 .tokutyou_title {
    margin: 0 0 0 -10px;
    max-width: 98%;
  }

  #section3 .tokutyou_box {
    margin: 10px 0 20px;
    padding: 0 5px 0;
  }

  #section3 .tokutyou_text {
    padding: 10px 30px 0px;
  }

  #section3 .tokutyou_point {
    padding: 0px 30px 0px;
  }

  #section3 .jump-button {
    padding: 0px 10px 20px;
    margin: -20px 0 0 0;
  }

  #section3 .button-container2 {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2列表示 */
    gap: 10px; /* バナー間の余白 */
    margin: 0px 25px 30px;
  }

  #section3 .button-container2 img {
    margin-bottom: 0;
  }

  #section3 .button-container2 a {
    padding: 0;
    margin: -15px;
  }

  .img-fluid-new{
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
  }

  .slideshow {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 375 / 391;
    margin: 0 auto 10px;
  }
  
  .slideshow .slide-sp{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: -1;
    opacity: 0;
    animation: fade 18s infinite;
  }

  .slideshow .slide-sp:nth-child(1) {
    animation-delay: 0s;
  }
  
  .slideshow .slide-sp:nth-child(2) {
    animation-delay: 6s;
  }
  
  .slideshow .slide-sp:nth-child(3) {
    animation-delay: 12s;
  }
  
  @keyframes fade {
    0% { opacity: 0; }
    10% { opacity: 1; }
    40% { opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 0; }
  }

  details {
    border: 1.5px solid #ccc;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 1);
  }
  details:not(:last-child) {
    margin-bottom: 10px;
  }
  
  details summary {
    display: flex;
    position: relative;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 10px 30px 10px 10px;
    background: #ffffff;
    font-size: 15px;
    border-radius: 5px;
    flex-direction: column;
    align-items: flex-start;
  }

  details summary::after {
    content: '▶';
    color: #f0465a;
    font-size: 14px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }

  details[open] summary::after {
    content: '▼';
  }

  details[open] summary {
    border-bottom: 0.5px solid #ccc;
    padding-bottom: 10px;
  }
  

  details summary .label {
    display: inline-block;
    width: 110px;
    text-align: center;
    padding: 4px 8px;
    border-radius: 10px;
    color: #fff;
    font-size: 12px;
    white-space: nowrap;
    margin: 5px;
  }

  details summary .label.important {
    background-color: #f0465a;
  }

  details summary .label.normal {
    background-color: #aaa;
  }

  details summary .date {
    font-weight: bold;
    font-size: 14px;
    color: #555;
    margin: 0 0 0 10px;
  }

  details summary .title {
    font-size: 15px;
    color: #333;
    margin: -5px 0 0 10px;
    line-height: 1.4;
    word-break: break-word;
  }

  .details-header {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
  }  
  
  details p {
    margin: 0;
    padding: 20px;
  }

  #shinryou_menu{
    width: 100%;
  }

  
}