body {
	background-color: #fff;
	color: #232323;
	display: flex;
	flex-direction: column;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	font-size: 1.4rem;
	-webkit-text-size-adjust: 100%;
	line-height: 1.428;
	letter-spacing: 0.08em;
	margin: 0 auto;
	padding: 0;
	min-height: 100vh;
}

html>body {
	font-size: 10px;
	font-size: 1rem;
}

*+html body {
	margin: 0;
	padding: 0;
}

html, * {
	margin: 0;
	padding: 0;
}

@media print {
	a[href]:after {
		content: none;
	}
	abbr[title]:after {
		content: none;
	}
}


/* CommonStyle */

h1, h2, h3 {
	font-weight: 200;
	letter-spacing: .2rem;
	margin: 0;
}

p, li, a {
	font-size: .85rem;
	line-height: 1.7;
	/* padding-bottom: 1.1rem; */
}

ul {
	zoom: 100%;
}

ul:after {
	/* content: ""; */
	clear: both;
	height: 0;
	display: block;
	visibility: hidden;
}

li {
	margin: 0;
	padding: 0;
	list-style: none;
}

a {
	text-decoration: none;
	outline: 0;
}
.opacity:hover {
	opacity: .3;
}

a:hover {
	transition: opacity 0.3s ease-out;
}

a:link, a:visited, a:active {
	text-decoration: none;
}

img {
	max-width: 100%;
	height: auto;
	border: 0;
	margin: 0 auto;
}

address {
	margin: 2rem auto;
	font-size: .8rem;
	font-style: normal;
}

sub {
	font-size: 80%;
	vertical-align: top;
	line-height: .9;
}


