@charset "UTF-8";

* {
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

/* html
---------------------------------------------------- */
html {
	font-size: 62.5%;
	height: 100%;
}
h1, h2, h3, h4, h5, h6, strong {
     font-weight: 700;
} 

/* ボディー
---------------------------------------------------- */
body {
	height: 100%;
	font-family: 'Noto Sans JP', sans-serif;
	margin: 0;
	padding: 0;
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 26px;
	font-weight: 400;
	letter-spacing: 1px;
	color: #333;
	background: #fff;
	-webkit-text-size-adjust: none;
	-webkit-font-smoothing: antialiased;
}

/* リンク
---------------------------------------------------- */
a {
	color: #333;
	background: transparent;
	text-decoration: none;
}
a:visited {
	background: transparent;
}
a:hover,
a:active {
	background: transparent;
	text-decoration: underline;
}

/* 共通
---------------------------------------------------- */
.inner {
	max-width: 970px;
	margin: 0 16px;
}

.flex {
	width: 100%;
	display: -webkit-flex;
	display: -webkit-box;
    display: -ms-flexbox;
	display: -moz-flex;
    display: flex;
}
.row-column {
	flex-flow: column;
}
.row-column-reverse {
	flex-flow: column;
}
.column {
	flex-flow: column;
}
/* 幅いっぱいに広げる */
.between {
	-webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
	justify-content: space-between;
}
/* 均等に広げる */
.around {
	-ms-flex-pack: distribute;
    -webkit-justify-content: space-around;
	justify-content: space-around;
}
/* 左寄せ */
.start {	
	-webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
	justify-content: flex-start;
}
/* 右寄せ */
.end {	
	-webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
	justify-content: flex-end;
}
/* 真ん中寄せ */
.center {	
	-webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
	justify-content: center;
}

.w50,
.w49,
.w48,
.w33,
.w25,
.w20 {
	width: 100%;
}
.centre {
	text-align: center;
}

hr {
	height: 0;
 	margin: 0;
  	border: none;
  	border-top: 1px solid #ccc;
}
.footer-hr {
	display: none;
}

/*追加*/

.shareaholic-canvas{
	margin-top: 75px;
}


/* 画像
---------------------------------------------------- */
img {
	max-width: 100%;
	height: auto;
	line-height: 0;
}
a img {
	border: none;
	color: #fff;
	background: transparent;
	-webkit-transition: 0.3s ease-in-out;
       -moz-transition: 0.3s ease-in-out;
         -o-transition: 0.3s ease-in-out;
            transition: 0.3s ease-in-out;
}
a img:hover {
	opacity: 0.8;
	filter: alpha(opacity=80);
}

/* ヘッダー
---------------------------------------------------- */
header {
	width: 100%;
	height: 55px;
	position: fixed;
	z-index: 9000;
	background: #fff;
	border-bottom: 5px solid #00B967;
	box-shadow:0px 1px 0px 0px #339c4a;
	-moz-box-shadow:0px 1px 0px 0px #339c4a;
	-webkit-box-shadow:0px 1px 0px 0px #339c4a;
}
.logo {
	width: 171px;
	margin: 10px 0 0 0px; 
}

/* ナビ
---------------------------------------------------- */

/* ナビゲーション
---------------------------------------------------- */
#btn-nav {
	display: block;
	cursor: pointer;
	position: fixed;
	right: 20px;
	top: 10px;
	font-size: 12px;
	font-size: 1.2rem;
	width: 30px;
	height: 30px;
	z-index: 9999;
}
#btn-nav span {
	display: block;
	width: 30px;
	position: absolute;
	transition: all 0.4s;
	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
}
#btn-nav span:nth-child(1) {
	top: 5px;
	left: 5px;
	height: 2px;
	background: #00B967;
}
#btn-nav span:nth-child(2) {
	margin-top: -2px;
	top: 50%;
	left: 5px;
	height: 2px;
	background: #00B967;
}
#btn-nav span:nth-child(3) {
	bottom: 7px;
	left: 5px;
	height: 2px;
	background: #00B967;
}
#btn-nav.active span:nth-child(1) {
	-webkit-transform: translateY(8px) rotate(135deg);
	-moz-transform: translateY(8px) rotate(135deg);
	-ms-transform: translateY(8px) rotate(135deg);
	-o-transform: translateY(8px) rotate(135deg);
	transform: translateY(8px) rotate(135deg);
}
#btn-nav.active span:nth-child(2) {
	opacity: 0;
	-webkit-transform: translateY(-10.5px) rotate(-315deg);
	-moz-transform: translateY(-10.5px) rotate(-315deg);
	-ms-transform: translateY(-10.5px) rotate(-315deg);
	-o-transform: translateY(-10.5px) rotate(-315deg);
	transform: translateY(-10.5px) rotate(-315deg);
}
#btn-nav.active span:nth-child(3) {
	-webkit-transform: translateY(-8px) rotate(-135deg);
	-moz-transform: translateY(-8px) rotate(-135deg);
	-ms-transform: translateY(-8px) rotate(-135deg);
	-o-transform: translateY(-8px) rotate(-135deg);
	transform: translateY(-8px) rotate(-135deg);
}
nav {
	width: 100%;
	height: 100%;
	left: 0;
	z-index: 9999;
	background: rgba(255,255,255,0.8);
	overflow-x: auto;
	position: fixed;
	z-index: 9998;
	overflow: scroll;
}
nav ul {
	margin: 50px 0;
	border-top: 1px solid #333;
}

