@charset "UTF-8";

/* ------------------------------------------------------------

基本設定

------------------------------------------------------------ */

* {
	box-sizing: border-box;
	line-height: 1.5em;
	font-family: "Sawarabi Gothic", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
	font-weight: normal;
}

h1 {
	font-size: 32px;
	color: white;
	font-weight: lighter;
	white-space: nowrap;
}

h2 {
	font-size: 42px;
	margin-top: 2em;
	margin-bottom: 1.5em;
}

h3 {
	font-size: 36px;
	margin-bottom: 2rem;
	display: inline-block;
}

p {
	text-align: justify;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

body {
	background: url(../images/woodBG.png), #f8f8f8;

}

main,
footer {
	overflow: hidden;
}

#mv,
#concept,
#material,
#work,
#about,
#info {
	margin-bottom: 150px;
}



/* ※sp */
@media screen and (max-width: 750px) {
	.sp-only {
		display: inline-block;
	}

	.sp-indent {
		content: "";
		display: inline-block;
		width: 1rem;
	}

	header,
	main,
	footer {
		padding-left: 0;
		padding-right: 0;
	}

	header .wrapper,
	#kasou main .wrapper {
		padding-left: 5.3333%;
		padding-right: 5.3333%;
		margin-left: auto;
		margin-right: auto;
	}

	body {
		background-image: url(../images/woodBG-sp.png);
	}

	h1 {
		font-size: 20px;
	}

	h2 {
		font-size: 28px;
		margin-top: 2em;
		margin-bottom: 1em;
	}

	h3 {
		font-size: 24px;
		padding-top: 1.5em;
		margin-bottom: 1.5rem;
		display: inline-block;
	}

	#mv,
	#concept,
	#material,
	#work,
	#about,
	#info {
		margin-bottom: 100px;
	}
}


/* ※PC */
@media screen and (min-width: 751px) {

	.sp-only {
		display: none;
	}

	header,
	main {
		padding-left: 3.3333%;
		/* 40/1200	*/
		padding-right: 3.3333%;
	}

	.full,
	header.wrapper {
		margin-left: -3.3333%;
		/*	40/1120	*/
		margin-right: -3.3333%;
		padding-left: 3.3333%;
		padding-right: 3.3333%;
	}

}


@media screen and (min-width: 1200px) {

	header,
	main section:nth-of-type(n+3),
	footer {
		padding-left: 0;
		padding-right: 0;
	}

	.wrapper {
		width: 1120px;
		padding-left: 40px;
		padding-right: 40px;
		margin-left: auto;
		margin-right: auto;
	}

	header .wrapper {
		width: 100%;

	}

	/* #about {
		margin-left: 40px;
		margin-right: 40px;
	} */

}


/* ------------------------------------------------------------

header nav

------------------------------------------------------------ */
header {
	width: 100%;
	height: 80px;
	background-color: rgba(255, 255, 255, 0.3);
	position: fixed;
	z-index: 100;
}

header .wrapper {
	height: 100%;
}

nav {
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

nav figure {
	max-width: 145px;
	height: auto;
}

nav #ham-btn {
	width: 100%;
}

#main-menu {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

#main-menu li {
	display: inline-block;
	margin-right: 2.8571%;
	list-style-type: none;
	font-size: 20px;
	white-space: nowrap;
}

#main-menu li#work-menu{
	white-space: normal;
}

#main-menu li a {
	position: relative;
	text-decoration: none;
	color: black;
	display: inline-block;
}

#main-menu li:last-child {
	margin-right: 0;
}

#gnav-btn,
#gnav-check {
	display: none;
}

#work-menu {
	position: relative;
}

#kasou-menu {
	height: 0;
	overflow: hidden;
	position: absolute;
	width: 250px;
	left: -100%;
	text-align: center;
}

#kasou-menu li {
	background: rgba(255, 255, 255, .3);
	margin-right: 0;
	width: 200px;
}

#kasou-menu li a {
	padding: 1rem 0;
	width: 200px;
}

#kasou-menu li:first-child {
	margin-top: 25px;
}

#work-menu:hover #kasou-menu {
	height: 100%;
	overflow: visible;
	transition: .3s;
}

@media screen and (min-width: 1001px) {
	#main-menu li a:not(#kasou-menu li a)::after{
		position: absolute;
		bottom: -4px;
		left: 0;
		content: '';
		width: 100%;
		height: 2px;
		background: #333;
		transform: scale(0, 1);
		transform-origin: center top;
		transition: transform .3s;
	}

	#main-menu li a:not(#kasou-menu li a):hover::after{
		transform: scale(1, 1);
		transition: transform .3s;
	}

}

