@charset "UTF-8";
/* CSS Document */

body{
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
}

.logo img{
    width: 120px;
    height: auto;
}

.header{
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
}



.header{
    background: #fff;
    position: relative;
    z-index: 100;
}

.header-inner{
    display:flex;
    align-items: center;
    justify-content: space-between;
}

.logo img{
    width: 120px;
    height: auto;
    display: block;
}

.logo{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.header-nav{
    display: none;
}

.menu-btn{
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
}

.menu-btn span{
    display: block;
    width: 20px;
    height: 2px;
    background: #333;
    margin: 0 auto;
    transition: 0.3s;
}

.header-nav{
    display: none;
    background: #fff;
}

.header-nav.is-open{
    display: block;
}

.navi-list{
    list-style: none;
    margin: 0;
    padding: 16px 0;
}

.nav-list li{
    border-bottom: 1px solid #eee;
    list-style: none;
}



.nav-list a{
    display: block;
    padding: 16px;
    color: #333;
    text-decoration: none;
    font-size: 18px;
}

.nav-list a span{
    display: block;
    font-size: 13px;
    margin-top: 4px;
    color: #666;
}

.menu-btn.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-btn.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-btn.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}


.contact-btn{
    display: none;
}


/*---- トップ画像　----*/

.hero{
    position: relative;
    width: 100%;
}

.hero-slide{
    position: relative;
}

.hero-slide{
    height: 300px;
    background-image: url("../images/hero-sp.jpg");
    background-size: cover;
    background-position: center;
}

.hero-slide img{
    width: 100%;
    height: auto;
    display: block;
}

.hero-dots{
    text-align: center;
    padding: 12px 0;
}

.hero-text{
    padding: 24px 20px 32px;
    text-align: center;
}

.hero-title{
    font-weight: 500;
    font-size: 26px;
    line-height: 1.4;
    margin-bottom: 12px;
}

.hero-sub{
    font-size: 16px;
    line-height: 1.6;
}

.hero-text .container{
    max-width: 600px;
    margin: 0 auto;
}



/*----  works ----*/

/*---- works共通　----*/



.works{
    padding: 50px 40px 50px;
    background: #FFFBE3;
}

.works-list{
    display: grid;
    gap: 24px;
}

.works-card{
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 16px;
    over-flow: hidden;
    box-shadow: 4px 4px 4px rgba(0,0,0,0.25)
}

