@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
html {
  font-size: 100%;
}

img {
  width: 100%;
  height: auto;
}

body {
  font-family: "noto sans", sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: #292424;
}

.mv {
  border: 1px solid #373737;
  width: 100%;
}
.mv > img {
  width: 100%;
}

.page_child p {
  max-width: 800px;
}
.page_child p + p {
  margin-top: 3vh;
}

.sns_flex {
  display: flex;
  width: 80%;
  margin: 3vh auto 0;
  justify-content: space-between;
}
@media only screen and (max-width:700px) {
  .sns_flex {
    flex-wrap: wrap;
    width: 100%;
  }
}
.sns_flex .facebook_wrap,
.sns_flex .wrap_fb {
  width: 100%;
  max-width: 500px;
}
.sns_flex .facebook_wrap .fb-page,
.sns_flex .wrap_fb .fb-page {
  max-width: 500px;
  width: 100% !important;
  height: 400px;
}
.sns_flex .wrap_fb > div {
  margin: 0 0 2vh;
}
@media only screen and (max-width:700px) {
  .sns_flex .wrap_yt {
    width: 100%;
    margin: 3vh 0 0 0;
  }
}
.sns_flex .wrap_yt > div {
  margin: 2vh auto 2vh;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0;
}
.sns_flex .wrap_yt > div iframe {
  width: 100%;
  aspect-ratio: 16/9;
  margin: 0 auto;
}
.sns_flex > div h3 {
  font-weight: bold;
  position: relative;
  display: flex;
  align-items: center;
}
.sns_flex > div h3::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 100px;
  background: #358B49;
  margin-right: 7px;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

h1 > img {
  display: block;
  max-width: 280px;
  cursor: pointer;
}

.menu-btn {
  position: fixed;
  top: 10px;
  right: 10px;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: #358B49;
}
.menu-btn span,
.menu-btn span::before,
.menu-btn span:after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: white;
  position: absolute;
}
.menu-btn span:before {
  bottom: 8px;
}
.menu-btn span:after {
  top: 8px;
}

#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0); /*メニューオープン時は真ん中の線を透明にする*/
}

#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}

#menu-btn-check {
  display: none;
}

.menu-btn {
  display: none;
}

.menu-content {
  font-weight: bold;
}
.menu-content .visit {
  color: #358B49 !important;
}
@media only screen and (max-width:700px) {
  .menu-content .visit {
    color: white !important;
  }
}
.menu-content ul {
  display: flex;
}
.menu-content ul li {
  margin: 0 10px;
}
.menu-content ul li a {
  transition: 0.3s;
}
.menu-content ul li a:hover {
  color: #358B49;
}

@media only screen and (max-width:700px) {
  .menu-btn {
    display: flex;
  }
  .menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%; /*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: #358B49;
    transition: all 0.5s; /*アニメーション設定*/
  }
  .menu-content ul {
    padding: 70px 10px 0;
    display: block;
  }
  .menu-content ul li {
    border-bottom: solid 1px #ffffff;
    list-style: none;
  }
  .menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color: white;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
    transition: 0.3s;
  }
  .menu-content ul li a:hover {
    color: #358B49;
  }
  .menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
  }
  #menu-btn-check:checked ~ .menu-content {
    left: 0; /*メニューを画面内へ*/
  }
}
.wrap {
  width: 100%;
  padding: 10vh 0;
}
.wrap .content {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
@media only screen and (max-width:700px) {
  .wrap .content {
    padding: 7vw;
  }
}

h2 {
  font-weight: bold;
  font-size: 1rem;
  border-bottom: 1px solid #000;
  padding-bottom: 5px;
}

.top_mv {
  background: url(../img/bg01.png) no-repeat;
  padding: 10vh 0 9vh;
  background-size: cover;
  margin: 11vh 0;
}
@media only screen and (max-width:700px) {
  .top_mv {
    padding: 10vh 6vw 9vh;
  }
  .top_mv .txt_center {
    text-align: left;
  }
}
.top_mv .btn_green {
  margin: 5vh auto 0;
}

.head_child {
  background: #F2F8F4;
  color: #358B49;
  font-weight: bold;
  padding: 7vh 0;
}
.head_child h2 {
  font-size: 1.3rem;
  text-align: center;
  border-bottom: none;
}

@media only screen and (max-width:700px) {
  .pc {
    display: none;
  }
}

.tit_lightgreen {
  color: #8DC363;
  font-weight: bold;
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 5vh;
}

.center {
  margin-left: auto;
  margin-right: auto;
}

footer {
  background: #358B49;
  color: white;
  padding: 5vh 3vw;
}
footer h5 {
  border-bottom: 1px solid white;
  padding-bottom: 5px;
  margin: 0 0 3vh;
  width: 100%;
}
footer h5 img {
  display: block;
  max-width: 170px;
}
footer .content {
  display: flex;
  flex-wrap: wrap;
}
footer .content ul {
  margin-right: 3vw;
}
@media only screen and (max-width:700px) {
  footer .content ul {
    width: 100%;
  }
}
footer .content ul li {
  padding: 10px;
}
@media only screen and (max-width:700px) {
  footer .content ul li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.322);
  }
}
footer h6 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 1vh;
}
footer .adbox {
  border-left: 1px solid white;
  padding-left: 3vw;
}
@media only screen and (max-width:700px) {
  footer .adbox {
    width: 100%;
    margin: 3vh 0;
    border-left: none;
  }
}
footer .adbox span {
  display: block;
}
@media only screen and (max-width:700px) {
  footer .adbox span {
    text-align: center;
  }
}
footer .adbox a {
  display: none;
}
@media only screen and (max-width:700px) {
  footer .adbox a {
    display: block;
    background: #2E2E2E;
    color: white;
    padding: 1rem 0;
    text-align: center;
    border-radius: 100px;
    margin: 1vh 0 2vh;
  }
}
@media only screen and (max-width:700px) {
  footer .adbox a + span {
    display: none;
  }
}

