/*全体共通*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
body {
  -webkit-text-size-adjust: 100%;
  width: 100%;
  overflow-x: hidden;
  position: relative;
  color: #333333;
}
h1{
  max-height: 100%; 
  color: #333333;
}
a{
	color: #333333;
	font-weight: normal;
}
a:hover{
	cursor: pointer;
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
.red{
	color: #e60012!important;
}
.yellow{
	color: #ffff00;
}
.blue{
	color: #3372b9;
	transition: .3s;
}
.blue:hover{
	color: #135299;
}
.pink{
	color: #ff7987;
}
.center{
	text-align: center;
}
.under{
	border-bottom: 1px solid #888;
}
#loading{
	position: absolute;
	background-color: #fff;
	z-index: 1000;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
}
/*パンくずリスト*/
.breadcrumbs{
	padding-top:20px;
	padding-bottom:20px;
	padding-left: 20px;
}
.breadcrumbs li{
	position: relative;
	padding: 0 10px;
	line-height: 20px;
	height: 20px;
}
.breadcrumbs li a,.breadcrumbs li{
	display: inline-block;
	font-size: 1.3rem;
	color: #494949;
}
.breadcrumbs li:after{
	content: "";
    display: inline-block;
    border-top: 1px #494949 solid;
    border-right: 1px #494949 solid;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: -4px;
    width: 6px;
    height: 6px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.breadcrumbs li:last-child::after{
	display: none;
}


/*フォント*/
html { font-size: 62.5%; } 
body { font-size: 1.6rem; } 
h1 { font-size: 2.5rem; } 
h2 { font-size: 2rem; }
body{
	font-family: noto-sans-cjk-jp,sans-serif;
	font-weight: 500;
	font-style: normal;
	letter-spacing: 0.04em;
}
/* IE表示用のCSS　*/
@media all and (-ms-high-contrast:none){
    body {font-family: "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans",sans-serif;}
}

p,li,dd{
	font-family: noto-sans-cjk-jp,sans-serif;
	font-weight: 500;
	font-style: normal;
}
.bold{
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", noto-sans-cjk-jp,sans-serif !important;
	font-weight: bold !important;
}
.serif{
	font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
}
.sanSerif{
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
    font-weight: 500;
}


/*PC*/
@media screen and (min-width:900px){
	.pc{
		display: block;
	}
	.tab{
		display: none!important;
	}
	.sp{
		display: none!important;
	}
	.tab_sp{
		display: none!important;
	}
}
/*TAB*/
@media screen and (max-width:899px){
	.pc{
	  	display: none!important;
	}
	.tab{
		display: block;
	}
	.sp{
		display: none!important;
	}
	.tab_sp{
		display: block;
	}

}

/*SP*/
@media screen and (max-width:480px){
	.tab{
		display: none!important;
	}
	.sp{
		display: block!important;
	}
	
}

/*ブレイクポイント*/
.is-pc {

}
.is-sp {
	display: none;
}
@media screen and (max-width: 767px) {
	.is-pc {
		display: none;
	}
	.is-sp {
		display: block;
	}
}

/*共通セクションタイトル*/
.mainCntBox .cntTitleWrapper {
	text-align: center;
}
.mainCntBox .cntTitle {
	color: #222;
	text-align: center;
	padding-bottom: 14px;
	position: relative;
	display: inline-block;
}
.mainCntBox .cntTitle::after {
	content: "";
	position: absolute;
	display: block;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 61px;
	height: 3px;
	background: linear-gradient(90deg,#1283CC 0%,#1283CC 48%, transparent 49%, transparent 50%, #B82C69 51%,#B82C69 100%);
}
.mainCntBox .cntTitle h1 {
	text-transform: uppercase;
	font-weight: bold;
	font-size: 16px;
	line-height: 1.75;
}
.mainCntBox .cntTitle h2 {
	font-size: 30px;
	letter-spacing: 0.05em;
	font-weight: bold;
}

@media screen and (max-width: 767px) {
	.mainCntBox .cntTitle h1 {
		font-size: 15px;
	}
	.mainCntBox .cntTitle h2 {
		font-size: 25px;
	}
	.mainCntBox .cntTitle::before {
		left: 41%;
	}
}


/*共通ボタン*/
.btn {
	width: 300px;
	height: 50px;
	background-color: #3A7F40;
	border-radius: 25px;
	color: #fff;
	display: block;
	text-align: center;
	line-height: 45px;
	transition: all .3s ease 0s;
	border: 2px solid #3A7F40;
}
.btn:hover {
	color: #3A7F40;
	background-color: #fff;
	border: 2px solid #3A7F40;
}

/*ハンバーガーメニュー*/
#navBtn {
	position: fixed;
	top: 50%;
	transform: translateY(-50%);
	right: -38px;
	z-index: 300;
	display: none;
}
#navBtn img {
	width: 74px;
	height: 74px;
	transition: all 0.6s;
}
#navBtn img.is-active {
	transform: rotate(180deg);
}