/* text style */
.text-left {
	text-align: left;
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

.text-small {
	font-size: 60%;
}

.title {
	border-left: #51924b 10px solid;
	color: #51924b;
	font-size: 1.5rem;
	font-weight: bold;
	padding-left: .5rem;
	margin: 2rem 0 1rem;
}

.subtitle {
	font-size: 1.2rem;
	margin: 1rem 0;
}

.text-marker {
	/* font-size: 1rem; */
	font-weight: bold;
	background:linear-gradient(transparent 60%, #eee906 60%);
}

.text-tm {
    font-size: 50%;
}

.lh-thin {
	line-height: 0.7;
}

.list-disc {
	list-style-type: disc;
}


/* color */
.color-green {
	color: #51924b;
}

.color-nav {
	color: #232323;
}

.color-white {
	color: #fff;
}

.color-black {
	color: #000;
}

.color-caution {
	color: #f00;
}

.bg__gray {
	background-color: #eff2f4;
}


/* style */
.arrow-down {
    width: 50px;
    height: 70px;
    background-color: #51924b;
    clip-path: polygon(0 60%, 25% 60%, 25% 0, 75% 0, 75% 60%, 100% 60%, 50% 100%);
    margin: 0 auto 1rem;
}

.br-sp,
.only-sp {
	display: block;
}

.br-pc,
.only-pc {
	display:none;
}

.img__border {
    border: 1px solid #232323;
}

.border {
	padding: 1% 0;
}

.underline-gray {
	border-bottom: 1px solid #444;
	width: 80%;
	margin: 0 auto 3rem;
}

.underline-white {
	border-bottom: 1px solid #fff;
}

.invisible {
    visibility: hidden;
}

.delay-1s-2 {
	animation-delay: .5s;
}

.delay-1s {
	animation-delay: 1s;
}

.delay-2s-2 {
	animation-delay: 1.5s;
}

.sp__content {
	display: block;
}

.pc__content {
	display: none;
}

.animated {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
}

.center {
	margin: 0 auto;
}

.button {
	border-radius: 20px;
}

.button__darkgray {
	background-color: #393939;
	color: #fff;
	padding: .3rem .5rem;
}

.button__green {
	background-color: #51924b;
	color: #fff;
	padding: .5rem 1.5rem;
}

.button__blue {
	background-color: #0071ce;
	color: #fff;
	padding: .5rem 1.5rem;
}

.button__gray {
	background-color: #b5b5b5;
	color: #fff;
	padding: .3rem .5rem;
}

.button__darkgray:hover,
.button__green:hover,
.button__blue:hover,
.button__gray:hover {
	opacity: .7;
}

.imgWrap {
	overflow: hidden;	/*拡大時にはみ出た部分を隠す*/
	width: 100%;
	max-height: 100%;
}
.imgWrap img {
	display: block;
	margin: 0 auto;
	transition-duration: 0.5s;
	width: auto;
	height: auto;
	box-sizing: border-box;
}
.imgWrap img:hover {
	transform: scale(1.1);	/*画像の拡大率*/
	transition-duration: 0.5s;	/*変化に掛かる時間*/
}
.imgWrap img.no-scale:hover {
	transform: none;
}


/* fadeIn設定 */
.fadeIn {
	animation-name: fadeInAnime;
	animation-duration: 1s;
	animation-fill-mode: forwards;
	opacity: 0;
	}
	
@keyframes fadeInAnime{
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.fadeUp {
	animation-name: fadeUpAnime;
	animation-duration: 2s;
	animation-fill-mode: forwards;
	opacity:0;
}

@keyframes fadeUpAnime{
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.fadeLeft {
	animation-name: fadeLeftAnime;
	animation-duration: 2s;
	animation-fill-mode: forwards;
	opacity:0;
	}
	
@keyframes fadeLeftAnime{
	from {
		opacity: 0;
		transform: translateX(-10px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger, .fadeLeftTrigger {
	opacity: 0;
}


/* Space */
.pt1r { padding-top: 1rem;} .pt2r { padding-top: 2rem;} .pt3r { padding-top: 3rem;} .pt4r { padding-top: 4rem;} .pt5r { padding-top: 5rem;} .pt6r { padding-top: 6rem;} .pt7r { padding-top: 7rem;} .pt8r { padding-top: 8rem;} .pt9r { padding-top: 9rem;} .pt10r { padding-top: 10rem;}
.pl1r { padding-left: 1rem;} .pl2r { padding-left: 2rem;} .pl3r { padding-left: 3rem;} .pl4r { padding-left: 4rem;} .pl5r { padding-left: 5rem;} .pl6r { padding-left: 6rem;} .pl7r { padding-left: 7rem;} .pl8r { padding-left: 8rem;} .pl9r { padding-left: 9rem;} .pl10r { padding-left: 10rem;}
.pb1r { padding-bottom: 1rem;} .pb2r { padding-bottom: 2rem;} .pb3r { padding-bottom: 3rem;} .pb4r { padding-bottom: 4rem;} .pb5r { padding-bottom: 5rem;} .pb6r { padding-bottom: 6rem;} .pb7r { padding-bottom: 7rem;} .pb8r { padding-bottom: 8rem;} .pb9r { padding-bottom: 9rem;} .pb10r { padding-bottom: 10rem;}
.pr1r { padding-right: 1rem;} .pr2r { padding-right: 2rem;} .pr3r { padding-right: 3rem;} .pr4r { padding-right: 4rem;} .pr5r { padding-right: 5rem;} .pr6r { padding-right: 6rem;} .pr7r { padding-right: 7rem;} .pr8r { padding-right: 8rem;} .pr9r { padding-right: 9rem;} .pr10r { padding-right: 10rem;}

.mt1r { margin-top: 1rem;} .mt2r { margin-top: 2rem;} .mt3r { margin-top: 3rem;} .mt4r { margin-top: 4rem;} .mt5r { margin-top: 5rem;} .mt6r { margin-top: 6rem;} .mt7r { margin-top: 7rem;} .mt8r { margin-top: 8rem;} .mt9r { margin-top: 9rem;} .mt10r { margin-top: 10rem;}
.ml1r { margin-left: 1rem;} .ml2r { margin-left: 2rem;} .ml3r { margin-left: 3rem;} .ml4r { margin-left: 4rem;} .ml5r { margin-left: 5rem;} .ml6r { margin-left: 6rem;} .ml7r { margin-left: 7rem;} .ml8r { margin-left: 8rem;} .ml9r { margin-left: 9rem;} .ml10r { margin-left: 10rem;}
.mb1r { margin-bottom: 1rem;} .mb2r { margin-bottom: 2rem;} .mb3r { margin-bottom: 3rem;} .mb4r { margin-bottom: 4rem;} .mb5r { margin-bottom: 5rem;} .mb6r { margin-bottom: 6rem;} .mb7r { margin-bottom: 7rem;} .mb8r { margin-bottom: 8rem;} .mb9r { margin-bottom: 9rem;} .mb10r { margin-bottom: 10rem;}
.mr1r { margin-right: 1rem;} .mr2r { margin-right: 2rem;} .mr3r { margin-right: 3rem;} .mr4r { margin-right: 4rem;} .mr5r { margin-right: 5rem;} .mr6r { margin-right: 6rem;} .mr7r { margin-right: 7rem;} .mr8r { margin-right: 8rem;} .mr9r { margin-right: 9rem;} .mr10r { margin-right: 10rem;}


/* Layout */
.wrapper {
	overflow: hidden;
}

.container {
	width: 100%;
	height: auto;
	padding: 4%;
}

.small-inner {
	width: 100%;
	height: auto;
	margin: 2rem auto;
	padding: 4%;
}

.inner-box {
	padding: 4%;
}


/* header menu */
header {
	width: 100%;
	height: 65px;
	background-color: transparent;
	color: #333;
	padding: 10px;
	display: flex;
	/* justify-content: flex-end; */
	align-items: center;
}

.header__inner {
	width: 100%;
	margin: 0 auto;
}

.logo {
	/* width: 100px;
	margin-right: auto; */
	width: 90%;
	margin: 50vh auto 0;
}

.nav-logo {
	width: 120px;
	height: auto;
	margin: 0 auto 3rem;
}

@media all and (-ms-high-contrast: none) {
	/* ここに書く */
	.ie__nav-logo {
		max-width: 30px;
	}
}

/*メニューボタン*/
.nav__button {
	display: block;
	cursor: pointer;
	z-index: 10;
	width: 24px;
	height: 24px;
	position: fixed;
	top: 20px;
	right: 20px;
}

.nav__button span {
	display: block;
	height: 1px;
	background: #232323;
	position: absolute;
	width: 100%;
	left: 0;
	-webkit-transition: 0.5s ease-in-out;
	-moz-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
}

.nav__button span:nth-of-type(1){
	top: 0;
}

.nav__button span:nth-of-type(2) {
	top: 8px;
}

.nav__button span:nth-of-type(3) {
	top: 16px;
}

.nav__button.active span:nth-of-type(1) {
	top: 8px;
	-webkit-transform: rotate(135deg);
	-moz-transform: rotate(135deg);
	transform: rotate(135deg);
}

.nav__button.active span:nth-of-type(2) {
	width: 0;
	left: 50%;
}

.nav__button.active span:nth-of-type(3) {
	top: 8px;
	-webkit-transform: rotate(-135deg);
	-moz-transform: rotate(-135deg);
	transform: rotate(-135deg);
}

nav {
	background-color: #fff;
	transition: .5s ease-in-out;
	opacity: 0;
}

nav.open-menu {
	width: 100%;
	opacity: 1;
}

.nav__wrap {
	position: fixed;
	right: 0;
	top: 0;
	z-index: 5;
	margin: 0 auto;
	padding: 0;
	width: 0;
	height: 100vh;
	overflow: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	box-pack: center;
	-webkit-align-items: center;
	align-items: center;
}

.nav__container {
	margin-left: auto;
	margin-right: auto;
}

.nav__menu {
	margin: 0 auto;
	list-style: none;
	list-style-image: none;
}

.nav__menu li a {
	border-left: #51924b 10px solid;
	margin: 1rem 0;
    display: block;
	transition: .4s;
	padding-left: .5rem;
}

.nav__menu li a:hover {
	opacity: .3;
}

.nav-title {
	font-size: .9rem;
	color: #232323;
}

.nav__icon {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	-webkit-align-items: center;
	align-items: center;
	margin-top: .5rem;
	padding-top: 10px;
	border-top: 1px solid #232323;
}

.nav__icon li {
	margin: 0 1.5rem;
}

.nav-icon {
	display: inline-block;
	width: 20px;
	margin: 0;
}


/* main contents */
main {
	width: 100%;
	min-height: 1px;
	height: auto;
	margin: 0;
	padding: 0;
	background-color: #fff;
}

.hero {
	background: url(../images/background.png) right bottom no-repeat;
	background-size: auto 50%;
	width: 100%;
	height: 100vh;
	margin-top: -65px;
	position: relative;
}

.hero__company-sig {
	position: absolute;
	width: 50%;
	top: 50%;
    right: 5%;
}

.hero__sig {
	position: absolute;
	width: 20%;
	bottom: 5%;
	right: 5%;
}


/* 事業理念 */
.business-philosophy {
	background: url(../images/business-philosophy-circle_bg.jpg) top center no-repeat;
	background-size: auto 40%;
	width: 100%;
	padding: 2%;
}

.business-philosophy img {
	width: 100%;
	object-fit: cover;
}

.business-philosophy__chart {
	display: flex;
	flex-direction: column;
}

.chart {
	margin: 4rem auto 0;
	width: 90%;
	font-size: .8rem;
}

.chart dt {
	margin-bottom: 1rem;
}

.chart dd {
	margin: 0 0 2rem 2rem;
}

.arrow {
	clip-path: polygon(70% 0, 100% 50%, 70% 100%, 0 100%, 0 0);
    width: 100px;
    height: 1.2rem;
    color: #fff;
    padding: 0.1rem 0.7rem;
}

.chart01 {
	background: #9dc44d;
}

.chart02 {
	background: #6eb253;
}

.chart03 {
	background: #51924b;
}

.chart04 {
	background: #38683d;
}

.chart-slogan {
	text-align: center;
	color: #51924b;
}


/* 大径製材品製造工程 */
.flow {
	background: url(../images/flow_bg.svg) center center no-repeat;
	background-size: 100% auto;
	width: 100%;
	padding: 2%;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-between;
}

.flow__cards {
	width: 45%;
	margin-bottom: 2.5rem;
}

.flow__cards img,
.flow__cards h3 {
	margin-bottom: 1rem;
}

.flow-slogan {
	text-align: center;
	color: #51924b;
}


/* 大径材について */
.overview {
	display: flex;
	flex-direction: column;
}

.overview-img {
	margin: 3rem auto;
	width: 80%;
}

.overview-detail {
	margin: 0 auto;
	width: 90%;
}

.overview-slogan {
	text-align: center;
	color: #51924b;
	/* font-size: 1.2rem; */
}


/* 大径材と環境保全 */
.percentage,
.graph {
	width: 90%;
	margin: 3rem auto 0;
	display: flex;
    flex-direction: column;
}

.percentage figure,
.graph figure {
	text-align: center;
	font-size: .7rem;
	margin-bottom: 1rem;
}

.percentage img,
.graph img {
	margin-bottom: 1rem;
	width: 70%;
}

.graph figcaption {
	margin-bottom: .5rem;
}


/* JAS大径材について */
.about {
	margin: 3rem auto 0;
	width: 90%;
	display: flex;
    flex-direction: column;
}

.about img {
	margin: 0 auto 1rem;
}

.product-info {
	margin-top: 2rem;
	border: 1px solid #232323;
	padding: 2rem 1rem 1rem;
	position: relative;
}

.product-info > h3 {
	position: absolute;
    top: -0.7rem;
    display: block;
    background-color: #fff;
    padding: 0 1rem;
}

.product-info__detail {
	display: flex;
	flex-wrap: wrap;
	font-size: .8rem;
}

.product-info__detail dt {
	width: 25%;
	padding: 0;
	margin-bottom: .5rem;
	display: flex;
}

.product-info__detail dd {
	width: 75%;
	padding: 0 0 0 .5rem;
	margin-bottom: .5rem;
}

.product-info__detail dd::before {
	content: '/';
	padding-right: .5rem;
}

.product-info__detail dt:last-of-type,
.product-info__detail dd:last-of-type {
	display: block;
	width: 100%;
}

.product-info__detail dd:last-of-type::before {
	content: none;
}


/* 大径材関連機械紹介 */
.machine-introduction {
	display: flex;
    flex-direction: column;
	margin: 3rem auto 0;
	width: 90%;
}


/* 大径材活用建築実績紹介 */
.works {
	margin: 3rem auto 0;
}

.works__cards {
	display: flex;
	flex-direction: column;
	width: 100%;
	margin: 1rem auto 2rem;
}

.works__image,
.works__caption {
	width: 100%;
}

.works__comment-image {
	display: flex;
	flex-direction: row;
}

.works__comment-image img {
	width: 45%;
	margin: .5rem auto;
}


/* 準耐火大径材の可能性 */
.semi-fireproof {
	display: flex;
	flex-direction: column;
	margin: 3rem auto 0;
	width: 90%;
}

.semi-fireproof img {
	width: 70%;
}

.semi-fireproof-title {
	font-size: .8rem;
}

.flex-table {
	display: flex;
	flex-direction: column;
}

.flex-table table {
	font-size: .6rem;
	border-collapse:  collapse;
	margin: 2rem auto 0;
}

.flex-table th,
.flex-table td {
	border: 1px solid #b5b5b5;
	padding: .5rem;
}

.flex-table thead {
	background-color: #fbefca;
}

.flex-table tbody {
	text-align: center;
}

.flex-table tfoot {
	background-color: #f9e3d4;
}


/* コンタクトフォーム */
.contact {
	margin: 3rem auto 0;
	width: 90%;
}

.form dt {
	padding: .5rem 0 0;
}
.form dd {
	padding: .3rem 0 .7rem;
	border: 1px solid #232323;
}
.form dd:last-of-type {
	margin-bottom: 2rem;
}
input:not([type="submit"]), input:not([type=checkbox]), textarea {
	outline: none;
	width: 100%;
	margin: 0;
	border: none;
	font-size: 16px;
}
input:not([type="submit"]):active, input:not([type=checkbox]):active, textarea:active, input:not([type="submit"]):focus, input:not([type=checkbox]):focus, textarea:focus {
	background-color: #efefef;
}

input:not([type=checkbox]) {
	min-height: 2rem;
	font-size: 16px;
}

.radio-btns {
	/* margin-top: .2rem; */
	display: flex;
	flex-direction: column;
}
label {
	margin: .5rem 0;
}
/* ラジオボタン */
.radio-btns input[type=radio] {
	display: none;
}
.radio-btns label {
	position: relative;
	padding-left: 2rem;
	width: 100%;
}
.radio-btns input[type=radio] + label::before {
	position: absolute;
	content: '';
	display: block;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #fff;
	border: 1px solid #232323;
	left: 6px;
    top: 2px;
}
.radio-btns input[type=radio] + label::after {
	position: absolute;
	content: '';
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #00753f;
	left: 10px;
    top: 6px;
	opacity: 0;
	transition: .3s;
}
.radio-btns input[type=radio]:checked + label::after {
	opacity: 1;
}


textarea {
	padding-top: .4rem;
	min-height: 10rem;
	resize: vertical;
}

.g-recaptcha > div {
	margin: 1rem auto;
}

.submit__btn {
	text-align: center;
	/* display: none; */
}

button{
    appearance: none;
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
}
button {
	cursor: pointer;
	padding: .5rem 3rem;
	color: #fff;
	text-align: center;
	line-height: 1;
	background: #00753f;
	letter-spacing: 0.2rem;
	border-radius: .5rem;
}

button:after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 1.2rem;
	margin: auto;
	display: inline-block;
	width: 0.5rem;
	height: 0.5rem;
	border-right: 1px solid #fff;
	border-top: 1px solid #fff;
	transform: rotate(45deg);
	transition: right 0.5s;
}

button:hover:after{
	right: 1em;
}


/* footer */
footer {
	background: url(../images/footer-bg.svg) center bottom no-repeat;
	width: 100%;
	text-align: center;
	/* background-color: #ddd; */
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding: 5% 0 20px;
	margin-top: 50px;
}

.logo__footer {
	width: 25%;
	margin-bottom: 50px;
}

.copyright {
	text-align: center;
	font-size: 75%;
}


/* @media (max-width: 350px) {
	.nav__container {
		margin-left: auto;
		margin-right: 3%;
	}

	.nav__menu > li:hover .collection__list {
		left: -55%;
	}

	.about__detail-fukidashi {
		left: 65%;
	}
} */

@media (min-width: 520px) {
	.text-tracking {
		line-height: 2.3;
	}

	.logo {
		width: 50%;
		margin: 100vw 5vw 0 auto;
	}

	.hero__company-sig {
		width: 30%;
		top: 55%;
	}

	.hero__sig {
		width: 10%;
	}
	

	/* 事業理念 */
	.business-philosophy {
		background-size: auto 60%;
	}
	

	/* 大径材について */
	.overview-slogan {
		text-align: center;
		margin: 2rem auto 0;
		width: 100%;
		font-size: 1rem;
	}
	

	/* 大径材と環境保全 */
	.percentage figure,
	.graph figure {
		margin: 0 auto 2rem;
	}
	
	.percentage img {
		width: 40%;
	}

	.graph img {
		width: 60%;
	}


	/* JAS大径材について */
	/* .about {
		width: 100%;
		flex-direction: row;
		justify-content: space-between;
	}

	.about figure {
		width: 80%;
		margin: 0 auto;
	}

	.about-detail {
		width: 100%;
	} */


	/* 大径製材品製造工程 */
	.flow-slogan {
		font-size: 1rem;
	}


	/* 大径材関連機械紹介 */
	


	/* 大径材活用建築実績紹介 */
	.works {
		width: 70%;
	}

	.works__cards {
		flex-direction: row;
		justify-content: space-around;
	}

	.works__image,
	.works__caption {
		width: 45%;
	}

	.works__caption p {
		font-size: .6rem;
		line-height: 2.1;
	}
	
	.works__caption p.subtitle {
		font-size: 1rem;
		margin: 0 0 1rem;
	}

	.works__comment {
		width: 80%;
		margin: 1rem auto 0;
	}

	.works__comment img {
		width: 45%;
		margin: .5rem auto;
	}
	


	.flex-table {
		flex-direction: row;
	}
	








	/* footer */
	.logo__footer {
		width: 15%;
	}
}


@media (min-width: 960px) {
	.only-sp {
		display: none;
	}

	.only-pc {
		display: block;
	}

	.br-sp {
		display: none;
	}
	
	.br-pc {
		display: block;
	}

	.text-tracking {
		line-height: 1.7;
	}
	
	.container {
		padding: 5% 10%;
		margin-left: auto;
		margin-right: auto;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}

	.small-inner {
		max-width: 800px;
		padding-bottom: 8%;
	}
	
	header {
		height: 80px;
	}
	
	.logo {
		width: 230px;
		margin: 0 auto 0 0;
	}
	
	/*メニュー*/
	.nav__button {
		display: none;
	}
	
	nav {
		transition: .5s ease-in-out;
		opacity: 1;
	}

	.nav__wrap {
		position: static;
		margin: 0;
		width: auto;
		height: auto;
		overflow: hidden;
	}
	
	.nav__container {
		width: 100%;
		margin: 0;
	}
	
	.nav__menu {
		margin: 0 auto;
		list-style: none;
		list-style-image: none;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		justify-content: space-around;
		-webkit-align-items: center;
		align-items: center;
	}

	nav.open-menu {
		width: auto;
	}
	
	.nav__menu li a {
		padding: 0 0 0 .3rem;
		height: auto;
		margin-right: 0.7rem;
		font-size: .65rem;
	}
	
	.nav__icon {
		margin-top: 0;
		padding-top: 0;
		border-top: none;
	}
	
	.nav__icon li {
		margin: 0 1rem;
	}

	.hero {
		margin-top: -80px;
		background-size: contain;
	}

	.hero__company-sig {
		width: 23%;
		top: 47%;
	}

	.hero__sig {
		width: 8%;
	}
	

	/* 事業理念 */
	.business-philosophy {
		background-size: cover;
	}

	.business-philosophy img {
		margin: 0 5% 0 0;
		width: 35%;
	}

	.business-philosophy__chart {
		flex-direction: row;
		align-items: center;
	}

	.chart {
		margin: 2rem auto 0;
		width: 100%;
	}

	.chart dt {
		margin-bottom: .5rem;
	}

	.chart dd {
		margin: 0 0 1.5rem 2rem;
	}

	.chart-slogan {
		font-size: 1.2rem;
	}
	

	/* 大径材について */
	.overview {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}

	.overview-img {
		width: 35%;
	}

	.overview-detail {
		width: 60%;
		display: block;
		margin: 0;
	}

	.overview-detail p {
		font-size: .8rem;
	}

	.overview-slogan {
		text-align: center;
		margin: 2rem auto 0;
		width: 100%;
		font-size: 1.2rem;
	}


	/* 大径材と環境保全 */
	.percentage,
	.graph {
		width: 100%;
		flex-direction: row;
		justify-content: space-around;
	}
	
	.percentage img {
		width: 70%;
	}

	.graph img {
		width: 100%;
	}

	.percentage-detail,
	.graph-detail {
		width: 60%;
		font-size: .8rem;
		display: block;
	}

	.percentage-detail p,
	.graph-detail p {
		line-height: 2.3;
	}


	/* JAS大径材について */
	.about {
		width: 100%;
		flex-direction: row;
		justify-content: space-between;
	}

	.about figure {
		width: 40%;
		display: block;
		margin: 0 auto;
	}

	.about-detail {
		width: 50%;
		display: block;
	}


	/* 大径製材品製造工程 */
	.flow {
		background: url(../images/flow_bg.svg) center center no-repeat;
		background-size: contain;
		width: 100%;
		padding: 2%;
		display: flex;
		flex-direction: row;
		justify-content: space-between;
	}

	.flow__cards {
		width: 23%;
		margin-bottom: 0;
	}

	.flow__cards img,
	.flow__cards h3 {
		margin-bottom: 1rem;
	}

	.flow__cards p {
		font-size: .8rem;
	}

	.flow-slogan {
		text-align: center;
		color: #51924b;
		/* font-size: 1.2rem; */
	}


	/* 大径材関連機械紹介 */
	.machine-introduction {
		flex-direction: row;
		justify-content: space-between;
	}
	.machine-image {
		width: 30%;
	}

	.machine-description {
		width: 65%;
	}

	.flex-item-1 {
		order: 1;
	}

	.flex-item-2 {
		order: 2;
	}

	.flex-item-3 {
		order: 3;
	}


	/* 大径材活用建築実績紹介 */
	.works {
		width: 100%;
		display: flex;
		flex-direction: row-reverse;
		justify-content: space-between;
	}

	.works__results,
	.works__comment {
		width: 47%;
		margin: 0 auto;
		display: block;
	}
	

	/* 準耐火大径材の可能性 */
	.semi-fireproof {
		flex-direction: row;
		justify-content: space-between;
		width: 100%;
	}

	.semi-fireproof-image {
		width: 30%;
	}

	.semi-fireproof img {
		width: 100%;
	}

	.semi-fireproof-description {
		width: 65%;
	}

	.semi-fireproof-title {
		font-size: 1rem;
	}


	/* footer */
	.logo__footer {
		width: 9%;
	}
}


@media (min-width: 1200px) {
	.container {
		padding: 5%;
		max-width: 1200px;
	}
	
	.header__inner {
		max-width: 1200px;
	}
	
	.nav__menu li a {
		margin-right: 1rem;
		font-size: .8rem;
	}

	.hero {
		background-size: 100% 50%;
	}


	/* 大径材について */
	.overview-detail p {
		line-height: 2.3;
	}
	

	/* JAS大径材について */
	.about figure {
		width: 30%;
	}

	/* 大径材と環境保全 */
	/* .percentage-detail p,
	.graph-detail p {
		line-height: 2.3;
	} */
	
	.slide__box {
		max-width: 1200px;
	}
	
	.schedule-container {
		max-width: 1000px;
	}
}


@media (min-width: 1920px) {
	.container {
		padding: 4%;
		max-width: 1600px;
	}
	
	.header__inner {
		max-width: 1600px;
	}
	
	.slide__box {
		max-width: 1600px;
	}
	
	.schedule-container {
		max-width: 1200px;
	}
}