@charset "UTF-8";
html {
  overflow-x: hidden;
}

body {
  position: relative;
  background-color: #fff;
  width: 100%;
  box-sizing: border-box;
  color: #363636;
  letter-spacing: 0.08em;
  overflow-x: hidden;
  color: #363636;
}

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

.hidden {
  display: none !important;
}

.exit-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.45);
  padding: 24px;
}

.exit-dialog {
  position: relative;
  width: 100%;
  max-width: 560px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic UI", "Meiryo", sans-serif;
}
.exit-dialog .close {
  position: absolute;
  top: -40px;
  right: -40px;
  z-index: 3;
  width: 80px;
}
@media (max-width: 767px) {
  .exit-dialog .close {
    top: -33px;
    right: -15px;
    width: 40px;
  }
}
.exit-dialog .close img {
  width: 100%;
}
@media (max-width: 767px) {
  .exit-dialog {
    max-width: 94vw;
  }
}

.exit-visual {
  position: relative;
  background: linear-gradient(180deg, #8D47B9 0%, #595DAD 100%);
  overflow: hidden;
  padding: 30px;
}
.exit-visual h2 {
  color: #fff;
  text-align: center;
  margin: 0 0 30px;
}
.exit-visual a {
  color: #fff;
  text-decoration: none;
}
.exit-visual img {
  width: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin: auto;
}
@media (max-width: 767px) {
  .exit-visual img {
    width: 100%;
  }
}
.exit-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(120px 80px at 15% 35%, rgba(11, 107, 203, 0.12), transparent), radial-gradient(160px 100px at 85% 65%, rgba(11, 107, 203, 0.12), transparent);
  pointer-events: none;
}
.exit-visual .sub-txt {
  font-size: 10px;
  color: #fff;
  padding-left: 20px;
  margin-top: 30px;
}
.exit-visual .appeal-button-a {
  background-color: #305DBD;
  color: #ffffff;
  border-radius: 50px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  height: 80px;
  padding: 20px 0;
  margin: 0 10px 20px;
  box-sizing: border-box;
  text-align: center;
  position: relative;
}
.exit-visual .yellow-button {
  background-color: #FFDA2A;
  color: #363636;
  width: 100%;
  box-sizing: border-box;
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 10px 0;
}
@media (max-width: 767px) {
  .exit-visual .yellow-button {
    font-size: 16px;
    line-height: 1.3em;
  }
}
.exit-visual .yellow-button::before {
  content: "";
  display: block;
  width: 20px;
  height: 100px;
  background-image: url("./common/img/arrow-black-right.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media (max-width: 767px) {
  .exit-visual .yellow-button::before {
    width: 14px;
  }
}
.exit-visual .text-link {
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  border-bottom: 1px solid #ffffff;
  padding: 0 10px 10px;
}
.exit-visual .card {
  width: 300px;
  margin: 10px auto;
}
@media (max-width: 767px) {
  .exit-visual .card {
    width: 200px;
  }
}
.exit-visual .blank::after {
  content: "";
  display: block;
  background-image: url("./common/img/pop/icon-blank-white.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 16px;
  height: 16px;
  margin-left: 5px;
}

p {
  font-size: 16px;
  line-height: 1.8em;
}
@media screen and (max-width: 768px) {
  p {
    font-size: 14px;
  }
}

.mb-0 {
  margin-bottom: 0;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.w-40 {
  width: 40% !important;
}

.w-50 {
  width: 50% !important;
}

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

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

.btn-red {
  border-radius: 50px;
  background-color: #d30c0c;
  color: #FFF;
  font-size: 20px;
  padding: 24px 50px 24px 100px;
  text-decoration: none;
  background-image: url("../img/arrow-white.svg");
  background-repeat: no-repeat;
  background-position: right 20px center;
  position: relative;
  border: 5px solid #ffffff;
}
v .btn-red:hover {
  background-color: #8d0b0b;
  color: #fff;
  transition: 1s;
}
.btn-red::before {
  content: " ";
  position: absolute;
  top: -38px;
  left: -10px;
  width: 100px;
  height: 100px;
  background-image: url("../img/button-txt.png");
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .btn-red {
    font-size: 14px;
  }
}

.title-h1 {
  font-size: 36px;
  font-style: normal;
  font-weight: bold;
  text-align: center;
  background-image: url("../img/title-bg-w.svg");
  background-repeat: no-repeat;
  background-position: center bottom;
  padding-bottom: 46px;
  margin: 0 0 40px 0;
}
@media screen and (max-width: 768px) {
  .title-h1 {
    font-size: 23px;
  }
}

.sub-title {
  display: block;
  font-size: 21px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .sub-title {
    font-size: 16px;
  }
}

.title-h2 {
  font-size: 28px;
  font-style: normal;
  font-weight: bold;
  text-align: center;
  margin: 0 0 16px 0;
}
@media screen and (max-width: 768px) {
  .title-h2 {
    font-size: 22px;
  }
}

.txt-center {
  text-align: center;
}

.cal2 {
  display: flex;
}

.cal3 {
  display: flex;
}

.blank {
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
.blank::after {
  content: " ";
  display: block;
  background-image: url("../img/icon-blank.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  width: 16px;
  height: 16px;
}

header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  position: fixed;
  top: 0;
  z-index: 3;
}
header p {
  margin: 0;
}
header .logo {
  margin-left: 25px;
  margin-top: 20px;
  color: #000 !important;
}
@media screen and (max-width: 768px) {
  header .logo {
    width: 120px;
  }
}
header .logo img {
  width: 100%;
}
header .header-menu {
  display: flex;
}
@media screen and (max-width: 768px) {
  header .header-menu .line {
    display: none;
  }
}
header .header-menu .line a {
  background-color: #409340;
  height: 70px;
  width: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .header-menu .line a img {
  width: 40px;
}
@media screen and (max-width: 768px) {
  header .header-menu .contact {
    display: none;
  }
}
header .header-menu .contact a {
  background-color: #3E3E3E;
  height: 70px;
  width: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .header-menu .contact a img {
  width: 40px;
}

/* ふわふわアニメーションの定義 */
@keyframes fluffy {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.sp-footer {
  position: fixed;
  bottom: 0;
  right: 10px;
  display: flex;
  width: 100%;
  max-width: 400px;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .sp-footer {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    left: auto;
    display: flex;
    width: 100%;
    z-index: 5;
  }
  .sp-footer img {
    width: 20px;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.sp-footer .sp-contact {
  animation: fluffy 3s ease-in-out infinite;
  background-color: #be9027;
  width: 100%;
  max-width: 400px;
  margin: 0 auto 15px auto;
  border-radius: 20px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .sp-footer .sp-contact {
    animation: fluffy 3s ease-in-out infinite;
    background-color: #be9027;
    width: 90%;
    margin: 0 auto 15px auto;
    border-radius: 20px;
  }
}
.sp-footer .sp-contact .flex {
  display: flex;
}
.sp-footer .sp-contact .flex img {
  width: 60px;
  margin-right: 10px;
}
.sp-footer .sp-contact .flex .bold {
  font-weight: bold;
  font-size: 26px;
}
.sp-footer .sp-contact a {
  color: #ffffff;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  padding: 15px 10px;
  font-size: 15px;
}

.header-hero {
  width: 1000px;
  padding-top: 160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 3;
  position: relative;
}
@media screen and (max-width: 768px) {
  .header-hero {
    width: 100%;
    padding: 120px 20px 0px 20px;
    box-sizing: border-box;
    background-position: center;
  }
}
@media screen and (max-width: 768px) {
  .header-hero-content {
    width: 100%;
    box-sizing: border-box;
  }
}
.header-hero-catch {
  width: 80%;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 768px) {
  .header-hero-catch {
    width: 90%;
    max-width: 310px;
  }
}
.header-hero-catch img {
  width: 100%;
  max-width: 800px;
}
@media screen and (max-width: 768px) {
  .header-hero-catch img {
    width: 105%;
  }
}
@media screen and (max-width: 768px) {
  .header-hero-button {
    width: 100%;
  }
}
.header-hero-pic {
  position: absolute;
  top: 50px;
  right: 0;
  z-index: 0;
  width: 55%;
}
.header-hero-pic img {
  width: 100%;
}

.header-hero-movie {
  position: absolute;
  top: -1%;
  right: -8%;
  z-index: 1;
  width: 1000px;
  height: 1000px;
  overflow: hidden;
  display: block;
  border-radius: 100%;
}
@media screen and (max-width: 768px) {
  .header-hero-movie {
    top: -0.5%;
    right: -42%;
    width: 600px;
    height: 600px;
  }
}
.header-hero-movie video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  position: relative;
}

.header-hero-button {
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .header-hero-button {
    position: absolute;
    top: 330px;
    left: 0;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
  }
}
.header-hero-button:hover {
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.header-hero-button img {
  width: 500px;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 2;
  position: relative;
}
@media screen and (max-width: 768px) {
  .header-hero-button img {
    width: 100%;
    max-width: 400px;
  }
}

.header-content {
  background-image: url("../img/main-bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top -200px center;
  height: 1060px;
}
@media screen and (max-width: 768px) {
  .header-content {
    background-position: top right -120px;
    background-size: 155%;
    height: 1400px;
  }
}

.future {
  z-index: 2;
  position: relative;
  color: #363636;
}
.future::before {
  content: " ";
  background-image: url("../img/green-topbg-main.svg");
  background-repeat: no-repeat;
  background-position: top 0px center;
  background-size: cover;
  height: 263px;
  width: 100%;
  display: block;
}
@media screen and (max-width: 768px) {
  .future::before {
    background-position: top 50px center;
    height: 150px;
  }
}
.future::after {
  content: " ";
  background-image: url("../img/green-bottombg-main.svg");
  background-repeat: no-repeat;
  background-position: bottom 80px center;
  background-size: cover;
  height: 350px;
  width: 100%;
  display: block;
}
@media screen and (max-width: 768px) {
  .future::after {
    background-position: bottom 30px center;
    height: 120px;
  }
}
.future .future-bg {
  background-color: #DBBCEF;
}
.future .future-content {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .future .future-content {
    width: calc(100% - 30px);
    box-sizing: border-box;
  }
}
.future .future-content .title-h1 {
  background-image: url("../img/title-bg-w.svg");
}
@media screen and (max-width: 768px) {
  .future .future-content .title-h1 {
    padding-top: 450px;
  }
}
.future .future-content .title-h2 {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .future .future-content .title-h2 {
    font-size: 14px;
  }
}
.future .future-content .future-point {
  display: flex;
  justify-content: space-around;
  position: absolute;
  top: 15px;
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .future .future-content .future-point {
    width: calc(100% - 30px);
    box-sizing: border-box;
    top: 130px;
    flex-wrap: wrap;
  }
}
.future .future-content .future-point .future-point-box {
  background-color: #AF47B9;
  color: #ffffff;
  border-radius: 100%;
  margin: 0 10px;
  width: 100%;
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .future .future-content .future-point .future-point-box {
    margin: 10px;
    margin-bottom: 10px;
    width: 43%;
    aspect-ratio: 1/1;
    height: auto;
  }
}
.future .future-content .future-point .future-point-box dl {
  margin: 0;
}
.future .future-content .future-point .future-point-box dl dt {
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .future .future-content .future-point .future-point-box dl dt {
    font-size: 16px;
  }
}
.future .future-content .future-point .future-point-box dl dt .txt-small {
  font-size: 11px;
}
.future .future-content .future-point .future-point-box dl dd {
  margin: 0;
  padding: 0;
  font-size: 24px;
  font-weight: bold;
}
.future .future-content .future-point-subtxt {
  padding-top: 1px;
  text-align: right;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .future .future-content .future-point-subtxt {
    position: absolute;
    top: 480px;
    right: 15px;
  }
}
.future .future-content .future-point-subtxt p {
  font-size: 12px;
}

.future-box {
  width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .future-box {
    width: 100%;
    box-sizing: border-box;
    display: block;
  }
}
.future-box p {
  text-align: center;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
.future-box p img {
  width: 100%;
  max-width: 600px;
}

.anxiety {
  width: 1000px;
  margin: 900px auto 100px auto;
}
@media screen and (max-width: 768px) {
  .anxiety {
    width: calc(100% - 30px);
    box-sizing: border-box;
    margin: 30px auto 100px auto;
  }
}
.anxiety-list {
  padding: 0;
  margin: 40px 0;
  display: flex;
  justify-content: space-around;
}
@media screen and (max-width: 768px) {
  .anxiety-list {
    flex-wrap: wrap;
  }
}
.anxiety-list li {
  list-style: none;
  font-size: 24px;
  width: 100%;
  margin: 0 30px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .anxiety-list li {
    font-size: 16px;
    width: 41.3%;
    margin: 0;
  }
}
.anxiety-list li p {
  text-align: center;
}
.anxiety-list li p img {
  width: 100%;
}
.anxiety-list li dl dt {
  font-weight: bold;
  text-align: center;
  margin-bottom: 16px;
  font-size: 18px;
}
.anxiety-list li dl dd {
  margin: 0;
  font-size: 14px;
}

.risk {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .risk {
    width: calc(100% - 30px);
    box-sizing: border-box;
  }
}
.risk p {
  text-align: center;
}
.risk p img {
  width: 100%;
  max-width: 700px;
}
.risk .flex {
  display: flex;
  width: calc(100% - 30px);
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .risk .flex {
    display: block;
  }
}
.risk .flex p {
  width: 100%;
}
.risk .flex img {
  width: 100%;
  max-width: 400px;
}
@media screen and (max-width: 768px) {
  .risk .title-h2 {
    font-size: 18px;
  }
}

.appeal {
  color: #363636;
}
@media screen and (max-width: 768px) {
  .appeal {
    margin-bottom: 50px;
  }
}
.appeal::before {
  content: " ";
  background-image: url("../img/darkgreen-topbg.svg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  height: 150px;
  width: 100%;
  display: block;
}
@media screen and (max-width: 768px) {
  .appeal::before {
    height: 100px;
  }
}
.appeal::after {
  content: " ";
  background-image: url("../img/darkgreen-bottombg.svg");
  background-repeat: no-repeat;
  background-position: bottom 50px center;
  background-size: cover;
  height: 170px;
  width: 100%;
  display: block;
}
@media screen and (max-width: 768px) {
  .appeal::after {
    background-position: bottom center;
    height: 40px;
  }
}
.appeal .appeal-bg {
  background-color: #DBBCEF;
}
.appeal .appeal-content {
  width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .appeal .appeal-content {
    width: calc(100% - 30px);
    box-sizing: border-box;
    padding-bottom: 10px;
  }
}
.appeal .appeal-content h1 {
  color: #363636;
  margin: 0;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .appeal .appeal-content h1 {
    font-size: 18px;
  }
}
.appeal-button {
  display: flex;
  justify-content: center;
  width: 1000px;
}
@media screen and (max-width: 768px) {
  .appeal-button {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
}
.appeal-button-a {
  background-color: #305DBD;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 50px;
  margin: 0 10px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  height: 100px;
  padding: 20px 0;
  box-sizing: border-box;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .appeal-button-a {
    margin: 10px 0;
  }
}
.appeal-button-a span {
  display: block;
  width: 100%;
}
.appeal-button-a::before {
  content: " ";
  display: block;
  width: 20px;
  height: 100px;
  background-image: url("../img/arrow-white-right.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.appeal-button .button-content {
  width: 100%;
}
.appeal-button .yellow-button {
  background-color: #FFDA2A;
  color: #363636;
  width: 100%;
  box-sizing: border-box;
}
.appeal-button .yellow-button::before {
  content: " ";
  display: block;
  width: 20px;
  height: 100px;
  background-image: url("../img/arrow-black-right.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .appeal-button .yellow-button {
    margin-top: 25px;
  }
}
.appeal-button .button-main-txt {
  font-weight: bold;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .appeal-button .button-main-txt {
    font-size: 18px;
  }
}
.appeal-button .text-link {
  text-decoration: none;
  color: #363636;
  font-size: 14px;
  border-bottom: 1px solid #363636;
  padding: 0 10px 10px 10px;
}
.appeal .campaign-box {
  width: 1000px;
  margin: 80px auto 0 auto;
}
.appeal .campaign-box-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .appeal .campaign-box-flex {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .appeal .campaign-box {
    width: calc(100% - 30px);
    box-sizing: border-box;
  }
}
.appeal .campaign-box .campaign-img {
  width: 100%;
}
.appeal .campaign-box .campaign-img img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .appeal .campaign-box .campaign-img {
    width: 80%;
    box-sizing: border-box;
  }
}
.appeal .campaign-box .campaign-txt {
  width: 100%;
}
.appeal .campaign-box .campaign-txt-small {
  font-size: 12px;
  line-height: 1.5em;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .appeal .campaign-box .campaign-txt-small {
    font-size: 10px;
  }
}
.appeal .campaign-box .campaign-txt-small span {
  display: inline-block;
  text-indent: -1em;
  padding-left: 1em;
}
.appeal .campaign-box .campaign-txt-title {
  font-size: 50px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .appeal .campaign-box .campaign-txt-title {
    font-size: 30px;
  }
}
.appeal .campaign-box .campaign-txt h2 {
  margin: 0;
}
.appeal .campaign-box .campaign-txt h3 {
  font-size: 30px;
  margin: 0;
}
.appeal .campaign-box .campaign-txt h3 span {
  font-size: 50px;
  font-weight: bold;
}

.realEstateinvestment {
  width: 1000px;
  margin: 0 auto 150px auto;
}
@media screen and (max-width: 768px) {
  .realEstateinvestment {
    width: calc(100% - 30px);
    box-sizing: border-box;
    margin-top: 80px;
  }
}
.realEstateinvestment .cal2 {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .realEstateinvestment .cal2 {
    display: block;
  }
}
.realEstateinvestment .cal2:first-child {
  margin-top: 40px;
}
.realEstateinvestment .cal2 div {
  width: calc(50% - 0px);
  box-sizing: border-box;
  padding: 10px;
}
@media screen and (max-width: 768px) {
  .realEstateinvestment .cal2 div {
    width: 100%;
    padding: 0px;
  }
}
.realEstateinvestment .cal2 div img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .realEstateinvestment .cal2 div img {
    margin-bottom: 10px;
  }
}
.realEstateinvestment .cal2 div dl {
  margin: 0;
}
.realEstateinvestment .cal2 div dl dt {
  color: #698962;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  justify-items: center;
}
@media screen and (max-width: 768px) {
  .realEstateinvestment .cal2 div dl dt {
    font-size: 20px;
  }
}
.realEstateinvestment .cal2 div dl dt img {
  margin-right: 16px;
  width: auto;
}
@media screen and (max-width: 768px) {
  .realEstateinvestment .cal2 div dl dt img {
    margin-right: 10px;
    width: 30px;
    margin-bottom: 0;
  }
}
.realEstateinvestment .cal2 div dl dd {
  margin: 0;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .realEstateinvestment .cal2 div dl dd {
    font-size: 14px;
  }
}

.mansion {
  width: 1000px;
  margin: 0 auto 80px auto;
}
@media screen and (max-width: 768px) {
  .mansion {
    width: calc(100% - 30px);
    box-sizing: border-box;
  }
}
.mansion-main {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .mansion-main {
    display: block;
  }
}
.mansion-main div {
  width: calc(48% - 0px);
  box-sizing: border-box;
  padding: 0 10px;
}
@media screen and (max-width: 768px) {
  .mansion-main div {
    width: 100%;
  }
}
.mansion-main .mansion-main-img {
  height: 350px;
  width: calc(48% - 0px);
  text-align: center;
  background-color: #e1e1e1;
}
@media screen and (max-width: 768px) {
  .mansion-main .mansion-main-img {
    height: 250px;
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .mansion-main .mansion-main-img img {
    height: 250px;
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.mansion-main .mansion-region {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  border-radius: 50px;
  background: #33285B;
  padding: 8px 28px;
  color: #fff;
  display: inline-block;
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .mansion-main .mansion-region {
    padding: 4px 20px;
    font-size: 12px;
  }
}
.mansion-main dl {
  margin: 0;
  padding: 0;
}
.mansion-main dl dt {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .mansion-main dl dt {
    font-size: 20px;
  }
}
.mansion-main dl dd {
  margin: 0;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .mansion-main dl dd {
    font-size: 14px;
  }
}
.mansion-main dl dd ul {
  margin: 0;
  padding: 0;
}
.mansion-main dl dd ul li {
  list-style: none;
  margin-bottom: 10px;
}
.mansion-main dl dd ul .pin {
  background-image: url("../img/mansion01.svg");
  background-repeat: no-repeat;
  background-position: top 3px left;
  padding-left: 30px;
}
.mansion-main dl dd ul .pin-w {
  background-image: url("../img/mansion01-w.svg");
  background-repeat: no-repeat;
  background-position: top 3px left;
  padding-left: 30px;
}
.mansion-main dl dd ul .train {
  background-image: url("../img/mansion02.svg");
  background-position: top 3px left;
  background-repeat: no-repeat;
  padding-left: 30px;
}
.mansion-main dl dd ul .train-w {
  background-image: url("../img/mansion02-w.svg");
  background-repeat: no-repeat;
  background-position: top 3px left;
  padding-left: 30px;
}
.mansion-main dl dd ul .square_meter {
  background-image: url("../img/mansion03.svg");
  background-position: top 3px left;
  background-repeat: no-repeat;
  padding-left: 30px;
}
.mansion-main dl dd ul .square_meter-w {
  background-image: url("../img/mansion03-w.svg");
  background-repeat: no-repeat;
  background-position: top 3px left;
  padding-left: 30px;
}
.mansion-main dl dd ul .number_of_houses {
  background-image: url("../img/mansion04.svg");
  background-position: top 3px left;
  background-repeat: no-repeat;
  padding-left: 30px;
}
.mansion-main dl dd ul .number_of_houses-w {
  background-image: url("../img/mansion04-w.svg");
  background-repeat: no-repeat;
  background-position: top 3px left;
  padding-left: 30px;
}
.mansion .mansion-slider {
  width: 100vw;
  margin: 0 calc(50% - 50vw) 150px calc(50% - 50vw);
}
.mansion .mansion-slider .slick-dots {
  bottom: -60px;
}
.mansion .mansion-slider .slick-track {
  display: flex;
}
.mansion .mansion-slider .slick-slide {
  height: auto !important;
}
.mansion-card {
  width: 340px;
  height: 100%;
  margin: 0 15px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
  margin-bottom: 10px;
}
.mansion-card .mansion-card-bg {
  background-color: #ffffff;
  height: 100%;
}
.mansion-card .mansion-img {
  height: 250px;
  width: 100%;
  text-align: center;
  background-color: #e1e1e1;
}
.mansion-card .mansion-img img {
  display: inline-block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.mansion-card .mansion-txt {
  padding: 20px;
}
.mansion-card .mansion-region {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  border-radius: 50px;
  background: #33285B;
  padding: 4px 16px;
  color: #fff;
  display: inline-block;
  margin-top: 0;
}
.mansion-card dl {
  margin: 0;
  padding: 0;
}
.mansion-card dl dt {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 16px;
  color: #000;
}
.mansion-card dl dd {
  margin: 0;
  font-size: 14px;
}
.mansion-card dl dd ul {
  margin: 0;
  padding: 0;
}
.mansion-card dl dd ul li {
  list-style: none;
  margin-bottom: 10px;
  color: #000;
}
.mansion-card dl dd ul .pin {
  background-image: url("../img/mansion01.svg");
  background-repeat: no-repeat;
  background-position: top 3px left;
  padding-left: 30px;
}
.mansion-card dl dd ul .train {
  background-image: url("../img/mansion02.svg");
  background-position: top 3px left;
  background-repeat: no-repeat;
  padding-left: 30px;
}
.mansion-card dl dd ul .square_meter {
  background-image: url("../img/mansion03.svg");
  background-position: top 3px left;
  background-repeat: no-repeat;
  padding-left: 30px;
}
.mansion-card dl dd ul .number_of_houses {
  background-image: url("../img/mansion04.svg");
  background-position: top 3px left;
  background-repeat: no-repeat;
  padding-left: 30px;
}

.slick-prev {
  left: 5px;
  background-color: #fff;
  border-radius: 10px;
}

.slick-next {
  right: 5px;
  background-color: #fff;
  border-radius: 10px;
}

/* 共通：ボタンの見た目 */
.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background-color: #fff;
  /* ← ご指定を反映 */
  border: 1px solid #e5e7eb;
  border-radius: 100px;
  /* ← ご指定を反映 */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  place-items: center;
  z-index: 1;
  cursor: pointer;
  color: #111;
  /* 矢印色（currentColor） */
}

/* 配置 */
.slick-prev {
  left: 5px;
}

.slick-next {
  right: 5px;
}

/* ← ご指定を反映 */
/* Slickデフォルトの矢印文字を消す */
.slick-prev::before,
.slick-next::before {
  content: unset;
}

/* 矢印をCSSだけで描く（くの字） */
.slick-prev::after,
.slick-next::after {
  content: "";
  width: 12px;
  height: 12px;
  display: block;
}

/* ＜（左矢印） */
.slick-prev::after {
  border-left: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(-45deg);
  margin-left: 5px;
}

/* ＞（右矢印） */
.slick-next::after {
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  margin-right: 5px;
}

/* ホバー＆押下 */
.slick-prev:hover,
.slick-next:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  color: #111;
  background-color: #fff;
}

/* キーボード操作の視認性 */
.slick-prev:focus-visible,
.slick-next:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

/* 無効状態（端まで行ったとき） */
.slick-disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* モバイルで少し小さく */
@media (max-width: 640px) {
  .slick-prev,
  .slick-next {
    width: 38px;
    height: 38px;
  }
}
.facility {
  width: 1000px;
  margin: 0 auto 150px auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .facility {
    width: calc(100% - 30px);
    box-sizing: border-box;
    margin: 0 auto 80px auto;
  }
}
.facility-cal2 {
  display: flex;
  justify-content: space-between;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 768px) {
  .facility-cal2 {
    display: block;
  }
}
.facility-cal2 .facility-img {
  width: calc(49% - 0px);
  box-sizing: border-box;
  padding: 0 10px;
}
@media screen and (max-width: 768px) {
  .facility-cal2 .facility-img {
    width: 100%;
  }
}
.facility-cal2 .facility-img img {
  width: 100%;
}
.facility-cal2 .facility-txt {
  width: calc(49% - 0px);
  box-sizing: border-box;
  padding: 0 10px;
}
@media screen and (max-width: 768px) {
  .facility-cal2 .facility-txt {
    width: 100%;
  }
}
.facility-cal2 .facility-txt dl {
  margin: 0;
}
.facility-cal2 .facility-txt dl dt {
  color: #698962;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 16px;
}
.facility-cal2 .facility-txt dl dd {
  margin: 0;
  font-size: 16px;
}
.facility-bg {
  width: 100vw;
  margin: 0 calc(50% - 50vw) 150px calc(50% - 50vw);
}
.facility-bg::after {
  content: " ";
  height: 250px;
  width: 45vw;
  margin: 0 calc(50% - 50vw);
  position: absolute;
  bottom: -30px;
  left: 0;
  background-color: #DFEEDF;
}
@media screen and (max-width: 768px) {
  .facility-bg::after {
    bottom: auto;
    top: 110px;
    height: 200px;
  }
}

.owner {
  width: 1000px;
  margin: 0 auto 80px auto;
}
@media screen and (max-width: 768px) {
  .owner {
    width: calc(100% - 30px);
    box-sizing: border-box;
    margin: 0 auto 0px auto;
  }
}
.owner .owner-voice {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .owner .owner-voice {
    display: block;
  }
}
.owner .owner-voice .owner-voice-txt {
  width: calc(80% - 0px);
  margin: 0 auto;
  box-sizing: border-box;
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .owner .owner-voice .owner-voice-txt {
    width: 100%;
  }
}
.owner .owner-voice .owner-voice-txt dl {
  margin: 0;
}
.owner .owner-voice .owner-voice-txt dl dt {
  color: #698962;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .owner .owner-voice .owner-voice-txt dl dt {
    font-size: 18px;
  }
}
.owner .owner-voice .owner-voice-txt dl dt span {
  display: block;
  font-size: 12px;
  margin-bottom: 10px;
}
.owner .owner-voice .owner-voice-txt dl dd {
  margin: 0;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .owner .owner-voice .owner-voice-txt dl dd {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .contract {
    margin-bottom: 50px;
  }
}
.contract::before {
  content: " ";
  background-image: url("../img/darkgreen-topbg.svg");
  background-repeat: no-repeat;
  background-position: top 50px center;
  background-size: cover;
  height: 250px;
  width: 100%;
  display: block;
}
@media screen and (max-width: 768px) {
  .contract::before {
    background-position: top 0px center;
    height: 120px;
  }
}
.contract::after {
  content: " ";
  background-image: url("../img/darkgreen-bottombg.svg");
  background-repeat: no-repeat;
  background-position: bottom 80px center;
  background-size: cover;
  height: 250px;
  width: 100%;
  display: block;
}
@media screen and (max-width: 768px) {
  .contract::after {
    background-position: bottom 0px center;
    height: 150px;
  }
}
.contract .contract-bg {
  background-color: #DBBCEF;
}
.contract .contract-content {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .contract .contract-content {
    width: calc(100% - 30px);
    box-sizing: border-box;
  }
}
.contract .contract-list {
  display: flex;
}
@media screen and (max-width: 768px) {
  .contract .contract-list {
    display: block;
  }
}
.contract .contract-list .contract-arrow {
  position: relative;
}
.contract .contract-list .contract-arrow::before {
  content: " ";
  display: block;
  width: 30px;
  height: 96.2%;
  background-color: #33285B;
}
.contract .contract-list .contract-arrow::after {
  content: " ";
  position: absolute;
  bottom: 0;
  display: block;
  background-color: #33285B;
  height: 12.124355653px;
  width: 30px;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media screen and (max-width: 768px) {
  .contract .contract-list .contract-arrow::after {
    bottom: 30px;
    right: 0;
    left: 0;
    margin: auto;
    height: 25.9807621135px;
    width: 100px;
  }
}
.contract .contract-list:nth-child(2n) .contract-arrow {
  position: relative;
}
.contract .contract-list:nth-child(2n) .contract-arrow::before {
  content: " ";
  display: block;
  width: 30px;
  height: 96.2%;
  background-color: #6D66B8;
}
.contract .contract-list:nth-child(2n) .contract-arrow::after {
  content: " ";
  position: absolute;
  bottom: 0;
  display: block;
  background-color: #6D66B8;
  height: 12.124355653px;
  width: 30px;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media screen and (max-width: 768px) {
  .contract .contract-list:nth-child(2n) .contract-arrow::after {
    bottom: 30px;
    right: 0;
    left: 0;
    margin: auto;
    height: 25.9807621135px;
    width: 100px;
  }
}
.contract .contract-list .contract-img {
  width: calc(40% - 0px);
  text-align: right;
  padding-bottom: 40px;
  margin-left: 30px;
}
@media screen and (max-width: 768px) {
  .contract .contract-list .contract-img {
    width: 100%;
    margin-left: 0px;
    padding-bottom: 0px;
    margin-bottom: 20px;
  }
}
.contract .contract-list .contract-img img {
  width: 100%;
}
.contract .contract-list .contract-txt {
  width: calc(50% - 0px);
  padding-left: 30px;
}
@media screen and (max-width: 768px) {
  .contract .contract-list .contract-txt {
    width: 100%;
    padding-left: 0px;
    margin-bottom: 80px;
  }
}
.contract .contract-list .contract-txt dl {
  margin: 0;
}
.contract .contract-list .contract-txt dl dt {
  color: #363636;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .contract .contract-list .contract-txt dl dt {
    margin-bottom: 20px;
    font-size: 18px;
  }
}
.contract .contract-list .contract-txt dl dd {
  margin: 0;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .contract .contract-list .contract-txt dl dd {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .contract .contract-list:first-of-type .contract-arrow {
    display: none;
  }
}
.contract .contract-list:last-child .contract-txt {
  margin-bottom: 0;
}

.accordion__list {
  width: 600px;
  margin: 0 auto;
  padding: 10px;
}
@media screen and (max-width: 768px) {
  .accordion__list {
    width: calc(100% - 30px);
    box-sizing: border-box;
  }
}

.accordion__item {
  list-style: none;
  background: #FFF;
  color: #000;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
}

.accordion__item:nth-child(n+2) {
  margin-top: 10px;
}

.accordion__head {
  position: relative;
  width: 100%;
  padding: 0 38px 0 15px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}
.accordion__head .faq-txt {
  width: calc(90% - 0px);
}

.accordion__head::after {
  content: " ";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto 0;
  background-image: url("../img/arrow-black.svg");
  background-repeat: no-repeat;
  height: 8px;
  width: 18px;
}

.accordion__head .q {
  background-color: #0B3E27;
  color: #ffffff;
  font-size: 20px;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  margin-right: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.accordion__item.active .accordion__head::after {
  content: " ";
  transform: rotate(180deg);
}

.accordion__body {
  overflow: hidden;
  width: 100%;
  height: 0;
  padding: 0 38px 0 15px;
  transition: all 0.25s ease;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
}
.accordion__body .faq-txt {
  width: calc(90% - 0px);
}

.accordion__body .a {
  background-color: #EEE6DF;
  font-size: 20px;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  margin-right: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.accordion__item.active .accordion__body {
  height: auto;
}

.footer-catch::before {
  content: " ";
  background-image: url("../img/darkgreen-topbg.svg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  height: 150px;
  width: 100%;
  display: block;
}
@media screen and (max-width: 768px) {
  .footer-catch::before {
    height: 100px;
  }
}
.footer-catch::after {
  content: " ";
  background-image: url("../img/darkgreen-bottombg.svg");
  background-repeat: no-repeat;
  background-position: bottom 50px center;
  background-size: cover;
  height: 170px;
  width: 100%;
  display: block;
}
@media screen and (max-width: 768px) {
  .footer-catch::after {
    background-position: bottom 50px center;
    height: 100px;
  }
}
.footer-catch .footer-catch-bg {
  background-color: #DBBCEF;
}
.footer-catch .footer-catch-content {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .footer-catch .footer-catch-content {
    width: calc(100% - 30px);
    box-sizing: border-box;
  }
}
.footer-catch .title-h1 {
  font-size: 35px;
  text-align: center;
  background-image: none;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .footer-catch .title-h1 {
    font-size: 20px;
    margin-bottom: 30px;
    padding: 0;
  }
}
.footer-catch .btn-red {
  border-radius: 50px;
  background-color: #d30c0c;
  color: #FFF;
  font-size: 20px;
  padding: 24px 50px 24px 100px;
  text-decoration: none;
  width: 260px;
  display: block;
  margin: 0 auto;
  text-align: center;
  background-image: url("../img/arrow-white.svg");
  background-repeat: no-repeat;
  background-position: right 20px center;
}
.footer-catch .btn-red:hover {
  background-color: #8d0b0b;
  color: #fff;
  transition: 1s;
}
.footer-catch-button {
  display: flex;
  justify-content: center;
  width: 1000px;
}
@media screen and (max-width: 768px) {
  .footer-catch-button {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
}
.footer-catch-button-a {
  background-color: #305DBD;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 50px;
  margin: 0 10px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  height: 100px;
  padding: 20px 0;
  box-sizing: border-box;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer-catch-button-a {
    margin: 10px 0;
  }
}
.footer-catch-button-a span {
  display: block;
  width: 100%;
}
.footer-catch-button-a::before {
  content: " ";
  display: block;
  width: 20px;
  height: 100px;
  background-image: url("../img/arrow-white-right.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.footer-catch-button .button-content {
  width: 100%;
}
.footer-catch-button .yellow-button {
  background-color: #FFDA2A;
  color: #363636;
  width: 100%;
  box-sizing: border-box;
}
.footer-catch-button .yellow-button::before {
  content: " ";
  display: block;
  width: 20px;
  height: 100px;
  background-image: url("../img/arrow-black-right.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .footer-catch-button .yellow-button {
    margin-top: 25px;
  }
}
.footer-catch-button .button-main-txt {
  font-weight: bold;
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .footer-catch-button .button-main-txt {
    font-size: 18px;
  }
}
.footer-catch-button .text-link {
  text-decoration: none;
  color: #363636;
  font-size: 14px;
  border-bottom: 1px solid #363636;
  padding: 0 10px 10px 10px;
}
.footer-catch .campaign-box {
  width: 1000px;
  margin: 80px auto 0 auto;
  padding-bottom: 10px;
}
.footer-catch .campaign-box-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .footer-catch .campaign-box-flex {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .footer-catch .campaign-box {
    width: calc(100% - 30px);
    box-sizing: border-box;
  }
}
.footer-catch .campaign-box .campaign-img {
  width: 100%;
  margin: auto;
}
.footer-catch .campaign-box .campaign-img img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .footer-catch .campaign-box .campaign-img {
    width: 80%;
    box-sizing: border-box;
  }
}
.footer-catch .campaign-box .campaign-txt {
  width: 100%;
  text-align: center;
}
.footer-catch .campaign-box .campaign-txt-small {
  font-size: 12px;
  line-height: 1.5em;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .footer-catch .campaign-box .campaign-txt-small {
    font-size: 10px;
  }
}
.footer-catch .campaign-box .campaign-txt-small span {
  display: inline-block;
  text-indent: -1em;
  padding-left: 1em;
}
.footer-catch .campaign-box .campaign-txt-title {
  font-size: 50px;
  margin: 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer-catch .campaign-box .campaign-txt-title {
    font-size: 30px;
  }
}
.footer-catch .campaign-box .campaign-txt h2 {
  margin: 0;
  margin-bottom: 10px;
}
.footer-catch .campaign-box .campaign-txt h3 {
  font-size: 30px;
  margin: 0;
  line-height: 1.5em;
  margin-bottom: 30px;
}
.footer-catch .campaign-box .campaign-txt h3 span {
  font-size: 50px;
  font-weight: bold;
}

.footer-about {
  display: flex;
  width: 800px;
  margin: 0 auto;
  justify-content: space-between;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .footer-about {
    width: calc(100% - 20px);
    box-sizing: border-box;
    display: block;
  }
}
.footer-about .footer-service {
  color: #363636;
}
.footer-about .footer-service .logo {
  font-size: 20px;
  margin: 0 0 10px 0;
}
@media screen and (max-width: 768px) {
  .footer-about .footer-service .logo {
    text-align: center;
  }
}
.footer-about .footer-service .copy {
  font-size: 11px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .footer-about .footer-service .copy {
    text-align: center;
  }
}
.footer-about .footer-link ul {
  display: flex;
  margin: 30px 0 0 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .footer-about .footer-link ul {
    justify-content: center;
  }
}
.footer-about .footer-link ul li {
  list-style: none;
}
.footer-about .footer-link ul li a {
  color: #363636;
  text-decoration: none;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .footer-about .footer-link ul li a {
    font-size: 12px;
  }
}
.footer-about .footer-link ul li:first-child {
  border-right: 1px solid #fff;
  padding-right: 15px;
  margin-right: 15px;
}

/*========= ナビゲーションのためのCSS ===============*/
.header-menu-list {
  width: 80px;
  height: 70px;
  background-color: #000;
}

#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: 0;
  right: -120%;
  width: 60%;
  height: 100vh; /*ナビの高さ*/
  background-image: url("../img/nav-bg.png");
  background-position: bottom;
  /*動き*/
  transition: all 0.6s;
}
@media screen and (max-width: 768px) {
  #g-nav {
    width: 100%;
  }
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  width: 60%;
  height: 500px;
  margin: auto;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 768px) {
  #g-nav.panelactive #g-nav-list {
    width: 90%;
  }
}

/*ナビゲーション*/
#g-nav ul {
  z-index: 999;
  padding: 0;
}

/*リストのレイアウト設定*/
#g-nav li {
  list-style: none;
}

#g-nav li a {
  color: #333;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

.g-nav-list-menu {
  font-size: 40px;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .g-nav-list-menu {
    font-size: 20px;
  }
}
.g-nav-list-menu li {
  text-align: left;
}
.g-nav-list-menu li a {
  border-bottom: 1px solid #000;
}
.g-nav-list-menu li a img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 30px;
}
@media screen and (max-width: 768px) {
  .g-nav-list-menu li a img {
    width: 30px;
    height: 30px;
  }
}

.g-nav-list-submenu {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .g-nav-list-submenu {
    font-size: 12px;
  }
}

.g-nav-list-sns {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  margin: auto;
}
.g-nav-list-sns li a {
  height: 30px;
}
.g-nav-list-sns li a img {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}

/*========= ボタンのためのCSS ===============*/
/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn4 {
  position: relative; /*ボタン内側の基点となるためrelativeを指定*/
  background: #000;
  cursor: pointer;
  width: 80px;
  height: 70px;
  z-index: 1000;
}

/*ボタン内側*/
.openbtn4 span {
  display: inline-block;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  height: 2px;
  background: #fff;
  width: 40%;
}

.openbtn4 span:nth-of-type(1) {
  top: 23px;
}

.openbtn4 span:nth-of-type(2) {
  top: 29px;
}

.openbtn4 span:nth-of-type(3) {
  top: 35px;
}

.openbtn4 span:nth-of-type(3)::after {
  content: "Menu"; /*3つ目の要素のafterにMenu表示を指定*/
  position: absolute;
  top: 6px;
  left: 1px;
  color: #fff;
  font-size: 0.6rem;
  text-transform: uppercase;
}

/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/
.openbtn4.active span:nth-of-type(1) {
  top: 18px;
  left: 0px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn4.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn4.active span:nth-of-type(3) {
  top: 31px;
  left: 0px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

.openbtn4.active span:nth-of-type(3)::after {
  content: "Close";
  transform: translateY(0) rotate(-45deg);
  top: 8px;
  left: 10px;
}

#company .header-hero, #privacypolicy .header-hero, #contact .header-hero {
  background: none;
  padding: 0;
  text-align: center;
  display: block;
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  #company .header-hero, #privacypolicy .header-hero, #contact .header-hero {
    margin-top: 150px;
  }
}
#company .header-hero .header-hero-content h1, #privacypolicy .header-hero .header-hero-content h1, #contact .header-hero .header-hero-content h1 {
  font-size: 50px;
}
@media screen and (max-width: 768px) {
  #company .header-hero .header-hero-content h1, #privacypolicy .header-hero .header-hero-content h1, #contact .header-hero .header-hero-content h1 {
    font-size: 30px;
  }
}
#company .header-hero .header-hero-content h1 span, #privacypolicy .header-hero .header-hero-content h1 span, #contact .header-hero .header-hero-content h1 span {
  font-size: 16px;
  color: #698962;
  display: block;
}

#company .about {
  z-index: 2;
  position: relative;
  margin-top: -200px;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  #company .about {
    margin-top: 0px;
  }
}
#company .about::before {
  content: " ";
  background-image: url("../img/green-topbg-main.svg");
  background-repeat: no-repeat;
  background-position: top 150px center;
  background-size: cover;
  height: 410px;
  width: 100%;
  display: block;
}
@media screen and (max-width: 768px) {
  #company .about::before {
    background-position: top 50px center;
    height: 150px;
  }
}
#company .about .about-bg {
  background: linear-gradient(180deg, #DFEEDF 0%, rgba(255, 255, 255, 0) 100%);
}
#company .about .about-content {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #company .about .about-content {
    width: calc(100% - 30px);
    box-sizing: border-box;
  }
}
#company .about .about-content .about-company {
  width: 900px;
  margin: 0 auto;
  padding: 0;
}
@media screen and (max-width: 768px) {
  #company .about .about-content .about-company {
    width: 100%;
    box-sizing: border-box;
  }
}
#company .about .about-content .about-company .about-company__item {
  border-bottom: 1px solid #363636;
  height: 71px;
  display: flex;
  align-items: center;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  #company .about .about-content .about-company .about-company__item {
    display: block;
    height: auto;
    padding: 20px 0;
  }
}
#company .about .about-content .about-company .about-company__item .company__item__header {
  width: 12%;
  padding: 0 3vw;
  text-align: right;
}
@media screen and (max-width: 768px) {
  #company .about .about-content .about-company .about-company__item .company__item__header {
    text-align: left;
    display: block;
    margin-bottom: 10px;
    width: 100%;
    padding: 0;
    font-weight: bold;
    font-size: 14px;
  }
}
#company .about .about-content .about-company .about-company__item .company__item__data {
  padding-left: 3vw;
  width: calc(100% - 5em - 6vw - 3vw);
}
@media screen and (max-width: 768px) {
  #company .about .about-content .about-company .about-company__item .company__item__data {
    width: 100%;
    padding: 0;
  }
}

