@charset 'utf-8';
@keyframes rotate-slow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
/* mainvisual */
#hero .base-wrap{
    position: relative;
    padding: 7.3rem 0 13rem;
}
#hero .base-wrap .hero__title .hero__title__text{
    display: block;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 3rem;
}
#hero .base-wrap .hero__title .hero__title__logo img{
    max-width: 500px;
    width: 100%;
}
#hero .base-wrap .hero__pic{
    position: absolute;
    top: 0;
    right: -6.25vw;
    max-width: 780px;
    max-height: 638px;
    width: 100%;
    height: 100%;
    z-index: 1;
}
#hero .base-wrap .hero__pic__circle {
    position: absolute;
    top: 15rem;
    right: -5vw;
    max-width: 584px;
    max-height: 584px;
    width: 100%;
    height: 100%;
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rotating-img {
    width: 100%;
    height: auto;
    animation: rotate-slow 60s linear infinite;
    transform-origin: center center;
    display: block;
    object-fit: contain;
    max-width: 584px;
    max-height: 584px;
}
@media screen and (max-width: 1180px) {
    #hero .base-wrap {
        padding: 7.3rem 0 8.3rem;
    }
    #hero .base-wrap .hero__title .hero__title__logo img {
        max-width: 380px;
    }
    #hero .base-wrap .hero__pic {
        right: 0vw;
        max-width: 54.17vw;
        max-height: 44.31vw;
        bottom: -10%;
        top: initial;
    }
    #hero .base-wrap .hero__pic__circle {
        right: 0;
        max-width: 50.56vw;
        max-height: 50.56vw;
    }
}
@media screen and (max-width: 800px) {
    #hero .base-wrap .hero__title .hero__title__logo img {
        max-width: 300px;
    }
    #hero .base-wrap .hero__title .hero__title__text {
        font-size: 3rem;
        margin-bottom: 2rem;
    }
}
@media screen and (max-width: 767px) {
    #hero .base-wrap {
        padding: 5% 0 55%;
    }
    #hero .base-wrap .hero__title{
        text-align: center;
    }
    #hero .base-wrap .hero__pic {
        top: initial;
        bottom: -50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        max-width: 90%;
        max-height: max-content;
    }
    #hero .base-wrap .hero__title .hero__title__text {
        font-size: 3.2rem;
        margin-bottom: 2rem;
        text-align: center;
    }
    #hero .base-wrap .hero__pic__circle {
        top: initial;
        bottom: -90%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        max-width: 90%;
        max-height: max-content;
    }
}
@media screen and (max-width: 450px) {
    #hero .base-wrap .hero__pic {
        max-width: 100%;
        bottom: -45%;
    }
    #hero .base-wrap .hero__pic__circle {
        max-width: 100%;
        bottom: -80%;
    }
    #hero .base-wrap .hero__title .hero__title__logo img {
        max-width: 250px;
    }
    #hero .base-wrap {
        padding: 5% 0 60%;
    }
    #hero .base-wrap .hero__title .hero__title__text {
        font-size: 2.4rem;
        margin-bottom: 1rem;
    }
}
/* lead */
#lead{
    background: var(--color1);
    padding: 10rem 0;
}
#lead h3{
    color: #fff;
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.5;
    margin-bottom: 2.4rem;
}
#lead p{
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.8;
}
@media screen and (max-width: 1023px) {
    #lead{
        padding: 6rem 0 6rem;
    }
}
@media screen and (max-width: 767px) {
    #lead h3 {
        font-size: 2.4rem;
        margin-bottom: 1rem;
    }
    #lead p {
        font-size: 1.6rem;
    }
}
/* service */
#service{
    padding: 10rem 0;
}
#service .base-width{
    position: relative;
}
#service .hero__pic__circle {
    position: absolute;
    bottom: 0;
    right: -260px;
    max-width: 584px;
    max-height: 584px;
    width: 100%;
    height: 100%;
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.15;
}
#service .list_item{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 4.2rem;
}
#service .list_item li{
    box-shadow: 0px 0px 23px 0px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    width: calc(95.91% / 2);
}
#service .list_item li .img{
    border-radius: 15px 15px 0 0;
    display: block;
    position: relative;
    overflow: hidden;
}
#service .list_item li .img img{
    border-radius: 20px 20px 0 0;
    width: 100%;
    transition: var(--anim);
    object-position: center;
    max-height: 220px;
    object-fit: cover;
}
#service .list_item li .box{
    padding: 3.2rem 1.6rem;
    background: #fff;
    border-radius: 0 0 15px 15px;
}
#service .list_item li .box .ttl{
    font-size: 2.4rem;
    text-align: center;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1;
}
#service .list_item li .box .txt{
    text-align: center;
}
@media screen and (max-width: 1023px) {
    #service{
        padding: 6rem 0;
    }
}
@media screen and (max-width: 767px) {
    #service .list_item li {
        width: 100%;
    }
    #service .list_item {
        row-gap: 3.2rem;
    }
    #service .list_item li .img img {
        max-height: 180px;
    }
    #service .list_item li .box .ttl {
        font-size: 1.8rem;
    }
    #service .list_item li .box {
        padding: 2.4rem 1.6rem;
    }
}
/* overview */
#overview{
    background: var(--color3);
    padding: 10rem 0;
    overflow: hidden;
}
@media screen and (max-width: 1023px) {
    #overview{
        padding: 6rem 0;
    }
}
/* mission */
#mission .lead{
    color: #fff;
    line-height: 1.8;
}
#mission .site__section__main{
    padding: 6.4rem 0 10rem;
    margin: 0 calc((100vw - 100%) / -2) 0;
}
@media screen and (max-width: 1023px) {
    #mission .site__section__main {
        padding: 4rem 0 6rem;
    }
}
@media screen and (max-width: 599px) {

}
/* philosophy */
#philosophy .philosophy_list{
    display: flex;
    justify-content: space-between;
}
#philosophy .philosophy_list li{
    background: var(--color4);
    width: calc(73.82% / 3);
    padding: 3.2rem;
    color: #fff;
    font-size: 2.8rem;
    font-weight: 900;
}
#philosophy .philosophy_list li .number{
    display: inline-block;
    font-family: var(--en);
    font-size: 2.4rem;
    position: relative;
    padding-right: 9rem;
    letter-spacing: 0.1em;
    margin-bottom: .8rem;
}
#philosophy .philosophy_list li .number::after{
    content: "";
    width: 8rem;
    height: 1px;
    background: #fff;
    display: block;
    position: absolute;
    top: 50%;
    right: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