@media screen and (max-width: 767px) {
	#navBtn {
		display: block;
	}
}

/*ドロワーメニュー*/
#nav_sp {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	right: 0;
	z-index: 299;
	background-color: #fff;
	transform: translateX(100%);
	transition: all 0.6s;
}
#nav_sp.is-active {
	transform: translateX(0);
}
#nav_sp nav{
	display: flex;
  flex-flow: column;
  height: calc(100vh - 30px);
  justify-content: space-between;
}
#nav_sp .headerLogo {
	height: 30%;
	background-color: #fff;
	display: flex;
	align-items: center;
	text-align: center;
}
#nav_sp .headerLogo a {
	display: block;
	width: 100%;
}
#nav_sp .headerLogo a img {
	width: 301px;
	height: 67px;
}
#nav_sp .headerNav_sp .mainNav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	background: transparent url(../img/common/drawerImg.jpg) no-repeat center center / cover;
	padding: 7vh 0 8vh;
}
#nav_sp .headerNav_sp .mainNav li {
	width: 162px;
	max-width: 100%;
	background-color: #fff;
	text-align: center;
	border: 1px solid #E3A623;
}
#nav_sp .headerNav_sp .mainNav li:nth-child(2n) {
	margin-left: 17px;
}
#nav_sp .headerNav_sp .mainNav li:nth-child(n + 3) {
	margin-top: 13px;
}
#nav_sp .headerNav_sp .mainNav li a {
	padding: 7vh 0;
	display: block;
}
#nav_sp .headerNav_sp .mainNav li a span:first-child {
	text-transform: uppercase;
	font-size: 12px;
	color: #E3A623;
	display: block;
}
#nav_sp .headerNav_sp .mainNav li a span:not(:first-child) {
	font-size: 16px;
	color: #222;
	letter-spacing: 0.05em;
	display: block;
	line-height: 1.53;
}
#nav_sp .cntBtn {
	margin-top: -4vh;
	display: flex;
	justify-content: center;
}
#nav_sp .cntBtn a {
	background-color: #E3A623;
	border: 2px solid #E3A623;
}
#nav_sp .cntBtn a:hover {
	color: #E3A623;
	background-color: #fff;
}
#nav_sp .subNav {
	background-color: #fff;
	padding-top: 48px;
	padding-bottom: 32px;
	margin-top: -23px;
	text-align: center;
}
#nav_sp .subNav li:not(:first-child) {
	margin-top: 15px;
}

/*ヘッダー*/
#headerLogo {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	text-align: center;
	height: 90px;
	background-color: #fff;
	z-index: 100;
}
#headerLogo::after {
	content: "";
	position: absolute;
	display: block;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(90deg,#1283CC 0%,#1283CC 50%,#B82C69 50%,#B82C69 100%);
}
#headerLogo a {
	height: inherit;
	transition: all .3s ease 0s;
}
#headerLogo a:hover {
	opacity: 0.7;
}
#headerLogo a.telBtn{
	 position: absolute;
	 right: 20px;
	 height: 60px;
	 top: 0;
	 bottom: 0;
	 margin: auto;
}
#headerLogo a:first-child img {
	width: 332px;
	height: 70px;
	margin-top: 12px;
}
#header {
	background-color: #fff;
	width: 81%;
	max-width: 1100px;
	height: 60px;
	border: 1px solid #E3A623;
	border-radius: 48px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
}
.headerMain {
	bottom: 100px;
}
.headerSub {
	bottom: -25px;
}
#headerNav {
	height: inherit;
}
#headerNav ul {
	display: flex;
	align-items: center;
	height: inherit;
	justify-content: center;
}
#headerNav ul li:not(:first-child) {
	margin-left: 100px;
}
#headerNav ul li a {
	transition: all .3s ease 0s;
	display: block;
	text-align: center;
}
#headerNav ul li a:hover {
	opacity: 0.7;
}
#headerNav span:first-child {
	text-transform: uppercase;
	font-size: 12px;
	color: #E3A623;
	display: block;
	text-align: center;
	transition: all .3s ease 0s;
}
#headerNav span:first-child:hover {
	color: #3A7F40;
}
#headerNav span:nth-child(2) {
	font-size: 16px;
	color: #222;
	letter-spacing: 0.05em;
	display: block;
	margin-top: 5px;
}

