@charset "UTF-8";

* {
	box-sizing: border-box;
}

html{
	scroll-behavior: smooth;
}

a {
	text-decoration: none;
}

li {
	list-style-type: none;
}

img {
	width: 100%;
	height: 100%;
	vertical-align: bottom;

}

body {
	background-color: #fefaef;
	font-family: 'Noto Sans JP', sans-serif;
}

section {
	margin-bottom: 8rem;

}


p{
	font-size: 1rem;
}

.wrap {
	width: 70%;
	margin: 0 auto;
}

@media screen and (max-width: 768px){

	* {
		box-sizing: border-box;
	}
	
	html{
		scroll-behavior: smooth;
	}
	
	
	h2{
		text-align: center;
		margin: 2rem;
	}
	
	
	.wrap {
		width: 90%;
		margin: 0 auto;
	}

}

/* パンくずリスト */

.breadcrumb li {
	display: inline-block;
	margin-bottom: 1em;
	letter-spacing: 0.5rem;
}

.breadcrumb li::after {
	content: ">";
	margin: 0 0.5em;
}

.breadcrumb li:last-child::after {
	content: none;
}


/* メインビジュアル */

h1 {
	margin: 0;
	font-family: 'Dancing Script', cursive;
	letter-spacing: 0.8rem;
	font-size: 8rem;
	color: #fd7f7f;
	text-shadow: 2px 2px 5px #fff;
	position: absolute;
	top: 40%;
	right: 25%;
}

.h1__sub {
	font-family: 'Dancing Script', cursive;
	text-align: center;
	font-size: 3rem;
	color: #5d655d;
	position: absolute;
	top: 60%;
	right: 20%;

}

