    body {
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        min-height: 100vh;
    }
    .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
        max-width: 1200px;
        margin: 0 auto;
        box-sizing: border-box;
        width: 100%;
        border:0px solid rgb(0, 50, 200);  
    }
    
    .header {
        background-color: #fefefe;
        width: 100%;
        height: auto;
        text-align: center;
        position: relative;
        overflow: hidden; 
        border:0px solid rgb(0, 50, 200);  
    }

        @media (max-width: 768px) {
        .container {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px;
            max-width: 1200px;
            margin: 0 auto;
            box-sizing: border-box;
            width: 100%;
            border:0px solid rgb(0, 50, 200);  
        }
      }
    
    .header-title h1 {
        font-family: 'Noto Serif JP', serif;
        font-size: 2em; 
        color: #333; 
        margin: 0;
        text-align: left;
        padding-left: 5%;
        margin-left: 0%;
        margin-bottom: 1%;
    }

    .header-organization-name {
        display: flex;
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        overflow: hidden;
    }

    .header-image-container {
        position: relative;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
        border-radius: 5px;
    }
    @media (max-width: 768px) {
        .header-image-container {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
            border-radius: 5px;
            border:0px solid rgb(252, 0, 0); 
        }
      }
    .header img {
        width: 100%;
        height: 90%;
        object-fit: cover;
        border-radius: 5px;
    }

    .header-overlay {
        position: absolute;
        width: 100%;
        top: 50%; 
        left: 50%;
        transform: translate(-50%, -50%); 
        font-family: 'Noto Serif JP', serif;
        font-size: 2em; 
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); 
        text-align: left; 
        border: 0px solid rgb(0, 60, 255);
    }

    .header-overlay2 {
        position: absolute;
        width: 100%;
        top: 40%; 
        left: 50%;
        transform: translate(-50%, -50%); 
        background-color: rgb(235, 235, 235);
        font-family: 'Noto Serif JP', serif;
        font-size: 2em; 
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); 
        text-align: left; 
        border: 0px solid rgb(0, 60, 255);
    }

    .header-overlay3 {
        position: absolute;
        width: 100%;
        top: 35%; 
        left: 50%;
        transform: translate(-50%, -50%); 
        font-family: 'Noto Serif JP', serif;
        font-size: 2em; 
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); 
        text-align: left; 
        border: 0px solid rgb(0, 60, 255);
    }

    .header-overlay4 {
        position: absolute;
        width: 100%;
        top: 30%; 
        left: 50%;
        transform: translate(-50%, -50%); 
        background-color: rgb(235, 235, 235);
        font-family: 'Noto Serif JP', serif;
        font-size: 2em; 
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); 
        text-align: center; 
        border: 0px solid rgb(0, 60, 255);
    }

    .slideshow-container {
        margin-top: 0px;
        margin-bottom: 10px;
        padding-top: 10px;
        padding-left: 10px;
        position: relative;
        width: 100%;
        max-width: 1200px;
        overflow: hidden;
        white-space: nowrap;
        border: 0px solid rgb(0, 60, 255);
        background-color: rgba(255, 255, 255); 
    }
    .slideshow-container2 {
        display: flex;
        margin-top: 0px;
        margin-bottom: 10px;
        padding-top: 10px;
        padding-left: 10px;
        position: relative;
        width: 100%;
        max-width: 1200px;
        overflow: hidden;
        white-space: nowrap;
        border: 0px solid rgb(0, 60, 255);
        background-color: rgba(255, 255, 255); 
        overflow-x: scroll;
    }
    .youtube-item{
        margin-left: 10px;
    }
    @media (max-width: 768px) {
        .youtube-item{
            margin-left: 0px;
        }
      }
    .youtube-list{
        display: flex;
        max-width: 1200px;
    }
    .slides {
        display: flex;
        transition: transform 0.5s ease;
        width: 100%; 
        height: 200px;
        border: 0px solid rgb(0, 60, 255);
    }
    .slide {
        width: 200px; 
        height: 150px;
        box-sizing: border-box;
        display: inline-block;
        margin-left: 0px;
        margin-right: 10px;
    }
    .slide img {
        width: 200px;
        height: 100%; 
        object-fit: cover;
        cursor: pointer; 
        border-radius: 10px;
    }
    .prev, .next {
        cursor: pointer;
        position: absolute;
        top: 70%;
        width: auto;
        padding: 16px;
        color: white;
        font-weight: bold;
        font-size: 18px;
        transition: 0.6s ease;
        border-radius: 0 3px 3px 0;
        user-select: none;
        background-color: rgba(0,0,0,0.5);
        text-decoration: none;
    }
    .next {
        right: 0;
        border-radius: 3px 0 0 3px;
    }
    .prev {
        left: 0;
        border-radius: 3px 0 0 3px;
    }
    .prev:hover, .next:hover {
        background-color: rgba(0,0,0,0.8);
    }
    .main-content {
        flex: 1;
        width: 100%;
        margin-top: 0px;
        margin-bottom: 10px;
        padding-top: 10px;
        padding-left: 10px;
        padding-right: 10px;
        border: 0px solid rgb(0, 60, 255);
        background-color: rgb(247, 247, 247);
        border-radius: 10px;
    }
    
    .main-content p{
        color: #333;
    }
    .map-and-contact {
        display: flex;
        margin-top: 20px;
        margin-bottom: 20px;
        border: 0px solid rgb(0, 60, 255);
    }

    @media (max-width: 768px) {
        .map-and-contact {
            display: flex;
            margin-top: 50px;
            margin-bottom: 20px;
            border: 0px solid rgb(0, 60, 255);
            padding-left: 10px;
            padding-right: 10px;
        }
      }

    .map-placeholder {
        background-color: #ffffff;
        height: 0;
        padding-bottom: 20%;
        width: 30%;
        text-align: center;
        line-height: 0;
        font-size: 18px;
        color: #888;
        position: relative;
        overflow: hidden;
        color: transparent;
        border: 0px solid rgb(0, 60, 255);
    }

    .mapsafe{
        width: 20%;
        height: 150px;
        border: 0px solid rgb(255, 0, 0); 
        background-color: #ffffff;
        overflow: hidden;
        color: transparent;
    }

    .mapsafe iframe {
        width: 100%;
        height: 250px;
        max-width: auto; 
        max-height: auto; 
    }

    .map-placeholderadmin {
        display: flex;
        text-align: left;
        width: 90%;
        margin-left: 10px;
        line-height: 0;
        font-size: 18px;
        color: #888;
        position: relative;
        border: 0px solid rgb(255, 0, 0);
    }
    .map-placeholder iframe {
        width: 100%;
        height: 250px;
        max-width: auto; 
        max-height: auto; 
    }
    .map-placeholderadmin iframe {
        width: 100%;
        height: 150px;
        max-width: auto; 
        max-height: auto; 
    }


    .map-description {
        border: 0px solid rgb(255, 0, 0);
        width: 30%;
        font-size: 16px;
        margin-left: 20px;
        padding-top: 0px;
        padding-left: 30px;
        color: #333;
        background-color: rgba(255, 255, 255); 
    }
    .map-description p{
        color: #333;
        text-align: left;
    } 

    .contact-section {
        background-color: #ffffff; 
        color: #004d40; 
        text-align: left;
        padding: 10px;
        padding-right: 1%;
        border-radius: 10px;
        border: 2px solid #004d40; 
        font-family: 'Noto Serif JP', serif;
        box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.4); 
        margin-left: 20px;
        min-height: 200px; 
        height: auto;     
        width: 30%;
    }
    
    .contact-section h2 {
        color: #002b5c; 
    }
    
    .contact-section p {
        color: #004d40; 
    }

    .text-tiny {
        font-size: 0.8em; /* 大きくするサイズを指定 */
    }

    .text-small {
        font-size: 1.0em; /* 大きくするサイズを指定 */
    }


    .text-big {
        font-size: 1.5em; /* 大きくするサイズを指定 */
    }

    .text-huge {
        font-size: 2.0em; /* 大きくするサイズを指定 */
    }


    .page-top {
        position: fixed;
        right: 20px;
        bottom: 100px; /* 位置を少し上にする */
        background-color: #424242;
        color: white;
        padding: 7px;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 24px;
        transition: opacity 0.6s ease;
        opacity: 0;
        z-index: 1000;
        text-decoration: none;
      }

      .page-top:hover {
        color: white;
      }
      
      .page-top.show {
        opacity: 1;
      }
      
      .page-top i {
        margin: 0;
        font-size: 24px; /* 矢印アイコンのサイズ */
        line-height: 1;
      }