@media screen and (max-width: 1000px) {
	header .wrapper nav {
		position: relative;
	}

	nav #ham-btn {
		display: block;
		position: absolute;
		right: 0;
		width: 60px;
		height: 100%;
	}

	#gnav-btn {
		display: block;
		cursor: pointer;
		height: 100%;
	}

	#gnav-btn span,
	#gnav-btn span::before,
	#gnav-btn span::after {
		content: "";
		display: block;
		background-color: gray;
		width: 60px;
		height: 4px;
		border-radius: 2px;
		position: absolute;
		top: 40px;
		transition: 0.3s;
		z-index: 1000;
	}

	#gnav-btn span::before {
		top: -15px;
	}

	#gnav-btn span::after {
		top: 15px;
	}

	#main-menu {
		opacity: 0;
		z-index: -100;
	}

	#main-menu li,#main-menu li a,#main-menu #kasou-menu,nav #main-menu #kasou-menu li a {
		display: none;
	}

	#gnav-check:checked~label #main-menu {
		opacity: 1;
		transition: .5s;
		z-index: 500;
		position: fixed;
		display: flex;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vh;
		background:url(../images/ul-logo.png) no-repeat center rgba(255, 255, 255, .9);
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	#gnav-check:checked~label #main-menu li {
		font-size: 24px;
		margin-right: 0;
		text-align: center;
		display: block;
		width: 50%;
		border-bottom: #ccc .5px solid;
	}

	#gnav-check:checked~label #main-menu li a {
		display: inline-block;
		width: 100%;
		padding: 1em 0;
	}

	#gnav-check:checked~label #main-menu #work-menu{
		border-bottom: none;
	}

	#gnav-check:checked~label #main-menu #work-menu>a{
		border-bottom: #ccc .5px solid;
	}


	#gnav-check:checked~label #main-menu #kasou-menu {
		width: 100%;
		height: auto;
		display: block;
		overflow: visible;
		position: static;
		text-align: center;
	}

	#gnav-check:checked~label #main-menu #kasou-menu li {
		font-size: 20px;
		background: none;
		width: 100%;
	}

	#gnav-check:checked~label #main-menu #kasou-menu li:first-child {
		margin: 0;
	}

	#gnav-check:checked~label #main-menu #kasou-menu li a {
		padding: 0;
		display: inline-block;
		position: relative;
		padding: 1em 0;
	}

	#gnav-check:checked~#gnav-btn span::before {
		transition: 0.3s;
		transform: translateX(34px) translateY(6px) rotateZ(45deg);
		width: 30px;
	}

	#gnav-check:checked~#gnav-btn span::after {
		transition: 0.3s;
		transform: translateX(34px) translateY(-6px) rotateZ(-45deg);
		width: 30px;
	}

}

@media screen and (max-width: 750px) {
	header {
		height: 60px;
	}

	header nav figure {
		width: 120px;
	}

	#gnav-btn span {
		top: 30px;
	}

	#main-menu li {
		width: 80%;
	}

	#main-menu li a,nav #main-menu #kasou-menu li a{
		padding: .5em 0;
	}
	

}



/* ------------------------------------------------------------

mv

------------------------------------------------------------ */

#mv {
	background: url(../images/MV1.png) center / cover;
	height: 95vh;
	position: relative;
}

#mv div {
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

#mv h1 {
	text-align: center;
	position: relative;
}

#mv h1 .titleEn {
	font-family: "M PLUS 1c";
	font-size: 48px;
}

#mv h1 .titleEn2 {
	font-size: 36px;
}

#mv figure:nth-of-type(1) {
	width: 40%;
	max-width: 370px;
	height: auto;
	position: absolute;
	top: calc(5% + 80px);
	left: 5%;
}

#mv figure:nth-of-type(2) {
	width: 45%;
	max-width: 400px;
	height: auto;
	position: absolute;
	bottom: calc(5% + 80px);
	right: 5%;
}

#mv h1::before {
	content: "";
	background: url(../svg/title-leaf-L.svg);
	width: 189px;
	height: 121px;
	position: absolute;
	bottom: -33px;
	left: -66px;
}

#mv h1::after {
	content: "";
	background: url(../svg/title-leaf-R.svg);
	width: 183px;
	height: 144px;
	position: absolute;
	top: -33px;
	right: -66px;
}


@media screen and (max-width: 750px) {
	#mv {
		background: url(../images/spMV1.png) 0% 70% / cover;
		height: 80vh;
		position: relative;
	}

	#mv h1 .titleEn {
		font-size: 28px;
	}

	#mv h1 .titleEn2 {
		font-size: 20px;
	}

	#mv h1::before {
		bottom: -60px;
		left: -45px;
		background-size: 60% 60%;
		background-repeat: no-repeat;
	}

	#mv h1::after {
		top: -20px;
		right: -120px;
		background-size: 60% 60%;
		background-repeat: no-repeat;
	}

	#mv figure:nth-of-type(1) {
		min-width: 200px;
	}

	#mv figure:nth-of-type(2) {
		min-width: 250px;
	}
}


