@charset "utf-8";
/*
Theme Name:  LEAF AND BLOOM
Author: Sakura Kuzuoka
Description: LEAF AND BLOOM
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;
}
 
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;
	background:#fff5ee;
}
 
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 Rounded 1c", sans-serif;
	position:fixed;
	top:2rem;
	left:4rem;
	z-index:1;
}
@media (max-width: 1024px){
	.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;
}

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

nav{
    position: fixed;
    top: 2rem;
    right: 3rem;
    z-index: 1;
    padding: 1rem 4rem;
    border-radius: 0.5rem;
    background: #839c5c;
}

nav a{
	position: relative;
	text-decoration: none;
	color: #fff;
	transition: 0.3s;
	font-size:0.9rem;
	padding:0 1rem;
}
@media (max-width: 1024px){
	nav a{
		color: #839c5c;
	}
}


nav a:hover{
	color: #fff;
}
nav a::before{
	content: "";
	position: absolute;
	left: 1rem;
	bottom: -0.5rem;
	width: 0;
	height: 1px;
	background: #fff;
	transition: 0.3s;
}
nav a:hover::before{
	width: 80%;
}

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

header{
	font-family: "M PLUS Rounded 1c", 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 Rounded 1c", sans-serif;
    max-width: min(70vw, 1260px);
	margin:8rem auto 0;;
}
@media (max-width: 1024px){
	section{
		max-width: 1260px;
		padding: 0 1rem;
	}
}

#n01{
	margin-top:10rem;
}

.contentBox{
	margin:0 auto;
}

.contentBox h2{
    font-size: 1.2rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid;
    width: 16rem;
    padding-bottom: 0.5rem;
	font-weight:normal;
}

a{
	text-decoration:none;
}


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

.pfBox{
    max-width: min(70vw, 1260px);
    margin: 0 auto;
    display: flex;
    gap: 4rem;
	align-items:center;
}
@media (max-width: 1024px){
	.pfBox{
		flex-flow:column;
	}
}

.pfBox h3{
	font-size:1.4rem;
	font-weight:normal;
}

.pfBox img{
	border-radius:8rem;
    box-shadow: 2px 2px 8px 1px #c3c3c3;
	pointer-events: none;
}

.pfBox p{
    font-size: clamp(0.9rem, 0.95vw, 1.2rem);
	margin-bottom:1rem;
}

.name{
	color:#f289be;
}

.msg{
    display: block;
    font-size: clamp(0.8rem, 1vw, 1rem);
    color: #839C5C;
    margin: 0.5rem 0 2rem 0;
}

/* ============================== */
/* 沿革 */
/* ============================== */
.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%;
  }

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


.worksBox{
    display: flex;
    flex-flow: wrap;
	gap:3rem;
    justify-content: space-between;
}

.worksArea a{
	display:block;
	width:30%;
	color:#000;
}
@media (max-width: 1024px){
	.worksArea a{
		width:auto;
	}
}

.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;
}

.singleCont{
	margin-top:10rem;
}

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

.news-wrap h2{
    font-size: 1.4rem;
	font-weight:normal;
}

.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;
}

table{
	margin-top:2rem;
}

tr{
    border-bottom: solid 1.5rem #fff5ee;
    display: flex;
    flex-flow: nowrap;
    align-items: baseline;
}
@media (max-width: 1024px){
	tr{
		flex-flow:column;
	}
}

th{
	width:240px;
	text-align:left;
    font-size: clamp(1rem, 1vw, 1.2rem);
	color:#696969;
	font-weight:normal;
}
@media (max-width: 1024px){
	th{
		width:100%;
	}
}

th::before{
	content:"ー ";
}

td{
	width:760px;
    font-size: clamp(1rem, 1vw, 1.2rem);
	padding:0.5rem 0;
	line-height:1.6;
}
@media (max-width: 1024px){
	td{
		width:100%;
	}
}

li{
	margin-left:1rem;
}

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

.pagenf{
	margin-top:3rem;
}

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

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

.footer{
	margin-top:10rem;
}

.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 Rounded 1c", 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: 1024px){
	.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;
}

/* 表示用クラス */
.copy-msg.show {
  opacity: 1;
}

#copyEmail{
    text-decoration: underline;
    color: #839C5C;
    font-weight: 400;
    font-size: clamp(1.1rem, 1vw, 1.3rem);
}

.contactText{
	margin-bottom:1rem;
    font-size: clamp(1rem, 1.11vw, 1.2rem);
}

.contactText span{
	display:inline-block;
	margin-top:0.5rem;
	font-size: clamp(0.7rem, 1vw, 0.8rem);
}

/* ============================== */
/* はんばーがー */
/* ============================== */

/* 基本スタイル */
.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  width: 24px;
  height: 20px;
  justify-content: center;
}

.hamburger span {
  background: #333;
  height: 3px;
  width: 100%;
  border-radius: 2px;
}

/* モバイル時 */
@media (max-width: 1024px) {
  .hamburger {
        display: flex;
        position: fixed;
        top: 2.5rem;
        right: 2rem;
  }

  .nav {
    position: absolute;
    top: 60px;
    right: 20px;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    padding: 1rem;
    display: none;
    flex-direction: column;
    gap: 1rem;
    z-index: 100;
    border-radius: 1rem;
  }

  .nav.show {
        display: flex;
        position: fixed;
        width: auto;
        top: 2.5rem;
        width: 65vw;
        left: 3rem;
  }
}

.pageIremono{
	    max-width: 300px;
    margin: 0 auto;
}

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

.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 : 1024px){
	.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 : 1024px){
	.booksItem h3{
		margin-bottom:1rem;
	}
}

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


.pLink{
	color:#F395C3;
	text-decoration:underline;
}