@charset "utf-8";
/*
Theme Name:  Sakura Kuzuoka Portfolio Site.
Author: Sakura Kuzuoka
Description: Sakura Kuzuoka Portfolio Site.
Version： 1.0.0
*/

/*cssのリセット*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,
blockquote,pre,abbr,address,cite,code,del,dfn,em,img,
ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,
ol,ul,li,fieldset,form,label,legend,table,caption,
tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,
figcaption,figure,footer,header,hgroup,menu,nav,section,
summary,time,mark,audio,video {
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  border: 0;
  outline: 0;
  background: transparent;
}
 
body {
  line-height: 1;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}
 
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
  display: block;
}
 
nav ul {
  list-style: none;
}
 
blockquote,
q {
  quotes: none;
}
 
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
 
a {
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
}
 
ins {
  text-decoration: none;
  color: #000;
  background-color: #ff9;
}
 
mark {
  font-weight: bold;
  font-style: italic;
  color: #000;
  background-color: #ff9;
}
 
del {
  text-decoration: line-through;
}
 
abbr[title],
dfn[title] {
  cursor: help;
  border-bottom: 1px dotted;
}
 
table {
  border-spacing: 0;
  border-collapse: collapse;
}
 
hr {
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
  border: 0;
  border-top: 1px solid #ccc;
}

/*サイト全体の基準となるCSSを記述*/
html {
  font-size: 16px;
}
 
body {
  font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "Noto Sans Japanese", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1.4; 
  margin: 0;
  padding: 0;
  color: #333;
	position:relative;
}
 
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  color: #000;
}
 
img {
  max-width: 100%;
  height: auto;
}

/* ============================== */
/* ここから */
/* ============================== */

.navTitleArea{
    display: flex;
	justify-content: space-between;
	align-items:center;
	font-family: "M PLUS 2", sans-serif;
	position:fixed;
	top:2rem;
	left:4rem;
	z-index:1;
}
@media (max-width: 767px) {
	.navTitleArea{
		left:2.5rem;
        width: 70vw;
	}
}

.navTitleArea img{
	width:300px;
}

.navTitleArea nav{
    display: flex;
    gap: 2rem;
	align-items:center;
	padding-left:3rem;
}

.navTitleArea a{
	text-decoration:none;
	font-size:1.2rem;
	color:#000;
}


header{
	font-family: "M PLUS 2", sans-serif;
}

header h1{
	position:relative;
	text-align:center;
	height:8vh;
	margin:1rem auto;
}

.cpText{
    font-size: 0.8rem;
    margin-top: 0.5rem;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px #fff;
    text-align: right;
}

.gd{
	font-weight:500;
}

/* ============================== */
/* コンテンツ */
/* ============================== */

section{
	font-family: "M PLUS 2", sans-serif;
    max-width: min(70vw, 1260px);
}
@media (max-width: 767px) {
	section{
		max-width: 1260px;
	}
}

#n01{
	margin-top:10rem;
}


a{
	text-decoration:none;
}



/* ============================== */
/* 沿革 */
/* ============================== */
.timeline {
  list-style: none;
}
.timeline > li {
  margin-bottom: 60px;
}

  .timeline > li {
    overflow: hidden;
    margin: 0;
    position: relative;
  }
  .timeline-date {
    width: 110px;
    float: left;
    margin-top: 20px;
  }
  .timeline-content {
    width: 75%;
    float: left;
    border-left: 3px #e5e5d1 solid;
    padding-left: 30px;
	  padding-top:1.3rem;
  }
  .timeline-content:before {
    content: '';
    width: 12px;
    height: 12px;
    background: #6fc173;
    position: absolute;
    left: 106px;
    top: 24px;
    border-radius: 100%;
  }

/* ============================== */
/* 制作したもの */
/* ============================== */


.worksItem img{
    box-shadow: 2px 2px 8px 1px #c3c3c3;
	position:relative;
	top:0;
	transition:0.3s;
}

.worksItem img:hover{
	top:-4px;
	transition:0.3s;
}

.worksItem span{
    display: block;
	background:#fff;
	border:solid 0.5px #000;
    font-size: 0.65rem;
    text-align: center;
    padding: 4px;
    width: 72px;
    color: #000;
}

