/**メニュー  ******************************************/
    /* チェックボックス自体は非表示 */
    #menu-toggle {
      display: none;
    }

    /* メニューボタン */
    .menu-button {
      display: inline-block;
      padding: 10px 15px;
      background-color: #33E;
      color: white;
      cursor: pointer;
      border-radius: 5px;
    }

    /* メニューは最初は非表示 */
    .menu {
        position: absolute;
        top:100px;
        right:50px;
        display: none;
        padding-top: 10px;
        padding-bottom: 10px;
        background-color: #FFF;
        width: 300px;
        border-radius: 10px;
        box-shadow: 0 0 8px #999;
    }
    .menu img{
        display: inline-block;
        vertical-align: middle;
        width: 40px;
        height: 40px;
    }
    /* ボタンを押した状態ならメニューを表示 */
    #menu-toggle:checked ~ .menu {
      display: block;
    }

    /* メニュー項目 */
    .menu a {
      display: block;
      padding: 10px;
      color: #333;
      text-decoration: none;
    }

    .menu a:hover {
      background-color: #ddd;
    }
/**スライド  ******************************************/
    img {
    display: block;
    margin: 0;
    }
    * {
      box-sizing: border-box;
    }

    .slideshow {
      position: relative;
      width: 100%;
      max-width: 100%;
      aspect-ratio: 16 / 9;
      overflow: hidden;
      background-color:#000;
      animation: fade 1.0s;
    }
    .slide {
      display: none;
      width: 100%;
      height: 100%;
    }
    .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .slide.active {
      display: block;
      animation: fade 2.0s;
    }
    @keyframes fade {
      from {
        opacity: 0.3;
      }
      to {
        opacity: 1;
      }
    }

    /* 左右ボタン */
    .prev,
    .next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(0, 0, 0, 0.5);
      color: white;
      border: none;
      padding: 15px 20px;
      font-size: 24px;
      cursor: pointer;
      border-radius: 5px;
    }

    .prev {
      left: 15px;
    }

    .next {
      right: 15px;
    }

    .prev:hover,
    .next:hover {
      background: rgba(0, 0, 0, 0.8);
    }

    /* 下のドット */
    .dots {
      position: absolute;
      bottom: 15px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
    }

    .dot {
      width: 12px;
      height: 12px;
      background: #aaa;
      border-radius: 50%;
      cursor: pointer;
    }

    .dot.active {
      background: white;
    }
/**３並び  ******************************************/
@media all and (min-width: 0px)and (max-width: 768px){
	.pc { display: none !important; }
	.sp { display: block !important; }

    .lb_33_100{
        width:100%;
        min-height:100px;
        padding:5px 10px 5px 10px;
        margin-bottom:0px;
        background-color: #f6f6f6;
        border-radius: 20px;
        border:solid 10px #FFF;
    }
}@media all and (min-width: 769px){
	.pc { display: block !important; }
	.sp { display: none !important; }

    .lb_33_100{
        float:left;
        width:33.3%;
        min-height:100px;
        padding:5px 10px 5px 10px;
        margin-bottom:20px;
        background-color: #f6f6f6;
        border-radius: 20px;
        border:solid 10px #FFF;
    }
}
    .lb_33_100:hover{
        background-color: #f6f6ff;
    }
    .lb_33_100 .mark{
        padding:0 3px 0 3px;
        background-color: #44f;
        color:#FFF;
        font-weight: bold;
        border-radius:15px;
    }
    .content {
        display: none;
        padding: 10px;
        margin-top: 5px;
    }
    .button{
        padding: 10px 20px;
    }
    .div {
        padding: 10px 20px;
        cursor: pointer;
    }
    .clear{
        clear:both;
    }
    .bd{
        border:solid 1px;
    }

/**FAQ  ******************************************/
    summary{
    display: flex;
    justify-content: space-between; /* テキストとアイコンを両端に寄せる */
    align-items: center;
    cursor: pointer;
    }
    summary ::-webkit-details-marker {
    display: none; /* Safari用 */
    }

    /* 2. 閉じているときのアイコン（＋）を右側に配置 */
    summary::after {
    content: "＋";
    color:blue;
    font-weight: 900;
    font-size: 1.2em;
    margin-left: 1em; /* テキストとの間に少し隙間を作る */
    }

    /* 3. 開いているときのアイコン（−） */
    details[open] summary::after {
    content: "−";
    color:blue;
    font-weight: 900;
    font-size: 1.2em;
    }