@media screen and (max-width: 1100px) {
	/*
	#header {
		bottom: 70px;
	}
	*/
	#headerNav ul li:not(:first-child) {
		margin-left: 70px;
	}
}
@media screen and (max-width: 900px) {
	/*
	#header {
		bottom: 30px;
	}
	*/
	#headerNav ul li:not(:first-child) {
		margin-left: 50px;
	}
}
@media screen and (max-width: 767px) {
	#headerLogo {
		height: 80px;
	}
	#headerLogo a:first-child img {
		width: 256px;
		height: 57px;
	}
}

/*メインヴィジュアル*/
#mainVisual {
	margin-top: 90px;
	position: relative;
}
.mainVisualImg01 {
	width: 100%;
	position: relative;
	height: 678px;
	background: transparent url(../img/top/mainVisual_slide01.jpg) no-repeat center center / cover;
}
.mainVisualImg02 {
	width: 100%;
	position: relative;
	height: 678px;
	background: transparent url(../img/top/mainVisual_slide02.jpg) no-repeat center center / cover;
}
.mainVisualImg03 {
	width: 100%;
	position: relative;
	height: 678px;
	background: transparent url(../img/top/mainVisual_slide03.jpg) no-repeat center center / cover;
}
/*
.mainVisualImg::before {
	content: "";
	display: block;
	padding-top: 49.633%;
}
.mainVisualImg img {
	-o-object-position: center;
	height: 100%;
	left: 50%;
	object-position: center;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	object-fit: cover;
	-o-object-fit: cover;
}*/
#mainVisual #copyText {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	text-align: center;
}

#mainVisual #copyText .heading {
	color: #fff;
	font-size: 52px;
	letter-spacing: 0.05em;
}
#mainVisual #copyText .subHeading {
	font-size: 28px;
	letter-spacing: 0.05em;
	color: #fff;
	line-height: 1.785;
	margin-top: 57px;
}

#mainVisual #copyText p:not(:first-child) {
	margin-top: 30px;
}

#mainVisual .telBtn{
  position: absolute;
  bottom: 20px;
  width: 90%;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 900px) {
	#mainVisual #copyText .heading {
		font-size: 45px;
	}
}

@media screen and (max-width: 767px) {
	#mainVisual {
		margin-top: 80px;
	}
	.mainVisualImg01 {
		height: 586px;
	}
	.mainVisualImg02 {
		height: 586px;
	}
	.mainVisualImg03 {
		height: 586px;
	}
	/*
	.mainVisualImg::before {
		padding-top: 156.2666%;
	}*/
	#mainVisual #copyText .heading {
		font-size: 35px;
		line-height: 1.628;	
	}
	#mainVisual #copyText .subHeading {
		font-size: 17px;
	}
	.mainVisualImg01 {
		background-image: url(../img/top/mainVisual_slide01_sp.jpg);
	}
	.mainVisualImg02 {
		background-image: url(../img/top/mainVisual_slide02_sp.jpg);
	}
	.mainVisualImg03 {
		background-image: url(../img/top/mainVisual_slide03_sp.jpg);
	}
}

/*スライダー*/
.bx-wrapper {
	width: 100%;
	max-width: 100%;
	margin: 0;
	box-shadow: none;
	border: none;
}
.bx-wrapper .bx-pager.bx-default-pager a {
	width: 150px;
	height: 6px;
	background: #fff;
	border-radius: 0;
}
.bx-wrapper .bx-controls-auto, .bx-wrapper .bx-pager {
	bottom: 41px;
}
.bx-wrapper .bx-pager.bx-default-pager a.active, .bx-wrapper .bx-pager.bx-default-pager a:focus, .bx-wrapper .bx-pager.bx-default-pager a:hover {
	background: #444;
}

/*
@media screen and (max-width: 900px) {
	.bx-wrapper .bx-controls-auto, .bx-wrapper .bx-pager {
		bottom: 12px;
	}
}*/
@media screen and (max-width: 767px) {
	.bx-wrapper .bx-pager.bx-default-pager a {
		width: 75px;
		margin: 0 2.5px;
		height: 5px;
	}
	.bx-wrapper .bx-controls-auto, .bx-wrapper .bx-pager {
		bottom: 110px;
	}
	.bx-viewport {
		height: 586px !important;
	}
}