.news-category span{
    border: solid 2px #839c5c;
    padding: 2px 4px;
    font-size: clamp(0.7rem, 0.7vw, 0.8rem);
    display: inline-block;
    margin-top: 0.5rem;
    background: #839c5c;
    color: #fff;
    border-radius: 4px;
    margin-bottom: 4px;
}

.news-con-title span{
    border: none;
    width: auto;
    text-align: left;
	font-size: clamp(0.8rem, 1vw, 1rem);
	background:none;
}

/* ============================== */
/* 投稿ページ */
/* ============================== */

.data{
	margin-bottom:4rem;
	margin-top:1rem;
}

.data a{
	text-decoration:underline;
	color:#839C5C;
}

.data a:hover{
	cursor:pointer;
	text-decoration:none;
}

.data ul li{
	list-style-type: "-  ";
	margin:1rem 0;
}


.news-wrap{
    max-width: min(70vw, 1260px);
    margin: 0 auto;
}
@media (max-width: 767px) {
	.news-wrap{
		max-width: 1280px;
		padding: 0 1rem;
	}
}

.news-wrap h2{
    font-size: 1.5vw;
	font-weight:normal;
}
@media(max-width : 767px){
	.news-wrap h2{
		font-size:3.5vw;
	}
}

.category-label{
	border: solid 2px #839c5c;
    padding: 4px 8px;
    font-size: 0.8rem;
	display:inline-block;
	margin-top:0.5rem;
	background:#839c5c;
	color:#fff;
	border-radius:4px;
	margin-bottom:1rem;
}

.category-label-s{
	margin-top:1rem;
}


li{
	margin-left:2rem;
}