@media screen and (max-width: 1023px) {
    #philosophy .philosophy_list {
        flex-wrap: wrap;
        gap: 2.4rem;
    }
    #philosophy .philosophy_list li {
        width: 100%;
    }
}
@media screen and (max-width: 767px) {
    #philosophy .philosophy_list li {
        padding: 2rem;
        font-size: 1.8rem;
    }
    #philosophy .philosophy_list li .number {
        font-size: 1.8rem;
    }
    #philosophy .philosophy_list {
        gap: 1.6rem;
    }
}
/* member */
#member{
    padding: 10rem 0;
}
#member .member_item{
    display: flex;
    justify-content: space-between;
}
#member .member_item li{
    width: calc(95.45% / 2);
}
#member .member_item li .photo{
    border-radius: 15px;
}
#member .member_item li .photo img{
    width: 100%;
    border-radius: 15px;
}
#member .member_item li .detail{
    margin-top: 2.4rem;
}
#member .member_item li .detail .name{
    font-size: 2.8rem;
    font-weight: 900;
}
#member .member_item li .detail .name .en{
    font-family: var(--en);
    font-weight: 200;
    font-size: 1.6rem;
    margin-left: 1.6rem;
}
@media screen and (max-width: 767px) {
    #member{
        padding: 6rem 0;
    }
    #member .member_item li .detail .role{
        font-size: 1.4rem;
    }
    #member .member_item li .detail .name {
        font-size: 2.4rem;
    }
    #member .member_item li .detail .name .en {
        font-size: 1.4rem;
    }
    #member .member_item li .detail {
        margin-top: 1.6rem;
    }    
}
@media screen and (max-width: 599px) {
    #member .member_item {
        flex-wrap: wrap;
        gap: 3.2rem;
    }
    #member .member_item li {
        width: 100%;
    }
}
/* sponsor */
#sponsor{
    padding: 8rem 0;
    background: var(--color5);
}
#sponsor .base-width{
    position: relative;
}
#sponsor .hero__pic__circle {
    position: absolute;
    top: -22rem;
    left: -350px;
    max-width: 584px;
    max-height: 584px;
    width: 100%;
    height: 100%;
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.15;
}
#sponsor .base-grid{
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 0 1.6rem;
    align-items: center;
}
#sponsor .site__section__block__pic{
    position: relative;
    height: 100%;
    min-height: 367px;
    display: flex;
    align-items: center;
    grid-column: 8 / span 12;
    justify-content: flex-end;
}
#sponsor .site__section__block__pic img{
    position: absolute;
    inset: 0;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
    margin: 0;
    border-radius: 5.2rem 0 0 5.2rem;
    width: 100vw;
    right: 0;
    max-width: calc(100% + (100vw - 100%)/2);
}
#sponsor .site__section__block__cont{
    grid-column: 1 / span 7;
    grid-row: 1;
}
#sponsor .site__section__block__cont p{
    margin: 0 5rem 0 0;
}
#sponsor .site__section__sub-block__link{
    justify-content: left;
}
@media screen and (max-width: 1023px) {
    #sponsor .site__section__block__pic{
        height:26rem;
    }
    .site__section__block__cont {
        grid-column: 8/span 5;
    }
    .site__section__block__pic {
        height: 44rem !important;
    }
}
@media screen and (max-width: 767px) {
    .site__section__block {
        display: block !important;
    }
    #sponsor .site__section__block__pic{
        margin: 0 0 3.6rem;
        min-height: initial;
    }
    #sponsor .site__section__block__pic img {
        max-width: initial;
        border-radius: 2.4rem 0 0 2.4rem;
    }
    #sponsor .site__section__block__cont p {
        margin: 0;
    }
    .site__section__sub-block__link {
        margin-top: 3.2rem;
    }
    #sponsor {
        padding: 6rem 0;
    }
}
/* news */
#news .base-width{
    position: relative;
}
#news .hero__pic__circle {
    position: absolute;
    bottom: -30rem;
    right: -220px;
    max-width: 584px;
    max-height: 584px;
    width: 100%;
    height: 100%;
    z-index: -1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.15;
}
@media screen and (max-width: 1023px) {

}
@media screen and (max-width: 599px) {

}

#service .list_item li .box .more {
    display: block;
    text-align: center;
    margin-top: 1.6rem;
    font-family: var(--en);
    color: var(--color1);
}
#service .list_item li .box .soon {
    display: block;
    text-align: center;
    margin-top: 1.6rem;
    font-family: var(--en);
    color: #aaa;
}
#service .list_item li .box .more:hover{
    opacity: 0.5;
}