@charset "utf-8";
/* ======================
   Read me

 　共通で使用するCSSの設定
 　レスポンシブ用の設定も併記

 　ルール
 　・各レスポンシブ用の設定はPC用のスタイルの直後に書くこと
 　 (その方がわかり易いです。)
======================== */

/* ======================
  common
======================== */

/* tag */
/* 1.0em ≒ 10px */
html {
  font-size: 62.5%;
}

body {
  color: #212121;
  font-weight: 500 !important;
  font-size: 1.6rem;
}

html,
body {
  width: 100%;
  height: 100%;
  font-family:  -apple-system, BlinkMacSystemFont,"Yu Gothic",YuGothic,"メイリオ", Meiryo,sans-serif;
  -webkit-text-size-adjust: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a:link {
  text-decoration: none;
}

table {
  border-collapse: separate;
  border-spacing: 0;
}

label {
  cursor: pointer;
}

strong{
  font-weight: 700;
}

@media (max-width: 600px) {
  img {
    width: 100%;
    height: auto;
  }
}

h2 {
  font-weight: bold;
  font-size: 2rem;
}

h3 {
  font-weight: bold;
  font-size: 2.6rem;
}

@media (max-width: 600px) {
  h3 {
    font-size: 2rem;
  }
}

h4 {
  font-size: 1.6rem;
}

@media (max-width: 600px) {
  h4 {
    font-size: 1.4rem;
  }
}

h5 {
  font-size: 1.4rem;
}

p {
  font-size: 1.4rem;
}

/* selector */

.clearfix::after {
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
  content: ".";
}

.contents {
  background: url(/img/common/bg_01.gif) repeat;
}
.contents--no-image{
  background-image: none;
}

.wrapper {
  position: relative;
  width: 1000px;
  margin: 0 auto;
  padding: 100px 0;
  overflow: hidden;
}

@media (max-width: 600px) {
  .wrapper {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    padding: 70px 10px 10px;
  }
}

.title {
  position: relative;
  margin-bottom: 50px;
  color: #82c216;
  font-weight: bold;
  font-size: 8rem;
  font-family: "Maven Pro","メイリオ", Meiryo,sans-serif;;
  border-bottom: solid 1px;
}

.title--light {
  color: #fafafa;
}

.title ~ p:not([class]) {
  line-height: 2;
  text-align: justify;
}

@media (max-width: 600px) {
  .title {
    position: static;
    font-weight: bold;
    font-size: 1.4rem;
    border-bottom: solid 1px;
  }
  .title + p:not([class]) {
    margin: 40px 0 0;
  }
}

.title__header {
  position: absolute;
  right: 0;
  bottom: 0;
}

@media (max-width: 600px) {
  .title__header {
    position: static;
    padding: 0.5em 0 0;
  }
}

.content-header{
  margin: 0 0 40px;
  color: #82c216;
}

@media (max-width: 600px) {
  .content-header{
    margin: 0 0 20px;
  }
}

.list-number {
  margin: 1em 0;
  padding-left: calc(1em + 4px);
  list-style: decimal outside;
}

.list-number > li {
  line-height: 1.5;
  text-align: justify;
}

.list-number ul {
  margin: 0 0 1em;
}

.list-disc {
  margin: 1em 0;
  padding-left: calc(1em + 4px);
  list-style: disc outside;
}

.list-disc > li {
  line-height: 1.5;
}


/* ブレークポイント別の非表示設定 */

@media (min-width: 601px) {
  .hidden-lg {
    display: none !important;
  }
}

@media (max-width: 600px) {
  .hidden-sm {
    display: none !important;
  }
}

/* ======================
  header
======================== */

header {
  position: fixed;
  top: 0;
  z-index: 99;
  width: 100%;
  height: 60px;
  font-family: "Titillium Web", "メイリオ", Meiryo,sans-serif;
  text-align: center;
  background: #82c216;
}

nav {
  display: inline-flex;
  align-items: center;
  height: 60px;
}

@media (max-width: 600px) {
  nav {
    width: 100vw;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  }
}

.mainmenu {
  display: flex;
  align-items: flex-end;
  height: 60px;
}

@media (max-width: 600px) {
  .mainmenu {
    position: absolute;
    top: 60px;
    display: inline-flex;
    display: none;
    flex-direction: column;
    width: 100vw;
    height: auto;
    background: #82c216;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2) inset;
  }
}

.mainmenu > li {
  display: inline-block;
  width: 140px;
}

@media (max-width: 600px) {
  .mainmenu li {
    display: block;
    width: 100%;
    height: auto;
    text-align: left;
    border-bottom: 1px solid #6fa613;
  }
}

.mainmenu > li > a {
  display: block;
  height: 46px;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
}

@media (max-width: 600px) {
  .mainmenu li > a {
    display: block;
    width: 100%;
    height: auto;
    padding: 1em 0 1em 10px;
    font-weight: bold;
  }
}

.mainmenu > li span {
  color: #4b7800;
  font-size: 1.2rem;
}

.mainmenu > li > a:hover {
  background: url("../img/common/gnav_hover.png") no-repeat bottom;
  opacity: 0.7;
}

@media (max-width: 600px) {
  .mainmenu li a:hover {
    background-image: none;
  }
}

.mainmenu > li.mapBtn {
  align-self: center;
  width: 98px;
  height: 46px;
  margin: 0;
}

@media (max-width: 600px) {
  .mainmenu li.mapBtn {
    display: block;
    width: 100%;
    height: auto;
    text-align: left;
    border-bottom: 1px solid #6fa613;
  }
}

.mainmenu > li.mapBtn a {
  height: 46px;
  padding-bottom: 20px;
  font-size: 3rem;
}

@media (max-width: 600px) {
  .mainmenu > li.mapBtn > a {
    height: auto;
    padding: 10px 0 10px 10px;
  }
}

.mainmenu > li.mapBtn a:hover {
  background: none;
}

.logo {
  display: inline-block;
  margin-right: 30px;
}

@media (max-width: 600px) {
  .logo {
    padding: 10px;
  }
}

.icon-logo {
  margin: 0;
  color: #fff;
  font-size: 4rem;
}

.icon-map {
  display: inline-block;
  color: #fff;
  font-size: 3rem;
  line-height: unset;
}

@media (max-width: 600px) {
  .icon-map {
    margin-right: 5px;
    font-size: 2rem;
  }
}

.icon-logo:hover,
.icon-map:hover {
  opacity: 0.7;
}

/* submenu */
/*  */
.submenu {
  position: absolute;
  top: 60px;
  left: 0;
  display: none;
  width: 100%;
  min-width: 1000px;
  height: 40px;
  margin: 0 auto;
  font-size: 0;
  background: #4b7800;
  opacity: 0.9;
}

@media (max-width: 600px) {
  .submenu {
    position: relative;
    top: auto;
    display: none;
    height: auto;
  }
}

.submenu li {
  display: inline-block;
  vertical-align: text-top;
}

.submenu li a {
  display: block;
  min-width: 100px;
  height: 40px;
  padding: 0 25px;
  color: #fff;
  font-size: 1.4rem;
  line-height: 40px;
}

@media (max-width: 600px) {
  .submenu > li > a {
    height: auto;
    padding: 1em;
    line-height: 1em;
  }
}

.submenu .wide {
  width: auto;
  padding: 0 20px;
}

.submenu li a:hover {
  color: #4b7800;
  background: rgba(255, 255, 255, 0.7);
}

@media (max-width: 600px) {
  header + .contents {
    width: 100%;
    min-width: initial;
  }
}

.signature {
  font-size: initial;
  line-height: 1.25;
}

.subsubmenu {
  width:100%;
  height: 40px;
  background: rgba(33,65,0,0.8) ;
  /* background: red; */
  display:none;
}
@media (max-width: 600px) {
  .subsubmenu{
  margin-top:1px;
  }
}

.cursor{
  cursor: pointer;
}

/* ======================
  pegetop button
======================== */

.toPagetop {
  position: fixed;
  bottom: 0;
  width: 99%;
  margin: 0 auto;
  text-align: right;
}

.toPagetop > a[href="#page_top"] {
  display: inline-block;
  width: 102px;
  height: 25px;
  padding: 4px 4px 0;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 4px 4px 0 0;
}

.toPagetop > a[href="#page_top"]:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* ======================
  footer
======================== */

footer {
  min-width: 1000px;
  background: #fff;
}

@media (max-width: 600px) {
  footer {
    min-width: 100%;
  }
}

.footerLinkInner {
  display: flex;
  justify-content: space-between;
  width: 1000px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .footerLinkInner {
    width: auto;
  }
}

.footerLinkInner a:hover {
  opacity: 0.7;
}

.footerLinkInner .banner {
  display: block;
  width: 220px;
  height: 80px;
  margin: 2em 0;
}

.footerLink-pc {
  background-color: #bbb;
}

.footerLink-pc li {
  margin: 1em 0;
  color: #666;
  font-size: 1.4rem;
}

.footerLink-pc li a {
  display: block;
  color: #fff;
  text-decoration: underline;
}

.footerLink-common {
  height: 60px;
  background: #f6f6f6;
  border-top: solid 1px #ddd;
  border-bottom: solid 1px #ddd;
}
.footerLink-common {
  height: 60px;
  background: #f6f6f6;
  border-top: solid 1px #ddd;
  border-bottom: solid 1px #ddd;
}

@media (max-width: 600px) {
  .footerLink-common {
    height: auto;
  }
}

.footerLeft li {
  display: inline-block;
}

.footerLeft .icon-tw,
.footerLeft .icon-fb {
  display: block;
  margin-right: 10px;
  color: #999;
  font-size: 2.5rem;
  line-height: 60px;
}

.footerRight {
  align-self: center;
}

.footerRight li {
  display: inline-block;
  padding: 0 10px;
  color: #444;
  font-size: 1.4rem;
  border-right: solid 2px #c9c9c9;
}

@media (max-width: 600px) {
  .footerRight li {
    display: block;
    line-height: 1;
    border: none;
  }
}

.footerRight li:last-child {
  padding: 0 0 0 10px;
  border: none;
}

.footerRight a {
  display: block;
  color: #444;
  text-decoration: underline;
}

@media (max-width: 600px) {
  .footerRight a:not([class]) {
    padding: 1em 1em 1em 0;
  }
}

.footerRight a:hover {
  text-decoration: none;
  opacity: 0.7;
}

.footer_link2{
  padding-left:20px;
  /* list-style-type: square; */
}

.externalLinks {
  padding: 1em;
  background: url(/img/common/ico_blank.png) 0 center no-repeat;
}

#copyright {
  clear: both;
  height: 80px;
  color: #999;
  font-size: 1.2rem;
  line-height: 80px;
  text-align: center;
  background-color: #fff;
}

