@charset "UTF-8";

body {
    margin: 0px;
    padding: 0px;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #444;
}

h1, h2, h3, h4, h5, h6, p, ul {
    color: #444;
    margin: 0px;
    padding: 0px;
}

li{
    list-style: none;
}

a {
    text-decoration: none;
    color: #444;
}

.header-nav a:hover {
    text-decoration: underline;
}

/* Header Styles */
header {
    height: 120px;
    display: flex;
}

.container-header {
    width: 95%;
    margin: 0px auto;
    padding: 10px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    padding: 0 30px;
    display: inline-block;
    text-align: left;
    align-items: center;
}

header h1{
    font-size: 4.5rem;
    font-family: "Outfit", sans-serif;
    font-weight: 500;
}


.header-nav{
    display: inline-block;
    align-items: baseline;
}

nav ul{
    display: flex;
}

.nav-title{
    padding: 0 30px;
    justify-content: center;
    text-align: center;
}

.nav-title-en{
    font-size: 1.7rem;
    margin: 0 0;
    font-family: "Outfit", sans-serif;
    font-weight: 200;
}

.nav-title-ja{
    font-size: 0.8rem;
    margin: 0 0; 
}

/*main styles*/

.container-main {
    width: 95%;
    margin: 100px auto;

}

.main-title {
    padding-bottom: 10px;
    
}

.main-section{
    margin: 30px;
    display: flex;
    justify-content: space-around;
}


.main-left{
    width: 75%;
    flex-direction: column;
    gap: 20px;
    background-color: lightcoral;
}


.main-left img{
    width: 30%;
    height: 200px;
    margin-bottom: 20px;
    background-color: rgb(141, 128, 240);
}


.main-right{
    width: 25%;
    margin-left: 30px;
    text-align: right;
}


.main-right h2{
    font-size: 2rem;
    font-family: "Outfit", sans-serif;
    font-weight: 300;
}


.main-right p{
    font-size: 0.8rem;
    font-family: "Outfit", sans-serif;
    padding-bottom: 15px;
}


.main-right-link{
    font-family: "Outfit", sans-serif;
    font-weight: 150;
}

/* Footer Styles */
footer {
    width:95%;
    margin: 0px auto;
    padding: 30px 0px;
    height: 100px;
    color: white;
    text-align: center;
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid #444;
}

footer p {
    margin: 0px;
    font-size: 0.65rem;
}

.footer-contents {
    margin-right: 30px;
    margin-top: 60px;
    text-align: right;
    text-align: center;
}

.copy {
    font-family: "Outfit", sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    font-weight: 300;
}


/* profile page styles 
-------------------------------------*/

.contents-title h2{
    font-size: 4.5rem;
    font-family: "Outfit", sans-serif;
    font-weight: 100;
    margin: 10px 35px;
}

.contents-title p{
    font-size: 1rem;
    font-family: "Outfit", sans-serif;
    font-weight: 100;
    margin: 0px 35px;
}

.contents-main-text{
    margin-top: 120px;
    margin-left: 100px;
    padding: 0px 0px;
}

.contents-main-text h3{
    font-size: 1.3rem;
    font-weight: 300;
    margin: 0px;
    padding-bottom: 30px;
}
.contents-main-text p{
    font-size: 1rem;
    font-family: "Outfit", sans-serif;
    padding-bottom: 80px;
    line-height: 1.75rem;
}


.belief-text {
    margin: 60px 38px;
    padding: 0px 0px;
}

.belief-text h3{
    font-family: "Outfit", sans-serif;
    font-weight: 400;
    font-size: 2rem;
}

.belief-text p{
    font-size: 1.2rem;
}

.belief-contents {
    display: flex;
}

.belief-left {
    width: 45%;
}

.belief-right {
    width: 30%;
    margin-right: 50px;
    align-items: center;
    justify-content: flex-end;
}









.remake-en{
    font-size: 5rem;
    font-family: "Outfit", sans-serif;
    font-weight: 300;
}




.sub-contents{
    width: 35%;
    margin: 50px 100px;
    align-items: center;
}

.belief-contents{
    display: flex;
}


.exploration-contents {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    width: 95%;
    gap: 10px;
    background-color: aqua;
    margin-top: 50px;
    padding: 80px 35px;
}

.article-main{
    width: 100%;
    background-color: violet;
}

.article-img{
    height: 200px;
    background-color: lightgray;
}

.article-text{
    padding: 15px 20px;
}

.article-time p{
    font-size: 0.8rem;
    color: #888;
}

.article-title h3{
    font-weight: 400;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.article-body p{
    font-size: 0.8rem;
}

.article-link {
    margin-top: 10px;
}


.article-link a{
    font-size: 0.9rem;
    text-decoration: underline;
}