@charset "UTF-8";
/*ブレークポイント*/
/*
共通
緑 #009900
薄緑 #f4f9f1
赤 #ff0000
*/
.inner {
  width: 1000px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .inner {
    width: 90%;
  }
}

.flexwrp {
  display: flex;
}
.flexwrp.fl_pc_reverse {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .flexwrp.fl_pc_reverse {
    flex-direction: row;
  }
}

.bgcolor01 {
  background: #f4f9f1;
}

.ttlh2 {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 30px;
  font-weight: bold;
  padding-bottom: 0px;
  border-bottom: 5px solid #ff0000;
  margin: 0 auto 40px;
}
@media (max-width: 768px) {
  .ttlh2 {
    text-align: center;
    font-size: 20px;
  }
}

.ttlh3 {
  color: #009900;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 0px;
  margin: 0 auto 40px;
}
@media (max-width: 768px) {
  .ttlh3 {
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
  }
}

section {
  padding: 50px 0;
}
@media (max-width: 768px) {
  section {
    padding: 30px 0;
  }
}

[class$=_media] {
  text-align: center;
  margin-bottom: 50px;
}
[class$=_media] img {
  display: block;
  margin: 0 auto;
}
@media (max-width: 768px) {
  [class$=_media] {
    margin-bottom: 20px;
  }
}

[class$=_txt] p {
  margin-bottom: 20px;
}
[class$=_txt] p:not(:last-child) {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  body {
    width: 100%;
  }
}

.red {
  color: #FF0000;
}

.error {
  color: #FF0000;
}

.mw_wp_form .error {
  position: absolute;
  top: 63px;
  left: 10px;
}

.highlight_b {
  background-color: #FFFF00;
  font-weight: bold;
}

/*
commonエリア
*/
header {
  height: 80px;
}
header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  header .inner {
    height: 100%;
    width: 92%;
  }
}
@media (max-width: 768px) {
  header .logo {
    width: 80%;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
  }
  header .logo a {
    width: 93%;
  }
  header .logo img {
    width: 69%;
  }
}
header .local {
  background: #009900;
  color: #fff;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
@media (max-width: 768px) {
  header .local {
    width: 40%;
    font-size: 13px;
    padding: 5px;
  }
}
header .contact {
  text-align: right;
}
header .contact .telNum {
  display: flex;
  align-items: center;
}
header .contact .telNum a {
  font-size: 35px;
  font-weight: bold;
  color: #009900;
  margin-left: 10px;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  header .contact .telNum a a[href^="tel:"] {
    pointer-events: auto;
  }
}
header .contact img {
  width: 30px;
  height: 30px;
}
@media (max-width: 768px) {
  header {
    height: 50px;
    /* ハンバーガーボタン */
    /* メニュー */
    /* :checked / .active などで開閉する想定 */
    /* バツ印アニメーション */
  }
  header .nav {
    position: relative;
    width: 37px;
  }
  header .burger {
    width: 50px; /* 正方形 */
    height: 50px;
    background: #009900;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 0;
  }
  header .burger span {
    display: block;
    width: 50%;
    height: 3px;
    background: #fff;
    margin: 0 auto;
    transition: 0.3s;
  }
  header .menu {
    display: none; /* 初期は非表示 */
    position: absolute;
    top: 60px;
    left: 0;
    background: #fff;
    width: 200px;
    border: 1px solid #ccc;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  header .menu li {
    border-bottom: 1px solid #ddd;
  }
  header .menu li a {
    display: block;
    padding: 12px;
    color: #333;
    text-decoration: none;
  }
  header .burger.active + .menu {
    display: block;
  }
  header #nav-toggle:checked + .burger + .menu {
    display: block;
    width: -webkit-fill-available;
    top: 49px;
    left: -340px;
  }
  header #nav-toggle:checked + .burger span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  header #nav-toggle:checked + .burger span:nth-child(2) {
    opacity: 0;
  }
  header #nav-toggle:checked + .burger span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

.cta {
  padding: 0;
  background-image: url(../img/ban_bg_parts01.png), url(../img/ban_bg_parts02.png);
  background-color: #009900;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center, right center;
}
.cta .inner {
  text-align: center;
  padding: 50px 0;
}
.cta .inner img {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cta .inner img {
    width: 90%;
  }
}
@media (max-width: 768px) {
  .cta .inner {
    padding: 10px 0;
  }
}

