html {
  font-size: 62.5%;
}

body {
  width: 100%;
  max-width: 2000px;
  margin: 0 auto;
  font-size: 1.8rem;
  color: #222;
  background-color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
}

.serif {
  font-family: 'Noto Serif JP', sans-serif;
}

img {
  max-width: 100%;
}

.c-br-sp {
  display: none;
}

.c-text-maker {
  position: relative;
  z-index: 1;
}

.c-text-maker::before {
  content: '';
  width: 100%;
  height: 30%;
  background-color: #f9f916;
  position: absolute;
  bottom: 0;
  z-index: -1;
}

.c-text-yellow {
  color: #f9f916;
}

.c-text-large {
  font-size: 4.2rem;
  font-weight: bold;
  letter-spacing: 0.08em;
}

.c-text-under-line {
  position: relative;
}

.c-text-under-line::after {
  content: '';
  width: 100%;
  height: 3px;
  background-color: #E6AA00;
  position: absolute;
  bottom: -0.65em;
  left: 0;
}

.c-text-under-line--greeting::after {
  width: 96%;
  background-color: #fff;
  bottom: -5px;
}

.c-one-point {
  font-size: 150%;
  color: #005134;
}

.c-base-width {
  min-width: 1150px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 25px;
}

.c-js-fadeUp {
  opacity: 0;
  transform: translateY(30px);
  transition: .8s;
}

.c-js-fadeUp.c-is-inview {
  opacity: 1;
  transform: translateY(0);
}

.c-button {
  display: block;
  width: 400px;
  max-width: 100%;
  margin: 0 auto;
  padding: 1.5em 0.8em;
  background-color: #005134;
  border: 2px solid transparent;
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
  transition: .25s;
  position: relative;
  z-index: 0;
}

.c-button::before {
  content: '';
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(0, 1);
  transform-origin: right;
  transition: transform .25s;
  z-index: -1;
}

.c-button::after {
  content: '';
  width: 20px;
  height: 8px;
  margin-left: 0.6em;
  background-image: url(../img/icon-button-arrow.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  transition: background-image .25s;
  display: inline-block;
  position: relative;
  top: -0.2em;
}

.c-button__icon {
  width: 2em;
  height: 1.2em;
  margin-bottom: -0.1em;
  fill: #fff;
}

.c-button:focus,
.c-button:hover {
  color: #005134;
}

.c-button:focus::before,
.c-button:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.c-button:focus::after,
.c-button:hover::after {
  background-image: url(../img_new/icon-button-arrow_2.png);
}

.c-button:focus .c-button__icon,
.c-button:hover .c-button__icon {
  fill: #005134;
}

.c-menu {
  width: 100%;
  height: 100%;
  position: relative;
}

.c-menu__button {
  display: none;
  width: 9.11458vw;
  height: 9.11458vw;
  background-color: #005134;
  position: absolute;
  right: 2.5vw;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
}

.c-menu__button span,
.c-menu__button span::before,
.c-menu__button span::after {
  content: '';
  display: block;
  width: 6.51042vw;
  height: 0.39062vw;
  border-radius: 3px;
  background-color: #fff;
  position: absolute;
}

.c-menu__button span {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
  transition: .2s;
}

.c-menu__button span::before {
  bottom: 1.95312vw;
  transition: .2s;
}

.c-menu__button span::after {
  top: 1.95312vw;
  transition: .2s;
}

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

.c-menu #menu-btn-check:checked~.c-menu__button span {
  background-color: rgba(255, 255, 255, 0);
}

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

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

.c-menu #menu-btn-check:checked~.c-menu__content {
  left: 0;
}

.c-menu .c-menu__content {
  width: 100%;
  height: 100%;
  display: flex;
  transition: left .25s;
}

.c-header {
  height: 100px;
}

.c-header__inner {
  padding: 0 2.5vw;
  display: flex;
  justify-content: space-between;
}

.c-header__left {
  margin-right: 1em;
  flex: 1;
  display: flex;
  align-items: center;
}

.c-header__home-link {
  display: inline-block;
}

.c-header__logo {
  position: relative;
  top: 10px;
}

.c-header__right {
  width: 870px;
}

.c-header__note {
  margin: 20px 0 11px;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  text-align: right;
}

.c-header__nav {
  margin-right: 26px;
}

.c-nav {
  display: inline-flex;
}

.c-nav__item:not(:last-child) {
  margin-right: 30px;
}

.c-nav__link {
  font-weight: bold;
  letter-spacing: 0.05em;
  display: block;
  text-align: center;
}

.c-nav__link:hover .c-nav__subtext::after,
.c-nav__link:focus .c-nav__subtext::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

.c-nav__text {
  font-size: 1.8rem;
  text-align: center;
}

.c-nav__subtext {
  font-size: 1.2rem;
  color: #005134;
  text-align: center;
  display: inline-block;
  position: relative;
}

.c-nav__subtext::after {
  content: '';
  width: 100%;
  height: 2px;
  background-color: #005134;
  position: absolute;
  bottom: -3px;
  left: 0;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}

.c-tel {
  display: inline-flex;
  flex-direction: column;
}

.c-tel__number {
  font-family: "Arial";
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0em;
  color: #005134;
}

.c-tel__icon {
  width: 2.1rem;
  height: 3rem;
  margin-right: -0.3em;
  margin-left: -0.12em;
  fill: #005134;
}

.c-tel__hour {
  padding: 0.15em;
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: center;
  color: #fff;
  background-color: #005134;
}

.c-main-visual {
  min-width: 1150px;
  margin-bottom: 6.2vw;
  position: relative;
}

.c-main-visual__contents {
  position: absolute;
  top: 235px;
  top: 12.23958vw;
  left: 37px;
}

.c-main-visual__slide {
  width: 79%;
  margin-left: auto;
  padding-top: 47.5%;
  position: relative;
}

.c-main-visual__button {
  margin-left: 12px;
  width: 16.5vw;
  min-width: 230px;
}

.c-main-visual__banner {
  position: absolute;
  top: 16.3vw;
  right: 0;
}

.c-contact-button {
  color: #fff;
  background-color: #c4dc6a;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.c-contact-button__link {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0.9em 0.65em;
}

.c-contact-button__icon {
  margin-bottom: 0.5em;
  fill: #fff;
}

.c-contact-button__text {
  margin-bottom: 0.5em;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.05em;
}

.c-contact-button__note {
  padding: 0.3em 0.1em;
  text-align: center;
  font-size: 1.3rem;
  line-height: 1.3;
  letter-spacing: 0.05em;
  border: 1px solid;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  height: 100%;
}

.c-slide-items {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

.c-slide-items img {
  width: auto;
  height: 100%;
  object-fit: cover;
}

.slick-dots {
  text-align: right;
  bottom: -45px;
}

.slick-dots li button:before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid #005134;
  background-color: #f6f6f6;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.slick-dots li.slick-active button:before {
  background-color: #005134;
}

.c-catchphrase__row {
  width: fit-content;
  display: inline-block;
  line-height: 1;
  font-weight: bold;
  background-color: #fff;
}

.c-catchphrase--first {
  margin-bottom: 34px;
}

.c-catchphrase--first .c-catchphrase__row {
  padding: 0.25em;
  font-size: 4.4rem;
  letter-spacing: 0.075em;
  color: #005134;
}

.c-catchphrase--first .c-catchphrase__row:not(:last-child) {
  margin-bottom: 15px;
}

.c-catchphrase--secondary {
  margin-bottom: 3.5vw;
  padding-left: 3px;
}

.c-catchphrase--secondary .c-catchphrase__row {
  padding: 0.4em;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
}

.c-catchphrase--secondary .c-catchphrase__row:not(:last-child) {
  margin-bottom: 7px;
}

.c-section {
  width: 100%;
}

.c-section__inner {
  width: 1100px;
  max-width: 100%;
  margin: 0 auto;
}

.c-section__sub-heading {
  margin-bottom: 0.4em;
  font-family: "Arial";
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: center;
  color: #005134;
}

.c-section__heading {
  margin-bottom: 1.95em;
  font-size: 3.8rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: center;
}