.works-image{
    width: 100%;
    height: 224px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.works-card1 .works-image{
    background-image: url("../images/works-sp01.jpg");
}

.works-card2 .works-image{
    background-image: url("../images/works-sp02.jpg");
}

.works-card3 .works-image{
    background-image: url("../images/works-sp03.jpg");
}

.works-card4 .works-image{
    background-image: url("../images/works-sp04.jpg");
}



.works-card-body{
    padding: 20px;
    text-align: center;
}


.works .section-title{
    text-align: center;
    margin-bottom:50px;
}

.works .section-title h2{
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 4px;
}

.works .section-title p{
    font-size: 16px;
    font-weight: 400;
    line-height: 1.0;
    margin: 0;
}

.works-list{
    display: flex;
    flex-direction: column;
    gap: 50px;
    
}

.works-card h3{
    font-size: 22px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0 0 15px;
}

.works-card p{
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    margin: 0 0 15px;
}

.view-more{
    display: block;
    background: #6B8F71;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    border-radius: 20px;
    width: 100%;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
}

.view-more:hover{
    opacity: 0.9;
}

.view-more:active{
    transform: translateY(2px);
    box-shadow: 0 2px 0 #5A785F;
}

/*---- why me ----*/

.why-me{
    padding: 50px 0;
    background: #fff;
}

.why-me .section-title{
    text-align: center;
    margin-bottom:50px;
}

.why-me .section-title h2{
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 4px;
}

.why-me .section-title p{
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
}

.why-me-list{
    display: flex;
    flex-direction: column;
    gap: 50px;
}


.why-me-icon img{
    width: 144px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.why-me-text{
    text-align: center;
}

.why-me-text h3{
    font-size: 22px;
    font-weight: 500;
    line-height: 1.4;
    margin: 15px 0 0;
}

.why-me-text p{
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    margin: 0 0 15px;
}


/*---- about ----*/

.about{
    padding: 50px 0;
    background: #fffbe3;
}

.about .section-title{
    text-align: center;
    margin-bottom:50px;
}

.about .section-title h2{
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 4px;
}

.about .section-title p{
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
}

.about-image img{
    width: 120px;
    height: 120px;
    background: #D9D9D9;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto 16px;
}

.about-name{
    font-size: 22px;
    font-weight: 500;
    line-height: 1.4;
    margin: 30px 0 0;
    text-align: center;
}

.about-text{
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    margin: 15px 0 50px;
    text-align: center;
}

.about .contact-btn{
    display: block;
    background: #FF9500;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    border-radius: 20px;
    width: 100%;
    font-size: 18px;
    text-decoration: none;
}

.about .contact-btn:hover{
    opacity: 0.9;
}

.about .contact-btn:active{
    transform: translateY(2px);
    box-shadow: 0 2px 0 #E78701;
}


/*---- FAQ ----*/

.faq{
    padding: 50px 0;
    text-align: center;
}

.faq .container{
    padding: 0 50px;
    text-align: left;
}

.faq .section-title{
    text-align: center;
    margin-bottom:50px;
}

.faq .section-title h2{
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 4px;
}

.faq .section-title p{
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
}

.faq-item{
    margin-bottom: 50px;
}

.q{
    font-weight: bold;
    margin-bottom: 30px;
}

.a{
    line-height: 1.8;
}

.q,
.a{
    padding-left: 2em;
    position: relative;
}

.q::before{
    content: "Q.";
    position: absolute;
    left: 0;
}

.a::before{
    content: "A.";
    position: absolute;
    left: 0;
}

.faq .faq-btn{
    display: block;
    background: #6B8F71;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    border-radius: 20px;
    width: 100%;
    font-size: 18px;
    text-decoration: none;
}



.faq .faq-btn:hover{
    opacity: 0.9;
}

.faq .faq-btn:active{
    transform: translateY(2px);
    box-shadow: 0 2px 0 #5A785F;
}



/*---- footer ----*/

.footer{
    background: #6B8F71;
    padding: 48px 20px 32px;
    color: #fff;
    text-align: center;
}

.footer-inner{
    max-width: 320px;
    margin: 0 auto;
}

.footer-nav-list{
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-nav-list a{
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    line-height: 1;
}

.footer-sns{
    margin-top: 32px;
}

.footer-sns-list{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-sns-list a{
    color: #fff;
    font-size: 36px;
    text-decoration: none;
    display: inline-block;
}

.footer-logo{
    text-align: center;
    margin-top: 32px;
}

.footer-logo img{
    display: block;
    width: 140px;
    margin: 0 auto;
}

.footer-note{
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.8;
}

.footer-copy{
    margin-top:18px;
    font-size: 13px;
}

/*---- PC header ----*/

@media (min-width: 1024px){
    
    .header{
        padding: 20px 40px;
    }
	
	.header {
        position: sticky;
        top: 0;
        z-index: 1000;
    }
	
	html{
		scroll-padding-top: 230px;
		scroll-behavior: smooth;
	}
	  
    .header-inner{
        max-width: 1200px;
        margin: 0 auto;
    }
    
    
    .logo{
        position: static;
        transform: none;
    }
	
	.logo img{
        width: 180px;
    }
    
    
    .menu-btn{
        display: none;
    }
    
    .contact-btn{
    background: #f28c28;
    color: #fff;
    padding: 10px 18px;
    font-size: 14px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
}
    
    
    
    .header-nav{
        display: block;
        border-top: none;
        max-width: 1200px;
        
    }
    
    .nav-list{
        display: flex;
        justify-content: center;
        align-items: center;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    
    .nav-list li{
        flex: 1;
        text-align: center;
        position: relative;
    }
    
    .nav-list li{
        border-bottom: none;
    }
    
    
    
    
    
    
    .nav-list li:not(:last-child)::after{
        content: "";
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 6px;
        height: 40px;
        background: #6b8f71;
    }
    
    .nav-list a{
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: #333;
        font-size: 18px;
    }
    
    .nav-list span{
        display: block;
        font-size: 14px;
    }
    
}

/*---- pc hero ----*/

@media(min-width: 1024px){
    
    .hero{
        position: relative;
    }
    
    .hero-slide::after{
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to right,
        rgba(0,0,0,0) 45%,
        rgba(0,0,0,0.3) 100%);
    }
    
    .hero-slide{
        height: 600px;
        background-image: url("../images/hero-pc.jpg");
        background-size: cover;
        background-position: center;
    }
    
    .hero-text{
        position: absolute;
        right: 40px;
        bottom: 40px;
        color: #fff;
        text-align: left;
        width: 600px;
        padding: 0;
    }
    
    .hero-text .container{
        max-width: none;
        margin: 0;
    }
    
    .hero-title{
        font-size: 48px;
        line-height: 1.3;
        margin-bottom: 16px;
        text-shadow: 4px 4px 4px rgba(0,0,0,0.25);
    }
    
    .hero-sub{
        font-size: 24px;
        line-height: 1.26;
        text-shadow: 4px 4px 4px rgba(0,0,0,0.25);
        opacity: 0.9;
    }
}

/*---- PC Works ----*/

@media (min-width: 1024px){
	
    .works{
        padding: 90px;
    }
    
    .works .section-title{
        text-align: center;
        margin-bottom: 100px;
    }
    
    .works .section-title h2{
        font-size: 48px;
        line-height: 1.2;
        margin-bottom: 10px;
    }
    
    .works .section-title p{
        font-size: 20px;
        line-height: 1.5;
    }
    
    .works-list{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 80px 64px;
    }
    
    .works-card{
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    
    .works-image{
        height: 354px;
    }
    
    .works-card1 .works-image{
    background-image: url("../images/works-pc01.jpg");
}
    
    .works-card2 .works-image{
    background-image: url("../images/works-pc02.jpg");
}
    
    .works-card3 .works-image{
    background-image: url("../images/works-pc03.jpg");
}
    
    .works-card4 .works-image{
    background-image: url("../images/works-pc04.jpg");
}
    
    .works-card-body{
        padding: 24px;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }
    
    .works-card-body h3{
        font-size: 24px;
    }
    
    .works-card-body p{
        font-size: 16px;
        flex-grow: 1;
    }
    
    .view-more{
        margin-top: auto;
        font-size: 15px;
    }
}

/*---- PC Why me ----*/


@media (min-width: 1024px){
    
    .why-me{
        padding: 90px 0;
    }
    
    .why-me .section-title{
        margin-bottom: 100px;
    }
    
    .why-me .section-title h2{
        font-size: 48px;
        margin: 0 0 20px;
    }
    
    .why-me .section-title p{
        font-size: 20px;
        line-height: 1.6;
    }
    
    .why-me-list{
        display: grid;
        grid-template-columns: repeat(3,1fr);
        gap: 48px;
        align-items: start;
    }
    
    .why-me-item{
        padding: 0 12px;
        text-align: center;
    }
    
    .why-me-icon{
        margin-bottom: 28px;
    }
    
    .why-me-icon img{
        width: 144px;
        height: auto;
        margin: 0 auto;
    }
    
    .why-me-text h3{
        font-size: 24px;
        line-height: 1.4;
        margin: 0 0 16px;
    }
    
    .why-me-text p{
        font-size: 16px;
        line-height: 1.8;
        margin: 0;
    }
}

/*---- PC About ----*/

@media (min-width: 1024px){
    .about{
        padding: 90px 0;
    }
    
    .about section-title{
        text-align: center;
        margin-bottom: 100px;
    }
    
    .about .section-title h2{
        font-size: 48px;
        margin: 0 0 20px;
    }
    
    .about .section-title p{
        font-size: 20px;
        line-height: 1.6;
    }
    
    .about-content{
        max-width: 720px;
        margin: 0 auto 50px;
        text-align: center;
    }
    
    .about-image img{
        width: 180px;
        height: 180px;
        margin: 0 auto 24px;
    }
    
    .about-name{
        font-size: 28px;
        margin: 0 0 20px;
    }
    
    .about-text{
        font-size: 18px;
        line-height: 1.8;
        margin: 0;
    }
    
    .about .contact-btn{
        width: fit-content;
        min-width: 320px;
        margin: 0 auto;
        padding: 16px 40px;
        border-radius: 9999px;
        font-size: 20px;
    }
     
}

/*---- PC FAQ ----*/
    
@media (min-width: 1024px){
    .faq{
        padding: 90px 160px;
    }
    
    .faq section-title{
        margin-bottom: 100px;
    }
    
    .faq .section-title h2{
        font-size: 48px;
        margin: 0 0 20px;
    }
    
    .faq .section-title p{
        font-size: 20px;
        line-height: 1.6;
    }
    
    .faq .container{
        padding: 0;
    }
    
    .faq-item{
        max-width: 900px;
        margin: 0 auto 48px;
        padding-bottom: 32px;
        border-bottom: 1px solid #ddd;
    }
    
    .q{
        font-size: 20px;
        line-height: 1.6;
        margin-bottom: 20px;   
    }
    
    .a{
        font-size: 16px;
        line-height: 1.9;
    }
    
    .q,
    .a{
        padding-left: 2.5em; 
    }
    
    .faq .faq-btn{
        width: fit-content;
        min-width: 320px;
        margin: 50px auto 0;
        padding: 16px 40px;
        border-radius: 9999px;
        font-size: 20px;
    }
    
    .faq .faq-btn{
        margin: 80px auto 0;
    }

}

/*---- PC footer ----*/

@media (min-width: 1024px){
    
    .footer{
        padding: 64px 20px 36px;
    }
    
    .footer-inner{
        max-width: 1100px;
        margin: 0 auto;
    }
    
    .footer-nav-list{
        flex-direction: row;
        justify-content: center;
        gap: 40px;
    }
    
    .footer-nav-list a:hover,
    .footer-sns-list a:hover{
        opacity: 0.8;
    }
    
    .footer-sns{
        margin-top: 32px;
    }
    
    .footer-sns-list{
        flex-direction: row;
        justify-content: center;
        gap: 32px;
    }
    
    .footer-sns-list a{
        font-size: 32px;
    }
    
    .footer-logo{
        margin-top: 40px;
    }
    
    .footer-logo img{
        width: 180px;
    }
    
    .footer-note{
        margin-top: 24px;
        font-size:14px;
        line-height: 1.8;
    }
    
    .footer-copy{
        margin-top: 16px;
        font-size: 13px;
    }
    
}


/*---- sp works.html 児童書・絵本 ----*/

.works-page{
    padding: 50px 0;
    background: #fffbe3;
}

.works-page .section-title{
    text-align: center;
    margin-bottom: 50px;
}

.works-page .section-title h2{
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 4px;
}

.works-page .section-title p{
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
}

.works-category-intro{
    margin-bottom: 40px;
    text-align: center;
}

.works-category-intro h3{
    font-size: 20px;
    margin: 0 0 16px;
}

.works-category-intro p{
    font-size: 15px;
    line-height: 1.8;
    margin: 0 ;
}

/*-- 1段目のworks --*/

.works-detail-list{
    display: flex;
    flex-direction: column;
    gap: 100px;
	margin: 0 25px;
}

.works-detail-item{
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.08);
}

.works-detail-image{
	width: 100%;
	aspect-ratio: 322/210;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.image01{
	 background-image: url("../images/picturebook-sp01.jpg");
}

.image02{
	 background-image: url("../images/picturebook-sp02.jpg");
}

.image03{
	 background-image: url("../images/picturebook-sp03.jpg");
}

.image04{
	 background-image: url("../images/picturebook-sp04.jpg");
}

.image05{
	 background-image: url("../images/picturebook-sp05.jpg");
}

.works-detail-body{
    padding: 20px;
}

.works-detail-heading{
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 20px;
}

.works-detail-meta{
	margin: 0 0 20px;
}

.works-detail-row{
	display: flex;
	justify-content: space-between;
	gap: 15px;
	margin-bottom: 15px;
	padding-bottom: 8px;
	border-bottom: 1px solid #CAC4C4;
}

.works-detail-meta dt{
	font-weight: 500;
	flex-shrink: 0;
}

.works-detail-meta dd{
	margin: 0;
	text-align: right;
	flex: 1;
}

.works-detail-text{
	font-size: 14px;
	line-height: 1.6;
	margin: 0;
}

/*---- ページネーション　----*/

.works-detail-list{
	margin-bottom: 100px;
}

.pagination{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin-bottom: 50px;
}

    
    .pagination a,
    .pagination .current{
        min-width: 20px;
        height: 40px;
        padding: 0 12px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
		text-decoration: none;
        font-size: 16px;
        border-radius: 4px;
    }
    
    .pagination a{
        background: #fff;
        color: #333;
    }
    
    .pagination .current{
        background: #C6C3C3;
        color: #fff;
    }
    
    .pagination .prev,
    .pagination .next{
        background: #f5a200;
        color: #fff;
    }


/*---- PC works.html 児童書・絵本　----*/

@media (min-width: 1024px){
    .works-page{
        padding: 90px 0 120px;
    }
    
    .works-page .section-title{
        text-align: center;
        margin-bottom: 100px;
    }
    
    .works-page .section-title h2{
        font-size: 48px;
        margin: 0 0 10px;
    }
    
    .works-page .section-title p{
        font-size: 20px;
        line-height: 1.6;
    }
    
    .works-category-intro{
        max-width: 920px;
        margin: 0 auto 80px;
        text-align: left;
    }
    
    .works-category-intro h3{
        font-size: 32px;
        margin: 0 0 40px;
    }
    
    .works-category-intro p{
        font-size: 18px;
        line-height: 1.9;
        margin: 0;
    }
    
    .works-detail-list{
        max-width: 980px;
        margin: 0 auto 100px;
        gap: 96px;
    }
    
    .works-detail-item{
        display: flex;
        align-items: stretch;
        border-radius: 0;
        overflow: visible;
        box-shadow: 4px 4px 12px rgba(0,0,0,0.12);
    }
    
    .works-detail-image-link{
        display: block;
        width: 52%;
        flex-shrink: 0;    
    }
    
    .works-detail-image{
        width: 100%;
        min-height: 310px;
        aspect-ratio: 564 / 317;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
    
    .works-detail-body{
        width: 48%;
        padding: 20px 24px;
        background: #fff;
    }
    
    .works-detail-image.image01{
        background-image: url("../images/picturebook-pc01.jpg");
    }
    
    .works-detail-image.image02{
        background-image: url("../images/picturebook-pc02.jpg");
    }
    
    .works-detail-image.image03{
        background-image: url("../images/picturebook-pc03.jpg");
    }
    
    .works-detail-image.image04{
        background-image: url("../images/picturebook-pc04.jpg");
    }
    
    .works-detail-image.image05{
        background-image: url("../images/picturebook-pc05.jpg");
    }
    
    
    .works-detail-heading{
        font-size: 20px;
        margin: 0 0 24px;
    }
    
    .works-detail-row{
        gap: 20px;
        margin-bottom: 24px;
        padding-bottom: 10px;
    }
    
    .works-detail-meta dt{
        width: 110px;
        flex: none;
        font-size: 15px;
    }
    
    .works-detail-meta dd{
        font-size: 15px;
        text-align: right;
    }
    
    .works-detail-text{
        font-size: 13px;
        line-height: 1.7;
    }
    
    .pagination{
        gap: 14px;
        margin-bottom: 0;
    }
    
    .pagination a,
    .pagination .current{
        min-width: 40px;
        height: 40px;
        padding: 0 12px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        border-radius: 4px;
    }
    
    .pagination a{
        background: #fff;
        color: #333;
    }
    
    .pagination .current{
        background: #C6C3C3;
        color: #fff;
    }
    
    .pagination .prev,
    .pagination .next{
        background: #f5a200;
        color: #fff;
    }
    
}








