/*
Theme Name: eco-theme
Author: ryo saya
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
body {
  position: relative;
  width: 100%;
  background: #fff;
  color: #111;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
}

a {
  color: #111;
  text-decoration: none;
  letter-spacing: 2px;
}

main {
  width: 100%;
  position: relative;
}

ul {
  padding: 0;
  margin: 0;
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input, button, textarea, select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
li {
  list-style: none;
}

.l-header {
  max-width: 540px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.l-header img {
  width: 100%;
}
.l-header-banner {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 45%;
  width: 53%;
}

.l-loading.loaded {
  visibility: hidden;
  opacity: 0;
}

.l-loading {
  padding: 0;
  margin: 0 auto;
  max-width: 540px;
  width: 100%;
  height: 100vh;
  transition: all 0.3s;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #f6c1d8;
}
.l-loading .l-loading__container {
  width: 200px;
  height: 60px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.l-loading .l-loading__container span {
  position: absolute;
  top: 75px;
  font-family: "Lato";
  font-size: 20px;
  letter-spacing: 12px;
  color: #fff;
  left: 15%;
}

.circle {
  width: 20px;
  height: 20px;
  position: absolute;
  border-radius: 50%;
  background-color: #fff;
  left: 15%;
  transform-origin: 50%;
  animation: circle 0.5s alternate infinite ease;
}

@keyframes circle {
  0% {
    top: 60px;
    height: 5px;
    border-radius: 50px 50px 25px 25px;
    transform: scaleX(1.7);
  }
  40% {
    height: 20px;
    border-radius: 50%;
    transform: scaleX(1);
  }
  100% {
    top: 0%;
  }
}
.circle:nth-child(2) {
  left: 45%;
  animation-delay: 0.2s;
}

.circle:nth-child(3) {
  left: auto;
  right: 15%;
  animation-delay: 0.3s;
}

.shadow {
  width: 20px;
  height: 4px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 62px;
  transform-origin: 50%;
  z-index: -1;
  left: 15%;
  filter: blur(1px);
  animation: shadow 0.5s alternate infinite ease;
}

@keyframes shadow {
  0% {
    transform: scaleX(1.5);
  }
  40% {
    transform: scaleX(1);
    opacity: 0.7;
  }
  100% {
    transform: scaleX(0.2);
    opacity: 0.4;
  }
}
.shadow:nth-child(4) {
  left: 45%;
  animation-delay: 0.2s;
}

.shadow:nth-child(5) {
  left: auto;
  right: 15%;
  animation-delay: 0.3s;
}

footer {
  max-width: 540px;
  width: 100%;
  margin: 0 auto;
  background: #fff;
}
footer .l-footer__container {
  text-align: center;
  color: #fff;
	padding-top: 10px;
}
footer .l-footer__container .l-footer__logo {
  max-width: 200px;
  width: 70%;
  margin: 0 auto;
}
footer .l-footer__container .l-footer__logo img {
  width: 100%;
}
footer .l-footer__container p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}
footer .l-footer__container p a {
  color: #333;
}
footer .l-footer__container .l-footer__bottom {
  padding: 10px 0;
  margin-top: 20px;
  background-color: #fadde9;
}
footer .l-footer__container .l-footer__bottom p {
  font-size: 12px;
  color: #222;
  font-weight: 400;
}

@media (max-width: 540px) {
  footer {
    width: 100%;
  }
}
.js-fadeIn {
  transform: translateY(30px);
  opacity: 0;
}

.js-slideLeft {
  transform: translateX(40px);
}

.js-slideRight {
  transform: translateX(20px);
}

.c-faq__item__q {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.7;
  position: relative;
  display: block;
  padding: 20px 50px 15px 60px;
  transition: all 0.3s;
}
.c-faq__item__q::before, .c-faq__item__q::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background-color: #040404;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.c-faq__item__q::before {
  transform: translate(0, -50%) rotate(-180deg);
}
.c-faq__item__q::after {
  transform: translate(0, -50%) rotate(-90deg);
}
.c-faq__item__q span::before {
  content: "Q";
  font-family: "REM", sans-serif;
  font-size: 20px;
  line-height: 20px;
  text-align: center;
  letter-spacing: 1px;
  position: absolute;
  left: 20px;
  top: 25px;
  border-radius: 5px;
  color: #fff;
  width: 20px;
  height: 20px;
  font-weight: bold;
  z-index: 2;
}
.c-faq__item__q span::after {
  content: "";
  position: absolute;
  left: 11px;
  top: 17px;
  background-color: #339063;
  border-radius: 18px;
  width: 36px;
  height: 36px;
  z-index: 1;
}

.c-faq__item__a {
  height: 0;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s;
}
.c-faq__item__a .c-faq__item__a_container {
  font-size: 16px;
  line-height: 1.8;
  position: relative;
  padding: 20px 50px 15px 60px;
}
.c-faq__item__a .c-faq__item__a_container p {
  line-height: 1.7;
  font-weight: 500;
}
.c-faq__item__a .c-faq__item__a_container::before {
  content: "A";
  font-family: "REM", sans-serif;
  font-size: 20px;
  line-height: 20px;
  text-align: center;
  position: absolute;
  left: 20px;
  top: 25px;
  border-radius: 5px;
  color: #fff;
  width: 20px;
  height: 20px;
  font-weight: bold;
  z-index: 2;
}
.c-faq__item__a .c-faq__item__a_container::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 17px;
  background-color: #fa6f09;
  border-radius: 18px;
  width: 36px;
  height: 36px;
  z-index: 1;
}

.p-faq__item .c-faq__item__q.j_accordion::before {
  display: none;
}
.p-faq__item .c-faq__item__q.j_accordion::after {
  transform: rotate(180deg);
}
.p-faq__item .c-faq__item__a.j_accordion {
  transition: all 0.3s;
}

.u-request__form {
  width: 100%;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
  padding-bottom: 60px;
}
.u-request__form_dl {
  display: block;
  margin-bottom: 30px;
}
.u-request__form_dl .u-request__form_dt {
  font-size: 18px;
  font-weight: 400;
  line-height: 2;
  margin-bottom: 10px;
  letter-spacing: 0px;
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
}
.u-request__form_dl .u-request__form_dt .required {
  display: inline-block;
  margin-left: 10px;
  padding: 0px 6px;
  background-color: #BF3B34;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  transform: translateY(-2px);
}
.u-request__form_dl .u-request__form_dt .any {
  display: inline-block;
  margin-left: 10px;
  padding: 0px 6px;
  background-color: #737373;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  transform: translateY(-2px);
}
.u-request__form_dl .u-request__form_dd {
  width: 100%;
}
.u-request__form_dl .u-request__form_dd .content_liner {
  width: 100%;
  padding: 16px 16px;
  border: none;
  border-radius: 8px;
  background-color: #fff;
  font-size: 16px;
  box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.2);
}
.u-request__form_dl .u-request__form_dd .content_liner::-moz-placeholder {
  color: #bdbdbd;
}
.u-request__form_dl .u-request__form_dd .content_liner::placeholder {
  color: #bdbdbd;
}
.u-request__form_dl .u-request__form_dd .content_box {
  width: 100%;
  height: 140px;
  padding: 16px;
  border-radius: 8px;
  background-color: #fff;
  font-size: 16px;
  border: none;
  box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.2);
}
.u-request__form_dl .u-request__form_dd .content_box::-moz-placeholder {
  color: #bdbdbd;
}
.u-request__form_dl .u-request__form_dd .content_box::placeholder {
  color: #bdbdbd;
}
.u-request__form_dl .u-request__form_dd .half-liner.content_liner {
  max-width: 360px;
  width: 100%;
}
.u-request__form_dl .u-request__form_dd .u-request__select {
  position: relative;
  max-width: 360px;
  width: 100%;
}
.u-request__form_dl .u-request__form_dd .u-request__select::before {
  content: "";
  position: absolute;
  top: 30px;
  right: 7%;
  transform: translateY(-50%);
  display: block;
  border-top: 12px solid #339063;
  border-right: 10px solid transparent;
  border-bottom: 0 transparent;
  border-left: 10px solid transparent;
  width: 0;
  height: 0;
  z-index: 1;
}
.u-request__form_dl .u-request__form_dd .u-request__select .select_form {
  width: 100%;
  padding: 16px;
  border-radius: 8px;
  background-color: #fff;
  font-size: 15px;
  border: 2px solid #339063;
  color: #222;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.u-request__form_btn {
  width: 100%;
  text-align: center;
  margin-top: 40px;
}
.u-request__form_btn_box {
  display: inline-block;
  max-width: 350px;
  width: 80%;
  margin: 0 auto;
  transition: all ease 0.3s;
  background: #f98b50;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 6px solid #fa6211;
  border-radius: 50px;
  color: #fff;
  padding: 15px 0;
  font-weight: 600;
  font-size: 18px;
  position: relative;
  letter-spacing: 1px;
}
.u-request__form_btn_box::after {
  content: "";
  position: absolute;
  transform: translateY(-50%);
  top: 53%;
  left: 90%;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 10px solid #fff;
  border-right: 0;
}
.u-request__form_btn_box:hover {
  opacity: 0.9;
}
@keyframes reflection {
  0% {
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    transform: scale(0) rotate(45deg);
    opacity: 0.25;
  }
  81% {
    transform: scale(4) rotate(45deg);
    opacity: 0.4;
  }
  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
.p-contact__wrapper {
  width: 540px;
  margin: 0 auto;
  padding: 20px 10px;
}
.p-contact__wrapper .p-contact__head {
  font-size: 24px;
  text-align: center;
  line-height: 1.8;
  margin-bottom: 30px;
}
.p-contact__wrapper .u-contact-btn {
  text-align: center;
}

.first_section {
  max-width: 540px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.first_section img {
  width: 100%;
}
.first_section .first-flex {
  position: absolute;
  width: 90%;
  display: flex;
  justify-content: space-between;
  top: 68%;
  left: 5%;
}
.first_section .first-flex .first-badge {
  width: 30.5%;
}

.first_bottom {
  max-width: 540px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.first_bottom img {
  width: 100%;
}

.cv-area {
  max-width: 540px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.cv-area img {
  width: 100%;
}
.cv-area-line {
  position: absolute;
  top: 12%;
  left: 5%;
  width: 90%;
}
.cv-area-line a {
  display: inline-block;
  width: 100%;
  transition: all ease 0.3s;
  position: relative;
  overflow: hidden;
  border-radius: 50px;
}
.cv-area-line a:hover {
  opacity: 0.8;
}
.cv-area-line a::before {
  content: "";
  display: block;
  height: 100%;
  width: 10%;
  position: absolute;
  top: -50%;
  left: -78px;
  background-color: #fff;
  opacity: 0;
  transform-origin: left bottom;
  transform: rotate(45deg);
  animation: reflection 3s ease-in-out infinite;
}
.cv-area-contact {
  position: absolute;
  top: 47%;
  left: 5%;
  width: 90%;
}
.cv-area-contact a {
  display: inline-block;
  width: 100%;
  transition: all ease 0.3s;
  position: relative;
  overflow: hidden;
  border-radius: 50px;
}
.cv-area-contact a::before {
  content: "";
  display: block;
  height: 100%;
  width: 10%;
  position: absolute;
  top: -50%;
  left: -78px;
  background-color: #fff;
  opacity: 0;
  transform-origin: left bottom;
  transform: rotate(45deg);
  animation: reflection 3s ease-in-out infinite;
}

.voice-section {
  max-width: 540px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.voice-section img {
  width: 100%;
}
.voice-section-item-01 {
  position: absolute;
  top: 27%;
  left: 5%;
  width: 90%;
}
.voice-section-item-02 {
  position: absolute;
  top: 51.5%;
  left: 5%;
  width: 90%;
}
.voice-section-item-03 {
  position: absolute;
  top: 74.5%;
  left: 5%;
  width: 90%;
}

.worries-section {
  max-width: 540px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.worries-section img {
  width: 100%;
}
.worries-section-item {
  position: absolute;
  top: 27%;
  left: 5%;
  width: 90%;
}

.reason-section {
  max-width: 540px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.reason-section img {
  width: 100%;
}
.reason-section-name {
  position: absolute;
  top: -30px;
  left: 5%;
  width: 20%;
}
.reason-section-item-01 {
  position: absolute;
  top: 6.8%;
  left: 5%;
  width: 90%;
}
.reason-section-item-02 {
  position: absolute;
  top: 28.1%;
  left: 5%;
  width: 90%;
}
.reason-section-item-03 {
  position: absolute;
  top: 52.3%;
  left: 5%;
  width: 90%;
}
.reason-section-item-04 {
  position: absolute;
  top: 76.5%;
  left: 5%;
  width: 90%;
}

.package-section {
  max-width: 540px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.package-section img {
  width: 100%;
}
.package-section-item-01 {
  position: absolute;
  top: 11.2%;
  left: 5%;
  width: 90%;
}
.package-section-item-02 {
  position: absolute;
  top: 55%;
  left: 5%;
  width: 90%;
}

.price-section {
  max-width: 540px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.price-section img {
  width: 100%;
}
.price-section-item-01 {
  position: absolute;
  top: 2.6%;
  left: 5%;
  width: 90%;
}
.price-section-item-02 {
  position: absolute;
  top: 46%;
  left: 5%;
  width: 90%;
}

.works-section {
  max-width: 540px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.works-section img {
  width: 100%;
}
.works-section-item-01 {
  position: absolute;
  top: 9.6%;
  left: 5%;
  width: 90%;
}
.works-section-item-02 {
  position: absolute;
  top: 42%;
  left: 5%;
  width: 90%;
}
.works-section-item-03 {
  position: absolute;
  top: 66.9%;
  left: 5%;
  width: 90%;
}

.option-section {
  max-width: 540px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.option-section img {
  width: 100%;
}
.option-section-item {
  position: absolute;
  top: 17.1%;
  left: 5%;
  width: 90%;
}
.righting-section {
  max-width: 540px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.righting-section img {
  width: 100%;
}
.righting-section-item {
  position: absolute;
  top: 9.5%;
  left: 5%;
  width: 90%;
}

.flow-section {
  max-width: 540px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.flow-section img {
  width: 100%;
}
.flow-section-item-01 {
  position: absolute;
  top: 4.6%;
  left: 25%;
  width: 70%;
}
.flow-section-item-02 {
  position: absolute;
  top: 18.4%;
  left: 25%;
  width: 70%;
}
.flow-section-item-03 {
  position: absolute;
  top: 32.2%;
  left: 25%;
  width: 70%;
}
.flow-section-item-04 {
  position: absolute;
  top: 46%;
  left: 25%;
  width: 70%;
}
.flow-section-item-05 {
  position: absolute;
  top: 58.4%;
  left: 25%;
  width: 70%;
}
.flow-section-item-06 {
  position: absolute;
  top: 72.3%;
  left: 25%;
  width: 70%;
}
.flow-section-item-07 {
  position: absolute;
  top: 85.4%;
  left: 25%;
  width: 70%;
}

.p-faq__wrapper {
  max-width: 540px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  background: #fff;
  padding-bottom: 60px;
}
.p-faq__wrapper .p-lead__head {
  width: 60%;
  padding: 60px 0 40px;
  margin: 0 auto;
}
.p-faq__wrapper .p-lead__head img {
  width: 100%;
}
.p-faq__wrapper .p-faq__container {
  position: relative;
  width: 95%;
  margin: 0 auto;
}
.p-faq__wrapper .p-faq__container .p-faq__item {
  border-bottom: 1px solid #b0b0b0;
  cursor: pointer;
}

.message-section {
  max-width: 540px;
  width: 100%;
  margin: -85px auto 0;
  position: relative;
}
.message-section img {
  width: 100%;
}
.message-section-tel {
  position: absolute;
  top: 36%;
  left: 5%;
  width: 90%;
}
.message-section-tel a {
  display: inline-block;
  width: 100%;
  transition: all ease 0.3s;
  position: relative;
  overflow: hidden;
  border-radius: 50px;
}
.message-section-tel a:hover {
  opacity: 0.8;
}
.message-section-tel a::before {
  content: "";
  display: block;
  height: 100%;
  width: 10%;
  position: absolute;
  top: -50%;
  left: -78px;
  background-color: #fff;
  opacity: 0;
  transform-origin: left bottom;
  transform: rotate(45deg);
  animation: reflection 3s ease-in-out infinite;
}
.message-section-line {
  position: absolute;
  top: 60.5%;
  left: 5%;
  width: 90%;
}
.message-section-line a {
  display: inline-block;
  width: 100%;
  transition: all ease 0.3s;
  position: relative;
  overflow: hidden;
  border-radius: 50px;
}
.message-section-line a:hover {
  opacity: 0.8;
}
.message-section-line a::before {
  content: "";
  display: block;
  height: 100%;
  width: 10%;
  position: absolute;
  top: -50%;
  left: -78px;
  background-color: #fff;
  opacity: 0;
  transform-origin: left bottom;
  transform: rotate(45deg);
  animation: reflection 3s ease-in-out infinite;
}

.p-contact-section {
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  position: relative;
  background-color: #edfeed;
}
.p-contact-section-inner {
  width: 90%;
  margin: 0 auto;
  position: relative;
  padding-top: 40px;
}
.p-contact-section-inner-lead {
  text-align: center;
  margin: 0 auto 30px;
}
.p-contact-section-inner-lead p {
  font-size: 28px;
  font-weight: 600;
}
.p-contact-section-inner-text {
  text-align: center;
}
.p-contact-section-inner-text p {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1.4;
}
.p-contact-section-inner-tag {
  width: 70%;
  max-width: 270px;
  margin: 20px auto 40px;
}
.p-contact-section-inner-tag img {
  width: 100%;
}
.p-contact-section-inner-act {
  text-align: right;
}
.p-contact-section-inner-act p {
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 1.75;
}
.p-contact-section-inner-act p span {
  color: #f80d0d;
}
.wpcf7-spinner{
	display: none!important;
}
.area-section {
  max-width: 540px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.area-section img {
  width: 100%;
}

.p-area__wrapper {
  max-width: 540px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  background: #EBFBFF;
  padding: 10px 0;
}
.p-area__wrapper .p-faq__container {
  position: relative;
  width: 95%;
  margin: 0 auto;
}
.p-area__wrapper .p-faq__container .p-faq__item {
  border-bottom: 1px solid #b0b0b0;
  cursor: pointer;
}

.p-faq__item.area-tag .c-faq__item__q {
  padding: 20px 50px 15px 15px;
}
.p-faq__item.area-tag .c-faq__item__q span::before {
  display: none;
}
.p-faq__item.area-tag .c-faq__item__a .c-faq__item__a_container {
  font-size: 16px;
  line-height: 1.8;
  position: relative;
  padding: 20px 30px 15px 15px;
}
.p-faq__item.area-tag .c-faq__item__a .c-faq__item__a_container p {
  line-height: 1.7;
}
.p-faq__item.area-tag .c-faq__item__a .c-faq__item__a_container::before {
  display: none;
}
.p-faq__item.area-tag .c-faq__item__a.j_accordion {
  height: 360px;
}

.p-faq__item.area-tag .c-faq__item__q span::after {
  display: none;
}

.p-faq__item.area-tag .c-faq__item__a .c-faq__item__a_container::after {
  display: none;
}

.p-area__wrapper .p-faq__container .p-faq__item:nth-of-type(4) {
  border-bottom: none;
}

@media (max-width: 540px) {
  .p-faq__wrapper {
    padding-bottom: 40px;
  }
  .p-faq__wrapper .p-lead__head {
    width: 50%;
    padding: 40px 0 30px;
  }
}/*# sourceMappingURL=style.css.map */