@charset "UTF-8";
/* CSS Document */

body{
	grid-template: 
		"b-header"
		"b-title"
		"b-nav"
		"b-img"
		"b-thought"
		"b-create"
		"toppage"
		"b-footer"
		;
}


b-header {
	grid-area: b-header;
}

b-title {
	grid-area: b-title;
}

b-nav {
	grid-area: b-nav;
}

b-img {
	grid-area: b-img;
}

b-thought {
	grid-area: b-thought;
}

b-create {
	grid-area: b-create;
}

b-footer {
	grid-area: b-footer;
}

#create {
	margin: 0 auto;
	width: 100%;
}
.topPage {
	grid-area: toppage;
}

/*aboutページ
--------------------------------------*/
b-thought h2 {
	margin: 50px;
}

.thought-text {
	margin: 0 auto 50px;
}

.wrap {
	margin: 10% auto;
}

.create-box {
	margin: 0 auto;
	box-sizing: border-box;
	width: 100%;
	display: flex;
	align-items: flex-end;
}


@media screen and (max-width: 1000px) {
.create-box  {
	display: block;
    flex-direction: column;
  }
}

.create-item {
	display:inline-block;
	margin-top: 60px;
}


.right {
	display: inline-block;
	width: 50%;
	
}

.create-title {
	font-size: 2em;
	letter-spacing: 0.2em;
	margin: 15% auto;
}

.create-textbox {
	box-sizing: border-box;
	margin: 5% 2% 0;
	padding: 0 5% 5%;
	border: 1px solid #B6B6B6;
	
}
.create-text2 {
	text-align: justify;
	font-size: 0.8em;
}

.create-text1 {
	margin: 5% auto;
	text-align: center;
	font-weight: bold;
	font-size: 20px;
	letter-spacing: 0.2em;
	border-bottom: 1px solid #B6B6B6;
}
/*モバイル版
-----------------------------------------*/

@media screen and (max-width:600px){
	
	.thought-text {
		width: 75%;
		line-height: 1;
	}
	
		
.right {
		width: 80%;
	}
	
	.create-box {
		width: 90%;
	}
}
/*モバイル版 微調整
-----------------------------------------*/

@media screen and (max-width:450px){
	
	.thought-text h2 {
		box-sizing: border-box;
		padding: 100px;
	}
	
	h2{
	font-size: 15px;
	padding: 0 5px;
}
	/*装飾*/
h2:before,h2:after{
	display: none;
}
	
.create-textbox {
	margin: 0;
}
	
.right {
		width: 100%;
	}
	
}
/*矢印-----*/
/*
.dli-arrow-down {
  	display: inline-block;
  	vertical-align: middle;
  	color: #333;
  	line-height: 1;
  	position: relative;
  	width: 0.03em;
  	height: 1.5em;
  	background: currentColor;
	margin: 50px auto;
	font-size: 1.5em;
}

.dli-arrow-down::before {
  	content: '';
  	width: 0.65em;
  	height: 0.65em;
  	border: 0.05em solid currentColor;
  	border-top: 0;
  	border-right: 0;
  	transform: rotate(-45deg);
  	transform-origin: bottom left;
  	position: absolute;
  	left: 50%;
  	bottom: -0.05em;
  	box-sizing: border-box;
}

*/