.btn_green,
.btn_black {
  display: block;
  width: 80%;
  max-width: 360px;
  padding: 20px 0;
  background: #358B49;
  text-align: center;
  color: white;
  border-radius: 100px;
  transition: 0.3s;
}
.btn_green:hover,
.btn_black:hover {
  background: #4ec069;
}

.btn_black {
  background: #292424;
}
.btn_black:hover {
  background: #121111;
}

.topic_list {
  padding-top: 20px;
}
.topic_list dl {
  display: flex;
  margin: 12px 0;
}
@media only screen and (max-width:700px) {
  .topic_list dl {
    flex-wrap: wrap;
    margin: 3vh 0;
  }
}
.topic_list dl dt {
  margin-right: 1rem;
  font-weight: bold;
  color: #358B49;
}
@media only screen and (max-width:700px) {
  .topic_list dl dt {
    width: 100%;
  }
}

.box_bg {
  background: url(../img/bg02.png) no-repeat;
  background-size: cover;
  padding: 2vh 0;
  background-position: bottom;
  margin: 8vh 0;
}
.box_bg ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 900px;
  margin: 2vh auto;
}
.box_bg ul li {
  display: flex;
  align-items: center;
  background: white;
  padding: 2.5vw;
  border-radius: 9px;
  margin: 15px;
  font-weight: bold;
  width: 45.4545454545%;
}
@media only screen and (max-width:700px) {
  .box_bg ul li {
    width: 100%;
    padding: 4.5vw;
    margin: 1vh 2vw;
  }
}
.box_bg ul li > span {
  color: #358B49;
  font-size: 2rem;
  margin-right: 0.7rem;
  line-height: 0;
}

.sec_01 {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width:700px) {
  .sec_01 {
    flex-wrap: wrap;
  }
}
.sec_01 > div {
  text-align: center;
}
@media only screen and (max-width:700px) {
  .sec_01 > div {
    width: 100%;
    margin-bottom: 5vh;
  }
}
.sec_01 a {
  width: 100% !important;
  margin: 2vh auto 0;
}
.sec_01 img {
  max-width: 200px;
  margin: 0 3vw;
}
@media only screen and (max-width:700px) {
  .sec_01 img {
    display: none;
  }
}

.box_lightgreen {
  background: #F2F8F4;
}

.txt_center {
  text-align: center;
}

.txt_right {
  text-align: right;
  font-weight: bold;
  font-size: 1.1rem;
  max-width: 1000px;
  margin: 0 auto;
}

.flex {
  display: flex;
}

.wrap {
  flex-wrap: wrap;
}

.sec_profle {
  margin: 0 auto;
  padding: 4vw 0;
  max-width: 1000px;
  align-items: start;
}
@media only screen and (max-width:700px) {
  .sec_profle {
    flex-wrap: wrap;
  }
}
.sec_profle > img {
  margin-right: 2vw;
  max-width: 300px;
}
@media only screen and (max-width:700px) {
  .sec_profle > img {
    margin: 0 auto 3vh;
  }
}

.sec_profle + div {
  max-width: 1000px;
  margin: 0 auto;
}

