@charset "UTF-8";
@import "font-awesome.css";

html {
  position: relative;
  color: #000;
  font-weight: 300;
  font-size: 62.5%;
  font-family: "Noto Sans JP", YuGothic, "メイリオ", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", Verdana, "ＭＳ Ｐゴシック", sans-serif;
}
.sp_none {
  display: block;
  margin: 0 auto;
}
.pc_none {
  display: none;
}

@media (max-width: 1000px) {
  html {
    font-size: 52%;
  }
}
@media (max-width: 500px) {
  .sp_none {
    display: none;
  }
  .pc_none {
    display: block;
    margin: 0 auto;
  }
}

body {
  background: #fff;
  font-size: 1.8rem;
  transition: 0.3s;
}
body a {
  color: #000;
  vertical-align: top;
  text-decoration: none;
  transition: 0.3s;
}
body a:hover {
  text-decoration: none;
  opacity: 0.8;
}
body a:focus {
  overflow: hidden;
  outline: none;
}
body .indent {
  padding-left: 1em;
  text-indent: -1em;
}
body dt,
body dd,
body p,
body li,
body th,
body td,
body address {
  letter-spacing: 1px;
  line-height: 3rem;
}
body img {
  max-width: 100%;
  vertical-align: bottom;
}

/* -----------------------------------------
		common
----------------------------------------- */

._isPC {
  display: block !important;
}
img._isPC {
  display: inline-block !important;
}
._isSP {
  display: none !important;
}
@media screen and (max-width: 768px) {
  ._isPC {
    display: none !important;
  }
  img._isPC {
    display: none !important;
  }
  ._isSP {
    display: block !important;
  }
  img._isSP {
    display: inline-block !important;
  }
  br._isSP {
    display: inline-block !important;
  }
}

a[href^="tel:"] {
  cursor: default;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    cursor: pointer;
    pointer-events: auto;
  }
}

.link-common {
  text-align: center;
}
.link-common a {
  position: relative;
  display: inline-block;
  margin: 3rem 0 0;
  padding: 1.5rem 6rem 1.8rem;
  border-radius: 5px;
  background: #5ca71f;
  color: #fff;
  text-align: center;
}
.link-common a:after {
  position: absolute;
  top: 1.8rem;
  right: 1rem;
  color: #fff;
  content: "keyboard_arrow_right";
  font-family: "Material Icons";
}

