/*=============================================
 * body
 *=============================================*/ :root {
  --primary: #000;
  --org: #f1903d;
  --txt_green: #126c48;
  --green1: #bfdfb6;
  --green2: #1f6c49;
}
body {
  font-size: 18px;
  line-height: 1.4;
  color: var(--primary);
  letter-spacing: -1px;
  font-family: "Noto Sans JP", sans-serif;
  min-width: inherit;
  min-height: inherit;
  max-height: 100%;
  background: #fff;
  text-align: justify;
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 15px;
    line-height: 21px;
  }
}
/*=============================================
 * main
 *=============================================*/
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
a[href^="tel:"]:hover, a:hover {
  text-decoration: none;
}
.wrap {
  position: relative;
}
@media only screen and (min-width: 768px) {
  .df-pc {
    display: flex !important;
    justify-content: space-between;
  }
  .wrap {
    margin: 0 auto;
    width: 100%;
    max-width: 1260px;
    box-sizing: border-box;
    padding: 0 30px;
  }
}
@media only screen and (max-width: 767px) {
  .wrap {
    padding: 0 5.3%;
  }
  .df-sp {
    display: flex !important;
    justify-content: space-between;
  }
  .txt {
    padding: 0 5%;
  }
}
i {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  line-height: 1;
  position: relative;
}
/*=============================================
 * animation
 *=============================================*/
@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.heartBeat {
  animation-iteration-count: infinite;
  -webkit-amation-iteration-count: infinite;
  -webkit-animation-duration: 1.3s;
  -webkit-animation-name: heartBeat;
  -webkit-animation-timing-function: ease-in-out;
  animation-duration: 1.3s;
  animation-name: heartBeat;
  animation-timing-function: ease-in-out;
}
@keyframes move1 {
  0% {
    transform: translateY(-16px);
  }
  100% {
    transform: translateY(0);
  }
}
.move1 {
  position: relative;
  -webkit-animation: move1 2s infinite ease 0s alternate;
  animation: move1 2s infinite ease 0s alternate;
  transition-duration: .6s;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  opacity: 0;
}
.fadeInUp[style*="visible"] {
  opacity: 1;
}
.animated {
  -webkit-animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-delay: 0.3s;
}
@media (prefers-reduced-motion) {
  .animated {
    -webkit-animation: unset !important;
    -webkit-transition: none !important;
    animation: unset !important;
    transition: none !important;
  }
}
.btn {
  display: block;
  text-align: center;
  position: relative;
  color: #fff;
  background: var(--org);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  padding: 27px 85px 27px 10px;
  border-radius: 13px;
  letter-spacing: -2px;
  transition: ease 0.3s;
}
.btn span {
  display: inline-block;
}
.btn i {
  display: block;
  width: 66px;
  position: absolute;
  bottom: -15px;
  right: 48px;
}
.btn i img {
  width: 100%;
  height: auto;
}
.btn:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 1000px) and (min-width: 768px) {
  .btn i {
    right: 30px;
    width: 50px;
    bottom: -5px;
  }
}
@media only screen and (max-width: 767px) {
  .btn {
    font-size: 4.8vw;
    padding: 2.5vw 9.7% 2.5vw 0;
    letter-spacing: -1px;
  }
  .btn i {
    width: 10%;
    right: 3%;
    bottom: -2vw;
  }
}
/*=============================================
 * header
 *=============================================*/
header {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  box-sizing: border-box;
  padding: 10px 15px 20px;
}
@media only screen and (max-width: 767px) {
  header {
    padding: 0;
  }
}
/*=============================================
 * footer
 *=============================================*/
footer {
  background: var(--green2);
  color: #fff;
  text-align: center;
  padding: 40px 0 25px;
  font-size: 14px;
}
footer .footer-ttl {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.5;
}
footer ul {
  justify-content: center !important;
  margin: 40px 0 30px;
}
footer ul li {
  margin: 0 13px;
}
footer ul li a:hover {
  opacity: 0.7;
}
footer address {
  letter-spacing: 0;
}
@media only screen and (max-width: 767px) {
  footer {
    font-size: 9px;
    padding: 5vw 0;
    letter-spacing: -0.5px;
  }
  footer .footer-ttl {
    font-size: 12px;
    letter-spacing: 0;
  }
  footer ul {
    margin: 20px 0 10px;
  }
  footer ul li {
    margin: 0 8px;
  }
}
/*=============================================
 * general
 *=============================================*/