/*======================
  問い合わせフォーム(contact form 7)
========================*/

.wpcf7 .form {
  border-top: dotted #4b7800 1px;
}

@media (max-width: 600px) {
  .wpcf7 .form {
    width: 100%;
    /* font-size: 1.4rem; */
  }
}

.wpcf7 .form th {
  width: 150px;
  padding: 14px 0;
  color: #4b7800;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
}

.wpcf7 .form td {
  padding: 14px 0 14px 14px;
}

.wpcf7 .form th,
.wpcf7 .form td {
  border-bottom: dotted #4b7800 1px;
}

@media (max-width: 600px) {
  .wpcf7 .form th,
  .wpcf7 .form td {
    display: inline-block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    text-align: left;
    border: none;
  }
  .wpcf7 .form th {
    padding: 20px 0 0;
  }
  .wpcf7 .form td {
    padding: 14px 0 0;
  }
}

.wpcf7-form > p {
  line-height: 1;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
  display: inline-block;
  height: 30px;
  border: solid 1px #ccc;
  border-radius: 4px;
}

.type input[type="text"] {
  width: 50%;
}

.wpcf7 input[type="date"] {
  height: 30px;
  border: solid 1px #ccc;
  border-radius: 4px;
}

.wpcf7 .ta {
  width: 100%;
  height: 100%;
  font-size: 1.6rem;
  border: solid 1px #ccc;
  border-radius: 4px;
}