/* contact */
.contact {
  background: #5ca71f;
}
.contact-wrap {
  margin: 0 auto;
  padding: 90px 4%;
  max-width: 1200px;
}
.contact h2 {
  height: 100px;
  background: #357600;
  text-align: center;
  line-height: 100px;
}
.contact h2 span {
  position: relative;
  display: inline-block;
  color: #fff;
  font-weight: 700;
  font-size: 38px;
  font-size: 3.8rem;
}
.contact h2 span:before,
.contact h2 span:after {
  position: absolute;
  top: 50%;
  display: inline-block;
  margin-top: -26px;
  width: 3px;
  height: 63px;
  background: #fff;
  content: "";
}
.contact h2 span:before {
  left: -40px;
  transform: rotate(-37deg);
}
.contact h2 span:after {
  right: -30px;
  transform: rotate(37deg);
}
.contact-in {
  padding: 30px 40px 40px;
  background: #faffeb;
}
.contact-in p {
  color: #357600;
  text-align: center;
  font-weight: 500;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.7;
}
.contact-btn {
  display: flex;
  justify-content: space-between;
}
.contact-btn-tel {
  margin-left: -1.8%;
  width: 56.25%;
}
.contact-btn ul {
  position: relative;
  margin-top: 2.8%;
  padding-top: 23.1%;
  width: 41%;
}
.contact-btn ul li {
  position: absolute;
  width: 100%;
}
.contact-btn ul li:nth-of-type(1) {
  top: 0;
}
.contact-btn ul li:nth-of-type(2) {
  bottom: 0;
}
.contact-btn ul li a {
  position: relative;
  display: block;
  padding-top: 25.27%;
  border: 2px solid #fff;
  border-radius: 4px;
  background: #ff0000;
  box-shadow: 0 0 2px 0 rgba(45, 45, 45, 0.5);
  opacity: 1 !important;
}
.contact-btn ul li a:after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0;
  transition: 0.3s;
}
.contact-btn ul li a:hover:after {
  opacity: 1;
}
.contact-btn ul li:nth-of-type(1) a {
  background: linear-gradient(#f7b305, #fb6605);
}
.contact-btn ul li:nth-of-type(1) a:after {
  background: linear-gradient(#fb6605, #f7b305);
}
.contact-btn ul li:nth-of-type(2) a {
  background: linear-gradient(#8dea33, #00b900);
  cursor: default;
  pointer-events: none;
}
.contact-btn ul li:nth-of-type(2) a:after {
  background: linear-gradient(#00b900, #8dea33);
}
.contact-btn ul li a img {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .contact-wrap {
    position: relative;
    padding: 11% 4%;
  }
  .contact h2 small {
    position: absolute;
    top: -30px;
    left: 0;
    display: inline-block;
    width: 72px;
    height: 72px;
    background: url("../img/icon_free01.png");
    background-size: 72px 72px;
    content: "";
  }
  .contact h2 {
    position: relative;
    padding: 20px 0;
    height: auto;
    line-height: 1.3;
  }

  .contact h2 span {
    display: inline-block;
    color: #fff;
    font-weight: 700;
    font-size: 24px;
    font-size: 2.4rem;
  }
  .contact h2 span:before,
  .contact h2 span:after {
    top: auto;
    bottom: 0;
    height: 20px;
  }
  .contact h2 span:before {
    left: -20px;
  }
  .contact h2 span:after {
    right: -10px;
  }
  .contact-in {
    padding: 10px 10px 15px;
  }
  .contact-in p {
    margin-bottom: 15px;
    text-align: left;
    font-size: 16px;
    font-size: 1.6rem;
  }
  .contact-in p br {
    display: none;
  }
  .contact-btn {
    display: block;
  }
  .contact-btn-tel {
    margin: -5px -5px 20px;
    width: auto;
  }
  .contact-btn ul {
    margin-top: 0;
    padding-top: 0;
    width: 100%;
  }
  .contact-btn ul li {
    position: static;
  }
  .contact-btn ul li:nth-of-type(1) {
    margin-bottom: 10px;
  }
  .contact-btn ul li:nth-of-type(2) a {
    cursor: pointer;
    pointer-events: auto;
  }
  .contact-btn ul li a {
    padding-top: 0;
    height: 70px;
  }
  .contact-btn ul li a:before {
    position: absolute;
    top: 50%;
    right: 8px;
    color: #fff;
    content: "\f105";
    font-size: 28px;
    font-size: 2.8rem;
    font-family: FontAwesome;
    line-height: 1;
    transform: translate(0, -50%);
  }
  .contact-btn ul li a img {
    position: absolute;
    top: 50%;
    left: 48%;
    z-index: 2;
    display: block;
    transform: translate(-50%, -50%);
  }
}

.wrapper {
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.home-fixed-img {
  position: fixed;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-size: cover;
}

/* -----------------------------------------
		header
----------------------------------------- */
.header {
  position: fixed;
  top: 0;
  z-index: 10;
  width: 100%;
  background: #fff;
}
.header_top {
  padding: 10px 0;
  background-color: #f3f3f3;
  font-size: 14px;
}
.header.small .header_top {
  padding: 5px 0;
  font-size: 12px;
  transition: 0.3s;
}
p.header-top-in {
  margin: 0 auto;
  padding: 0 4%;
  max-width: 1200px;
}
.header-in {
  position: relative;
  margin: 0 auto;
  padding: 0 4%;
  max-width: 1200px;
  height: 130px;
  transition: 0.3s;
}
.header.small .header-in {
  height: 80px;
}
.header-in .logo {
  position: absolute;
  top: 45%;
  transition: 0.3s;
  transform: translate(0, -50%);
  transform-origin: top left;
}
.header.small .header-in .logo {
  transform: scale(0.8) translate(0, -50%);
}

.header-tel {
  position: absolute;
  top: 50%;
  right: calc(4% + 465px);
  transition: 0.3s;
  transform: translate(0, -50%);
  transform-origin: top right;
}
.header.small .header-tel {
  right: calc(4% + 370px);
  transform: scale(0.8) translate(0, -50%);
}
.header-in ul {
  position: absolute;
  top: 50%;
  right: 5.2%;
  display: flex;
  transition: 0.3s;
  transform: translate(0, -50%);
  transform-origin: top right;
}
.header.small .header-in ul {
  transform: scale(0.8) translate(0, -50%);
}
.header-in ul li {
  margin-left: 8px;
}
.header-in ul li a {
  position: relative;
  display: block;
  height: 69px;
  border: 2px solid #fff;
  border-radius: 4px;
  opacity: 1 !important;
}
.header-in ul li a:after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0;
  transition: 0.3s;
}
.header-in ul li a:hover:after {
  opacity: 1;
}
.header-in ul li:nth-of-type(1) a {
  width: 251px;
  background: #e96a03 !important;
}
.header-in ul li:nth-of-type(1) a:after {
  background: #cf5d01;
}
.header-in ul li:nth-of-type(2) a {
  width: 158px;
  background: #00b900;
}
.header-in ul li:nth-of-type(2) a:after {
  background: #01a101;
}
.header-in ul li a img {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: block;
  transform: translate(-50%, -50%);
}
.gnav {
  height: 70px;
  background: #178653;
  transition: 0.3s;
}
.header.small .gnav {
  height: 50px;
}
.gnav ul {
  display: flex;
  margin: 0 auto;
  padding: 0 4%;
  max-width: 1300px;
  height: 100%;
}
.gnav ul li {
  position: relative;
  width: 200px;
  height: 100%;
}
.gnav ul li:before {
  position: absolute;
  top: 50%;
  display: block;
  width: 1px;
  height: 30px;
  background: #ffffff;
  content: "";
  transform: translate(0, -50%);
}
.gnav ul li:last-of-type:after {
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 1px;
  height: 30px;
  background: #ffffff;
  content: "";
  transform: translate(0, -50%);
}
.gnav ul li a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 1;
  opacity: 1 !important;
}
.gnav ul li a span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  width: 180px;
  height: 40px;
  color: #fff;
  text-align: center;
  font-weight: 500;
  line-height: 37px;
  transition: 0.3s;
  transform: translate(-50%, -50%);
}
.gnav ul li a:hover span {
  background: #137548;
}
@media (max-width: 1200px) {
  p.logo {
    width: 200px;
  }
  .header-tel {
    width: 200px;
  }
}
@media (max-width: 1000px) {
  p.logo {
    width: 150px;
  }
  .header-tel {
    width: 150px;
  }
  .header-in {
    padding: 0 1%;
  }
  .gnav ul {
    padding: 0;
  }
}
@media (max-width: 820px) {
  p.logo {
    width: 130px;
  }
  .header-tel {
    width: 130px;
  }
}
@media (max-width: 768px) {
  .header {
    border-top: 3px solid #1e8857;
  }
  .header_top {
    padding: 5px 0;
    font-size: 12px;
  }
  .header-in {
    display: block;
    height: 115px !important;
  }
  .header-in .logo {
    position: static;
    top: 11px;
    left: 3%;
    width: 160px;
    transform: scale(1) translate(0, 0) !important;
  }
  .header-tel {
    /* top: 10px;  right: 4%!important;transform: scale(1) translate(0, 0)!important; */
  }
  .tel-wrap {
    display: flex;
    justify-content: space-around;
  }
  .header-in ul {
    top: 65px;
    right: 0;
    width: 100%;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    transform: scale(1) translate(0, 0) !important;
  }
  .header-in ul li {
    box-sizing: border-box;
    margin-left: 0;
    padding-top: 1px;
    padding-bottom: 1px;
    width: 50%;
  }
  .header-in ul li:last-of-type {
    border-left: 1px solid #fff;
  }
  .header-in ul li a {
    display: block;
    width: 100% !important;
    height: 46px;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }
  .gnav {
    display: none;
  }
  .header.small .header-tel_r235 {
    right: calc(4% + 180px);
    width: 160px;
  }
}
.main {
  position: relative;
  z-index: 1;
  display: block;
  padding-top: 130px;
}
@media (max-width: 768px) {
  .main {
    padding-top: 118px;
  }
}

/* -----------------------------------------
		mv
----------------------------------------- */
.mv-row01 {
  padding-top: 120px;
  background: url("../img/mv_bak_img_2.jpg") no-repeat center top;
  background-size: cover;
  text-align: center;
}
.mv-row02 {
  background: #5ca71f;
}
.mv-row02-in {
  margin: 0 auto;
  padding: 18px 4%;
  max-width: 1200px;
}
.mv_icn_img {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: auto;
  max-width: 700px;
}
.mv_icn_img li {
  flex-basis: 33.3333%;
  max-width: 33.3333%;
  padding: 0 10px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .mv-row01 {
    padding-top: 1px;
  }
  .mv-row01-sp {
    position: relative;
  }
  .mv_icn_img {
    position: absolute;
    top: 20px;
  }
  .mv-row02-in {
    padding: 0;
  }
}

/* -----------------------------------------
		info
----------------------------------------- */
.soudan-row01{
  background: #fff;
}
.soudan-row01-in{
  position: relative;
  margin: 0 auto;
  padding: 50px 4% 3%;
  max-width: 1300px;
  text-align: center;
}
.soudan-row01-in h2 {
  margin-bottom: 35px;
}
.tenpo_box{
  padding: 0px 4% 3%;
  max-width: 1300px;
}
.tenpo_yamaguchi{
  margin-bottom: 25px;
}
.tenpo_syunan{
  margin-bottom: 25px;
  display: flex;
  gap: 30px;
  justify-content: center;
}
.tenpo_yamaguchi_mini{
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: space-evenly;
}
.tenpo_yamaguchi_mini div{
  width: 30%;
}
.tenpo_yamaguchi_mini div p{
  font-size: 1.4rem;
}

@media (max-width: 768px) {
  .soudan-row01-in {
    padding: 11% 20px 0;
  }
  .soudan-row01-in h2 {
    margin-bottom: 10px;
    margin-top: 25px;
  }
  .tenpo_box{
    padding: 0;
  }
  .tenpo_yamaguchi{
    margin-bottom: 10px;
  }
  .tenpo_yamaguchi_mini{
    gap: 10px;
  }
  .tenpo_yamaguchi_mini div{
    width: 70%;
  }
}
/* -----------------------------------------
		problem
----------------------------------------- */
.problem-row01 {
  background: #fff9f1;
}
.problem-row01-in {
  position: relative;
  margin: 0 auto;
  padding: 50px 4% 3%;
  max-width: 1300px;
  text-align: center;
}
.problem-row01-in h2 {
  margin-bottom: 35px;
}
.problem-row02 {
  background: #fff;
}
.problem-row02-in {
  margin: 0 auto;
  padding: 30px 4% 90px;
  max-width: 1200px;
  text-align: center;
}
@media (max-width: 768px) {
  .problem-row01-in {
    padding: 11% 0 0;
  }
  .problem-row01-in h2 {
    margin-bottom: 0;
  }
  .problem-row02-in {
    padding: 11% 4% 11%;
  }
}

/* -----------------------------------------
	procedure
----------------------------------------- */
.procedure {
  background: #fff;
}
.procedure-in {
  margin: 0 auto;
  padding: 60px 4% 50px 4%;
  max-width: 1300px;
}
.procedure h2 {
  margin-bottom: 45px;
  text-align: center;
  font-weight: 500;
  font-size: 4rem;
}

span.txt_small {
  display: block;
  color: #535353;
  font-size: 16px;
  line-height: 1.5;
}

.procedure-row01 p {
  margin-bottom: 40px;
  color: #535353;
  text-align: center;
  font-weight: 500;
  font-size: 20px;
  font-size: 2rem;
}

th.tbl-left {
  width: 23%;
  vertical-align: middle;
}

small.supplement-txt {
  color: #535353;
  font-weight: 500;
  font-size: 20px;
  font-size: 2rem;
}
.procedure-row01.new_test table th {
  padding: 18px;
}

.procedure-row01 table {
  margin-bottom: 40px;
  width: 100%;
  table-layout: fixed;
}
.procedure-row01 table th,
.procedure-row01 table td {
  padding: 20px;
  border: 1px solid #5ca71f;
  background: #fff;
  font-weight: 400;
  font-size: 20px;
  font-size: 2rem;
}
.procedure-row01 table th {
  background: #eef6d7;
  color: #42711b;
  font-weight: 500;
}

.procedure-row01 table:nth-of-type(3) th {
  vertical-align: middle;
  white-space: nowrap;
}

.sp_br {
  display: none;
}

.sp_br_02 {
  display: none;
}

.pc_br {
  display: block;
}

@media (max-width: 1150px) {
  .sp_br {
    display: block;
  }
  .procedure-row01.new_test table th {
    padding: 8px;
  }
}

@media (max-width: 800px) {
  .sp_br_02 {
    display: block;
  }
  .pc_br {
    display: none;
  }
}

@media (max-width: 768px) {
  .procedure-in {
    padding: 11% 4%;
  }
  .procedure-in h2 {
    margin-bottom: 30px;
    font-size: 35px;
    font-size: 3.5rem;
  }

  .procedure-row01 table {
    margin-bottom: 20px;
  }

  .procedure-row01 table:nth-of-type(9) {
    margin-bottom: 0px;
  }

  .procedure-row01 table th {
    padding: 5px 10px;
  }

  .procedure-row01 table th,
  .procedure-row01 table td {
    display: block;
    border-bottom: none;
  }

  .procedure-row01 table tr:last-child td {
    border-bottom: 1px solid #5ca71f;
  }

  th.tbl-left {
    width: auto;
  }

  span.txt_small {
    margin-top: 5px;
    font-size: 1.5rem;
  }

  .sp_br,
  .sp_br_02,
  .pc_br,
  .pc_br_02 {
    display: none;
  }
}

/* -----------------------------------------
		case
----------------------------------------- */
.case-in {
  margin: 0 auto;
  padding: 80px 4%;
  max-width: 1200px;
}
.case-in h2 {
  margin-bottom: 50px;
  text-align: center;
}
.case-sec {
  margin-bottom: 50px;
  padding: 35px 45px 30px;
  background: #fff;
}
.case-sec:last-of-type {
  margin-bottom: 0;
}
.case-sec h3 {
  position: relative;
  margin-bottom: 20px;
  padding: 0 0 15px 160px;
  border-bottom: 2px solid #5ca71f;
}
.case-sec h3 small {
  position: absolute;
  top: 2px;
  left: 15px;
  display: inline-block;
  padding: 4px 10px 6px;
  background: #5ca71f;
  color: #fff;
  font-weight: 400;
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 1;
}
.case-sec h3 span {
  display: inline-block;
  color: #5ca71f;
  font-weight: 500;
  font-size: 30px;
  font-size: 3rem;
  line-height: 1.4;
}
.case-sec-text01 {
  margin-bottom: 15px;
  font-weight: 400;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.4;
}
.case-sec-text01 span {
  color: #ce2e2e;
}
.case-sec-text02 {
  position: relative;
  box-sizing: border-box;
  padding-top: 30px;
  min-height: 158px;
}
.case-sec-text02:before {
  position: absolute;
  top: 0;
  left: 5px;
  display: block;
  width: 109px;
  height: 158px;
  background: url("../img/case_img.png");
  background-size: 109px 158px;
  content: "";
}
.case-sec-text02 p {
  margin: 0 0 0 190px;
  padding: 30px;
  background: #f5ffd6;
  color: #42711b;
  font-weight: 400;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.4;
}
.case-sec-text02 p:before {
  position: absolute;
  top: 85px;
  left: 125px;
  display: inline-block;
  border-width: 11px 70px 11px 0;
  border-style: solid;
  border-color: transparent #f5ffd6 transparent;
  content: "";
  transform: rotate(-21deg);
}
.case-sec-btn {
  display: none;
}

@media (max-width: 768px) {
  .case-in {
    padding: 11% 4%;
  }
  .case-in h2 {
    margin-bottom: 25px;
    padding: 0 6%;
  }
  .case-sec {
    margin-bottom: 15px;
    padding: 10px 10px 15px;
  }
  .case-sec h3 {
    margin-bottom: 12px;
    padding-left: 0;
  }
  .case-sec h3 small {
    position: static;
    display: block;
    margin-bottom: 10px;
    padding: 6px 10px 8px;
    text-align: center;
    font-weight: 400;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1;
  }
  .case-sec h3 span {
    display: block;
    font-size: 20px;
    font-size: 2rem;
  }
  .case-sec-text {
    position: relative;
    overflow: hidden;
    height: 5.3em;
  }
  /*
	.case-sec-text:after {
		content: "";
		display: block;
		width: 100%;
		height: 5em;
		background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
		position: absolute;
		bottom: 0;
		z-index: 2;
	}*/
  .case-sec.active .case-sec-text {
    height: auto;
  }
  /*.case-sec.active .case-sec-text:after {display: none;}*/
  .case-sec-text01 {
    position: relative;
    z-index: 1;
    font-size: 20px;
    font-size: 2rem;
  }
  .case-sec-text02 {
    position: relative;
    z-index: 1;
    padding-top: 0;
    min-height: 126px;
  }
  .case-sec-text02:before {
    top: auto;
    bottom: 0;
    left: 0;
    width: 87px;
    height: 126px;
    background-size: 87px 126px;
  }
  .case-sec-text02 p {
    margin: 0 0 0 100px;
    padding: 15px 5px 15px 15px;
    font-size: 16px;
    font-size: 1.6rem;
  }
  .case-sec-text02 p:before {
    top: auto;
    bottom: 70px;
    left: 75px;
    border-width: 11px 30px 11px 0;
  }
  .case-sec-btn {
    display: block;
    box-sizing: border-box;
    margin-top: 20px;
    width: 100%;
    height: 42px;
    border: 1px solid #54941f;
    text-align: center;
  }
  .case-sec-btn div {
    box-sizing: border-box;
    width: 100%;
    height: 40px;
    border: 1px solid #fff;
    background: url("../img/btn_bg.png") repeat-x 0 0;
    background-size: auto 100%;
  }
  .case-sec-btn div span {
    position: relative;
    display: block;
    width: 100%;
    height: 38px;
    color: #468115;
    font-weight: 400;
    line-height: 36px;
  }
  .case-sec-btn div span:after {
    position: absolute;
    right: 10px;
    content: "\f107";
    font-size: 20px;
    font-size: 2rem;
    font-family: FontAwesome;
  }
  .case-sec.active .case-sec-btn div span:after {
    content: "\f106";
  }
  .case-sec-btn div span.open {
    display: block;
  }
  .case-sec-btn div span.close {
    display: none;
  }
  .case-sec.active .case-sec-btn div span.open {
    display: none;
  }
  .case-sec.active .case-sec-btn div span.close {
    display: block;
  }
}

/* -----------------------------------------
		reason
----------------------------------------- */
.reason {
  background: url("../img/shinki/strong_bak_img.jpg");
}
.reason-in {
  margin: 0 auto;
  padding: 80px 4% 50px;
  max-width: 1200px;
}
.reason-in h2 {
  margin-bottom: 50px;
  text-align: center;
}
.reason-in h2 br {
  display: none;
}
.reason-in h2 span {
  display: inline-block;
}
.reason-in h2 > span {
  padding-bottom: 10px;
  border-bottom: 2px solid #f17d16;
  font-weight: 700;
  font-size: 40px;
  font-size: 4rem;
}
.reason-in h2 > span > span {
  color: #f17d16;
}
.reason-in h2 > span > span > span {
  margin: 0 0.1em;
  font-size: 60px;
  font-size: 6rem;
}
.reason-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.reason-sec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  margin-bottom: 40px;
  min-height: 116px;
  width: 48.75%;
  border: 2px solid #5ca71f;
  background: #fff;
}
.reason-sec-num {
  position: relative;
  overflow: hidden;
  width: 114px;
  height: 100%;
  background: #5ca71f;
  color: #fff;
}
.reason-sec-num span {
  position: absolute;
  top: 50%;
  left: 40%;
  color: #fff;
  font-size: 40px;
  font-size: 4rem;
  font-family: "Open Sans", sans-serif;
  transform: translate(-50%, -50%);
}
.reason-sec-num:after {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  border-width: 0 0 1160px 350px;
  border-style: solid;
  border-color: transparent transparent #fff;
  content: "";
}
.reason-sec-text {
  width: calc(100% - 120px);
}
.reason-sec-text h3 {
  padding-right: 10px;
  font-weight: 500;
  font-size: 25px;
  font-size: 2.5rem;
  line-height: 1.3;
}
.reason-sec-text h3 span {
  color: #e26a00;
}
.reason-sec-text p {
  margin: 5px 0 0;
  padding-right: 10px;
  color: #535353;
  letter-spacing: 0.02em;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .reason-in {
    margin-bottom: -30px;
    padding: 11% 4%;
  }
  .reason-in h2 {
    margin-bottom: 30px;
  }
  .reason-in h2 br {
    display: inline-block;
  }
  .reason-in h2 > span {
    padding-bottom: 0;
    border-bottom: none;
    font-size: 25px;
    font-size: 2.5rem;
  }
  .reason-in h2 > span > span {
    padding: 5px 0;
    border-bottom: 2px solid #f17d16;
    font-size: 30px;
    font-size: 3.5rem;
  }
  .reason-in h2 > span > span > span {
    font-size: 40px;
    font-size: 4rem;
  }
  .reason-sec {
    display: flex;
    margin-bottom: 15px;
    min-height: inherit;
    width: 100%;
    border: 2px solid #5ca71f;
  }
  .reason-sec-num {
    width: 40px;
  }
  .reason-sec-num span {
    left: 48%;
    font-size: 25px;
    font-size: 2.5rem;
  }
  .reason-sec-num:after {
    display: none;
  }
  .reason-sec-text {
    padding: 15px 0;
    width: calc(100% - 55px);
  }
  .reason-sec-text h3 {
    font-size: 21px;
    font-size: 2.1rem;
  }
}

/* -----------------------------------------
		price
----------------------------------------- */
.price {
  background: #f3f0e9;
}
.price-in {
  margin: 0 auto;
  padding: 90px 4%;
  max-width: 1200px;
}
.price-in h2 {
  margin-bottom: 45px;
  color: #5ca71f;
  text-align: center;
  font-weight: 500;
  font-size: 40px;
  font-size: 4rem;
}

.price-row01 h3 {
  margin-bottom: 35px;
  text-align: center;
  font-weight: 500;
  font-size: 30px;
  font-size: 3rem;
  line-height: 1.4;
}

h3.individual_ttl {
  margin-bottom: 10px;
}

.price-row01 p {
  margin-bottom: 40px;
  color: #535353;
  text-align: center;
  font-weight: 500;
  font-size: 20px;
  font-size: 2rem;
}

small.supplement-txt {
  color: #535353;
  font-weight: 500;
  font-size: 20px;
  font-size: 2rem;
}
td.center {
  text-align: center;
}
.price-row01 table {
  width: 100%;
}
.price-row01 table th,
.price-row01 table td {
  padding: 20px 25px;
  border: 1px solid #5ca71f;
  background: #fff;
  font-weight: 400;
  font-size: 20px;
  font-size: 2rem;
}
.price-row01 table th {
  background: #eef6d7;
  color: #42711b;
  font-weight: 500;
}
.price-row01 table:nth-of-type(1) {
  margin-bottom: 50px;
  table-layout: fixed;
}

.price-row01 table:nth-of-type(2) {
  margin-bottom: 40px;
}

.price-row01 table:nth-of-type(3) {
  margin-bottom: 25px;
}
.price-row01 table:nth-of-type(3) th {
  vertical-align: middle;
  white-space: nowrap;
}
.price-row01 table:nth-of-type(3) td li {
  margin-bottom: 0.5em;
  margin-left: 1em;
  text-indent: -1em;
}
.price-row01 table:nth-of-type(3) td li:last-of-type {
  margin-bottom: 0;
}
.price-row01 > ol li {
  margin-bottom: 0.5em;
  margin-left: 1em;
  color: #535353;
  text-indent: -1em;
  font-weight: 500;
}
.price-row01 > ol li:last-of-type {
  margin-bottom: 0;
}
p.ttl_bottom_txt {
  margin: 0 auto;
  margin-bottom: 40px;
  width: 80%;
  text-align: center;
}

@media (max-width: 768px) {
  .price-in {
    padding: 11% 4%;
  }
  .price-in h2 {
    margin-bottom: 25px;
    font-size: 35px;
    font-size: 3.5rem;
  }

  .price-row01 h3 {
    margin-bottom: 15px;
    font-size: 22px;
    font-size: 2.2rem;
  }
  h3.individual_ttl {
    margin-bottom: 5px;
  }
  p.supplement-txt {
    margin-bottom: 15px;
  }
  .price-row01 table th,
  .price-row01 table td {
    letter-spacing: 0em;
  }
  .price-row01 table th {
    padding: 5px 10px;
  }
  .price-row01 table th small {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .price-row01 table td {
    padding: 20px 15px 20px 20px;
  }
  .price-row01 table:nth-of-type(1) {
    margin-bottom: 20px;
    table-layout: auto !important;
  }
  .price-row01 table:nth-of-type(2) {
    margin-bottom: 20px;
  }
  .price-row01 table:nth-of-type(3) {
    margin-bottom: 15px;
  }
  .price-row01 table:nth-of-type(3),
  .price-row01 table:nth-of-type(3) tbody,
  .price-row01 table:nth-of-type(3) tr,
  .price-row01 table:nth-of-type(3) th,
  .price-row01 table:nth-of-type(3) td {
    display: block;
  }
  .price-row01 table:nth-of-type(3) th {
    border-bottom: none;
  }
  .price-row02 {
    padding: 15px;
  }
  .price-row02 h3 {
    margin-bottom: 5px;
    font-size: 23px;
    font-size: 2.3rem;
  }
  .price-row02 p {
    margin-bottom: 20px;
  }
  .price-row02 table,
  .price-row02 tbody,
  .price-row02 tr,
  .price-row02 th,
  .price-row02 td {
    display: block;
  }
  .price-row02 tr {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .price-row02 tr:first-of-type {
    margin-bottom: 10px;
  }
  .price-row02 th {
    width: 100%;
    border-bottom: 1px solid #42711b;
  }
  .price-row02 tr th {
    padding-top: 0 !important;
    padding-bottom: 8px !important;
  }
  .price-row02 tr td {
    padding-top: 8px !important;
    border-bottom: none !important;
  }
  .price-row02 tr:first-of-type td {
    padding-bottom: 12px !important;
  }
  /*
	.price-row02 tr:first-of-type th,
	.price-row02 tr:first-of-type td {
		padding-bottom: 7px;
	}
	.price-row02 tr:last-of-type th {
		padding-top: 0;
	}
	.price-row02 tr td {
		border-bottom: none!important;
		padding-top: 10px;
	}
	*/
  .price-row02 tr td:last-of-type {
    padding-left: 0;
  }
}

/* -----------------------------------------
		voice
----------------------------------------- */
.voice {
  margin-bottom: 20px;
  background: #fff;
}
.voice-in {
  margin: 0 auto;
  padding: 90px 4%;
  max-width: 1300px;
}
.voice-in h2 {
  margin-bottom: 30px;
  text-align: center;
  letter-spacing: 2px;
  font-weight: 500;
  font-weight: 600;
  font-size: 40px;
  font-size: 4rem;
}
.voice-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.voice-sec {
  box-sizing: border-box;
  width: 33.33%;
}
.voice-sec:hover {
  opacity: 0.5;
}
.voice-sec h3 {
  position: relative;
  padding: 9px 10px 12px;
  background: #5ca71f;
  color: #fff;
  text-align: center;
  font-weight: 500;
  font-size: 30px;
  font-size: 3rem;
  line-height: 1.4;
}
.voice-sec h3:after {
  position: absolute;
  bottom: -17px;
  left: 50%;
  display: inline-block;
  border-width: 17px 11.5px 0 11.5px;
  border-style: solid;
  border-color: #5ca71f transparent transparent transparent;
  content: "";
  transform: translate(-50%, 0);
}
.voice-sec-text {
  padding: 30px 35px 35px 40px;
}
.voice-sec-text p {
  font-weight: 400;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.4;
}
.voice-sec-text p:last-of-type {
  margin-top: 10px;
  text-align: right;
}
@media (max-width: 768px) {
  .voice-in {
    padding: 5% 4%;
  }
  .voice-sec:last-of-type {
    margin-bottom: 0;
  }
  .voice-sec h3 {
    padding: 6px 10px 9px;
    font-size: 22px;
    font-size: 2.2rem;
  }
  .voice-sec h3:after {
    bottom: -12px;
  }
  .voice-sec-text {
    padding: 20px 15px 15px 10px;
  }
  .voice {
    margin-top: -40px;
  }
  .voice-sec:hover {
    opacity: 1;
  }
}
@media (max-width: 600px) {
  .voice-sec {
    margin-bottom: 30px;
    width: 100%;
  }
  .voice-list {
    display: block;
  }
}
/* -----------------------------------------
		promise
----------------------------------------- */
.promise-sec-header {
  position: relative;
  margin-bottom: 30px;
  padding: 30px 0;
  border: 1px solid #1e8857;
  background: #f4fff5;
}
.promise-sec-header.item_01 {
  position: relative;
}
.promise-sec-header.item_01:before {
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #1e8857;
  color: #ffffff;
  content: "1";
  text-align: center;
  font-weight: 500;
  font-size: 4rem;
}
.promise-sec-header.item_02:before {
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #1e8857;
  color: #ffffff;
  content: "2";
  text-align: center;
  font-weight: 500;
  font-size: 4rem;
}
.promise-sec-header.item_03:before {
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #1e8857;
  color: #ffffff;
  content: "3";
  text-align: center;
  font-weight: 500;
  font-size: 4rem;
}
p.txt_h {
  padding-bottom: 10px;
  font-size: 3rem !important;
}
.promise {
  background: #fff;
}
.promise-in {
  margin: 0 auto;
  padding: 90px 4% 0 4%;
  max-width: 1200px;
}
.promise-in h2 {
  margin-bottom: 60px;
  text-align: center;
  font-weight: 700;
  font-size: 40px;
  font-size: 4rem;
}
.promise-in h2 br {
  display: none;
}
.promise-sec {
  margin-bottom: 20px;
}
.promise-sec:last-of-type {
  margin-bottom: 0;
}
.promise-sec-header .num div small {
  display: block;
  font-weight: 500;
  font-size: 20px;
  font-size: 2rem;
}
.promise-sec-header .num div span {
  font-size: 60px;
  font-size: 6rem;
  font-family: "Open Sans", sans-serif;
}
.promise-sec p {
  padding: 0 90px;
  font-weight: 500;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .promise-in {
    padding: 11% 4%;
  }
  .promise-in h2 {
    margin-top: 20px;
    margin-bottom: 35px;
    font-size: 35px;
    font-size: 2.8rem;
    line-height: 4rem;
  }
  .promise-in h2 br {
    display: block;
  }
  .promise-in h2 span {
    margin-top: 10px;
    margin-left: 2px;
  }
  .promise-sec-header .num {
    min-height: 62px;
    width: 50px;
  }
  .promise-sec-header .num:after {
    border-width: 0 0 500px 420px;
  }

  .promise-sec-header .num div small {
    white-space: nowrap;
    font-size: 16px;
    font-size: 1.6rem;
  }
  .promise-sec-header .num div span {
    white-space: nowrap;
    font-size: 40px;
    font-size: 4rem;
  }
  .promise-sec-header h3 {
    padding: 5px 5px 5px 10px;
    width: calc(100% - 50px);
    font-weight: 500;
    font-size: 21px;
    font-size: 2.1rem;
  }
  .promise-sec p {
    padding: 10px 20px 0 20px;
    font-size: 1.8rem;
    line-height: 1.4;
  }
  .promise_txt {
    text-align: center;
  }
  .promise-sec-header.item_01:before {
    width: 40px;
    height: 40px;
    font-size: 3rem;
  }
  .promise-sec-header.item_02:before {
    width: 40px;
    height: 40px;
    font-size: 3rem;
  }
  .promise-sec-header.item_03:before {
    width: 40px;
    height: 40px;
    font-size: 3rem;
  }
  p.txt_h {
    padding-bottom: 10px;
    font-size: 2.6rem !important;
  }
}

/* -----------------------------------------
		area
----------------------------------------- */
.area {
  background: #fff;
}
.area-in {
  margin: 0 auto;
  padding: 50px 4% 90px;
  max-width: 1200px;
}
.area-in h2 {
  margin-bottom: 45px;
  text-align: center;
  font-weight: 500;
  font-size: 40px;
  font-size: 4rem;
}
.area-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 45px;
  border: 1px solid #e5e5e5;
}
.area-text {
  width: 58.4%;
}
.area-text h3 {
  margin-bottom: 10px;
  color: #5ca71f;
  font-weight: 500;
  font-size: 30px;
  font-size: 3rem;
  line-height: 1.4;
}
.area-text p {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.8;
}
.area-fig {
  width: 30%;
}
@media (max-width: 768px) {
  .area-in {
    padding: 5% 4% 11%;
  }
  .area-in h2 {
    margin-bottom: 25px;
    font-size: 35px;
    font-size: 3.5rem;
  }
  .area-content {
    display: block;
    padding: 20px 15px;
  }
  .area-text {
    margin-bottom: 10px;
    width: 100%;
  }
  .area-text h3 {
    font-size: 22px;
    font-size: 2.2rem;
  }
  .area-text p {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.6;
  }
  .area-fig {
    margin: 0 auto;
    width: 70%;
    text-align: center;
  }
}

/* -----------------------------------------
		profile
----------------------------------------- */
.profile {
  background: #fff9f1;
}
.profile-in {
  margin: 0 auto;
  padding: 90px 4%;
  max-width: 1200px;
}
.profile-in h2 {
  margin-bottom: 50px;
  color: #000;
  text-align: center;
  letter-spacing: 2px;
  font-weight: 500;
  font-weight: 600;
  font-size: 40px;
  font-size: 4rem;
}
.profile-content:last-of-type {
  margin-bottom: 0;
}
.profile-content-row01 {
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  margin-bottom: 60px;
  padding: 50px;
  background: #ffffff;
}

.profile-content-row01-pic {
  display: block;
  margin-right: 40px;
  width: 50%;
}
.profile-content-row01-text {
  display: block;
  margin: auto 0;
  width: 61.6%;
}
.profile-content-row01-text h3 {
  margin-bottom: 1em;
  padding-bottom: 1em;
}
.profile-content-row01-text h3 > small {
  display: block;
  margin-bottom: 0.7em;
  color: #1e8857;
  font-weight: 400;
  font-size: 24px;
  font-size: 2.4rem;
}
.profile-content-row01-text h3 > span {
  display: block;
  font-weight: 700;
  font-size: 30px;
  font-size: 3rem;
}
.profile-content-row01-text h3 > span > small {
  display: inline-block;
  margin-left: 1em;
  font-size: 20px;
  font-size: 2rem;
}
.profile-content-row01-text p {
  margin-top: 10px;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.8;
}
.profile-content-row02 {
  display: flex;
  align-items: center;
  padding: 20px 5%;
  border: 1px solid #e5e5e5;
}
.profile-content-row02-l {
  box-sizing: border-box;
  width: 48%;
  border-right: 1px solid #d8d8d8;
}
.profile-content-row02-l h3 {
  margin-bottom: 15px;
  color: #5ca71f;
  font-weight: 400;
  font-size: 25px;
  font-size: 2.5rem;
}
.profile-content-row02-l ul {
  margin-left: 10px;
  border-left: 2px solid #5ca71f;
}
.profile-content-row02-l ul li {
  position: relative;
  margin-bottom: 0.3em;
  padding-left: 1.1em;
  font-size: 20px;
  font-size: 2rem;
}
.profile-content-row02-l ul li:before {
  position: absolute;
  top: 50%;
  left: -6px;
  display: block;
  margin-top: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #5ca71f;
  content: "";
}
.profile-content-row02-l ul li span {
  display: inline-block;
  margin: 0 1em 0 0;
  font-weight: 500;
}
.profile-content-row02-r {
  box-sizing: border-box;
  padding-left: 4%;
  width: 52%;
  font-weight: 400;
  font-size: 20px;
  font-size: 2rem;
}
.profile-sec-btn {
  display: none;
}
@media (max-width: 768px) {
  .profile-in {
    margin-bottom: 20px;
    padding: 11% 4%;
  }
  .profile-in h2 {
    margin-bottom: 35px;
    font-size: 35px;
    font-size: 3.5rem;
  }
  .profile-content {
    padding: 0 0 15px;
  }
  .profile-content-row01-pic {
    width: 100%;
  }
  .profile-content-row01-text {
    display: inline;
    overflow: hidden;
    box-sizing: border-box;
    padding: 25px 15px;
    width: 100%;
    height: 14.5em;
  }
  .profile-content-row01 {
    display: block;
    margin-bottom: 0;
    padding: 50px;
  }
  .profile-content-row01-text p {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.6;
  }
  .profile-content-row02 {
    display: none;
    margin: 0 15px;
  }
  .profile-content-row02-l {
    margin-bottom: 15px;
    padding-bottom: 5px;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #d8d8d8;
  }
  .profile-content-row02-l ul li {
    margin-bottom: 12px;
  }
  .profile-content-row02-l ul li:before {
    top: 9px;
    margin-top: 0;
  }
  .profile-content-row02-l ul li span {
    display: block;
    margin: 0 0 0 0;
  }
  .profile-content-row02-r {
    padding-left: 0;
    width: 100%;
  }
  .profile-content-row02-r span {
    display: block;
  }
  .profile-content-row02-r span:last-of-type {
    display: block;
    margin-top: 5px;
  }

  .profile-content.active .profile-content-row01-text {
    height: auto;
  }
  .profile-content.active .profile-content-row02 {
    display: block;
  }

  .profile-sec-btn {
    display: block;
    box-sizing: border-box;
    margin: 20px 15px 0;
    height: 42px;
    border: 1px solid #54941f;
    text-align: center;
  }
  .profile-sec-btn div {
    box-sizing: border-box;
    width: 100%;
    height: 40px;
    border: 1px solid #fff;
    background: url("../img/btn_bg.png") repeat-x 0 0;
    background-size: auto 100%;
  }
  .profile-sec-btn div span {
    position: relative;
    display: block;
    width: 100%;
    height: 38px;
    color: #468115;
    font-weight: 400;
    line-height: 36px;
  }
  .profile-sec-btn div span:after {
    position: absolute;
    right: 10px;
    content: "\f107";
    font-size: 20px;
    font-size: 2rem;
    font-family: FontAwesome;
  }
  .profile-content.active .profile-sec-btn div span:after {
    content: "\f106";
  }
  .profile-sec-btn div span.open {
    display: block;
  }
  .profile-sec-btn div span.close {
    display: none;
  }
  .profile-content.active .profile-sec-btn div span.open {
    display: none;
  }
  .profile-content.active .profile-sec-btn div span.close {
    display: block;
  }
}
@media (max-width: 600px) {
  .profile-content-row01 {
    margin-bottom: 20px;
  }
  .profile-content-row01-text {
    display: inline;
    overflow: hidden;
    box-sizing: border-box;
    padding: 25px 15px;
    width: 100%;
    height: 14.5em;
  }
  .profile-content-row01 {
    margin-bottom: 0;
    padding: 15px;
  }
}
/* -----------------------------------------
		outline
----------------------------------------- */
.outline {
  background: #fff;
}
.outline-in {
  margin: 0 auto;
  padding: 90px 4%;
  max-width: 1200px;
}
.outline-in h2 {
  margin-bottom: 50px;
  color: #000;
  text-align: center;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 40px;
  font-size: 4rem;
}
.outline-in-content {
  display: block;
  justify-content: space-between;
  margin-bottom: 90px;
}
.outline-text {
  width: 100%;
}
.outline-text table {
  width: 100%;
  border-top: 1px solid #dcdcdc;
}
.outline-text table th,
.outline-text table td {
  padding: 25px;
  border-bottom: 1px solid #dcdcdc;
  vertical-align: top;
  text-align: left;
  font-weight: 400;
  font-size: 20px;
  font-size: 2rem;
}
.outline-text table th {
  width: 140px;
  color: #1e8857;
  white-space: nowrap;
  font-weight: 500;
}
.outline-img {
  display: flex;
  margin-top: 40px;
  width: 100%;
}
.outline-img li {
  margin-right: 20px;
}
.outline-in-map {
  position: relative;
  padding-top: 350px;
}
.outline-in-map iframe {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
.map_txt {
  margin-bottom: 40px;
}
.map_txt h3 {
  margin: 0 0 20px 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #1e8857;
}
@media (max-width: 1200px) {
  .outline-text table th,
  .outline-text table td {
    font-size: 18px;
    font-size: 1.8rem;
  }
  .outline-text table th {
    width: 100px;
  }
}
@media (max-width: 900px) {
  .outline-text table th {
    width: 60px;
  }
  .outline-text table th,
  .outline-text table td {
    padding: 15px;
  }
}
@media (max-width: 768px) {
  .outline {
    margin-bottom: 20px;
  }
  .outline-in {
    padding: 11% 0;
  }
  .outline-in h2 {
    margin-bottom: 35px;
    font-size: 35px;
    font-size: 3.5rem;
  }
  .outline-in-content {
    display: block;
    margin-bottom: 40px;
  }
  .outline-text {
    margin-bottom: 20px;
    width: 100%;
  }
  .outline-text table {
    border-top: none;
  }
  .outline-text table,
  .outline-text tbody,
  .outline-text tr,
  .outline-text th,
  .outline-text td {
    display: block;
  }
  .outline-text table th,
  .outline-text table td {
    box-sizing: border-box;
    padding: 10px 4%;
    border: none;
    font-size: 19px;
    font-size: 1.9rem;
  }
  .outline-text table th {
    width: 100%;
    border-top: 1px solid #1e8857;
    text-align: left;
  }
  .outline-text table td {
    padding-bottom: 15px;
  }
  .outline-img {
    flex-wrap: wrap;
    justify-content: space-between;
    box-sizing: border-box;
    margin-bottom: 30px;
    padding: 0 4%;
    width: 100%;
  }
  .outline-img li {
    margin-right: 5px;
    margin-bottom: 10px;
    width: 48%;
  }
  .outline-in-map {
    margin: 0 4%;
    padding-top: 64.7%;
  }
  .map_txt h3 {
    margin: 0 4% 20px 4%;
  }
}

/* -----------------------------------------
		aside
----------------------------------------- */
.aside {
  position: relative;
  z-index: 1;
  display: block;
  background: #15633f;
  text-align: center;
}
.aside-in {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 45px 4%;
  max-width: 1200px;
}
.aside-in.aaa {
  position: absolute;
  display: inline-block;
}
.footer_content__left {
  display: flex;
  width: 600px;
}
ul.footer_nav {
  margin-right: 60px;
  text-align: left;
}
.footer_nav li {
  padding-bottom: 10px;
}
.aside-logo {
  margin-bottom: 80px;
}
.aside-logo address {
  margin-top: 20px;
  color: #ffffff;
  text-align: left;
  letter-spacing: 0.02em;
  font-style: normal;
  font-size: 18px;
  font-size: 1.8rem;
}
.aside-banner {
  display: flex;
}
.aside-banner li {
  margin-top: 30px;
  margin-right: 20px;
}
.footer_nav a {
  color: #ffffff;
}
ul.footer_bnr {
  display: flex;
}
@media (max-width: 1300px) {
  .aside-in {
    position: relative;
    left: -120px;
    max-width: 180px;
  }
  .footer_content__left {
    width: 450px;
  }
}
@media (max-width: 768px) {
  .aside-in {
    left: 0;
    display: block;
    padding: 10px 4%;
    max-width: 768px;
  }
  .aside-logo {
    display: none;
  }
  .aside-banner {
    display: block;
    justify-content: center;
    width: 100%;
  }
  .aside-banner {
    display: block;
  }
  .aside-banner li {
    margin: 0 0 20px;
  }
  .aside-banner li:last-of-type {
    margin: 0;
  }
  .aside-in.aaa {
    display: block;
  }
  ul.footer_bnr {
    display: block;
    margin: 20px 0;
    width: 60%;
    text-align: left;
  }
  .footer_content__left {
    display: block;
  }
}

/* -----------------------------------------
		form
----------------------------------------- */
#mailformpro {
  margin: 0 auto;
  padding: 0 4%;
  max-width: 1300px;
}
#form {
  padding: 0;
}
#form.thanks {
  margin: 10rem 0 0;
}
#form h2 {
  color: #5ca71f;
}
#form h2 + p {
  margin: 0 0 5rem;
  text-align: center;
  font-size: 1.6rem;
  line-height: 3rem;
}
#form form dl {
  display: flex;
  justify-content: flex-start;
  margin: 0 15rem;
  padding: 0;
  border-top: solid 1px #ccc;
}
#form form dl dt {
  box-sizing: border-box;
  margin: 0 3% 0 0;
  padding: 1.6rem 3rem;
  width: 30%;
  background: #f5ffd6;
  text-align: left;
  font-size: 1.6rem;
}
#form form dl dt span {
  position: relative;
  position: relative;
  top: 1rem;
  top: -0.2rem;
  display: inline-block;
  float: none;
  margin-right: 1rem;
  padding: 0.2rem 0.6rem 0.4rem;
  border-radius: 0.3rem;
  background: #ca1219;
  color: #fff;
  vertical-align: middle;
  text-align: center;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1;
}
#form form dl dd {
  box-sizing: border-box;
  padding: 1.6rem 0;
  width: 67%;
  text-align: left;
  font-size: 1.6rem;
}
#form form dl dd input {
  box-sizing: border-box;
  padding: 0.5rem 0.8rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  box-shadow: none;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", YuGothic, "メイリオ", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", Verdana, "ＭＳ Ｐゴシック", sans-serif;
}
#form form dl dd select {
  box-sizing: border-box;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", YuGothic, "メイリオ", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", Verdana, "ＭＳ Ｐゴシック", sans-serif;
}
#form form dl dd textarea {
  box-sizing: border-box;
  padding: 0.5rem 0.8rem;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", YuGothic, "メイリオ", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", Verdana, "ＭＳ Ｐゴシック", sans-serif;
}
#form form dl dd .datepicker_contents button {
  outline: none;
  border: none;
  border-radius: 0;
  background: transparent;
  vertical-align: -2px;
  font-size: 20px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