footer {
  padding: 30px 0;
  border-top: 1px solid #009900;
}
footer p {
  text-align: center;
}
footer img {
  display: block;
  margin: 0 auto 30px;
}

/*
メインビジュアル
*/
.hero {
  padding: 0;
  background: #eef6e9 url(../img/hero_bg.png) no-repeat center center/contain;
  height: 350px;
  padding-top: 30px;
  border-top: 2px solid #009900;
}
@media (max-width: 768px) {
  .hero {
    height: 56vh;
    background-image: none;
    background-size: cover;
  }
}
.hero .inner {
  height: 100%;
  margin: 0 auto;
  align-content: center;
  justify-content: center; /*横方向*/
  align-items: center; /*縦方向*/
}
@media (max-width: 768px) {
  .hero .inner {
    width: 100%;
    justify-content: space-between;
  }
  .hero .inner img {
    width: 100%;
    height: auto;
  }
}
.hero .hero-text {
  font-weight: bold;
  display: flex;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding-left: 46px;
}
@media (max-width: 768px) {
  .hero .hero-text {
    flex-direction: row-reverse;
    flex-wrap: unset;
    line-height: 1.2;
    padding-left: 0;
  }
}
.hero .ttlh1 {
  font-size: 42px;
  line-height: 1.2;
  color: #000000;
  text-shadow: 3px 3px 2px #fff, -3px 3px 2px #fff, -3px -3px 0 #fff, 3px -3px 0 #fff;
}
@media (max-width: 768px) {
  .hero .ttlh1 {
    font-size: 30px;
    writing-mode: vertical-rl;
    margin-left: 20px;
  }
  .hero .ttlh1 .numbers {
    text-combine-upright: all;
  }
}
.hero .lead {
  margin-top: 30px;
  font-size: 20px;
  text-shadow: 3px 3px 2px #fff, -3px 3px 2px #fff, -3px -3px 0 #fff, 3px -3px 0 #fff;
}
@media (max-width: 768px) {
  .hero .lead {
    font-size: 20px;
    writing-mode: vertical-rl;
    margin-top: 0px;
  }
  .hero .lead .numbers {
    text-combine-upright: all;
  }
}
.hero .fntGrn {
  color: #009900;
}
.hero .hero-media {
  display: flex;
  align-content: center;
  align-items: center;
}
.hero .hero-media img {
  height: 90%;
  width: auto;
  max-width: unset;
}
@media (max-width: 768px) {
  .hero .hero-media img {
    height: 78%;
  }
}

.whatHappen_media {
  text-align: center;
}
.whatHappen_media img {
  display: block;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .whatHappen_media img {
    width: 90%;
  }
}
.office table {
  width: 500px;
  margin: 0 auto;
  background: #fff;
  text-align: left;
}
.office table tr {
  display: flex;
  margin: 0px 20px 0;
}
.office table th {
  width: 30%;
  padding: 10px 0;
  border-bottom: 1px solid #c6c6c6;
}
@media (max-width: 768px) {
  .office table th {
    width: 34%;
  }
}
.office table td {
  width: 70%;
  padding: 10px 0;
  border-bottom: 1px solid #c6c6c6;
}
@media (max-width: 768px) {
  .office table td {
    width: 66%;
  }
}
@media (max-width: 768px) {
  .office table {
    width: 100%;
  }
}

.access_txt {
  width: 600px;
  margin: 0 auto;
  font-feature-settings: "palt";
}
@media (max-width: 768px) {
  .access_txt {
    width: 100%;
  }
}
.access_media {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .access iframe {
    width: 100%;
  }
}

.price_txt {
  width: 700px;
  margin: 0 auto;
}
.price_txt table {
  background: #fff;
  margin-bottom: 30px;
}
.price_txt table th {
  width: 50%;
  padding: 20px;
  color: #fff;
}
.price_txt table th.sougaku {
  background: #009900;
}
.price_txt table th.fee {
  background: #3bc17e;
}
@media (max-width: 768px) {
  .price_txt table th {
    padding: 10px;
  }
}
.price_txt table td {
  padding: 20px 30px;
  border: 1px solid #c6c6c6;
}
@media (max-width: 768px) {
  .price_txt table td {
    padding: 10px 0 10px 10px;
  }
}
@media (max-width: 768px) {
  .price_txt {
    width: 100%;
  }
}
.price_txt .coment {
  font-size: 15px;
}