/* ------------------------------------------------------------

concept

------------------------------------------------------------ */

#concept {
	background: url(../images/con-gb.png) center / cover;
}

#concept .wrapper {
	display: flex;
	padding: 2rem 2rem;
	align-items: center;
	justify-content: space-between;
}

#concept .wrapper .concept-font {
	width: 60%;
	margin-right: 5%;
	text-align: center;
}

#concept h2 {
	font-size: 32px;
	margin: 1rem;
	display: inline-block;
	position: relative;
}

#concept h2::before {
	content: "";
	background: url(../svg/sec2-leaf-L.svg);
	width: 22px;
	height: 38px;
	position: absolute;
	top: -6%;
	left: -8%;
}

#concept h2::after {
	content: "";
	background: url(../svg/sec2-leaf-R.svg);
	width: 22px;
	height: 38px;
	position: absolute;
	bottom: -6%;
	right: -8%;
}

#concept p {
	padding: 2em;
	background-color: rgba(255, 255, 255, 0.3);
}

#concept figure {
	min-width: 333px;
}


@media screen and (max-width: 900px) {
	#concept {
		position: relative;
		padding-top: 5rem;
	}

	#concept .concept-posi {
		width: 100%;
		position: absolute;
		top: 3%;
		left: 50%;
		transform: translateX(-50%);
	}

	#concept .concept-font {
		width: 55%;
	}

	#concept figure {
		min-width: 45%;
		text-align: right;
	}
}

@media screen and (max-width: 750px) {
	#concept {
		background: url(../images/con-gb-sp.png) center / cover;
		padding-top: 5.5rem;
	}

	#concept .wrapper {
		display: flex;
		padding-top: 2rem;
		padding-bottom: 2rem;
		flex-direction: column;
	}

	#concept .wrapper .concept-font {
		width: 100%;
		order: 2;
		margin: 0;
	}

	#concept h2 {
		font-size: 28px;
	}

	#concept h2::before,
	#concept h2::after {
		background-size: 80% 80%;
		background-repeat: no-repeat;
	}

	#concept p {
		padding: 1rem;
	}

	#concept figure {
		order: 1;
		margin-bottom: 2rem;
	}

}


/* ------------------------------------------------------------

material

------------------------------------------------------------ */

#material .mate-title {
	padding-top: 5.25rem;
	padding-bottom: 3.9375rem;
	text-align: center;
	background: linear-gradient(to right,
			rgba(0, 0, 0, 0) 0%, rgba(32, 32, 32, 0.5) 50%, rgba(0, 0, 0, 0) 100%), url(../images/material-bgi.png) center / cover;
}

#material h2 {
	display: inline-block;
	margin: 0;
	color: white;
	position: relative;
}

#material h2::before {
	content: "";
	background: url(../svg/mate-leaf-L.svg);
	width: 122px;
	height: 86px;
	position: absolute;
	bottom: -10%;
	left: -9%;
}

#material h2::after {
	content: "";
	background: url(../svg/mate-leaf-R.svg);
	width: 127px;
	height: 78px;
	position: absolute;
	bottom: -10%;
	right: -11%;
}

#material section {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 2rem;
}

#material .mt-flex {
	text-align: center;
	width: calc(66% - 2rem);
	margin-right: 2rem;
}

#material section figure {
	min-width: 250px;
	max-width: 463px;
}

#material #wood {
	background: url(../images/silhouette-wood.png) left -10% bottom 37%/ 60% no-repeat,
		linear-gradient(to right,
			rgba(255, 193, 75, .3) 0%, rgba(255, 193, 75, .3) 100%), url(../images/material-wood-bgi.png) left bottom / cover;
}

#material #leather {
	background: url(../images/silhouette-animal.png) right bottom 25%/ 54% no-repeat,
		url(../images/leather.png) center / cover;
}

#material #leather .mt-flex {
	order: 2;
	margin-left: 2rem;
	margin-right: 0;
}

#material #leather figure {
	order: 1;
}

#material #urushi {
	background: #100c10 url(../images/urushi-illust.png) left 33% bottom 5% / 20% no-repeat;
}

#material #leather .mt-flex p,
#material #urushi .mt-flex p {
	color: white;
}