#form form dl dd .form-size01 {
  width: 40%;
}
#form form dl dd .form-size02 {
  width: 18%;
}
#form form dl dd .form-size03 {
  width: 80%;
}
#form form dl dd a {
  text-decoration: underline;
}
#form form dl dd a:hover {
  text-decoration: none;
}
#form form dl dd .ico-mfp-window:after {
  position: relative;
  top: 1px;
  display: inline-block;
  content: "launch";
  font-style: normal;
  font-family: "Material Icons";
}
#form form dl:last-of-type {
  border-bottom: solid 1px #ccc;
}
#form form .check {
  margin: 1rem 0 0;
  padding: 1rem 2rem;
  background: #f4f4f4;
  text-align: centlefter;
}
#form form .send {
  margin: 5rem 0 0;
  text-align: center;
}
#form form .send button {
  display: inline-block;
  padding: 2rem 8rem;
  border: none;
  background: #fb6605;
  color: #fff;
  text-align: center;
  text-shadow: none;
  font-weight: 500;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", YuGothic, "メイリオ", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", Verdana, "ＭＳ Ｐゴシック", sans-serif;
}
#form .form-info {
  box-sizing: border-box;
  margin: 6rem auto 0;
  padding: 3rem;
  width: 70rem;
  background: #f5f5f5;
}
#form .form-info h3 {
  margin: 0 0 1rem;
  font-size: 2rem;
}
#form .form-info .tel i {
  position: relative;
  top: 0.2rem;
  left: -0.4rem;
  font-family: "Material Icons";
}

