@charset "UTF-8";

:root{
    --v-space: clamp(90px,9vw,120px);
}

html{
    height: 100%;
}

body{
    margin: 0;
    font-weight: 400;
    font-style: normal;
    color: #fff;
    font-family: "Titillium Web", sans-serif;
	background: linear-gradient(90deg, red 50%, black 50%);;
    padding: 0;

}

/* body:before {
	top: 0;
	left: 50%;
	width: 50%;
	height: 100%;
	content: '';
	position: absolute;
	background: #000;
	z-index: -1;
} */

.toplogo{
    height: auto;
    position: absolute;
    top: 50%;
    left: 51.5%;
    transform: translate(-50%, -50%);
    max-width: 180em;
    /* width: 94%; */
    margin-top: 0;
    line-height: 2;
}

@media(max-width:768px){
    .toplogo{
        width: 94%;
        position: absolute;
        top: 50%;
        left: 55%;

    }
}

img{
    padding: var(--v-space)0;
}

h1{
    font-family: "Titillium Web", sans-serif;
    font-weight: 400;
    font-style: normal;
}

h1 a:visited{
    color: #000;
}

header.header01{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
}


nav.nav ul.item{
    display: flex;
}

.list{
    color: #fff;
    padding-left: 1.5rem;
    list-style: none;
    font-family: "Titillium Web", sans-serif;
    font-weight: 200;
    font-style: normal;
    font-size: 35px;
}

.list a {
    color: white;
    text-decoration: none;
}

.list a:hover {
    text-decoration: underline;
}

/* about.htmlに関するCSS */
main{
    color: #fff;
}

footer{
    color: #fff;
    text-align: center;
}

main h2{
    font-size: 30px;
    text-align: center;
    margin-bottom: 40px;
}

main p{
    font-size: 20px;
    text-align: center;
}

/* service.htmlに関するCSS */
main h3{
    border-bottom: #fff solid 1px;
    /* text-decoration: underline; */
    padding-bottom: 3px;
    display: inline-block;
}

.menu{
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 2em;
}

/* plans.htmlに関するCSS */ 
 .plans{
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 4em;
}

.plans img{
    width: 40%;
    height: auto;
    padding: 0;
    margin: 18.720px;
    border-radius: 30%;
}

.w-container{
    width: min(92%,1166%);
    margin: auto;
}

/* contact.htmlに関するcss */
address{
    margin-top: 40px;
    margin-bottom: 100px;

}

/* モバイル版400ｐｘ以下の時のCSS */
@media(max-width:400px){
    .header01{
        display: flex;
        justify-content: space-between;
    }
    body p{
        font-size: 15px;
    }
    }
 /* レスポンシブに対応させる（チャットGPTより） */

.header01 {
    text-align: center;
    padding: 20px;
    background-color: #fff;
}

.nav .item {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.nav .list a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 18px;
}

.toplogo {
    margin-top: 20px;
}

.toplogo img {
    width: 100%;
    max-width: 700px;
    height: auto;
}

/* -------------------------- */
/* レスポンシブ対応：スマホ用 */
/* -------------------------- */
@media (max-width: 768px) {
    .nav .item {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .nav .list a {
        font-size: 16px;
    }

    .toplogo img {
        width: 90%;
    }
}