/*forDesktop*/

html{
    box-sizing: border-box;
    font-size: 100%
}
*, *::before, *::after {
    box-sizing: inherit;
}

body{
    background-color: #FFFFFF;
    font-size: 100%;
    font-family: "Noto Sans JP", sans-serif;
    margin:0;
}

.site-wrapper{
    display: flex;
    flex-direction: column;
    width: 900px;
    margin: 0 auto;
    background-color: #FFFFFF;
}

/*header and navigation*/
header{
    position: fixed;
    height: 72px;
    max-width: 900px;
    width: 100%;
    background-color: #FFFFFF ;
    border-bottom: 2px solid #ccc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 40px;
    padding-right: 40px;
    z-index: 1000;
}

.company-title{
    white-space: nowrap;
    display: flex;
}

.logo-image{
    display: flex;
    width: 85px;
    height: 40px;
}

h1{
    font-size: 1rem;
}


/*nav layout*/
nav{
    display: flex;
}

nav ul{

    display: flex;
    list-style: none;
    font-size: 0.75rem;
    gap:2rem;
    margin-left:2rem;
}

nav li{
    white-space: nowrap;
}


@media (min-width: 481px) {
.hambuger_menu_icon{
    display: none;
}

.modal_menu{
    display: none;
}
}

/*main*/

main{
    padding-top: 72px;
}


.main-copy-bg{
    position: relative; 
    background-image: url('img/main-copy-bg.png');
    background-size: cover;
    background-position: center; 
    height: 176px;
    min-height: 176px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding-left: 40px;
    text-align: center;
    border-bottom: 1px solid #ccc;

}

.title{
    font-family: "Zen Old Mincho";
    font-weight: bold;
    font-size: 2rem;
    padding-left: 20px;
}

.subTitle{
    font-family: "Zen Old Mincho";
    font-size: 1.5rem;
    padding-left: 20px;
}


h2{
    font-family: "Noto Sans JP";
    font-weight: bold;
    font-size: 1.25rem;
    margin-bottom:4px;
}

h3{
    font-family: "Noto Sans JP";
    font-weight: normal;
    font-size: 1rem;
    margin-top: 0;
}

/*Product*/
#product{
    margin: 40px;
    max-width: 820px;
    border-bottom: 1px solid #ccc;
}
.productGrid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap:40px;
    padding-top:20px;
    padding-bottom: 40px;
}

.card{
    width: 248px;
    padding:16px;
    border-style: solid;
    border-width: 1px;
    border-color: grey;
    border-radius:8px;
    box-shadow: 2px 2px 8px grey;
}

.cardImage{
    width: 160px;
    height: 160px;
}

.cardTitle{
    font-family: "Noto Sans JP";
    font-weight: bold;
    font-size: 0.85rem;
    width:216px;
    padding-top: 8px;
    background-color: #FFFFFF;
}

.cardText{
    font-family: "Noto Sans JP";
    font-size: 0.75rem;
    width:216px;
}

#greeting{
    display: flex;
    flex-direction: column;
    margin: 40px;
    max-width: 820px;
    width: 100%;
    padding-top:40px;
    padding-bottom:40px;
    border-bottom: 1px solid #ccc;
}

.greetingText{
    font-family: "Zen Old Mincho";
    font-size: 1rem;
}
.president-name{
    margin-left: auto;

}

.coop-position{
    display: flex;
    font-family: "Zen Old Mincho";
    font-weight: bold;
    font-size: 0.8rem;
}
.name{
    display: flex;
    font-family: "Zen Old Mincho";
    font-weight: bold;
    font-size: 1.25rem;
}


/*Cooperate-Profile + MAP*/

#coopProfile{
    display: flex;
    flex-direction: column;
    margin: 40px;
    max-width: 820px;
    width: 100%;
    padding-top:40px;
    padding-bottom:40px;
    border-bottom: 1px solid #ccc;
}

.info{
    display: flex;
    flex-direction: row;
    width: 100%;

}

dl{
    display:flex;
    flex-wrap: wrap;
    border: 1px solid #ccc;
    width: 376px;
    font-size: 12px;
    margin-right:20px;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 0.75rem;
}
dt{
    background: #ddd;
    width: 25%;
    box-sizing: border-box;
    border: 1px solid #ccc; 
    padding: 8px;
}
dd{
    margin: 0;
    border: 1px solid #ccc;
    width: 75%;
    box-sizing: border-box;
    padding: 8px;
}
.profileList{
    list-style: none;
    padding: 0;
    margin: 0;
}

.map{
    background-color: #CCC;
    width: 400px;
    height:400px;
    margin-left: auto;
}


/*Equipment*/
#equipment{
    display: flex;
    flex-direction: column;
    margin: 40px;
    width: 820px;
    padding-top:40px;
    padding-bottom:40px;
    border-bottom: 1px solid #ccc;
}

.contText{
    font-family: "Noto Sans JP";
    font-size: 14px;
    width: 350px;
    margin-top: 16px;
    margin-bottom: 16px;
}

