@charset "utf-8";

/* Reset
--------------------------*/
* {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
}
body {
 line-height: 1;
 font-family: "Noto Sans JP", sans-serif;
 color: #2F2725;
 background-color: #f6f5f5f5;
}
ul {
 list-style: none;
}
a {
 display: block;
 text-decoration: none;
 color: inherit;
}
img {
 max-width: 100%;
 vertical-align: bottom;
}


/* 共通
--------------------------*/
#pc {
 display: block;
}
#sp {
 display: none;
}

.works_container {
 max-width: 810px;
 margin: 0 auto;
}
h4 {
 font-size: 24px;
}

/* Navi サブメニュー */
.works_list {
 display: block;
 display: none;
 position: absolute;
}
.works_list a {
 padding-block: 30px 3px;
 border-bottom: 1.5px solid transparent;
}
.works_list li:hover a {
 border-bottom: 1.5px solid #2F2725;
 transition: 200ms;
}
.works_list li:hover a::after {
 content: "を見る";
 font-size: 10px;
 letter-spacing: normal;
 padding-left: 3px;
}
.pc-nav li:hover .works_list {
 display: block;
}


/* Header
--------------------------*/
.header_inner {
 display: flex;
 justify-content: space-between;
 padding: 4%;
}
nav {
 font-family: "Poppins", sans-serif;
 font-weight: 500;
 letter-spacing: 3px;
}
nav ul {
 display: flex;
 gap: 30px;
}


/* Main
--------------------------*/
.type {
 font-size: 16px;
 margin-top: 30px;
 margin-bottom: 60px;
}
.more {
 width: 242px;
 line-height: 72px;
 margin: 0 auto;
 border: 1.5px solid #000;
 border-radius: 72px;
 background-color: #fff;
 font-size: 22px;
 font-weight: bold;
 text-align: center;
}

.mocup_image {
 text-align: center;
 margin-bottom: 75px;
}
h4 {
 margin-top: 55px;
 font-weight: 500;
}
.prottype a {
 text-decoration: underline;
 font-size: 15px;
}
.spec {
 line-height: 2;
 font-size: 15px;
 margin-bottom: 95px;
}
.intro {
 margin-bottom: 60px;
}
.intro h5 {
 font-size: 17px;
 font-weight: 500;
 margin-bottom: 35px;
}
.intro p {
 line-height: 1.9;
 font-size: 15px;
}

.site_image_pc {
 width: 68%;
}
.site_image_sp {
 width: 28%;
}
.site_image p {
 font-size: 20px;
 font-weight: 500;
 margin-bottom: 15px;
}


/*--------------------------
         MediaQuery
--------------------------*/

@media (width <= 743px) {
 
 /* 共通
--------------------------*/
#pc {
 display: none;
}
#sp {
 display: block;
}

body {
 font-weight: 350;
}
h4 {
 font-size: 24px;
 line-height: 1.7;
}


/* Header
--------------------------*/
.header_inner {
 display: block;
 padding: 5%;
}
h1::before {
 display: none;
}
nav {
 font-family: "Poppins", sans-serif;
 font-weight: 500;
 letter-spacing: 3px;
}


/* Main
--------------------------*/
.works_container {
 padding: 5%;
}


}