.bg__container {
	background-image: url(../images/contact_bg.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: right;
	width: 100%;
	height: 80vh;
	position: relative;
	margin-bottom: 5rem;

}

.nav__container {
	display: flex;
	justify-content: space-around;
	background-color: #ffffff9c;
	padding: 1em;
	position: fixed;
	width: 100%;
	z-index: 999;
}

.li__item a {
	display: block;
	padding: 0.5em;
	color: #333;
	font-size: 1.2rem;
	letter-spacing: 0.5rem;
}

.li__item a:hover {
	opacity: 0.5;
}


@media screen and (max-width: 768px){

	h1 {
		letter-spacing: 0.5rem;
		font-size: 3rem;
		top: 15%;
		right: 30%;
		display: table-cell;
		vertical-align: middle;
		text-align: center;

	}
	
	.h1__sub {
		font-family: 'Dancing Script', cursive;
		text-align: center;
		font-size: 1.5rem;
		color: #5d655d;
		top: 25%;
		right: 45%;
		position: static;
		display: table-cell;
		vertical-align: middle;
		padding-top: 4rem;
	
	}
	
	.bg__container {
		display: table;
		background-image: url(../images/contact_bg.jpg);
		background-size: cover;
		background-repeat: no-repeat;
		background-position: center;
		width: 100%;
		height: 40vh;
		position: static;
		margin-bottom: 2rem;
	
	}
	
	.nav__container {
		display: none;
		flex-wrap: wrap;
		justify-content: space-around;
		background-color: #ffffff9c;
		padding: 1em;
		position: fixed;
		width: 100%;
	}
	
	.li__item a {
		display: block;
		padding: 0.5em;
		color: #333;
		font-size: 1.2rem;
		letter-spacing: 0.5rem;
	}
	
	.li__item a:hover {
		opacity: 0.5;
	}

}



/* メインコンテンツ */

h2 {

	font-size: 2rem;
	color: #d28185;
	letter-spacing: 0.5rem;
	padding: 10px;
	/* border-bottom: 10px dotted #c49e60; */
	width: fit-content;
	margin-bottom: 4rem;
}


.greeting__container {
	display: flex;
	width: 75%;
	margin: 2.5rem auto 0;

}

.greeting__img--box {

	width: 250px;
	height: 250px;
	border-radius: 300px;

}

.greeting__text--box {
	width: 60%;
	margin-left: 5rem;
}

/* ボタン */

.btn {
	display: block;
	width: 300px;
	height: 50px;
	background-color: rgb(245, 210, 105);
	margin: 2rem;
	padding: 20px;
	font-weight: bold;
	text-align: center;
	color: #fff;
	border-radius: 20px;
}

.btn:hover {
	opacity: 0.8;
}

@media screen and (max-width: 768px){



	h2 {
		margin: 0 auto 2rem;
		text-align: center;
		font-size: 1.5rem;
		letter-spacing: 0.2rem;
		padding: 10px;
	}
	
	
	 .greeting__container {
		display: block;
		width: 80%;
		margin: 2rem auto;
	
	}

	.greeting__img--box{
		margin: 0 auto ;
	}

.greeting__img--box img {

		width: 220px;
		height: 220px;
	
	}
	
	.greeting__text--box {
		width: 90%;
		margin: 1rem;

	}

	.greeting__text--box p{
		font-size: 0.8rem;
	}
	

	/* ボタン */
	
	.btn {
		display: block;
		width: 150px;
		height: 50px;
		background-color: rgb(245, 210, 105);
		margin: 0.5rem;
		padding: 20px;
		font-weight: bold;
		text-align: center;
		color: #fff;
		border-radius: 20px;
	}
	
	.btn:hover {
		opacity: 0.8;
	}

}


/* スキル（できること） */

.skill__flex--container {
	width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	gap: 30px;
}

.skill__container {
	display: block;
	width: 33%;
	justify-content: space-between;
	margin: 0 auto;
	background-color: #fdfbf6;
	border-radius: 50px;
	padding: 1.5rem;
	text-align: center;
}


.skill__img--box i {
	color: #db9545;
}

.skill__text--box h3 {
	text-align: center;
	font-size: 1.5rem;
}

.skill__text--box p {
	text-align: left;
	font-size: 1rem;
	margin: 0.5rem 0;
}


.skill__text--box i {
	display: block;
	width: fit-content;
	padding: 0px;

}

.icon__item {
	display: flex;
	gap: 15px;
	justify-content: space-evenly;
}

.icon__box img{
	width: 32px;
	object-fit: contain;
}

/* フォントオーサム各種設定 */

.fa-brands {
	margin: 0;
}

.fa-html5{
	color: #E44D26;
}

.fa-css3-alt{
	color: #0B74B7;
}

.fa-file-word{
	color: #3c3cca;
}

.fa-file-excel{
	color: #24c937;
}

.fa-file-powerpoint{
	color: #ed6a0c;
}

.icon__item .seo {
	width: 80%;
	margin: 1rem 0;
}


@media screen and (max-width: 768px){

	
.skill__flex--container {
	width: 90%;
	margin: 0 auto;
	display: block;
}

.skill__container {
	display: block;
	width: 90%;
	margin: 3rem auto;
}

.skill__container p {
	text-align: center;
}



.icon__item .seo {
	width: 150px;
	margin: 1rem 0;
}


}

/* 作品集 */

.work_text{
	text-align: center;
	color: #333;
}

.work_text::before{
content: "＼";
margin: 0 0.5rem;
color: #89c726;
}

.work_text::after{
content: "／";
margin: 0 0.5rem;
color: #89c726;
}


/*==================================================
スライダーのためのcss
===================================*/
.slider {
	/*横幅94%で左右に余白を持たせて中央寄せ*/
	width: 94%;
	margin: 0 auto;
	padding: 0;
}

.slider img {
	width: 40vw;
	/*スライダー内の画像を60vwにしてレスポンシブ化*/
	height: auto;
}

.slider .slick-slide {
	transform: scale(0.8);
	/*左右の画像のサイズを80%に*/
	transition: all .5s;
	/*拡大や透過のアニメーションを0.5秒で行う*/
	opacity: 0.5;
	/*透過50%*/
}

.slider .slick-slide.slick-center {
	transform: scale(1);
	/*中央の画像のサイズだけ等倍に*/
	opacity: 1;
	/*透過なし*/
}


/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
	position: absolute;
	/*絶対配置にする*/
	top: 22%;
	cursor: pointer;
	/*マウスカーソルを指マークに*/
	outline: none;
	/*クリックをしたら出てくる枠線を消す*/
	border-top: 2px solid #666;
	/*矢印の色*/
	border-right: 2px solid #666;
	/*矢印の色*/
	height: 15px;
	width: 15px;
}

