body {
    background-color: #FEFDF2;
}

/* 背景とロゴの配置 */
#logo-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #001f4d;
    /* 紺色 */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#logo {
    width: 200px;
    /* ロゴのサイズ調整 */
    opacity: 0;
    /* 初期状態は透明 */
    transition: opacity 2s;
    /* 2秒でフェードイン */
}

#logo.show {
    opacity: 1;
    /* フェードイン後の表示状態 */
}

.navbar {
    width: 100%;
    height: 110px;
    display: flex;
    justify-content: space-between;
    padding: 0 80px;
    align-items: center;
    position: fixed;
    z-index: 1000;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-logo-img {
    width: 100px;
}

.navbar-logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.navbar-logo-text-up {
    color: #0B3E6B;
    font-size: 16px;
    font-weight: bold;
    text-align: left;
}

.navbar-logo-text-down {
    color: #15A5A3;
    font-size: 12px;
    font-weight: bold;
    text-align: left;
}

.navbar-link {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 36px;
}

.navbar-link p {
    font-size: 16px;
    font-weight: bold;
    gap: 10px;
}

.navbar-link p a {
    color: #0B3E6B;
}

.toggler {
    /* ALWAYS KEEPING THE TOGGLER OR THE CHECKBOX ON TOP OF EVERYTHING :  */
    z-index: 2;
    height: 50px;
    width: 50px;
    position: absolute;
    top: 30px;
    right: 0;
    cursor: pointer;
    opacity: 0;
    display: none;
}

.hamburger {
    position: absolute;
    top: 30px;
    right: 0;
    height: 40px;
    width: 40px;
    padding: 0.6rem;
    /* FOR DISPLAYING EVERY ELEMENT IN THE CENTER : */
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}


/* CREATING THE MIDDLE LINE OF THE HAMBURGER : */

.hamburger>div {
    position: relative;
    top: 0px;
    left: 0;
    background: #2f85cfff;
    height: 3px;
    width: 100%;
    transition: all 0.4s ease;
    display: none;
}


/* CREATING THE TOP AND BOTTOM LINES : 
  TOP AT -10PX ABOVE THE MIDDLE ONE AND BOTTOM ONE IS 10PX BELOW THE MIDDLE: */

.hamburger>div::before,
.hamburger>div::after {
    content: '';
    position: absolute;
    top: -8px;
    background: #2f85cfff;
    width: 100%;
    height: 3px;
    transition: all 0.4s ease;
}

.hamburger>div::after {
    top: 8px;
}


/* IF THE TOGGLER IS IN ITS CHECKED STATE, THEN SETTING THE BACKGROUND OF THE MIDDLE LAYER TO COMPLETE BLACK AND OPAQUE :  */

.toggler:checked+.hamburger>div {
    background: rgba(0, 0, 0, 0);
}

.toggler:checked+.hamburger>div::before {
    top: 0;
    transform: rotate(45deg);
    background: black;
}


/* AND ROTATING THE TOP AND BOTTOM LINES :  */

.toggler:checked+.hamburger>div::after {
    top: 0;
    transform: rotate(135deg);
    background: black;
}


/* MAIN MENU WITH THE WHITE BACKGROUND AND THE TEXT :  */

.menu {
    background: rgba(8, 50, 0, 0.5);
    width: 0%;
    height: 100vh;
    /* APPLYING TRANSITION TO THE MENU :  */
    transition: all 0.4s ease;
    position: absolute;
    right: 0;
    /* z-index: 10; */
}


/* IF THE TOGGLER IS CHECKED, THEN INCREASE THE WIDTH OF THE MENU TO 30% , CREATING A SMOOTH EFFECT :  */

.toggler:checked~.menu {
    width: 168px;
}


/* STYLING THE LIST :  */

.menu>div>ul {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    padding-left: 10px;
    /* HIDDEN INITIALLY  :  */
    visibility: hidden;
}

.menu>div>ul>li {
    list-style: none;
    padding: 0.5rem;
}

.menu>div>ul>li>a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}


/* WHEN THE TOGGLER IS CHECKED, CHANGE THE VISIBILITY TO VISIBLE :  */

.toggler:checked~.menu>div>ul {
    transition: visibility 0.4s ease;
    transition-delay: 0.1s;
    visibility: visible;
}

.toggler:checked~.menu>div>ul>li>a:hover {
    color: orange;
}


/* firs_tview */

.pc-fv {
    position: relative;
}