@media (max-width: 1000px) {
  #form form dl {
    margin: 0;
  }
  #form form dl dd .form-size01 {
    width: 40%;
  }
  #form form dl dd .form-size02 {
    width: 18%;
  }
  #form form dl dd .form-size03 {
    width: 80%;
  }
}
@media (max-width: 768px) {
  #form {
    padding: 0;
  }
  #form h2 + p {
    padding: 0 4%;
    text-align: left;
  }
  #form form.container {
    padding: 0;
  }
  #form form dl {
    display: block;
    border-bottom: 0;
  }
  #form form dl dt,
  #form form dl dd {
    width: 100%;
  }
  #form form dl dt {
    margin: 0 0 2% !important;
    padding: 1rem 4% !important;
    background: #f5ffd6;
    font-weight: 500;
  }
  #form form dl dt span {
    top: 0.5rem;
  }
  #form form dl dd {
    padding: 2% 4% 5% !important;
  }
  #form form dl dd input,
  #form form dl dd select,
  #form form dl dd textarea {
    padding: 1rem 0.8rem;
    width: 100% !important;
  }
  #form form dl dd .datepicker_contents li {
    position: relative;
  }
  #form form dl dd .datepicker_contents li span {
    display: block;
  }
  #form form dl dd .datepicker_contents li input {
    width: calc(100% - 40px) !important;
  }
  #form form dl dd textarea {
    height: 300px !important;
  }
  #form form .check input {
    position: relative;
    top: -1px;
    display: inline;
    width: auto !important;
  }
  #form .form-info {
    margin: 6rem 5% 0;
    width: 90%;
  }
  #form .form-info h3 {
    margin: 0 0 1.6rem;
  }
  #form .form-info p {
    font-size: 1.3rem;
    line-height: 2.4rem;
  }
  #form .form-info .tel a {
    display: block;
    margin-top: 15px;
    padding: 6px;
    border: 1px solid #5ca71f;
    border-radius: 5px;
    color: #5ca71f;
    text-align: center;
    font-size: 1.8rem;
  }
}
button.ui-datepicker-close {
  display: none;
}
.thanks {
  text-align: center;
  font-size: 1.8rem;
  line-height: 5rem;
}