.wpcf7 input[readonly],
.wpcf7 select[readonly],
.wpcf7 .ta[readonly]{
  background:#ecece8;
  border-color: #ecece8;
}

.wpcf7 .submit {
  position: relative;
  height: 150px;
  line-height: 150px;
  text-align: center;
}

.wpcf7 input[type="submit"]{
  width: 210px;
  height: 50px;
  color: #fff;
  font-weight: bold;
  font-size: 2rem;
  line-height: 50px;
  background: #82c216;
  border: none;
  cursor: pointer;
}

.wpcf7 input[type="submit"]:hover,
.wpcf7 input[type="submit"]:active{
  color: #fff;
  background: #4b7800;
}

.wpcf7 input[type="button"] {
  width: 150px;
  height: 50px;
  margin-right: 16px;
  color: #4b7800;
  font-weight: bold;
  font-size: 2rem;
  line-height: 50px;
  background: transparent;
  border: 1px solid #4b7800;
  cursor: pointer;
}

.wpcf7 input[type="button"]:hover{
  color: #fff;
  background: #4b7800
}

.wpcf7 select {
  width: 30%;
  height: 32px;
  border: solid #ddd 1px;
  border-radius: 4px;
}

.wpcf7 label {
  margin-right: 30px;
}

.required {
  line-height: 1.86;
}

.red {
  color: red;
}