#privacypolicy .privacypolicy {
  z-index: 2;
  position: relative;
  margin-top: -200px;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  #privacypolicy .privacypolicy {
    margin-top: 0px;
  }
}
#privacypolicy .privacypolicy::before {
  content: " ";
  background-image: url("../img/green-topbg-main.svg");
  background-repeat: no-repeat;
  background-position: top 150px center;
  background-size: cover;
  height: 410px;
  width: 100%;
  display: block;
}
@media screen and (max-width: 768px) {
  #privacypolicy .privacypolicy::before {
    background-position: top 50px center;
    height: 150px;
  }
}
#privacypolicy .privacypolicy .privacypolicy-bg {
  background: linear-gradient(180deg, #0B3E27 0%, rgba(255, 255, 255, 0) 100%);
}
#privacypolicy .privacypolicy .privacypolicy-content {
  width: 1000px;
  margin: 0 auto;
  padding-top: 40px;
}
@media screen and (max-width: 768px) {
  #privacypolicy .privacypolicy .privacypolicy-content {
    width: calc(100% - 30px);
    box-sizing: border-box;
  }
}
#privacypolicy .privacypolicy .privacypolicy-content .policy__title {
  display: inline-block;
  font-size: 22px;
  padding: 0.1rem 1rem;
  border-left: 6px double #ffffff;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #privacypolicy .privacypolicy .privacypolicy-content .policy__title {
    font-size: 18px;
  }
}
#privacypolicy .privacypolicy .privacypolicy-content .policy__text {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  #privacypolicy .privacypolicy .privacypolicy-content .policy__text {
    font-size: 14px;
  }
}
#privacypolicy .privacypolicy .privacypolicy-content .policy__text a {
  color: #30b2ee;
}