@media screen and (max-width: 750px) {
	#material .mate-title {
		padding-top: 3.25rem;
		padding-bottom: 1.75rem;
	}

	#material section {
		flex-direction: column;
		position: relative;
		padding: 7rem 5.3333% 2rem;
	}

	#material #wood .mt-flex,
	#material #leather .mt-flex,
	#material #urushi .mt-flex {
		order: 2;
		width: 100%;
		margin: 2rem auto;
	}

	#material .mt-flex h3 {
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
	}

	#material .mt-flex h3 figure {
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
	}

	#material #wood .mt-flex h3 figure img {
		width: 25%;
	}

	#material #leather .mt-flex h3 figure img {
		width: 23%;
	}

	#material #urushi .mt-flex h3 figure img {
		width: 40%;
	}

	#material #wood figure:last-child,
	#material #urushi figure:last-child {
		order: 1;
	}

	#material h2 {
		display: inline-block;
		margin: 0;
		color: white;
		position: relative;
	}

	#material h2::before {
		background-size: 60% 60%;
		background-repeat: no-repeat;
		bottom: -90%;
	}

	#material h2::after {
		background-size: 80% 80%;
		background-repeat: no-repeat;
		bottom: -75%;
		right: -23%;
	}

	#material #wood {
		background: url(../images/silhouette-wood-sp.png) left bottom 5%/ 100% no-repeat,
			linear-gradient(to right,
				rgba(255, 193, 75, .3) 0%, rgba(255, 193, 75, .3) 100%), url(../images/material-wood-bgi.png) left bottom / cover;
	}

	#material #leather {
		background: url(../images/silhouette-animal.png) right 70% bottom 5%/ 130% no-repeat,
			url(../images/leather.png) center / contain;
	}

	#material #urushi {
		background: #100c10 url(../images/urushi-illust.png) left 60% bottom 10% / 60% no-repeat;
	}

}

@media screen and (max-width: 375px) {
	#material #wood {
		background: url(../images/silhouette-wood-sp.png) left bottom 5%/ 100% no-repeat,
			linear-gradient(to right,
				rgba(255, 193, 75, .3) 0%, rgba(255, 193, 75, .3) 100%), url(../images/material-wood-bgi.png) left bottom / cover;
	}

	#material #leather {
		background: url(../images/silhouette-animal.png) right 70% bottom 5%/ 130% no-repeat,
			url(../images/leather.png) center / contain;
	}

	#material #urushi {
		background: #100c10 url(../images/urushi-illust.png) left 60% bottom 10% / 60% no-repeat;
	}
}

/* ------------------------------------------------------------

work

------------------------------------------------------------ */

#work {
	background: url(../images/work-table.png) center top/ 100% 100%;
	padding-top: 10.5rem;
	padding-bottom: 10rem;
}

#work div {
	text-align: center;
}

#work h2,
#work h3 {
	background: url(../images/work-daiji.png) center / 100% 100%;
}

#work h2 {
	display: inline-block;
	margin: 0;
	margin-bottom: 4em;
	position: relative;
}

#work h2::before {
	content: "";
	background: url(../svg/work-leaf-L.svg);
	width: 106px;
	height: 40px;
	position: absolute;
	top: -20%;
	left: -25%;
}

#work h2::after {
	content: "";
	background: url(../svg/work-leaf-R.svg);
	width: 101px;
	height: 39px;
	position: absolute;
	bottom: -20%;
	right: -25%;
}

#work section {
	display: flex;
	align-items: center;
	margin-bottom: 15rem;
	position: relative;
}

#work .wk-flex {
	width: 50%;

}

.wk-flex p {
	display: inline-block;
}

.wk-flex p:nth-of-type(1) {
	padding: 4rem 4rem;
	background: url(../images/work-font-bg.png) center / 100% 100%;
}

.wk-flex p:nth-of-type(2) {
	padding: 2rem;
	margin-top: 2rem;
	background: url(../images/work-round.png) center / 100% 100%;
}

.wk-flex a {
	font-size: 24px;
	color: black;
	text-decoration: none;
	white-space: nowrap;
}

#work #sp-case .wk-flex {
	order: 2;
}

#work #sp-case figure:last-child {
	order: 1;
	width: 53%;
	margin-left: -3.3333%;
}

#work #sp-case div figure:nth-of-type(1) {
	position: absolute;
	top: -25%;
	right: -5%;
	width: 23%;
}

#work #sp-case div figure:nth-of-type(2) {
	position: absolute;
	bottom: -23%;
	left: 40%;
	width: 23%;
}

#work #wallet .wallet-pic {
	width: 53%;
	margin-right: -2.333333%;
}

#work #wallet .wallet-pic figure:last-child {
	width: 95%;
	margin-left: -3%;
}

#work #wallet .wk-flex figure:nth-of-type(1) {
	position: absolute;
	top: -16%;
	left: -5%;
	width: 20%;
}

#work #wallet .wk-flex figure:nth-of-type(2) {
	position: absolute;
	bottom: -5%;
	right: 38%;
	width: 25%;
}

#work #other .wk-flex {
	order: 2;
}

#work #other figure:last-child {
	order: 1;
	width: 53%;
	margin-left: -2.333333%;
}

#work #other div figure:nth-of-type(1) {
	position: absolute;
	top: -25%;
	right: 0;
	width: 20%;
}