/* -----------------------------------------
		nav-float
----------------------------------------- */
#nav-float {
  display: none;
}

@media (max-width: 768px) {
  #nav-float {
    position: fixed;
    bottom: 0;
    display: block;
  }
  #nav-float ul {
    display: flex;
    justify-content: space-between;
  }
  #nav-float ul li {
    line-height: 0;
  }
}
/* -----------------------------------------
		footer
----------------------------------------- */
footer {
  padding: 2rem 0;
  background: #313131;
  text-align: center;
}
.estimate footer {
  margin-top: 8rem;
}
footer small {
  display: block;
  margin: 0;
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
  font-size: 1.6rem;
}
footer small br {
  display: none;
}
.footer__bnr {
  display: block;
  margin: 0 auto;
  margin-top: -100px;
  padding-bottom: 90px;
  width: 1100px;
}
@media (max-width: 1200px) {
  .footer__bnr {
    width: 700px;
  }
}
@media (max-width: 768px) {
  footer small {
    font-size: 1.2rem;
    line-height: 1.5;
  }
  footer small br {
    display: inline-block;
  }
  .footer__bnr {
    margin-top: 0;
    margin-left: 15px;
    padding-bottom: 30px;
    width: 100%;
  }
}
/* -----------------------------------------
		estimate
----------------------------------------- */
.estimate {
  border-top: 5px solid #5ca71f;
}
.estimate .logo {
  margin: 6rem 0 3rem;
  padding: 0 4%;
  text-align: center;
}
.estimate h2.h2-common {
  margin: 0 0 1.6rem;
  text-align: center;
  font-weight: 500;
  font-size: 3.6rem;
  font-family: "Noto Sans JP", YuGothic, "メイリオ", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", Verdana, "ＭＳ Ｐゴシック", sans-serif;
}