#contact .contact-block {
  z-index: 2;
  position: relative;
  margin-top: -200px;
}
#contact .contact-block::before {
  content: " ";
  background-image: url("../img/green-topbg-main.svg");
  background-repeat: no-repeat;
  background-position: top 150px center;
  background-size: cover;
  height: 410px;
  width: 100%;
  display: block;
}
#contact .contact-block .contact-bg {
  background: linear-gradient(180deg, #0B3E27 0%, rgba(255, 255, 255, 0) 100%);
}
#contact .contact-block .contact-content {
  width: 1000px;
  margin: 0 auto;
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  #contact .contact-block .contact-content {
    width: calc(100% - 20px);
    box-sizing: border-box;
  }
}
#contact .contact-block .contact-content .contact-header {
  width: 760px;
  margin: 80px auto 0 auto;
  background-color: #b1c5a8;
}
@media screen and (max-width: 768px) {
  #contact .contact-block .contact-content .contact-header {
    width: 100%;
  }
}
#contact .contact-block .contact-content .contact-header h2 {
  font-size: 18px;
  text-align: center;
  padding: 0;
  margin: 0;
}
#contact .contact-block .contact-content .contact-header p {
  font-size: 12px;
}
#contact .contact-block .contact-content .contact-header .cal2 img {
  width: 100%;
  height: 100%;
  max-width: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  #contact .contact-block .contact-content .contact-header .contact-header-img {
    display: none;
  }
}
#contact .contact-block .contact-content .contact-header .contact-header-txt {
  padding: 20px;
}
#contact .contact-block .contact-content .contact__title {
  display: inline-block;
  font-size: 22px;
  padding: 0.1rem 1rem;
  border-left: 6px double #363636;
  margin-bottom: 20px;
}
#contact .contact-block .contact-content .contact__text {
  margin-bottom: 50px;
}
#contact .contact-block .contact-content .faq-txt {
  font-size: 12px;
  color: #000;
}
#contact .contact-block .contact-content .wpcf7-form {
  width: 800px;
  margin: 0 auto;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  #contact .contact-block .contact-content .wpcf7-form {
    width: 100%;
  }
  #contact .contact-block .contact-content .wpcf7-form .w-40 {
    width: 30% !important;
  }
}
#contact .contact-block .contact-content .wpcf7-form .form-flex {
  display: flex;
  justify-content: space-between;
}
#contact .contact-block .contact-content .wpcf7-form .form-flex div {
  width: calc(49% - 0px);
}
#contact .contact-block .contact-content .wpcf7-form .form-flex3 {
  display: flex;
}
#contact .contact-block .contact-content .wpcf7-form .form-flex3 div {
  margin-left: 10px;
}
#contact .contact-block .contact-content .wpcf7-form .form-flex3 div:first-child {
  margin-left: 0;
}
#contact .contact-block .contact-content .wpcf7-form .form-flex-b {
  display: flex;
  justify-content: space-evenly;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 50px auto 0 auto;
}
@media screen and (max-width: 768px) {
  #contact .contact-block .contact-content .wpcf7-form .form-flex-b {
    width: 100%;
  }
}
#contact .contact-block .contact-content .wpcf7-form .form-flex-b .wpcf7-previous {
  border-radius: 50px;
  background-color: #9e9e9e;
  color: #FFF;
  font-size: 14px;
  padding: 16px 20px 16px 20px;
  text-decoration: none;
  border: none;
  text-align: center;
  display: block;
  width: 300px;
  margin: 0 10px 0 10px;
}
@media screen and (max-width: 768px) {
  #contact .contact-block .contact-content .wpcf7-form .form-flex-b .wpcf7-previous {
    width: 100%;
  }
}
#contact .contact-block .contact-content .wpcf7-form .form-flex-b .wpcf7-submit {
  margin: 0 10px 0 10px;
}
@media screen and (max-width: 768px) {
  #contact .contact-block .contact-content .wpcf7-form .form-flex-b .wpcf7-submit {
    width: 100%;
  }
}
#contact .contact-block .contact-content .wpcf7-form .form-flex-b .wpcf7-spinner {
  display: none;
}
#contact .contact-block .contact-content .wpcf7-form label {
  font-weight: bold;
  display: block;
  color: #ffffff;
  font-size: 14px;
}
#contact .contact-block .contact-content .wpcf7-form label span {
  font-size: 12px;
  font-weight: normal;
}
#contact .contact-block .contact-content .wpcf7-form input[type=text], #contact .contact-block .contact-content .wpcf7-form input[type=email], #contact .contact-block .contact-content .wpcf7-form input[type=tel], #contact .contact-block .contact-content .wpcf7-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 16px;
}
#contact .contact-block .contact-content .wpcf7-form input[type=text]:focus, #contact .contact-block .contact-content .wpcf7-form input[type=email]:focus, #contact .contact-block .contact-content .wpcf7-form input[type=tel]:focus, #contact .contact-block .contact-content .wpcf7-form textarea:focus {
  border-color: #007bff;
  outline: none;
}
#contact .contact-block .contact-content .wpcf7-form .wpcf7-select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
}
#contact .contact-block .contact-content .wpcf7-form .wpcf7-number {
  width: 50%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
}
#contact .contact-block .contact-content .wpcf7-form button {
  padding: 10px 20px;
  background-color: #3a9661;
  color: #ffffff;
  border: none;
  cursor: pointer;
  width: 200px;
  margin: 0 auto;
  font-size: 14px;
  display: block;
  border-radius: 100px;
}
#contact .contact-block .contact-content .wpcf7-form button:hover {
  background-color: #70b68e;
}
#contact .contact-block .contact-content .wpcf7-form .form-item {
  margin-bottom: 20px;
  width: 100%;
  font-size: 16px;
}
#contact .contact-block .contact-content .wpcf7-form .accordion__list {
  width: 800px;
  box-sizing: border-box;
  padding: 0;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  #contact .contact-block .contact-content .wpcf7-form .accordion__list {
    width: 100%;
  }
}
#contact .contact-block .contact-content .wpcf7-form .accordion__list .accordion__item {
  background: #ffffff;
}
#contact .contact-block .contact-content .wpcf7-form .accordion__list .accordion__body {
  display: block;
}
#contact .contact-block .contact-content .wpcf7-form .wpcf7-submit {
  border-radius: 50px;
  background-color: #D54C4C;
  color: #FFF;
  font-size: 14px;
  padding: 16px 20px 16px 20px;
  text-decoration: none;
  border: none;
  text-align: center;
  display: block;
  width: 300px;
  margin: 50px auto 0px auto;
}