.align-bottom {
  align-items: flex-end;
}
.align-top {
  align-items: flex-start !important;
}
img {
  max-width: 100%;
  height: auto;
}
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
  img {
    width: auto;
  }
  .wrap {
    margin: auto;
    max-width: 1000px;
    width: 100%;
    position: relative;
    z-index: 0;
  }
  .df-sp {
    display: flex !important;
    justify-content: space-between;
  }
}
.df {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
}
em {
  font-style: normal;
}
.txt-center {
  text-align: center;
}
#sec1 {
  margin-bottom: 118px;
}
#sec1 h2 {
  text-align: center;
  color: var(--txt_green);
  font-weight: 700;
  font-size: 56px;
  line-height: 1.5;
  margin-bottom: 30px;
  letter-spacing: -3px;
}
#sec1 .sec1-txt1 {
  text-align: center;
  margin: 42px 0 40px;
  font-weight: 700;
  font-size: 32px;
  line-height: 44px;
}
#sec1 .sec1-txt1 span {
  display: inline-block;
}
#sec1 .sec1-txt1 em {
  font-style: normal;
}
#sec1 .sec1-txt2 {
  margin: 40px 0 54px;
  letter-spacing: -0.6px;
}
#sec1 .sec1-txt2 p:not(:last-child) {
  margin-bottom: 28px;
}
#sec1 h3 {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
#sec1 table {
  border: 1px solid #666666;
  width: 100%;
  margin-bottom: 10px;
}
#sec1 table a{
  color: #007BFF;
  text-decoration: underline;
  text-underline-offset: 5px;
}
#sec1 table a:hover{
  text-decoration: none;
}
#sec1 table tr {
  border-bottom: 1px solid #666666;
}
#sec1 table th, #sec1 table td {
  padding: 15px 40px;
}
#sec1 table th {
  border-right: 1px solid #666666;
  text-align: center;
  background: var(--green1);
  width: 193px;
  padding: 15px 20px;
}
#sec1 .sec1-txt3{
  margin-bottom: 55px;
}
@media only screen and (max-width: 1000px) {
  #sec1 {
    margin-bottom: 13vw;
  }
  #sec1 h2 {
    font-size: 6.7vw;
    line-height: 1.5;
    margin-bottom: 5vw;
  }
  #sec1 .sec1-txt1 {
    margin: 6vw 0 5vw;
    font-size: 5vw;
    line-height: 1.3;
  }
  #sec1 .sec1-txt1 em {
    font-size: 85%;
  }
  #sec1 .sec1-txt2 {
    margin: 25px 0 11vw;
  }
  #sec1 .sec1-txt2 p:not(:last-child) {
    margin-bottom: 21px;
  }
  #sec1 h3 {
    font-size: 15px;
    margin-bottom: 10px;
  }
  #sec1 table {
    margin-bottom: 3vw;
  }
  #sec1 table th, #sec1 table td {
    padding: 5px 12px;
    letter-spacing: -1.5px;
  }
  #sec1 table th {
    width: 80px;
    padding: 5px 0;
  }
  #sec1 .sec1-txt3{
    margin-bottom: 10vw;
  }
}
#sec2 {
  text-align: center;
}
#sec2 h2 {
  color: var(--txt_green);
  font-weight: 700;
  font-size: 34px;
  line-height: 1.4;
  letter-spacing: -1px;
}
#sec2 .sec2-txt1 {
  font-size: 26px;
  line-height: 36px;
  font-weight: 500;
  margin: 11px 0 26px;
  letter-spacing: -1px;
}
@media only screen and (max-width: 767px) {
  #sec2 h2 {
    font-size: 4.5vw;
  }
  #sec2 .sec2-txt1 {
    font-size: 15px;
    line-height: 20px;
    margin: 11px 0 26px;
  }
}
.sec2-2 {
  background: #fefee1;
  padding-top: 42px;
}
.sec2-2 .sec2-txt2 {
  margin: 0 auto;
  width: 100%;
  max-width: 470px;
  background: #56ab5f;
  border-radius: 30px;
  color: #fff;
  font-size: 26px;
  font-weight: 700;
  line-height: 52px;
  letter-spacing: 1px;
}
.sec2-2 .sec2-txt3 {
  background: var(--org);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2;
  width: 156px;
  height: 156px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -17px;
  right: 45px;
}
.sec2-2 .sec2-txt3 span {
  display: block;
  color: #fff468;
  font-size: 130%;
}
.sec2-2 h3 {
  color: var(--txt_green);
  font-size: 70px;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: -5px;
}
.sec2-2 .sec2-txt4 {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 28px;
}
.sec2-2 .sec2-txt4 span {
  color: #56ab5f;
  font-size: 131%;
}
@media only screen and (max-width: 1210px) and (min-width: 768px) {
  .sec2-2 h3 {
    font-size: 8vw;
  }
  .sec2-2 .sec2-txt3 {
    font-size: 27px;
    height: 115px;
    width: 115px;
    top: -67px;
    right: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .sec2-2 {
    padding-top: 8vw;
  }
  .sec2-2 .sec2-txt2 {
    width: 64vw;
    font-size: 4.3vw;
    line-height: 1.9;
    letter-spacing: 0;
  }
  .sec2-2 .sec2-txt3 {
    font-size: 4.4vw;
    width: 20vw;
    height: 20vw;
    top: -13vw;
    right: 3vw;
  }
  .sec2-2 h3 {
    font-size: 8vw;
    letter-spacing: -0.08em;
  }
  .sec2-2 .sec2-txt4 {
    font-size: 4.5vw;
    margin-bottom: 5vw;
  }
  .sec2-2 ul li:nth-child(1) {
    width: 73.1%;
    margin-left: auto;
  }
  .sec2-2 ul li:nth-child(2) {
    width: 71%;
    margin-top: -16vw;
  }
  .sec2-2 ul li:nth-child(3) {
    width: 89%;
    margin: 3vw 0 0 auto;
  }
}
.sec2-3 {
  color: #fff;
  background: var(--green2);
  padding: 40px 0 67px;
}
.sec2-3 h3 {
  color: #fff468;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -3px;
}
.sec2-3 .sec2-txt5 {
  margin: 8px 0 33px;
  font-size: 24px;
  line-height: 38px;
  letter-spacing: -1.5px;
}
@media only screen and (max-width: 960px) and (min-width: 768px) {
  .sec2-3 h3 {
    font-size: 5vw;
  }
  .sec2-3 .sec2-txt5 {
    font-size: 2.5vw;
    line-height: 1.9;
  }
}
@media only screen and (max-width: 767px) {
  .sec2-3 {
    padding: 10vw 0 15vw;
  }
  .sec2-3 h3 {
    font-size: 5.5vw;
    letter-spacing: -0.05em;
  }
  .sec2-3 .sec2-txt5 {
    margin: 2vw 0 5vw;
    font-size: 15px;
    line-height: 21px;
    letter-spacing: -0.5px;
    text-align: left;
  }
}
.sec2-4 {
  background: var(--green1);
  padding: 78px 0 117px;
}
.sec2-4 h3 {
  text-align: center;
  color: #fff;
  background: #8abb74;
  font-weight: 700;
  font-size: 26px;
  line-height: 50px;
  border-radius: 30px;
  margin-bottom: 15px;
}
.sec2-4 .sec2-txt6 {
  color: var(--txt_green);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 7px;
}
.sec2-4 .item1 ul {
  flex-wrap: wrap;
  justify-content: flex-start;
}
.sec2-4 .item1 li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 20px;
  line-height: 32px;
}
.sec2-4 .item1 li i {
  margin-right: 9px;
}
.sec2-4 .item1 .col {
  background: #fff;
  padding-bottom: 15px;
}
.sec2-4 .item1 .col:nth-child(1) {
  width: 60%;
}
.sec2-4 .item1 .col:nth-child(1) ul {
  margin: 0 8%;
}
.sec2-4 .item1 .col:nth-child(1) ul li {
  min-width: 170px;
  width: 39%;
}
.sec2-4 .item1 .col:nth-child(1) ul li:nth-child(3) {
  min-width: inherit;
  width: auto;
}
.sec2-4 .item1 .col:nth-child(2) {
  width: 38.3%;
}
.sec2-4 .item1 .col:nth-child(2) ul {
  margin-top: 11px;
}
.sec2-4 .item1 .col h4 {
  color: #fff;
  text-align: center;
  background: #56ab5f;
  font-weight: 700;
  font-size: 22px;
  line-height: 42px;
  margin-bottom: 9px;
  letter-spacing: 0;
}
.sec2-4 .item1 .col div.df {
  justify-content: center;
}
.sec2-4 .sec2-item {
  margin-bottom: 57px;
  position: relative;
}
.sec2-4 .sec2-item:before {
  content: "";
  position: absolute;
  bottom: -76px;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 62px 128px 0 128px;
  border-color: var(--green2) transparent transparent transparent;
  z-index: 1;
}
.sec2-4 .item2 {
  background: #56ab5f;
  padding: 38px 50px 5px;
}
.sec2-4 .item2 h4 {
  color: #fff;
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 28px;
  letter-spacing: -2px;
}
.sec2-4 .item2 h5 {
  color: var(--txt_green);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
}
.sec2-4 .item-inner {
  background: #bddca3;
  border-radius: 20px;
  margin-bottom: 40px;
  box-sizing: border-box;
  padding: 28px 5% 40px;
  position: relative;
}
.sec2-4 .sec2-num {
  position: absolute;
  width: 87px;
  top: -12px;
  left: 4.7%;
}
.sec2-4 .sec2-txt7 {
  font-size: 22px;
  line-height: 1.3;
  margin: 20px 0 30px;
  letter-spacing: -1.5px;
}
.sec2-4 .sec2-txt7 span {
  display: inline-block;
}
.sec2-4 .item3 {
  background: #fff;
  border: 5px solid #56ab5f;
  padding: 23px 20px 27px;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -1px;
}
.sec2-4 .item3 h4 {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  color: var(--txt_green);
  margin-bottom: 12px;
}
@media only screen and (max-width: 1200px) and (min-width: 768px) {
  .sec2-4 .item1 .col:nth-child(1) ul {
    max-width: 310px;
    margin: 0 auto;
  }
  .sec2-4 .item1 .col:nth-child(1) ul li {
    width: auto !important;
    min-width: inherit;
  }
  .sec2-4 .item1 .col:nth-child(1) ul li:nth-child(2n + 1) {
    width: 220px !important;
  }
  .sec2-4 .sec2-num {
    left: 2%;
  }
}
@media only screen and (max-width: 1050px) and (min-width: 768px) {
  .sec2-4 .item2 h5 {
    font-size: 3.1vw;
  }
  .sec2-4 .sec2-txt7 {
    font-size: 2.2vw;
    margin: 2vw 0 3vw;
  }
  .sec2-4 .sec2-num {
    width: 8vw;
  }
  .sec2-4 .item3 {
    font-size: 2.2vw;
  }
  .sec2-4 .item3 h4 {
    font-size: 3.1vw;
  }
}
@media only screen and (max-width: 767px) {
  .sec2-4 {
    padding: 10vw 0 12vw;
  }
  .sec2-4 h3 {
    font-size: 4.3vw;
    line-height: 1.9;
    margin-bottom: 3vw;
  }
  .sec2-4 .sec2-txt6 {
    font-size: 4.8vw;
    line-height: 1.6;
    margin-bottom: 1vw;
  }
  .sec2-4 .item1 li {
    font-size: 4.3vw;
    line-height: 1.5;
  }
  .sec2-4 .item1 li i {
    width: 15px;
    margin-right: 5px;
  }
  .sec2-4 .item1 .col {
    background: #fff;
    padding-bottom: 15px;
    width: 100% !important;
  }
  .sec2-4 .item1 .col:nth-child(1) ul li {
    min-width: inherit;
  }
  .sec2-4 .item1 .col:nth-child(1) ul li:nth-child(2n + 1) {
    width: 60%;
  }
  .sec2-4 .item1 .col h4 {
    font-size: 4.3vw;
    line-height: 1.6;
    margin-bottom: 2vw;
  }
  .sec2-4 .item1 .col + .col {
    margin-top: 3vw;
  }
  .sec2-4 .sec2-item {
    margin-bottom: 10vw;
  }
  .sec2-4 .sec2-item:before {
    bottom: -12vw;
    border-width: 9vw 17vw 0 17vw;
  }
  .sec2-4 .item2 {
    padding: 5vw 4.5vw 1px;
  }
  .sec2-4 .item2 h4 {
    font-size: 4.5vw;
    margin-bottom: 5vw;
    letter-spacing: -0.07em;
  }
  .sec2-4 .item2 h5 {
    font-size: 4.8vw;
  }
  .sec2-4 .item-inner {
    border-radius: 12px;
    margin-bottom: 5vw;
    padding: 6vw 5% 5vw;
  }
  .sec2-4 .sec2-num {
    width: 14.5%;
    top: -2vw;
    left: -4%;
  }
  .sec2-4 .sec2-txt7 {
    font-size: 15px;
    margin: 6px 0 15px;
  }
  .sec2-4 .item3 {
    border: 2px solid #56ab5f;
    padding: 4vw 2% 5vw;
    font-size: 15px;
    letter-spacing: 0;
  }
  .sec2-4 .item3 h4 {
    font-size: 4.8vw;
    margin-bottom: 2vw;
  }
}
#sec3 {
  margin: 70px auto 108px;
}
#sec3 h2 {
  text-align: center;
  color: var(--txt_green);
  font-weight: 700;
  font-size: 36px;
  line-height: 52px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 767px) {
  #sec3 {
    margin: 8vw 0 12vw;
  }
  #sec3 h2 {
    font-size: 5.2vw;
    line-height: 1.4;
    margin-bottom: 5vw;
  }
}
.fixed_btn {
  background: rgba(255, 255, 255, 0.6);
  position: fixed;
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  transition: 0.3s ease-out;
  transform: translateY(100%);
}
.fixed_btn .btn {
  margin: 0 auto;
  max-width: 975px;
  font-size: 30px;
  padding: 13px 0;
  line-height: 1.5;
}
.fixed_btn.is-active {
  transform: translateY(0);
}
@media only screen and (max-width: 930px) and (min-width: 768px) {
  .fixed_btn .btn br {
    display: block !important;
  }
}
@media only screen and (max-width: 767px) {
  .fixed_btn {
    padding: 10px 5.3%;
  }
  .fixed_btn .btn {
    font-size: 5vw;
  }
}