@charset "UTF-8";

/*----------------------------------------------------
作品例
----------------------------------------------------*/
.sample {
	margin-top: 20px;
}
.sample_container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: clamp(12px,2vw,20px);
	row-gap: clamp(16px,3vw,30px);
}
.sample_container img {
	width: 100%;
}
.sample_container p {
	line-height: 1.4em;
	margin-top: 10px;
	text-align: left;
}

/*----------------------------------------------------
X（Twitter）のアイコン
----------------------------------------------------*/
.x_icon{
	position: relative;
}
.x_icon::before{
	position: absolute;
	content: '𝕏';
	font-family: unset;
	font-size: 28px;
	font-weight: bold;
	color: #000;
	top: 6px;
	left: 0px;
}

#contents #sns .sns_icon.x{
	margin-bottom: 20px;
}
#contents #sns .sns_icon.x a{
	background: #000000;
}
#contents #sns .sns_icon.x a:before{
	content: '𝕏';
	font-family: unset;
	font-size: 34px;
	font-weight: bold;
	color: #fff;
	margin-right: 5px;
}
.entrybox .txt .widthtitle {
	text-align: left;
	display: block;
	margin-left: 250px;
}
#contents #entry .entry .entrybox .txt a {
	text-decoration: none;
}
.entrybox .txt .widthtitle.x_icon {
	padding-left: 24px;
}

/*----------------------------------------------------
ファーストビュー
----------------------------------------------------*/
header {
	overflow: hidden;
}
header .fv_area {
	height: 100vh;
	position: relative;
	/* border: 12px solid #ff8400; */
	box-sizing: border-box;
	background:linear-gradient(135deg, rgba(219,84,37,1) 0%, rgba(229,168,63,1) 100%);
	padding: 12px;
	overflow: hidden;
}
.fv_area h1 {
	font-size: clamp(10px,4rem,10rem);
	color: #fff;
	margin-bottom: .5em;
	position: relative;
	z-index: 10;
}
.fv_area p {
	font-size: clamp(10px,2rem,10rem);
	color: #fff;
	line-height: 1.4em;
	position: relative;
	z-index: 10;
}
.fv_box img {
	width: 100%;
	vertical-align: top;
}
.fv_box.box1 {
	display: grid;
	place-content: center;
	width: 100%;
	height: 100%;
	margin-inline: auto;
	position: absolute;
	top: 0;
	left: 0;
}
.fv_box.box1 .inner {
	/* background-color: #f06b2a; */
	background-image: url(../../img/title_frame.webp);
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-position: center;
	padding: 50px;
	text-align: center;
	position: relative;
}
.fv_box.box2 {
	display: grid;
	grid-template-columns: 3fr 2fr;
	height: calc(50vh - 12px);
}
.fv_box.box2 div {
	background-size: cover;
	background-position: center;
}
.fv_box.box2 div:nth-child(1) {
	background-image: url(../../img/fv_1_f.webp);
	background-position: center bottom;
}
.fv_box.box2 div:nth-child(2) {
	background-image: url(../../img/fv_3.webp);
}
.fv_box.box2 .title_box {
	padding: 20px;
}
.fv_box.box3 {
	display: grid;
	grid-template-columns: 25% 50% 25%;
	height: calc(50vh - 12px);
}
.fv_box.box3 div {
	background-size: cover;
	background-position: center;
}
.fv_box.box3 div:nth-child(1) {
	background-image: url(../../img/fv_4.webp);
}
.fv_box.box3 div:nth-child(2) {
	background-image: url(../../img/fv_2.webp);
	background-position: center top;
}
.fv_box.box3 div:nth-child(3) {
	background-image: url(../../img/fv_5.webp);
	background-position: center top;
}
.fv_area .deco img {
	width: clamp(250px,22vw,400px);
	position: absolute;
	z-index: 1;
}
.fv_area .deco img:nth-child(1) {
	top: -25px;
	left: -10px;
}
.fv_area .deco img:nth-child(2) {
	bottom: -25px;
	right: -20px;
}
.fv_area .deco img:nth-child(3) {
	width: clamp(170px,13vw,300px);
	top: 20px;
	right: 20px;
}
.fv_area .deco img:nth-child(4) {
	width: clamp(250px,26vw,350px);
	bottom: -20px;
	left: -10px;
}
.fv_box.box1 .inner div img {
	width: 220px;
	position: absolute;
}
.fv_box.box1 .inner div img:nth-child(1) {
	top: -40px;
	left: -40px;
}
.fv_box.box1 .inner div img:nth-child(2) {
	bottom: -40px;
	right: -40px;
}
#contents #present .present ul {
	width: 100%;
	justify-content: center;
}

@media only screen and (min-width: 2000px) {
	.fv_area h1 {
		font-size: 4.6rem;
	}
	.fv_area p {
		font-size: 2.6rem;
	}
}

@media only screen and (max-width: 900px) {
	header .fv_area {
    height: 80vh;
	}
	.fv_box.box2,
	.fv_box.box3 {
    height: calc(40vh - 12px);
	}
	.fv_area h1 {
    font-size: 2.8rem;
	}
	.fv_area p {
    font-size: 1.4rem;
	}
	.fv_area .deco img:nth-child(3) {
    width: 130px;
	}
}

@media only screen and (max-width: 768px) {
	.sample_container{
		flex-wrap: wrap;
	}

	.x_icon::before{
		top: 3px;
	}
	#contents #sns .sns_icon.x a:before{
		font-size: initial;
	}
	.entrybox .txt .widthtitle {
	text-align: center;
	display: inline-block;
	margin-left: 0;
	}
		.entrybox .txt .widthtitle.x_icon {
		padding-left: 40px;
	}
	header .fv_area {
    height: 60vh;
	}
	.fv_box.box2,
	.fv_box.box3 {
    height: calc(30vh - 12px);
	}
	.fv_box.box1 .inner {
    padding: 5vw;
	}
	.fv_area h1 {
		font-size: 4vw;
	}
	.fv_area p {
		font-size: 2vw;
	}
	.fv_area .deco img:nth-child(1),
	.fv_area .deco img:nth-child(2) {
    width: 220px !important;
	}
	.fv_box.box1 .inner div img {
		width: clamp(90px,19vw,140px);
	}
	.fv_box.box1 .inner div img:nth-child(1) {
    top: -3vw;
    left: -3vw;
	}
	.fv_box.box1 .inner div img:nth-child(2) {
    bottom: -3vw;
    right: -3vw;
	}
	.fv_box.box2 div {
    background-position: 80% 0;
	}	
}

@media only screen and (max-width: 480px) {
	.fv_box.box1 .inner {
    padding: 8vw;
	}
	.fv_area h1 {
		font-size: 4vw;
	}
	.fv_area p {
		font-size: 2vw;
	}
	.fv_area .deco img:nth-child(1), .fv_area .deco img:nth-child(2) {
		width: 50vw !important;
	}
	.fv_area .deco img:nth-child(3) {
    width: 25vw;
	}
	.fv_area .deco img:nth-child(4) {
    width: 40vw;
    bottom: 0px;
    left: 0px;
	}
}