body{ font-family: "Libertinus Serif" , "Zen Old Mincho", "serif";
    header{
        padding: 10px 10px ;
        display: flex;
        position: sticky;
        z-index: 2;
         top: 0px;
        align-items: center;
        justify-content: space-between;
        background-color: #097167;
        box-shadow: 0 8px 16px -4px rgb(0 0 0 / 0.5);
        .logo{
            display: block;
            margin-left: 15px;
            img{
                display: block;
                height: 40px;
            }
        }
        nav{
            display: flex;
            align-items: center;
            gap: 50px;
            color: white;
            @media(width <= 750px) {
                display: none;
            }
            
            dl{
                display: grid;
                grid-template-columns: repeat(5 , 90px);
                text-align: center;
                font-size: 12px;
                font-weight: 500;
                .hover-area{
                    display:block;
                    padding: 5px;
                .bar{
                    width: 60px;
                    height: 1px;
                    background-color: #fff ;
                    border-radius:3px;
                    margin: 5px auto 5px ;
                    align-items: center;
                    opacity: 0;
                    transition: opacity 0.3s ease;
                    pointer-events: none;
                }
                &:hover .bar{
                     opacity: 1;
                }
            }
                       
            .Eng{
                letter-spacing: 0.4em;
                font-size: 9px;
            }
                
                
                
            }
        }
    .burger {
    display: none;
    position: relative;
    @media(width <= 750px) {
      display: block;
    }
    details {
      summary {
        list-style: none;
        outline: none;
        cursor: pointer;
        &::-webkit-details-marker {
          display: none;
        }
        button {
          gap: 4px;
          padding-inline: 10px;
          width: 40px;
          height: 40px;
          border-radius: 6px;
          border: none;
          pointer-events: none;
          background-color: transparent;
          span {
            display: block;
            background-color: #fff;
            width: 20px;
            height: 2px;
            border-radius: 10px;
            position: absolute;
            inset: 0;
            margin: auto;
            transition-property: opacity, translate, rotate;
            transition-duration: .2s;
            &:nth-child(1) {
              translate: 0 -6px;
            }
            &:nth-child(3) {
              translate: 0 6px;
            }
          }
        }
      }
      /* メニューが開いている時 */
      &[open] {
        button {
          span {
            &:nth-child(1) {
              translate: 0;
              rotate: 45deg;
            }
            &:nth-child(2) {
              opacity: 0;
            }
            &:nth-child(3) {
              translate: 0;
              rotate: -45deg;
            }
          }
        }
      }
      .menu {
        width: max-content;
        border: 1px solid #ccc;
        background-color: #fff;
        border-radius: 2px;
        padding: 10px 15px;
        position: absolute;
        inset: 100% 0 auto auto;
        ul {
          display: grid;
          gap: .5em;
          a {
            font-size: 14px;
            font-weight: 400;
            @media(width <= 750px) {
              font-size: 12px;
            }
            &:hover {
              color: #32988e;
              text-decoration: underline;
            }
          }
        }
      }
    }
  }
    }
    .hero{
            position: relative;
            background-image: url(../img/hero.jpg);
            background-size: cover;
            height: 370px;
            z-index: 1;
            background-position: center top;
            background-position: 50% 30%; 
        .front-text{
            position: absolute;
            top: 100px; left: 0;
            text-align: left;
            color: #fff;
            height: 270px;
            width: 100%;
            background: linear-gradient(0deg, #000, transparent);
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-end;            
            @media(width >= 700px){
            align-items: flex-start;
            };
            @media(width <= 700px){
                align-items: center;
            };
            p{
                font-size: 22px;
                font-weight: 300;
                @media(width >= 700px){
                    margin-left: 20px;
                    font-size: 25px;
                };
            }
            h1{
                font-size: 60px;
                padding-bottom: 15px;
                font-weight: 300;                
                @media(width >= 700px){
                    margin-left: 20px;
                };
            }
                h2{
                    font-size: 40px;
                    white-space: nowrap;
                    padding-bottom: 15px;
                @media(width >= 700px){
                    margin-left: 20px;
                };
                }                
            
        }

    }
    main{
        .container{
            position: relative;
            &::after{
                content: "";
                position: absolute;
                top: -55px;
                left: 0;
                right: 0;
                margin: 0 auto;
                display: block;
                width: 95%;
                height: 1.5px;
                background-color: #cccccc;
            }
            .learn-more{
                display: flex;
                justify-content: end;
                margin-top: 20px;
                padding: 15px 10px 5px;
                .text{
                    display: grid;
                    position: relative;
                    margin-right: 30px;
                    grid-template-columns: 100px auto;
                    @media(width <=600px){
                        grid-template-columns: 80px auto;
                    }
                    align-items: end;
                    h5{
                        font-size: 18px;
                        letter-spacing: 3px;
                        color: #097167;
                        font-weight: 500;
                        @media(width <=600px){
                            font-size: 16px;
                            letter-spacing: 2px;
                        }
                    }
                    p{
                        color: #000;
                        font-size: 15px;
                        @media(width <=600px){
                            font-size: 12px;
                        }
                    }   
                &::after{
                    content: '';
                    position: absolute;
                    bottom: -2px;
                    left: -5%;
                    width: 20%;
                    height: 3px;
                    background-color: #097167;
                    transition: width 0.2s ease-out;
                } 
                &:hover::after{
                    width: 110%;
                 }
                &:hover h5{
                    color: #0ea192;
                }
                &:hover p{
                    color: #606060;
                }
                }
            }
        }
        .main-section{
            padding: 40px 0 80px ;
            background-color: #dddddd;
            .heading-group{
                text-align: center;
                margin: 0 0 30px;
                h2{
                    color: #097167;
                    font-size: 40px;
                    font-weight: 700;
                    letter-spacing: 0.2em;
                }
                span{
                    color: #097167;
                    font-size: 14px;
                    font-weight: 400;
                    letter-spacing: 0.3em;
                    display: block;
                    margin-top: 10px;
                }
                &::after{
                    content: "";
                    display: block;
                    width: 40px;
                    height: 4px;
                    background-color: #097167;
                    border-radius: 4px;
                    margin: 30px auto 0;
                }
                
            }
        }
        .main-section-under{
            padding: 40px 0 80px ;
            background-color: #fff;
            .heading-group-under{
                margin: 30px 30px;
                h2{
                    color: #097167;
                    font-size: 32px;
                    font-weight: 700;
                    letter-spacing: 0.1em;
                }
                span{
                    color: #097167;
                    font-size: 14px;
                    font-weight: 400;
                    letter-spacing: 0.3em;
                    display: inline;
                    margin-top: 10px;
                }                
            }
        }
        .about{
            .layout{
                display: grid;
                @media(width <= 900px){
                    display: block;
                };
                grid-template-columns: 1fr 1fr;
                align-items: start;
                gap: 60px; 
                padding: 0 30px;
                
            }
            h3{
                font-size: 36px;
                @media(width <= 600px){font-size: 20px;};
                font-weight: 400;
                &::after{
                    content: "";
                    display: block;
                    width: auto;
                    height: 1px;
                    background-color: #000;
                    border-radius: 2px;
                    margin: 20px 0 20px;
                }
            }
            p{
                font-size: 16px;
                @media(width <= 600px){font-size: 12px;};
                line-height: 2;
            }
            .image{
                border-radius: 10px;
                overflow: hidden;
                justify-content: center;
                margin: 10px 30px;
                .img{
                    height: 100%;
                    aspect-ratio: 5 / 4;
                    object-fit: cover;
                }
            }
        }
        .research{
            .research-list{
                display: grid;
                grid-column: auto;
                row-gap: 20px;
            .layout{
                margin: 0 30px;
                background-color: #cccccc;
                border:1px solid #000 ;
                display: flex;
                margin: 0 30px;
                .research-example{
                    display: grid;
                    grid-template-columns: 200px auto 150px;
                    @media(width <= 750px){
                        grid-template-columns: auto;
                        grid-template-rows: 150px auto 60px;
                            margin:0 10px;
                    };                    
                    align-items: center;
                    .image{
                        display: flex;
                        justify-content: center;                        
                        overflow: hidden;
                        align-items: center;
                        img{
                            width: 180px;
                            aspect-ratio: 3 / 2;
                            object-fit: cover;
                        }
                    }
                        
                        .text{
                            h4{
                                font-size: 25px;
                                margin: 10px;
                                @media(width <= 750px){
                                    font-size: 20px;
                                    margin: 10px auto;
                                    text-align: center;
                                };
                            }
                            p{
                                font-size: 14px;
                                line-height: 1.5;
                                margin: 10px ;
                                @media(width <= 750px){
                                    font-size: 12px;
                                    display: -webkit-box;              
                                    -webkit-box-orient: vertical;      
                                    -webkit-line-clamp: 2;             
                                    overflow: hidden;                  
                                    text-overflow: ellipsis;
                                };
                                &::before{
                                    content: "";
                                    display: block;
                                    height: 0.5px;
                                    width: auto;
                                    background-color: #000;
                                    margin: 10px 5px;
                                }
                                &::after{
                                    content: "";
                                    display: block;
                                    height: 0.5px;
                                    width: auto;
                                    background-color: #000;
                                    margin: 10px 5px 30px;
                                }
                            }
                        }
                        .hover-area{
                            display: grid;
                            grid-row: 2;
                            grid-template-rows: auto 15px;
                            justify-content: center;
                            img{
                                justify-content: center;
                                @media(width <= 750px){display: none;};
                                align-items: center;
                                width: 100px;
                                object-fit: cover;
                                padding: 10px;
                                transition: transform 0.3s ease;
                            }
                            p{
                                display: flex;
                                color: #808080;
                                justify-content: center;
                                font-size: 10px;
                                @media(width <= 750px){font-size: 14px;};
                            }
                            &:hover img{
                                    transform: translateX(10px);
                                }
                            &:hover p{
                                color: #404040;
                                @media(width <= 750px){text-decoration: underline;};
                            }
                        }
                            
                }
            }
            }
            
        }
        .member{
            .layout{
                display: grid;
                grid-template-columns: 350px 1fr;
                margin:0 60px 0 0;
                @media(width <= 800px){
                    grid-template-columns: auto;
                    grid-template-rows: auto auto;
                    gap: 16px;
                    margin: 0 auto 0;
                };
                .prof{
                    text-align: center;
                    margin: 0 10px;
                    align-items: center;
                    h6{
                        font-size: 20px;
                        font-weight: 500;
                        margin-bottom: 10px;
                        &::after{
                            content: "";
                            display: block;
                            height: 1px;
                            width: 30%;
                            background-color: black;
                            margin: 0 auto;
                        }
                    }
                    .name{
                        font-size: 30px;
                        letter-spacing: 5px;
                        text-shadow: 0px 2px 1px rgb(0 0 0 / 0.2);
                    }
                    .sub{
                        margin-top: 5px;
                        font-size: 15px;
                        letter-spacing: 4px;
                    }
                    img{
                        margin-top: 25px;
                        width: 250px;
                        aspect-ratio: 1 /1 ;
                        object-fit: cover;
                        border-radius: 4px;
                    }
                }
                .profile{
                    margin-top: 35px;
                    text-align: center;
                    align-items: center;
                    h6{
                        font-size: 20px;
                        &::before{
                            content: "";
                            display: block;
                            height: 0.5px;
                            width: 70%;
                            background-color: black;
                            margin: 10px auto;
                        }
                    }
                    p{
                        font-size: 15px;
                        letter-spacing: 4px;
                        &::after{
                            content: "";
                            display: block;
                            height: 0.5px;
                            width: 70%;
                            background-color: black;
                            margin: 10px auto;
                        }
                    }
                    dl{
                        margin-top: 30px;
                        display: grid;
                        grid-template-columns: auto auto;
                        line-height: 2;
                        @media(width <= 800px){
                            font-size: 12px;
                            grid-template-columns: auto;
                            justify-content: center;
                        };
                        :nth-of-type(even){
                            background-color: transparent;
                        }
                        :nth-of-type(odd){
                            background-color: #cccccc;
                        }
                        dd{
                            text-align: left;
                            @media(width <=800px){
                                text-align: center;
                            }
                            padding: 0 1em;
                        }
                    }
                }
            }
            .students{
                .title{
                    margin-top: 70px ;
                    text-align: center;
                    font-size: 20px;
                    
                    span{
                        font-size: 15px;
                        margin-left: 10px;
                        letter-spacing: 2px;
                    }
                    &::after{
                        content: "";
                        display: block;
                        height: 2px;
                        width: 80%;
                        background-color: #606060;
                        margin: 10px auto 10px;
                    }
                    

                }
                .layout{
                    display: flex;
                    width: 1fr;
                    align-items: center;
                    margin: 0 30px;
                    position: relative;
                    bottom: 0%;
                    right: 0%;
                    &::after{
                        content: "2026年度現在";
                        display: flex;
                        color: #404040;
                        font-size: 12px;
                        position: absolute;
                        bottom: -20%;
                        right: 5%;
                        @media(width <=800px){
                            bottom: -20px;
                            right: 5%;
                        }
                        
                    }
                
                ul{
                    display: grid;
                    grid-template-columns: repeat(4 , 1fr);
                    text-align: center;
                    gap: 80px;
                    margin: 0 auto;
                    @media(width <=800px){
                        display: block;
                        li{
                            display: grid;
                            grid-template-columns: 80px 100px 40px;
                            text-align: left;
                            align-items: end;
                            font-size: 15px;
                        }
                    }

                }
                .english{
                    font-size: 12px;
                    margin-top: 5px;
                }
                .number{
                    font-size: 16px;
                    margin-top: 16px;
                    letter-spacing: 6px;
                    @media(width <=800px){
                        font-size: 14px;
                    }
                    span{
                        font-size: 24px;
                        @media(width <=800px){
                            font-size: 20px;
                        }
                    }
                }
            }
            }
        }
        .access{
            .layout{
                display: grid;
                grid-template-columns: 50% 50%;
                @media(width <=900px){
                    grid-template-columns: auto;
                    margin: 30px auto 50px;
                    gap: 25px;
                }
                margin: 50px 30px 0;
                position: relative;
                bottom: 0%;
                right: 0%;
            }
            .map{
                width: 370px;
                overflow: hidden;
                border: solid #000 1px;
                border-radius: 3px;
                aspect-ratio: 1 /1;
                margin: 0 auto 20px; 
                @media(width <=900px){
                    width: 300px;
                    margin: 0 auto 20px;               
                }
                iframe{
                    width: 100%;
                    aspect-ratio: 1 / 1;
                    height: auto;

                }                
            }
            .text{
                display: flex;
                align-items: center;
                @media(width <=900px){
                    font-size: 12px;
                    flex-direction: column;
                }
                dl{
                display: grid;
                grid-template-columns: auto auto;
                row-gap: 50px;
                column-gap: 30px;
                @media(width <=900px){
                    column-gap: 20px;
                    row-gap: 30px;
                }
                font-size: 14px;
                dt{
                    text-align: end;
                    text-shadow: 0px 2px 1px rgb(0 0 0 / 0.2);
                }
                dd{
                    text-align: start;
                    position: relative;
                    &::before{
                        content: "";
                        height: 120%;
                        vertical-align: middle;
                        width: 5px;
                        border-radius: 1px;
                        background-color: #097167;
                        position: absolute;
                        left: -15px;
                        @media(width <=900px){
                            left: -10px;
                        }

                    }
                }
                .phone{
                    font-size: 18px;
                    font-weight: 400;
                    @media(width <=900px){
                        font-size: 15px;
                    }
                    &:hover{
                        color: blue;
                        text-decoration: underline;
                    }    
                }
                
                }
            }
            .link{
                position: absolute;
                right: 0%;
                bottom: 0px;
                display: flex;
                justify-content: flex-end;
                align-items: flex-end;
                margin: 0 30px 0;
                font-size: 12px;
                @media(width <=900px){
                    bottom: -60px;
                    margin: 20px 10px 15px;
                    letter-spacing: -0.1em;
                }
                a:hover{
                    color: blue;
                    text-decoration: underline;
                }
                .sthp{
                    font-size: 13.5px;
                    padding: 0 2px;
                    @media(width <=900px){
                        padding: 0 0.1px;
                    }
                }
            }
        }
        .others{
            justify-content: center;
            h3{
                font-size: 30px;
                font-weight: 500;
            }
            .inquiry{
                display: flex;
                align-items: center;
                flex-direction: column;
                line-height: 2;
                font-size: 14px;
                gap: 12px;
                .text{
                    text-align: start;
                    width: 70%;
                    p{
                        margin-top: 20px;
                    }
                }
                h4{
                    margin: 15px;
                    font-size: 20px;
                    text-align: center;
                    position: relative;
                    text-decoration: underline;
                    text-decoration-color: #097167;
                    text-decoration-thickness: 2px;
                    text-underline-offset: 7px;
                    font-weight: 600;
                    span{
                        font-size: 10px;
                        margin-top: 5px;
                        position: absolute;
                        right: 0%;
                        font-weight: 500;
                    }
                }
            }
            .referance{
                margin-top: 50px;
                display: flex;
                align-items: center;
                text-align: center;
                flex-direction: column;
                line-height: 2;
                font-size: 14px;
                gap: 12px;
                ul{
                    a{
                        &:hover{
                            color: blue;
                            text-decoration: underline;
                        }  
                    }  
                }
                
                
            }
        }
        .research-under{
            .research-list{
                display: grid;
                grid-column: auto;
                row-gap: 40px;
            .layout{
                margin: 0 30px;
                background-color: transparent;
                display: flex;
                padding-left: 50px;
                @media(width <= 800px){
                    padding-left: 0;
                }
                position: relative;
                bottom: 0%;
                left: 0%;
                &::after{
                    display: block;
                    content: "";
                    height: 1px;
                    width: 90%;
                    background-color: #bbbbbb;
                    margin: 20px 30px;
                    position: absolute;
                    bottom: -35px;
                    left: 30px;
                    @media(width <= 800px){
                        bottom: -35px;
                        left: 10px;
                        margin: 20px auto;
                    }
                }
                .research-example{
                    display: grid;
                    grid-row: 3;
                    grid-template-columns: 200px auto 150px;
                    align-items: center;
                    @media(width <= 800px){
                        grid-template-columns: auto;
                        grid-template-rows: 180px auto 60px;
                        margin:0 10px;
                    }; 
                    .image{
                            display: flex;
                            justify-content: center;
                            width: 200px;
                            @media(width <= 800px){
                                width: 250px;
                                margin: 0 auto;
                            }
                        img{
                            justify-content: center;
                            align-items: center;
                            width: 100%;
                            aspect-ratio: 3 / 2;
                            object-fit: cover;
                            padding: 15px;
                            
                        }
                    }                        
                        .text{
                            h4{
                                font-size: 23px;
                                margin: 10px;
                                @media(width <= 800px){
                                    font-size: 20px;
                                    margin: 10px auto;
                                    text-align: center;
                                };
                            }
                            p{
                                font-size: 14px;
                                line-height: 1.5;
                                margin: 10px ;
                                @media(width <= 800px){
                                    font-size: 12px;
                                };
                                
                            }
                        }
                        .hover-area{
                            display: grid;
                            grid-row: 2;
                            grid-template-rows: auto 15px;
                            img{
                                justify-content: center;
                                align-items: center;
                                width: 100px;
                                object-fit: cover;
                                padding: 10px;
                                transition: transform 0.3s ease;
                                @media(width <= 800px){display: none;};
                            }
                            p{
                                color: #808080;
                                justify-content: center;
                                font-size: 10px;
                                text-align: center;
                                transform: translateX(-20px);
                                @media(width <= 800px){
                                   transform: translateX(0); 
                                   font-size: 12px;
                                };
                            }
                            &:hover img{
                                    transform: translateX(10px);
                                }
                            &:hover p{
                                color: #404040;
                                @media(width <= 800px){text-decoration: underline;};
                            }
                        }
                            
                }
                
            }
            }
            
        }
        .research-content{
            margin: 30px;
            .layout{
                flex-direction: column;
                justify-content: center;
                gap: 20px;
                h4{
                    font-size: 28px;
                    text-align: left;
                    font-weight: 500;
                    text-shadow: 0px 2px 3px rgb(0 0 0 / 0.3);
                    margin-bottom: 5px;
                    @media(width <= 750px){
                        font-size: 22px;
                    }
                }
                .content{
                    display: grid;
                    grid-template-columns: 300px auto;
                    gap: 30px;
                    @media(width <= 750px){
                        grid-template-columns: auto;
                        grid-template-rows: auto auto ;
                    }
                    .content-image{
                        align-items: center;
                        justify-content: center;
                        display: grid;
                        grid-template-columns: 120px 120px;
                        grid-template-rows:  160px 80px;
                        .img1{
                            grid-column: span 2;
                            display: flex;
                            width: 100%;
                            border:  solid 1px #fff;
                            img{
                                aspect-ratio: 3 / 2;
                                object-fit: cover;
                            }
                        }
                        .img2{
                            display: flex;
                            width: 100%;
                            border:  solid 1px #fff;
                            img{
                                aspect-ratio: 3 / 2;
                                object-fit: cover;
                            }
                        }
                        .img3{
                            display: flex;
                            width: 100%;
                            border:  solid 1px #fff;
                            img{
                                aspect-ratio: 3 / 2;
                                object-fit: cover;
                            }
                        }
                    }
                    .content-text{
                        h5{
                            font-size: 18px;
                            margin-bottom: 15px;
                            text-align: center;
                            @media(width <= 750px){
                                font-size: 15px;
                            }
                        }
                        p{
                            font-size: 13px;
                            margin-bottom: 10px;
                            @media(width <= 750px){
                                font-size: 12px;
                            }
                        }
                    }
                    &::before{
                        content: "";
                        grid-column: span 2;
                        display: block;
                        height: 0.5px;
                        width: auto;
                        background-color: #606060;
                        @media(width <= 750px){
                            grid-column: 1;
                        }
                    }
                    &::after{
                        content: "";
                        grid-column: span 2;
                        display: block;
                        height: 0.5px;
                        width: auto;
                        background-color: #606060;
                        @media(width <= 750px){
                            grid-column: 1;
                        }
                    }                    
                }
                .paper{
                    margin-bottom: 15px;
                        .h6{
                            font-size: 18px;
                            @media(width <= 750px){
                                font-size: 15px;
                            }
                        }
                        dl{
                            font-size: 14px;
                            margin: 0 30px;
                            @media(width <= 750px){
                                font-size: 12px;
                            }
                            dt{
                                position: relative;
                                &::before{
                                    display: inline-block;
                                    content: "";
                                    background-color: #097167;
                                    width: 2px;
                                    height: 2px;
                                    align-items: center;
                                    border-radius: 2px;
                                    position: absolute;
                                    left: 0.3em;
                                    top: 0.65em;
                                    transform: translateX(-1em);                                
                                }
                                &:hover{
                                    text-decoration: underline;
                                    color: blue;
                                }
                            }
                            dd{
                                font-size: 12px;
                                @media(width <= 750px){
                                    font-size: 10px;
                                }
                            }
                        }
                }
                .move{
                    display: flex;
                    align-items: flex-end;
                    justify-content: flex-end;
                    font-size: 14px;
                    @media(width <= 750px){
                        font-size: 12px;
                    }
                    span{
                        font-size: 18px;
                        color: #097167;
                        letter-spacing: 0.2em;
                        @media(width <= 750px){
                            font-size: 15px;
                        }
                    }
                    &:hover{
                        text-decoration: underline;
                        color: #606060;
                        span{
                            color: #0ea192;
                        }
                    }
                }
            }
        }
        .member-under{
            h3{
                font-size: 30px;
                text-align: center;
                @media(width <=800px){
                                font-size: 25px;
                            }
                span{
                    font-size: 20px;
                    margin-left: 20px;
                    letter-spacing: 0.2em;
                    @media(width <=800px){
                                font-size: 18px;
                            }
                }
                }
            .teacher{
                justify-content: center;                
                .introduce{
                    margin: 30px;
                    display: grid;
                    grid-template-columns: auto auto;
                    @media(width <= 800px){
                        grid-template-columns: auto;
                        grid-template-rows: auto auto;
                    }
                    .teacher-image{
                        justify-content: center;
                        display: grid;
                        grid-template-columns: 300px 150px;
                        grid-template-rows: 150px 150px;
                        @media(width <= 800px){
                            grid-template-columns: 130px 130px;
                            grid-template-rows: 260px 130px;
                        }
                        
                        .img-main{
                            grid-row: span 2;
                            display: flex;
                            width: 300px;
                            border: solid 1px #fff;
                            @media(width <= 800px){
                                grid-row: span 1;
                                grid-column: span 2;
                                width: 260px;
                            }
                            img{
                                aspect-ratio: 1 / 1;
                                object-fit: cover;
                            }   
                        }
                        .img-sub{
                            display: flex;
                            width: 150px;
                            @media(width <= 800px){
                                width: 130px;
                            }
                            img{
                                aspect-ratio: 1 / 1;
                                object-fit: cover;
                                border: solid 1px #fff;
                            }   
                        }
                    }
                    .text{
                        text-align: center;
                        margin-right: 30px;
                        @media(width <=800px){
                                margin-right: 0px;
                            }
                        h4{
                            font-size: 20px;
                            margin-top: 50px;
                        }
                        h5{
                            font-size: 27px;
                            letter-spacing: 0.2em;
                            margin: 10px 0;
                            text-shadow: 0 2px 4px rgb(0 0 0 / 0.4);
                        }
                        h6{
                            font-size: 16px;
                            letter-spacing: 0.3em;
                            margin-top: 6px;
                            text-decoration: underline;
                            text-decoration-color: #808080;
                        }
                        p{
                            font-size: 16px;
                            margin-top: 20px;
                        }
                        .search{
                            display: flex;
                            background-color: #808080;
                            margin: 40px 30px 0;
                            justify-content: center;
                            width: auto;
                            padding: 2px 0;
                            font-size: 14px;
                            color: #fff;
                            border: solid 0.5px #000;
                            @media(width <= 800px){
                                font-size: 12px;
                            }
                            &:hover{
                                background-color: #606060;
                            }

                        }
                    }
                }
                .profile{
                    margin-top: 35px;
                    text-align: center;
                    align-items: center;
                    h6{
                        font-size: 20px;
                        margin-bottom: 5px;
                        &::before{
                            content: "";
                            display: block;
                            height: 0.5px;
                            width: 70%;
                            background-color: black;
                            margin: 10px auto;
                        }
                    }
                    p{
                        font-size: 15px;
                        letter-spacing: 4px;
                        &::after{
                            content: "";
                            display: block;
                            height: 0.5px;
                            width: 70%;
                            background-color: black;
                            margin: 10px auto;
                        }
                    }
                    dl{
                        margin: 30px 100px;
                        display: grid;
                        grid-template-columns: auto auto;
                        line-height: 2;
                        @media(width <= 800px){
                            font-size: 12px;
                            grid-template-columns: auto;
                            justify-content: center;
                            margin: 20px 30px;
                        };
                        :nth-of-type(even){
                            background-color: transparent;
                        }
                        :nth-of-type(odd){
                            background-color: #dddddd;
                        }
                        dd{
                            text-align: left;
                            @media(width <=800px){
                                text-align: center;
                                padding: 0 1em;
                            }
                        }
                    }
                }
                .layout{
                    display: flex;
                    justify-content: space-around;
                    flex-direction: row;
                    margin: 0 30px;
                    @media(width <=900px){
                                flex-direction: column;
                            }
                .profile-plus{
                    align-items: center;
                    justify-content: center;
                    display: grid;
                    grid-template-columns: 100px auto;
                    grid-template-rows: auto auto;
                    margin: 30px 30px 0;
                    gap: 15px 15px;
                    align-items: flex-start;
                    
                    @media(width <=900px){
                                margin: 25px 20px 0;
                                gap: 5px;
                                grid-template-columns: 80px auto;
                                justify-content: left;
                            }
                    .title{
                        justify-content: flex-end;
                        font-size: 20px;  
                        @media(width <=900px){
                                font-size: 16px;
                            }              
                    }
                    dd , li{
                        gap: 0.5em;
                        font-size: 17px;
                        @media(width <=900px){
                               font-size: 14px;
                            }
                        
                    }
                    dt{
                        font-size: 15px;
                        @media(width <=900px){
                                font-size: 12px;
                            }
                    }
                    .profile-plus-content{
                        display: flex;
                        &::before{
                            display: block;
                            content: "";
                            background-color: #000;
                            width: 1px;
                            height: auto;
                            margin-right: 15px;
                            @media(width <=900px){
                                margin-right: 10px;
                            }
                            
                        }
                    }
                    li{
                        &:hover{
                            text-decoration: underline;
                            color: blue;
                        }
                    }
                    
                }
                }
                .note{
                    display: flex;
                    justify-content: flex-end;
                    margin-right: 50px;
                    font-size: 12px;
                    @media(width <=800px){
                                margin-top: 20px;
                            }
                }
                &::after{
                content: "";
                margin: 30px auto;
                display: block;
                width: 95%;
                height: 1.5px;
                background-color: #cccccc;
                align-items: center;
            }
            }
            .student{
                justify-content: center;
                h5{
                                font-size: 25px;
                                align-items: center;
                                width: 100%;   
                                text-align: center;
                                margin-bottom: 20px;
                                justify-content: center;
                                @media(width <=800px){
                                    font-size: 20px;
                            }
                                &::after{
                                    display: block;
                                    content: "";
                                    background-color: #000;
                                    width: 90%;
                                    height: 0.5px;
                                    margin: 0 30px;
                                    align-items: center;
                                    margin: 0 auto;
                                }                                                   
                        }
                .current{
                    display: grid;
                    grid-template-columns: auto auto;
                    margin: 30px 0;
                    gap: 30px 100px;
                    @media(width <=800px){
                        grid-template-columns: auto;
                        grid-template-rows: auto auto;
                        margin: 30px auto;
                            }
                    .number{
                        align-items: center;
                        display: flex;
                        flex-direction: column;                                     
                            .content{
                                display: flex;
                                dl{
                                    display: grid;
                                    grid-template-columns: auto auto auto;
                                    align-items: center;
                                    font-size: 20px;
                                    gap: 10px 30px;
                                    @media(width <=800px){
                                        font-size: 15px;
                                        gap: 10px 15px;
                                    }
                                    .english{
                                        font-size: 15px;
                                        @media(width <=800px){
                                            font-size: 12px;
                                        }
                                    }
                                    span{
                                        margin: 0 0.3em;
                                        font-size: 22px;
                                        @media(width <=800px){
                                            font-size: 18px;
                                        }
                                    }
                                }
                                
                            }
                            p{                                
                                text-align: end;
                                justify-content: flex-end;
                                margin: 15px;
                                font-size: 20px;
                                translate: 25%;
                                @media(width <=800px){
                                    font-size: 15px;
                                }
                                span{
                                    font-size: 24px;
                                    margin: 0 5px;
                                    @media(width <=800px){
                                        font-size: 18px;
                                    }
                                }
                            }            
                    }
                    .image{
                            justify-content: center;
                            align-items: center;
                            display: flex;
                            width: 300px;
                            @media(width <=800px){
                                margin: 0 auto;
                                width: 250px;
                            }
                            img{
                                aspect-ratio: 3 / 2;
                                object-fit: cover;
                                width: 100%;
                            }
                    }
                }
                .obog{
                    justify-content: center;
                    margin: 0 30px 30px;
                    .content{
                        display: grid;
                        grid-template-columns: 60% 40%;
                        @media(width <=800px){
                            grid-template-columns: auto;
                        }
                        dl{
                            margin-left: 100px;
                            display: grid;
                            grid-template-columns: 200px auto;
                            text-align: start;
                            gap: 20px 5px;
                            font-size: 18px;
                            @media(width <=800px){
                                grid-template-columns: auto;
                                text-align: center;
                                margin-left: 0;
                                margin: 0 auto;
                                font-size: 14px;
                                gap: 0;
                                dd{
                                    font-size: 16px;
                                    margin: 3px auto 10px;
                                }
                            }
                            
                        }
                        .path{
                            margin: 20px 50px;
                            align-items: center;
                            h6{
                                font-size: 20px;
                                text-decoration: underline;
                                justify-content: center;
                                text-align: center;
                                @media(width <=800px){
                                    font-size: 16px;
                                }
                            }
                            p{
                                font-size: 16px;
                                @media(width <=800px){
                                    font-size: 14px;
                                }
                            }
                        }
                    }
                    
                }
                .note{                    
                    text-align: end;
                    font-size: 14px;
                    margin: 10px 30px ;
                    @media(width <=800px){
                        font-size: 12px;
                    }
                    p{
                        margin-bottom: 3px;
                    }
                    a{
                        font-size: 16px;
                        margin: 0 0.3em;
                        @media(width <=800px){
                            font-size: 14px;
                        }
                        &:hover{
                            text-decoration: underline;
                            color: blue;
                        }
                    }
                }
            }
        }
    }
    footer{
        padding: 10px 10px;
        display: flex;
        height: 120px;
        background-color: #32988e;
        justify-content: center;
        .under-logo{
            display: flex;
            align-items: flex-end;
            padding: 0 30px 15px;
            img{
                display: block;
                height: 30px;
            }
        }
        
    }
}