#work #other div figure:nth-of-type(2) {
	position: absolute;
	bottom: -36%;
	left: 50%;
	width: 25%;
}

@media screen and (min-width: 975px) {
	.wk-flex p:nth-of-type(2):hover {
		transform: scale(1.05,1.05);
	}
}

@media screen and (max-width: 975px) {
	#work {
		padding-bottom: 5rem;
	}

	#work #wallet .wk-flex figure:nth-of-type(1) {
		top: -24%;
	}

	#work #wallet .wk-flex figure:nth-of-type(2) {
		right: 34%;
	}

	#work #other div figure:nth-of-type(1) {
		top: -15%;
	}

	#work #other div figure:nth-of-type(2) {
		bottom: -90px;
		left: 30%;
	}

}

@media screen and (min-width: 1200px) {

	#work .wrapper {
		margin-right: 0;
		margin-left: 0;
		width: 100%;
	}

	#work .wk-flex {
		position: relative;
	}

	#work #sp-case div figure:nth-of-type(1) {
		top: -150px;
		right: -50px;
		width: 252px;
	}

	#work #sp-case div figure:nth-of-type(2) {
		bottom: -180px;
		left: -60px;
		width: 253px;
	}

	#work #wallet .wk-flex figure:nth-of-type(1) {
		top: -180px;
		left: -50px;
		width: 238px;
	}

	#work #wallet .wk-flex figure:nth-of-type(2) {
		bottom: -230px;
		right: -90px;
		width: 296px;
	}

	#work #other div figure:nth-of-type(1) {
		top: -160px;
		width: 230px;
	}

	#work #other div figure:nth-of-type(2) {
		bottom: -210px;
		left: -20px;
		width: 289px;
	}
}


@media screen and (max-width: 750px) {
	#work {
		padding: 5rem 0;
		background: url(../images/work-table-sp.png) center top/ 100% 100%;
	}

	#work h2 {
		margin-bottom: 1.5em;
	}

	#work h2::before {
		background-size: 60%;
		background-repeat: no-repeat;
		left: -20%;
	}

	#work h2::after {
		background-size: 60%;
		background-repeat: no-repeat;
		bottom: -60%;
		right: -60%;
	}

	#work .wrapper section {
		flex-direction: column;
		margin-bottom: 10rem;
	}

	#work .wrapper .wk-flex {
		order: 2;
		width: 100%;
		padding: 0 5.3333%;
	}

	#work .wrapper #sp-case .wk-mv {
		order: 1;
		width: 80%;
		margin: 6rem 0 2rem -20%;
	}

	#work .wrapper #wallet .wallet-pic {
		order: 1;
		width: 80%;
		margin: 6rem 0 15rem;
		display: flex;
		flex-direction: column;
	}

	#work .wrapper #wallet .wallet-pic figure:nth-of-type(1) {
		order: 2;
		transform: rotate(257deg);
		transition: all 2000ms; 
		width: 80%;
		position: absolute;
		left: -3%;
		top: 35%;
	}

	#work .wrapper #wallet .wallet-pic figure:nth-of-type(2) {
		order: 1;
		transform: rotate(15deg);
		transition: all 2000ms; 
		margin: 1rem 0 50% 0;
	}

	#work .wrapper #other .wk-mv {
		order: 1;
		width: 90%;
		margin: 6rem 0 2rem;
	}

	#work .wrapper .wk-flex h3 {
		position: absolute;
		top: 0%;
		left: 50%;
		transform: translateX(-50%);
	}

	#work .wrapper .wk-flex p:nth-of-type(1) {
		padding: 3rem 2rem;
	}

	#work .wrapper .wk-flex p:nth-of-type(2) {
		padding: 1rem;
	}

	#work .wrapper .wk-flex a {
		font-size: 20px;
	}

	#work #sp-case div figure:nth-of-type(1) {
		top: 53%;
		transform: translateY(-40%);
		right: 0;
		width: 40%;
	}

	#work #sp-case div figure:nth-of-type(2) {
		bottom: -15%;
		left: 10%;
		width: 32%;
	}

	#work #wallet .wk-flex figure:nth-of-type(1) {
		top: 63%;
		transform: translateY(-40%);
		left: 0;
		width: 40%;
	}

	#work #wallet .wk-flex figure:nth-of-type(2) {
		bottom: -12%;
		right: 2%;
		width: 37%;
	}

	#work #other div figure:nth-of-type(1) {
		top: 90%;
		right: -3%;
		width: 40%;
	}

	#work #other div figure:nth-of-type(2) {
		bottom: -17%;
		left: 5%;
		width: 37%;
		transform: rotate(-25deg);
	}

}