.pagen{
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.pagenf{
	margin-top:3rem;
}

.pagen a{
	color:#000;
	font-size:0.9rem;
}

/* ============================== */
/* フッター */
/* ============================== */

.topBtn{
	position:relative;
}

.topBtn a{
	position: fixed;
    bottom: 3rem;
    right: 3rem;
    border: solid 1px #839C5C;
    border-radius: 4rem;
    height: 3rem;
    width: 3rem;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #839C5C;
	transition:.3s;
	font-size:0.8rem;
	cursor:pointer;
}

.footer-inner{
    text-align: center;
    font-size: 0.75rem;
    padding-bottom: 1rem;
	font-family: "M PLUS 2", sans-serif;
}

/* ============================== */
/* contact */
/* ============================== */

.contactFlex{
    display: flex;
    gap: 1rem;
    max-width: 1000px;
    width: 100%;
	justify-content:space-between;
	margin-bottom:1rem;
	height:140px;
}

.contactFlex p{
	font-size:0.9rem;
	padding-bottom:4px;
}

.contact1{
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}

input[type="text"],
input[type="email"]{
	padding:0.5rem;
	width:320px;
}

textarea{
    padding: 0.5rem;
    width: 600px;
    height: 100px;
}

input[type="submit"]{
    padding: 0.5rem;
    display: block;
    width: 160px;
    margin: 2rem 0 2rem auto;
    border: solid 1px #7CBF9E;
    background: #7CBF9E;
    font-size: 0.9rem;
    color: #fff;
}

.screen-reader-response{
	display:none;
}

/* ============================== */
/* できること */
/* ============================== */

.sklBox{
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
    gap: 1rem 0;
}

.sklItem{
    box-shadow: 2px 2px 8px -3px #c3c3c3;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 8px;
    background: #fff;
    gap: 1rem;
    width: calc((100% - 8rem) / 3);
	position:relative;
}
@media (max-width: 767px) {
	.sklItem{
		width:100%;
	}
}

.sklItem p{
    font-size: clamp(0.8rem, 0.95vw, 1rem);
}

.sklText h3{
	text-align: center;
    font-size: 1.2rem;
    padding: 0.5rem;
}

.sklTitle{
	display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sklNum{
    position: absolute;
    right: 2rem;
    top: 1.5rem;
}

.sklAtt{
    background: none;
    padding: 2rem;
    margin-bottom: 2rem;
    border: solid 2px #839c5c;
    border-radius: 8px;
    margin-top: -1rem;
}

p.att{
	text-indent: -1.5rem;
    margin-left: 1.5rem;
    font-size: clamp(0.8rem, 0.95vw, 1rem);
}

.copy-msg {
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 0.9rem;
  color: #4caf50;
  margin-left: 1rem;
}



.morePfBox p{
    font-size: clamp(1rem, 0.95vw, 1.2rem);
    line-height: 1.7;
    margin: 2rem 0;
}

.moreCont h2{
	margin-bottom:-1rem;
}

.morePfBox h4{
    margin-bottom: -1.5rem;
    font-size: clamp(1.3rem, 0.95vw, 1.4rem);
    font-weight: normal;
    margin-top: 3rem;
}

.booksItem{
	display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
}

.rev{
	flex-flow:row-reverse;
}

@media(max-width : 767px){
	.booksItem{
		flex-flow:column;
		margin-bottom:3rem;
		gap:2rem;
}
	.rev{
		flex-flow:column;
	}
}


.books{
	display:block;
}


.booksItem img{
	width:300px;
	border-radius:0.5rem;
}

.booksItem h3{
	font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
}
@media(max-width : 767px){
	.booksItem h3{
		margin-bottom:1rem;
	}
}

.booksItem a{
	display: block;
    margin-top: 2rem;
    color: #839C5C;
    text-decoration: underline;
    margin-bottom: -1rem;
    font-size: 1.1rem;
}


/* ============================== */
/* 2025/07/10 リニューアル */
/* ============================== */

/* ============================== */
/* メニュー */
/* ============================== */

/* メニュー */
.nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 17rem;
    height: 14rem;
    display: flex;
    justify-content: center;
    align-items: end;
    transition: right 0.8s ease;
    z-index: 999;
}

.nav ul {
  list-style: none;
  text-align: left;
	display:flex;
	gap:1rem;
	flex-flow:column;
}

.nav a {
  color: #000;
	font-size:1vw;
}
@media(max-width : 767px){
	.nav a{
		font-size:3vw;
	}
}

.nav.active {
  right: 0;
}

.hamburger {
  position: fixed;
  top: 2rem;
  right: 2.5rem;
  z-index: 1000;
  font-size: 2rem;
  color: #000;
  background: transparent;
  border: none;
  cursor: pointer;
  user-select: none;
}

a.SiteTop{
	position:relative;
}

a.SiteTop img{
	position:fixed;
	top:3rem;
	display:block;
	width:40px;
	left:2rem;
}


@font-face {
font-family:"pecita";
src: url( "https://wp-content/themes/Sakura-Kuzuoka_Portfolio-Site./pecita.woff")format('woff');
}

a{
	color:#000;
}


/* h1,
.footerArea p{
    font-family: 'pecita' !important;
    font-size: 4rem;
    font-weight: 400;
} */


/* ============================== */
/* 共通パーツ */
/* ============================== */

section.titleArea,
section.footerArea,
section.workArea,
section.ps,
section.toppf,
section.skill,
section.w_text,
section.w_Title{
	margin:0 auto;
	display: flex;
  height: var(--vh, 100vh) !important; /* ←こっちに置き換える！ */
  overflow: hidden;
	align-items: center;
    justify-content: center;
}


.toppfBox h2,
.contact h2,
.workArea h2,
.skill h2{
	text-align: center;
    font-size: 2vw;
    font-weight: 400;
    letter-spacing: 4px;
}

@media (max-width: 767px) {
	.toppfBox h2,
	.contact h2,
	.workArea h2,
	.skill h2{
		font-size:5vw;
	}
}


/* ============================== */
/* トップページ＞制作物いちらん */
/* ============================== */

.item{
    margin-top: 0;
    display: flex;
    justify-content: flex-start;
    gap: 4vw;
}

.itemD{
    letter-spacing: 2px;
    line-height: 1.6;
	font-size:0.9vw;
}
@media(max-width : 767px){
	.itemD{
		font-size:3vw;
	}
}

.item a {
    display: flex;
    gap: 1rem;
    margin: 4rem 0 2rem;
    align-items: center;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    position: relative;
    flex-flow: column;
    width: 30%;
}
@media(max-width : 767px){
	.item a{
		margin:4rem 0 0;
	}
}

.item a img {
	display: block;
	transition:.3s;
}

.item a:hover img {
	opacity:0.8;
	transition:.3s;
}

/* h3下線アニメーション */
.item a h3 {
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
    font-weight: normal;
    font-size: 1.1vw;
    margin-bottom: 0.5rem;
	letter-spacing:1px;
}
@media(max-width : 767px){
	.item a h3{
		font-size:4vw;
	}
}

.item a h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #000; /* 下線の色をお好みで変えてね */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.item a:hover h3::after {
  transform: scaleX(1); /* 下線がにゅーっと出る感じ */
}