@media (max-width: 768px) {
  .estimate .logo {
    margin-top: 3.6rem;
    padding-right: 8%;
    padding-left: 8%;
  }
}

.mgb15 {
  margin-bottom: 15px;
}

/* -----------------------------------------
		新規ページ
----------------------------------------- */
.txt_green {
  color: #1e8857;
}
.txt_orange {
  color: #e96a03;
}
p.btn_txt {
  padding-left: 20px;
  color: #ffffff;
  font-weight: 500;
  font-size: 2.4rem;
}
br.br_pc_none {
  display: none;
}
@media (max-width: 650px) {
  br.br_pc_none {
    display: block;
  }
  p.btn_txt {
    font-size: 2rem;
  }
  p.btn_txt {
    font-size: 2rem;
  }
}
/* -----------------------------------------
		レスポンスデバイス
----------------------------------------- */
h2.res_ttl {
  position: relative;
  padding: 20px 0;
  background: #1e8857;
  color: #ffffff;
}
p.txt_center {
  padding-bottom: 10px;
  font-size: 1.6rem;
}
.response_box__inner {
  background: #ffffff;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.05);
}
.response_box__txt {
  padding: 0 30px 50px 30px;
}
.res_btn_box {
  display: flex;
  margin: 0 40px;
  margin-top: 50px;
}
.visibility--s {
  margin: 0 auto;
  width: 80%;
}
.hidden--s {
  position: relative;
  margin: 0 auto;
  padding: 25px 30px;
  width: 40%;
  background: #e96a03;
}
.hidden--s:hover {
  opacity: 0.5;
}
.res_btn_bnr:hover {
  opacity: 0.5;
}
.mail_btn:before {
  position: absolute;
  top: 20px;
  display: block;
  width: 45px;
  height: 42px;
  background: url(/img/shinki/mail_ico.png);
  content: "";
}
.line_btn:before {
  position: absolute;
  top: 20px;
  display: block;
  width: 45px;
  height: 42px;
  background: url(/img/shinki/line_ico.png);
  content: "";
}
img.res_img_woman {
  position: absolute !important;
  top: 6px;
  left: 906px;
  width: 140px;
}
h2.res_ttl:after {
  position: absolute;
  top: -89px;
  right: -25px;
  display: inline-block;
  width: 169px;
  height: 180px;
  background: url(/img/shinki/res_woman.png);
  background-size: 85%;
  background-repeat: no-repeat;
  content: "";
}
h2.res_ttl:before {
  position: absolute;
  top: -50px;
  left: -60px;
  width: 183px;
  height: 183px;
  background: url(/img/res_muryo.png);
  background-size: 100%;
  background-repeat: no-repeat;
  content: "";
}
.line_btn {
  background: #00b900;
}
.btn_arrow:after {
  position: absolute;
  top: 30px;
  right: 0;
  display: block;
  width: 45px;
  height: 42px;
  background: url(/img/shinki/arrow_ico.png);
  background-repeat: no-repeat;
  content: "";
}
.res_btn_bnr img {
  padding: 0 20px;
  width: 91%;
}
.res_btn_box.res_bnr {
  margin: 50px 0 0 0;
}
@media (max-width: 1100px) {
  p.btn_txt {
    padding-left: 20px;
    font-size: 1.8rem;
  }
  .line_btn:before {
    top: 15px;
  }
  .btn_arrow:after {
    top: 23px;
  }
  .mail_btn:before {
    top: 12px;
  }
  h2.res_ttl:before {
    background-size: 80%;
  }
}
@media (max-width: 1000px) {
  h2.res_ttl:after {
    top: -48px;
    right: -68px;
    background-size: 60%;
  }
  h2.res_ttl:before {
    left: -45px;
    background-size: 60%;
  }
}
@media (max-width: 900px) {
  .res_btn_bnr img {
    padding: 10px 10px;
  }
  .line_btn:before {
    top: 12px;
    left: 15px;
  }
  .mail_btn:before {
    top: 12px;
    left: 15px;
  }
  .res_btn_box {
    margin: 0;
  }
  .hidden--s {
    margin: 30px 15px 0px 15px;
    margin-bottom: 20px;
    width: 100%;
  }
}
@media (max-width: 768px) {
  h2.res_ttl {
    padding: 15px 30px !important;
    font-size: 2.3rem !important;
    line-height: 1.5 !important;
  }
  .mail_btn:before {
    top: 15px;
    left: 20px;
    background-size: 80%;
    background-repeat: no-repeat;
  }
  .line_btn:before {
    top: 15px;
    left: 20px;
    background-size: 80%;
    background-repeat: no-repeat;
  }
  .btn_arrow:after {
    top: 20px;
    right: -15px;
  }
  .response_box__txt {
    padding: 0 15px 20px 15px;
  }
  h2.res_ttl:before {
    left: -15px;
    background-size: 60%;
  }
  h2.res_ttl:after {
    top: -53px;
    right: -68px;
    background-size: 60%;
  }
  .response_box__inner {
    margin-bottom: 20px;
  }
  .visibility--s {
    width: 90%;
  }
  .res_bnr {
    margin-bottom: 20px;
  }
  .res_btn_bnr img {
    padding: 10px 20px;
    width: 88%;
  }
  .res_btn_box {
    margin: 20px auto;
  }
  .res_btn_box.res_bnr {
    display: flex;
    margin: 30px 0 0 0;
    width: 100%;
  }
  .hidden--s {
    display: block;
    margin-bottom: 20px;
    padding: 20px 0;
    width: 95%;
  }
  .hidden--s:hover {
    opacity: 1;
  }
  .res_btn_bnr:hover {
    opacity: 1;
  }
}
@media (max-width: 600px) {
  h2.res_ttl:before {
    top: -38px;
  }
  h2.res_ttl:after {
    top: -26px;
  }
  .res_btn_box {
    display: block;
  }
  .res_btn_box.res_bnr {
    display: block;
    margin: 0 auto;
    width: 95%;
  }
}
@media (max-width: 480px) {
  h2.res_ttl:after {
    display: none;
  }
  h2.res_ttl:before {
    top: -73px;
    left: -15px;
    background-size: 50%;
  }
  .res_btn_bnr img {
    padding: 10px 0px;
    width: 100% !important;
  }
}
/* -----------------------------------------
		このようなお悩みありませんか
----------------------------------------- */
.img_ttl {
  display: flex;
  margin: 0 auto;
  max-height: 100%;
  width: 100%;
}
.onayami_box {
  margin: 80px 0;
}
h2.ttl_box {
  position: relative;
  margin-bottom: 40px;
  padding: 20px 40px;
  background: #d9ede4;
}
h2.ttl_box:before {
  position: absolute;
  top: 0px;
  left: 0px;
  display: block;
  width: 10px;
  height: 67px;
  background: #1e8857;
  content: "";
}
.onayami_img {
  text-align: center;
}
.trouble_box {
  display: flex;
  margin-bottom: 60px;
}
img.onayami_box_img {
  margin-right: 70px;
}
ul.trouble_list {
  margin: auto 0;
}
li.trouble_txt {
  position: relative;
  padding: 2px 0;
}
li.trouble_txt:before {
  position: absolute;
  top: 15px;
  left: -18px;
  width: 6px;
  height: 6px;
  border-radius: 5px;
  background: #1e8857;
  content: "";
}
.contents_btn {
  position: relative;
  margin: 0 auto;
  width: 50%;
  background: #1e8857;
}
.contents_btn:hover {
  opacity: 0.5;
}
.contents_btn:before {
  position: absolute;
  right: 10px;
  float: right;
  margin: 25px 5px;
  width: 18px;
  height: 18px;
  background: url(/img/shinki/ico.png);
  background-repeat: no-repeat;
  content: "";
}
p.onayami_btn_txt {
  padding: 25px 0 20px 0;
  color: #ffffff;
  text-align: center;
  font-weight: 500;
}
span.btn_strong {
  position: absolute;
  top: -25px;
  left: 15%;
  margin: 0 100px;
  margin: 0 auto;
  padding: 3px 10px;
  width: 69%;
  border: 1px solid #1e8857;
  background: #ffffff;
  color: #1e8857;
  text-align: center;
  font-weight: 500;
}
@media (max-width: 1200px) {
  span.btn_strong {
    left: 10%;
    width: 76%;
  }
}
@media (max-width: 1100px) {
  span.btn_strong {
    left: 7%;
    width: 83%;
  }
}
@media (max-width: 1000px) {
  img.onayami_box_img {
    margin-right: 30px;
    width: 50%;
    height: 55%;
  }
  .contents_btn {
    width: 80%;
  }
}
@media (max-width: 768px) {
  h2.ttl_box {
    padding: 14px 30px;
  }
  .procedure-in h2 {
    padding: 15px 0 15px 25px;
    font-size: 2.6rem;
    line-height: 1.2;
  }
  li.trouble_txt {
    padding: 2px 0 0 15px;
  }
  li.trouble_txt:before {
    top: 12px;
    left: 0;
  }
  .contents_btn {
    width: 100%;
  }
  p.onayami_btn_txt {
    font-size: 2rem;
  }
  ul.trouble_list {
    margin-top: 30px;
  }
  .onayami_img {
    margin-bottom: -40px;
  }
  .contents_btn:before {
    top: 0;
    right: -5px;
    background-size: 60%;
  }
  .onayami_box {
    margin: 50px 0;
  }
  h2.ttl_box:before {
    height: 80px;
  }
  span.btn_strong {
    top: -20px;
    left: 23%;
    width: 50%;
  }
  .contents_btn:hover {
    opacity: 1;
  }
}
@media (max-width: 768px) {
  img.onayami_box_img {
    margin: 0;
    width: 100%;
  }
  .trouble_box {
    display: block;
    margin-bottom: 40px;
  }
  span.btn_strong {
    left: 19%;
    width: 58%;
  }
}
@media (max-width: 500px) {
  span.btn_strong {
    left: 8%;
    width: 78%;
    font-size: 1.6rem;
  }
}
@media (max-width: 400px) {
  span.btn_strong {
    top: -23px;
    left: 5%;
    width: 83%;
    letter-spacing: 0.4px;
  }
}
/* -----------------------------------------
		選ばれる理由
----------------------------------------- */
.reason_box {
  margin-bottom: 60px;
  padding: 60px;
  background: #ffffff;
}
ul.reason_box_txt {
  font-weight: 500;
  font-size: 2.4rem;
}
li.reason_li_txt {
  position: relative;
  padding: 18px 0 18px 50px;
  border-bottom: 1px solid #dcdcdc;
}
li.reason_li_txt:before {
  position: absolute;
  top: 18px;
  left: 10px;
  width: 15px;
  height: 15px;
  border: 6px solid #1e8857;
  border-radius: 15px;
  content: "";
}
@media (max-width: 768px) {
  .reason_box {
    padding: 15px;
  }
}