@media screen and (max-width: 600px) {
	#work .wrapper #wallet .wallet-pic figure:nth-of-type(1) {
		top: 30%;
	}

	#work .wrapper .wk-flex h3 {
		width: 60%;
	}

	#work .wrapper .wk-flex p:nth-of-type(1) {
		padding: 2rem 1.5rem;
	}

	#work #wallet .wk-flex figure:nth-of-type(1) {
		top: 60%;
	}

}

@media screen and (max-width: 500px) {
	#work #sp-case div figure:nth-of-type(1) {
		top: 45%;
	}

	#work #wallet .wk-flex figure:nth-of-type(1) {
		top: 55%;
	}

	#work #other div figure:nth-of-type(1) {
		width: 35%;
	}
}


@media screen and (max-width: 375px) {
	#work .wrapper #wallet .wallet-pic figure:nth-of-type(1) {
		top: 30%;
	}

	#work .wrapper .wk-flex h3 {
		width: 60%;
	}

	#work #other div figure:nth-of-type(1) {
		top: 100%;
	}
}


/* ------------------------------------------------------------

about

------------------------------------------------------------ */

#about .wrapper {
	padding-top: 5.25rem;
	padding-bottom: 5.25rem;
	text-align: center;
	background: linear-gradient(to right,
			rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.3) 100%), url(../images/about-mv.jpg) left 30% bottom / cover;
}

#about h2 {
	padding-bottom: 1.5em;
	margin: 0;
	display: inline-block;
	position: relative;
}

#about h2::before {
	content: "";
	background: url(../svg/about-leaf-L.svg);
	width: 49px;
	height: 76px;
	position: absolute;
	bottom: 35%;
	left: -15%;
}

#about h2::after {
	content: "";
	background: url(../svg/about-leaf-R.svg);
	width: 49px;
	height: 76px;
	position: absolute;
	bottom: 35%;
	right: -15%;
}

#about .about-flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}

#about .about-flex .about-p {
	width: 50%;
	position: relative;
}

#about .about-flex p {
	padding: 3rem 2rem;
	background: rgba(255, 255, 255, .2);
}

#about .about-flex>figure {
	width: 50%;
	padding: 2rem;
}

#about .about-flex .about-p figure:nth-of-type(1) {
	position: absolute;
	top: -5%;
	right: 5%;
}

#about .about-flex .about-p figure:nth-of-type(2) {
	position: absolute;
	bottom: -10%;
	left: -5%;
}

#about .about-flex .about-p figure:nth-of-type(3) {
	position: absolute;
	bottom: 2%;
	right: 2%;
}

@media screen and (max-width: 750px) {
	#about .wrapper {
		padding-top: 3.5rem;
		padding-bottom: 5rem;
	}

	#about h2::before {
		background-size: 60%;
		background-repeat: no-repeat;
		bottom: -10%;
	}

	#about h2::after {
		background-size: 60%;
		background-repeat: no-repeat;
		bottom: -10%;
		right: -22%;
	}

	#about h2 {
		padding-bottom: 1em;
	}

	#about .about-flex {
		flex-direction: column;
		padding: 0 5.33333%;
	}

	#about .about-flex .about-p {
		width: 100%;
	}

	#about .about-flex .about-p p {
		padding: 2rem 1rem;
	}

	#about .about-flex>figure {
		width: 100%;
		padding: 2rem 0;
	}

	#about .about-flex .about-p figure:nth-of-type(2) {
		bottom: -15%;
	}

	#about .about-flex .about-p figure:nth-of-type(3) {
		bottom: -10%;
	}
}


/* ------------------------------------------------------------

info

------------------------------------------------------------ */

#info {
	padding-top: 5.25rem;
	padding-bottom: 5.25rem;
	text-align: center;
	background: radial-gradient(circle,
			rgba(0, 0, 0, .3) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(255, 255, 255, 0) 100%), url(../images/spMV32x.png) bottom / cover no-repeat;
}

#info h2 {
	padding-bottom: 1.5em;
	margin: 0;
	display: inline-block;
	position: relative;
	color: white;
}

#info h2::before {
	content: "";
	background: url(../svg/info-leaf-L.svg);
	width: 198px;
	height: 90px;
	position: absolute;
	bottom: 35%;
	left: -20%;
}

#info h2::after {
	content: "";
	background: url(../svg/info-leaf-R.svg);
	width: 126px;
	height: 95px;
	position: absolute;
	bottom: 40%;
	right: -20%;
}

#info div form {
	max-width: 772px;
	margin: 0 auto;
}

#info div form p:first-child {
	color: white;
	margin-bottom: 2rem;
}

#info dl {
	display: flex;
	flex-wrap: wrap;
}

#info form dl dt {
	color: white;
	width: 240px;
	text-align: left;
	font-size: 20px;
	margin-bottom: 2rem;
	margin-right: 2rem;
}

#info form dl dd {
	width: 500px;
	text-align: left;
	margin-bottom: 2rem;
}

