@CHARSET "UTF-8";
/* Font */
@font-face {
	font-family: "NotoSansJPR";
	src: url("../fonts/NotoSansJP-Bold.ttf") format("truetype");
}
@font-face {
	font-family: "NotoSansJPB";
	src: url("../fonts/NotoSansJP-Bold.ttf") format("truetype");
	font-weight: bold;
}
/* Common */
* {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	font-family: "NotoSansJPR", "NotoSansJPB", "游ゴシック", "YuGothic";
}
*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	outline: none;
}
html,
body {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
body {
	width: 100%;
	background: #fff;
	line-height: 1.5;
	font-weight: 600 !important;
	font-feature-settings: "palt";
	letter-spacing: 0.1em;
	/*text-indent: 0.1em;*/
	color: #000;
	font-size: 16px;
	text-align: left;
	overflow-wrap: break-word;
	word-wrap: break-word;
	overflow-x: hidden;
	margin: 0 auto;
	text-align: center;
}
h2 {
	font-size: 22px;
}
p,
li,
span,
label {
	font-family: "NotoSansJPR", "NotoSansJPB", "游ゴシック", "YuGothic";
}
small {
	line-height: 1.2;
	font-size: .8rem;
	font-weight: 500;
}
strong {
	font-weight: 600;
}
ul,
ol,
li {
	list-style: none;
}
/* Chrome/Safari */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
/* FireFox/IE */
input[type="number"] {
	-moz-appearance:textfield;
}
a {
	text-decoration: none;
	color: #000;
	font-weight: 600;
}
a:hover,
button:hover {
	opacity: 0.7;
}
textarea {
	resize: none;
	height: 100px;
}
img {
	width: 100%;
}
.readonly:focus {
	outline: none;
}
.inline-block {
	display: inline-block;
}
.color-red {
	color: #b22222;
}
.color-white {
	color: #fff;
}
.font-bold {
	font-weight: bold;
}
.left {
	text-align: left;
}
.right {
	text-align: right;
}
.center {
	text-align: center;
}
.hide {
	display: none;
}
.w80 {
	width: 80px;
}
.w100 {
	width: 100px;
}
.w150 {
	width: 150px;
}
.w200 {
	width: 200px;
}
.w250 {
	width: 250px;
}
.mt_10 {
	margin-top: 10px;
}
.mt_20 {
	margin-top: 20px;
}
.mt_50 {
	margin-top: 50px;
}
.mb_10 {
	margin-bottom: 10px;
}
.mb_20 {
	margin-bottom: 20px;
}
.mb_50 {
	margin-bottom: 50px;
}
.only-pc {
	display: block;
}
.only-sp {
	display: none;
}
@media only screen and (max-width: 768px) {
	.only-pc {
		display: none;
	}
	.only-sp {
		display: block;
	}
}

/* Header */
header {
	min-height: 100px;
	padding: 0px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
header h1 {
	display: flex;
	flex-direction: column;
	color: #000;
}
header h1 p {
	font-size: 25px;
}
header div ul {
	display: flex;
	align-items: center;
}
header div ul li {
	width: 150px;
	font-weight: bold;
}
header div ul li small {
	font-weight: 600;
}
/*========= ナビゲーションのためのCSS ===============*/
#g-nav {
	/*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
	position: fixed;
	z-index: -1;
	opacity: 0; /*はじめは透過0*/
	/*ナビの位置と形状*/
	top: 0;
	width: 100%;
	height: 100vh; /*ナビの高さ*/
	background: #999;
	/*動き*/
	transition: all 0.3s;
}
/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive {
	opacity: 1;
	z-index: 999;
}
/*ナビゲーション*/
#g-nav ul {
	display: none;
	/*ナビゲーション天地中央揃え*/
	position: absolute;
	z-index: 999;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
#g-nav.panelactive ul {
	display: block;
}
/*リストのレイアウト設定*/
#g-nav li {
	list-style: none;
	text-align: center; 
}
#g-nav li a {
	color: #333;
	text-decoration: none;
	padding: 10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}
/*========= ボタンのためのCSS ===============*/
.openbtn {
	position: fixed;
	z-index: 9999;/*ボタンを最前面に*/
	top: 25px;
	right: 10px;
	cursor: pointer;
	width: 60px;
	height: 50px;
}
/*×に変化*/  
.openbtn span {
	display: inline-block;
	transition: all .4s;
	position: absolute;
	left: 14px;
	height: 3px;
	border-radius: 2px;
	background-color: #312f2f;
	width: 45%;
}
.openbtn span:nth-of-type(1) {
	top: 15px; 
}
.openbtn span:nth-of-type(2) {
	top: 23px;
}
.openbtn span:nth-of-type(3) {
	top: 31px;
}
.openbtn.active span:nth-of-type(1) {
	top: 18px;
	left: 18px;
	transform: translateY(6px) rotate(-45deg);
	width: 40%;
}
.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}
.openbtn.active span:nth-of-type(3){
	top: 30px;
	left: 18px;
	transform: translateY(-6px) rotate(45deg);
	width: 40%;
}
@media only screen and (max-width: 1100px) {
	header div ul li {
		width: 105px;
		font-size: 11px;
	}
}
@media only screen and (max-width: 768px) {
	
}
@media only screen and (max-width: 428px) {
	
}

