@charset "UTF-8";
@import url(//fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap);
@import url(//fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap);
/*------------------------------------------
  Base Layout
------------------------------------------*/
html {
  font-size: 62.5%;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
}

body {
  font-family: YakuHanJP, "Noto Sans JP", sans-serif;
  font-size: 1.6em;
  font-weight: 400;
  background: #fff;
  color: #111;
  line-height: 1.875;
  text-align: justify;
  -webkit-font-smoothing: antialiased;
  letter-spacing: .05em;
}

a {
  color: #111;
  text-decoration: none;
  transition: opacity .4s ease;
}
a:hover {
  opacity: .5;
}

a[href^="tel:"] {
  pointer-events: none;
  cursor: default;
}

.is-tab {
  display: none;
}

.is-sp {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .is-tab {
    display: block;
  }
}

@media only screen and (max-width: 768px) {
  body {
    line-height: 1.625;
  }
  a:hover {
    opacity: 1;
  }
  a[href^="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
  .is-pc {
    display: none;
  }
  .is-sp {
    display: block;
  }
}

/*------------------------------------------
  modules
------------------------------------------*/
.l-grid {
  display: -moz-flex;
  display:      flex;
  -ms-flex-pack: justify;
  flex-wrap: wrap;
}

.l-col-2 {
  gap: 50px 0;
  justify-content: space-between;
}
.l-col-2 > * {
  width: 48.33%;
}

/* ===== layout ===== */
.l-in {
  margin: auto;
  padding: 0 50px;
  max-width: 1200px;
  box-sizing: content-box;
}

@media only screen and (max-width: 1300px) {
  .l-in {
    padding: 0 25px;
  }
}

@media only screen and (max-width: 768px) {
  .l-in {
    padding: 0 15px;
  }
}

/* ===== ttl ===== */
.m-ttl__type01 {
  text-align: center;
  font-weight: 700;
  font-size: 46px;
  letter-spacing: .03em;
  line-height: 1.3;
  margin-bottom: 60px;
}

.m-ttl__type02 {
  text-align: center;
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {
  .m-ttl__type01 {
    font-size: 30px;
    margin-bottom: 30px;
  }
}

/* ===== txt ===== */
.m-txt__type01 {
  display: inline-block;
  color: #00a134;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding-right: 1em;
}
.m-txt__type01:before {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  top: 50%;
  margin-top: -4px;
}
.m-txt__type01.right:before {
  border-top: 2px solid #00a134;
  border-right: 2px solid #00a134;
  transform: rotate(45deg);
  right: 0;
}

/* ===== btn ===== */
.m-btn__type01 {
  display: inline-block;
  width: 460px;
  max-width: 100%;
  border-radius: 20px;
  border: 3px solid #111;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  position: relative;
  background: #fee102;
  padding: 1em 0;
}
.m-btn__type01:before {
  content: "";
  width: 11px;
  height: 11px;
  border-top: 3px solid #111;
  border-right: 3px solid #111;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  margin-top: -7px;
  right: 25px;
}

.m-btn__type02 {
  text-align: center;
  display: block;
  font-weight: 700;
  font-size: 22px;
  border: 3px solid #fff;
  line-height: 84px;
  border-radius: 20px;
  color: #fff;
}
.m-btn__type02 i {
  font-size: 190%;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.m-btn__type02.request {
  background: #f7557f;
}
.m-btn__type02.trial {
  background: #68a3df;
}
.m-btn__type02.contact {
  background: #e9f0e4;
  color: #111;
}

.m-btn__type03 {
  text-align: center;
  display: block;
  font-size: 20px;
  font-weight: 700;
  background: #fff;
  border: 3px solid #111;
  border-radius: 20px;
  background: #fff;
  padding: .8em 1em;
  width: 300px;
  max-width: 100%;
}
.m-btn__type03 i {
  font-size: 180%;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

@media only screen and (max-width: 768px) {
  .m-btn__type01 {
    font-size: 18px;
  }
  .m-btn__type01:before {
    width: 8px;
    height: 8px;
    margin-top: -5px;
    right: 15px;
  }
  .m-btn__type02 {
    line-height: 70px;
    font-size: 18px;
  }
  .m-btn__type03 {
    font-size: 18px;
    width: 100%;
  }
}

/* ===== list ===== */
.m-list__type01 {
  gap: 40px 3.333%;
}
.m-list__type01 .list-item {
  width: 22.5%;
  background: #fff;
  border: 3px solid #111;
  border-radius: 20px;
  padding: 5px 15px 25px;
}
.m-list__type01 .item-in {
  display: block;
}
.m-list__type01 .item-icon {
  text-align: center;
}
.m-list__type01 .item-ttl {
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.3;
}
.m-list__type01 .item-txt {
  line-height: 1.625;
  max-width: 192px;
  margin: 24px auto 0;
}

.m-list__type02 {
  gap: 85px 3.5%;
}
.m-list__type02 .list-item {
  width: 31%;
  line-height: 1.625;
}
.m-list__type02 .item-img {
  position: relative;
}
.m-list__type02 .item-ttl {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  padding-top: 35px;
  margin-bottom: 25px;
}
.m-list__type02 .item-btn {
  margin-top: 25px;
  text-align: center;
}
.m-list__type02 .item-btn a {
  display: block;
  font-size: 18px;
  font-weight: 500;
  background: #eee;
  border-radius: 14px;
  position: relative;
  padding: .6em 0;
}
.m-list__type02 .item-btn a:before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 3px solid #111;
  border-right: 3px solid #111;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  margin-top: -5px;
  right: 20px;
}

.m-list__type03 {
  gap: 40px 5%;
}
.m-list__type03 .list-item {
  width: 30%;
}
.m-list__type03 .item-img {
  margin-bottom: 20px;
}
.m-list__type03 .item-img img {
  border: 3px solid #111;
  border-radius: 20px;
}
.m-list__type03 .item-ttl {
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  font-size: 30px;
  margin-bottom: 20px;
}
.m-list__type03 .item-txt {
  line-height: 1.625;
}

.m-list__type04 {
  gap: 40px 3.3333%;
}
.m-list__type04 .list-item {
  width: 22.5%;
}
.m-list__type04 .item-txt {
  line-height: 1.625;
  margin-top: 1em;
}

@media only screen and (max-width: 1024px) {
  .m-list__type01 {
    gap: 30px 2%;
  }
  .m-list__type01 .list-item {
    width: 32%;
  }
  .m-list__type04 {
    gap: 20px 4%;
  }
  .m-list__type04 .list-item {
    width: 48%;
  }
  .m-list__type04 .item-txt {
    font-size: 14px;
    margin-top: .5em;
  }
}

@media only screen and (max-width: 768px) {
  .m-list__type01 {
    gap: 20px 4%;
  }
  .m-list__type01 .list-item {
    width: 48%;
  }
  .m-list__type01 .item-icon img {
    width: 80px;
  }
  .m-list__type01 .item-ttl {
    font-size: 18px;
  }
  .m-list__type01 .item-txt {
    font-size: 14px;
    margin-top: 15px;
  }
  .m-list__type02 {
    gap: 50px 0;
  }
  .m-list__type02 .list-item {
    width: 100%;
  }
  .m-list__type02 .item-img {
    max-width: 70%;
    margin: auto;
  }
  .m-list__type02 .item-img img {
    width: 100%;
  }
  .m-list__type02 .item-ttl {
    font-size: 22px;
    padding-top: 25px;
    margin-bottom: 15px;
  }
  .m-list__type02 .item-txt {
    padding: 0 35px;
  }
  .m-list__type02 .item-btn {
    margin-top: 20px;
    padding: 0 35px;
  }
  .m-list__type03 {
    gap: 40px 0;
  }
  .m-list__type03 .list-item {
    width: 100%;
  }
  .m-list__type03 .item-img {
    text-align: center;
    margin-bottom: 20px;
  }
  .m-list__type03 .item-ttl {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .js-tempSlider {
    gap: 0;
  }
}

.js-tempSlider button {
  margin: 0;
  padding: 0;
  display: block;
  background: none;
  border: none;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
}

.js-tempSlider .slick-dots {
  text-align: center;
  width: 100%;
  margin-top: 15px;
}
.js-tempSlider .slick-dots li {
  display: inline-block;
  margin: 0 4px;
}
.js-tempSlider .slick-dots button {
  border: 2px solid #111;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  background: #fff;
}
.js-tempSlider .slick-dots .slick-active button {
  background: #fee102;
}

.js-tempSlider .slick-arrow {
  width: 40px;
  height: 40px;
  border: 2px solid #111;
  border-radius: 50%;
  background: #fee102;
  position: absolute;
  top: 50%;
  margin-top: -20px;
  z-index: 1;
}
.js-tempSlider .slick-arrow:after {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  margin-top: -5px;
}

.js-tempSlider .slick-prev {
  left: -15px;
}
.js-tempSlider .slick-prev:after {
  border-top: 2px solid #111;
  border-left: 2px solid #111;
  transform: rotate(-45deg);
  left: 50%;
  margin-left: -3px;
}

.js-tempSlider .slick-next {
  right: -15px;
}
.js-tempSlider .slick-next:after {
  border-top: 2px solid #111;
  border-right: 2px solid #111;
  transform: rotate(45deg);
  right: 50%;
  margin-right: -3px;
}

/* ===== block ===== */
.m-block__type01 {
  position: relative;
  margin-bottom: 50px;
  background: #fff;
  border: 3px solid #111;
  border-radius: 20px;
  padding-top: 50px;
  padding-bottom: 50px;
  justify-content: space-between;
}
.m-block__type01:last-child {
  margin-bottom: 0;
}
.m-block__type01 .block-cont {
  width: 50%;
}
.m-block__type01 .block-cont__head {
  text-align: center;
  margin-bottom: 35px;
}
.m-block__type01 .block-img {
  width: 45%;
}
.m-block__type01 .block-img iframe {
  border-radius: 15px;
}
.m-block__type01 .block-label {
  display: inline-block;
  background: #00a134;
  color: #fff;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: .1em;
  line-height: 1.3;
  padding: 0 10px;
  margin-bottom: 1em;
}
.m-block__type01 .block-ttl {
  font-size: 40px;
  font-weight: 700;
  color: #00a134;
  line-height: 1.3;
  letter-spacing: 0;
}
.m-block__type01 .block-txt {
  letter-spacing: 0;
}
.m-block__type01 .block-txt strong {
  background: #fee102;
  font-size: 120%;
}
.m-block__type01 .block-txt p {
  margin-bottom: 2em;
}
.m-block__type01 .block-txt p:last-child {
  margin-bottom: 0;
}
.m-block__type01 .block-txt .link {
  padding-left: 26px;
  position: relative;
}
.m-block__type01 .block-txt .link:before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 3px solid #00a134;
  border-right: 3px solid #00a134;
  transform: rotate(45deg);
  position: absolute;
  top: 12px;
  left: 0;
}
.m-block__type01 .block-txt .link a {
  display: inline-block;
  position: relative;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 2px solid #a6a6a6;
}
.m-block__type01 .block-illust {
  position: absolute;
}

.m-block__type02 {
  position: relative;
}
.m-block__type02 .block-in {
  display: block;
}
.m-block__type02 a.block-in:hover {
  opacity: 1;
}
.m-block__type02 a.block-in:hover .bg {
  transform: translate(-50%, -50%) scale(1.1);
}
.m-block__type02 .block-img {
  position: relative;
  text-align: center;
  padding: 40px 0 50px;
  border: 3px solid #111;
  border-radius: 20px;
  overflow: hidden;
}
.m-block__type02 .block-img:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(17, 17, 17, .5);
  z-index: 1;
}
.m-block__type02 .block-img .bg {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: .3s;
}
.m-block__type02 .block-img .bg img {
  -o-object-fit: cover;
     object-fit: cover;
}
.m-block__type02 .block-img .txt {
  position: relative;
  z-index: 2;
}
.m-block__type02 .block-img .txt-ttl {
  display: inline-block;
  font-weight: 700;
  font-size: 30px;
  background: #fff;
  padding: 4px 15px;
  line-height: 1.4;
  margin-top: 10px;
}
.m-block__type02 .block-img .txt-ttl__en {
  color: #fff;
  font-family: "Lato", sans-serif;
  font-size: 24px;
  letter-spacing: .1em;
  line-height: 1.1;
  margin-top: 15px;
  font-weight: 700;
  text-transform: uppercase;
}
.m-block__type02 .block-txt {
  margin-top: 20px;
}

.m-block__type03 {
  border-bottom: 1px solid #eee;
  margin-bottom: 50px;
  padding-bottom: 50px;
}
.m-block__type03:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.m-block__type03 .block-date {
  font-size: 14px;
  margin-bottom: 10px;
}
.m-block__type03 .block-in {
  display: block;
}
.m-block__type03 .block-ttl {
  font-weight: 700;
  color: #00a134;
  font-size: 30px;
  line-height: 1.3;
  margin-bottom: 50px;
}
.m-block__type03 .block-ttl.question {
  position: relative;
  padding-left: 100px;
  padding-top: 20px;
}
.m-block__type03 .block-ttl.question:before {
  content: "Q";
  position: absolute;
  left: 0;
  top: 0;
  width: 80px;
  line-height: 80px;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  font-family: "Lato", sans-serif;
  border-radius: 50%;
  color: #fff;
  background: #00a134;
}
.m-block__type03 .block-cont.answer {
  position: relative;
  padding-left: 100px;
  padding-top: 20px;
}
.m-block__type03 .block-cont.answer:before {
  content: "A";
  position: absolute;
  left: 0;
  top: 0;
  width: 80px;
  line-height: 80px;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  font-family: "Lato", sans-serif;
  border-radius: 50%;
  color: #00a134;
  background: #e9f0e4;
}
.m-block__type03 .block-cont p {
  margin-bottom: 20px;
}
.m-block__type03 .block-cont p:last-child {
  margin-bottom: 0;
}
.m-block__type03 .block-cont ul {
  margin-bottom: 20px;
}
.m-block__type03 .block-cont ul:last-child {
  margin-bottom: 0;
}
.m-block__type03 .block-cont ul > li {
  font-size: 15px;
  font-weight: 700;
  position: relative;
  padding-left: 15px;
}
.m-block__type03 .block-cont ul > li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  border-radius: 50%;
  background: #111;
  width: 6px;
  height: 6px;
}
.m-block__type03 .block-cont ol {
  counter-reset: number 0;
  margin-bottom: 20px;
}
.m-block__type03 .block-cont ol:last-child {
  margin-bottom: 0;
}
.m-block__type03 .block-cont ol > li {
  font-size: 15px;
  font-weight: 700;
  position: relative;
}
.m-block__type03 .block-cont ol > li:before {
  counter-increment: number 1;
  content: counter(number);
  padding-right: .5em;
}
.m-block__type03 .block-cont .dlbox {
  background: #e9f0e4;
  padding: 25px 40px;
  margin-bottom: 20px;
}
.m-block__type03 .block-cont .dlbox:last-child {
  margin-bottom: 0;
}
.m-block__type03 .block-cont .dlbox p {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 0;
  margin-right: 1em;
}
.m-block__type03 .block-cont .dlbox p:last-child {
  margin-right: 0;
}
.m-block__type03 .block-cont .txtbox {
  padding: 30px 40px;
  border: 6px solid #e9f0e4;
  margin-bottom: 20px;
}
.m-block__type03 .block-cont .txtbox:last-child {
  margin-bottom: 0;
}

.m-block__type04 {
  position: relative;
  margin-bottom: 50px;
  background: #fff;
  border: 3px solid #111;
  border-radius: 20px;
  padding-top: 50px;
  padding-bottom: 50px;
  justify-content: space-between;
}
.m-block__type04:last-child {
  margin-bottom: 0;
}
.m-block__type04 .block-cont {
  width: 50%;
  padding-left: 45px;
  padding-top: 40px;
}
.m-block__type04 .block-cont__head {
  margin-bottom: 35px;
}
.m-block__type04 .block-img {
  width: 45%;
}
.m-block__type04 .block-img img, .m-block__type04 .block-img iframe {
  border-radius: 15px;
}
.m-block__type04 .block-ttl {
  font-size: 40px;
  font-weight: 700;
  color: #00a134;
  line-height: 1.3;
  letter-spacing: 0;
}
.m-block__type04 .block-txt {
  letter-spacing: 0;
}
.m-block__type04 .block-txt strong {
  background: #fee102;
  font-size: 120%;
}
.m-block__type04 .block-txt p {
  margin-bottom: 2em;
}
.m-block__type04 .block-txt p:last-child {
  margin-bottom: 0;
}
.m-block__type04 .block-txt .link {
  padding-left: 26px;
  position: relative;
}
.m-block__type04 .block-txt .link:before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 3px solid #00a134;
  border-right: 3px solid #00a134;
  transform: rotate(45deg);
  position: absolute;
  top: 12px;
  left: 0;
}
.m-block__type04 .block-txt .link a {
  display: inline-block;
  position: relative;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 2px solid #a6a6a6;
}
.m-block__type04 .block-illust {
  position: absolute;
}

@media only screen and (max-width: 1024px) {
  .m-block__type02 .block-img .txt-ttl {
    font-size: 26px;
  }
}

@media only screen and (max-width: 768px) {
  .m-block__type01 {
    margin-bottom: 25px;
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .m-block__type01 .block-cont {
    width: 100%;
  }
  .m-block__type01 .block-cont__head {
    margin-bottom: 20px;
  }
  .m-block__type01 .block-img {
    width: 100%;
    margin-bottom: 20px;
  }
  .m-block__type01 .block-label {
    font-size: 18px;
    padding: 3px 10px 2px;
  }
  .m-block__type01 .block-ttl {
    font-size: 26px;
  }
  .m-block__type01 .block-txt {
    letter-spacing: 0;
  }
  .m-block__type01 .block-txt strong {
    background: #fee102;
    font-size: 120%;
  }
  .m-block__type01 .block-txt p {
    margin-bottom: 1em;
  }
  .m-block__type01 .block-txt .link {
    padding-left: 20px;
  }
  .m-block__type01 .block-txt .link:before {
    width: 6px;
    height: 6px;
    border-top: 2px solid #00a134;
    border-right: 2px solid #00a134;
    top: 12px;
  }
  .m-block__type01 .block-txt .link a {
    font-size: 16px;
  }
  .m-block__type02 a.block-in:hover {
    opacity: 1;
  }
  .m-block__type02 a.block-in:hover .bg {
    transform: translate(-50%, -50%) scale(1);
  }
  .m-block__type02 .block-img {
    padding: 20px 0 30px;
  }
  .m-block__type02 .block-img .txt-ttl {
    font-size: 14px;
    padding: 4px 5px;
  }
  .m-block__type02 .block-img .txt-ttl__en {
    font-size: 14px;
    margin-top: 10px;
  }
  .m-block__type02 .block-img .txt-icon img {
    width: 60px;
  }
  .m-block__type02 .block-txt {
    margin-top: 15px;
    font-size: 14px;
  }
  .m-block__type03 {
    margin-bottom: 25px;
    padding-bottom: 25px;
  }
  .m-block__type03 .block-date {
    font-size: 12px;
  }
  .m-block__type03 .block-ttl {
    font-size: 20px;
    margin-bottom: 25px;
  }
  .m-block__type03 .block-ttl.question {
    padding-left: 50px;
    padding-top: 10px;
  }
  .m-block__type03 .block-ttl.question:before {
    width: 40px;
    line-height: 40px;
    font-size: 20px;
  }
  .m-block__type03 .block-cont.answer {
    padding-left: 50px;
    padding-top: 10px;
  }
  .m-block__type03 .block-cont.answer:before {
    width: 40px;
    line-height: 40px;
    font-size: 20px;
  }
  .m-block__type03 .block-cont ul > li:before {
    top: 10px;
  }
  .m-block__type03 .block-cont .dlbox {
    padding: 20px;
  }
  .m-block__type03 .block-cont .dlbox p {
    display: block;
    margin: 0 0 15px;
  }
  .m-block__type03 .block-cont .txtbox {
    padding: 20px 15px;
    border: 3px solid #e9f0e4;
  }
  .m-block__type04 {
    margin-bottom: 25px;
    padding-top: 25px;
    padding-bottom: 15px;
  }
  .m-block__type04 .block-cont {
    width: 100%;
    padding: 0;
  }
  .m-block__type04 .block-cont__head {
    margin-bottom: 20px;
  }
  .m-block__type04 .block-img {
    width: 100%;
    margin-top: 20px;
  }
  .m-block__type04 .block-ttl {
    font-size: 26px;
    text-align: center;
  }
}

/* ===== nav ===== */
.m-nav__type01 {
  max-width: 930px;
  margin: 0 auto 40px;
  gap: 15px 2%;
}
.m-nav__type01:last-child {
  margin-bottom: 0;
}
.m-nav__type01 li {
  width: 15%;
}
.m-nav__type01 a {
  display: flex;
  background: #fff;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border-radius: 6px;
  color: #00a134;
  position: relative;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.1;
}
.m-nav__type01 a:after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid #00a134;
  border-right: 2px solid #00a134;
  transform: rotate(45deg);
  position: absolute;
  right: 12px;
  top: 50%;
  margin-top: -4px;
}
.m-nav__type01 a p {
  padding: 0 20px;
}

.m-nav__type02 {
  max-width: 930px;
  margin: 0 auto 15px;
  gap: 15px 15px;
}
.m-nav__type02:last-child {
  margin-bottom: 0;
}
.m-nav__type02.black a {
  background: #111;
}
.m-nav__type02 a {
  display: flex;
  background: #00a134;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border-radius: 6px;
  color: #fff;
  position: relative;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.1;
  padding: 0 1em;
}
.m-nav__type02 a:after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  right: 12px;
  top: 50%;
  margin-top: -4px;
}
.m-nav__type02 a p {
  padding-right: 20px;
}

@media only screen and (max-width: 1024px) {
  .m-nav__type01 {
    gap: 10px 2%;
  }
  .m-nav__type01 li {
    width: 32%;
  }
}

@media only screen and (max-width: 768px) {
  .m-nav__type01 {
    margin: 0 auto 30px;
    gap: 10px 2%;
  }
  .m-nav__type01 li {
    width: 49%;
    font-size: 14px;
  }
  .m-nav__type02 {
    gap: 5px 5px;
  }
  .m-nav__type02 li {
    font-size: 12px;
  }
  .m-nav__type02 a:after {
    width: 4px;
    height: 4px;
    right: 10px;
    margin-top: -3px;
  }
  .m-nav__type02 a p {
    padding-right: 20px;
  }
}

/* ===== movie ===== */
.m-movie > div {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.m-movie > div iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

/* ===== cv ===== */
.m-cv {
  position: relative;
  background: #00a134;
  color: #fff;
  padding: 40px 140px;
  margin-top: 100px;
}
.m-cv .cv-tel {
  width: 66%;
}
.m-cv .cv-tel .tel-num {
  letter-spacing: 0;
  line-height: 1.2;
}
.m-cv .cv-tel .tel-num a {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 34px;
  display: inline-block;
  margin-right: 10px;
}
.m-cv .cv-tel .tel-num a span {
  font-size: 150%;
}
.m-cv .cv-tel .tel-num .info {
  font-size: 15px;
  display: inline-block;
}
.m-cv .cv-tel .tel-txt {
  font-size: 15px;
  line-height: 1.5;
  margin-top: 10px;
}
.m-cv .cv-btn {
  margin-left: auto;
  width: 32%;
}
.m-cv .illust06 {
  bottom: 0;
  right: 10px;
}
.m-cv .illust08 {
  bottom: 0;
  left: 14px;
}

@media only screen and (max-width: 1024px) {
  .m-cv .cv-tel {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
  .m-cv .cv-btn {
    width: 100%;
  }
  .m-cv .cv-btn a {
    max-width: 400px;
    margin: auto;
  }
}

@media only screen and (max-width: 768px) {
  .m-cv {
    padding: 35px 0;
    margin-top: 50px;
  }
  .m-cv .cv-tel .tel-num a {
    font-size: 26px;
    margin-right: 0;
  }
  .m-cv .cv-tel .tel-num .info {
    display: block;
    margin-top: 10px;
  }
  .m-cv .cv-tel .tel-txt {
    margin-top: 15px;
  }
  .m-cv .cv-btn a {
    width: 66%;
  }
  .m-cv .illust06 {
    right: -15px;
  }
  .m-cv .illust08 {
    left: -15px;
  }
}

/* ===== illust ===== */
.illust {
  position: absolute;
  z-index: 1;
}

@media only screen and (max-width: 768px) {
  .illust01 {
    width: 84px;
  }
  .illust02 {
    width: 122px;
  }
  .illust03 {
    width: 100px;
  }
  .illust04 {
    width: 100px;
  }
  .illust05 {
    width: 98px;
  }
  .illust06 {
    width: 57px;
  }
  .illust07 {
    width: 90px;
  }
  .illust08 {
    width: 56px;
  }
  .illust09 {
    width: 110px;
  }
}

/* ===== hoge ===== */
/*------------------------------------------
  header
------------------------------------------*/
.site-header {
  position: relative;
  z-index: 101;
}
.site-header__in {
  padding-left: 20px;
  height: 80px;
  align-items: center;
  justify-content: space-between;
}
.site-header__logo {
  line-height: 1.3;
  width: 281px;
}
.site-header__logo .logo-txt {
  font-size: 11px;
  margin-bottom: 4px;
  color: #88968d;
}
.site-header__cont {
  align-items: flex-end;
}
.site-header__cont .header-tel {
  border-left: 1px solid #ddd;
  padding: 0 25px;
  text-align: center;
  height: 80px;
  letter-spacing: 0;
  line-height: 1.1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-header__cont .header-tel .tel-num {
  color: #00a134;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 24px;
}
.site-header__cont .header-tel .tel-num a {
  color: #00a134;
  font-size: 150%;
}
.site-header__cont .header-tel .tel-txt {
  font-size: 13px;
  margin-top: .5em;
}
.site-header__cont .header-btn {
  width: 200px;
}
.site-header__cont .header-btn a {
  font-size: 18px;
  line-height: 80px;
  text-align: center;
  display: block;
  color: #fff;
  font-weight: 700;
  background: #f7557f;
}
.site-header__sp {
  display: none;
}

.global-nav {
  padding-bottom: 20px;
}
.global-nav li {
  position: relative;
}
.global-nav li:last-child a {
  border-right: none;
}
.global-nav a {
  display: block;
  font-weight: 700;
  padding: 0 1.5em;
  line-height: 1.1;
  border-right: 1px solid #ddd;
}
.global-nav .cap {
  position: absolute;
  top: -35px;
  left: 0;
  width: 100%;
  text-align: center;
}
.global-nav .cap span {
  display: inline-block;
  font-weight: 700;
  color: #fff;
  font-size: 14px;
  background: #00a134;
  padding: 0 5px;
  line-height: 1.5;
  position: relative;
}
.global-nav .cap span:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -3px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 3px 0 3px;
  border-color: #00a134 transparent transparent transparent;
}

@media only screen and (max-width: 1380px) {
  .site-header__logo {
    width: 240px;
  }
  .site-header__cont .header-tel {
    padding: 0 15px;
  }
  .site-header__cont .header-tel .tel-num {
    font-size: 18px;
  }
  .site-header__cont .header-tel .tel-txt {
    font-size: 11px;
  }
  .site-header__cont .header-btn {
    width: 110px;
  }
  .site-header__cont .header-btn a {
    font-size: 15px;
  }
  .global-nav a {
    font-size: 14px;
    padding: 0 1em;
  }
  .global-nav .cap span {
    font-size: 12px;
  }
}

@media only screen and (max-width: 1024px) {
  .site-header__in {
    height: 60px;
    padding-left: 10px;
  }
  .site-header__logo {
    width: 100%;
  }
  .site-header__logo .logo-txt {
    font-size: 10px;
  }
  .site-header__logo .logo-img {
    width: 200px;
  }
  .site-header__cont {
    display: none;
  }
  .site-header__trigger {
    position: absolute;
    width: 50px;
    height: 50px;
    right: 10px;
    top: 5px;
    cursor: pointer;
    text-align: center;
    line-height: 1;
  }
  .site-header__trigger .trigger-icon {
    margin-top: 10px;
    width: 30px;
    height: 18px;
    display: inline-block;
    position: relative;
  }
  .site-header__trigger .trigger-icon span {
    position: absolute;
    width: 100%;
    background: #00a134;
    height: 2px;
    left: 0;
    transition: .3s;
  }
  .site-header__trigger .trigger-icon span:nth-child(1) {
    top: 0;
  }
  .site-header__trigger .trigger-icon span:nth-child(2) {
    top: 50%;
    margin-top: -1px;
  }
  .site-header__trigger .trigger-icon span:nth-child(3) {
    bottom: 0;
  }
  .site-header__trigger .trigger-txt:after {
    content: "メニュー";
    letter-spacing: 0;
    color: #00a134;
    font-size: 10px;
    font-weight: 500;
  }
  .site-header__trigger.is-active .trigger-icon span:nth-child(1) {
    transform: translateY(8px) rotate(-45deg);
  }
  .site-header__trigger.is-active .trigger-icon span:nth-child(2) {
    opacity: 0;
  }
  .site-header__trigger.is-active .trigger-icon span:nth-child(3) {
    transform: translateY(-8px) rotate(45deg);
  }
  .site-header__trigger.is-active .trigger-txt:after {
    content: "閉じる";
  }
  .site-header__sp {
    position: fixed;
    top: 0;
    left: auto;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    background: #e9f0e4;
    width: 100%;
    height: 100vh;
    z-index: 100;
    padding: 60px 15px;
    box-sizing: border-box;
  }
  .site-header__sp .header-btn {
    display: flex;
    justify-content: space-between;
  }
  .site-header__sp .header-btn li {
    width: 32.5%;
  }
  .site-header__sp .header-tel {
    text-align: center;
    margin-top: 15px;
  }
  .site-header__sp .header-tel .tel-num {
    background: #00a134;
    color: #fff;
    line-height: 1.1;
    padding: 20px 0;
  }
  .site-header__sp .header-tel .tel-num a {
    display: block;
    color: #fff;
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: 20px;
  }
  .site-header__sp .header-tel .tel-num a strong {
    font-size: 150%;
  }
  .site-header__sp .header-tel .tel-num span {
    display: inline-block;
    font-size: 14px;
    margin-top: 1em;
  }
  .site-header__sp .header-tel .tel-txt {
    font-size: 12px;
    margin-top: .5em;
    line-height: 1.5;
  }
  .global-nav {
    padding-bottom: 30px;
  }
  .global-nav li {
    position: relative;
    border-top: 1px solid #ddd;
  }
  .global-nav li:last-child {
    border-bottom: 1px solid #ddd;
  }
  .global-nav a {
    text-align: center;
    font-size: 20px;
    padding: 1em 0;
    border-right: none;
  }
}

@media only screen and (max-width: 768px) {
  .site-header__sp .header-btn {
    display: block;
  }
  .site-header__sp .header-btn li {
    width: 100%;
    margin-bottom: 10px;
  }
  .site-header__sp .header-btn li:last-child {
    margin-bottom: 0;
  }
  .global-nav a {
    font-size: 16px;
  }
}

/*------------------------------------------
  footer
------------------------------------------*/
.site-footer {
  max-width: 100%;
  background: #e9f0e4;
  padding-top: 50px;
  padding-bottom: 50px;
}
.site-footer .footer-logo {
  width: 300px;
}
.site-footer .footer-menu {
  width: calc(100% - 350px);
  margin-left: auto;
}
.site-footer .footer-menu__list {
  font-weight: 500;
  gap: .5em 2em;
  justify-content: flex-end;
}
.site-footer .footer-menu__list a {
  padding: .5em 0;
}
.site-footer .footer-copy {
  text-align: right;
  color: #88968d;
  font-size: 13px;
  margin-top: 25px;
}

@media only screen and (max-width: 768px) {
  .site-footer {
    padding-top: 35px;
    padding-bottom: 80px;
  }
  .site-footer .footer-logo {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
  .site-footer .footer-menu {
    width: 100%;
  }
  .site-footer .footer-menu__list {
    display: block;
    text-align: center;
    border-top: 1px solid #ddd;
  }
  .site-footer .footer-menu__list li {
    border-bottom: 1px solid #ddd;
  }
  .site-footer .footer-menu__list a {
    display: block;
    padding: .6em 0;
  }
  .site-footer .footer-copy {
    text-align: center;
    margin-top: 20px;
  }
}

.cmn-contact {
  padding: 65px 0 35px;
  background-color: #00a134;
  color: #fff;
  position: relative;
  text-align: center;
}
.cmn-contact a {
  color: #fff;
}
.cmn-contact .contact-head {
  margin-bottom: 30px;
}
.cmn-contact .contact-head__ttl {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
}
.cmn-contact .contact-head__ttl strong {
  display: inline-block;
  font-family: "Lato", sans-serif;
  font-size: 72px;
  transform: translateY(5px);
}
.cmn-contact .contact-head__lead {
  font-size: 18px;
  margin-top: 10px;
}
.cmn-contact .contact-head__lead span {
  display: inline-block;
  font-size: 26px;
  transform: translateY(2px);
}
.cmn-contact .contact-btn {
  margin-bottom: 40px;
  justify-content: space-between;
}
.cmn-contact .contact-btn li {
  width: 31.666%;
}
.cmn-contact .contact-tel__num {
  line-height: 1.1;
  font-family: "Lato", sans-serif;
  font-size: 34px;
  font-weight: 700;
}
.cmn-contact .contact-tel__num a {
  font-size: 51px;
}
.cmn-contact .contact-tel__txt {
  font-size: 15px;
  margin-top: 1em;
}
.cmn-contact .contact-illust {
  position: absolute;
  bottom: 0;
}
.cmn-contact .contact-illust01 {
  left: 50%;
  margin-left: -750px;
}
.cmn-contact .contact-illust02 {
  right: 50%;
  margin-right: -750px;
}

@media only screen and (max-width: 768px) {
  .cmn-contact {
    padding: 35px 0 0;
  }
  .cmn-contact .contact-head {
    margin-bottom: 30px;
  }
  .cmn-contact .contact-head__ttl {
    font-size: 34px;
  }
  .cmn-contact .contact-head__ttl strong {
    font-size: 62px;
  }
  .cmn-contact .contact-head__lead {
    font-size: 16px;
    line-height: 1.5;
  }
  .cmn-contact .contact-head__lead span {
    font-size: 22px;
  }
  .cmn-contact .contact-btn {
    margin-bottom: 40px;
  }
  .cmn-contact .contact-btn li {
    width: 100%;
    margin-bottom: 10px;
  }
  .cmn-contact .contact-btn li:last-child {
    margin-bottom: 0;
  }
  .cmn-contact .contact-tel__num {
    font-size: 24px;
  }
  .cmn-contact .contact-tel__num a {
    font-size: 150%;
  }
  .cmn-contact .contact-tel__txt {
    line-height: 1.5;
  }
  .cmn-contact .contact-illust {
    position: static;
    display: inline-block;
    vertical-align: bottom;
    width: 49%;
    margin-top: 20px;
  }
  .cmn-contact .contact-illust01 {
    margin-left: 0;
  }
  .cmn-contact .contact-illust02 {
    margin-right: 0;
  }
}

.fixed-nav {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 100;
}
.fixed-nav__in {
  position: relative;
  padding-right: 60px;
}
.fixed-nav__trigger {
  position: absolute;
  width: 60px;
  height: 60px;
  bottom: 0;
  right: 0;
  background: #00a134;
  cursor: pointer;
}
.fixed-nav__trigger__in {
  position: absolute;
  width: 50px;
  height: 50px;
  right: 5px;
  top: 5px;
  cursor: pointer;
  text-align: center;
  line-height: 1;
}
.fixed-nav__trigger .trigger-icon {
  margin-top: 10px;
  width: 30px;
  height: 18px;
  display: inline-block;
  position: relative;
}
.fixed-nav__trigger .trigger-icon span {
  position: absolute;
  width: 100%;
  background: #fff;
  height: 2px;
  left: 0;
  transition: .3s;
}
.fixed-nav__trigger .trigger-icon span:nth-child(1) {
  top: 0;
}
.fixed-nav__trigger .trigger-icon span:nth-child(2) {
  top: 50%;
  margin-top: -1px;
}
.fixed-nav__trigger .trigger-icon span:nth-child(3) {
  bottom: 0;
}
.fixed-nav__trigger .trigger-txt:after {
  content: "メニュー";
  letter-spacing: 0;
  color: #fff;
  font-size: 10px;
  font-weight: 500;
}
.fixed-nav__item {
  width: 33.333%;
}
.fixed-nav__item.request a {
  background: #f7557f;
}
.fixed-nav__item.trial a {
  background: #68a3df;
}
.fixed-nav__item.contact a {
  background: #e9f0e4;
  color: #111;
}
.fixed-nav__item a {
  display: flex;
  text-align: center;
  height: 60px;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #fff;
}
.fixed-nav__item i {
  font-size: 240%;
  display: block;
}

/*------------------------------------------
  contents
------------------------------------------*/
.wrapper {
  overflow: hidden;
}

/* ===== page-sec ===== */
.page-sec {
  padding: 100px 0;
  position: relative;
  background: #fff;
}
.page-sec:first-child {
  padding-top: 45px;
}
.page-sec:nth-child(2n) {
  background: #e9f0e4;
}
.page-sec.white {
  background: #fff !important;
}
.page-sec.green {
  background: #e9f0e4 !important;
}
.page-sec .sec-icon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
.page-sec .sec-in {
  position: relative;
}
.page-sec .sec-head {
  position: relative;
}
.page-sec .sec-cont {
  position: relative;
  margin-bottom: 120px;
}
.page-sec .sec-cont:last-child {
  margin-bottom: 0;
}
.page-sec .sec-ttl {
  position: relative;
  z-index: 2;
}
.page-sec .sec-lead {
  font-size: 18px;
  line-height: 2.22;
  text-align: center;
  letter-spacing: 0;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}
.page-sec .sec-lead:last-child {
  margin-bottom: 0;
}
.page-sec .sec-lead strong {
  font-size: 20px;
  background: #fee102;
}
.page-sec .sec-lead a {
  color: #0f6ac6;
  text-decoration: underline;
}
.page-sec .sec-more {
  text-align: center;
  margin-top: 70px;
}

form .page-sec:first-child {
  padding-top: 100px;
}

@media only screen and (max-width: 768px) {
  .page-sec {
    padding: 50px 0;
  }
  .page-sec:first-child {
    padding-top: 25px;
  }
  .page-sec .sec-icon {
    width: 80px;
  }
  .page-sec .sec-cont {
    margin-bottom: 50px;
  }
  .page-sec .sec-lead {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 30px;
  }
  .page-sec .sec-lead strong {
    font-size: 18px;
  }
  .page-sec .sec-more {
    margin-top: 35px;
  }
  form .page-sec:first-child {
    padding-top: 50px;
  }
}

/* ===== page-head ===== */
.page-head__ttl {
  position: relative;
  text-align: center;
  background: #00a134;
  height: 175px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-head__ttl .ttl {
  color: #fff;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}
.page-head__ttl .img {
  position: absolute;
  bottom: 0;
}
.page-head__ttl .img01 {
  left: 50px;
}
.page-head__ttl .img02 {
  right: 50px;
}

.page-head__breadcrumb {
  padding: 20px;
  line-height: 1.5;
  font-size: 14px;
}
.page-head__breadcrumb li {
  margin-right: 16px;
}
.page-head__breadcrumb a {
  display: block;
  position: relative;
  padding-right: 28px;
}
.page-head__breadcrumb a:after {
  content: "\f105";
  font-family: "Line Awesome Free";
  font-weight: 900;
  position: absolute;
  top: 0;
  right: 0;
}
.page-head__breadcrumb span {
  display: block;
}

@media only screen and (max-width: 1200px) {
  .page-head__ttl .img {
    width: 300px;
  }
  .page-head__ttl .img01 {
    left: 0;
  }
  .page-head__ttl .img02 {
    right: 0;
  }
}

@media only screen and (max-width: 1024px) {
  .page-head__ttl .img {
    width: 200px;
  }
}

@media only screen and (max-width: 768px) {
  .page-head__ttl {
    height: 180px;
  }
  .page-head__ttl .ttl {
    font-size: 32px;
    padding-bottom: 30px;
  }
  .page-head__ttl .img {
    width: 160px;
  }
  .page-head__breadcrumb {
    padding: 10px;
    font-size: 10px;
  }
  .page-head__breadcrumb li {
    margin-right: 12px;
  }
  .page-head__breadcrumb a {
    padding-right: 23px;
  }
}

/* ===== cmn-btn ===== */
.cmn-btn {
  padding: 80px 0;
}
.cmn-btn .btn-list {
  position: relative;
  display: flex;
  gap: 0 30px;
  justify-content: center;
}
.cmn-btn .btn-list a {
  width: 48%;
  height: 120px;
  display: flex;
  gap: 0 14px;
  justify-content: center;
  align-items: center;
  max-width: 450px;
  background: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  border: 3px solid #111;
  border-radius: 20px;
  letter-spacing: 0;
}
.cmn-btn .illust01 {
  bottom: -102px;
  left: -60px;
}
.cmn-btn .illust02 {
  bottom: -110px;
  left: -90px;
}
.cmn-btn .illust03 {
  bottom: -94px;
  right: -75px;
}
.cmn-btn .illust05 {
  bottom: -94px;
  right: -35px;
}

.cmn-btn__contact {
  background: #00a134;
  padding: 70px 0;
}
.cmn-btn__contact .btn-list {
  display: flex;
  position: relative;
  display: flex;
  gap: 0 30px;
  justify-content: center;
  max-width: 1030px;
  margin: auto;
}
.cmn-btn__contact .btn-list a {
  width: 48%;
}
.cmn-btn__contact .illust02 {
  bottom: -28px;
  left: 50%;
  margin-left: -780px;
}
.cmn-btn__contact .illust05 {
  bottom: -13px;
  right: 50%;
  margin-right: -720px;
}

@media only screen and (max-width: 1024px) {
  .cmn-btn .btn-list {
    display: block;
  }
  .cmn-btn .btn-list a {
    width: 60%;
    margin: 20px auto 0;
  }
  .cmn-btn .btn-list a:first-child {
    margin-top: 0;
  }
  .cmn-btn__contact .btn-list {
    display: block;
  }
  .cmn-btn__contact .btn-list a {
    width: 60%;
    margin: 20px auto 0;
  }
  .cmn-btn__contact .btn-list a:first-child {
    margin-top: 0;
  }
  .cmn-btn__contact .illust02 {
    left: 0;
    margin-left: 0;
  }
  .cmn-btn__contact .illust05 {
    right: 0;
    margin-right: 0;
  }
}

@media only screen and (max-width: 768px) {
  .cmn-btn {
    padding: 40px 0 80px;
  }
  .cmn-btn .btn-list a {
    gap: 0 5px;
    width: 100%;
    height: 90px;
    font-size: 18px;
  }
  .cmn-btn .btn-list .icon img {
    transform: scale(.7);
  }
  .cmn-btn .illust01 {
    left: -30px;
  }
  .cmn-btn .illust02 {
    bottom: -100px;
    left: -30px;
  }
  .cmn-btn .illust03 {
    right: -35px;
  }
  .cmn-btn .illust05 {
    right: -30px;
  }
  .cmn-btn__contact {
    padding: 40px 0 80px;
  }
  .cmn-btn__contact .btn-list a {
    width: 100%;
  }
  .cmn-btn__contact .illust02 {
    left: -20px;
    bottom: -16px;
  }
  .cmn-btn__contact .illust05 {
    right: -10px;
  }
}

/*------------------------------------------
  TOPページ
------------------------------------------*/
.home-head {
  position: relative;
  z-index: 1;
}
.home-head__mv {
  background: #00a134;
  color: #fff;
  height: 550px;
  position: relative;
  overflow: hidden;
}
.home-head__mv .mv-in {
  position: relative;
  padding-top: 90px;
}
.home-head__mv .mv-txt {
  position: relative;
  display: inline-block;
  text-align: center;
  font-weight: 700;
  z-index: 2;
}
.home-head__mv .mv-txt__catch {
  font-size: 30px;
  margin-bottom: 15px;
}
.home-head__mv .mv-txt__lead {
  font-size: 54px;
  line-height: 1.2;
}
.home-head__mv .mv-txt__lead span {
  font-size: 80%;
}
.home-head__mv .mv-txt__badge {
  position: absolute;
  top: 0;
  right: -50px;
  border-radius: 50%;
  width: 130px;
  height: 130px;
  display: flex;
  border: 4px solid #111;
  background: #fee102;
  justify-content: center;
  align-items: center;
  color: #111;
  font-size: 18px;
  line-height: 1;
}
.home-head__mv .mv-txt__badge .price {
  font-size: 30px;
}
.home-head__mv .mv-txt__badge .price strong {
  font-size: 240%;
  font-family: "Lato", sans-serif;
}
.home-head__mv .mv-slide {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 0;
  right: 50%;
  margin-right: -600px;
  width: 514px;
  height: 800px;
  transform: rotate(10deg);
}
.home-head__mv .mv-slide .slide-block {
  display: grid;
  width: 250px;
  height: 800px;
  transform: translateY(-120px);
}
.home-head__mv .mv-slide .slide-block01 .slide-list {
  -webkit-animation: slideShow01 20s infinite linear;
          animation: slideShow01 20s infinite linear;
}
.home-head__mv .mv-slide .slide-block02 .slide-list {
  -webkit-animation: slideShow02 20s infinite linear;
          animation: slideShow02 20s infinite linear;
}
.home-head__mv .mv-slide .slide {
  display: flex;
  flex-direction: column-reverse;
  overflow: hidden;
}
.home-head__mv .mv-slide .slide-list {
  display: flex;
  flex-direction: column-reverse;
  margin: 0;
  padding: 0;
  align-items: center;
  list-style: none;
}
.home-head__mv .mv-slide .slide-list li {
  margin-bottom: 10px;
}
.home-head__mv .mv-slide .slide-list img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.home-head__mv .mv-illust {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 1;
}
.home-head__mv .mv-illust img {
  max-width: none;
}
.home-head__news {
  width: 100%;
  padding: 0 50px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
  z-index: 10;
}
.home-head__news .news-wrapper {
  max-width: 1200px;
  margin: auto;
  background: #fff;
  border: 3px solid #111;
  border-radius: 20px;
  min-height: 114px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.home-head__news .news-wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 155px;
  left: 0;
  background: #e9f0e4;
  border-right: 3px solid #111;
}
.home-head__news .news-head {
  position: relative;
  width: 155px;
  text-align: center;
}
.home-head__news .news-head__ttl {
  font-weight: 700;
  font-size: 20px;
}
.home-head__news .news-cont {
  width: calc(100% - 155px);
  padding: 10px 35px;
}
.home-head__news .news-cont a {
  display: block;
  position: relative;
  padding-right: 30px;
}
.home-head__news .news-cont a:before {
  content: "";
  width: 11px;
  height: 11px;
  border-top: 3px solid #111;
  border-right: 3px solid #111;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  margin-top: -7px;
  right: 0;
}

@-webkit-keyframes slideShow01 {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(100%);
  }
}

@keyframes slideShow01 {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(100%);
  }
}

@-webkit-keyframes slideShow02 {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0%);
  }
}

@keyframes slideShow02 {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0%);
  }
}