/*下層ページメインヴィジュアル*/
#mainVisualSub {
	margin-top: 90px;
	position: relative;
}
#mainVisualSub #copyText {
	color: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 1240px;
	max-width: 100%;
	text-align: left;
	padding-left: 25px;
	padding-right: 25px;
}
#mainVisualSub .cntHeadingJa {
	font-size: 28px;
	line-height: 1.6;
	letter-spacing: 0.05em;
}
#mainVisualSub .cntHeadingEn {
	text-transform: uppercase;
}
#mainVisualSubImg {
	width: 100%;
	position: relative;
}
#mainVisualSubImg::before {
	content: "";
	display: block;
	padding-top: 14.641%;
}
#mainVisualSubImg img {
	-o-object-position: center;
	height: 100%;
	left: 50%;
	object-position: center;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	object-fit: cover;
	-o-object-fit: cover;
}

@media screen and (max-width: 767px) {
	#mainVisualSub {
		margin-top: 79px;
	}
	#mainVisualSubImg::before {
		padding-top: 31.641%;
	}
	#mainVisualSub .cntHeadingJa {
		font-size: 24px;
	}
	#mainVisualSub .cntHeadingEn {
		font-size: 14px;
	}
}

/*フッター*/
#footer {
	background-color: #FDF8F0;
	position: relative;
}
#footer::after {
	content: "";
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(90deg,#1283CC 0%,#1283CC 50%,#B82C69 50%,#B82C69 100%);
}
#footerCnt {
	display: flex;
	align-items: center;
	padding-top: 33px;
	padding-bottom: 37px;
	width: 90%;
	max-width: 1240px;
	margin: 0 auto;
	padding-left: 25px;
	padding-right: 70px;
}
#footerLogo a {
	display: block;
	transition: all .3s ease 0s;
}
#footerLogo a:hover {
	opacity: 0.7;
}
#footerLogo img {
	width: 290px;
	height: 63px;	
}
#footerNav {
	margin-left: auto;
}
#footerNavMain {
	display: flex;
}
#footerNavMain li:not(:first-child) {
	margin-left: 35px;
}
#footerNavMain a {
	transition: all .3s ease 0s;
}
#footerNavMain a:hover {
	opacity: 0.7;
}
#footer-sp {
	margin-top: 27px;
	display: none;
}
#footer-sp ul {
	display: flex;
	justify-content: center;
}
#footer-sp ul:first-child{
	margin-bottom: 10px;
}
#footer-sp ul li:not(:first-child) {
	margin-left: 18px;
}
#footer-sp ul li a {
	font-size: 12px;
	color: #3A7F40;
}
#footerSubCnt {
	background-color: #3A7F40;
}
#footerSubNav {
	display: flex;
	align-items: center;
	padding-top: 27px;
	padding-bottom: 27px;
	width: 90%;
	max-width: 1240px;
	margin: 0 auto;
	padding-left: 25px;
	padding-right: 70px;
}
#footerNavSub {
	display: flex;
	align-items: center;
}
.fa-facebook-f{
	font-size: 22px;
}
.fa-instagram{
	font-size: 22px;
}
.fa-twitter{
	font-size: 22px;
}
#footerNavSub li:not(:first-child) {
	margin-left: 25px;
}
#footerNavSub a {
	font-size: 14px;
	color: #fff;
	transition: all .3s ease 0s;
}
#footerNavSub a:hover {
	opacity: 0.7;
}
small {
	margin-left: auto;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	/* margin-right: 50px; */
}
@media screen and (max-width: 1000px) {
	#footerLogo img {
		width: 240px;
		height: 52px;
	}
	#footerNavMain li:not(:first-child) {
		margin-left: 10px;
	}
}
@media screen and (max-width: 767px) {
	#footerCnt {
		display: block;
		padding-top: 30px;
		padding-bottom: 17px;
	}
	#footerLogo a {
		text-align: center;
	}
	#footerLogo img {
		width: 256px;
		height: 56px;
	}
	#footerNav {
		margin-top: 27px;
		margin-left: 0;
	}
	#footerNavMain {
		flex-wrap: wrap;
	}
	#footerNavMain li {
		width: calc(33.3333% - 15px * 2 / 3);
		text-align: center;
	}
	#footerNavMain li:not(:first-child) {
		margin-left: 15px;
	}
	#footerNavMain li:nth-child(4) {
		margin-left: 0;
	}
	#footerNavMain li:nth-child(n + 4) {
		margin-top: 15px;
	} 
	#footerNavMain a {
		font-size: 14px;
	}
	#footer-sp {
		display: block;
	}
	#footerNavSub {
		display: none;
	}
	#footerSubNav {
		padding-left: 20px;
		padding-right: 20px;
		padding-bottom: 24px;
		padding-top: 24px;
	}
	small {
		font-size: 12px;
		margin-left: 0;
	}
}

