
.sunny-gosyo-con{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90%;
    gap: 1rem;
}
.sunny-gosyo-con h1 strong span{
    font-size: 2rem;
    text-transform: uppercase;
}
.sunny-gosyo-con img{
    height: 400px;
    width: 400px;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}
.sunny-gosyo-con img:hover{
  transform: scale(1.1);
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;

}

.gosyo-con{
    display: flex;
    flex-direction: row;
    gap: 3rem;
}

.sunny-texts{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sunny-texts .btn{
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.btn .learn-more-direct:hover{
    background-color: transparent;
}

.sunny-texts p a{
    background-color: transparent;
    box-shadow: none;
    color: #333;
    padding: 0;
    width: fit-content;
}
.sunny-texts p a:hover{
    background-color: transparent;
}
.sunny-texts h2{
    font-size: 2rem;
    font-weight: bold;
}

.sunny-texts p{
    margin: 0;
    font-size: 1.5rem;
}

.sunny-texts a{
    padding: 10px;
    align-items: center;
    display: flex;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 10px;
    background-color: #f88b30;
    color: #fff;
    width: max-content;
    min-width: 200px;
    justify-content: center;
    cursor: pointer;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}
.sunny-texts a:hover{
    background-color: #e07a1f;
}

.sunny-texts p a{

}


.body-body{
    padding: 2rem;
}
.title-header{
    text-align: center;
    font-size: 3rem !important;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 9999999999999;
    justify-content: center;
    align-items: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.modal-content-wrapper {
    position: relative;
    max-width: 900px;
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    animation: zoomIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#modalImage {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 12px;
    border: 3px solid white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    object-fit: contain;
}

#modalCaption {
    color: white;
    font-size: 1.8rem;
    margin-top: 20px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    letter-spacing: 1px;
}

.close-modal {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 35px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.close-modal:hover {
    transform: scale(1.2);
    color: #ffcc00;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@media (max-width: 600px) {
    #modalCaption {
        font-size: 1.2rem;
    }
    .close-modal {
        right: 10px;
        top: -45px;
    }
}

.body-body{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.body-body .phrase{
    font-size: 1.2rem;
    text-align: center;
    color: #666;
}
.images-roll {
    width: 60%;
    margin-top: 2rem;
    background-color: transparent;
    display: grid;
    gap: 5px;
    cursor: none;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
}


.images-roll .text:nth-of-type(1) {
    grid-column: 1;
    grid-row: 1;
}
.images-roll img:nth-of-type(1) {
    grid-column: 2;
    grid-row: 1;
}

.images-roll img:nth-of-type(2) {
    grid-column: 1;
    grid-row: 2;
}
.images-roll img:nth-of-type(3) {
    grid-column: 2;
    grid-row: 2;
}

.images-roll img:nth-of-type(4) {
    grid-column: 1;
    grid-row: 3;
}
.images-roll .text-left {
    grid-column: 2;
    grid-row: 3;
}

.images-roll img {
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.images-roll div {
    padding: 25px;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.images-roll div h1 {
    font-size: 2.5rem;
    text-align: right;
    color: #e07a1f;
    margin-bottom: 1rem;
}

.text .long-text {
    font-size: 1.2rem;
    margin: 0;
    text-align: right;
    line-height: 1.5;
}

.text-left {
    align-items: flex-start;
}

.images-roll .text-left h1,
.images-roll .text-left p {
    text-align: left !important;
}

.text-left a {
    background-color: #f88b30;
    padding: 10px;
    border-radius: 5px;
    width: fit-content;
    min-width: 200px;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
    font-size: 1rem;
    color: #fff;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}

.text-left a:hover {
    background-color: #e07a1f;
}

.text-left span {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
}