.equip-line1{
    display: flex;
    gap: 60px;
}

.equip-line2{
    display: flex;
    gap: 60px;
    align-items: flex-end;
    margin-top: 40px;
}

.equip-image1{
    width:400px;
    object-fit: contain;

}

.equip-image2{
    width:400px;
    object-fit: contain;

}

.equip-image3{
    width:200px;
    object-fit: contain;
}

.equip-cap{
    font-family: "Noto Sans JP";
    font-size: 12px;
    text-align: center;
    padding-top: 8px;
    padding-bottom: 8px;
}


/*achieve*/
#achieve{
    display: flex;
    flex-direction: column;
    margin: 40px;
    width: 820px;
    padding-top:40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #ccc;
}

.achieveContainer{
    display: flex;
    justify-content:space-between;
    padding-top:40px;
}

.textContainer{
    display: flex;
    flex-direction:column;
}

.achieveTitle{
    font-family: "Noto Sans JP";
    font-weight: bold;
    font-size: 16px;
    padding: 16px;
}

.achieveText{
    font-family: "Noto Sans JP";
    font-size: 14px;
    width:360px;
    margin-left:16px;

}

.imgContainer{
    display: flex;
    flex-direction:row;
    align-items: center;
    padding:8px;
    gap: 40px;
    
}
.capsetContainer{
    display: flex;
    flex-direction:column;
    align-items: center;
}
.cap{
    display: flex;
    flex-direction:column;
}

.cap-cooperateName{
    display: flex;
    font-family: "Noto Sans JP";
    font-weight: bold;
    font-size: 12px;
    justify-content: center;
    text-align:center;
    padding-top:8px;
    padding-bottom:8px;
}
.cap-exp{
    display: flex;
    font-family: "Noto Sans JP";
    font-size: 10px;
    justify-content: center;
    text-align:center;
}

.achieveImg{
    background-color: gray;
    width:  160px;
    height: 160px;

}

#contact{
    display: flex;
    flex-direction: column;
    margin: 40px;
    padding-top:0px;
    padding-bottom:40px;
}
.contactContainer{
    display: flex;
    justify-content: center;
}

footer{
    height: 80px;
    width: 820px;
    background-color: #FFFFFF ;
    border-top: 2px solid #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Noto Sans JP";
    font-weight:normal;
    font-size: 14px;
    padding-left: 40px;
    padding-right: 40px;
}

/*image-set*/

#img-headerLogo{
    background-image: url("img/primex-logo.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 80px;
    height: 30px;
}

#img-product01{
    background-image: url("img/productImage_01.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 160px;
    height: 160px;
}

#img-product02{
    background-image: url("img/productImage_02.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 160px;
    height: 160px;
}

#img-product03{
    background-image: url("img/productImage_03.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 160px;
    height: 160px;
}

#img-product04{
    background-image: url("img/productImage_04.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 160px;
    height: 160px;
}

#img-product05{
    background-image: url("img/productImage_05.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 160px;
    height: 160px;
}

#img-product06{
    background-image: url("img/productImage_06.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 160px;
    height: 160px;
}



#img-nameCard01{
    background-image: url("img/AchieveImage_01.png");
    background-repeat: no-repeat;
    background-size: cover;
    width: 176px;
    height: 176px;
}

#img-nameCard02{
    background-image: url("img/AchieveImage_02.png");
    background-repeat: no-repeat;
    background-size: cover;
    width: 176px;
    height: 176px;
}

#img-leaflet01{
    background-image: url("img/AchieveImage_03.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 176px;
    height: 248px;
}

#img-leaflet02{
    background-image: url("img/AchieveImage_04.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 176px;
    height: 248px;
}


#img-brochure01{
    background-image: url("img/AchieveImage_05.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 176px;
    height: 176px;
}

#img-brochure02{
    background-image: url("img/AchieveImage_06.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 176px;
    height: 176px;
}


#img-DTP01{
    background-image: url("img/AchieveImage_07.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 176px;
    height: 176px;
}

#img-DTP02{
    background-image: url("img/AchieveImage_08.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 176px;
    height: 176px;
}


#img-selfpub01{
    background-image: url("img/AchieveImage_09.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 176px;
    height: 248px;
}

#img-selfpub02{
    background-image: url("img/AchieveImage_10.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 176px;
    height: 248px;
}


#img-ebook01{
    background-image: url("img/AchieveImage_11.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 392px;
    height: 185px;
}


#contactImg{
    width: 496px;
    height: 186px;
    background-image: url("img/contact-banner.png");
    background-repeat: no-repeat;
    background-size: contain;
    margin-top:20px;

}


/*interactive*/
html{
    scroll-behavior: smooth;
    scroll-padding-top: 72px;
}

a{
    color:#000000;
    text-decoration: none;
}
a:hover{
    color:#2f4f4f;
}
a:visited{
    color:#000000;
}

.nav-button:hover {
    color:#2f4f4f;
}