/*トップへ戻るボタン*/
.to-top {
  position: fixed;
  right: 0;
  bottom: -1px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
	z-index: 100;
}
.to-top.is-show {
  opacity: 1;
  visibility: visible;
}
.to-top a {
  display: block;
	transition: all .3s ease 0s;
}
.to-top a:hover {
	opacity: 0.7;
}
.to-top img {
  width: 70px;
  height: 70px;
}
@media screen and (max-width: 767px) {
  .to-top img {
    width: 60px;
    height: 60px;
  }
  .to-top a:hover {
		opacity: 1;
	}
}




/*最新のお知らせ*/
#newsBox {
	margin-top: 53px;
	margin-bottom: 80px;
}
#newsBox .cntBox {
	width: 90%;
	max-width: 880px;
	margin: 0 auto;
}
#newsBox .cntSubBoxWrapper {
	margin-top: 10px;
	position: relative;
}
#newsBox .cntSubBox {
	color: #3A7F40;
	border: 1px solid #3A7F40;
}
#newsBox .cntTitle {
	display: flex;
	align-items: center;
	position: relative;
	padding-top: 6px;
	padding-left: 16px;
}
#newsBox .cntTitle::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	background-color: #1283CC;
	width: 3px;
	height: 30px;
}
#newsBox .cntTitle::after {
	content: "";
	position: absolute;
	top: 0;
	left: 5px;
	background-color: #B82C69;
	width: 3px;
	height: 30px;
}
#newsBox .cntTitle  h1 {
	font-size: 20px;
	text-transform: uppercase;
	color: #444;
}
#newsBox .cntTitle h2 {
	font-size: 13px;
	letter-spacing: 0.05em;
	margin-left: 10px;
}
#newsBox .cntSubBox ul {
	padding: 25px 32px;
}
#newsBox .cntSubBox li:not(:first-child) {
	margin-top: 7px;
}
#newsBox .cntSubBox a {
	color: #3A7F40;
	font-size: 16px;
	letter-spacing: 0.03em;
	display: flex;
	align-items: center;
	transition: all .3s ease 0s;
}
#newsBox .cntSubBox a:hover {
	opacity: 0.7;
}
#newsBox .cntSubBox a p {
	width: 150px;
}
#newsBox .cntSubBox a h3 {
	width: calc(100% - 150px);
	line-height: 1.75;
	color: #222;
}
#newsBox .cntArchive {
	font-size: 14px;
	letter-spacing: 0.03em;
	color: #fff !important;
	background-color: #3A7F40;
	display: block;
	line-height: 150px;
	align-items: center;
	width: 17.5%;
	text-align: center;
	position: relative;
	padding-right: 15px;
	transition: all .3s ease 0s;
	width: 150px;
	position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
#newsBox .cntArchive:hover {
	opacity: 0.7;
}
#newsBox .cntArchive::after {
	position: absolute;
	content: "";
	width: 17px;
	height: 17px;
	top: 50%;
	transform: translateY(-50%);
	right: 14px;
	background: url(../img/common/next.png) no-repeat center center / contain;
}


@media screen and (max-width: 767px) {
	#newsBox {
		margin-bottom: 50px;
	}
	#newsBox .cntSubBox {
		width: 100%;
	}
	#newsBox .cntArchive {
		width: 100%;
		line-height: 60px;
		position: relative;
	}
	#newsBox .cntSubBoxWrapper {
		display: block;
	}
	#newsBox .cntSubBox ul {
		padding: 27px 16px 30px;
	}
	#newsBox .cntSubBox li:not(:first-child) {
		margin-top: 20px;
	}
	#newsBox .cntSubBox a {
		display: block;
		letter-spacing: 0.02em;
	}
	#newsBox .cntSubBox a p {
		width: 100%;
		font-size: 1.4rem;
	}
	#newsBox .cntSubBox a h3 {
		width: 100%;
		margin-top: 5px;
		margin-bottom: 5px;
	}
	#newsBox .cntArchive::after {
		right: 30vw;
	}
}

/*下線*/
.cntCopy span{
	position: relative;
	background:linear-gradient(transparent 60%, #E6E6E6 0%);
	background-repeat: no-repeat;
	background-size: 100%;
	background-position: 0% 100%;
}
.cntCopy span.w-98{
	background-size: 98%;
}