@media only screen and (max-width: 768px) {
  .home-head__mv {
    background: #00a134;
    height: 380px;
  }
  .home-head__mv .mv-in {
    padding-top: 50px;
  }
  .home-head__mv .mv-txt {
    text-align: left;
  }
  .home-head__mv .mv-txt__catch {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .home-head__mv .mv-txt__lead {
    font-size: 42px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .3);
  }
  .home-head__mv .mv-txt__badge {
    top: -45px;
    right: 0;
    width: 90px;
    height: 90px;
    border: 2px solid #111;
    font-size: 13px;
  }
  .home-head__mv .mv-txt__badge .price {
    font-size: 18px;
  }
  .home-head__mv .mv-txt__badge .price strong {
    font-size: 240%;
  }
  .home-head__mv .mv-slide {
    margin-right: 0;
    right: -200px;
    transform: rotate(10deg) scale(.6);
    transform-origin: top;
  }
  .home-head__mv .mv-illust img {
    width: 176%;
    max-width: 788px;
  }
  .home-head__news {
    position: relative;
    left: 0;
    transform: translate(0, -40px);
    padding: 0 15px;
  }
  .home-head__news .news-wrapper:before {
    content: none;
  }
  .home-head__news .news-head {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid #111;
    background: #e9f0e4;
    padding: 10px 15px;
  }
  .home-head__news .news-head__ttl {
    font-size: 18px;
  }
  .home-head__news .news-cont {
    width: 100%;
    padding: 15px;
  }
}

