@charset "UTF-8";
/* CSS Document */

@media screen and (min-width: 0px) and (max-width: 768px) {

.main-img {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
}

section.ind-sec {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
}

section.ind-sec .sec-wrap {
    width: 90% !important;
}

.mds-en {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 500;
}

h2.ind-mds {
    width: 100%;
    margin: 0 0 30px;
    padding: 0;
    position: relative;
    overflow: hidden;
    font-size: 3.0em;
    line-height: 140%;
    color: #FFF;
    
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 500;
}

h2.mds-ctr {
    font-size: 2.2em;
    text-align: center;
}

.ind-about {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    display: block;
}

.ind-about .ia-left {
    width: 360px;
/*    width: 90%;*/
    margin: 0 auto;
    padding: 0 0 130%;
    position: relative;
}

.ind-about .ia-left .ia-flask {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url("../img/index/about_planetflask.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

@keyframes rotate-ryuguu 
{from { transform: rotate(0deg) }
 to { transform: rotate(360deg) } /**change to a higher value for more seamless loop*/
}

.ind-about .ia-left .ia-ryuguu {
/*    width: 55%;*/
    width: 180px;
    position: absolute;
    left: 25%;
    top: 32%;
    transform: translate(-50%, -50%);
    
animation: rotate-ryuguu 20s linear infinite; /**change the value to make rotation faster or slower*/
}

.ind-about .ia-right {
    width: 100%;
    position: relative;
    margin: 0;
}

.ia-right .ia-txt {
    width: 100%;
    margin: 0 0 30px;
    padding: 0;
    position: relative;
    overflow: hidden;
    font-size: 90%;
    line-height: 230%;
    text-align: justify;
}

ul.ia-links {
    width: 100%;
    max-width: 600px;
    margin: 0 0 60px;
    padding: 0;
    float: none;
    list-style: none;    
}

ul.ia-links li {
    width: 100%;
    margin: 0;
    padding: 20px 0;
    position: relative;
    overflow: hidden;
    border-bottom: solid 2px #FFF;
}

ul.ia-links li:last-child {
    border-bottom: none;
}

ul.ia-links li a {
    width: 100%;
    color: #FFF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    
    transition: all 0.3s;
}

ul.ia-links li a:hover {
    opacity: 0.5;
}

ul.ia-links li a:after {
    content: "";
    width: 30px;
    height: 30px;
    display: inline-block;
    background-image: url("../img/common/arr-r-white.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

ul.ia-links li .ia-link-name .ia-link-ja {
    font-size: 1.6em;
    line-height: 120%;
    font-weight: bold;
    margin: 0 0 5px;
}

ul.ia-links li .ia-link-name .ia-link-en {
    font-size: 1.1em;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 500;
}


ul.aboutgallery-list {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    display: flex;
}
ul.aboutgallery-list li {
    width: calc(100%/3);
    line-height: 70%;
}

/***CURRENT PROJECTS***/


ul.projects-list {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    list-style: none;
}

ul.projects-list li {
    width: 100%;
    margin: 0 0 100px;
    padding: 0;
    position: relative;
    overflow: hidden;
    display: block;
}

ul.projects-list li:last-child {
    margin: 0;
}

ul.projects-list li .pl-l {
    width: 60%;
    margin: 0 auto 10px;
}

ul.projects-list li .pl-r h3.pl-title {
    font-size: 120%;
    font-weight: bold;
    text-align: center;
    margin: 0 0 30px;
}

ul.projects-list li .pl-r {
    width: 100%;
    text-align: justify;
    font-size: 90%;
}

ul.projects-list li .pl-r .pl-more {
    width: 100%;
    margin: 30px 0 0;
    float: right;
    font-size: 1.4em;
    font-weight: bold;
    line-height: 110%;
}

ul.projects-list li .pl-r .pl-more a {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    color: #FFF;
    text-decoration: none;
}

ul.projects-list li .pl-r .pl-more a:after {
    content: "";
    display: inline-block;
    width: 30px;
    height: 30px;
    margin: 0 0 0 30px;
    background-image: url("../img/common/arr-r-white.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

.ind-news {
    background-color: #090021 !important;
}


.btn-more {
    width: 80%;
    max-width: 300px;
    margin: 100px auto 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    background-color: #FFF;
    border: solid 3px #FFF;
    border-radius: 50px;
    font-size: 110%;
    font-weight: bold;
    
    transition: all 0.3s;
}

.btn-more:hover {
    background-color: #090021;
}

.btn-more a {
    width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 15px 10%;
    color: #120046;
    text-decoration: none;
    
    transition: all 0.3s;
}


.btn-more:hover a {
    width: 78%;
    padding: 15px 11%;
    color: #FFF;
}

.btn-more a:after {
    content: "";
    display: inline-block;
    width: 25px;
    height: 25px;
    margin: 0 0 0 30px;
    background-image: url("../img/common/arr-r-purple.svg");
    background-size: contain;
    background-repeat: no-repeat;
    
    transition: all 0.3s;
}

.btn-more:hover  a:after {
    background-image: url("../img/common/arr-r-white.svg");
}

ul.links-list {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    list-style: none;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

ul.links-list li {
    width: 48%;
    margin: 0 0 10px;
    
    transition: all 0.3s;
}

ul.links-list li:nth-child(3n+3) {
    margin: 0 0 10px;
}

ul.links-list li:hover {
    opacity: 0.5;
}

ul.links-list li a {
    width: 100%;
    display: block;
}


}