.itemText{
    height: 24vh;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}

.itemText span{
    display: block;
    text-align: right;
}

.ttu{
    font-size: 0.7rem;
    margin-top: 8px;
    opacity: 0.6;
}

.worksBox .btnArea{
    margin-top: 1rem;
    text-align: center;
}


/* ============================== */
/* トップページ＞プロフィール */
/* ============================== */

.pfBox{
    max-width: min(70vw, 1260px);
    margin-top:5rem;
    display: flex;
    gap: 4rem;
	align-items:center;
	flex-flow: row-reverse;
}

@media (max-width: 767px) {
	.pfBox{
		flex-flow:column;
		margin-top:2rem;
		gap:2rem;
	}
}

.pfRow{
	flex-flow:row;
}
@media(max-width : 767px){
	.pfRow{
		flex-flow:column;
	}
	
}

.pfBox h3{
    font-size: 1.9vw;
    font-weight: normal;
    letter-spacing: 4px;
    margin-bottom: 2rem;
}
@media(max-width: 767px){
	.pfBox h3{
		font-size:4vw;
		margin-bottom:1rem;
	}
}

.pfBox img{
	pointer-events: none;
	width:22vw;
}
@media(max-width: 767px){
	.pfBox img{
		width:54vw;
	}
}

.pfBox p{
    font-size: 1.1vw;
	margin-bottom:1rem;
	letter-spacing:2px;
	line-height:1.8;
}
@media(max-width: 767px){
	.pfBox p{
		font-size:2.7vw;
	}
}

.btnArea{
    margin-top: 6rem;
    text-align: center;
}
@media(max-width: 767px){
	.btnArea{
		margin-top:1rem;
	}
}

.pLink{
    font-size: 1.2vw;
    padding: 1rem 2rem;
    border: solid 0.5px #000;
    cursor: pointer;
    width: 14vw;
    display: block;
    margin: 0 auto;
}
@media(max-width: 767px){
	.pLink{
		font-size:3vw;
		width:22vw;
	}
}

.pLink:hover{
	background:#000;
	color:#fff;
}


/* ============================== */
/* トップページ＞スキル */
/* ============================== */

.accordion{
	margin-top:3rem;
}

.accordion-content {
	display:none;
    margin-top: 1rem;
    font-size: 1vw;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    padding: 0 2rem 0 1rem;
    line-height: 1.7;
}
@media(max-width: 767px){
	.accordion-content{
		font-size:2.8vw;
		padding:0;
	}
}

.accordion-item{
    cursor: pointer;
    padding: 1rem 2rem;
    background: #fff;
    width: 64vw;
    margin: 2rem 0;
    border: solid 0.5px #000;
}

.accordion-title{
	display: flex;
    justify-content: space-between;
	letter-spacing:2px;
	font-size:1.2vw;
}
@media(max-width: 767px){
	.accordion-title{
		font-size:4vw;
	}
}

.accordion-title span{
	font-size:1.1rem;
}

/* ============================== */
/* お問い合わせ */
/* ============================== */

/* 表示用クラス */

.copy-msg{
	text-align: center;
    margin-top: 1rem;
    color: #000;
}

.copy-msg.show {
  opacity: 1;
}

#copyEmail{
    text-align: center;
    text-decoration: none;
    border: solid 1px #000;
    width: 22vw;
    margin: 0 auto;
    padding: 1rem;
    color: #000;
    font-weight: 400;
    font-size: 1.25vw;
}
@media(max-width: 767px){
	#copyEmail{
		font-size:4vw;
		width:44vw;
	}
}

.contactText{
    font-size: 1.25vw;
    text-align: center;
    margin: 3rem 0;
	letter-spacing:2px;
}
@media(max-width: 767px){
	.contactText{
		font-size:3vw;
	}
}


.email-copy #copyEmail:hover{
	background:#000;
	color:#fff;
}

.email-copy span{
	display:block;
}

/* ============================== */
/* つくったものページ */
/* ============================== */