.pc-fv-box {
    position: absolute;
    margin-top: 20%;
    transform: translateX(20%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vision {
    font-size: 48px;
    font-weight: bold;
    color: #ffffff;
    /* White text */
    text-shadow: 5px 5px 15px #87cefa;
    paint-order: stroke fill;
    -webkit-text-stroke: 2px #87cefa;
    text-align: center;
}

.mission {
    font-size: 20px;
    font-weight: bold;
    color: #0B3E6B;
    /* White text */
    text-shadow: 1px 3px 2px #fff;
    text-align: center;
}

.sp-fv-img {
    display: none;
}

.top-news-title {
    width: 250px;
}

.top-news {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 50px;
    justify-content: center;
}

.top-news .image {
    max-width: 250px;
    width: 25%;
    margin-top: 20px;
}

.top-news .lists {
    width: 70%;
    max-width: 450px;
    display: flex;
    flex-direction: column;
}

.top-news .list {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 17px;
    margin-top: 8px;
    border-bottom: 1px solid #DCDCDC;
    padding-bottom: 8px;
}

.top-news .list-info {
    display: flex;
    gap: 15px;
    width: 23%;
    justify-content: start;
    align-items: center;
}

.top-news .list .date {
    width: fit-content;
    font-size: 16px;
    font-weight: bold;
    color: #000;
}

.tag-notify {
    background: #3F7429;
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    text-align: center;
    white-space: nowrap;
    font-weight: bold;
}

.tag-event {
    background: #E89E2A;
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    text-align: center;
    white-space: nowrap;
    font-weight: bold;
}

.top-news .list .preview {
    width: 55%;
    font-size: 16px;
    color: #000;
    margin-top: 4px;
}

.preview p {
    padding-bottom: 3px;
    white-space: nowrap;
    width: 250px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news-page-link-box {
    width: 100%;
    display: flex;
    justify-content: start;
    margin-left: 10%;
}
.news-page-link-box-sp {
    display: none;
}
.news-page-link {
    width: 120px;
    height: 50px;
    margin-top: 30px;
    background-color: #5A9F4D;
    font-size: 20px;
    font-weight: bold;
    border-radius: 5px;
    color: #fff;
    text-align: center;
    padding: 10px;
    text-decoration: none;
}

.top-newsdetail-link {
    margin-top: 0;
}

.boss-message {
    background-image: url('../img/boss-message.png');
    background-size: contain;
    background-repeat: no-repeat;
    aspect-ratio: 1440/835;
    width: 100%;
    align-items: center;
    display: flex;
}

.boss-message-content {
    width: 60%;
    aspect-ratio: 722/638;
    overflow-y: scroll;
    /* Keep scroll functionality */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

.boss-message-content::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari */
}

.boss-message-content .title {
    font-size: 30px;
    font-weight: bold;
    color: #0B3E6B;
    margin-bottom: 40px;
}

.boss-message-content .message {
    font-size: 22px;
    color: #0B3E6B;
}


/* Swiper Core Styles */

.top-swiper {
    width: 100%;
    height: 100%;
    top: 40px;
}

.swiper-wrapper {
    display: flex;
}

.swiper-slide {
    flex-shrink: 0;
}


/* Your custom styles */

.stap-intro-div {
    width: 100%;
    display: flex;
    align-items: center;
    background-color: #FEFDF2;
}

.stap-intro {
    width: 100%;
    aspect-ratio: 1440/835;
    background-image: url('../img/stap-slide-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 40px;
}

.stap-intro-bg {
    width: 200px;
}

[swiper_scale_active] .swiper-slide {
    text-align: center;
    font-size: 18px;
    box-shadow: 0 0 100px 40px var(--main-bg-color);
    overflow: hidden;
}

@media only screen and (max-width: 600px) {
    [swiper_scale_active] .swiper-slide {
        border-radius: 10px;
    }
}

[swiper_scale_active] .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

[swiper_scale_active] .swiper-slide:not(.swiper-slide-active) a {
    pointer-events: none;
}

[btn_group] {
    text-align: center;
    margin-top: 16px;
}

[btn_group] button {
    background: transparent;
    padding: 10px 16px;
    border-width: 0px;
    cursor: pointer;
    /* opacity: 0.4; */
    /* transition: opacity 0.5s linear; */
}

[btn_group] button:hover {
    opacity: 1;
}

[btn_group] svg {
    color: white;
}


/* Wrapper */

.stap-intro-slide {
    position: relative;
    /* important for absolute button positioning */
    width: 100%;
}


/* Button Group Container */

[btn_group] {
    position: absolute;
    top: 130%;
    left: 0;
    width: 150px;
    align-self: center;
    border-radius: 50px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(-50%);
    transform: translateX(-50%);
    left: 50%;
    padding: 0 16px;
    pointer-events: none;
    z-index: 10;
    background-color: rgba(90, 159, 77, 0.45);
}


/* Buttons */

[btn_group] button {
    border: none;
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
    opacity: 0.7;
    pointer-events: auto;
    /* make buttons clickable */
    transition: all 0.3s ease;
}

[btn_group] button:hover {
    opacity: 1;
}

[btn_group] svg {
    color: white;
    width: 11px;
    height: 18px;
}

.stap-intro-div .text {
    width: 80%;
}

.stap-intro-div .text p {
    text-align: center;
    font-size: 16px;
    color: #0B3E6B;
    margin-top: 50px;
}

.top-reason-section {
    position: relative;
    background-color: #FEFDF2;
    overflow-y: hidden;
}

.shape1 {
    position: absolute;
    width: 25%;
    top: 0%;
    left: 0;
}

.shape2 {
    position: absolute;
    width: 25%;
    top: 0;
    right: 0;
}

.shape3 {
    position: absolute;
    width: 15%;
    bottom: -15%;
    left: 50%;
}

.top-reason-title {
    width: 400px;
    margin: auto;
    margin-top: 50px;
}

.section-box-container {
    margin-top: 40px;
}

.top-reason {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.top-reason-slide {
    width: 40%;
    max-width: 434px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    aspect-ratio: 390/434;
    overflow-y: hidden;
}

.top-reason-text {
    display: flex;
    flex-direction: column;
    width: 50%;
    padding-top: 20px;
    gap: 20px;
}

.top-reason-text p {
    font-size: 20px;
    color: #0B3E6B;
}

.page-prefooter {
    width: 100%;
    background-color: #FEFDF2;
    /* border-radius: 30px; */
    position: relative;
    overflow-y: hidden;
    aspect-ratio: 1437/500;
}

.pre-footer-bg {
    position: absolute;
    width: 100%;
}

.pre-footer-link-div {
    display: flex;
    flex-direction: column;
    z-index: 20;
    position: absolute;
    gap: 20px;
    align-items: center;
}

.pre-footer-link-div p {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
}

.prefooter-page-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    background-color: #0B3E6B;
    padding: 10px 20px;
    border-radius: 5px;
}

footer {
    background-color: #CEECD4;
    padding: 50px 130px;
}

.footer-access {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.footer-links {
    width: 100%;
    max-width: 1280px;
    padding: 0px 60px;
    border-bottom: 1px solid rgba(11, 62, 107, 0.2);
    display: flex;
    flex-direction: column;
}

.footer-logo {
    width: 300px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-logo-img {
    width: 100%;
}

.footer-logo p {
    font-size: 20px;
    font-weight: bold;
    color: #0B3E6B;
}

.footer-inside-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.footer-inside-links p {
    font-size: 20px;
    font-weight: bold;
    color: #0B3E6B;
    text-align: center;
    margin-bottom: 20px;
}

.footer-inside-links a {
    font-size: 16px;
    color: #0B3E6B;
    text-decoration: none;
    text-align: start;
}

.footer-outside-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.footer-outside-links a {
    display: flex;
    gap: 5px;
    text-decoration: none;
}

.footer-outside-links p {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: bold;
    color: #0B3E6B;
    text-align: center;
}

.footer-outside-links a img {
    width: 24px;
    height: 24px;
}

.footer-inside-links a p {
    font-size: 16px;
    color: #0B3E6B;
    text-decoration: none;
    text-align: start;
}

.footer-address {
    font-size: 20px;
    color: #0B3E6B;
}

.copyright {
    width: 100%;
    align-items: center;
    padding: 20px 0px;
}

.copyright p {
    font-size: 20px;
    color: #0B3E6B;
    text-align: center;
}

.sp-footer-address {
    display: none;
}

.sp-footer-organization {
    display: none;
}

.top-vm-title {
    width: 600px;
    margin: auto;
}

.vision-div {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    z-index: 1;
}

.vision-div-img {
    width: 55%;
}

.vision-div-text {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vision-div-text .title {
    font-size: 24px;
    color: #0B3E6B;
    font-weight: bold;
}

.vision-div-text .sub-title {
    font-size: 18px;
    color: #0B3E6B;
    font-weight: bold;
    margin-top: 20px;
}

.vision-div-text .text {
    font-size: 16px;
    color: #0B3E6B;
    margin-top: 20px;
}

.mission-div {
    margin-top: 50px;
    position: relative;
    z-index: 1;
    height: 35vw;
    display: flex;
    align-items: center;
}

.mission-div .title {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: bold;
    color: #0B3E6B;
}

.mission-div .text {
    font-size: 16px;
    color: #0B3E6B;
    text-shadow: 0px 1px #fff;
    font-weight: bold;
}

.mission-div-img {
    position: absolute;
    width: 60%;
    bottom: 0;
    right: 0;
}

.mission-div-sp-img {
    display: none;
}

.top-vm-titile {
    width: 500px;
    margin: auto;
}

.sp-boss-message {
    display: none;
}

.sp-boss-message-content {
    width: 100%;
    margin-top: 20px;
}

.sp-boss-message-content .title {
    font-size: 18px;
    color: #0B3E6B;
    font-weight: bold;
    text-align: center;
}

.sp-boss-message-content .message {
    font-size: 14px;
    color: #0B3E6B;
    margin-top: 20px;
}

.google-map-container iframe {
    width: 100%;
}