nav ul li {
	margin: 0/* 10px*/;
	text-align: center;
}
nav ul li.home,
nav ul li.about,
nav ul li.work,
nav ul li.people,
nav ul li.pc-hidden {
	margin: 0 10px;
	border-bottom: 1px solid #333;
}
nav ul li.career-recruit {
	border-bottom: none;
}
nav ul li.work,
nav ul li.recruit {
	display: none;
}
nav ul li a {
	padding: 20px 0;
	display: block;
}
nav ul li.entry a {
	background: #00B967;
	color: #fff;
}
nav ul li.sub-nav ul.child {
	display: none;
	margin: 0 7px;
	border-top: none;
}
nav ul li.sub-nav ul.child li {
	padding: 10px 7px;
	border: none;
}
nav ul li.sub-nav ul.child li a {
    display: block;
	padding: 0 0 20px 0;
}
nav ul li.sub-nav .fa {
	float: right;
	font-size: 24px;
	font-size: 2.4rem;
	color: #339C4A;
}


/* パンくず
---------------------------------------------------- */
.pankuzu {
	height: 22px;
	background: #00B967;
}
.pankuzu ul {
	display: none;
}

/* メイン
---------------------------------------------------- */
main {
	display: block;
}
main p {
	margin-bottom: 1em;
} 
main img {
	border-radius: 15px;
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
}

/* フッタリクルートリンク
---------------------------------------------------- */
.footer-recruit {
	padding: 58px 0 53px 0;
	background: #D7E0D7;
}
.footer-recruit li.footer-recruit-nav {
	width: 300px;
	margin: 0 auto 20px auto;
	list-style: none;
	line-height: 0;
	background: #fff;
	text-align: center;
}
.footer-recruit img {
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
}

/* ページトップへ
---------------------------------------------------- */
.go-top {
	display: none;
	width: 45px;
	height: 45px;
	background: #00B967;
	text-align: center;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	position: fixed;
	bottom: 35px;
	right: 25px;
}
.go-top a {
	display: block;
	width: 45px;
	height: 45px;
	font-size: 30px;
	font-size: 3.0rem;
	line-height: 38px;
	color: #fff;
}
.page-top {
	width: 100%;
	height: 23px;
	position: relative;
	background: #00B967;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #008B45;
}
.page-top-btn {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 134px;
	height: 66px;
}