.slick-prev {
	/*戻る矢印の位置と形状*/
	left: -1.5%;
	transform: rotate(-135deg);
}

.slick-next {
	/*次へ矢印の位置と形状*/
	right: -1.5%;
	transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
	text-align: center;
	margin: 20px 0 0 0;
}

.slick-dots li {
	display: inline-block;
	margin: 0 5px;
}

.slick-dots button {
	color: transparent;
	outline: none;
	width: 16px;
	/*ドットボタンのサイズ*/
	height: 16px;
	/*ドットボタンのサイズ*/
	display: block;
	border-radius: 50%;
	background: #fffde1;
	/*ドットボタンの色*/
	border: 1px solid #ed6a0c;
}

.slick-dots .slick-active button {
	background: #dc8c22;
	/*ドットボタンの現在地表示の色*/
}


@media screen and (max-width: 768px){


	.work_text{
		display: block;
		width: 90%;
		margin: 0 auto;
		font-size: 1rem;
	}
	
	.work_text::before{
	content: none;

	}
	
	.work_text::after{
	content: none;

	}
	
	
	/*==================================================
	スライダーのためのcss
	===================================*/

	
	.slider img {
		width: 40vw;
		margin: 0 auto;
		/*スライダー内の画像を60vwにしてレスポンシブ化*/
		height: auto;
	}
	
	
	
	/*矢印の設定*/
	
	/*戻る、次へ矢印の位置*/
	.slick-prev,
	.slick-next {
		position: absolute;
		/*絶対配置にする*/
		top: 42%;
		cursor: pointer;
		/*マウスカーソルを指マークに*/
		outline: none;
		/*クリックをしたら出てくる枠線を消す*/
		border-top: 2px solid #666;
		/*矢印の色*/
		border-right: 2px solid #666;
		/*矢印の色*/
		height: 15px;
		width: 15px;
	}
	
	.slick-prev {
		/*戻る矢印の位置と形状*/
		left: -1.5%;
		transform: rotate(-135deg);
	}
	
	.slick-next {
		/*次へ矢印の位置と形状*/
		right: -1.5%;
		transform: rotate(45deg);
	}
	
	/*ドットナビゲーションの設定*/
	
	.slick-dots {
		text-align: center;
		margin: 30px 0;
		padding: 0;
	}
	
	.slick-dots li {
		display: inline-block;
		margin: 0 5px;
	}
	
	.slick-dots button {
		color: transparent;
		outline: none;
		width: 16px;
		/*ドットボタンのサイズ*/
		height: 16px;
		/*ドットボタンのサイズ*/
		display: block;
		border-radius: 50%;
		background: #fffde1;
		/*ドットボタンの色*/
		border: 1px solid #ed6a0c;
	}
	
	.slick-dots .slick-active button {
		background: #dc8c22;
		/*ドットボタンの現在地表示の色*/
	}

}


/* CONTACT */

.contact__box {
	width: 100%;
	height: 400px;
	background-image: url(../images/23570045.png);
	background-position: 20% -30px;
	padding: 1rem;
	text-align: center;
}

.contact__box p {
	padding: 1rem;
	margin: 4rem 0;
	background-color: #ffffff88;
	text-align: center;
}

.contact__box i {
	color: #00acee;
	padding: 0 2rem;
}

.contact__box i:hover {
	opacity: 0.7;
}


/* フッター */
footer {
	margin: 3rem 0 1rem ;
	text-align: center;
}




/* サブページ */

/* ヘッダー */


.sub-page__bgi {
	position: fixed;
	z-index: -100;
	opacity: 0.2;
}

.main__wrap {

	width: 80%;
	margin: 0 auto;
	padding-top: 100px;
}

.about {
	padding: 2rem;
	background-color: #fff;
	border-radius: 50px;
}

.img__box {
	width: 100%;
	height: 200px;
	margin-bottom: 3rem;
}

.img__box img {
	object-fit: cover;
	opacity: 0.4;
	border-radius: 100px;

}

.about__text--box {
	width: 80%;
	margin: 30px auto;
	font-size: 1.2rem;
}

.about__text--box p {
	width: 100%;
	letter-spacing: 0.2rem;
	line-height: 1.2rem;
}

.about__text--box dl dt {
	margin-bottom: 10px;
	font-size: 1.1rem;
}