#contact .form-step {
  display: flex;
  width: 800px;
  margin: 0px auto 30px auto;
  text-align: center;
  background-color: #b1c5a8;
}
@media screen and (max-width: 768px) {
  #contact .form-step {
    width: 100%;
  }
}
#contact .form-step .step1 {
  width: 100%;
  border-bottom: 4px solid #409340;
  padding: 10px 0;
  position: relative;
  background-color: #698962;
  color: #ffffff;
  font-size: 14px;
}
#contact .form-step .step1::after {
  content: " ";
  display: block;
  background: #698962;
  height: 51.9615242271px;
  width: 50px;
  height: 100%;
  -webkit-clip-path: polygon(0 0, 50% 50%, 0 100%);
          clip-path: polygon(0 0, 50% 50%, 0 100%);
  position: absolute;
  top: 0;
  right: -49px;
  z-index: 1;
}
#contact .form-step .step2 {
  width: 100%;
  border-bottom: 4px solid #409340;
  padding: 10px 0;
  position: relative;
  background-color: #87af75;
  color: #658956;
  font-size: 14px;
}
#contact .form-step .step2::after {
  content: " ";
  display: block;
  background: #87af75;
  height: 51.9615242271px;
  width: 50px;
  height: 100%;
  -webkit-clip-path: polygon(0 0, 50% 50%, 0 100%);
          clip-path: polygon(0 0, 50% 50%, 0 100%);
  position: absolute;
  top: 0;
  right: -49px;
}
#contact .form-step .step3 {
  width: 100%;
  border-bottom: 4px solid #409340;
  padding: 10px 0;
  color: #869c7c;
  font-size: 14px;
}
#contact .form-step span {
  display: block;
  font-size: 12px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #contact .form-step span {
    font-size: 8px;
  }
}
#contact.contact-confirm .form-step {
  display: flex;
  width: 800px;
  margin: 0 auto 30px auto;
  text-align: center;
  background-color: #b1c5a8;
}
@media screen and (max-width: 768px) {
  #contact.contact-confirm .form-step {
    width: 100%;
  }
}
#contact.contact-confirm .form-step .step1 {
  width: 100%;
  border-bottom: 4px solid #409340;
  padding: 10px 0;
  position: relative;
  background-color: #87af75;
  color: #658956;
  font-size: 14px;
}
#contact.contact-confirm .form-step .step1::after {
  content: " ";
  display: block;
  background: #87af75;
  height: 51.9615242271px;
  width: 50px;
  height: 100%;
  -webkit-clip-path: polygon(0 0, 50% 50%, 0 100%);
          clip-path: polygon(0 0, 50% 50%, 0 100%);
  position: absolute;
  top: 0;
  right: -49px;
  z-index: 1;
}
#contact.contact-confirm .form-step .step2 {
  width: 100%;
  border-bottom: 4px solid #409340;
  padding: 10px 0;
  position: relative;
  background-color: #698962;
  color: #ffffff;
  font-size: 14px;
}
#contact.contact-confirm .form-step .step2::after {
  content: " ";
  display: block;
  background: #698962;
  height: 51.9615242271px;
  width: 50px;
  height: 100%;
  -webkit-clip-path: polygon(0 0, 50% 50%, 0 100%);
          clip-path: polygon(0 0, 50% 50%, 0 100%);
  position: absolute;
  top: 0;
  right: -49px;
}
#contact.contact-confirm .form-step .step3 {
  width: 100%;
  border-bottom: 4px solid #409340;
  padding: 10px 0;
  color: #869c7c;
  font-size: 14px;
}
#contact.contact-confirm .form-step span {
  display: block;
  font-size: 12px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #contact.contact-confirm .form-step span {
    font-size: 8px;
  }
}
#contact.contact-thanks .form-step {
  display: flex;
  width: 800px;
  margin: 0 auto 30px auto;
  text-align: center;
  background-color: #b1c5a8;
}
@media screen and (max-width: 768px) {
  #contact.contact-thanks .form-step {
    width: 100%;
  }
}
#contact.contact-thanks .form-step .step1 {
  width: 100%;
  border-bottom: 4px solid #409340;
  padding: 10px 0;
  position: relative;
  background-color: #b1c5a8;
  color: #658956;
  font-size: 14px;
}
#contact.contact-thanks .form-step .step1::after {
  content: " ";
  display: block;
  background-color: #b1c5a8;
  height: 51.9615242271px;
  width: 50px;
  height: 100%;
  -webkit-clip-path: polygon(0 0, 50% 50%, 0 100%);
          clip-path: polygon(0 0, 50% 50%, 0 100%);
  position: absolute;
  top: 0;
  right: -49px;
  z-index: 1;
}
#contact.contact-thanks .form-step .step2 {
  width: 100%;
  border-bottom: 4px solid #409340;
  padding: 10px 0;
  position: relative;
  background-color: #87af75;
  color: #658956;
  font-size: 14px;
}
#contact.contact-thanks .form-step .step2::after {
  content: " ";
  display: block;
  background-color: #87af75;
  height: 51.9615242271px;
  width: 50px;
  height: 100%;
  -webkit-clip-path: polygon(0 0, 50% 50%, 0 100%);
          clip-path: polygon(0 0, 50% 50%, 0 100%);
  position: absolute;
  top: 0;
  right: -49px;
}
#contact.contact-thanks .form-step .step3 {
  width: 100%;
  border-bottom: 4px solid #409340;
  padding: 10px 0;
  background-color: #698962;
  color: #ffffff;
  font-size: 14px;
}
#contact.contact-thanks .form-step span {
  display: block;
  font-size: 12px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #contact.contact-thanks .form-step span {
    font-size: 8px;
  }
}

.contact-thanks-content {
  width: 800px;
  margin: 0 auto 30px auto;
  text-align: center;
}

.wpcf7-not-valid-tip {
  font-size: 12px;
}

.home-contact .form-step {
  display: flex;
  width: 800px;
  margin: 0 auto 30px auto;
  text-align: center;
  background-color: #b1c5a8;
}
@media screen and (max-width: 768px) {
  .home-contact .form-step {
    width: 100%;
  }
}
.home-contact .form-step .step1 {
  width: 100%;
  border-bottom: 4px solid #409340;
  padding: 10px 0;
  position: relative;
  background-color: #87af75;
  color: #ffffff;
  font-size: 14px;
}
.home-contact .form-step .step1::after {
  content: " ";
  display: block;
  background: #87af75;
  height: 51.9615242271px;
  width: 50px;
  height: 100%;
  -webkit-clip-path: polygon(0 0, 50% 50%, 0 100%);
          clip-path: polygon(0 0, 50% 50%, 0 100%);
  position: absolute;
  top: 0;
  right: -49px;
  z-index: 1;
}
.home-contact .form-step .step2 {
  width: 100%;
  border-bottom: 4px solid #409340;
  padding: 10px 0;
  position: relative;
  background-color: #698962;
  color: #416c46;
  font-size: 14px;
}
.home-contact .form-step .step2::after {
  content: " ";
  display: block;
  background: #698962;
  height: 51.9615242271px;
  width: 50px;
  height: 100%;
  -webkit-clip-path: polygon(0 0, 50% 50%, 0 100%);
          clip-path: polygon(0 0, 50% 50%, 0 100%);
  position: absolute;
  top: 0;
  right: -49px;
}
.home-contact .form-step .step3 {
  width: 100%;
  border-bottom: 4px solid #409340;
  padding: 10px 0;
  color: #869c7c;
  font-size: 14px;
}
.home-contact .form-step span {
  display: block;
  font-size: 12px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .home-contact .form-step span {
    font-size: 8px;
  }
}
.home-contact .contact-content {
  width: 1000px;
  margin: 0 auto;
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  .home-contact .contact-content {
    width: calc(100% - 20px);
    box-sizing: border-box;
  }
}
.home-contact .contact-content .contact__title {
  display: inline-block;
  font-size: 22px;
  padding: 0.1rem 1rem;
  border-left: 6px double #363636;
  margin-bottom: 20px;
}
.home-contact .contact-content .contact__text {
  margin-bottom: 50px;
}
.home-contact .contact-content .faq-txt {
  font-size: 12px;
}
.home-contact .contact-content .wpcf7-form {
  width: 800px;
  margin: 0 auto;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .home-contact .contact-content .wpcf7-form {
    width: 100%;
  }
  .home-contact .contact-content .wpcf7-form .w-40 {
    width: 30% !important;
  }
}
.home-contact .contact-content .wpcf7-form .form-flex {
  display: flex;
  justify-content: space-between;
}
.home-contact .contact-content .wpcf7-form .form-flex div {
  width: calc(49% - 0px);
}
.home-contact .contact-content .wpcf7-form .form-flex3 {
  display: flex;
}
.home-contact .contact-content .wpcf7-form .form-flex3 div {
  margin-left: 10px;
}
.home-contact .contact-content .wpcf7-form .form-flex3 div:first-child {
  margin-left: 0;
}
.home-contact .contact-content .wpcf7-form .form-flex-b {
  display: flex;
  justify-content: space-evenly;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 50px auto 0 auto;
}
@media screen and (max-width: 768px) {
  .home-contact .contact-content .wpcf7-form .form-flex-b {
    width: 100%;
  }
}
.home-contact .contact-content .wpcf7-form .form-flex-b .wpcf7-previous {
  border-radius: 50px;
  background-color: #9e9e9e;
  color: #FFF;
  font-size: 14px;
  padding: 16px 20px 16px 20px;
  text-decoration: none;
  border: none;
  text-align: center;
  display: block;
  width: 300px;
  margin: 0 10px 0 10px;
}
@media screen and (max-width: 768px) {
  .home-contact .contact-content .wpcf7-form .form-flex-b .wpcf7-previous {
    width: 100%;
  }
}
.home-contact .contact-content .wpcf7-form .form-flex-b .wpcf7-submit {
  margin: 0 10px 0 10px;
}
@media screen and (max-width: 768px) {
  .home-contact .contact-content .wpcf7-form .form-flex-b .wpcf7-submit {
    width: 100%;
  }
}
.home-contact .contact-content .wpcf7-form .form-flex-b .wpcf7-spinner {
  display: none;
}
.home-contact .contact-content .wpcf7-form label {
  font-weight: bold;
  display: block;
  color: #63836b;
  font-size: 12px;
}
.home-contact .contact-content .wpcf7-form label span {
  font-size: 12px;
  font-weight: normal;
}
.home-contact .contact-content .wpcf7-form input[type=text], .home-contact .contact-content .wpcf7-form input[type=email], .home-contact .contact-content .wpcf7-form input[type=tel], .home-contact .contact-content .wpcf7-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 16px;
}
.home-contact .contact-content .wpcf7-form input[type=text]:focus, .home-contact .contact-content .wpcf7-form input[type=email]:focus, .home-contact .contact-content .wpcf7-form input[type=tel]:focus, .home-contact .contact-content .wpcf7-form textarea:focus {
  border-color: #007bff;
  outline: none;
}
.home-contact .contact-content .wpcf7-form .wpcf7-select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
}
.home-contact .contact-content .wpcf7-form .wpcf7-number {
  width: 50%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-sizing: border-box;
}
.home-contact .contact-content .wpcf7-form button {
  padding: 10px 20px;
  background-color: #3a9661;
  color: #ffffff;
  border: none;
  cursor: pointer;
  width: 200px;
  margin: 0 auto;
  font-size: 14px;
  display: block;
  border-radius: 100px;
}
.home-contact .contact-content .wpcf7-form button:hover {
  background-color: #70b68e;
}
.home-contact .contact-content .wpcf7-form .form-item {
  margin-bottom: 20px;
  width: 100%;
  font-size: 16px;
}
.home-contact .contact-content .wpcf7-form .accordion__list {
  width: 800px;
  box-sizing: border-box;
  padding: 0;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .home-contact .contact-content .wpcf7-form .accordion__list {
    width: 100%;
  }
}
.home-contact .contact-content .wpcf7-form .accordion__list .accordion__item {
  background: #ffffff;
}
.home-contact .contact-content .wpcf7-form .accordion__list .accordion__body {
  display: block;
}
.home-contact .contact-content .wpcf7-form .wpcf7-submit {
  border-radius: 50px;
  background-color: #D54C4C;
  color: #FFF;
  font-size: 14px;
  padding: 16px 20px 16px 20px;
  text-decoration: none;
  border: none;
  text-align: center;
  display: block;
  width: 300px;
  margin: 50px auto 0px auto;
}