.sec-home--message {
  padding: 155px 0 270px !important;
}
.sec-home--message .sec-ttl {
  margin-bottom: 40px;
}
.sec-home--message .message-img {
  position: absolute;
  bottom: -32px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 1;
}

@media only screen and (max-width: 768px) {
  .sec-home--message {
    padding: 20px 0 0 !important;
  }
  .sec-home--message .sec-ttl {
    margin-bottom: 30px;
  }
  .sec-home--message .message-img {
    position: relative;
    padding: 0 15px;
  }
}

.sec-home--point {
  padding-top: 120px;
}
.sec-home--point .illust03 {
  bottom: -114px;
  right: 0;
}
.sec-home--point .m-block__type01 .illust01 {
  top: -163px;
  right: 40px;
}
@media only screen and (max-width: 1280px) {
  .sec-home--point .m-block__type01 .illust01 {
    right: -80px;
  }
}
.sec-home--point .m-block__type01 .illust02 {
  top: -150px;
  left: 40px;
}

@media only screen and (max-width: 768px) {
  .sec-home--point {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .sec-home--point .illust03 {
    bottom: -86px;
  }
  .sec-home--point .m-block__type01 .illust01 {
    top: -20px;
    right: -10px;
  }
  .sec-home--point .m-block__type01 .illust02 {
    top: -90px;
    left: -20px;
  }
}

.sec-home--purpose .m-block__type02 .illust04 {
  display: none;
  left: -60px;
  bottom: 100%;
}

.sec-home--purpose .m-block__type02:first-child .illust04 {
  display: block;
}
@media only screen and (max-width: 1280px) {
  .sec-home--purpose .m-block__type02:first-child .illust04 {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  .sec-home--purpose .m-block__type02:first-child .illust04 {
    display: block;
  }
}

.sec-home--industry .illust05 {
  top: -254px;
  right: -150px;
}
@media only screen and (max-width: 1280px) {
  .sec-home--industry .illust05 {
    right: -80px;
  }
}

@media only screen and (max-width: 768px) {
  .sec-home--industry .illust05 {
    right: 0;
    top: -100px;
  }
}

.sec-home--template .illust06 {
  bottom: 100%;
  left: -50px;
  margin-bottom: 100px;
}

@media only screen and (max-width: 768px) {
  .sec-home--template .illust06 {
    bottom: 100%;
    left: 0;
    margin-bottom: 50px;
  }
}

/*------------------------------------------
  テンプレート一覧
------------------------------------------*/
.sec-list--nav {
  padding: 50px 0 70px;
}
.sec-list--nav .illust01 {
  bottom: 100%;
  left: 0;
}

@media only screen and (max-width: 1024px) {
  .sec-list--nav .illust01 {
    bottom: auto;
    top: -150px;
  }
}

@media only screen and (max-width: 768px) {
  .sec-list--nav {
    padding: 50px 0;
  }
  .sec-list--nav .illust01 {
    top: -100px;
  }
}

/*------------------------------------------
  テンプレート詳細
------------------------------------------*/
.sec-detail--message {
  padding-bottom: 0;
}

.sec-detail--image {
  padding-top: 130px;
}

.category-list {
  text-align: center;
  margin-bottom: 50px;
}
.category-list a {
  display: inline-block;
  vertical-align: middle;
  margin: 5px;
  font-size: 15px;
  letter-spacing: 0;
  border-radius: 6px;
  padding: 0 1em;
}
.category-list .category a {
  background: #e9f0e4;
}
.category-list .tag a {
  color: #fff;
  background: #00a134;
}

.detail-thumb {
  position: relative;
  max-width: 1000px;
  margin: auto;
}
.detail-thumb .thumb-box {
  position: relative;
  z-index: 1;
}
.detail-thumb .thumb-box .thumb {
  position: absolute;
}
.detail-thumb .thumb-box01 {
  margin-left: 265px;
  max-width: 527px;
  max-height: 433px;
  width: 52.7vw;
  height: 43.3vw;
}
@media only screen and (max-width: 1000px) {
  .detail-thumb .thumb-box01 {
    margin-left: 26.5vw;
  }
}
.detail-thumb .thumb-box01 .thumb {
  width: 100%;
  top: 26px;
  padding: 0 20px;
  max-height: 258px;
  height: 25.8vw;
  overflow: hidden;
}
@media only screen and (max-width: 1000px) {
  .detail-thumb .thumb-box01 .thumb {
    top: 2.6vw;
    padding: 0 2vw;
  }
}
.detail-thumb .thumb-box02 {
  position: absolute;
  left: 0;
  bottom: -60px;
  max-width: 471px;
  max-height: 300px;
  width: 47.1vw;
  height: 30vw;
}
@media only screen and (max-width: 1000px) {
  .detail-thumb .thumb-box02 {
    bottom: -6vw;
  }
}
.detail-thumb .thumb-box02 .thumb {
  width: 100%;
  top: 22px;
  padding: 0 46px;
  max-height: 236px;
  height: 23.6vw;
  overflow: hidden;
}
@media only screen and (max-width: 1000px) {
  .detail-thumb .thumb-box02 .thumb {
    top: 2.2vw;
    padding: 0 4.6vw;
  }
}
.detail-thumb .thumb-box03 {
  position: absolute;
  right: 200px;
  bottom: -60px;
  max-width: 142px;
  max-height: 233px;
  width: 14.2vw;
  height: 23.3vw;
}
@media only screen and (max-width: 1000px) {
  .detail-thumb .thumb-box03 {
    right: 20vw;
    bottom: -6vw;
  }
}
.detail-thumb .thumb-box03 .thumb {
  width: 100%;
  top: 10px;
  padding: 0 10px;
  max-height: 212px;
  height: 21.2vw;
  overflow: hidden;
}
@media only screen and (max-width: 1000px) {
  .detail-thumb .thumb-box03 .thumb {
    top: 1vw;
    padding: 0 1vw;
  }
}
.detail-thumb .thumb-box04 {
  position: absolute;
  right: 0;
  bottom: -60px;
  max-width: 188px;
  max-height: 277px;
  width: 18.8vw;
  height: 27.7vw;
}
@media only screen and (max-width: 1000px) {
  .detail-thumb .thumb-box04 {
    bottom: -6vw;
  }
}
.detail-thumb .thumb-box04 .thumb {
  width: 100%;
  top: 13px;
  padding: 0 14px;
  max-height: 250px;
  height: 25vw;
  overflow: hidden;
}
@media only screen and (max-width: 1000px) {
  .detail-thumb .thumb-box04 .thumb {
    top: 1.3vw;
    padding: 0 1.4vw;
  }
}

.example-thumb {
  position: relative;
}
.example-thumb .thumb {
  position: absolute;
  width: 100%;
  top: 12px;
  padding: 0 14px;
  max-height: 152px;
  height: 12vw;
  overflow: hidden;
}
@media only screen and (max-width: 1250px) {
  .example-thumb .thumb {
    top: .96vw;
    padding: 0 1.12vw;
    height: 12vw;
  }
}
@media only screen and (max-width: 1024px) {
  .example-thumb .thumb {
    top: 2vw;
    padding: 0 2.3vw;
    height: 25.4vw;
    max-height: none;
  }
}
@media only screen and (max-width: 768px) {
  .example-thumb .thumb {
    height: 25.2vw;
  }
}
.example-thumb .frame img {
  width: 100%;
}

.list-thumb .thumb-box img {
  width: 100%;
}

.list-thumb .thumb-box01 {
  position: relative;
}
.list-thumb .thumb-box01 .thumb {
  position: absolute;
  width: 100%;
  overflow: hidden;
  top: 17px;
  padding: 0 37px;
  max-height: 186px;
  height: 18.6vw;
}
@media only screen and (max-width: 1250px) {
  .list-thumb .thumb-box01 .thumb {
    top: 1.36vw;
    padding: 0 2.96vw;
    height: 14.64vw;
    max-height: none;
  }
}
@media only screen and (max-width: 1024px) {
  .list-thumb .thumb-box01 .thumb {
    height: 14.4vw;
  }
}
@media only screen and (max-width: 768px) {
  .list-thumb .thumb-box01 .thumb {
    top: 2.93333vw;
    padding: 0 6.4vw;
    height: 33.33333vw;
  }
}

.list-thumb .thumb-box02 {
  position: absolute;
  max-width: 108px;
  max-height: 178px;
  width: 10.8vw;
  height: 17.8vw;
  right: 0;
  bottom: -20px;
}
@media only screen and (max-width: 1250px) {
  .list-thumb .thumb-box02 {
    width: 8.64vw;
    height: 14.24vw;
    bottom: -1.6vw;
    max-width: none;
    max-height: none;
  }
}
@media only screen and (max-width: 768px) {
  .list-thumb .thumb-box02 {
    width: 17.6vw;
    height: 26.66667vw;
    bottom: -2.13333vw;
  }
}
.list-thumb .thumb-box02 .thumb {
  position: absolute;
  width: 100%;
  overflow: hidden;
  top: 7px;
  padding: 0 7px;
  max-height: 164px;
  height: 16.4vw;
}
@media only screen and (max-width: 1250px) {
  .list-thumb .thumb-box02 .thumb {
    top: .56vw;
    padding: 0 .56vw;
    height: 13.04vw;
    max-height: none;
  }
}
@media only screen and (max-width: 768px) {
  .list-thumb .thumb-box02 .thumb {
    top: 1.33333vw;
    padding: 0 1.33333vw;
    height: 26.13333vw;
  }
}

.detail-txt {
  max-width: 1100px;
  margin: auto;
}

.detail-samp {
  margin-bottom: 50px;
  justify-content: space-between;
}
.detail-samp:last-child {
  margin-bottom: 0;
}
.detail-samp__type {
  border-top: 1px solid #d3e0c8;
  padding-top: 70px;
}
.detail-samp__box {
  width: 48%;
}
.detail-samp__box__pc {
  width: 54%;
}
.detail-samp__box__sp {
  width: 42%;
}
.detail-samp__box .box-head {
  margin-bottom: 30px;
  font-weight: 700;
  line-height: 1.5;
  justify-content: space-between;
}
.detail-samp__box .box-head .ttl {
  font-size: 24px;
}
.detail-samp__box .box-head .ttl span {
  color: #fff;
  background: #00a134;
  display: inline-block;
  font-family: "Lato", sans-serif;
  padding: 0 10px;
  margin-right: 10px;
}
.detail-samp__box .box-head .link {
  position: relative;
  padding-left: 15px;
}
.detail-samp__box .box-head .link:before {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid #00a134;
  border-right: 2px solid #00a134;
  transform: rotate(45deg);
  position: absolute;
  top: 10px;
  left: 0;
}
.detail-samp__box .box-head .link a {
  display: inline-block;
  font-size: 15px;
  border-bottom: 1px solid #111;
}
.detail-samp__box .box-img img {
  border: 3px solid #111;
  border-radius: 20px;
}
.detail-samp__box .box-img.l-grid {
  gap: 50px 0;
  justify-content: space-between;
}
.detail-samp__box .box-img.l-grid div {
  width: 48%;
}
.detail-samp__box .box-img.l-grid div:nth-child(2n) {
  transform: translateY(50px);
}

@media only screen and (max-width: 768px) {
  .sec-detail--message:before {
    height: 30px;
  }
  .category-list a {
    font-size: 12px;
    padding: 0 .5em;
  }
  .detail-samp {
    margin-bottom: 40px;
  }
  .detail-samp__type {
    padding-top: 45px;
  }
  .detail-samp__under {
    margin-top: 80px;
  }
  .detail-samp__box {
    width: 100%;
    margin-bottom: 40px;
  }
  .detail-samp__box:last-child {
    margin-bottom: 0;
  }
  .detail-samp__box__pc {
    width: 100%;
  }
  .detail-samp__box__sp {
    width: 100%;
  }
  .detail-samp__box .box-head {
    gap: 10px 0;
    margin-bottom: 15px;
  }
  .detail-samp__box .box-head .ttl {
    font-size: 20px;
  }
}

/*------------------------------------------
  料金・プラン
------------------------------------------*/
.price-table {
  margin-bottom: 70px;
}
.price-table table {
  width: 100%;
}
.price-table th, .price-table td {
  border: 1px solid #d3e0c8;
}
.price-table th {
  text-align: center;
  width: 40%;
  background: #00a134;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  padding: 12px 0;
}
.price-table th:first-child {
  width: 20%;
  background: none;
  border: none;
}
.price-table td {
  vertical-align: middle;
  background: #fff;
  padding: 13px;
}
.price-table td:first-child {
  background: #e9f0e4;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}
.price-table ul {
  justify-content: space-between;
  gap: 4px 0;
}
.price-table ul li {
  width: calc(50% - 2px);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  background: #f4f7f1;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
}
.price-table ul p {
  padding: 0 .5em;
}
.price-table .price01 {
  text-align: center;
}
.price-table .price01 p {
  display: inline-block;
  line-height: 1.1;
  font-size: 40px;
  font-weight: 700;
  background: linear-gradient(transparent 70%, #fee102 70%);
}
.price-table .price01 p strong {
  font-size: 180%;
}
.price-table .price02 {
  align-items: center;
  justify-content: flex-end;
}
.price-table .price02 .txt01 {
  width: calc(100% - 170px);
}
.price-table .price02 .txt01 > div {
  margin-bottom: 10px;
}
.price-table .price02 .txt01 > div:last-child {
  margin-bottom: 0;
}
.price-table .price02 .txt01 p {
  font-weight: 700;
  display: inline-block;
  vertical-align: text-top;
  line-height: 1;
}
.price-table .price02 .txt01 .label {
  font-size: 20px;
  padding-top: 10px;
  margin-right: 10px;
}
.price-table .price02 .txt01 .price {
  text-align: right;
  font-size: 26px;
}
.price-table .price02 .txt01 .price strong {
  font-size: 150%;
  font-family: "Lato", sans-serif;
}
.price-table .price02 .txt01 .price span {
  display: block;
  margin-top: 3px;
  font-weight: 400;
  font-size: 15px;
}
.price-table .price02 .txt02 {
  width: 150px;
  padding: 15px 0;
  text-align: center;
  background: #fee102;
}
.price-table .price02 .txt02 p {
  font-weight: 700;
  line-height: 1.3;
  font-size: 20px;
}
.price-table .price02 .txt02 p strong {
  font-size: 26px;
}
.price-table .price02 .txt02 p .caution {
  font-size: 13px;
  font-weight: 400;
  opacity: .6;
  display: inline-block;
  line-height: 1.2;
}

.comparison-table table {
  width: 100%;
  text-align: center;
  table-layout: fixed;
}

.comparison-table th, .comparison-table td {
  vertical-align: middle;
  font-weight: 700;
  border: 1px solid #d3e0c8;
  letter-spacing: 0;
  line-height: 1.2;
}

.comparison-table th {
  background: #666;
  color: #fff;
  font-size: 20px;
  padding: 1em .5em;
}
.comparison-table th:first-child {
  background: none;
  border: none;
}
.comparison-table th:nth-child(2) {
  background: #00a134;
}
.comparison-table th img {
  vertical-align: text-bottom;
}

.comparison-table td {
  background: #fff;
  color: #666;
  padding: .5em 0;
}
.comparison-table td:first-child {
  font-size: 22px;
  color: #111;
}
.comparison-table td:nth-child(2) {
  background: #e9f0e4;
  color: #00a134;
}

.price-option {
  gap: 5px 0;
}
.price-option dt, .price-option dd {
  background: #fff;
  min-height: 90px;
  display: flex;
  align-items: center;
  letter-spacing: 0;
}
.price-option dt {
  width: 400px;
  font-size: 22px;
  font-weight: 700;
  padding: 0 1em;
  line-height: 1.3;
}
.price-option dt i {
  font-size: 40px;
  display: inline-block;
  vertical-align: middle;
  width: 70px;
}
.price-option dt span {
  display: inline-block;
  vertical-align: middle;
}
.price-option dd {
  width: calc(100% - 405px);
  margin-left: auto;
  font-size: 18px;
  line-height: 1.625;
  padding: 0 50px;
}

.price-pay {
  justify-content: space-between;
}
.price-pay__box {
  background: #fff;
  width: 48.33%;
  padding: 40px 35px 35px;
}
.price-pay__box .box-ttl {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}
.price-pay__box .box-ttl i {
  display: inline-block;
  vertical-align: text-top;
  margin-right: 5px;
  font-size: 38px;
}
.price-pay__box .box-txt {
  line-height: 1.625;
}

@media only screen and (max-width: 1024px) {
  .price-table {
    -ms-overflow-x: auto;
        overflow-x: auto;
    white-space: nowrap;
  }
  .price-table table {
    width: 1200px;
  }
  .price-table th {
    width: 43%;
  }
  .price-table th:first-child {
    width: 14%;
  }
  .price-option dt {
    width: 300px;
  }
  .price-option dd {
    width: calc(100% - 305px);
  }
}

@media only screen and (max-width: 768px) {
  .price-table {
    -ms-overflow-x: hidden;
        overflow-x: hidden;
    margin-bottom: 35px;
  }
  .price-table table {
    width: 100%;
    border-bottom: 1px solid #d3e0c8;
  }
  .price-table thead {
    display: none;
  }
  .price-table td {
    display: block;
    width: 100%;
    border-bottom: none;
    padding: 10px;
    font-size: 12px;
  }
  .price-table td:first-child {
    font-size: 20px;
  }
  .price-table .price01 {
    padding-bottom: 10px;
  }
  .price-table .price01 p {
    font-size: 32px;
  }
  .price-table .price02 .txt01 {
    width: calc(100% - 160px);
  }
  .price-table .price02 .txt01 > div {
    margin-bottom: 10px;
  }
  .price-table .price02 .txt01 > div:last-child {
    margin-bottom: 0;
  }
  .price-table .price02 .txt01 p {
    display: block;
  }
  .price-table .price02 .txt01 .label {
    font-size: 16px;
    padding-top: 0;
    margin-right: 0;
    margin-bottom: 5px;
  }
  .price-table .price02 .txt01 .price {
    text-align: left;
    font-size: 20px;
  }
  .price-table .price02 .txt01 .price span {
    font-size: 12px;
  }
  .price-table .price02 .txt02 {
    margin-left: auto;
  }
  .comparison-table th {
    font-size: 14px;
  }
  .comparison-table td:first-child {
    font-size: 15px;
  }
  .comparison-table td img {
    transform: scale(.8);
  }
  .price-option {
    gap: 0;
  }
  .price-option dt, .price-option dd {
    background: #fff;
    min-height: auto;
  }
  .price-option dt {
    width: 100%;
    font-size: 18px;
    padding: 20px 20px 10px;
  }
  .price-option dt i {
    font-size: 30px;
    width: 50px;
  }
  .price-option dd {
    width: 100%;
    font-size: 16px;
    padding: 0 20px 20px;
    margin-bottom: 5px;
  }
  .price-pay__box {
    width: 100%;
    margin-bottom: 20px;
  }
  .price-pay__box:last-child {
    margin-bottom: 0;
  }
}

/*------------------------------------------
  ご利用の流れ
------------------------------------------*/
.BD-flow .page-head__breadcrumb {
  background: #e9f0e4;
}

.flow-block {
  margin-bottom: 50px;
  background: #fff;
  border: 3px solid #111;
  border-radius: 20px;
  padding: 40px;
  position: relative;
}
.flow-block .block-ttl {
  font-weight: 700;
  color: #00a134;
  font-size: 40px;
  margin-bottom: 30px;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}
.flow-block .block-ttl span {
  display: inline-block;
  vertical-align: middle;
}
.flow-block .block-ttl .num {
  text-align: center;
  width: 80px;
  line-height: 80px;
  font-family: "Lato", sans-serif;
  color: #fff;
  background: #00a134;
  font-size: 30px;
  border-radius: 50%;
  margin-right: 20px;
}
.flow-block .block-ttl .catch {
  background: #fee102;
  color: #111;
  margin-left: 10px;
  padding: 10px 15px;
  font-size: 24px;
}
.flow-block .block-lead {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
.flow-block .block-lead:last-child {
  margin-bottom: 0;
}
.flow-block .block-lead strong {
  font-size: 18px;
  background: #fee102;
}
.flow-block .block-txt {
  line-height: 1.625;
  padding: 35px;
  border: 6px solid #e9f0e4;
  margin-bottom: 25px;
  position: relative;
}
.flow-block .block-txt:last-child {
  margin-bottom: 0;
}
.flow-block .block-txt p {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 1em;
}
.flow-block .block-txt p:last-child {
  margin-bottom: 0;
}
.flow-block .block-txt ul {
  margin-bottom: 1em;
}
.flow-block .block-txt ul:last-child {
  margin-bottom: 0;
}
.flow-block .block-txt ul > li {
  font-size: 18px;
  font-weight: 700;
  position: relative;
  padding-left: 15px;
}
.flow-block .block-txt ul > li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  border-radius: 50%;
  background: #00a134;
  width: 6px;
  height: 6px;
}
.flow-block .block-txt ul ol {
  margin-top: 5px;
}
.flow-block .block-txt ol {
  counter-reset: number 0;
  margin-bottom: 1em;
}
.flow-block .block-txt ol:last-child {
  margin-bottom: 0;
}
.flow-block .block-txt ol li {
  position: relative;
  font-size: 15px;
  font-weight: 400;
  padding-left: 26px;
}
.flow-block .block-txt ol li:before {
  counter-increment: number 1;
  content: counter(number);
  position: absolute;
  width: 20px;
  line-height: 20px;
  background: #e9f0e4;
  color: #00a134;
  font-size: 13px;
  text-align: center;
  left: 0;
  top: 2px;
  font-weight: 500;
}
.flow-block .block-box {
  position: relative;
  background: #e9f0e4;
  margin-bottom: 25px;
  padding: 40px;
  line-height: 1.3;
}
.flow-block .block-box:last-child {
  margin-bottom: 0;
}
.flow-block .block-box .box-tel {
  width: 60%;
}
.flow-block .block-box .box-tel .tel-num {
  letter-spacing: 0;
  line-height: 1.2;
}
.flow-block .block-box .box-tel .tel-num a {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  color: #00a134;
  font-size: 34px;
  display: inline-block;
  margin-right: 10px;
}
.flow-block .block-box .box-tel .tel-num a span {
  font-size: 150%;
}
.flow-block .block-box .box-tel .tel-num .info {
  font-size: 15px;
  display: inline-block;
}
.flow-block .block-box .box-tel .tel-txt {
  font-size: 15px;
  line-height: 1.5;
  margin-top: 10px;
}
.flow-block .block-box .box-btn {
  width: 37%;
  margin-left: auto;
}
.flow-block .illust09 {
  bottom: 100%;
  right: 50px;
}
@media only screen and (max-width: 1100px) {
  .flow-block .illust09 {
    right: -35px;
  }
}
.flow-block .illust03 {
  bottom: -15px;
  right: 70px;
}
@media only screen and (max-width: 1100px) {
  .flow-block .illust03 {
    right: -35px;
  }
}
.flow-block .illust07 {
  bottom: 100%;
  right: 60px;
  margin-bottom: 6px;
}
@media only screen and (max-width: 1100px) {
  .flow-block .illust07 {
    right: -35px;
  }
}

@media only screen and (max-width: 768px) {
  .flow-block {
    margin-bottom: 25px;
    padding: 25px 15px;
  }
  .flow-block .block-ttl {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .flow-block .block-ttl .num {
    width: 50px;
    line-height: 50px;
    font-size: 20px;
    margin-right: 10px;
  }
  .flow-block .block-ttl .catch {
    padding: 5px;
    font-size: 16px;
  }
  .flow-block .block-lead {
    margin-bottom: 15px;
  }
  .flow-block .block-txt {
    padding: 15px;
    border: 3px solid #e9f0e4;
  }
  .flow-block .block-txt p {
    font-size: 16px;
  }
  .flow-block .block-txt ul > li {
    font-size: 16px;
  }
  .flow-block .block-txt ul > li:before {
    top: 11px;
  }
  .flow-block .block-txt ul ol {
    margin-top: 5px;
  }
  .flow-block .block-txt ol li {
    font-size: 14px;
  }
  .flow-block .block-txt ol li:before {
    top: 1px;
  }
  .flow-block .block-box {
    margin-bottom: 20px;
    padding: 20px 15px;
  }
  .flow-block .block-box .box-tel {
    width: 100%;
  }
  .flow-block .block-box .box-tel .tel-num {
    text-align: center;
  }
  .flow-block .block-box .box-tel .tel-num a {
    font-size: 22px;
    margin-right: 0;
  }
  .flow-block .block-box .box-tel .tel-num .info {
    display: block;
    font-size: 14px;
    margin-top: 10px;
  }
  .flow-block .block-box .box-tel .tel-txt {
    font-size: 14px;
    text-align: center;
  }
  .flow-block .block-box .box-btn {
    width: 100%;
    margin-top: 15px;
  }
  .flow-block .block-box .box-btn a {
    max-width: 400px;
    margin: auto;
  }
  .flow-block .illust09 {
    display: none;
  }
  .flow-block .illust03 {
    bottom: -55px;
  }
  .flow-block .illust07 {
    bottom: 100%;
    margin-bottom: 0;
  }
}

/*------------------------------------------
  すぐプロホームページの特徴
------------------------------------------*/
.BD-point .page-head__breadcrumb {
  background: #e9f0e4;
}

.sec-point--message {
  padding-bottom: 0;
}
.sec-point--message .cmn-btn .btn-list {
  padding-bottom: 20px;
}
.sec-point--message .illust04 {
  bottom: 100%;
  margin-bottom: 3px;
  left: -50px;
}
@media only screen and (max-width: 1024px) {
  .sec-point--message .illust04 {
    display: none;
  }
}

/*------------------------------------------
  業種
------------------------------------------*/
.page-head__industry .page-head__ttl {
  height: 275px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.page-head__industry .page-head__ttl .ttl {
  display: inline-block;
  background: #fff;
  color: #111;
  font-size: 30px;
  padding: 5px 15px;
}
.page-head__industry .page-head__ttl .ttl__sub {
  font-family: "Lato", sans-serif;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .1em;
}

@media only screen and (max-width: 768px) {
  .page-head__industry .page-head__ttl {
    height: 200px;
  }
  .page-head__industry .page-head__ttl .ttl {
    font-size: 26px;
  }
  .page-head__industry .page-head__ttl .ttl__sub {
    font-size: 20px;
  }
}

/*------------------------------------------
  お問い合わせフォーム
------------------------------------------*/
.form-tel {
  background: #e9f0e4;
  max-width: 1000px;
  margin: auto;
  line-height: 1.5;
  align-items: center;
  position: relative;
}
.form-tel:before {
  content: "";
  width: 140px;
  height: 100%;
  background: #00a134;
  position: absolute;
  left: 0;
  top: 0;
}
.form-tel__ttl {
  color: #fff;
  text-align: center;
  font-weight: 700;
  width: 140px;
  position: relative;
}
.form-tel__cont {
  text-align: left;
  letter-spacing: 0;
  width: calc(100% - 140px);
  padding: 1.5em;
  font-size: 15px;
  align-items: center;
}
.form-tel__cont .txt {
  width: 290px;
}
.form-tel__cont .tel {
  width: calc(100% - 320px);
  margin-left: auto;
}
.form-tel__cont .tel a {
  color: #00a134;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 26px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.form-tel__cont .tel a strong {
  font-size: 150%;
}
.form-tel__cont .tel span {
  display: inline-block;
  vertical-align: middle;
}

.form-wrapper {
  background: #fff;
  border: 3px solid #111;
  border-radius: 20px;
  padding: 40px 40px 100px;
}
.form-wrapper table {
  width: 100%;
  max-width: 1000px;
  margin: auto;
}
.form-wrapper tr {
  border-bottom: 1px solid #eee;
}
.form-wrapper tr:last-child {
  border-bottom: none;
}
.form-wrapper th, .form-wrapper td {
  line-height: 1.5;
  vertical-align: middle;
  letter-spacing: 0;
  font-size: 18px;
}
.form-wrapper th a, .form-wrapper td a {
  text-decoration: underline;
  color: #0f6ac6;
}
.form-wrapper th {
  width: 270px;
  position: relative;
  font-weight: 700;
  line-height: 1.3;
  padding-left: 10px;
}
.form-wrapper th span {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  background: #f7557f;
  border-radius: 6px;
  font-size: 14px;
  padding: 2px 4px;
}
.form-wrapper th.vaT {
  vertical-align: top;
  padding-top: 50px;
}
.form-wrapper td {
  padding: 30px 10px 30px 30px;
}
.form-wrapper input[type="text"], .form-wrapper input[type="email"], .form-wrapper input[type="tel"] {
  height: 58px;
  border: 1px solid #e9f0e4;
  width: 100%;
  padding: 0 1em;
}
.form-wrapper textarea {
  border: 1px solid #e9f0e4;
  width: 100%;
  padding: 1em;
  resize: none;
}
.form-wrapper select {
  height: 58px;
  border: 1px solid #e9f0e4;
  width: 100%;
  padding: 0 1em;
}
.form-wrapper ::-moz-placeholder {
  color: #b7c5ac;
}
.form-wrapper :-ms-input-placeholder {
  color: #b7c5ac;
}
.form-wrapper ::-ms-input-placeholder {
  color: #b7c5ac;
}
.form-wrapper ::placeholder {
  color: #b7c5ac;
}

.radio-wrapper .wpcf7-form-control {
  gap: 18px 2%;
  display: flex;
  flex-wrap: wrap;
}
@media only screen and (max-width: 1024px) {
  .radio-wrapper .wpcf7-form-control {
    gap: 18px 4%;
  }
}
@media only screen and (max-width: 768px) {
  .radio-wrapper .wpcf7-form-control {
    gap: 15px 0;
  }
}

.radio-wrapper .wpcf7-list-item {
  display: block;
  margin: 0;
  width: 32%;
}
@media only screen and (max-width: 1024px) {
  .radio-wrapper .wpcf7-list-item {
    width: 48%;
  }
}
@media only screen and (max-width: 768px) {
  .radio-wrapper .wpcf7-list-item {
    width: 100%;
  }
}

.radio-wrapper .wpcf7-list-item-label {
  position: relative;
  display: block;
  cursor: pointer;
  padding: 10px 0 10px 48px;
  line-height: 1;
}

.radio-wrapper .wpcf7-list-item-label:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  background: #f4f7f1;
  border-radius: 50%;
  border: 1px solid #d5e0cd;
}

.radio-wrapper input[type="radio"] {
  display: none;
}

.radio-wrapper input[type="radio"]:checked + .wpcf7-list-item-label:before {
  background: #00a134;
}

.radio-wrapper input[type="radio"]:checked + .wpcf7-list-item-label:after {
  position: absolute;
  content: "";
  top: 50%;
  left: 11px;
  width: 10px;
  height: 10px;
  margin-top: -4px;
  border-radius: 50%;
  background: #fff;
}

.form-check > div {
  display: inline-block;
  vertical-align: middle;
  margin-right: 1.5em;
}

.form-check p {
  position: relative;
}

.form-check .wpcf7-form-control-wrap {
  display: block;
}

.form-check .wpcf7-form-control {
  display: block;
}

.form-check .wpcf7-list-item {
  display: block;
  margin: 0;
}

.form-check .wpcf7-list-item-label {
  font-size: 18px;
  padding-left: 48px;
  display: block;
  position: relative;
  cursor: pointer;
  line-height: 1;
}

.form-check .wpcf7-list-item-label:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 30px;
  height: 30px;
  margin-top: -15px;
  background: #f4f7f1;
  border: 1px solid #d5e0cd;
}

.form-check input[type="checkbox"] {
  display: none;
}

.form-check input[type="checkbox"]:checked + .wpcf7-list-item-label:before {
  background: #00a134;
}

.form-check input[type="checkbox"]:checked + .wpcf7-list-item-label:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  display: block;
  margin-top: -11px;
  width: 9px;
  height: 15px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  content: "";
  transform: rotate(45deg);
}

.wpcf7-response-output {
  max-width: 1000px;
  margin: 60px auto 0 !important;
}

.form-btn {
  margin-top: 45px;
  text-align: center;
}
.form-btn div {
  display: inline-block;
  position: relative;
  width: 314px;
  background: #fee102;
  border: 3px solid #111;
  border-radius: 20px;
}
.form-btn div:after {
  content: "";
  width: 11px;
  height: 11px;
  border-top: 3px solid #111;
  border-right: 3px solid #111;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  margin-top: -7px;
  right: 25px;
}
.form-btn input {
  font-size: 20px;
  font-weight: 700;
  width: 100%;
  height: 75px;
  position: relative;
  z-index: 1;
}
.form-btn .wpcf7-spinner {
  display: none;
}

.wpcf7-not-valid-tip {
  width: 100%;
  font-size: 14px;
  margin-top: 1em;
}

@media only screen and (max-width: 1024px) {
  .form-tel:before {
    content: none;
  }
  .form-tel__ttl {
    width: 100%;
    background: #00a134;
    padding: 1em;
  }
  .form-tel__ttl br {
    display: none;
  }
  .form-tel__cont {
    width: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .form-tel__cont .txt {
    width: 100%;
    text-align: center;
  }
  .form-tel__cont .tel {
    width: 100%;
    text-align: center;
  }
  .form-tel__cont .tel a {
    font-size: 24px;
  }
  .form-wrapper {
    padding: 20px;
  }
  .form-wrapper tr {
    border-bottom: 1px solid #eee;
  }
  .form-wrapper tr:last-child {
    border-bottom: none;
  }
  .form-wrapper th, .form-wrapper td {
    display: block;
    width: 100%;
    font-size: 16px;
  }
  .form-wrapper th {
    padding: 15px 0;
  }
  .form-wrapper th.vaT {
    padding-top: 15px;
  }
  .form-wrapper td {
    padding: 0 0 15px;
  }
  .form-btn {
    margin-top: 25px;
  }
  .form-btn div {
    width: 100%;
  }
}