h2 span{
	font-size: 1vw;
    display: block;
    margin-top: 0.5rem;
}
@media(max-width : 767px){
	h2 span{
		font-size:3vw;
	}
	.sppf{
		font-size:2vw;
	}
}

tr{
	border-top:solid 0.5px #000;
	border-bottom:0.5px solid #000;
}
@media(max-width : 767px){
	tr{
		border:none;
		display:flex;
		flex-flow:column;
	}
}

th{
    width: 16vw;
    text-align: left;
    font-size: 1vw;
	padding:2rem 1rem;
}
@media(max-width : 767px){
	th{
		width:100%;
		font-size:3.5vw;
		padding:1rem;
        border-bottom: 0.5px solid #000;
	}
}

td{
    font-size: 1vw;
    letter-spacing: 1px;
	line-height:1.8;
	padding:2rem 1rem;
}
@media(max-width : 767px){
	td{
		font-size:2vw;
		padding:1rem;
	}
}

td span{
	font-size:0.9vw;
}
@media(max-width : 767px){
	td span{
		font-size:2vw;
	}
}

.ttt{
	margin:4rem 0;
}

.w_Title h2{
	position:relative;
}

.w_Title h2 p{
    position: absolute;
    background: #000;
    padding: 1rem 2rem;
    color: #fff;
    z-index: 1;
	letter-spacing:2px;
	right:0;
	bottom:24vh;
	opacity:.8;
}
@media(max-width : 767px){
	.w_Title h2 p{
		bottom:18rem;
		left:0;
	}
}

.w_b{
	margin-top:3rem;
}
@media(max-width : 767px){
	.w_b{
		margin-top:1rem;
	}
}

.w_b a:after{
    content: "→";
    transform: rotate(-45deg);
    display: inline-block;
}

.w_text .w-all{
	margin-top:0;
}

.tbox tr{
	border:none;
}
@media(max-width : 767px){
	.tbox tr{
		display:block;
	}
}

.tbox td{
	padding:0 0 2px 0;
}
@media(max-width : 767px){
	.tbox td{
		width:31vw;
	}
}

.tbox .tday{
	padding-left:2rem;
}
@media(max-width : 767px){
	.tbox .tday{
		padding:0;
	}
}


/* ============================== */
/* プロフィールページ */
/* ============================== */

.p2nd h2{
	text-align:left;
}

.p2nd p{
	font-size:1vw;
}
@media(max-width : 767px){
	.p2nd p{
		font-size:2.7vw;
	}
}

.t-Box{
	margin-top:3rem;
}

.t-p p{
    font-size: 1vw;
    letter-spacing: 3px;
}

.t-p{
	margin-bottom:3rem;
}

.t-p h3{
	font-size:1.4vw;
	margin-bottom:1rem;
}

.t-p h3:before{
	content:"■ ";
}

.t-p h3 span{
	border-bottom: double 3px #000;
}

/* ============================== */
/* SPフッター */
/* ============================== */

@media(max-width: 767px){
	.f01 .spo{
	padding:0 2rem;
	}	
}


/* ============================== */
/* 切り替え */
/* ============================== */


h1{
	display:none;
}
@media (max-width: 767px) {
	h1{
		padding:0 2rem;
	}
}

.sp-only,
.spo,
.pfspo,
br.sp{
	display:none !important;
}

@media (max-width: 767px) {
	.pc-only,
	.pco{
		display:none !important;
	}
	.sp-only,
	.spo,
	br.sp{
		display:inline-block !important;
	}
}

/* ============================== */

@media(max-width : 767px){
	.slider {
  position: relative;
  overflow: hidden;
  width: 88vw;
}

.item_t {
  display: flex;
  transition: transform 0.5s ease;
  touch-action: pan-y;
	gap:0;
}

.spw_t {
  flex: 0 0 100%;
  box-sizing: border-box;
}

.dots {
	text-align: center;
	width: 100%;
	margin-top: 0;
}

.dots button {
  border: none;
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  margin: 0 5px;
  padding: 0;
}

.dots .active {
  background: #333;
}
	
	.sp_wd .item a{
		width:80vw;
	}
	
	.sp-Tr{
		display:flex !important;
	}
	
	.sp-Tr .item a{
		margin-top:2rem;
	}
	
	.pfspo{
		display:block !important;
	}
	
	.pfspo .accordion{
		margin-top:0;
	}
}