.c-section--title-reverse .c-section__heading {
  margin-bottom: 3.3em;
  /* margin-bottom: 10.41667vw; */
}

.c-section--title-reverse .c-section__sub-heading {
  margin-bottom: 0.4em;
}

.c-section2 {
  margin-bottom: 100px;
}

.c-section2__intro {
  font-size: 4.2rem;
  font-weight: bold;
  line-height: 1.45;
  letter-spacing: 0.05em;
  text-align: center;
  position: relative;
  z-index: 2;
}

.c-section2__problems {
  margin: -26px -25px 100px;
  padding: 3.14em 5vw;
  background-image: url(../img/img-bg1.png);
  background-repeat: no-repeat;
  background-size: 2000px;
  background-position: center;
  position: relative;
  z-index: 1;
}

.c-section2__problems::after {
  content: '';
  display: block;
  width: 1100px;
  height: 50px;
  background-image: url(../img/img-bg1-bottom.png);
  background-repeat: no-repeat;
  background-size: 1100px;
  background-position: center;
  position: absolute;
  bottom: -48px;
}

.c-section2__contents {
  margin-bottom: 80px;
  text-align: center;
}

.c-section2__contents span {
  display: inline-block;
}

/* .c-section2__contents span:first-child {
  margin-bottom: 60px;
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.05em;
} */