/* -----------------------------------------
		MV下バナー
----------------------------------------- */
.top_bnr {
  margin: 30px 0 -10px;
}
@media (max-width: 400px) {
  .top_bnr {
    margin: 30px 0 -10px;
  }
}
/* -----------------------------------------
		料金について
----------------------------------------- */
.price_bnr {
  display: block;
  margin: 0 auto;
  padding: 90px 4%;
  max-width: 1300px;
}
.price_bnr li {
  margin: 0 25px;
  width: 33.33%;
}
.price_bnr ul {
  display: flex;
  padding: 30px;
}
.price_bnr h2 {
  margin-bottom: 30px;
  text-align: center;
  letter-spacing: 2px;
  font-weight: 500;
  font-weight: 600;
  font-size: 40px;
  font-size: 4rem;
}
.txt_li {
  padding: 40px 30px;
  border: 1px solid #1e8857;
  border-top: none;
  text-align: center;
}
.txt_li p {
  padding-bottom: 30px;
  height: 60px;
  font-weight: bold;
  font-size: 2.6rem;
}
.txt_li a {
  position: relative;
  display: block;
  padding: 15px;
  background: #1e8857;
  color: #ffffff;
}
.txt_li a:before {
  position: absolute;
  top: 40%;
  right: 15px;
  display: block;
  width: 10px;
  height: 16px;
  background: url(/img/shinki/ico.png);
  background-size: 100%;
  background-repeat: no-repeat;
  content: "";
}
@media (max-width: 1000px) {
  .txt_li {
    padding: 20px 15px;
  }
  .txt_li p {
    height: 45px;
    font-size: 2.2rem;
  }
  .txt_li a {
    padding: 9px;
    font-size: 1.4rem;
  }
  .txt_li a:before {
    top: 35%;
    right: 7px;
  }
}
@media (max-width: 768px) {
  .price_bnr h2 {
    margin-bottom: 30px;
    font-size: 35px;
    font-size: 3.5rem;
  }
  .price_bnr {
    padding: 0 4% 60px 4%;
  }
  .price_bnr ul {
    display: block;
    padding: 0;
  }
  .price_bnr li {
    margin: 40px 0 0 0;
    width: 100%;
  }
  .txt_li {
    padding: 30px 20px;
  }
  .txt_li p {
    height: auto;
    font-size: 3rem;
    line-height: 1.3;
  }
  .txt_li a {
    padding: 15px;
    font-size: 1.8rem;
  }
  .txt_li a:before {
    right: 15px;
  }
}
.souzoku_cm {
  margin-top: -55px;
  padding: 0 20px;
  text-align: center;
}
.souzoku_cm video {
  width: min(100%, 800px);
}
.mt-50 {
  margin-top: -50px;
}
.mt-30 {
  margin-bottom: 50px;
}
.souzoku_cm video {
  background-color: #fff;
}
.souzoku_cm video:hover {
  opacity: 0.7;
  -ms-filter: "alpha(opacity=70)";
  filter: alpha(opacity=70);
}