/* フッタサイトマップ
---------------------------------------------------- */
.sitemap {
	display: none;
}
.footer-sitemap .inner {
	padding: 33px 0;
}
.footer-sitemap .logo {
	width: 167px;
	margin: 0 auto;
}

/* フッタ
---------------------------------------------------- */
footer {
	height: 82px;
	background: #338E4A;
}
footer .inner {
	height: 82px;
	background: url(images/footer-bg.png) top right no-repeat;
	background-size: 175px 82px;
}
footer .inner p {
	padding-top: 45px;
	font-size: 8px;
	font-size: 0.8rem;
	line-height: 14px;
	color: #fff;
	text-align: left;
}

.privacy-marks {
	margin-top: 10px;
}

.privacy-mark {
	float: left;
}


.privacy-mark img {
	width: 50px;
}


.privacy-marks-text {
	width: 100px;
	font-size: 8px;
	font-size: 0.8rem;
	line-height: 12px;
	float: left;
	margin-left: 10px;
}

/* iPad　縦　以上
---------------------------------------------------- */
@media all and (min-width: 767px) {
	
/* ヘッダー
---------------------------------------------------- */
header {
	height: 83px;
}
header .logo {
	width: 264px!important;
	margin: 20px 10px 0 10px;
}

/* 共通
---------------------------------------------------- */
.row {
	flex-flow: row;
}
.flex-1 {
	flex: 1;
	-webkit-flex: 1;
}
.row-column {
	flex-flow: row;
}
.row-column-reverse {
	flex-flow: row-reverse;
}

/* 上揃え */
.top {	
	-webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
}
/* 下揃え */
.bottom {	
	-webkit-box-align: end;
    -ms-flex-align: end;
	-webkit-align-items: flex-end;
    align-items: flex-end;
}
/* 真ん中揃え */
.centre {	
	-webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
/* ベースライン揃え */
.baseline {	
	-webkit-box-align: baseline;
    -ms-flex-align: baseline;
	-webkit-align-items: baseline;
    align-items: baseline;
}
/* ストレッチ揃え */
.stretch {	
	-webkit-box-align: stretch;
    -ms-flex-align: stretch;
	-webkit-align-items: stretch;
    align-items: stretch;
}

.w50 {
	width: 50%;
}
.w49 {
	width: 49%;
}
.w48 {
	width: 48%;
}
.w33 {
	width: 32%;
	margin-right: 2%;
}
.w33:nth-child(3n) {
	margin-right: 0;
}
.w25 {
	width: 22%;
	margin-right: 4%;
}
.w25:nth-child(4n) {
	margin-right: 0;
}

.w20 {
	width: 18%;
}
.wrap {
	-webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

/* ナビゲーション
---------------------------------------------------- */
#btn-nav {
	display: none;
}
.nav {
	width: 100%;
}
nav {
	width: 634px;
	position: relative;
	display: block;
	height: auto;
	overflow: visible;
	background: none;
}
.nav .inner {
	margin: 0 auto;
}
nav ul {
	width: 634px;
	margin: 0;
	padding: 0;
	border-top: none;
}
nav ul li.home {
	width: 12.30283%/*78px*/;
	height: 77px;
}
nav ul li.about {
	width: 26.7634%/*157px*/;
	height: 77px;
}
nav ul li.work {
	display: block;
	width: 16.71924%/*106px*/;
	height: 77px;
}
nav ul li.people {
	width: 14.66876%/*93px*/;
	height: 77px;
}
nav ul li.recruit {
	display: block;
	width: 14.51104%/*92px*/;
	height: 77px;
}
nav ul li.entry {
	width: 16.93059%/*101px*/;
}
nav ul li {
	margin: 0;
	display: block;
	border-left: 1px solid #ccc;
	text-align: center;
}
nav ul li.home,
nav ul li.about,
nav ul li.work,
nav ul li.people,
nav ul li.recruit,
nav ul li.pc-hidden {
	margin: 0;
	border-bottom: none;
}
nav ul li.entry a {
	background: #00B967;
	color: #fff;
}

nav ul li a {
	width: 100%;
	height: 78px;
	display: block;
	padding: 25px 0 0 0;
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: 700;
}
nav ul li a:hover {
	color: #fff;
	background: #00B967;
	text-decoration: none;
}
nav ul li.sub-nav {
	position: relative;
	z-index: 5000;
}
nav ul li.sub-nav:before {
	font-family: FontAwesome;
	content: "\f107";
	position: absolute;
	top: 65%;
	left: 47%;
	color: #00B967;
}
nav ul li.sub-nav .fa {
	display: none;
}
nav ul li.sub-nav ul.child {
	display: none;
    width: 210%;
	height: auto;
    position: absolute;
	top: 84px;
	margin: 0;
	padding: 0;
	white-space:nowrap;
	background: #fff;
	font-size: 11px;
	font-size: 1.1rem;
	text-align: left;
}
nav ul li.sub-nav ul.child li {
	padding: 0;
	text-align: left;
	border-bottom: 1px solid #00B967;
}
nav ul li.sub-nav ul.child li:last-child {
	border-bottom: none;
}
nav ul li.sub-nav ul.child li a {
    display: block;
	height: auto;
	padding: 12px;
}
nav ul li.sub-nav ul.child li a:hover {
	color: #fff;
	background: #00B967;
}
.pc-hidden {
	display: none;
}

/* パンくず
---------------------------------------------------- */
.pankuzu ul {
	display: block;
	display: -webkit-flex;
	display: -webkit-box;
    display: -ms-flexbox;
	display: -moz-flex;
    display: flex;
	-webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
	justify-content: flex-end;
	text-align: center;
	list-style: none;
	position: relative;
	z-index: 101;
	line-height: 1.6em;
}
.pankuzu ul li:after {
	font-family: FontAwesome;
	content: "\f105";
	color: #fff;
	margin: 0 10px;
}
.pankuzu ul li:last-child:after {
	content: "";
	margin: 0 7px 0 0;
}
.pankuzu ul li {
	font-size: 11px;
	font-size: 1.1rem;
	color: #99e3c2;
}
.pankuzu ul li a {
	font-size: 11px;
	font-size: 1.1rem;
	color: #fff;
}

/* フッタリクルートリンク
---------------------------------------------------- */
.footer-recruit li.footer-recruit-nav {
	width: 400px;
	margin: 0 20px;
}

/* フッタサイトマップ
---------------------------------------------------- */
.sitemap {
	display: block;
}
.footer-sitemap .inner {
	padding: 0;
}

.footer-sitemap {
	display: block;
	padding: 54px 0 70px 0;
}
.footer-sitemap ul {
	font-size: 13px;
	font-size: 1.3rem;
	list-style: none;
}
.sitemap ul.home li {
	width: 50px;
	margin-left: 10px;
	position: relative;
}
.sitemap ul.home li::before {
	font-family: FontAwesome;
	content: "\f105";
	position: absolute;
	top: 0;
	left: -10px;
	color: #339C4A;
}
.footer-sitemap ul.others {
	font-size: 12px;
	font-size: 1.2rem;
}
.footer-sitemap ul.others li {
	margin: 0 0 0 1em;
}

.footer-sitemap ul.others li.news {
	position: relative;
}
.footer-sitemap ul.others li.corp {
	position: relative;
	margin-left: 30px;
}
.footer-sitemap ul.others li.news::before {
	content: "・";
	position: absolute;
	top: 0;
	left: -10px;
	color: #339C4A;
}	
.footer-sitemap ul.others li.corp::before {
	content: url(images/icon-link.png);
	position: absolute;
	top: 0;
	left: -15px;
}
.footer-sitemap .first {
	padding-bottom: 10px;
	border-bottom: 1px solid #ccc;
}
.footer-sitemap .second {
	padding-top: 10px;
}
.footer-sitemap .second ul li {
	margin-left: 10px;
	position: relative;
}
.footer-sitemap .second ul li::before {
	font-family: FontAwesome;
	content: "\f105";
	position: absolute;
	top: 0;
	left: -10px;
	color: #339C4A;
}
.footer-sitemap .second ul li a {
	text-decoration: none;
}
.footer-sitemap .second ul li ul li {
	font-size: 12px;
	font-size: 1.2rem;
	position: relative;
}
.footer-sitemap .second ul li ul li::before {
	content: "・";
	position: absolute;
	top: 0;
	left: -10px;
	color: #339C4A;
}
.footer-sitemap .second ul li ul li a {
	text-decoration: underline;
}
.footer-sitemap .logo {
	margin-right: 10px;
}
.first,
.second{
	max-width: 678px;
	float: right;
}

/* フッタ
---------------------------------------------------- */
footer {
	height: 98px;
}
footer .inner {
	height: 98px;
	background: url(images/footer-bg.png) top right no-repeat;
	background-size: 208px 98px;
}
footer .inner p {
	padding-top: 20px;
	font-size: 10px;
	font-size: 1.0rem;
}
footer .inner p br {
	display: none;
}
}


/* 970px以上
---------------------------------------------------- */
@media all and (min-width: 970px) {
.inner {
	margin: 0 auto;
}
header .logo {
	margin: 20px 0 0 0;
}
}


/* IE10 */
@media all and (-ms-high-contrast:none) and (min-width: 1140px) {

}
@charset "UTF-8";

.header {
	width: 100%;
	padding-top: 76px/*102px*/;
	background: url(about/images/head-bg.jpg) center 55px no-repeat;
	background-size: cover;
	position: relative;
}
.header h1 {
	display: inline-block;
	margin: 0 auto 20px/*50px*/ auto;
	padding: 15px 25px;
	font-size: 24px;
	font-size: 2.4rem;
	font-weight: 500;
	letter-spacing: 2px;
	color: #fff;
	text-align: center;
	border: 2px solid #fff;
	border-radius: 30px;
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
}
.header-main {
	height: 100%;
	padding: 73px 0 50px 0;
	background: rgba(255,255,255,0.7);
}
.header-box {
	max-width: 970px;
	margin: 0 auto;
}
.header-box figure {
	text-align: center;
}
.header-box h2 {
	font-size: 18px;
	font-size: 1.8rem;
	font-weight: 700;
	letter-spacing: 2px;
	margin-bottom: 20px;
}
.header-box p {
	margin-bottom: 1em;
}
.header-box p.large {
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 500;
}
main h2 {
	margin: 35px auto 45px auto;
	display: inline-block;
	padding: 8px 45px;
	font-size: 26px;
	font-size: 2.6rem;
	font-weight: 500;
	color: #00B967;
	text-align: center;
	border: 2px solid #00B967;
	border-radius: 26px;
	-moz-border-radius: 26px;
	-webkit-border-radius: 26px;
}

/* 3つのスローガン
---------------------------------------------------- */
.section-1 {
	padding: 1px 0 120px 0;
}
.section-1 h3 {
	margin: 0 0 50px 0;
	font-size: 18px;
	font-size: 1.8rem;
	color: #00B967;
	background: #dbf0e7 url(about/images/h3-bg.png) top left repeat-x;
}
.section-1 h3 .inner {
	height: 103px;
	padding-top: 40px;
	text-align: center;
	position: relative;
}
.section-1 h4 {
	max-width: 970px;
	margin: 40px auto 30px auto;
	padding: 10px 0;
	font-size: 18px;
	font-size: 1.8rem;
	color: #fff;
	text-align: center;
	background: rgba(0,185,103,0.9);
	border-top: 1px solid #00B967;
}
.slogan-boxies {
	margin-bottom: 80px;
}
.slogan-box {
	margin-bottom: 50px;
}
.slogan-box figure {
	max-width: 200px;
	margin: 0 auto 40px;
	text-align: center;
}

/* ひとめでわかるエコ・プラン
---------------------------------------------------- */
.hitome-boxies {
	margin-bottom: 80px;
}
.hitome-box {
	width: 300px;
	height: 0;
    padding-top: 300px;
	margin: 0 auto 50px auto;
	background: rgba(0,185,103,0.3);
	position: relative;
	border-radius: 15px;
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
}
.hitome-box-inner {
	width: 100%;
	height: 100%;
	position: absolute;
	margin: auto;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	text-align: center;
}
.hitome-box-inner figure {
	margin-top: 20px;
}
.hitome-box-inner .text {
	position: absolute;
	margin: auto;
	bottom: 8%;
	left: 0;
	right: 0;
}
.hitome-box-inner p {
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 700;
	margin-bottom: 20px;
}
.hitome-box-inner p.large {
	font-size: 24px;
	font-size: 2.4rem;
	margin-bottom: 0;
	margin-top: 0;
}
.hitome-box-inner p strong {
	font-size: 70px;
	font-size: 7.0rem;
	color: #00B967;
}
.graph {
	width: 100%;
	overflow-x: auto;
	margin-top: 50px;
}
.graph::-webkit-scrollbar {
 	height: 5px;
	-webkit-overflow-scrolling: touch;
}
.graph::-webkit-scrollbar-track {
 	background: #f1f1f1;
	-webkit-overflow-scrolling: touch;
}
.graph::-webkit-scrollbar-thumb {
 	background: #bcbcbc;
	-webkit-overflow-scrolling: touch;
}
.graph figure {
	width: 933px;
	margin: 0 auto;
}


/* 社内制度
---------------------------------------------------- */
.section-2 {
	padding: 1px 0 120px 0;
}
.section-2 h3 {
	margin: 0 0 50px 0;
	font-size: 18px;
	font-size: 1.8rem;
	color: #00B967;
	background: #dbf0e7 url(about/images/h3-bg.png) top left repeat-x;
}
.section-2 h3 .inner {
	height: 103px;
	padding-top: 40px;
	text-align: center;
	position: relative;
}

.section-2 .seido-box {
	width: 100%;
	margin-bottom: 10px;
}
.section-2 .seido-box figure {
	text-align: center;
}
.section-2 .seido-box h4 {
	margin-top: 20px;
	margin-bottom: 10px;
	font-size: 16px;
	font-size: 1.6rem;
}
.section-2 .seido-box p {
	line-height: 24px;
}

/* 部活紹介
---------------------------------------------------- */
.section-3 {
	padding: 1px 0 120px 0;
}
.section-3 h3 {
	margin: 0 0 50px 0;
	font-size: 18px;
	font-size: 1.8rem;
	color: #00B967;
	background: #dbf0e7 url(about/images/h3-bg.png) top left repeat-x;
}
.section-3 h3 .inner {
	height: 103px;
	padding-top: 40px;
	text-align: center;
	position: relative;
}
.section-3 .club-boxies {
	margin-bottom: 30px;
}
.section-3 .club-box {
	width: 100%;
	margin-bottom: 10px;
}
.section-3 .club-box figure {
	text-align: center;
}
.section-3 .club-box h4 {
	margin-top: 10px;
	margin-bottom: 10px;
	font-size: 16px;
	font-size: 1.6rem;
}
.section-3 .club-box p {
	line-height: 24px;
}

.section-3 .circle-box {
	width: 100%;
	margin-bottom: 10px;
}
.section-3 .circle-box figure {
	text-align: center;
}
.section-3 .circle-box h4 {
	margin-top: 0;
	margin-bottom: 10px;
	font-size: 16px;
	font-size: 1.6rem;
	text-align: center;
}


/*追加201908*/

.club_lead{
	text-align: center;
	padding-bottom: 30px;
}
.club_lead h4{
	font-size: 26px;font-size: 2.6rem;
	margin-bottom: 30px;
}

.club-box_left{
	float: left;
	width: 80%;
	margin-top: 15px;
}

.club-box_right{
	float: right;
	width: 17%;
	margin-top: 15px;
}

.club-box_left h4{
	font-size: 16px;font-size: 1.6rem;
	margin-bottom: 10px;
}

.baseball_txt{
	font-size: 12px;font-size: 1.2rem;
	line-height: 24px;
	background: rgba(0,185,103,0.1);
	padding: 20px 20px 10px;
	margin-bottom: 50px;
}

.baseball_txt h5{
	font-size: 14px;font-size: 1.4rem;
}

.baseball_link{
	font-weight: 700;
	font-size: 14px;font-size: 1.4rem;
}

.baseball_link a{color: #00b967;}

.section-3 .mark{
	display: inline-block;
   vertical-align: middle;
	width: 140px;
	margin-right: 30px;
}
.section-3 .mark img{
	border-radius: 0px!important;
}

.mt30{
	margin-top: 30px;
}

.mt50{
	margin-top: 50px!important;
}

@media all and (max-width: 768px) {

.club_lead h4{
	font-size: 20px;font-size: 2rem;
	margin-bottom: 20px;
}

.club_lead br{display: none;}

.club-box_left{
	float: none;
	width: 100%;
	margin-top: 15px;
}

.club-box_right{
	float: none;
	width: 100%;
	margin-top: 15px;
	margin-bottom: 30px;
}

.section-3 .mark{
	display: inline-block;
   vertical-align: middle;
	width: 140px;
	margin-right: 10px;
}

.baseball_txt{
	margin-bottom: 10px;
}
}



/* iPad　縦　以上
---------------------------------------------------- */
@media all and (min-width: 767px) {
.header {
	padding-top: 130px;
	background: url(about/images/head-bg.jpg) center 80px no-repeat;
	background-size: cover;
}
.header h1 {
	margin: 0 auto 50px auto;
	padding: 15px 75px;
	font-size: 30px;
	font-size: 3.0rem;
}
.header-box h2 {
	font-size: 26px;
	font-size: 2.6rem;
}
.header-box .text {
	width: 45%;
}
.header-box figure {
	width: 50%;
	text-align: left;
	margin-left: 20px;
}
main h2 {
	padding: 8px 75px;
}

.slogan-box {
	width: 30%;
	margin-bottom: 0;
}

.hitome-boxies:before,
.hitome-boxies:after {
    content:"";
    display:table;
}
 
.hitome-boxies:after {
    clear:both;
}
 .hitome-boxies {
    zoom:1;
}
.hitome-box {
	float: left;
	width: 30.92783%;
    padding-top: 30.92783%;
	margin-bottom: 30px;
}
.hitome-box:nth-child(3n+2) {
	margin: 0 3.6%;
}
.hitome-box:nth-child(4),
.hitome-box:nth-child(5),
.hitome-box:nth-child(6) {
	margin-bottom: 0;
}
.section-1 h3 {
	font-size: 28px;
	font-size: 2.8rem;
}
.section-1 h4 {
	font-size: 22px;
	font-size: 2.2rem;
}
.section-2 h3 {
	font-size: 28px;
	font-size: 2.8rem;
}
.section-2 .seido-box {
	width: 300px;
	margin: 0 12px;
}
.section-2 .seido-box figure {
	text-align: left;
}
.section-2 .seido-box p {
	line-height: 24px;
}
.section-3 h3 {
	font-size: 28px;
	font-size: 2.8rem;
}
.section-3 .club-box {
	width: 48%;
	margin: 0 1%;
}
.section-3 .club-box figure {
	text-align: left;
}
.section-3 .club-box p {
	line-height: 24px;
}
.section-3 .circle-box {
	width: 31%;
	margin: 0 1%;
}
.section-3 .circle-box h4 {
	margin-top: 0;
	margin-bottom: 30px;
}
.section-3 .circle-box figure {
	text-align: left;
}
}

/* 970px　以上
---------------------------------------------------- */
@media all and (min-width: 970px) {

}

/* IE10 */
@media all and (-ms-high-contrast:none) {
}
/* IE11 */
@media all and (-ms-high-contrast:none) {
}

