/* CSS Document */
/* リセットCSS */
body {
  box-sizing: border-box;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  border: 0;


  //background: transparent;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

button:hover {
  cursor: pointer;
}

/**************** 以下、ハンバーガーボタンのスタイリング ****************/
.navbtn {
	/* ボタンの配置位置  */
  position: fixed;
	top: 20px;
	right: 20px;
	/* ボタンの大きさ  */
  width: 50px;
  height: 50px;

	//height: 28px;
	  background:rgba(20,155,70,0.7);

  //height: 48px;
	/* バーガーの線をボタン範囲の中心に配置 */
  display: flex;
	justify-content: center;
	align-items: center;
	/* 最前面に */
  z-index: 120;
}

/***** 真ん中のバーガー線 *****/
.navbtn-line {
  /* 線の長さと高さ */
  width: 100%;
  height: 1px;
  /* バーガー線の色 */
  background-color: #fff;
  /* バーガー線の位置基準として設定 */
  position: relative;
  transition: .2s;
}

/***** 上下のバーガー線 *****/
.navbtn-line::before,
.navbtn-line::after {
  content: "";
  /* 基準線と同じ大きさと色 */
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transition: .2s;
}


.navbtn-line::before {
  /* 上の線の位置 */
  transform: translateY(-8px);
  //transform: translateY(-16px);
}


.navbtn-line::after {
  /* 下の線の位置 */
  transform: translateY(8px);
  //transform: translateY(16px);
}

/***** メニューオープン時 *****/
.navbtn-line.open {
  /* 真ん中の線を透明に */
  background-color: transparent;
}

.navbtn-line.open::before,
.navbtn-line.open::after {
  content: "";
  transition: .2s;
  background-color: #fff;
}

.navbtn-line.open::before {
  /* 上の線を傾ける */
  transform: rotate(45deg);
}

.navbtn-line.open::after {
  /* 上の線を傾ける */
  transform: rotate(-45deg);
}

/**************** ここまで、ハンバーガーボタンのスタイリング ****************/

/**************** 以下、メニューのスタイリング ****************/
.navmenu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;

　　　　/*  メニューを非表示に  */
  visibility: hidden;
	opacity: 0;
	/* メニューを縦に */
  display: flex;
	flex-direction: column;
	color: #efefef;
	background-color: rgba(0,0,0,0.8);
	transition: opacity .3s;
	margin: 0px;
	padding: 0px;
	display:none;
	z-index: 110;

}
.navmenu.open {
   transition: visibility 1s ease-in;
	display:block;
	visibility: visible;
	opacity: 1;
	transition: opacity 3s;
	//background-color: rgba(255, 100, 255, 0.5);

}
.w100 {
width: 100%;
transform: scale(0.1) rotateX(-270deg);
transition: all 3s 3s ease;

//background-color: rgba(255, 100, 255, 0.5);
}
.w100.open {
transform: scale(1) rotateX(0deg);
//background-color: rgba(0, 100, 255, 0.5);
}
a:link {
	text-decoration:none;
	color: #333;
}
.navmenu-list {
	color: #fff;
	width: 100%;
  height: 50px;

 
  text-decoration:none;
  	/* メニューテキスト位置をリスト内中心に */
	display: grid;
	justify-items: center;
	align-items: center;
	
	//background-color: rgba(255, 100, 255, 0.9);
}

.navmenu-list:hover {
  color: #aaa;
  text-decoration:none;
  //background-color: rgba(255, 255, 255, 0.9);
  transition: .3s;
  cursor: pointer;
}
.navmenu-list:a {
	text-decoration:none;
	color: #fff;
}
.navmenu-list:alink {
	text-decoration:none;
	color: #fff;
}

.navzone {
	display: grid;
	justify-items: center;
	align-items: center;
	height: 100%;
	width: 100%;
	padding: 0px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	//background-color: rgba(255, 100, 100, 0.3);
}



/**************** ここまで、メニューのスタイリング ****************/

/* =========================
   確認ページ ボタン整形
========================= */

.cf7c-confirm-page .contact-submit-wrap,
.cf7c-confirm-page .contact-reset-wrap {
  text-align: center !important;
  margin: 0 !important;
}

/* 送信ボタン */
.cf7c-confirm-page .cf7c-send-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 296px !important;
  max-width: 100% !important;
  height: 56px !important;
  margin: 40px auto 16px !important;
  padding: 0 20px !important;
  border: 1px solid #5f8f78 !important;
  background: #1a9146 !important;
  color: #fff !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-align: center !important;
  border-radius: 4px !important;
  box-shadow: none !important;
  cursor: pointer !important;
  transition: opacity 0.2s ease !important;
}

.cf7c-confirm-page .cf7c-send-btn:hover {
  opacity: 0.9;
}

/* 修正ボタン */
.cf7c-confirm-page .cf7c-back-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 296px !important;
  max-width: 100% !important;
  height: 56px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
  border: 1px solid #999 !important;
  background: #f7f7f7 !important;
  color: #333 !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-align: center !important;
  border-radius: 4px !important;
  box-shadow: none !important;
  cursor: pointer !important;
  transition: background 0.2s ease, opacity 0.2s ease !important;
}

.cf7c-confirm-page .cf7c-back-btn:hover {
  background: #fff !important;
}

/* 2ボタン全体の余白 */
.cf7c-confirm-page .contact-submit-wrap + .contact-reset-wrap {
  margin-top: 0 !important;
}

/* SP */
@media screen and (max-width: 768px) {
  .cf7c-confirm-page .cf7c-send-btn,
  .cf7c-confirm-page .cf7c-back-btn {
    width: 100% !important;
    height: 52px !important;
    font-size: 16px !important;
  }

  .cf7c-confirm-page .cf7c-send-btn {
    margin: 32px auto 12px !important;
  }
}

/* =========================
   確認ページ 縦並び
========================= */

/* グリッド解除 */
.cf7c-confirm-summary .cf7c-dl {
  display: block !important;
}

/* 項目名 */
.cf7c-confirm-summary .cf7c-dl dt {
  display: block !important;
  margin: 0 0 6px !important;
  padding:40px 0 0 5px;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #333;
}

/* 内容 */
.cf7c-confirm-summary .cf7c-dl dd {
  display: block !important;
  margin: 0 0 5px !important;
  padding:0 0 0 5px;
  font-size: 16px;
}

/* 項目名の下線を消す */
.cf7c-confirm-summary .cf7c-dl dd {
  border-bottom: none !important;
}