#prof02 {
  margin: 10vh 0;
  padding: 5vw 2vw;
  display: flex;
  justify-content: center;
}
#prof02 .flex {
  max-width: 1000px;
  margin: 0 auto;
}
@media only screen and (max-width:700px) {
  #prof02 .flex {
    flex-wrap: wrap;
  }
}
#prof02 .flex > img {
  display: block;
  max-width: 300px;
}
@media only screen and (max-width:700px) {
  #prof02 .flex > img {
    margin: 4vh auto 4vh;
  }
}
#prof02 .flex > img + div {
  margin-left: 3vw;
}
@media only screen and (max-width:700px) {
  #prof02 .flex > img + div {
    text-align: center;
  }
}
#prof02 .flex > img + div h5 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 2.5rem;
}
@media only screen and (max-width:700px) {
  #prof02 .flex > img + div h5 {
    border-top: 1px solid #c3dccd;
    padding-top: 3vh;
  }
}
#prof02 .flex > img + div h5 > span {
  font-size: 0.95rem;
  display: block;
}
#prof02 .flex > img + div > p {
  margin: 2rem 0;
}
#prof02 .flex > img + div > p.sp {
  text-align: left;
}

.list_dot {
  margin-top: 3vh;
}
.list_dot li {
  display: flex;
  align-items: center;
  margin: 0.3rem;
}
.list_dot li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: #358B49;
  border-radius: 100px;
  margin-right: 0.6rem;
}

#prof03 {
  max-width: 1000px;
}

.dl_table {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  max-width: 800px; /*dl横幅固定*/
  margin: 3vh auto 0;
}
.dl_table dt, .dl_table dd {
  margin: 1.5rem 0;
}
.dl_table dt {
  width: 20%;
  background: #F2F8F4;
  color: #358B49;
  font-weight: bold;
  text-align: center;
  padding: 0.7vw 3vw;
}
@media only screen and (max-width:700px) {
  .dl_table dt {
    width: 100%;
    padding: 1rem 0;
  }
}
.dl_table dd {
  width: 70%;
  margin-left: 3%;
}
@media only screen and (max-width:700px) {
  .dl_table dd {
    width: 100%;
    margin: 0;
  }
}
.dl_table dd iframe {
  margin-top: 1rem;
  width: 100%;
}

.dl_table.center {
  align-items: center;
}

#mail_form {
  width: 100%;
  max-width: 700px;
  margin: -5vh auto 0;
}
#mail_form input {
  border: 1px solid #CACACA;
  border-radius: 4px;
  padding: 5px 10px;
  width: 300px;
  display: block;
}
#mail_form input.mail {
  width: 400px;
}
#mail_form div:has(select) {
  width: 400px;
  border: 1px solid #CACACA;
  border-radius: 4px;
  position: relative;
}
#mail_form div:has(select)::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 6px solid #358B49;
  border-bottom: 0;
  position: absolute;
  right: 2%;
  top: 50%;
}
#mail_form select {
  width: 100%;
  padding: 5px 10px;
}
#mail_form textarea {
  width: 700px;
  border: 1px solid #CACACA;
  border-radius: 4px;
  padding: 5px 10px;
  margin: 2vh 0 0;
}
#mail_form dl {
  margin: 3vh 0;
}
#mail_form dt {
  color: #358B49;
  font-size: 15px;
  margin-bottom: 5px;
  margin-top: 7vh;
}

#form_submit input {
  display: block;
  padding: 20px;
  width: 70% !important;
  text-align: center;
  border: none;
  margin: 0 auto;
  background: #292424;
  color: white;
  border-radius: 300px;
  transition: 0.3s;
}
#form_submit input:hover {
  background: #358B49;
}

.thanks .btn_black {
  margin: 8vh auto 0;
}

.fixed {
  background: #358B49;
  color: white;
  height: -moz-fit-content;
  height: fit-content;
  display: block;
  position: fixed;
  padding: 20px 10px;
  right: 1%;
  top: 28%;
  line-height: 1;
  writing-mode: vertical-rl;
}
.fixed > div {
  display: flex;
  align-items: center;
}
.fixed .line {
  display: block;
  width: 1px;
  height: 30px;
  background: white;
  margin: 10px 0;
}
.fixed a > img {
  width: 40px;
  transition: 0.3s;
}
.fixed a > img:hover {
  opacity: 0.8;
}
@media only screen and (max-width:700px) {
  .fixed {
    display: none;
  }
}

i span.required {
  background: #8DC363;
  color: white;
  border-radius: 6px;
  padding: 4px 7px;
  margin-right: 5px;
}

i span.optional {
  display: none;
}

.error_blank {
  color: #e33232;
  font-size: 0.8rem;
  font-weight: bold;
}/*# sourceMappingURL=style.css.map */