/* -----------------------------------------
		20211027
----------------------------------------- */
.header-in ul.header_mail-box {
  display: block;
}
.header-tel_r286 {
  right: calc(4% + 286px);
}
.header-tel_r60 {
  right: calc(4% + 10px);
}
.header.small .header-tel_r235 {
  right: calc(4% + 235px);
  transform: scale(0.8) translate(0, -50%);
}
.header.small .header-tel_r10 {
  right: calc(4% + 10px);
  transform: scale(0.8) translate(0, -50%);
}
@media (max-width: 768px) {
  .header-in ul.header_mail-box li {
    width: 100%;
  }
  .header-tel_r286 {
    /* right: calc(4% + 286px); */
    left: 5%;
    top: 65%;
  }
  .header-tel_r60 {
    /* right: calc(4% + 60px); */
    top: 65%;
    right: 5%;
  }
  .header.small .header-tel_r10 {
    right: calc(4% + 10px);
    transform: scale(0.8) translate(0, -50%);
    width: 160px;
  }
}

/* -----------------------------------------
		20220106
----------------------------------------- */
.response_box__txt ul li.top_mr {
  margin: 50px 0;
}
@media (max-width: 450px) {
  .response_box__txt ul li.top_mr {
    margin: 30px 0;
  }
}

/* 2023-12-20 */
.hide-for-test {
  display: none;
}

.kyugyo-info-wrap {
  max-width: 800px;
  padding: 0 20px;
  margin: 0 auto 80px;
}

@media (max-width: 768px){
	.kyugyo-info-wrap {
		margin: 0 auto 50px;
	}
}

.kyugyo-info {
  border: 4px solid rgb(23, 134, 83);
}

.kyugyo-info-ttl {
  background: rgb(23, 134, 83);
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: 20px;
}

.kyugyo-info-txt {
  padding: 20px;
}

.txt-red {
  color: #ff2020;
}

.txt-center {
  text-align: center;
}

.txt-right {
  text-align: right;
}

.mb30 {
  margin-bottom: 30px;
}

.mt30 {
  margin-top: 30px;
}