.voice_wrp {
  background: #f4f9f1;
  width: 800px;
  margin: 0 auto;
  padding: 30px;
}
@media (max-width: 768px) {
  .voice_wrp {
    width: 100%;
    padding: 0;
  }
}
.voice_box {
  background: #fff;
  padding: 30px;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .voice_box {
    display: block;
    padding: 10px;
    margin-bottom: 20px;
  }
}
.voice_txt {
  width: calc(100% - 220px - 30px);
}
@media (max-width: 768px) {
  .voice_txt {
    width: 100%;
  }
}
.voice picture {
  width: 220px;
}
@media (max-width: 768px) {
  .voice picture {
    width: 60%;
    margin: 0 auto;
  }
}
.voice picture img {
  width: 100%;
  height: auto;
  border: 1px solid #666;
}
.voice picture img:not(:last-child) {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .voice picture img {
    margin-bottom: 20px;
  }
}

.message {
  background-image: url(../img/bg_parts01.png), url(../img/bg_parts02.png);
  background-repeat: no-repeat;
  background-size: 21%, 20%;
  background-position: 24% 11%, 80% 89%;
}
@media (max-width: 768px) {
  .message {
    background-image: none;
  }
}
.message .message_box {
  background: #fff;
  padding: 20px;
  width: 780px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .message .message_box {
    width: 100%;
    display: block;
  }
}
.message_media {
  width: 40%;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .message_media {
    width: 100%;
  }
}
.message_txt {
  width: 60%;
}
@media (max-width: 768px) {
  .message_txt {
    width: 100%;
  }
}

.form_media a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .form_media a[href^="tel:"] {
    pointer-events: auto;
  }
}
.form table {
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .form table {
    display: block;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .form table tbody {
    display: block;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .form table tr {
    display: block;
    width: 100%;
  }
}
.form table th {
  width: 20%;
  padding: 10px;
}
@media (max-width: 768px) {
  .form table th {
    display: block;
    width: 100%;
  }
}
.form table td {
  width: 80%;
  padding: 10px;
}
@media (max-width: 768px) {
  .form table td {
    display: block;
    width: 100%;
  }
}
.form table td div {
  display: inline-block;
  position: relative;
}
.form table td .border {
  width: 100%;
  color: red;
  font-weight: bold;
  text-align: center;
  border-bottom: 1px solid #ccc;
  padding: 0px 0 10px;
  margin: 30px auto;
}
@media (max-width: 768px) {
  .form table form {
    width: 100%;
  }
}
.form table input[type=text], .form table input[type=email], .form table input[type=tel] {
  background: #f5f5f5;
  padding: 20px;
  width: 300px;
}
@media (max-width: 768px) {
  .form table input[type=text], .form table input[type=email], .form table input[type=tel] {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .form table input[name=lastname], .form table input[name=firstname] {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .form table input .fullName td {
    display: flex;
  }
}
.form table input[type=select], .form table input[type=number] {
  width: 300px;
  background: #f5f5f5;
  padding: 20px;
}
@media (max-width: 768px) {
  .form table input[type=select], .form table input[type=number] {
    width: 90%;
  }
}
.form table input[name=year], .form table input[name=month], .form table input[name=day] {
  width: 150px;
}
@media (max-width: 768px) {
  .form table input[name=year], .form table input[name=month], .form table input[name=day] {
    width: 25%;
  }
}
.form table input[name=submit], .form table input[name=submitConfirm] {
  width: 300px;
  height: 50px;
  margin: 0 auto;
  background: #009900;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  color: #fff;
}
@media (max-width: 768px) {
  .form table input[name=submit], .form table input[name=submitConfirm] {
    width: 100%;
  }
}
.form table input[name=submitBack] {
  width: 300px;
  height: 50px;
  margin: 0 auto;
  background: #515151;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  color: #fff;
}
@media (max-width: 768px) {
  .form table input[name=submitBack] {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .form table input {
    width: 100%;
  }
}
.form table textarea {
  width: 600px;
  background: #f5f5f5;
  padding: 20px;
}
@media (max-width: 768px) {
  .form table textarea {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */