* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
  text-decoration: none;
  color: inherit;
}
body {
  font-family: "Noto Sans JP", sans-serif;
}
p,
h1,
h2,
h3,
h4 {
  line-height: 1.7;
}
li {
  list-style: none;
}
.img-status {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inline {
  display: inline-block;
}

/*header*/
header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 99;
  background-color: #fff;
}
.header-inner {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-logo img {
  width: 230px;
}
.header-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: #007e66;
}
.header-tel p {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  margin-left: 0.5rem;
  letter-spacing: normal;
  font-family: "Roboto", sans-serif;
}
.header-tel p span {
  font-size: 0.85rem;
  display: block;
  margin-left: 0.1rem;
  font-family: "Noto Sans JP", sans-serif;
}
.header-tel-img {
  display: block;
  height: 60px;
}

.header-info {
  display: flex;
  align-items: center;
}
.header-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1.5rem;
  padding: 0.7rem 1rem;
  border-radius: 0.5rem;
  color: #fff;
  font-weight: bold;
}
.header-contact p {
  margin-left: 0.5rem;
  display: flex;
  align-items: center;
  font-size: 1.1rem;
}
.header-contact p span {
  background-color: #fff;
  color: #c82020;
  font-weight: 900;
  padding: 0.2rem;
  border-radius: 0.2rem;
  margin-right: 0.3rem;
  line-height: 1;
}
img.mail-icon {
  width: 30px;
}
img.line-icon {
  width: 27px;
}
.header-contact-mail {
  background: rgb(224, 38, 38);
  background: linear-gradient(
    180deg,
    rgba(224, 38, 38, 1) 0%,
    rgba(189, 8, 8, 1) 100%
  );
}
.header-contact-line {
  background: rgb(85, 224, 0);
  background: linear-gradient(
    180deg,
    rgba(85, 224, 0, 1) 0%,
    rgba(64, 168, 0, 1) 100%
  );
}
/*fv*/
.fv {
  width: 100%;
  height: 100vh;
  background: url("../../img/bouon-img/fv-img.jpg") no-repeat center / cover;
  position: relative;
  overflow: hidden;
}