#info div form p:last-child {
	text-align: center;
}

#info form input[type="button"] {
	font-size: 24px;
	padding: 0.5rem 1rem;
	border-radius: 10px;
	border: none;
}

#info form input[type="text"],
input[type="email"],
input[type="tel"] {
	width: 250px;
	height: 32px;
}

#info form textarea {
	width: 500px;
	height: 160px;
}

@media screen and (max-width: 850px) {
	#info dl {
		flex-direction: column;
		width: 100%;
	}

	#info form dl dt,
	#info form dl dd {
		width: 100%;
		margin-bottom: 1rem;
		margin-right: 0rem;
	}

	#info div form {
		max-width: 500px;
		margin: 0 auto;
	}

	#info form textarea {
		max-width: 500px;
		width: 100%;
	}

}

@media screen and (max-width: 750px) {
	#info .wrapper {
		padding-right: 5.33333%;
		padding-left: 5.33333%;
	}

	#info h2::before {
		background-size: 50%;
		background-repeat: no-repeat;
		bottom: -15%;
		left: -15%;
	}

	#info h2::after {
		background-size: 50%;
		background-repeat: no-repeat;
		bottom: -5%;
		right: -55%;
	}

}

main > div:last-child{
	text-align: right;
}

#icon{
	opacity: .4;
	display: inline-block;
}

@media screen and (max-width: 750px) {
	#icon img{
		width: 80%;
	}
}

/* ------------------------------------------------------------

footer

------------------------------------------------------------ */

footer p {
	padding: 3rem 0;
	text-align: center;
	background: rgba(255, 255, 255, .4);
}

@media screen and (max-width: 750px) {
	footer p {
		padding: 20px 0;
	}

}


/* ------------------------------------------------------------

kasou-page

------------------------------------------------------------ */
#kasou {
	padding-top: 80px;
}

#kasou header {
	top: 0;
}

#kasou main .breadcrumb li {
	display: inline-block;
	margin: 2rem 0 0 1rem;
}

#kasou main .breadcrumb li:first-child::after {
	content: ">";
	display: inline-block;
	padding: 0 1rem;
}

#kasou main section {
	margin-bottom: 6rem;
	text-align: center;
}

#kasou main section h1 {
	font-size: 48px;
	color: black;
	margin: 2em 0 1.5em 0;
	position: relative;
	display: inline-block;
}

#kasou main section h1::after {
	content: "";
	background: url(../svg/kasou-leaf.svg);
	width: 68px;
	height: 76px;
	position: absolute;
	bottom: 0;
	right: -25%;
}

#kasou main section h1.wl-kasou-h1::after {
	right: -15%;
}

#kasou main section h1.ot-kasou-h1::after {
	right: -50%;
}

#kasou main section #kasou-v {
	display: flex;
	justify-content: space-around;
	margin-bottom: 3rem;
	position: relative;
}

#kasou main section #kasou-v .kasou-mv {
	width: 70%;
	max-width: 920px;
	transition: transform .3s;
}

#kasou main section #kasou-v .kasou-svf {
	width: 20%;
	height: calc(20vw *2.03);
	max-height: 495px;
	overflow: hidden;
	position: relative;
}

#kasou main section #kasou-v .kasou-svf .kasou-svs{
	position: absolute;
	top: 0;
	left: 0;
	text-align: left;
}

#kasou main section #kasou-v .kasou-svf .kasou-sv {
	margin-bottom: 1rem;
	transition: transform .3s;
}

#kasou main section #kasou-v button{
	position: absolute;
	bottom: -51%;
	right: 11%;
	transform: translateY(-50%) rotate(90deg);
	width: 3%;
	height: 50%;
	border-radius: 10px;
	border:.5px solid rgba(0,0,0,.6);
	background: radial-gradient(circle,
	rgba(255, 255, 255, .5) 0%, rgba(229, 229, 229, 0.2) 50%, rgba(204, 204, 204, 0) 100%);
}

#kasou main section p {
	padding: 2rem;
	background: rgba(255, 255, 255, .5);
}

#kasou main aside {
	padding: 3.25rem 0;
	background: rgba(255, 255, 255, .5);
	margin-bottom: 150px;
}

#kasou main aside p:first-child {
	font-size: 24px;
	text-align: center;
	margin-bottom: 1.5em;
}

#kasou main aside .kasou-aside-v {
	display: flex;
	justify-content: space-around;
}

#kasou main aside .kasou-aside-v a {
	width: 30%;
	position: relative;
}

#kasou main aside .kasou-aside-v a:last-of-type {
	background: #fff;
	border: 1px black solid;
}

#kasou main aside .kasou-aside-v a:not(:last-child) div::after {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle,
			rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
	z-index: 10;
}