.agreement a {
  color: #333;
  text-decoration: underline;
}

.agreement a:hover {
  text-decoration: none;
}

.agreement {
  margin-top: 40px;
  font-size: 1.2rem;
  text-align: center;
}

.SPContact {
  display: none;
}

.wpcf7 span.wpcf7-not-valid-tip {
  display: inline-block;
  padding-top: 10px;
  color: #a94442;
  font-size: 1.4rem;
}

.wpcf7 span.wpcf7-form-control-wrap.contents {
  display: block;
}

.wpcf7 span.wpcf7-form-control-wrap.wish {
  display: block;
}

.wpcf7 span.wpcf7-form-control-wrap.pr {
  display: block;
}

.wpcf7 span.wpcf7-form-control-wrap.shikaku {
  display: block;
}

.wpcf7 div.wpcf7-mail-sent-ok {
  display: none;
  height: 0;
  border: none;
}

.wpcf7 span.wpcf7-form-control-wrap {
  background: none;
}

.wpcf7 div.wpcf7-validation-errors {
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 15px;
  color: #a94442;
  font-size: 1.4rem;
  background-color: #f2dede;
  border: 1px solid transparent;
  border-color: #ebccd1;
  border-radius: 4px;
}

@media (max-width: 600px) {
  .wpcf7 span.wpcf7-list-item {
    display: block;
    margin: 1.5em 0;
    line-height: 1.5;
  }
}

.wpcf7 .wpcf7c-force-hide {
  display: none !important;
}

div.wpcf7 .ajax-loader{
  width: 16px;
  margin: 0 0 0 16px;
  vertical-align: middle;
  background-repeat: no-repeat;
}

/*======================
 SP MENUBTN
========================*/

@media (max-width: 600px) {
  /* menu */
  .spMenu {
    position: absolute;
    right: 10px;
    display: block;
    cursor: pointer;
  }
  .menuIcon,
  .menuIcon span {
    display: block;
    box-sizing: border-box;
    transition: transform 0.1s;
  }
  .menuIcon {
    position: relative;
    width: 40px;
    height: 40px;
  }
  .menuIcon span {
    position: relative;
    left: 0;
    width: 90%;
    height: 4px;
    background-color: #fff;
    border-radius: 4px;
  }
  .menuIcon span:nth-of-type(1) {
    top: 10px;
  }
  .menuIcon span:nth-of-type(2) {
    top: 15px;
  }
  .menuIcon span:nth-of-type(3) {
    top: 20px;
  }
  .menuIcon.active span:nth-of-type(1) {
    -webkit-transform: translateY(9px) rotate(-45deg);
    transform: translateY(9px) rotate(-45deg);
  }
  .menuIcon.active span:nth-of-type(2) {
    transform: scaleX(0.1);
  }
  .menuIcon.active span:nth-of-type(3) {
    -webkit-transform: translateY(-9px) rotate(45deg);
    transform: translateY(-9px) rotate(45deg);
  }
}

/*securityPolicy*/
/*privacyPolicy*/
  .privacy_list{
    margin:30px 0;
  }
  .privacy_list ul{
    padding-left:2rem;
  }
  @media screen and (max-width: 600px){
    .privacy_list ul{
      padding-left:0;
    }
  }

.privacy_list ul p{
  margin:20px 0;
  font-size:1.5rem;
}
.privacy_list p{
  line-height: 2rem;
}
  .privacy_list .privacy_p{
    padding-left:3rem;
  }

  .privacy_list li{
    padding-left:1rem;
    font-size:1.5rem;
    margin:20px 0;
    line-height: 2rem;
  }
.privacy_list li:before{
  content:"・";
}
.privacy_list li.privacy_list_li{
  padding-left:4rem;
  margin:10px 0;
}
.privacy_h3{
  margin:30px 0;
}
.privacy_h4{
  margin:20px 0;
}
.privacy_box{
  padding:5px;
  border:1px solid #000;
  margin:10px 0;
}
.privacy_list p.privacy_list_small_p{
  font-size:1.2rem;
}

  .concept-panel ul{
    margin-bottom:100px;
  }
  .concept-panel ul:last-child{
    margin-bottom:30px;
  }
  .concept-panel ul li{
    margin:10px 0;
  }

.wpcf7c-conf {
  background-color: #F5F5F5!important; /* 背景色 */
  color: black; /* 文字色 */
  border: 1px solid #AEAEAE; /* 周りの線: 太さ　線種 線の色 */
}

.wpcf7-text:-webkit-autofill {
  box-shadow: 0 0 0 1000px #fff inset;
}