/* Footer */
footer {
	color: #fff;
	background: #666; /* #312f2f */
	/*padding: 20px 0 15px;*/
	padding: 15px 0;
	margin-top: 50px;
}
footer ul {
	display: flex;
	justify-content: center;
	margin: 15px 0;
}
footer ul li {
	padding: 8px;
	font-size: 14px;
}
footer ul li a {
	color: #fff;
	font-weight: 500;
}
/*
footer p {
	margin-top: 10px;
}*/
@media only screen and (max-width: 1100px) {
	
}
@media only screen and (max-width: 768px) {
	
}
@media only screen and (max-width: 428px) {
	/*
	footer p {
		margin: 0;
	}*/
	footer p small {
		font-size: 0.5rem;
	}
}

/* First View */
.top_view {
	width: 100%;
	height: 100vh;
	background-image: url(../img/main_view.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
}
.top_view:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.3);
}
.top_view .inner {
	position: absolute;
	width: 100%;
}
.top_view .inner h1,
.top_view .inner div,
.top_view .inner ul li a {
	color: #fff;
}
.top_view .openbtn span {
	background-color: #fff;
}
.top_view .inner .catch-copy {
	height: calc(100vh - 200px);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.top_view .inner .catch-copy p {
	color: #fff;
	font-size: 20px;
	margin: 5px 0;
}
.top_view .inner .catch-copy p font {
	font-size: 30px;
}
@media only screen and (max-width: 1100px) {
	
}
@media only screen and (max-width: 768px) {
	.top_view .inner .catch-copy p {
		font-size: 16px;
		text-align: center;
	}
	.top_view .inner .catch-copy p font {
		font-size: 26px;
	}
}
@media only screen and (max-width: 428px) {
	
}

/* banner */
.banner-list {
	width: 100%;
}
.banner-list ul {
	display: flex;
	margin: 10px 0;
}
.banner-list ul li {
	width: calc(100% / 3);
	height: 300px;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
}
.banner-list ul li.kaitori-img {
	background-image: url(../img/img_kaitori.webp);
}
.banner-list ul li.brand-img {
	background-image: url(../img/img_brand.webp);
}
.banner-list ul li.sdgs-img {
	background-image: url(../img/img_sdgs.webp);
}
.banner-list ul li:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.3);
}
.banner-list ul li .li-inner {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	width: 100%;
	height: 100%;
	color: #fff;
	font-size: 20px;
}
@media only screen and (max-width: 1100px) {
	.banner-list ul li {
		height: 250px;
	}
	.banner-list ul li .li-inner {
		font-size: 18px;
	}
}
@media only screen and (max-width: 768px) {
	.banner-list ul {
		flex-direction: column;
	}
	.banner-list ul li {
		width: 100%;
		height: 250px;
		margin-top: 10px;
	}
}
@media only screen and (max-width: 428px) {
	
}

/* tamarunmall */
.banner-tamarunmall {
	width: 100%;
	height: 300px;
	background-image: url(../img/img_tamarunmall.webp);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
}
.banner-tamarunmall:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.3);
}
.banner-tamarunmall .inner {
	position: absolute;
	width: 100%;
	height: 100%;
}
.banner-tamarunmall .inner a {
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 20px;
	width: 100%;
	height: 100%;
}
@media only screen and (max-width: 1100px) {
	
}
@media only screen and (max-width: 768px) {
	.banner-tamarunmall {
		height: 250px;
	}
}
@media only screen and (max-width: 428px) {
	
}

/* company */
.company {
	margin: 20px auto;
}
.company ul {
	display: flex;
	justify-content: space-evenly;
	width: 768px;
	margin: 10px auto;
}
.company ul li img {
	max-width: 250px;
}
@media only screen and (max-width: 1100px) {
	
}
@media only screen and (max-width: 768px) {
	.company p {
		padding: 0 10px;
		text-align: left;
	}
	.company ul {
		width: 100%;
	}
	.company ul li img {
		max-width: 150px;
	}
}
@media only screen and (max-width: 428px) {
	.company p {
		font-size: 14px;
	}
}

/* Title */
h3 {
	border-bottom: solid 3px #93c47d;
	position: relative;
	text-align: left;
}
h3::after {
	position: absolute;
	content: " ";
	display: block;
	border-bottom: solid 3px #274e13;
	bottom: -3px;
	width: 20%;
}
h3 p {
	padding: 10px 30px;
}

/* button */
.button-block {
	margin: 10px auto;
	display: flex;
	justify-content: center;
}
.button-block a.btn,
.button-block button {
	width: 300px;
	margin: 10px;
	padding: 10px 20px;
	border-radius: 100vh;
	background: #93c47d;
	border-bottom: 5px solid #274e13;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
}
.button-block a.btn:hover,
.button-block button:hover {
	transform: translateY(3px);
	border-bottom: 2px solid #274e13;
	margin-bottom: 13px;
	opacity: 1;
}
.beginning-button-block {
	margin: 10px auto 0px;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
}
.beginning-button-block a.beginning-button,
.beginning-button-block button {
	width: 300px;
	margin: 5px;
	padding: 15px 20px;
	border-radius: 100vh;
	background: #93c47d;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	border: none;
}
.beginning-button-block a.beginning-button.white {
	padding: 5px 20px;
	background: #fff;
	color: #274e13;
	border-bottom: none;
	border: solid 1px #274e13;
}

/* info */
.info {
	max-width: 980px;
	margin: 10px auto 0;
	padding: 15px;
	text-align: center;
	border: solid 1px #b22222;
}
.info div {
	width: 80%;
	margin: 0 auto;
	text-align: left;
}
.info p {
	margin-top: 15px;
}
@media only screen and (max-width: 1100px) {
	
}
@media only screen and (max-width: 768px) {
	.info p {
		font-size: 0.8rem;
	}
}
@media only screen and (max-width: 428px) {
	
}