#kasou main aside .kasou-aside-v a div p {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 28px;
	color: white;
	width: 100%;
	z-index: 20;
}

#kasou main aside .kasou-aside-v a:last-of-type div p {
	color: black;
}

#kasou main.kasou-wllet section #kasou-v .kasou-svf {
	height: calc(20vw *2.1);
}

@media screen and (min-width: 751px) {
	#kasou main section #kasou-v .kasou-svf .kasou-sv:hover {
		transform: scale(1.1,1.1) ;
	}

	#kasou main section #kasou-v .kasou-mv:hover {
		transform: scale(1.05,1.05) ;
	}

	#kasou main aside .kasou-aside-v a:hover {
		transform: scale(1.05,1.05) ;
	}
}

@media screen and (max-width: 750px) {
	#kasou {
		padding-top: 60px;
	}

	#kasou main .breadcrumb li {
		display: inline-block;
		margin: 1rem 0 0 0;
	}

	#kasou main section {
		margin-bottom: 80px;
	}

	#kasou main section h1 {
		font-size: 28px;
	}

	#kasou main section h1::after {
		background-size: 60%;
		background-repeat: no-repeat;
		bottom: -90%;
		right: -40%;
	}

	#kasou main section h1.wl-kasou-h1::after {
		right: -27%;
	}

	#kasou main section h1.ot-kasou-h1::after {
		right: -80%;
	}

	#kasou main section #kasou-v {
		display: block;
		margin-bottom: 1.5rem;
	}

	#kasou main section #kasou-v .kasou-mv {
		width: 100%;
		max-width: 100%;
		margin-bottom: 1rem;
	}

	#kasou main section #kasou-v .kasou-svf {
		width: 100%;
		height: 20vw;
		white-space: nowrap;
	}

	#kasou main.kasou-wllet section #kasou-v .kasou-svf{
		height: 23vw;
	}

	#kasou main section #kasou-v .kasou-svf .kasou-sv {
		margin: 0 1rem 0 0;
		width: 30.5vw;
		display: inline-block;
	}

	#kasou main section #kasou-v button{
		position: static;
		transform: translateY(-0) rotate(0deg);
		width: 100%;
	}

	#kasou main section p {
		padding: 1rem;
	}

	#kasou main aside {
		margin-bottom: 100px;
	}

	#kasou main aside p:first-child {
		font-size: 20px;
	}

	#kasou main aside .kasou-aside-v {
		flex-direction: column;
		justify-content: center;
	}

	#kasou main aside .kasou-aside-v a {
		width: 100%;
		margin-bottom: 1rem;
	}

	#kasou main aside .kasou-aside-v a:last-of-type {
		height: 175px;
	}

	#kasou main aside .kasou-aside-v a div figure img.smapic {
		width: 100%;
		height: 175px;
		object-fit: cover;
		object-position: 0% 46%;
	}

	#kasou main aside .kasou-aside-v a div figure img.wallpic {
		width: 100%;
		height: 175px;
		object-fit: cover;
		object-position: 0% 70%;
	}

	#kasou main aside .kasou-aside-v a div figure img.othepic {
		width: 100%;
		height: 175px;
		object-fit: cover;
		object-position: 0% 53%;
	}

	#kasou main aside .kasou-aside-v a div p {
		font-size: 24px;
	}

}

/* ------------------------------------------------------------

js-class

------------------------------------------------------------ */

#bg-js{
	position:fixed;
	left:0;
	top:0;
	height:100%;
	width:100%;
	background:rgba(0, 0, 0, .4);
}

#photo-js{
	position:fixed;
	top:50%;
	left:50%;
	transform: translateX(-50%) translateY(-50%);
	width: 70%;
}

#photo-sp-js{
	position:fixed;
	top:50%;
	left:50%;
	transform: translateX(-50%) translateY(-50%);
	width: 100%;
}


.fade {
	opacity: 0;
	transition: all 2000ms; 
}

.fade-up {
	opacity: 0;
	transform: translate(0, 80px); 
	transition: all 2000ms; 
}

.fade-left {
	opacity: 0;
	transform: translate(-40px, 0px); 
	transition: all 2000ms; 
}

.fade-right {
	opacity: 0;
	transform: translate(40px, 0); 
	transition: all 2000ms; 
}

.idou-left {
	transform: translate(-1000px, 0); 
	transition: all 2000ms; 
}

.idou-right {
	transform: translate(1000px, 0); 
	transition: all 2000ms; 
}

.width-left {
	width: 0;
	opacity: 0;
	transition: all 1000ms; 
}

.scroll-f {
	opacity: 1;
	transform: translate(0, 0);
}

.scroll-w {
	width: 100%;
	opacity: 1;
}

.posi-icon{
	position: fixed;
	bottom: 0%;
	right: 3%;
	transform: translate(0px, -40px); 
	transition: all 1000ms; 

}