.support {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .support {
    margin-bottom: 0px;
  }
}
.support .support-box {
  display: flex;
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .support .support-box {
    width: calc(100% - 30px);
    box-sizing: border-box;
    display: block;
  }
}
.support .support-box p {
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .support .support-box p {
    margin-right: 0px;
  }
}
.support .support-box p img {
  width: 100%;
}
.support .support-box dl {
  margin-bottom: 80px;
  width: calc(100% - 30px);
}
@media screen and (max-width: 768px) {
  .support .support-box dl {
    width: 100%;
  }
}
.support .support-box dl dt {
  margin: 0;
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: bold;
}
.support .support-box dl dd {
  margin: 0;
}

.main-content {
  width: 1000px;
  margin: 200px auto 300px auto;
}
@media screen and (max-width: 768px) {
  .main-content {
    width: calc(100% - 30px);
    box-sizing: border-box;
  }
}
.main-content .title-h2 {
  margin-top: 50px;
  font-size: 20px;
  text-align: left;
}
.main-content .policy-content {
  display: flex;
}
.main-content .policy-content ol {
  list-style-position: outside;
  padding-left: 1.5em;
  margin-left: 1.5em;
}
.main-content .policy-content ol li {
  margin-bottom: 0.4em;
}
.main-content .policy-content-number {
  flex-shrink: 0;
  padding-right: 20px;
}
.main-content .present-content {
  border: 1px solid #ccc;
  padding: 0 80px 80px 80px;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .main-content .present-content {
    padding: 0 30px 30px 30px;
  }
}
.main-content .present-content p {
  margin: 0.4em;
  padding: 0;
}

.purple-blue {
  color: #536de0;
  font-weight: bold;
}

table {
  width: 100%;
  border-collapse: collapse;
}
table th, table td {
  border: 1px solid #ccc;
  padding: 12px 16px;
  vertical-align: top;
}
table th {
  background-color: #f3f3f3;
  font-weight: 700;
  text-align: left;
  white-space: nowrap;
}