@charset "UTF-8";
/*menuコンテンツ*/
.cp_fullscreenmenu {
  position: fixed;
  z-index: 1000;
  top: 15px;
  right: 75px;
}
.cp_fullscreenmenu .menu {
  position: fixed;
/*  top: 0;
  left: 0;*/
  display: flex;
  visibility: hidden;
  overflow: hidden;
  width: 100%;
  height: 100%;
  pointer-events: none;
  outline: 1px solid transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  align-items: center;
  justify-content: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
}
@media all and (-ms-high-contrast: none){
  .cp_fullscreenmenu .menu {
  overflow: hidden;
  width: 200%;
  height: 200%;
}
}
.cp_fullscreenmenu .menu > div {
  display: flex;
  overflow: hidden;
  width: 200vw;
  height: 200vw;
  transition: all 0.4s ease;
  -webkit-transform: scale(0);
  transform: scale(0);
  text-align: center;
  color: #fefefe;
  border-radius: 50%;
  background: rgba(255, 255, 255, 1);
  flex: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991.98px) {
  .cp_fullscreenmenu .menu > div {
    width: 300vw;
    height: 300vw;
  }
}
    @media  (max-width: 991.98px) and (-ms-high-contrast: none){
  .cp_fullscreenmenu .menu {
  overflow: hidden;
  width: 300%;
  height: 300%;
}
}
@media screen and (max-width: 575.98px) {
  .cp_fullscreenmenu {
    position: fixed;
    z-index: 1000;
    top: 10px;
    right: 70px;
  }
}
.cp_fullscreenmenu .menu > div > div >  div >  div >  ul {
  display: block;
  max-height: 100vh;
  margin: 0;
  padding: 0 1em;
  list-style: none;
  transition: opacity 0.4s ease;
  opacity: 0;
}
.cp_fullscreenmenu .menu > div >  div >  div >  div > ul > li {
  font-size: 24px;
  display: block;
  margin: 1em;
  padding: 0;
}
.cp_fullscreenmenu .menu > div >  div >  div >  div > ul > li > a {
  position: relative;
  display: inline;
  cursor: pointer;
  transition: color 0.4s ease;
  color: #000000;
  font-weight: bold;
}
.cp_fullscreenmenu .menu > div >  div >  div >  div > ul > li > a:hover {
    opacity: 0.8;
}
.cp_fullscreenmenu .menu > div >  div >  div >  div > ul > li > a:hover:after {
  width: 100%;
}
.cp_fullscreenmenu .menu > div >  div >  div >  div > ul > li > a:after {
  position: absolute;
  z-index: 1000;
  bottom: -0.15em;
  left: 0;
  width: 0;
  height: 2px;
  content: '';
  transition: width 0.4s ease;
  background: #e5e5e5;
}
/*クリックしたらメニューが開閉の動作*/
.cp_fullscreenmenu .toggle {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  cursor: pointer;
  opacity: 0;
}
.cp_fullscreenmenu .toggle:checked + .hamburger > span {
	width: 50%;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.cp_fullscreenmenu .toggle:checked + .hamburger > span:before, .cp_fullscreenmenu .toggle:checked + .hamburger > span:after {
  top: 0;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.cp_fullscreenmenu .toggle:checked + .hamburger > span:after {
  opacity: 0;
}
.cp_fullscreenmenu .toggle:checked ~ .menu {
  visibility: visible;
  pointer-events: auto;
}
.cp_fullscreenmenu .toggle:checked ~ .menu > div {
  transition-duration: 0.75s;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.cp_fullscreenmenu .toggle:checked ~ .menu > div >  div >  div >  div > ul {
  opacity: 1;
}
.cp_fullscreenmenu .toggle:checked ~ .menu > div >  div >  div >  div > ul li.top {
	background-color: #000000;
	border-radius: 20px;
	width: 120px;
	margin-left: auto;
	margin-right: auto;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 120%;
	margin-top: 0px;
	padding-top: 5px;
	padding-bottom: 5px;
	color: #F9D333;
	font-weight: bold;
	-webkit-box-shadow: 2px 2px 5px hsla(0,0%,0%,0.72);
	box-shadow: 2px 2px 5px hsla(0,0%,0%,0.72);
}
.cp_fullscreenmenu .toggle:checked ~ .menu > div >  div >  div >  div > ul li:nth-of-type(1) {
  transition-delay: 0.2s;
}
.cp_fullscreenmenu .toggle:checked ~ .menu > div >  div >  div >  div > ul li:nth-of-type(2) {
  transition-delay: 0.3s;
}
.cp_fullscreenmenu .toggle:checked ~ .menu > div >  div >  div >  div > ul li:nth-of-type(3) {
  transition-delay: 0.4s;
}
.cp_fullscreenmenu .toggle:checked ~ .menu > div >  div >  div >  div > ul li:nth-of-type(4) {
  transition-delay: 0.5s;
}
.cp_fullscreenmenu .toggle:checked ~ .menu > div >  div >  div >  div > ul li:nth-of-type(5) {
  transition-delay: 0.6s;
}
.cp_fullscreenmenu .toggle:checked ~ .menu > div >  div >  div >  div > ul li:nth-of-type(6) {
  transition-delay: 0.7s;
}
.cp_fullscreenmenu .toggle:checked ~ .menu > div >  div >  div >  div > ul li:nth-of-type(7) {
  transition-delay: 0.8s;
}
.cp_fullscreenmenu .toggle:checked ~ .menu > div >  div >  div >  div > ul li:nth-of-type(8) {
  transition-delay: 0.9s;
}
.cp_fullscreenmenu .toggle:checked ~ .menu > div >  div >  div >  div > ul li:nth-of-type(9) {
  transition-delay: 1.0s;
}

.cp_fullscreenmenu .toggle:checked:hover + .hamburger > span {
	width: 50%;
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}
/*ハンバーガー*/
.cp_fullscreenmenu .hamburger {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    display: block;
    width: 60px;
    height: 30px;
    cursor: pointer;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow-x: hidden;
    overflow-y: hidden;
}
.cp_fullscreenmenu .hamburger > span {
  position: relative;
  top: 50%;
  display: block;
  width: 100%;
  height: 3px;
  transition: all 0.4s ease;
  background: #000;
	transform: rotate(125deg);
}
.cp_fullscreenmenu .hamburger > span:before, .cp_fullscreenmenu .hamburger > span:after {
  position: absolute;
  z-index: 1;
  top: -12px;
  left: 0;
  display: block;
  width: 100%;
  height: 3px;
  content: '';
  transition: all 0.4s ease;
  background: inherit;
}
.cp_fullscreenmenu .hamburger > span:after {
  top: 12px;
}


/* CSS Document */
.logo {
	position: absolute;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	z-index: 100;
}
a img:hover {
    opacity: 0.8;
}
#carouselExampleIndicators {
    overflow-x: hidden;
    overflow-y: hidden;
    line-height: 0;
    position: relative;
    padding-bottom: 200px;
}
.container2 {
    max-width: 1300px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.container3 {
    max-width: 700px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
@media screen and (max-width: 575.98px) {
.container3 {
    max-width: 500px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
}
.header-bg {
    background-position: center center;
    background-repeat: repeat-x;
    background-image: url(../images/top_bg.png);
    background-size: auto 100%;
    padding-bottom: 0px;
}
.header-bg2 {
    background-position: center center;
    background-repeat: repeat-x;
    background-image: url(../images/under_bg.png);
    background-size: auto 100%;
    padding-bottom: 0px;
}
.bgfoot {
    background-image: url(../images/bg_footer.jpg);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center top;
}
.bgfoot2 {
    background-image: url(../images/bg_footer.jpg);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center top;
}
p {
	font-size: 12pt;
}
p.big {
    font-size: 14pt;
    line-height: 1.8em;
}
	.logo {
	filter: drop-shadow(0px 0px 10px rgba(0,0,0,0.6));
}
.bg-green {
	background-color: hsla(90,27%,43%,1.00);
}
.bg-green-half {
	background-image: url(../images/header-bg.png);
	background-repeat: repeat-x;
	background-size: auto 100%;
}
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255,1);
}

.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}
h1,h2,h3,h4,h5,p,a {
	color: #4D4D4D;
}
a:hover {
	color: hsla(128,40%,12%,0.90);;
}
.news {
    list-style-type: none;
    padding-left: 0px;
    margin-left: 0px;
    padding-top: 15px;
    padding-bottom: 15px;
}
.news li {
    list-style-type: none;
    padding-left: 15px;
    margin-left: 0px;
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: #FFFFFF;
    text-align: left;
    padding-right: 15px;
    margin-bottom: 10px;
}
.news li time {
	margin-right: 15px;
}
.ftmenu {
	padding-left: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
	color: #FFFFFF;
	margin-top: 0px;
	margin-bottom: 10px;
}
.ftmenu li {
	list-style-type: none;
	display: inline-block;
	padding-right: 10px;
}
.ftmenu li a {
	color: #FFFFFF;
}
.navbar {
  padding: 0rem 0rem;
}
.collapse {
    background-color: #FFFFFF;
    width: 100vw;
    height: 100vh;
}
.icon {
	max-width: 40px;
	margin-right: 15px;
	float: right;
}
.copyright {
		font-size: 9pt;
}
.head1 {
	background-image: url(../images/head1.jpg);
	background-position: center top;
	background-attachment: fixed;
	background-repeat: no-repeat;
	height: 300px;
	background-size: contain;
	position: relative;
}
.head2 {
	background-image: url(../images/head2.jpg);
	background-position: center top;
	background-attachment: fixed;
	background-repeat: no-repeat;
	height: 300px;
	background-size: contain;
	position: relative;
}
.head3 {
	background-image: url(../images/head3.jpg);
	background-position: center top;
	background-attachment: fixed;
	background-repeat: no-repeat;
	height: 300px;
	background-size: contain;
	position: relative;
}

@media (max-width: 1199.98px) {
.bgfoot {
    background-image: url(../images/bg_footer.jpg);
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: center top;
}
}

.title {
	position: absolute;
	color: #FFFAFA;
	 top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, 70%)
}
.leadsh {
	line-height: 2em;
}
.leads {
	line-height: 2.5em;
}
.gyomu dt {
	float: left;
	font-weight: normal;
}
.gyomu dd {
	padding-left: 100px;
	font-weight: normal;
}
h3.people {
	font-size: 18pt;
	font-weight: normal;
}
h3.people small {
	font-size: 12pt;
	font-weight: normal;
}
@media (max-width: 991.98px) {
.bg-green-half {
	background-image: none;
	background-color: rgba(45,95,0,0.80);
}
}
/*******************************
* バッジの色
********************************/
/* 必須マーク */
.must {
	background: #FF1A00;
}

/* 任意マーク */
.free {
	background: #999;
}

.must,
.free {
	color: #FFF;
	border-radius: 3px;
	font-size: 12px;
	margin-right: 10px;
	padding: 5px 10px;
	letter-spacing: 0.2em;
}

/*******************************
* フォームの設定
********************************/
/* フォーム入力項目 */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea  {
	width: 100%;
	padding: 8px 15px;
	margin-right: 10px;
	margin-top: 10px;
	border-left: 0px solid #ddd;
	border-right: 0px solid #ddd;
	border-bottom: 1px dotted #4D4D4D;
	border-top: 0px solid #ddd;
	border-radius: 3px;
}

/* 送信ボタン */
input.sub-btn {
	width: 300px;
	height: 60px;
	background: #Fff;
	color: #4D4D4D;
	font-size: 1.1em;
	font-weight: normal;
	letter-spacing: 0.2em;
	border: 1px dotted #4D4D4D;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;
}

/* 送信ボタンホバー */
input.sub-btn:hover{
	background: #4D4D4D;
	color: #Fff;  
}

/* 送信ボタン中央寄せ */
.center {
	text-align:center;
}
.under {
    position: absolute;
    bottom: 10vh;
    width: 400px;
    z-index: 1000;
    left: calc(50vw - 38px);
    opacity: 0.8;
}
@media (max-width: 767.98px) {
	.under {
    bottom: 20vh;
}
		.logo {
    width: 300px;
}
	.bgfoot2 {
    background-image: url(../images/bg_footer.jpg);
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: center top;
}
}

@media (max-width: 991.98px) {
		#imageContainer  img {
    width: 100%;
}
}
.line {
    border: 5px solid #B4DDE4;
    border-radius: 25px;
}
.line2 {
    border: 5px solid #B4DDE4;
    border-radius: 25px;
    background-color: #B4DDE4;
}
.bg_cloud {
    background-image: url(../images/kazari1.png);
    background-repeat: no-repeat;
}
.button {
    position: absolute;
    bottom: 10%;
    text-align: center;
    left: 0px;
    right: 0px;
}
#page-top {
	position: fixed;
	bottom: 70px;
	right: 20px;
}
#page-top a {
    text-decoration: none;
    width: 100px;
    text-align: center;
    display: block;
}
#page-top a img:hover {
	text-decoration: none;
	opacity: 0.8;
}