.about__text--box dl dd {
	margin-bottom: 30px;
	font-size: 1rem;
}


.future p{
	width: 90%;
	margin: 0 auto;
	letter-spacing: 0.2rem;
	line-height: 1.5rem;
}


/* スキルページ */

.skill {
	padding: 2rem;
	background-color: #fff;
	border-radius: 50px;
}

.writing__text{
	text-align: center;
	font-size: 1.2rem;
	padding: 2rem;
	text-shadow: 2px 2px 3px #CDF2CA;
}

.skill p{
	width: 90%;
	margin: 0 3rem;
	letter-spacing: 0.2rem;
line-height: 1.5rem;
}
.writing__text--box{
	margin: 1rem;
}

.writing__text--box--seo {
	text-align: center;
	margin: 1rem;
}

.writing__text--box--seo img{
	margin: 1rem;
	width: 200px;
	
}

/* works */

.works_h2{
	font-size: 1.3rem;
	margin-bottom: 0;
}

.works__flex--container{
	display: flex;

}

.works_item{
	width: 68%;
	margin: 0 0;
}

aside{
	width: 31%;
	margin: 0 auto;
	position: fixed;
	top:25%;
	right: 5%;

}
aside ul{
	margin-bottom: 3rem;
}

aside li{
	background-color: #fff;
	margin: 1rem 0;
	padding: 1em 1em 1em 1.5em;
	border-radius: 50px;
}

.current__item{
	background-color: #fbcfe3;
}

aside a{
	color: #333;
}

aside li:hover{
	background-color: #fbcfe3;
}

.works__flex--content{
	display: block;
	justify-content: space-between;
}

.works__img--box{
	width: 85%;
	margin: 0 auto;
}

.works__table {
	width: 85%;
	margin: 2rem auto;
	border-spacing: 1em 1em;
	border-collapse: collapse;
	table-layout: fixed;
}

.works__table th {
	background-color: #ffe9e9;

}

.works__table td {
	padding: 0.5rem;
font-size: 0.8rem;
}

.works__table td a:first-child{
text-align: center;
}

.works__table tr th,
.works__table tr td {
	border-bottom: 1px solid #e6d53e;
}

.works_time p{
	text-align: right;
}

.works_text{
	margin: 2rem;
}

.works_text  p{
	text-align: left;
	letter-spacing: 0.1rem;
}


@media screen and (max-width: 768px){


	.works_h2{
		font-size: 1.3rem;
		margin-bottom: 0;
	}
	
	.works__flex--container{
		display:block;
	}
	
	.works_item{
		width: 90%;
		margin: 10rem auto 0;
	}
	
	aside{
		width: 90%;
		margin: 0 auto;
	
	}
	aside ul{
		margin-bottom: 0.5rem;
		display: flex;
		flex-wrap: wrap;
	}
	
	aside li{
		width: fit-content;
		background-color: #fff;
		font-size: 0.5rem;
		margin: 0.2rem 0;
		padding: 01rem;
		border-radius: 50px;
	}
	
	.current__item{
		background-color: #fbcfe3;
	}
	
	aside a{
		color: #333;
	}
	
	aside li:hover{
		background-color: #fbcfe3;
	}
	
	.works__flex--content{
		display: block;
	}
	
	.works__img--box{
		width: 85%;
		margin: 0 auto;
	}
	
	.works__table {
		width: 85%;
		margin: 2rem auto;
		border-spacing: 1em 1em;
		border-collapse: collapse;
		table-layout: fixed;
	}
	
	.works__table th {
		background-color: #ffe9e9;
	
	}
	
	.works__table td {
		padding: 0.5rem;
	font-size: 0.8rem;
	}
	
	.works__table td a:first-child{
	text-align: center;
	}
	
	.works__table tr th,
	.works__table tr td {
		border-bottom: 1px solid #e6d53e;
	}
	
	.works_time p{
		text-align: right;
	}
	
	.works_text{
		margin: 2rem;
	}
	
	.works_text  p{
		text-align: left;
		letter-spacing: 0.1rem;
	}

}





/* CONTACTページ */

.contact__page{
	text-align: center;
	}

.contact__page i{
	padding: 2rem 3rem;
	}

	.contact__page .fa-twitter{
		color: #0B74B7;
		}