.sp-fv-text {
  display: none;
}
.fv-cta {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
}
.fv-textwrap {
  position: absolute;
  left: 10%;
  top: 60%;
  font-weight: bold;
  opacity: 0;
  transform: translateY(20px);
  animation: fv-textanime 0.4s ease 0.5s alternate forwards;
}
@keyframes fv-textanime {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fv-title {
  font-size: 2.5rem;
  color: #007e66;
  text-shadow: 3px 3px 0 #fff, -3px -3px 0 #fff, -3px 3px 0 #fff,
    3px -3px 0 #fff, 0px 3px 0 #fff, 0 -3px 0 #fff, -3px 0 0 #fff, 3px 0 0 #fff;
}
.fv-title span {
  font-size: 3rem;
  text-shadow: 4px 4px 0 #fff, -4px -4px 0 #fff, -4px 4px 0 #fff,
    4px -4px 0 #fff, 0px 4px 0 #fff, 0 -4px 0 #fff, -4px 0 0 #fff, 4px 0 0 #fff;
}
.fv-subtitle {
  font-size: 2rem;
  color: #007e66;
  text-shadow: 2.5px 2.5px 0 #fff, -2.5px -2.5px 0 #fff, -2.5px 2.5px 0 #fff,
    2.5px -2.5px 0 #fff, 0px 2.5px 0 #fff, 0 -2.5px 0 #fff, -2.5px 0 0 #fff,
    2.5px 0 0 #fff;
}
/*main共通*/
.main-cta-btn {
  margin-top: 3rem;
  position: relative;
  width: fit-content;
  animation: ctabtnAnime 0.5s ease 0s infinite alternate;
}
.main-cta-btn a {
  font-size: 1.75rem;
  padding: 1rem 6rem;
  border-radius: 999rem;
  background: #ffcb00;
  background: linear-gradient(180deg, #ffd52c 0%, #ffdd54 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 5px solid #725b00;
  position: relative;
}
.main-cta-btn img {
  display: block;
  width: 100px;
  position: absolute;
  right: -1.5rem;
  bottom: -2.5rem;
  z-index: 3;
}
.main-cta-btn-text {
  position: absolute;
  top: -1.5rem;
  left: 50%;
  font-size: 1.3rem;
  width: 60%;
  text-align: center;
  transform: translateX(-50%);
  background-color: #fff;
  border: 3px solid #ffcb00;
  border-radius: 999rem;
  padding: 0 1rem;
  z-index: 3;
}
@keyframes ctabtnAnime {
  from {
    transform: scale(0.97, 0.97);
  }
  to {
    transform: scale(1, 1);
  }
}

/*fv-bottom*/
.fv-bottom {
  background-color: #007e66;
  padding: 3rem 0;
}
.fv-bottom-title {
  color: #ffcb00;
}
.fv-bottom-titlewrap {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fv-bottom-inner {
  padding: 0 0.6rem;
}
.fv-bottom-title {
  font-size: 2.3rem;
  font-weight: 900;
}
.fv-bottom-title span {
  position: relative;
  padding: 0 0.5rem;
}
.fv-bottom-title span::before {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  background-color: #ffcb00;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.fv-bottom-titlewrap p {
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
}

.fv-bottom-titlewrap img {
  width: 50px;
}

.fv-bottom-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.fv-bottom-tel p {
  font-size: 2.3rem;
  font-weight: bold;
  line-height: 1;
  margin-left: 0.5rem;
  letter-spacing: normal;
  font-family: "Roboto", sans-serif;
}
.fv-bottom-tel p span {
  font-size: 0.95rem;
  display: block;
  margin-left: 0.1rem;
  font-family: "Noto Sans JP", sans-serif;
}
.fv-bottom-tel-img {
  display: block;
  height: 70px;
}

.fv-bottom-info {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}
.fv-bottom-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 3rem;
  padding: 0.7rem 1rem;
  border-radius: 0.5rem;
  color: #fff;
  font-weight: bold;
}
.fv-bottom-contact p {
  margin-left: 0.5rem;
  display: flex;
  align-items: center;
  font-size: 1.3rem;
}
.fv-bottom-contact p span {
  background-color: #fff;
  color: #c82020;
  font-weight: 900;
  padding: 0.2rem;
  border-radius: 0.2rem;
  margin-right: 0.3rem;
  line-height: 1;
}
img.bottom-mail-icon {
  width: 35px;
}
img.bottom-line-icon {
  width: 32px;
}
.fv-bottom-contact-mail {
  background: rgb(224, 38, 38);
  background: linear-gradient(
    180deg,
    rgba(224, 38, 38, 1) 0%,
    rgba(189, 8, 8, 1) 100%
  );
}
.fv-bottom-contact-line {
  background: rgb(85, 224, 0);
  background: linear-gradient(
    180deg,
    rgba(85, 224, 0, 1) 0%,
    rgba(64, 168, 0, 1) 100%
  );
}

/*reason-top*/
.reason {
  background-color: #e6f3eb;
}
.reason-top {
  padding: 5rem 0;
  text-align: center;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-style: italic;
}

.reason-top-subtitle {
  font-size: 2.5rem;
  display: inline-block;
  order: 1;
  line-height: 1.7;
  color: #007e66;
}
.reason-top-title {
  order: 3;
  line-height: 1.7;
  color: #000;
  font-size: 2rem;
  font-weight: 900;
}
.reason-top-title span {
  color: #007e66;
  font-size: 2.5rem;
}
.reason-contents {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 4rem;
  display: flex;
  justify-content: center;
}
.reason-item {
  width: calc(100% - 3rem);
  margin: 1rem;
}
.reason-item img {
  width: 100%;
  height: 300px;
}
.reason-num {
  color: #c82020;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: bold;
  margin-top: 1rem;
}
.reason-title {
  font-size: 1.7rem;
  margin-top: 0.5rem;
  line-height: 1.3;
}
.reason-text {
  margin-top: 1rem;
  font-size: 1.1rem;
}
/*worries*/
.worries {
  background-color: #007e66;
  color: #fff;
  padding: 4rem 0;
}
.worries-top {
  margin: 0 auto;
  width: 90%;
  max-width: 1100px;
  display: flex;
  border-bottom: 1px solid #fff;
  padding: 3rem 0;
}

.worries-top-img {
  width: 35%;
}
.worries-top-img .img-status {
  object-fit: contain;
}

.worries-top-textwrap {
  width: 65%;
  padding: 3rem 2rem;
}

.worries-top-title {
  text-align: center;
  font-size: 2rem;
  font-style: italic;
  position: relative;
  font-weight: 900;
}

.worries-top-title span {
  font-size: 2.5rem;
  color: #ffcb00;
}
.worries-top-title::before {
  content: "";
  width: 300px;
  height: 5px;
  background-color: #fff;
  position: absolute;
  bottom: -2rem;
  left: 50%;
  margin-top: 1rem;
  transform: translateX(-50%);
  display: inline-block;
}

.worries-top-title::after {
  border-top: 1rem solid #fff;
  border-right: 1rem solid transparent;
  border-left: 1rem solid transparent;
  content: "";
  position: absolute;
  bottom: -3rem;
  left: 50%;
  margin-top: 1rem;
  transform: translateX(-50%);
  display: inline-block;
}
.worries-top-textwrap p {
  margin-top: 5rem;
}

.worries-contents {
  margin: 0 auto;
  width: 90%;
  max-width: 1100px;
}

.worries-contents-title {
  text-align: center;
}
.worries-contents-title {
  text-align: center;
  font-size: 2rem;
  font-style: italic;
  position: relative;
  font-weight: 900;
}

.worries-contents-title span {
  font-size: 2.5rem;
  color: #ffcb00;
  padding: 0 0.25rem;
}

.worries-circle-contents {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}
.worries-circle-img {
  background-color: #fff;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.worries-circle-img img {
  width: 80px;
}
.worries-circle-item {
  margin: 1rem 2rem;
  text-align: center;
}

.worries-circle-item h3 {
  margin-top: 1rem;
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 900;
}

/*price*/
.price {
  background-color: #007e66;
  padding: 4rem 0;
}
.price-top {
  padding: 2rem 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-style: italic;
}

.price-top h2 {
  color: #fff;
  font-weight: 900;
}
.price-title {
  text-align: center;
  font-style: italic;
  font-weight: 900;
  font-size: 2rem;
  position: relative;
}

.price-title::before {
  content: "";
  width: 300px;
  height: 5px;
  background-color: #fff;
  position: absolute;
  bottom: -2rem;
  left: 50%;
  margin-top: 1rem;
  transform: translateX(-50%);
  display: inline-block;
}

.price-title::after {
  border-top: 1rem solid #fff;
  border-right: 1rem solid transparent;
  border-left: 1rem solid transparent;
  content: "";
  position: absolute;
  bottom: -3rem;
  left: 50%;
  margin-top: 1rem;
  transform: translateX(-50%);
  display: inline-block;
}
.price-top h2 span {
  font-size: 3rem;
  color: #ffcb00;
}
.price-top-text {
  color: #fff;
  font-weight: bold;
  margin-top: 4rem;
  font-size: 1.5rem;
}
.price-box {
  display: flex;
  padding: 2rem;
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.price-item {
}
.price-item:nth-of-type(1) {
  width: 51.5%;
}
.price-item:nth-of-type(2) {
  width: 45%;
}
.price-table {
  border-collapse: collapse;
  width: 100%;
  background-color: #fff;
}
.price-table tr:nth-of-type(1) th {
  text-align: center;
  font-size: 1.5rem;
}
.price-table td,
.price-table th {
  padding: 1rem;
  border: 1px solid #000;
  font-size: 1.3rem;
}
.price-tb-red th,
.price-tb-red td {
  color: #c82020;
  font-weight: bold;
}
.price-item img {
  display: block;
  width: 100%;
}
/*eco*/
.eco {
  padding: 4rem 0;
  background-color: #e6f3eb;
}

.eco-title {
  text-align: center;
  font-style: italic;
  color: #007e66;
  font-weight: 900;
  font-size: 2rem;
  position: relative;
}

.eco-title::before {
  content: "";
  width: 300px;
  height: 5px;
  background-color: #007e66;
  position: absolute;
  bottom: -2rem;
  left: 50%;
  margin-top: 1rem;
  transform: translateX(-50%);
  display: inline-block;
}

.eco-title::after {
  border-top: 1rem solid #007e66;
  border-right: 1rem solid transparent;
  border-left: 1rem solid transparent;
  content: "";
  position: absolute;
  bottom: -3rem;
  left: 50%;
  margin-top: 1rem;
  transform: translateX(-50%);
  display: inline-block;
}

.eco-contents {
  margin: 5rem auto 0;
  max-width: 1200px;
  width: 90%;
}
.eco-top {
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
}
.eco-top-img {
  padding: 1rem;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
.eco-top-img img {
  display: block;
  width: 100%;
}
.eco-top-textwrap {
  padding: 1rem;
  width: 100%;
}
.eco-top-textwrap h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.eco-top-textwrap img {
  display: block;
  width: 170px;
}
.eco-top-textwrap p {
  margin-top: 2rem;
  font-size: 1.1rem;
}

.eco-main-contents {
  margin: 3rem auto 0;
  display: flex;
  justify-content: center;
}
.eco-main-imgwrap {
  width: 55%;
  padding: 1rem;
}
.eco-main-imgwrap img {
  display: block;
  width: 100%;
}
.eco-main-imgwrap img + img {
  margin-top: 1rem;
}
.eco-main-textwrap {
  width: 45%;
  padding: 1rem;
}
.eco-main-textwrap h3 {
  font-size: 1.5rem;
  color: #007e66;
}
.eco-main-textwrap p {
  margin-top: 1rem;
  font-size: 1.1rem;
}
.eco-bottom {
  display: flex;
  flex-wrap: wrap;
  margin: 3rem auto 0;
}
.eco-bottom img {
  display: block;
  width: calc((100% - (0.5rem * 16)) / 8);
  margin: 0.5rem;
}
.eco-bottom img:nth-of-type(3) {
  border: 5px solid #c82020;
}
.youtube-wrap {
  text-align: center;
  margin-top: 2rem;
}
iframe#youtube {
  width: 100%;
  max-width: 650px;
  height: auto;
  aspect-ratio: 16 / 9;
}
/*promise*/

.promise-top {
  width: 100%;
  padding: 5rem 0 12rem;
  background: url("../../img/bouon-img/reason-topbg.jpg") no-repeat center / cover;
  text-align: center;
}

.promise-top h2 {
  font-size: 2.8rem;
  color: #fff;
  font-weight: 900;
  font-style: italic;
}
.promise-top h2 span {
  font-size: 3rem;
  color: #ffcb00;
}

.promise-top p {
  margin-top: 2rem;
  color: #fff;
}

.primise-lists {
  display: flex;
  justify-content: center;
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
  top: -6rem;
}

.promise-item {
  margin: 1rem;
  background-color: #fff;
  width: calc(100% / 3);
  padding: 4rem 1.5rem 1.5rem 1.5rem;
  position: relative;
  border: 1px solid #00000074;
}
.promise-item::before {
  content: attr(data-num);
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #c82020;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-weight: bold;
}

.promise-img {
  display: block;
  width: 100px;
  margin: 0 auto;
}

.promise-item h3 {
  text-align: center;
  font-style: italic;
  color: #007e66;
  font-weight: 900;
}

.promise-item p {
  margin-top: 1rem;
  font-size: 0.95rem;
}

/*flow*/
.flow {
  padding: 4rem 0;
  background-color: #e6f3eb;
}

.flow-title {
  text-align: center;
  font-style: italic;
  color: #007e66;
  font-weight: 900;
  font-size: 2rem;
  position: relative;
}

.flow-title::before {
  content: "";
  width: 300px;
  height: 5px;
  background-color: #007e66;
  position: absolute;
  bottom: -2rem;
  left: 50%;
  margin-top: 1rem;
  transform: translateX(-50%);
  display: inline-block;
}

.flow-title::after {
  border-top: 1rem solid #007e66;
  border-right: 1rem solid transparent;
  border-left: 1rem solid transparent;
  content: "";
  position: absolute;
  bottom: -3rem;
  left: 50%;
  margin-top: 1rem;
  transform: translateX(-50%);
  display: inline-block;
}

.flow-contents {
  width: 90%;
  max-width: 1000px;
  margin: 6rem auto 0;
}
.flow-item {
  display: flex;
  align-items: center;
  margin-top: 2rem;
  border: 1px solid #00000074;
  padding: 1rem 2rem;
  background-color: #fff;
}
.flow-img {
  width: 50px;
  margin-right: 2rem;
}
.flow-textwrap {
  padding: 1rem 2rem;
  border-left: 1px solid #00000074;
}

.flow-textwrap h3 {
  font-weight: 900;
  color: #007e66;
  font-style: italic;
  font-size: 1.5rem;
}
.flow-textwrap p {
  margin-top: 1.5rem;
}
p.flow-num {
  color: #c82020;
  font-size: 1.3rem;
  font-style: italic;
  font-weight: bold;
  margin-top: 0;
}
/*qa*/
.qa {
  padding: 4rem 0;
  background-color: #fff;
}

.qa-title {
  text-align: center;
  font-style: italic;
  color: #007e66;
  font-weight: 900;
  font-size: 2rem;
  position: relative;
}

.qa-title::before {
  content: "";
  width: 300px;
  height: 5px;
  background-color: #007e66;
  position: absolute;
  bottom: -2rem;
  left: 50%;
  margin-top: 1rem;
  transform: translateX(-50%);
  display: inline-block;
}

.qa-title::after {
  border-top: 1rem solid #007e66;
  border-right: 1rem solid transparent;
  border-left: 1rem solid transparent;
  content: "";
  position: absolute;
  bottom: -3rem;
  left: 50%;
  margin-top: 1rem;
  transform: translateX(-50%);
  display: inline-block;
}

.qa-contents {
  width: 90%;
  max-width: 1100px;
  margin: 6rem auto 0;
}
.qa-item {
  background-color: #e6f3eb;
  padding: 2rem;
  margin-top: 3rem;
}
.qa-item p {
  padding: 1rem;
}
p.quiz {
  border-bottom: 1px solid #007e66;
  font-weight: 900;
  font-style: italic;
  color: #007e66;
  font-size: 1.2rem;
}

p.quiz::before {
  content: attr(data-en);
  font-size: 2.5rem;
  font-weight: 600;
  margin-right: 1.5rem;
}

p.ans::before {
  content: attr(data-en);
  font-size: 2.5rem;
  font-weight: 600;
  margin-right: 1.5rem;
  color: #007e66;
  font-style: italic;
}

/*contact*/

.contact {
  padding: 4rem 0;
  background-color: #fff;
}

.contact-title {
  text-align: center;
  font-style: italic;
  color: #007e66;
  font-weight: 900;
  font-size: 2rem;
  position: relative;
}

.contact-title::before {
  content: "";
  width: 300px;
  height: 5px;
  background-color: #007e66;
  position: absolute;
  bottom: -2rem;
  left: 50%;
  margin-top: 1rem;
  transform: translateX(-50%);
  display: inline-block;
}

.contact-title::after {
  border-top: 1rem solid #007e66;
  border-right: 1rem solid transparent;
  border-left: 1rem solid transparent;
  content: "";
  position: absolute;
  bottom: -3rem;
  left: 50%;
  margin-top: 1rem;
  transform: translateX(-50%);
  display: inline-block;
}

/*company*/

.company {
  padding: 4rem 0;
  background-color: #e6f3eb;
}

.company-title {
  text-align: center;
  font-style: italic;
  color: #007e66;
  font-weight: 900;
  font-size: 2rem;
  position: relative;
}

.company-title::before {
  content: "";
  width: 300px;
  height: 5px;
  background-color: #007e66;
  position: absolute;
  bottom: -2rem;
  left: 50%;
  margin-top: 1rem;
  transform: translateX(-50%);
  display: inline-block;
}

.company-title::after {
  border-top: 1rem solid #007e66;
  border-right: 1rem solid transparent;
  border-left: 1rem solid transparent;
  content: "";
  position: absolute;
  bottom: -3rem;
  left: 50%;
  margin-top: 1rem;
  transform: translateX(-50%);
  display: inline-block;
}

.company-table {
  width: 90%;
  max-width: 800px;
  margin: 7rem auto 0;
}
.company-table td,
.company-table th {
  background-color: #fff;
  padding: 1rem;
}
.company-table th {
  width: 200px;
}
/*footer*/
footer {
  padding: 1.5rem;
  background-color: #007e66;
  color: #fff;
  text-align: center;
}

.kome {
  margin-top: 1rem;
  font-size: 0.9rem;
}

/*fv*/

.header-ent {
  display: flex;
  align-items: center;
}

.Form {
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}
@media screen and (max-width: 480px) {
  .Form {
    margin-top: 40px;
  }
}
.Form-Item {
  padding-top: 24px;
  padding-bottom: 24px;
  width: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 480px) {
  .Form-Item {
    padding-left: 14px;
    padding-right: 14px;
    padding-top: 16px;
    padding-bottom: 16px;
    flex-wrap: wrap;
  }
}
.Form-Item:nth-child(5) {
}
.Form-Item-Label {
  width: 100%;
  max-width: 248px;
  letter-spacing: 0.05em;
  font-weight: bold;
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Label {
    max-width: inherit;
    display: flex;
    align-items: center;
    font-size: 15px;
  }
}
.Form-Item-Label.isMsg {
  margin-top: 8px;
  margin-bottom: auto;
}
@media screen and (max-width: 480px) {
  .Form-Item-Label.isMsg {
    margin-top: 0;
  }
}
.Form-Item-Label-Required {
  border-radius: 6px;
  margin-right: 8px;
  padding-top: 8px;
  padding-bottom: 8px;
  width: 48px;
  display: inline-block;
  text-align: center;
  background: #007e66;
  color: #fff;
  font-size: 14px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Label-Required {
    border-radius: 4px;
    padding-top: 4px;
    padding-bottom: 4px;
    width: 32px;
    font-size: 10px;
  }
}
.Form-Item-Input {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 48px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Input {
    margin-left: 0;
    margin-top: 18px;
    height: 40px;
    flex: inherit;
    font-size: 15px;
  }
}
.Form-Item-Textarea {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-left: 40px;
  padding-left: 1em;
  padding-right: 1em;
  height: 216px;
  flex: 1;
  width: 100%;
  max-width: 410px;
  background: #eaedf2;
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  .Form-Item-Textarea {
    margin-top: 18px;
    margin-left: 0;
    height: 200px;
    flex: inherit;
    font-size: 15px;
  }
}
.Form-Btn {
  border-radius: 6px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 280px;
  display: block;
  letter-spacing: 0.05em;
  background: #007e66;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  cursor: pointer;
}
@media screen and (max-width: 480px) {
  .Form-Btn {
    margin-top: 24px;
    padding-top: 8px;
    padding-bottom: 8px;
    width: 160px;
    font-size: 16px;
  }
}
.floating-btn {
  display: none;
}
.floating-inner {
  position: fixed;
  right: 1rem;
  bottom: 2rem;
  z-index: 99;
  background: linear-gradient(180deg, #fbdf6f 0%, #f9cc1a 100%);
  width: 150px;
  border-radius: 50%;
  aspect-ratio: 1/1;
  box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: ctabtnAnime 0.5s ease 0s infinite alternate;
}

.floating-fing {
  position: absolute;
  right: -0.75rem;
  bottom: -2.3rem;
  display: block;
  width: 70px;
  transform: rotateZ(-15deg);
}
.floating-main-text {
  font-weight: bold;
  font-size: 1.3rem;
  line-height: 1.4;
  position: relative;
  top: -0.2rem;
}
.floating-big-text {
  display: block;
  text-align: center;
}
.floating-free {
  font-size: 1.7rem;
  color: #007e66;
  text-shadow: 1.5px 1.5px 0 #fff, -1.5px -1.5px 0 #fff, -1.5px 1.5px 0 #fff,
    1.5px -1.5px 0 #fff, 0px 1.5px 0 #fff, 0 -1.5px 0 #fff, -1.5px 0 0 #fff,
    1.5px 0 0 #fff;
}
/*contact*/
.u-contact-contents {
  width: 90%;
  max-width: 800px;
  margin: 5rem auto 0;
}
.cf7{
	width:95%;
	margin: 5rem auto 0;
	max-width:1000px;
}
.cf7__list {
  display: flex;
  flex-wrap: wrap;
  margin: 2.5rem 0 3rem;
}
.wpcf7-form-control.wpcf7-text,
.wpcf7-form-control.wpcf7-tel {
  border: 1px solid #000;
}

.cf7__list dt:nth-of-type(n + 2),
.cf7__list dd:nth-of-type(n + 2) {
  margin-top: 30px;
}

.cf7__list dt {
  width: 35%;
  padding-top: 11px;
}

.cf7__list dd {
  width: 65%;
}

/* 必須・任意 */
.cf7__required,
.cf7__any {
  margin-right: 15px;
  padding: 6px 14px;
  color: #fff;
  font-size: 12px;
  vertical-align: 1px;
}

.cf7__required {
  background: #be1d1d;
}

.cf7__any {
  background: #878d8e;
}

/* input・textarea */
.cf7__list dd input[type="text"],
.cf7__list dd input[type="tel"],
.cf7__list dd input[type="email"],
.cf7__list dd textarea {
  width: 100%;
  padding: 15px 20px;
  background: #fff;
}

/* ドロップダウンメニュー */
.cf7__select {
  position: relative;
}

.cf7__select:before {
  position: absolute;
  top: 50%;
  right: 20px;
  z-index: 10;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 8px solid #000;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  pointer-events: none;
  content: "";
}

.cf7__select select {
  width: 100%;
  padding: 19px 20px;
  background: #f4f4f4;
  color: #a5a5a5;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* チェックボックス・ラジオボタン */
.cf7__list dd .wpcf7-checkbox,
.cf7__list dd .wpcf7-radio {
  display: block;
  padding: 15px 0 10px;
}

/* 縦並び（チェックボックス・ラジオボタン） */
.cf7__list dd .wpcf7-list-item {
  display: block;
  margin: 0;
}

.cf7__list dd .wpcf7-list-item:nth-child(n + 2) {
  margin-top: 18px;
}

/* マウスカーソル（チェックボックス・ラジオボタン） */
.cf7__list dd .wpcf7-list-item label {
  cursor: pointer;
}

/* チェックボックス・ラジオボタン */
input[type="checkbox"],
input[type="radio"] {
  position: relative;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border: 1px solid #bcbcbc;
  vertical-align: -3px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* チェックボックス */
input[type="checkbox"]:checked {
  border: 1px solid #000;
  background: #000;
}

input[type="checkbox"]:checked:before {
  position: absolute;
  top: 2px;
  left: 5px;
  transform: rotate(50deg);
  width: 6px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: "";
}

/* ラジオボタン */
input[type="radio"] {
  border-radius: 50%;
}

input[type="radio"]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #000;
  content: "";
}

/* プレースホルダー */
/* Google Chrome / Safari / Mozilla Firefox / Opera */
.cf7__list dd input[type="text"]::placeholder,
.cf7__list dd input[type="tel"]::placeholder,
.cf7__list dd input[type="email"]::placeholder,
.cf7__list dd textarea::placeholder {
  color: #a5a5a5;
}

/* Microsoft Edge */
.cf7__list dd input[type="text"]::-ms-input-placeholder,
.cf7__list dd input[type="tel"]::-ms-input-placeholder,
.cf7__list dd input[type="email"]::-ms-input-placeholder,
.cf7__list dd textarea::-ms-input-placeholder {
  color: #a5a5a5;
}

/* Internet Explorer */
.cf7__list dd input[type="text"]:-ms-input-placeholder,
.cf7__list dd input[type="tel"]:-ms-input-placeholder,
.cf7__list dd input[type="email"]:-ms-input-placeholder,
.cf7__list dd textarea:-ms-input-placeholder {
  color: #a5a5a5;
}

/* 送信ボタン */
.cf7__button {
  text-align: center;
}

input[type="submit"] {
  width: 260px;
  height: 60px;
  background: #007e66;
  color: #fff;
  outline: none;
  border: none;
  transition: opacity 0.6s;
  cursor: pointer;
}

input[type="submit"]:hover {
  opacity: 0.6;
}

/* ajax-loader */
.wpcf7-spinner {
  vertical-align: middle;
  display: none !important;
}
@media screen and (max-width: 767px) {
  .cf7__list dt {
    width: 100%;
    margin-bottom: 15px;
    padding-top: 0;
  }

  .cf7__list dd {
    width: 100%;
  }

  .cf7__list dd:nth-of-type(n + 2) {
    margin-top: 0;
  }

  .cf7__list dd .wpcf7-checkbox,
  .cf7__list dd .wpcf7-radio {
    padding: 15px 0 0;
  }

  /* 送信ボタン */
  input[type="submit"] {
    width: 180px;
    height: 56px;
  }
}

.contact-line {
  width: 100%;
  border-bottom: 1px solid #007e66;
}
.contact-line h3 {
  background-color: #007e66;
  color: #fff;
  display: inline-block;
  padding: 0.2rem 1rem;
}
.screen-reader-response{
	display:none;
}
.wpcf7-response-output{
	text-align:center;
	margin-top:2rem;
}
.spam-checkbox{
text-align:center;
}
.cf7__button{
	margin-top:2rem;
}

.ac{
	padding:4rem 0;
}
.ac-contents{
	margin:5rem auto 0;
	max-width:1200px;
	width:90%;
}
.ac-top-title{
	text-align:center;
	line-height: 1.7;
 font-size: 2rem;
  font-weight: 900;
	font-style:italic;
	
}
.ac-top-title span{
	color:#C71111;
	font-size:2.5rem;
}
.ac-box{
	margin-top:3rem;

}
.ac-textwrap{
text-align:center;
}
.ac-textwrap h3{
	font-size:1.5rem;
}
.ac-textwrap p{
	margin-top:1.5rem;
}
.ac-imgwrap{
	display:flex;
	align-items:flex-start;
	flex-wrap:wrap;
	justify-content:center;
	margin-top:2rem;
}
.ac-img-item{
	width:calc((100% - 4rem) / 2);
	margin:1.5rem 1rem;
	border:4px solid #007e66;
}
.ac-img-item h4{
	top:-1.3rem;
	background:#007e66;
	color:#fff;
	font-size:1.3rem;
	line-height:1.4;
	height:70px;
	text-align:center;
	display:flex;
	align-items:center;
	justify-content:center;
	flex-direction:column;
}
.ac-img-item h4 span{
	font-size:0.9rem;
}
.ac-imgwrap img{
	width:48%;
	display:block;
}
.ac-img{
	display:flex;
	justify-content:space-between;
	margin-top:1rem;
	padding:1rem;
}