.footer {
    background-color: #000000;
    width: 100%;
    height: 100px;
    text-align: center;
    position: relative;
}
.footer a {
    color: #ffffff;
    text-decoration: none;
}
.footer a:hover {
    text-decoration: underline;
}

h1{
    font-family: 'Noto Serif JP', serif;
    border: 0px solid rgb(0, 60, 255);
}

h2{
    font-family:Arial, Helvetica, sans-serif
}

h3{
    font-family:Arial, Helvetica, sans-serif
}



p.footername{
    color: #eeeeee;
}

@media (max-width: 768px) {
    p.footername{
        color: #eeeeee;
        font-size: 0.7em;
    }
  }

li{
    font-family:Arial, Helvetica, sans-serif;
    text-shadow: 0 0.01em 0.02em rgba(0,0,0,0.7);
}

.social-icons {
    flex-direction: row;
    gap: 10px;
    border:0px solid #a60;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}

/* 各SNSボタンのスタイル */
.social-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #333;
    border:0px solid #a60;
    color: white;
    font-size: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-bottom: 10px;
}

.social-icon:hover {
    transform: scale(1.05);
    color: rgb(255, 255, 255);
}



/* 各SNSボタンの固有カラー */
.social-icon.line { background-color: #ffffff; border:12px solid #00c300; }
.social-icon.twitter { background-color: #000000; }
.social-icon.facebook { background-color: #1877f2; }
.social-icon.instagram { background: linear-gradient(45deg, #feda75, #d62976, #fa7e1e, #833ab4); }
.social-icon.linkedin { background-color: #0a66c2; }
.social-icon.youtube {background-color: #ff0000; }
.social-icon.pinterest {background-color: #e60023;}
.social-icon.tiktok {background-color: #010101;}




/* モーダルの背景 */
.modal {
    display: none; /* 初期は非表示 */
    position: fixed;
    z-index: 1;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9); /* 背景の暗さ */
  }
  
  /* モーダルの画像 */
  .modal-content {
    margin: auto;
    display: block;
    width: 50%; /* 画像の幅を50%に設定 */
    max-width: 350px; /* 最大幅も設定 */
  }
  
  /* 閉じるボタン */
  .close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    border:0px solid rgb(0, 50, 200); 
  }
  
  .close:hover,
  .close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
  }



  div.contentsmessage0{
    border: 0px solid rgba(0, 100, 200, 0.2); 
    border-radius: 12px;
    background-color: #ffffff;
    overflow-wrap: break-word;
  }

  @media (max-width: 768px) {
    div.contentsmessage0 {
        padding-left: 5px;
        padding-right: 5px;
        border: 0px solid rgb(0, 50, 200);
        white-space: nowrap;
        overflow: scroll;
        font-size: 1.8vw;
        line-height: 1.2; 
        text-align: center;
    }
    div.contentsmessage0 strong {
        text-align: center;
        margin: 0; 
        font-size: clamp(8px, 3.5vw, 36px) !important;;
    }
    div.contentsmessage0 p {
        text-align: center;
        margin: 0;
        font-size: clamp(8px, 3.5vw, 36px) !important;;      
    }
     div.contentsmessage0 span {
        text-align: center;
        margin: 0;
        font-size: clamp(8px, 3.5vw, 36px) !important;;
        
    }
     div.contentsmessage0 a {
        text-align: center;
        font-size: clamp(8px, 3.5vw, 36px) !important;;
        margin-bottom: 1px;
        
    }
    div.contentsmessage0 i {
        text-align: center;
        margin: 0; 
        font-size: clamp(8px, 3.5vw, 36px) !important;;
        margin-bottom: 1px;
    }
  }

  div.contentsmessage{
    border: 0px solid rgba(0, 100, 200, 0.2); 
    border-radius: 12px;
    background-color: #ffffff;
    overflow-wrap: break-word;
  }

  @media (max-width: 768px) {
    div.contentsmessage {
        padding-left: 5px;
        padding-right: 5px;
        white-space: normal;
        
        border: 0px solid rgb(0, 50, 200) !important;;
        overflow-wrap: break-word;
        font-size: 1.8vw;
        line-height: 1.2; 
        text-align: justify;
    }
    div.contentsmessage strong {
        text-align: center;
        margin: 0;
        font-size: clamp(16px, 4vw, 48px) !important;;
    }

    div.contentsmessage i {
        text-align: center;
        margin: 0;
        font-size: clamp(16px, 4vw, 48px) !important;;
    }
  }

    @media (max-width: 768px) {
        .header {
            background-color: #ffffff;
            width: 100%;
            height: auto;
            text-align: center;
            position: relative;
            margin-right: auto;
            border:0px solid rgb(0, 50, 200);  
        }
        .header-title h1 {
            font-family: 'Noto Serif JP', serif;
            font-size: 1em; 
            color: #333; 
            margin: 0;
            text-align: left;
            margin-left: 1%;
            margin-bottom: 1%;
        }
        .header-overlay {
            height: auto;
            top: 42%;
            font-size: 0.7em; 
        }
        .header-overlay2 {
            height: auto;
            top: 35%;
            font-size: 0.7em; 
        }
        .header-overlay3 {
            height: auto;
            top: 35%;
            font-size: 0.7em; 
        }
        .header-overlay4 {
            height: auto;
            top: 35%;
            font-size: 0.7em; 
        }
        .header img {
            width: 100%;
            height: 140px;
            object-fit: cover;
            margin-right: auto;
        }
        .slideshow-container {
            margin-top: 10px;
            position: relative;
            width: 100%;
            max-width: 1200px;
            height: 100px;
            overflow: hidden;
            white-space: nowrap;
            
        }
        .slide {
            width: 25%; 
            height: 60px;
            box-sizing: border-box;
            display: inline-block;
            margin-left: 0px;
            margin-right: 10px;
            
        }
        .slide img {
            width: 75px;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
        }
        .prev, .next {
            cursor: pointer;
            position: absolute;
            top: 50%;
            width: auto;
            height: auto;
            padding: 16px;
            color: white;
            font-weight: bold;
            font-size: 10px;
            transition: 0.6s ease;
            border-radius: 0 3px 3px 0;
            user-select: none;
            background-color: rgba(0,0,0,0.5);
            text-decoration: none;
        }
        .next {
            position: absolute;
            right: 0;
            border-radius: 3px 0 0 3px;
        }
        .prev {
            position: absolute;
            left: 0;
            border-radius: 3px 0 0 3px;
        }
        .main-content {
            flex: 1;
            width: 100%;
            margin-top: 0px;
            padding-left: 0px;
            padding-right: 0px;
        }
        .main-content p{
            color: #333;
        }

        .map-and-contact {
            flex-direction: column;
        }
        .map-placeholder {
            background-color: #eeeeee;
            height: auto;
            padding-top: 1%;
            padding-bottom: 2%;
            width: 100%;
            text-align: center;
            line-height: 0;
            font-size: 18px;
            color: #888;
            position: relative;
            margin-top: auto;
            margin-bottom: auto;
        }
        .map-placeholderadmin{
            display: block;
            height: auto;
            padding-top: 1%;
            padding-bottom: 2%;
            width: 95%;
            text-align: center;
            line-height: 0;
            font-size: 18px;
            color: #888;
            position: relative;
            margin-top: 10px;
            margin-bottom: auto;
            margin-left: 5px;
        }
        .map-placeholder iframe {
            position: relative;
            width: 100%;
            height: 250px;
            max-width: auto; 
            max-height: auto; 
        }
        .map-placeholderadmin iframe {
            position: relative;
            width: 100%;
            height: 250px;
            max-width: auto; 
            max-height: auto; 
            margin-left: 0px;
        }
        .map-description {
            margin-top: 5px;
            margin-left: 0px;
            margin-bottom: 5px;
            position: relative;
            width: 100%;
            padding-left: 10px;
            border:0px solid #a60;
        }
        .mapsafe{
            width: 100%;
        }
        .contact-section {
            margin-top: 5px;
            margin-left: 0px;
            margin-bottom: 5px;
            position: relative;
            width: 100%;
        }

        .social-icons {
            flex-direction: row;
            gap: 10px;
            border:0px solid #a60;
            margin-bottom: 10px;
        }
    
        .social-icon {
            width: 40px;
            height: 40px;
            font-size: 20px;
        }
        .footer {
            width: 100%;
            height: 90px;
            text-align: center;
            position: relative;
        }
        .footer a {
            text-decoration: none;
        }
        .footer a:hover {
            text-decoration: underline;
        }
    }

    input.keywordsearchmaster {
        display: block;
        width: auto;
        height:30px; 
        font-size: 16px;
        font-weight:bold;
        color: rgb(0, 0, 0);
        outline: none;
        border: 0.5px solid rgb(208, 208, 208);
        border-radius: 5px;
        margin-top: 0px;
        margin-bottom: 0px;
        margin-left: 5px;
        padding-left: 5px;
      }
      
      input.keywordsearchmaster:hover {
        border: 0.5px solid rgb(0, 100, 200);
        color: rgb(0, 0, 0);
        outline: none;
        box-shadow:0 0 5px rgb(0, 100, 200); 
      }

      input.keywordsearchmaster::placeholder {
        color: #bfbfbf; 
        opacity: 1;  
        font-size: small;
      }

      @media (max-width: 768px) {
        input.keywordsearchmaster {
            width: 95%;
            margin-left: 5px;
          }
      }
      
    .news-section {
        border: 1px solid rgba(0, 100, 200, 0.2); 
        border-radius: 12px;
        padding: 10px 15px;
        margin-top: 20px;
        margin-bottom: 20px;
        background-color: #f9fbff; 
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
        font-family: 'Arial', sans-serif; 
        color: #333; 
    }

    
    .news-section ul {
        list-style-type: none; 
        padding: 0;
    }
    
    .news-section ul li {
        padding: 10px;
        border-bottom: 1px solid #e0e0e0; 
        display: flex;
        align-items: center; 
        transition: background-color 0.3s ease; 
    }
    
    .news-section ul li:hover {
        background-color: #eef7ff; 
    }
    
    .news-section ul li strong {
        color: #0066cc; 
        margin-right: 10px;
        font-size: 1.1em; 
    }
    
    .news-section ul li span {
        flex: 1; 
        overflow: visible; 
        white-space: normal; 
        word-wrap: break-word;
        word-break: break-all; 
    }


    .news-section2 {
        border: 1px solid rgba(0, 100, 200, 0.2); 
        border-radius: 12px; 
        padding: 10px 15px; 
        margin-top: 0px;
        margin-bottom: 20px;
        background-color: #f9fbff; 
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
        font-family: 'Arial', sans-serif; 
        color: #333; 
    }
    
    .news-section2 ul {
        list-style-type: none; 
        padding: 0;
    }
    
    .news-section2 ul li {
        padding: 10px;
        border-bottom: 1px solid #e0e0e0; 
        display: flex;
        align-items: center; 
        transition: background-color 0.3s ease; 
    }
    

    .news-section2 ul li strong {
        color: #0066cc; 
        margin-right: 10px;
        font-size: 1.0em; 
    }
    
    .news-section2 ul li span {
        font-weight: 500; 
        font-size: 1.0em;
        word-wrap: break-word; 
        word-break: break-all; 
    }

    a.id{
        text-decoration: none;
        color: #000000;
    }

    a.id:hover{
        text-decoration: none;
        color: #0066cc; 
    }
    
    @media (max-width: 768px) {
        .news-section {
            padding: 15px 20px; 
        }
    
        .news-section ul li {
            padding: 12px;
        }
    
        .news-section ul li strong, 
        .news-section ul li span {
            font-size: 1em; 
        }
    }


div.pages{
    width: 100%;
    border: 0px solid rgb(0, 60, 255);
}
@media (max-width: 768px) {
    div.pages{
        width: 100%;
        border: 0px solid rgb(0, 60, 255);
    }
  }

div.pages2{
    width: 100%;
    border: 0px solid rgb(0, 60, 255);
}
@media (max-width: 768px) {
div.pages2{
        width: 100%;
        border: 0px solid rgb(0, 60, 255);
    }
  }

.pagination {
    padding: 0; 
    margin: 0; 
    display: flex; 
    justify-content: center; 
}

.pagination li {
    display: inline-block;
    margin: 0 3px; 
}

.page-link {
    padding: 5px 10px; 
    font-size: 0.9em; 
    border: 1px solid #007bff; 
    color: #007bff;
    border-radius: 3px;
    text-decoration: none;
}

.page-link:hover {
    background-color: #e9ecef; 
}

.page-link2 {
    padding: 5px 10px; 
    font-size: 0.9em; 
    border: 1px solid #007bff; 
    color: #007bff;
    border-radius: 3px;
    text-decoration: none;
}

.page-link2:hover {
    background-color: #e9ecef; 
}


.active .page-link {
    background-color: #007bff;
    color: white;
}

.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
}

@media (max-width: 768px) {
    .page-link {
        padding: 4px 8px; 
        font-size: 0.8em; 
    }

    .pagination li {
        margin: 0 2px; 
    }


}

div.infoedit{
    margin-top: -1px;
    border: 0px solid rgb(0, 60, 255);
}

div.topmessageeditor{
    width: 70%;
    margin-left: 20px;
    border: 0px solid rgb(0, 60, 255);
    text-align: left;
  }
  
  @media (max-width: 768px) {
    div.topmessageeditor{
      width: 90%;
    }
  }


  div.inputitems4{
    border: 0px solid rgb(255, 0, 0);
    width: 100%;
    min-height: 300px;
    margin-left: 1%;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 50px;
    white-space: normal; 
    word-wrap: break-word;
    word-break: break-all; 
  }

  div.inputitems4 img{
    border: 0px solid rgb(255, 0, 0);
    width: 100%;
    height: 100%;
  }


  button.return {
    margin-top: 3px;
    cursor:default; 
    height:30px;
    font-size: auto;
    font-weight:bold;
    color: #fff;
    background-color: #00cf18;
    border-color: #00cf18;
    min-width: 80px;
    width: auto;
    margin-left: 10px;
    border-radius: 10px;
    padding-top: 0px;
  }
  
  button.return:hover {
    color: #fff;
    background-color: #00b415;
    border-color: #00b415;
    box-shadow: 0 0 0 0.1rem rgba(13, 200, 0, 0.5);
  }

@media (max-width: 768px) {
button.return {
    margin-top: 0px;
    cursor:default; 
    height:auto;
    font-size: auto;
    font-weight:bold;
    color: #fff;
    background-color: #00cf18;
    border-color: #00cf18;
    width: auto;
    margin-left: 10px;
    border-radius: 10px;
    padding-top: 0px;
}

button.return:hover {
    color: #fff;
    background-color: #00b415;
    border-color: #00b415;
    box-shadow: 0 0 0 0.1rem rgba(13, 200, 0, 0.5);
}
}


h2.detailtitle{
    width: 98%;
    min-height: 40px;
    font-size: 100%;
    font-weight: bold;
    font-family: 'Arial', 'Helvetica', 'Roboto', 'Open Sans', sans-serif;
    text-shadow: 0 0.05em 0.05em rgba(0,0,0,0.7);
    background-color: #fff;
    border-left: solid 6px #94e2ff;
    box-shadow: 0px 1px 1px 1px #aac5de;
    text-align: left;
    margin-top: 10px;
    margin-left: 0px;
    padding-top: 10px;
    padding-bottom: 3px;
    padding-left: 10px;
    overflow-wrap: break-word;
  }

  @media (max-width: 768px) {
    h2.detailtitle{
      width: 100%;
      min-height: 40px;
      text-align: left;
      margin-left: 0px;
      overflow-wrap: break-word;
    }
  }


  div.maincontents2{
    padding-left: 10px;
    padding-right: 10px;
  }

  h1.privacy {
    font-size: 36px;
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 40px;
    text-decoration: underline;
  }
  
  @media (max-width: 768px) {
    h1.privacy {
    margin-top: 20px;
      font-size: 24px;
    }
  }


  h2.privacy {
    width: 95%;
    font-size: 22px;
    font-family: Arial, Helvetica, sans-serif;
    color: #333;
    text-align: left;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-left: auto;
    margin-right: auto;
  }

  @media (max-width: 768px) {
    h2.privacy {
      font-size: 18px;
    }
  }

  /* モーダル (背景) */
.modal {
    display: none; /* 初期状態は非表示 */
    position: fixed; /* 固定表示 */
    z-index: 1000; /* 最前面に表示 */
    padding-top: 100px; /* 上部の余白 */
    left: 0;
    top: 0;
    width: 100%; /* 全画面幅 */
    height: 100%; /* 全画面高さ */
    overflow: auto; /* スクロール可能にする */
    background-color: rgba(0,0,0,0.9); /* 半透明の黒背景 */
}

/* モーダルの中の画像 */
.modal-content {
    margin: auto;
    display: block;
    max-width: 90%; /* 最大幅 */
    max-height: 90%; /* 最大高さ */
}

/* 閉じるボタン */
.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.ckeditor {
    font-family: 'Noto Serif JP', serif; /* デフォルトフォントを明朝体に */
}

.visitor-count {
    font-family: 'Yu Mincho', 'Noto Serif JP', serif; /* 和風フォント */
    font-size: 1.0rem; /* 適度な大きさ */
    font-weight: bold;
    color: #565656; /* 和風を意識した茶色 */
    background: linear-gradient(to right, #c4c4c4, #fffaf0); /* 和風な和紙風の背景 */
    padding: 10px 15px; /* 内側の余白 */
    border: 0px solid #d7c4b8; /* 和紙風の縁取り */
    border-radius: 8px; /* 角を少し丸める */
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); /* 影を追加して立体感を出す */
    text-align: center; /* 中央揃え */
    width: fit-content; /* 内容に合わせて幅を自動調整 */
    margin: 10px 5px; /* 上下のスペースと中央配置 */
    letter-spacing: 0.1em; /* 少し文字間隔を広げる */
}

a {
    font-size: 18px; /* 必要な文字サイズを指定 */
}

