@charset "UTF-8";
.section-title {
  font-size: 36px;
  color: #333;
  text-align: center;
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 24px;
  }
}

.para-title {
  font-size: 20px;
  text-align: center;
  color: #86926c;
}
@media screen and (max-width: 768px) {
  .para-title {
    font-size: 18px;
  }
}

.card {
  border: 1px solid #ced3c4;
  background: #fff;
  color: #605f6d;
  padding: 30px;
  font-size: 17px;
  margin-top: 40px;
}
@media screen and (max-width: 576px) {
  .card {
    font-size: 14px;
    padding: 10px;
  }
}
.card h3.title {
  font-size: 24px;
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .card h3.title {
    font-size: 20px;
  }
}
.card p.righto {
  text-align: right;
}
.card ul,
.card ol {
  padding-left: 16px;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  font-family: Open Sans, ヒラギノ角ゴ Pro W3, Hiragino Kaku Gothic Pro, Osaka, メイリオ, Meiryo, ＭＳ Ｐゴシック, MS PGothic, sans-serif;
  font-size: 14px;
  margin: 0;
  padding: 0;
}

.wrapper {
  width: 94%;
  margin: auto;
  max-width: 864px;
}

.banner {
  width: 100%;
  background-image: url("/wp-content/uploads/2019/07/slide1_2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  padding: 55px 0;
}
.banner h2 {
  font-size: 45px;
  color: #fff;
  margin: 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .banner h2 {
    font-size: 30px;
  }
}

.intro {
  padding: 60px 0;
  background-color: #eeeedc;
}

#member {
  padding: 60px 0;
}
#member .mem-row {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 768px) {
  #member .mem-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
#member .mem-row .mem-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 265px;
  overflow: hidden;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #member .mem-row .mem-item {
    height: 200px;
    margin: auto;
  }
}
#member .mem-row .mem-item a {
  color: #333;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}
#member .mem-row .mem-item a img {
  width: 80%;
}

#inquiry {
  background-color: #eeeedc;
  padding: 60px 0;
}
#inquiry .contact-form form {
  width: 380px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #inquiry .contact-form form {
    width: 100%;
  }
}
#inquiry .contact-form form input,
#inquiry .contact-form form textarea {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #dcddce;
  box-shadow: none;
  background-color: #fff;
  padding: 14px;
  font-size: 18px;
}
#inquiry .contact-form form input::placeholder,
#inquiry .contact-form form textarea::placeholder {
  color: #dcddce;
}
#inquiry .contact-form form input.wpcf7-submit {
  width: 100px !important;
  background-image: linear-gradient(180deg, #97a281, #86926c);
  color: #fff;
  display: block;
  margin: auto;
}

.social {
  list-style: none;
  display: flex;
  padding: 60px 0;
}
.social li a {
  color: #fff;
  background: rgba(0, 0, 0, 0.3);
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.site-header {
  background-color: rgba(255, 255, 255, 0.9803921569);
  position: sticky;
  top: 0;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .site-header .main-navigation {
    display: none;
  }
}
.site-header .main-navigation ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-header .main-navigation ul li a {
  display: inline-block;
  text-decoration: none;
  color: #605f6d;
  font-size: 17px;
  padding: 15px 20px;
  border-left: 1px solid #deddb9;
  transition: 0.3s;
}
.site-header .main-navigation ul li a:hover {
  background-color: #eeeedc;
}
.site-header .main-navigation ul li a img {
  width: 40px;
  height: auto;
}
.site-header .main-navigation ul li a.active {
  background-color: #eeeedc;
}
.site-header .main-navigation ul li:first-child a {
  border: 0;
}

.mobile-ham,
.mb-menu {
  display: none;
  position: fixed;
}
@media screen and (max-width: 768px) {
  .mobile-ham,
.mb-menu {
    display: block;
  }
}

.mobile-ham {
  background-color: #86926c;
  padding: 6px;
  border-radius: 6px;
  top: 10px;
  left: 10px;
  z-index: 2;
}

.mb-menu {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #e2e1e1;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}
.mb-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 90%;
}
.mb-menu ul li {
  text-align: center;
}
.mb-menu ul li a {
  text-decoration: none;
  display: block;
  padding: 10px;
  border-bottom: 1px solid #d0cbcb;
  color: #000;
}
.mb-menu.open {
  top: 0;
}

#nav-icon3 {
  width: 40px;
  height: 28px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
#nav-icon3 span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #fff;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
#nav-icon3 span:nth-child(1) {
  top: 2px;
}
#nav-icon3 span:nth-child(2), #nav-icon3 span:nth-child(3) {
  top: 12px;
}
#nav-icon3 span:nth-child(4) {
  top: 22px;
}
#nav-icon3.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}
#nav-icon3.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
#nav-icon3.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#nav-icon3.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

/*# sourceMappingURL=style.css.map */