.c-problems {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.c-problems__item {
  width: 255px;
  height: 285px;
  margin: 0 13px;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.58;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100%;
}

.c-problems__item--1 {
  background-image: url(../img/img-sec01-1.png);
}

.c-problems__item--2 {
  background-image: url(../img/img-sec01-2.png);
}

.c-problems__item--3 {
  background-image: url(../img/img-sec01-3.png);
}

.c-problems__item--4 {
  background-image: url(../img/img-sec01-4.png);
}

.c-section3 {
  padding: 95px 0 45px;
  background-color: #f6f6f6;
  background-image: url(../img_new/img-bg2.png);
  background-repeat: no-repeat;
  background-size: 2000px;
  background-position: center top;
}

.c-section3 .c-section__sub-heading,
.c-section3 .c-section__heading {
  color: #fff;
}

.c-point {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.c-point__card {
  width: 346px;
}

.c-point__card:not(:nth-child(3n)) {
  margin-right: 20px;
}

.c-card {
  background-color: white;
  box-shadow: 0px 14px 29px 0px rgba(0, 0, 0, 0.05);
}

.c-card__body {
  padding: 45px 24px;
}

.c-card__title {
  margin-bottom: 0.5em;
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.5;
}

.c-card__text {
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  line-height: 1.67;
}

.c-card-icon {
  position: relative;
}

.c-card-icon::after {
  content: '';
  width: 75px;
  height: 75px;
  position: absolute;
  left: 50%;
  bottom: -37.5px;
  transform: translateX(-50%);
  background-size: 100%;
}

.c-card-icon--gear::after {
  background-image: url(../img_new/icon-sec03-1.png);
}

.c-card-icon--love::after {
  background-image: url(../img_new/icon-sec03-2.png);
}

.c-card-icon--calc::after {
  background-image: url(../img_new/icon-sec03-3.png);
}

.c-media {
  max-width: 1150px;
  margin: 0 auto 40px;
  display: flex;
}

.c-media--reverse {
  flex-direction: row-reverse;
}

.c-media--reverse .c-media__body {
  padding-left: 0;
  padding-right: 70px;
}

.c-media__img-wrap {
  flex: 0 1 640px;
}

.c-media__body {
  flex: 1;
  padding-left: 48px;
}

.c-media__sub-title {
  margin-bottom: 0.6em;
  font-family: 'Anton', sans-serif;
  font-size: 1.9rem;
  letter-spacing: 0.05em;
  line-height: 1.3;
  color: #E6AA00;
}

.c-media__title {
  margin-bottom: 1.3em;
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.c-media__text {
  line-height: 2;
}

.c-consult {
  display: flex;
  margin-left: -25px;
}

.c-consult__bg {
  width: 44.6%;
  height: 600px;
  margin-right: 5rem;
  background-image: url(../img_new/img-sec02-1.jpg);
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
}

.c-consult__body {
  width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.c-consult__text {
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 0.05em;
}

.c-consult__text:first-child {
  margin-bottom: 41px;
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: 0.033em;
  line-height: 1.4;
  font-family: "Noto Serif JP", serif;
}

.c-section4 {
  padding-top: 40px;
  padding-bottom: 19px;
  background-color: #f6f6f6;
  background-image: url(../img_new/bg-logo.png);
  background-repeat: no-repeat;
  background-position: left calc(50% - 300px) bottom -30px;
}

.c-section4 .c-button {
  margin: 80px auto;
}

.c-section5 {
  margin-bottom: 48px;
  padding-top: 230px;
  background-image: url(../img_new/img-bg3.jpg);
  background-repeat: no-repeat;
  background-size: 2000px;
  background-position: center top;
}

.c-section5__inner {
  padding-top: 77px;
  background-color: #fff;
}

.c-section5__work-lists {
  margin-bottom: 85px;
}

.c-section5 .c-section__heading {
  margin-bottom: 100px;
}

.c-work-lists {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.c-work-lists__item {
  width: 256px;
  margin-right: 25px;
}

.c-work-lists__item:nth-child(4n) {
  margin-right: 0;
}

.c-work-lists__link {
  display: block;
}

.c-work-lists__link:hover .c-work-lists__img {
  transform: translateY(-50%) scale(1.05);
}

/*-----------------1913行目も------*/
.c-work-lists__link:hover .c-work-lists__title {
  text-decoration: underline;
}

.c-work-lists__img-wrap {
  margin-bottom: 20px;
  position: relative;
  padding-top: 66.66%;
  overflow: hidden;
}

.c-work-lists__img {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  transition: transform .25s;
}

.c-work-lists__img-wrap img {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  transition: transform .25s;
}

.c-work-lists__title {
  margin-bottom: 0.6em;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.c-work-lists__place {
  display: inline-block;
  padding: 0.5em 0.5em;
  border: 1px solid #005134;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: #005134;
}

.c-section6 {
  min-width: 1150px;
  margin-bottom: 96px;
  background-color: #005134;
}

.c-greeting {
  overflow: hidden;
  display: flex;
  align-items: inherit;
}

.c-greeting__bg {
  width: 50%;
  margin-right: 60px;
  background-image: url(../img/img-sec06-1.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
}

.c-greeting__body {
  width: 515px;
  padding: 100px 25px 65px 0;
  position: relative;
  color: #fff;
  z-index: 1;
}

.c-greeting__body::before {
  content: '';
  display: block;
  width: 1090px;
  height: 159px;
  background-image: url(../img/txt-greeting.png);
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  top: -23px;
  left: calc(50% - 395px);
  z-index: -1;
  pointer-events: none;
}

.c-greeting__body>*:last-child {
  margin-bottom: 0;
}

.c-greeting__heading {
  margin-bottom: 42px;
  font-size: 3.8rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  position: relative;
}

.c-greeting__text {
  margin-bottom: 44px;
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 0.05em;
}

.c-greeting__text--strong {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
}

.c-section7__company-info {
  max-width: 900px;
  margin: 0 auto 60px;
}

.c-proof {
  margin-bottom: 120px;
}

.c-proof_item:not(:last-child) {
  margin-right: 30px;
}

.c-company-info {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.c-company-info dt,
.c-company-info dd {
  padding: 1.3em 2.2em;
  line-height: 1.8;
}


.c-company-info dt {
  width: 27%;
  border-top: 2px solid #005134;
}

.c-company-info dt:last-of-type {
  border-bottom: 2px solid #005134;
}

.c-company-info dd {
  width: 73%;
  border-top: 2px solid #c9c9c9;
}

.c-company-info dd:last-of-type {
  border-bottom: 2px solid #c9c9c9;
}

.c-area {
  margin: 0 -25px;
  background-image: url(../img_new/img-sec07-1.png);
  background-repeat: no-repeat;
  /* background-position: left calc(50% + 230px) top -10px; */
  background-position: calc(50% + 280px);
  background-color: #f6f6f6;
  background-size: contain;

}

.c-area__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 95px 0 75px;
}

.c-area__sub-heading {
  margin-right: 0.3em;
  font-family: 'Anton', sans-serif;
  font-size: 4.2rem;
  letter-spacing: 0.05em;
  color: #005134;
}

.c-area__heading {
  display: inline-block;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.c-area__heading--secondary {
  margin-bottom: 0.2em;
}

.c-area__intro {
  margin: 1em 0 0.7em;
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.c-area__item {
  max-width: 464px;
  margin-bottom: 18px;
  display: flex;
  flex-wrap: wrap;
}

.c-area__item li {
  width: 220px;
  margin-right: 23px;
  margin-bottom: 13px;
  padding: 1em;
  text-align: center;
  background-color: #005134;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  color: #fff;
}

.c-area__item li:nth-child(2n) {
  margin-right: 0;
}

.c-area__text {
  margin-bottom: 1em;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  line-height: 1.67;
}

.c-contact-guide {
  background-image: url(../img_new/img-bg4.jpg);
  background-repeat: no-repeat;
  /* background-size: 2000px; */
  background-size: cover;
  background-position: center top;
}

.c-contact-guide__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 0 65px;
  color: #fff;
}

.c-contact-guide__icon {
  display: block;
  margin: 0 auto;
}

.c-contact-guide__intro {
  margin: 0.7em 0 0.1em;
  font-size: 3rem;
  font-weight: bold;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: center;
}

.c-contact-guide__text {
  font-size: 2.4rem;
  line-height: 2.08;
  text-align: center;
}

.c-contact-guide__ways {
  margin: 30px 0;
}

.c-ways {
  display: flex;
}

.c-ways__item {
  display: inline-block;
  width: 100%;
  text-align: center;
}

.c-ways__item:first-child {
  border-right: 2px solid currentColor;
}

.c-ways__item:last-child {
  padding-left: 60px;
}

.c-ways__heading {
  margin-bottom: 1.4em;
  font-size: 2.4rem;
  line-height: 1.25;
  letter-spacing: 0.1em;
}

.c-ways__tel {
  margin-bottom: 0.4em;
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: left;
}

.c-ways__tel span {
  margin-left: 7px;
  font-family: "Arial";
  font-size: 6rem;
  font-weight: bold;
  letter-spacing: 0.025em;
  position: relative;
  top: 5px;
}

.c-ways__button {
  margin-top: -5px;
  width: 520px;
  padding: 40px 0;
  border-radius: 2px;
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.c-footer {
  padding-top: 86px;
  padding-bottom: 120px;
  text-align: center;
}

.c-footer__intro {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

.c-footer__logo-wrap {
  margin-bottom: 20px;
}

.c-footer__address {
  margin-bottom: 26px;
  line-height: 1.625;
}

.c-footer__map {
  margin: 0 -25px 40px;
}

.c-footer__map iframe {
  width: 100%;
}

.c-footer__copyright {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

/* Media Query ***************************************************************/
@media screen and (max-width: 1100px) {
  .c-main-visual__contents {
    top: 134px;
  }

  .c-main-visual__button {
    width: 181.5px;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 1.95vw;
  }

  .c-br-pc {
    display: none;
  }

  .c-br-sp {
    display: block;
  }

  .c-text-large {
    font-size: 3rem;
  }

  .c-base-width {
    width: 100%;
    min-width: auto;
    padding: 0;
  }

  .c-button {
    min-width: auto;
  }

  .c-button::after {
    width: 2.60417vw;
    height: 1.04167vw;
  }

  .c-menu__button {
    display: block;
  }

  .c-menu__content {
    padding: 15vw 5vw;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 8;
    background-color: #fff;
    overflow-y: scroll;
  }

  .c-header {
    height: 15vw;
  }

  .c-header__inner {
    height: 15vw;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background-color: #fff;
    z-index: 8;
  }

  .c-header__left {
    margin-right: 0;
    flex: 1 0 auto;
  }

  .c-header__logo {
    width: 39.32292vw;
    top: 0;
  }

  .c-header__right {
    width: auto;
  }

  .c-header__note {
    display: none;
  }

  .c-nav {
    margin: 0 0 3em;
    display: flex;
    flex-direction: column;
  }

  .c-nav__item {
    border-bottom: 1px dashed #005134;
  }

  .c-nav__item:not(:last-child) {
    margin: 0;
  }

  .c-nav__link {
    padding: 1.2em;
  }

  .c-tel {
    margin: 0 auto;
  }

  .c-main-visual {
    width: 100%;
    min-width: auto;
  }

  .c-main-visual__contents {
    top: 50%;
    left: 3vw;
    transform: translateY(-50%);
  }

  .c-main-visual__slide {
    width: 100%;
    padding-top: 80%;
  }

  .c-main-visual__button {
    width: 38vw;
    margin-left: 0;
    font-size: 1.2rem;
  }

  .c-main-visual__banner {
    top: 50%;
    transform: translateY(-54%);
  }

  .c-catchphrase--first {
    margin-bottom: 2.60417vw;
  }

  .c-catchphrase--first .c-catchphrase__row {
    font-size: 3.6rem;
  }

  .c-catchphrase--first .c-catchphrase__row:not(:last-child) {
    margin-bottom: 1.30208vw;
    background-color: unset;
    color: #005134;
    text-shadow: 1px 1px 10px rgba(255, 255, 255, 1), 1px 1px 10px rgba(255, 255, 255, 1), 1px 1px 10px rgba(255, 255, 255, 1), 1px 1px 10px rgba(255, 255, 255, 1), 1px 1px 10px rgba(255, 255, 255, 1), 1px 1px 10px rgba(255, 255, 255, 1), 1px 1px 10px rgba(255, 255, 255, 1);
  }

  .c-catchphrase--secondary .c-catchphrase__row:not(:last-child) {
    margin-bottom: 0.91146vw;
  }

  .slick-track {
    height: 80vw;
  }

  .c-slide-items img {
    width: auto;
    height: 100%;
  }

  .slick-dotted.slick-slider {
    margin-bottom: 3.90625vw;
  }

  .slick-dots {
    padding-right: 3vw;
    bottom: -7.8125vw;
  }

  .slick-dots li {
    width: 2.60417vw;
    height: 2.60417vw;
    margin: 0 0.65104vw;
  }

  .slick-dots li button {
    width: 2.60417vw;
    height: 2.60417vw;
  }

  .slick-dots li button::before {
    width: 1.5625vw;
    height: 1.5625vw;
  }

  .c-section {
    min-width: auto;
  }

  .c-section__heading {
    margin-bottom: 10.41667vw;
    font-size: 3rem;
  }

  .c-section--title-reverse .c-section__sub-heading {
    /* margin-bottom: 10.41667vw; */
    /* margin-bottom: 3.3em; */
  }

  .c-section2 {
    margin-bottom: 13.02083vw;
  }

  .c-section2__intro {
    padding: 5vw;
    font-size: 3rem;
  }

  .c-section2__contents {
    margin-bottom: 5.8125vw;
  }

  .c-section2__contents span:first-child {
    margin-bottom: 0;
    font-size: 2.4rem;
  }

  .c-section2__problems {
    margin: 0 0 20vw 0;
    padding: 5vw;
    background-size: auto 84.7vw;
  }

  .c-problems {
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .c-problems::after {
    width: 100%;
    height: 6.51042vw;
    background-size: 100%;
    bottom: -5.33854vw;
  }

  .c-problems__item {
    width: 33.20312vw;
    height: 37.10938vw;
    font-size: 1.8rem;
  }

  .c-section3 {
    padding-top: 10vw;
    background-size: 150%;
  }

  .c-point {
    padding: 5vw;
    flex-direction: column;
  }

  .c-point__card {
    width: 100%;
    margin-bottom: 5vw;
  }

  .c-point__card:not(:nth-child(3n)) {
    margin-right: 0;
  }

  .c-card__img {
    width: 100%;
  }

  .c-card__body {
    width: 100%;
    padding: 8vw 5vw;
  }

  .c-card-icon::after {
    width: 9.76562vw;
    height: 9.76562vw;
    bottom: -4.88281vw;
  }

  .c-media {
    margin-bottom: 5.20833vw;
    flex-direction: column-reverse;
  }

  .c-media--reverse {
    flex-direction: column-reverse;
  }

  .c-media--reverse .c-media__body {
    padding: 0;
  }

  .c-media__img-wrap {
    flex: 0 1 auto;
    margin-top: 3vw;
  }

  .c-media__img {
    width: 100%;
  }

  .c-media__body {
    flex: 0 1 auto;
    padding: 0;
  }

  .c-media__title {
    margin-bottom: 3vw;
  }

  .c-media__text {
    line-height: 1.8;
  }

  .c-consult {
    flex-direction: column-reverse;
    margin: 0;
    padding: 5vw;
  }

  .c-consult__bg {
    width: 100%;
    height: 0;
    margin-top: 5vw;
    padding-top: 66.89%;
  }

  .c-consult__body {
    width: 100%;
    padding: 0;
  }

  .c-consult__text {
    line-height: 1.67;
  }

  .c-consult__text:first-child {
    font-size: 2.4rem;
	  margin-bottom: 20px;
  }

  .c-section4 {
    padding-top: 5.20833vw;
    padding-bottom: 2.47396vw;
    background-position: center top;
    background-size: 83%;
  }

  .c-section4__inner {
    padding: 0 5vw;
  }

  .c-section4 .c-button {
    margin: 10.41667vw auto;
  }

  .c-section5 {
    margin-bottom: 6.25vw;
  }

  .c-section5__inner {
    padding: 10vw 5vw 5vw;
  }

  .c-section5 .c-section__heading {
    margin-bottom: 13.02083vw;
  }

  .c-work-lists {
    flex-direction: column;
  }

  .c-work-lists__item {
    width: 100%;
    margin-right: 0;
  }

  .c-work-lists__item:not(:last-child) {
    margin-bottom: 10vw;
  }

  .c-section6 {
    margin-bottom: 12.5vw;
    padding: 0;
  }

  .c-greeting {
    flex-direction: column;
  }

  .c-greeting__bg {
    width: 100%;
    padding-top: 70%;
    background-size: 100%;
  }

  .c-greeting__body {
    width: 100%;
    padding: 15vw 5vw;
  }

  .c-greeting__body::before {
    top: -2.4vw;
    left: 10vw;
    background-size: 90vw;
  }

  .c-greeting__text {
    line-height: 1.67;
  }

  .c-company-info {
    padding: 0 5vw;
    flex-direction: column;
  }

  .c-company-info dt {
    width: 100%;
    padding: 4vw 2vw 0;
    border: none;
  }

  .c-company-info dt:last-of-type {
    border: none;
  }

  .c-company-info dd {
    width: 100%;
    padding: 0 2vw 2vw;
    border-top: none;
    border-bottom: 2px solid #c9c9c9;
  }

  .c-area {
    margin: auto;
    background-size: contain;
    background-position: center;
  }

  .c-area__inner {
    padding: 5vw;
  }

  .c-area__intro {
    font-size: 2.5rem;
  }

  .c-area__item {
    max-width: 100%;
    justify-content: space-between;
  }

  .c-area__item li {
    width: 48%;
    margin-right: 0;
    margin-bottom: 3vw;
  }

  .c-contact-guide {
    background-size: 120%;
  }

  .c-contact-guide__inner {
    padding: 5vw;
  }

  .c-contact-guide__intro {
    margin: 5vw 0 15vw;
    font-size: 2.4rem;
    line-height: 1.5;
  }

  .c-contact-guide__text {
    font-size: 1.8rem;
    color: #333;
  }

  .c-contact-guide__ways {
    margin: 10vw 0;
  }

  .c-ways {
    flex-direction: column;
    color: #333;
  }

  .c-ways__item:first-child {
    margin-bottom: 10vw;
    max-width: none;
    border-right: none;
  }

  .c-ways__item:last-child {
    padding-left: 0;
  }

  .c-ways__heading {
    margin-bottom: 2vw;
    font-weight: bold;
  }

  .c-ways__tel {
    font-size: 2.5rem;
    text-align: center;
  }

  .c-ways__tel span {
    margin-left: 0.91146vw;
    top: 0.65104vw;
    font-size: 5.5rem;
  }

  .c-ways__button {
    width: 100%;
    margin-top: 0;
    padding: 5.20833vw 0;
    font-size: 2rem;
  }

  .c-footer {
    padding-top: 0;
    padding-bottom: 5vw;
  }

  .c-footer__map {
    margin: 0 auto 5.20833vw;
    padding-top: 52%;
    position: relative;
  }

  .c-footer__map iframe {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
  }
}

@media screen and (min-width: 1100px) {
  .c-catchphrase--first .c-catchphrase__row {
    font-size: 3.6vw;
  }

  .c-catchphrase--secondary .c-catchphrase__row {
    font-size: 1.2vw;
  }
}

@media screen and (min-width: 2000px) {
  .c-main-visual__slide {
    height: 900px;
  }

  .c-main-visual__contents {
    top: 244.792px;
  }

  .c-main-visual__button {
    width: 320px;
  }

  .c-catchphrase--first .c-catchphrase__row {
    font-size: 5.2rem;
  }

  .c-catchphrase--secondary {
    margin-bottom: 70px;
  }

  .c-catchphrase--secondary .c-catchphrase__row {
    font-size: 2.5rem;
  }
}

/*---------------------------------------------
    subpage_css
---------------------------------------------*/
.c-br_sp {
  display: none;
}

.c-key-v {
  width: 100%;
  height: 500px;
  object-fit: contain;
  background-image: url(../img_new/key_v.jpg);
}

.c-key-v .c-key_v_txt {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.5em;
  line-height: 1.8;
}

.c-key-v .c-key_v_txt .c-key_v_txt01 {
  font-size: 5.515rem;
}

.c-key-v .c-key_v_txt .c-key_v_txt02 {
  font-size: 3.008rem;
}

.c-bread_menu {
  font-size: 1.8rem;
  height: 100px;
  line-height: 100px;
  margin-bottom: 40px;
  display: flex;
  justify-content: flex-start;
}

.c-bread_menu li {
  position: relative;
  padding-right: 1.5em;
}

.c-bread_menu li::after {
  font-size: 1.2rem;
  font-weight: bold;
  position: absolute;
  right: 0.5em;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  content: "＞";
}

.c-bread_menu li:last-of-type:after {
  display: none;
}

/*------------------price---------------*/
.c-price_main {
  padding: 0;
}

.c-flex {
  display: flex;
  justify-content: center;
}

.c-subpage_under-line {
  display: inline-block;
  margin-bottom: 60px;
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.c-bg_area_blue {
  width: 100%;
  height: 360px;
  padding: 50px 60px;
  margin-bottom: 60px;
  background: #5dd2f7;
  position: relative;
}

.c-bg_area_blue::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 32px solid #5dd2f7;
  border-left: 42px solid transparent;
  border-right: 42px solid transparent;
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}

.c-bg_area_ttl {
  font-size: 2.4rem;
  margin-bottom: 30px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

.c-bg_area_inner {
  display: flex;
  justify-content: space-between;
}

.c-bg_area_inner {
  background: #fff;
}

.c-bg_area_inner.c-bg_area_inner02 {
  background: none;
  width: 980px;
}

.c-bg_area_inner01 .c-white_inner {
  width: 50%;
  padding-top: 32px;
  padding-bottom: 32px;
  color: #333;
}

.c-bg_area_inner02 .c-white_inner {
  width: 32.14%;
  padding-bottom: 32px;
  /*h4のため他か所で左余白*/
  color: #333;
  background: #fff;
}

.c-bg_area_inner .c-white_inner .c-inner_ttlh4 {
  width: 100%;
  height: 45px;
  line-height: 45px;
  margin-bottom: 32px;
  border-bottom: #55d1f7 1px solid;
  font-size: 2rem;
  text-align: center;
  font-weight: bold;
  color: #1cc0f3;
}

.c-bg_area_inner .c-white_inner p {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 32px;
  padding-left: 90px;
  position: relative;
  display: block;
  font-weight: bold;
}

.c-bg_area_inner02 .c-white_inner p {
  padding-left: 90px;
}

.c-bg_area_inner .c-white_inner p:last-of-type {
  margin-bottom: 0;
}

.c-bg_area_inner .c-white_inner p::before {
  width: 26px;
  height: 26px;
  background-image: url(../img/price/checkbox.png);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  display: block;
  position: absolute;
  left: 50px;
  top: 2px;
}

.c-sec_price01 .c-media,
.c-sec_price01 .c-media--reverse {
  align-items: center;
  margin-bottom: 0;
}

.c-price01_cont01 {
  padding-bottom: 100px;
}

.c-price01_cont02 {
  padding-top: 70px;
  padding-bottom: 100px;
  background: #f6f6f6;
}

.c-sec_price02 {
  padding-top: 65px;
  padding-bottom: 120px;
  background-image: url(../img/price/bg_sec02.png);
  background-position: right 0 bottom -90%;
  background-repeat: no-repeat;
}

.c-sec_price02 .c-section__heading {
  margin-bottom: 1em;
}

.c-price02_cont_p {
  width: 720px;
  font-size: 1.8rem;
  margin-bottom: 60px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: #333;
}

.c-price02_cont_p .c-text-maker {
  font-size: 2rem;
  font-weight: bold;
}

/*------------------------works--------------*/
.c-section__heading.work_section__heading {
  font-size: 3.6rem;
  text-align: left;
}

.c-works_tab_link {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.c-works_tab_link li {
  width: 352px;
  margin-right: 20px;
  margin-bottom: 20px;
}

.c-works_tab_link li:nth-of-type(3n) {
  margin-right: 0;
}

.c-tab_button {
  width: 100%;
  height: fit-content;
  word-break: break-all;
  line-height: 1.8;
  padding: 20px;
  padding-right: 2.5em;
  display: block;
  border: 2px solid #005134;
  color: #005134;
  font-size: 1.8rem;

  font-weight: bold;
  text-align: center;
  position: relative;
  z-index: 0;
}

.c-tab_button::after {
  content: '';
  width: 15px;
  height: 15px;
  border: 2px solid;
  border-color: transparent transparent #005134 #005134;
  display: block;
  position: absolute;
  right: 1em;
  top: 38%;
  transform: rotate(-45deg);
}

.c-tab_button.c-now_page {
  background: #005134;
  color: #fff;
}

.c-tab_button.c-now_page::after {
  border-color: transparent transparent #fff #fff;
}

.c-sec_works01 {
  margin-bottom: 120px;
}

.c-sectionSubPage_work-lists {
  margin-bottom: 90px;
  justify-content: space-between;
}

.c-work-lists__item_SubPage {
  width: 330px;
  height: 430px;
  padding-bottom: 25px;
}

.c-work-lists__item_SubPage .c-work-lists__img-wrap {
  padding-top: 84%;
  margin-bottom: 0;
  position: relative;
  z-index: 100;
}

.c-work-lists_span {
  max-width: 80%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  height: 28px;
  line-height: 28px;
  font-size: 1.4rem;
  padding: 0 10px;
  position: absolute;
  left: 0;
  bottom: 0;
  color: #fff;
  background: #c4dd6a;
  display: inline-block;
  z-index: 200;
}

.c-work-lists__place_SubPage {
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  height: 40px;
  line-height: 40px;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}

.c-sectionSubPage_work-lists::after {
  content: "";
  display: block;
  width: 30%;
}

.c-work-lists__title {
  max-height: 90px;
  overflow: hidden;
}

.wp-pagenavi {
  width: fit-content;
  color: #005134;
  font-weight: bold;
  margin-left: auto;
  margin-right: auto;
}

.wp-pagenavi .page,
.wp-pagenavi .current {
  width: 50px;
  height: 50px;
  line-height: 50px;
  margin-right: 20px;
  display: inline-block;
  text-align: center;
  font-size: 1.6rem;
  border: #005134 1px solid;
}

.wp-pagenavi .page.larger {
  /*margin-right: 0;*/
}

.wp-pagenavi .current {
  background: #005134;
  color: #fff;
}

.wp-pagenavi a.previouspostslink {
  margin-right: 1.5em;
  margin-left: 1em;
  position: relative;
}

.wp-pagenavi a.nextpostslink {
  margin-left: 1.5em;
  margin-right: 1em;
  position: relative;
}

.wp-pagenavi a.previouspostslink::after,
.wp-pagenavi a.nextpostslink::after {
  content: '';
  width: 20px;
  height: 20px;
  border: 3px solid;
  border-color: #005134 transparent transparent #005134;
  display: block;
  position: absolute;
  right: -0.5em;
  top: 20%;
  transform: rotate(-45deg);
}

.wp-pagenavi a.nextpostslink::after {
  border-color: transparent #005134 #005134 transparent;
  left: -0.5em;
}

/*------------------------works-article--------------*/
.c-sec_works-article01 {
  margin-bottom: 120px;
}

.c-secwork__heading {
  width: 100%;
  line-height: 1.5;
  font-size: 3.6rem;
  padding-left: 35px;
  margin-bottom: 0.69em;
  text-align: left;
  border-left: #005134 8px solid;
  position: relative;
  z-index: 100;
}

.c-secwork__heading::before {
  width: 8px;
  height: 7px;
  content: "";
  display: block;
  position: absolute;
  left: -8px;
  top: 0;
  z-index: 200;
  background: #E6AA00;
}

.c-article_samaname {
  text-align: right;
  max-width: 70%;
  word-break: break-all;
  margin-right: 0;
  margin-left: auto;
  margin-bottom: 35px;
}

.c-green_txtbox {
  padding: 0 10px;
  color: #fff;
  background: #c4dd6a;
  display: inline-block;
}

.c-article_samaname .c-green_txtbox {
  display: inline-block;
  line-height: 1.8;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 1.8rem;
}

.c-article_dl {
  width: 100%;
  font-size: 1.8rem;
  margin-bottom: 60px;
  letter-spacing: 0.05em;
  display: flex;
  flex-wrap: wrap;
  border: 2px solid #c9c9c9;
}

.c-article_dl dt,
.c-article_dl dd {
  padding: 1.1em 0.84em;
  line-height: 1.8;
  border-top: 2px solid #c9c9c9;
}

.c-article_dl dt:first-of-type,
.c-article_dl dd:first-of-type {
  border-top: none;
}

.c-article_dl dt {
  width: 30%;
  background: #f6f6f6;
}

.c-article_dl dd {
  width: 70%;
}

.c-befAfter_wrap {
  display: flex;
  justify-content: space-between
}

.c-befAfter_wrap .c-before_box {
  width: 29.1%;
}

.c-befAfter_wrap .c-after_box {
  width: 59.1%;
}

.c-befAfter_boxwidth p {
  width: 100%;
  margin-bottom: 15px;
}

.c-befAfter_boxwidth p .c-green_txtbox {
  height: 75px;
  line-height: 75px;
  font-size: 3.2rem;
  text-align: center;
  display: block;
}

.c-befAfter_img_wrap {
  padding-top: 100%;
  margin-bottom: 35px;
}

.c-befAft_arrow {
  width: 11%;
  position: relative;
}

.c-befAft_arrow::after {
  content: '';
  width: 40px;
  height: 40px;
  border: 10px solid;
  border-color: transparent #005134 #005134 transparent;
  display: block;
  position: absolute;
  right: 50px;
  top: 38%;
  transform: rotate(-45deg);
}

/*-----------------liminousポップアップ----------*/
.lum-lightbox-inner {
  width: 80% !important;
  margin-left: auto;
  margin-right: auto;
}

.lum-lightbox-inner img {
  position: relative;
  display: inline-block;
  object-fit: cover;
  width: 70%;
}

.c-work-lists__item_SubPage img {
  object-fit: cover;
  height: 100%;
}

.c-works-articlelists {
  justify-content: flex-start;
  flex-wrap: wrap;
}

.c-works-articlelists .c-work-lists__item_SubPage {
  width: 22.81%;
  margin-right: 32px;
  margin-bottom: 40px;
  height: fit-content;
  position: relative;
}

.c-works-articlelists .c-work-lists__item_SubPage:nth-of-type(4n) {
  margin-right: 0;
}

.c-works-articlelists .c-work-lists__img-wrap {
  padding-top: 96.5%;
}

.c-works-articlelists .c-megane {
  width: 25px;
  height: 25px;
  position: absolute;
  right: 0;
  bottom: 0;
  background: #333;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-befAft_ptxt {
  margin-bottom: 85px;
  line-height: 1.8;
}

.c-buttonR::after {
  content: '';
  width: 20px;
  height: 8px;
  margin-left: 0.6em;
  background-image: url(../img/icon-button-arrow_R.png);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  transition: background-image .25s;
  display: inline-block;
  position: relative;
  top: -0.2em;
  left: -7.5em;
}

.c-button:focus::after,
.c-buttonR:hover::after {
  background-image: url(../img_new/icon-button-arrow_R2.png);
}

/*------------------------entry--------------*/
.c-form_main {
  background: #f6f6f6;
  padding: 0;
}

.form-list {
  font-size: 1.8rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
  margin-bottom: 120px;
}

.form-list dl {
  display: flex;
  justify-content: space-between;
  justify-content: center;
  text-align: left;
  margin-bottom: 4.5rem;
  line-height: 2em;
}

.form-list dl dt {
  width: 27%;
  height: 70px;
  line-height: 70px;
  padding-right: 70px;
  font-weight: bold;
  position: relative;
}

.form-list dl dt.form_dt02 {
  line-height: 35px;
}

.form-list dl dt::after {
  font-size: 1.4rem;
  height: 30px;
  line-height: 30px;
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 10px;
  color: #fff;
  background: #c4dd6a;
  display: block;
  content: "必須";
}

.form-list dl dd {
  width: 73%;
}

/*---------------inputの大きさ---*/
.form-list dl dd input {
  width: 100%;
  height: 70px;
  line-height: 70px;
  display: inline-block;
  background: #fff;
  border: #b3b2b2 1px solid;
  font-size: 1.8rem;
  padding-left: 10px;
}

.form-list dl dd.check_field {
  padding-top: 15px;
}

.form-list dl dd label {
  margin-right: 50px;
  position: relative;
}

.form-list dl dd input[type="checkbox"],
.form-list .policy-check input[type="checkbox"] {
  display: none;
}

input[type=checkbox]+span {
  box-sizing: border-box;
  cursor: pointer;
  padding-left: 2em;
  position: relative;
  width: auto;
}

input[type=checkbox]+span::before {
  position: absolute;
  top: 60%;
  left: 5px;
  display: block;
  margin-top: -8px;
  width: 16px;
  height: 16px;
  content: '';
  border: #b3b2b2 1px solid;
}

input[type=checkbox]:checked+span::after {
  border-right: 2.5px solid #c4dd6a;
  border-bottom: 2.5px solid #c4dd6a;
  content: '';
  display: block;
  height: 10px;
  left: 10px;
  position: absolute;
  top: 35%;
  transform: rotate(45deg);
  width: 6px;
}

.form-list dl dd input.mail {
  margin-bottom: 20px;
}

p.mail_kakunin {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

/*-----------------textaera-------*/
.form-list dl dd .text_box {
  width: 100%;
  height: 350px;
  background: #fff;
  border: #b3b2b2 1px solid;
  padding: 10px;
}

.form-policy {
  flex-direction: column;
}

.form-policy .policy-list {
  display: block;
  width: 100%;
  border: #b3b2b2 1px solid;
  padding: 25px 40px;
  background: #fff;
  height: 300px;
  margin-bottom: 40px;
  overflow: auto;
}

.form-policy .policy-list p {
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 0.05em;
}

.txt_bold {
  font-weight: bold
}

.form-policy dd h4 {
  font-size: 2rem;
  margin-bottom: 1.8rem;
  font-weight: bold;
}

.policy-check {
  text-align: center;
  margin-bottom: 5.9rem;
}

.policy-check span {
  font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
  .c-br_sp {
    display: block;
  }

  .c-br_pc {
    display: none;
  }

  .c-key-v {
    height: 45vw;
    background-size: cover;
  }

  .c-key-v .c-key_v_txt {
    padding: 0 5vw;
  }

  .c-key-v .c-key_v_txt .c-key_v_txt01 {
    font-size: 2.8rem;
  }

  .c-key-v .c-key_v_txt .c-key_v_txt02 {
    font-size: 1.8rem;
  }

  .c-bread_menu {
    padding: 0 5vw;
    font-size: 1.2rem;
    height: 60px;
    line-height: 60px;
    margin-bottom: 10px;
  }

  .c-bread_menu li::after {
    font-size: 0.8rem;
    right: 0.8em;
  }



  .c-sec_sub {
    /*------------subpageスマホ左右余白------*/
    padding: 0 5vw;
  }

  /*------------------price---------------*/

  .c-subpage_under-line {
    margin-bottom: 6.51042vw;
    font-size: 2.6rem;
  }

  .c-bg_area_blue {
    width: 100%;
    height: fit-content;
    padding: 30px 20px;
    margin-bottom: 60px;
  }

  .c-bg_area_ttl {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .c-bg_area_inner.c-bg_area_inner01 {
    flex-direction: column;
  }

  .c-bg_area_inner.c-bg_area_inner02 {
    background: none;
    width: auto;
    flex-direction: column;
  }

  .c-bg_area_inner01 .c-white_inner {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .c-bg_area_inner01 .c-white_inner:last-of-type {
    padding-top: 0;
  }

  .c-bg_area_inner02 .c-white_inner {
    width: 100%;
    padding-bottom: 16px;
    margin-bottom: 10px;
  }

  .c-bg_area_inner .c-white_inner .c-inner_ttlh4 {
    width: 100%;
    height: 35px;
    line-height: 35px;
    margin-bottom: 16px;
    font-size: 1.8rem;
  }

  .c-bg_area_inner .c-white_inner p {
    font-size: 1.8rem;
    margin-bottom: 16px;
    padding-left: 50px;
  }

  .c-bg_area_inner02 .c-white_inner p {
    width: 55%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 50px;
  }

  .c-bg_area_inner .c-white_inner p:last-of-type {
    margin-bottom: 0;
  }

  .c-bg_area_inner .c-white_inner p::before {
    width: 20px;
    height: 20px;
    left: 10px;
  }

  .c-price01_cont01 {
    padding-bottom: 80px;
  }

  .c-price01_cont02 {
    padding-top: 60px;
    padding-bottom: 80px;
    background: #f6f6f6;
  }

  .c-sec_price02 {
    padding-top: 60px;
    padding-bottom: 100px;
    background-position: bottom;
  }

  .c-sec_price02 .c-section__heading {
    margin-bottom: 1em;
  }

  .c-price02_cont_p {
    width: 90%;
    font-size: 1.6rem;
    margin-bottom: 40px;
  }

  .c-price02_cont_p .c-text-maker {
    font-size: 1.8rem;
    font-weight: bold;
  }

  /*-------------------works-------------*/

  .c-works_tab_link {
    margin-bottom: 32px;
  }

  .c-works_tab_link li {
    width: calc(97%/3);
    margin-right: 5px;
    margin-bottom: 8px;
  }

  .c-works_tab_link li:nth-of-type(3n) {
    margin-right: 0;
  }

  .c-tab_button {
    min-height: 60px;
    padding: 5px;
    line-height: 1.5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
  }

  .c-tab_button::after {
    display: none;
  }

  .c-sec_works01 {
    margin-bottom: 30px;
  }

  .c-sectionSubPage_work-lists {
    margin-bottom: 45px;
    justify-content: space-between;
  }

  .c-work-lists__item_SubPage {
    width: 100%;
    height: fit-content;
  }

  .c-work-lists__item_SubPage .c-work-lists__img-wrap {
    padding-top: 66.66%;
  }

  .c-work-lists_span {
    height: 30px;
    line-height: 30px;
  }

  .c-work-lists__place_SubPage {
    height: 30px;
    line-height: 30px;
    font-size: 1.4rem;
  }

  .c-work-lists__item_SubPage {
    width: 100%;
    height: fit-content;
    padding-bottom: 25px;
  }

  .c-work-lists__item_SubPage .c-work-lists__img-wrap {
    padding-top: 66.66%;
  }

  .c-work-lists_span {
    height: 30px;
    line-height: 30px;
  }

  .c-work-lists__place_SubPage {
    height: 30px;
    line-height: 30px;
    font-size: 1.4rem;
  }

  .wp-pagenavi .page,
  .wp-pagenavi .current {
    width: 35px;
    height: 35px;
    line-height: 35px;
    margin-right: 12px;
    font-size: 1.4rem;
  }

  .wp-pagenavi a.previouspostslink::after,
  .wp-pagenavi a.nextpostslink::after {
    top: 10%;
  }

  /*------------------------works-article--------------*/
  .c-sec_works-article01 {
    margin-bottom: 60px;
  }

  .c-secwork__heading {
    font-size: 2.4rem;
    padding-left: 10px;
  }

  .c-article_samaname {
    max-width: 100%;
    margin-bottom: 10px;
  }

  .c-article_samaname .c-green_txtbox {
    font-size: 1.4rem;
  }

  .c-article_dl {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }

  .c-article_dl dt {
    width: 35%;
  }

  .c-article_dl dd {
    width: 65%;
  }

  .c-befAfter_wrap .c-before_box {
    width: 38%;
  }

  .c-befAfter_wrap .c-after_box {
    width: 49%;
  }

  .c-befAfter_boxwidth p {
    width: 100%;
    margin-bottom: 10px;
  }

  .c-befAfter_boxwidth p .c-green_txtbox {
    height: 35px;
    line-height: 35px;
    font-size: 2.4rem;
    text-align: center;
    display: block;
  }

  .c-befAfter_img_wrap {
    padding-top: 100%;
    margin-bottom: 20px;
  }

  .c-befAft_arrow {
    width: 8%;
  }

  .c-befAft_arrow::after {
    width: 25px;
    height: 25px;
    border: 5px solid;
    border-color: transparent #005134 #005134 transparent;
    right: 10px;
    top: 38%;
    transform: rotate(-45deg);
  }

  /*-----------------liminousポップアップ----------*/
  .zoom_li {
    cursor: pointer;
    ;
  }

  .lum-lightbox-inner img {
    width: 100%;
  }

  .lum-next-button {
    right: 2px;
  }

  .lum-previous-button {
    left: 2px;
  }

  .c-works-articlelists {
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }

  .c-works-articlelists .c-work-lists__item_SubPage {
    width: 48%;
    height: fit-content;
    position: relative;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .c-works-articlelists .c-work-lists__img-wrap {
    padding-top: 96.5%;
  }

  .c-works-articlelists .c-megane {
    width: 25px;
    height: 25px;
  }

  .c-befAft_ptxt {
    margin-bottom: 40px;
  }

  /*------------------------entry--------------*/
  .form-list {
    font-size: 1.6rem;
    margin-top: 0;
    margin-bottom: 60px;
  }

  .form-list dl {
    margin-bottom: 2.25rem;
    flex-direction: column;
  }

  .form-list dl dt {
    width: fit-content;
    height: 45px;
    line-height: 45px;
    font-size: 1.8rem;
    padding-top: 0;
    margin-bottom: 5px;
    padding-right: 0;
    display: inline-block;
  }

  .form-list dl dt.form_dt02 {
    height: 45px;
    line-height: 45px;
  }

  .form-list dl dt::after {
    font-size: 1.4rem;
    height: 25px;
    line-height: 25px;
    position: absolute;
    right: 50%;
    right: -8rem;
  }

  .form-list dl dd {
    width: 100%;
  }

  .form-list dl dd.check_field {
    display: flex;
    flex-wrap: wrap;
    padding-top: 0;
  }

  .check_field .mwform-checkbox-field {
    width: 50%;
    min-width: fit-content;
    display: inline-block;
    margin-right: 0;
  }

  input[type=checkbox]+span {
    font-size: 1.6rem;
  }

  input[type=checkbox]+span::before {
    left: 0;
  }

  input[type=checkbox]:checked+span::after {
    left: 5px;
  }

  /*---------------inputの大きさ---*/
  .form-list dl dd input {
    height: 45px;
    line-height: 45px;
    font-size: 1.6rem;
    padding-left: 10px;
  }

  .form-list dl dd label {
    font-size: 1.4rem;
    margin-right: 30px;
    position: relative;
  }

  .form-list dl dd input.mail {
    margin-bottom: 15px;
  }

  p.mail_kakunin {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }

  /*-----------------textaera-------*/
  .form-list dl dd .text_box {
    height: 150px;
  }

  .form-policy .policy-list {
    padding: 10px 15px;
    height: 180px;
    margin-bottom: 25px;
  }

  .form-policy .policy-list p {
    font-size: 1.6rem;
  }

  .policy-check {
    text-align: center;
    margin-bottom: 25px;
  }

  .policy-check span {
    font-size: 1.6rem;
  }

  .c-proof {
    margin-bottom: 12.5vw;
  }

  .c-section7__company-info {
    margin-bottom: 5vw;
  }

}


.c-work-lists__img {
  width: 100% !important;
  height: auto !important;
}

@media screen and (max-width: 768px) {
  .mw_wp_form .horizontal-item+.horizontal-item {
    margin-left: 0px !important;
  }

}

.kanryou {
  padding-bottom: 100px;
}

.footer__logoText {
  line-height: 2.2;
  font-weight: 700;
  font-size: 2.4rem;
}

.footer__logoTextSmall {
  line-height: 2.2;
  font-weight: 700;
  font-size: 2rem;
  padding-right: .6rem;
}

.c-header__home-link {
  width: 228px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .c-header__home-link {
    width: 300px;
  }
}

.header__logoWrap {
  display: flex;
  flex-direction: column;
  margin-left: 1rem;
}

.c-header__logo {
  top: 0;
}

.header__logoText {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
}

.header__logoTextSmall {
  font-size: 1.7rem;
  font-weight: 700;
}

.c-section4 {
  padding-top: 100px;
  padding-bottom: 50px;
  margin-bottom: 84px;
}

.c-media {
  margin-bottom: 88px;
}

.c-media__text span {
  display: block;
  margin-bottom: 1em;
}

.c-section2 {
  margin-bottom: 150px;
}

.c-section3 {
  padding-bottom: 120px;
}

.c-section5 {
  margin-bottom: 100px;
}

.section7 {
  padding-top: 77px;
  background-color: #f6f6f6;
}

.section7__area {
  background-color: #fff;
}

.c-area__intro span {
  font-size: 1.8rem;
}

.c-bg_gray dl {
  display: flex;
}

.item_txtList {
  /* display: inline; */
}

.item_txtList+dd {
  margin-left: 1em;
  /* display: inline; */
}

.c-item_img img {
  border-radius: 8px;
}

.c-equipment .c-item_wrap {
  margin-bottom: 0px;
}

.c-equipment+.c-equipment {
  margin-top: 100px;
}

.c-bg_gray {
  margin-bottom: 0;
}

.c-equipment.c-rev .c-item_wrap {
  flex-direction: row-reverse;
}

@media screen and (max-width: 768px) {
  .c-equipment.c-rev .c-item_wrap {
    flex-direction: column;
  }
}

.c-equipment.c-rev .c-flex .c-item_img {
  padding-right: 0;
  padding-left: 60px;
}

@media screen and (max-width: 768px) {
  .c-equipment.c-rev .c-flex .c-item_img {
    padding-right: 0;
    padding-left: 0;
  }
}

.c-equipment.c-last {
  margin-bottom: 160px;
}

.c-work-lists__item_SubPage .c-work-lists__img-wrap {
  padding-top: 64%;
}

.c-work-lists__title {
  margin-top: 18px;
}


input[type=checkbox]:checked+span::after {
  border-color: #005134;
}

/* slick初期化前は隠す（縦並びの一瞬を消す） */
.js-slick {
  opacity: 0;
  visibility: hidden;
}

/* 初期化後は表示 */
.js-slick.slick-initialized {
  opacity: 1;
  visibility: visible;
  transition: opacity .2s ease;
}

.c-catchphrase__row--sp {
  margin-left: -.4em;
}
.lts02{
  letter-spacing: -.02em;
}

@media screen and (max-width: 768px) {
  .c-header__logo {
    width: 14.32292vw;
  }

  .c-catchphrase__row--sp {
    margin-left: 0;
  }

  .c-main-visual {
    margin-bottom: 10.2vw;
  }

  .c-section4 {
    padding-top: 60px;
    padding-bottom: 2.47396vw;
    margin-bottom: 60px;
    background-position: center 20px;
  }

  .c-media {

    margin-bottom: 77px;
  }

  .c-section2 {

    margin-bottom: 30px;
  }

  .c-section3 {
    padding-top: 13vw;
    padding-bottom: 60px;
  }

  .c-section5__work-lists {
    margin-bottom: 64px;
  }

  .c-section5 {
    margin-bottom: 10px;
  }

  .section7 {
    padding-top: 60px;
  }

  .c-section7__company-info {
    margin-bottom: 19vw;
  }

  .c-ways__heading {
    color: #fff;
  }

  .c-contact-guide__ways {
    margin: 6vw 0;
  }

  .c-ways__tel {
    color: #fff;
  }

  .c-section5 .c-section__heading {
    margin-bottom: 7.02083vw;
  }

  .sp-k {
    color: #222;
  }

  .c-section--title-reverse .c-section__heading {
    margin-bottom: 2em;
  }
}







.entry-content {
  margin-top: 48px;
  margin-bottom: 100px;
}

.entry-content h1 b,
.entry-content h2 b,
.entry-content h3 b,
.entry-content h4 b,
.entry-content h5 b,
.entry-content h6 b,
.entry-content h1 strong,
.entry-content h2 strong,
.entry-content h3 strong,
.entry-content h4 strong,
.entry-content h5 strong,
.entry-content h6 strong {
  font-size: 500;
  font-weight: inherit;
}

.entry-content b,
.entry-content strong {
  font-weight: 500;
}

/* ---------------------------------
 * 記事コンテンツ共通（reset.css 想定）
 * --------------------------------- */
.entry-content {
  font-size: 16px;
  line-height: 1.8;
  /* color: #222; */
  /* padding-top: 16rem;
  padding-bottom: 10rem; */
}

.entry-content h2:first-child {
  margin-top: 0 !important;
}

.entry-content h1:first-child {
  margin-top: 0 !important;
}

@media screen and (max-width: 768px) {
  .entry-content {
    padding-top: 6rem;
  }
}

/* 段落 */
.entry-content p {
  margin: 0 0 1em;
  line-height: 1.75;
}

/* 強調・インライン要素 */
.entry-content strong {
  font-weight: 700;
}

.entry-content em {
  font-style: italic;
}

.entry-content mark {
  background: #fff9c4;
}

.entry-content sup,
.entry-content sub {
  font-size: 0.75em;
  line-height: 1;
}

/* 見出し */
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  font-weight: 700;
  line-height: 1.4;
  margin: 2.2em 0 1em;
}

/* レベル別デザイン */
.entry-content h1 {
  font-size: 2em;
  border-bottom: 2px solid #eee;
  padding-bottom: 0.6em;
}

.entry-content h2 {
  font-size: 1.6em;
  padding-left: 1rem;
  border-left: 8px solid #005134;
}

.entry-content h3 {
  font-size: 1.3em;
  position: relative;
}

.entry-content h4 {
  font-size: 1.15em;
}

.entry-content h5,
.entry-content h6 {
  font-size: 1em;
}

/* リスト（resetで消えている前提） */
.entry-content ul,
.entry-content ol {
  margin: 0 0 1.6em;
}

.entry-content ul {
  list-style: disc;
}

.entry-content ol {
  list-style: decimal;
}

.entry-content li {
  margin: 0.25em 0;
  line-height: 1.7;
}

/* ネストしたリスト */
.entry-content li ul,
.entry-content li ol {
  margin-top: 0.4em;
}

/* 定義リスト */
.entry-content dl {
  margin: 0 0 1.6em;
}

.entry-content dt {
  font-weight: 700;
  margin-top: 0.8em;
}

.entry-content dd {
  margin: 0.2em 0 0.8em 1.2em;
}

/* 引用 */
.entry-content blockquote {
  margin: 0 0 1.8em;
  padding: 1em 1.2em;
  border-left: 4px solid #ccc;
  background: #f9f9f9;
  color: #555;
}

.entry-content blockquote p:last-child {
  margin-bottom: 0;
}

/* 画像・figure */
.entry-content img {
  max-width: 100%;
  height: auto;
  display: block;
}

.entry-content figure {
  margin: 0 0 1.6em;
}

.entry-content figcaption {
  margin-top: 0.4em;
  font-size: 0.85em;
  color: #777;
  /* text-align: center; */
}

/* WP標準 align クラス */
.entry-content .aligncenter {
  margin-left: auto;
  margin-right: auto;
}

.entry-content .alignleft {
  float: left;
  margin: 0 1em 1em 0;
}

.entry-content .alignright {
  float: right;
  margin: 0 0 1em 1em;
}

/* キャプション */
.entry-content .wp-caption {
  margin: 0 0 1.6em;
  text-align: center;
}

.entry-content .wp-caption img {
  margin: 0;
}

.entry-content .wp-caption-text {
  font-size: 0.85em;
  color: #777;
  margin-top: 0.4em;
}

/* テーブル（reset で border 等が消えてる想定） */
.entry-content table {
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0 0 1.8em;
  width: 100%;
}

.entry-content th,
.entry-content td {
  border: 1px solid #ddd;
  padding: 0.6em 0.8em;
  vertical-align: top;
  line-height: 1.7;
}

.entry-content th {
  background: #f5f5f5;
  font-weight: 700;
}

/* コード・pre */
.entry-content code {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
  font-size: 0.9em;
  padding: 0.15em 0.35em;
  background: #f5f5f5;
  border-radius: 3px;
}

.entry-content pre {
  font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
  font-size: 0.9em;
  padding: 1em;
  margin: 0 0 1.8em;
  background: #222;
  color: #f8f8f2;
  overflow-x: auto;
  border-radius: 4px;
}

.entry-content pre code {
  padding: 0;
  background: none;
  color: inherit;
}

/* リンク */
.entry-content a {
  color: #0066cc;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.entry-content a:hover {
  text-decoration-thickness: 2px;
}

/* 水平線 */
.entry-content hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 2.4em 0;
}

/* クリア（float画像の後ろで崩れ防止） */
.entry-content::after {
  content: "";
  display: block;
  clear: both;
}

/* ---------------------------
 * リスト基本
 * --------------------------- */
.entry-content ul,
.entry-content ol {
  margin: 0 0 1.6em;
  padding-left: 1.6em;
}

@media screen and (max-width: 768px) {

  .entry-content ul,
  .entry-content ol {
    padding-left: 1em;
  }
}

.entry-content ul {
  list-style: disc;
}

.entry-content ol {
  list-style: decimal;
}

.entry-content li {
  margin: 0.25em 0;
  line-height: 1.7;
}

/* ---------------------------
 * ネストしたリスト（ul / ol）
 * --------------------------- */
.entry-content li ul,
.entry-content li ol {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  padding-left: 1.4em;
}

/* 第2階層は "circle" / "lower-alpha" */
.entry-content ul ul {
  list-style: circle;
}

.entry-content ol ol {
  list-style: lower-alpha;
}

/* 第3階層は "square" / "lower-roman" */
.entry-content ul ul ul {
  list-style: square;
}

.entry-content ol ol ol {
  list-style: lower-roman;
}

/* リスト内の見出し（h3/h4など）が潰れないように補正 */
.entry-content li h3,
.entry-content li h4,
.entry-content li h5,
.entry-content li h6 {
  margin-top: 1.2em;
}

.single-wrap {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.single-wrap .single-img {
  text-align: center;
  max-width: 800px;
}

.single-wrap .single-title h1 {
  border: none;
  padding-left: 0;
  margin-bottom: 0;
}

.single-wrap .single-cat {
  background-color: #0066cc;
  color: #fff;
  font-weight: 500;
  height: 2em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 0.5em;
  padding-right: 0.5em;
  display: flex;
  align-items: center;
}