* {
  box-sizing: border-box;
  font-family: "Roboto", "Arial", "Yu Gothic", "游ゴシック体", YuGothic,
    "游ゴシック Medium", "Yu Gothic Medium", "Hiragino Kaku Gothic ProN",
    "ヒラギノ角ゴ ProN W3", メイリオ, sans-serif;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
  color: #333333;
}
.flex {
  display: flex;
}
.col {
  flex-direction: column;
}
.a-c {
  align-items: center;
}
.a-b {
  align-items: baseline;
}
.j-c {
  justify-content: center;
}
.j-b {
  justify-content: space-between;
}
.j-a {
  justify-content: space-around;
}
.j-e {
  justify-content: space-evenly;
}
a {
  text-decoration: none;
  color: #000;
}
button {
  cursor: pointer;
}

/* === Header.css ======= */
header {
  width: 100%;
}
header .container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  padding-inline: 163px 279px;
  background-color: #ffffff;
}
.logo {
  width: 242px;
  height: auto;
}
.company-intro {
  gap: 42px;
}
.company-info {
  gap: 7px;
}
.company-info p:nth-of-type(1) {
  font-size: 30px;
  font-weight: 600;
}
.company-info p:nth-of-type(2) {
  font-size: 25px;
  font-weight: 400;
}
.CTA-btn {
  background-color: #f03b3b;
  width: 480px;
  height: 70px;
  border-radius: 4px;
  gap: 10px;
}
.CTA-btn p {
  font-size: 27px;
  font-weight: 600;
  color: #ffffff;
}
.CTA-btn img {
  width: 16px;
  height: auto;
}

@keyframes pulu {
	0% { transform: scale(1) rotate(0deg); }
	25% { transform: scale(1.02) rotate(1deg); }
	50% { transform: scale(0.98) rotate(-1deg); }
	75% { transform: scale(1.01) rotate(0.5deg); }
	100% { transform: scale(1) rotate(0deg); }
}

.pulu-img {
	animation: pulu 1.5s infinite;
	transform-origin: center;
}

.pulu-img {
	transition: all 0.3s ease;
}

.pulu-img:hover {
	animation: pulu 0.5s infinite;
}

@keyframes bounce {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

.bounce-img {
	animation: bounce 1s infinite ease-in-out;
}


@keyframes bounce1 {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

.bounce1-img {
	animation: bounce1 2s infinite ease-in-out;
}

.shine-wrapper {
	position: relative;
	display: inline-block;
	overflow: hidden;
}

.shine-wrapper::before {
	content: '';
	position: absolute;
	top: -100%;
	left: -100%;
	width: 200%;
	height: 200%;
	background: linear-gradient(120deg, rgba(255,255,255,0) 30%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0) 70%);
	transform: skewX(-20deg);
	animation: shine 3s infinite;
	pointer-events: none;
	z-index: 1;
}

@keyframes shine {
	0% {
		transform: translateX(-100%) skewX(-20deg);
	}
	100% {
		transform: translateX(100%) skewX(-20deg);
	}
}


.shine-effect {
	position: relative;
	display: inline-block;
	overflow: hidden;
}

.shine-effect::before {
	content: "";
	position: absolute;
	top: -100%;
	left: -100%;
	width: 200%;
	height: 200%;
	background: linear-gradient(
		120deg,
		transparent 0%,
		rgba(255, 255, 255, 0.6) 50%,
		transparent 100%
	);
	transform: rotate(25deg);
	animation: shineMove 3s infinite;
	pointer-events: none;
}

@keyframes shineMove {
	0% {
		transform: translateX(-100%) rotate(25deg);
	}
	100% {
		transform: translateX(100%) rotate(25deg);
	}
}



/*animation*/
@-webkit-keyframes fadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 50%, 0);
		transform: translate3d(0, 50%, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 50%, 0);
		transform: translate3d(0, 50%, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

.fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
}



@-webkit-keyframes fadeInRight {
	from {
		opacity: 0;
		-webkit-transform: translateX(40px);
		transform: translateX(40px);
	}

	to {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		-webkit-transform: translateX(40px);
		transform: translateX(40px);
	}

	to {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

.fadeInRight {
	-webkit-animation-name: fadeInRight;
	animation-name: fadeInRight;
}



@-webkit-keyframes fadeInLeft {
	from {
		opacity: 0;
		-webkit-transform: translateX(-60px);
		transform: translateX(-60px);
	}

	to {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		-webkit-transform: translateX(-60px);
		transform: translateX(-60px);
	}

	to {
		opacity: 1;
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

.fadeInLeft {
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft;
}

.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

@media (min-width: 1028px) {
  .revealBx
  {display: inline-block;}

  .animated .reveal_in
  {
    width:100%; 
    position:relative;
    transform:scaleX(0);
    transform-origin:left;
    animation:reveal 0.2s ease-in-out forwards;
    animation-delay:0.4s;
  }

  .animated .reveal_in:after
  {
    content:"";
    width:100%;
    height:100%;
    position:absolute; top:0; left:0;
    background:#121212;
    z-index:1;
    animation:reveal 0.2s reverse forwards;
    animation-delay:1s;
    transform-origin:right;
  }

  .delay1 .reveal_in
  {animation-delay:0.6s;}

  .delay1 .reveal_in:after
  {animation-delay:1.2s;}

  .delay2 .reveal_in
  {animation-delay:0.8s;}

  .delay2 .reveal_in:after
  {animation-delay:1.4s;}

  .delay3 .reveal_in
  {animation-delay:1s;}

  .delay3 .reveal_in:after
  {animation-delay:1.6s;}

  @keyframes reveal
  {
    0%
    {
      transform:scaleX(0);
    }
    
    100%
    {
      transform:scaleX(1);
    }
  }
  @-webkit-keyframes sonarEffect {
    0%
    {
      transform:scaleX(0);
    }
    
    100%
    {
      transform:scaleX(1);
    }
  }
  @-moz-keyframes sonarEffect {
    0%
    {
      transform:scaleX(0);
    }
    
    100%
    {
      transform:scaleX(1);
    }
  }
}


/* ======= Main.css ======== */
main {
  width: 100%;
}
.first-view {
  background: url("../img/first-view.png") no-repeat center / cover;
  width: 100%;
  height: fit-content;
  padding-top: 222px;
  padding-left: 299px;
  padding-bottom: 50px;
}
.age-able {
  gap: 27px;
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 24px;
}
.able {
  padding: 0px 25px;
  background-color: #333333;
  color: #ffda60;
}
.emphasize {
  margin-bottom: 47px;
}
.emphasize img {
  width: auto;
  height: 130px;
}
.cal-card-group {
  margin-bottom: 40px;
}
.cal-card-group img {
  width: 374px;
  height: auto;
}
.first-view-com {
  margin-bottom: 47px;
}
.first-view-com img {
  width: auto;
  height: 173px;
}
.member-name {
  position: absolute;
  top: 713px;
  right: 196px;
}
.member-name img {
  width: auto;
  height: 140px;
}
.mail-line {
  padding-left: 58px;
  gap: 70px;
  margin-bottom: 40px;
}
.mail-line a {
  background-color: #f03b3b;
  border: 3px solid #ca3030;
  border-radius: 200px;
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 38px;
  font-weight: 600;
  color: #ffffff;
  padding: 17px 50px;
}
.mail-line a img {
  width: auto;
  height: 36px;
}
.mail-line a:nth-of-type(2) {
  background-color: #03c251;
  border: 3px solid #2ca95f;
  padding: 8px 40px;
}
.mail-line a:nth-of-type(2) img {
  width: auto;
  height: 66px;
}
.pay-btn {
  display: flex;
  justify-content: center;
  padding-right: 242px;
}
.pay-btn a {
  background-color: #f03b3b;
  border: 3px solid #ca3030;
  border-radius: 200px;
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 38px;
  font-weight: 600;
  color: #ffffff;
  padding: 17px 50px;
  width: max-content;
}
.pay-btn img {
  width: auto;
  height: 50px;
}
.arrow {
  width: auto !important;
  height: 36px !important;
}
.container {
  width: 1320px;
}
.badge {
  padding-block: 47px;
  flex-wrap: nowrap;
  width: max-content;
  gap: 104px;
}
.badge-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.badge img {
  width: auto;
  height: 127px;
  flex-shrink: 0;
}
.ask-request-section {
  background: url("../img/ask-request.png") no-repeat center / cover;
  width: 100%;
  padding-block: 160px 95px;
}
.ask-title {
  font-size: 44px;
  font-weight: 600;
  background-color: #535353;
  color: #ffffff;
  width: 100%;
  height: 90px;
  margin-bottom: 89px;
}
.ask-img-group {
  width: 100%;
  position: relative;
}
.ask-img-group img {
  padding-top: 143px;
  width: 365px;
  height: auto;
}
.ask-img-txt {
  position: absolute;
  font-size: 36px;
  color: #000000;
  font-weight: 600;
  width: max-content;
  background-color: #ffffff;
  border-radius: 200px;
  padding: 15px 35px;
  box-shadow: 4px 2px 5px rgba(0, 0, 0, 0.1);
}
.ask-img-txt:nth-of-type(1) {
  top: 0;
  right: 0;
}
.ask-img-txt:nth-of-type(2) {
  top: 36px;
  left: 0;
}
.ask-img-txt:nth-of-type(3) {
  top: 261px;
  left: 36px;
}
.ask-img-txt:nth-of-type(4) {
  top: 207px;
  right: 59px;
}
.beware-section {
  background-color: #535353;
  padding-bottom: 131px;
}
.ask-bottom-arrow img {
  width: auto;
  height: 100px;
  margin-top: -1px;
}
.beware-title {
  font-size: 56px;
  color: #ffffff;
  font-weight: 600;
  margin-top: 98px;
  margin-bottom: 75px;
}
.beware-title span {
  font-size: 78px;
}
.beware-blog-group {
  width: 100%;
  gap: 39px;
}
.beware-blog {
  width: 100%;
  gap: 65px;
  background-color: #ffffff;
}
.beware-blog img {
  width: 430px;
  height: auto;
}
.beware-blog-info-icon img {
  width: 38px;
}
.beware-blog-title {
  font-size: 42px;
  font-weight: 600;
}
.beware-blog-info {
  gap: 20px;
}
.beware-blog-info-txt {
  font-size: 32px;
}
.reasons-section {
  width: 100%;
  background-color: #ffe6e6;
  padding-block: 138px 50px;
}
.reason-title {
  width: 100%;
  margin-bottom: 118px;
}
.reason-title img {
  width: auto;
  height: 197px;
}
.reason-group {
  flex-wrap: wrap;
  gap: 56px;
}
.reason-group img {
  width: fit-content;
  height: 320px;
}
.cost-plan-section {
  width: 100%;
  background-color: #ffe6e6;
  padding-top: 148px;
  padding-bottom: 155px;
}
.cost-plan-title {
  width: 100%;
  font-size: 52px;
  font-weight: 600;
  margin-bottom: 134px;
}
.cost-plan-title p {
  position: relative;
}
.cost-plan-title p::before {
  content: "";
  position: absolute;
  bottom: -21px;
  left: 42px;
  width: 180px;
  height: 13px;
  background-color: #f03b3b;
}
.cost-plan-section img {
  width: auto;
  height: 300px;
}
.cost-plan-content {
  gap: 50px;
}
.construction-section {
  width: 100%;
  padding-top: 217px;
  padding-bottom: 114px;
}
.construction-title {
  width: 100%;
  font-size: 62px;
  font-weight: 600;
  margin-bottom: 112px;
}
.construction-title p {
  position: relative;
}
.construction-title p::before {
  content: "";
  position: absolute;
  bottom: -31px;
  left: 14px;
  width: 220px;
  height: 13px;
  background-color: #f03b3b;
}
.ex-title {
  margin-bottom: 132px;
	position: relative;
}
.ex-title p {
  font-size: 48px;
  font-weight: 600;
}
.ex-title p:nth-of-type(1) {
  font-size: 110px;
  color: #ff8080;
  margin-right: 74px;
}
.plus-text {
	position: absolute;
    right: 0;
    font-size: 28px !important;
    bottom: 15px;
}
.ex-content {
  padding-left: 40px;
}
.ex-imgs {
  display: flex;
  flex-direction: row;
  gap: 20px;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  width: 75%;
}
.ex-imgs::-webkit-scrollbar {
  display: none;
}
.ex-img {
  width: auto;
  height: 250px;
  object-fit: cover;
}
.arrow {
  height: auto;
  align-self: center;
}
.ex-address {
  width: 200px;
  height: 200px;
  background-color: #ff8080;
  color: #ffffff;
  border-radius: 50%;
  font-size: 36px;
  font-weight: 600;
}
.address-line {
  width: 75%;
  height: 2px;
  background-color: #ffffff;
}
.construction-ex {
  padding-bottom: 151px;
  border-bottom: 3px solid #dbdbdb;
  margin-bottom: 46px;
}
.construction-ex:nth-last-of-type(1) {
  border-bottom: none;
  padding-bottom: 0;
}
.construction-ex:nth-of-type(4) .ex-imgs {
  width: 75%;
  display: flex;
  justify-content: space-around;
}
.construction-ex:nth-of-type(4) .ex-imgs .ex-img {
  height: 270px;
}
.client-voice-section {
  width: 100%;
  padding-block: 68px 455px;
  background: url("../img/client-bg.png") no-repeat center / cover;
}
.client-voice-title {
  font-size: 62px;
  font-weight: 600;
  width: 100%;
  margin-bottom: 253px;
}
.client-voice-title p {
  position: relative;
}
.client-voice-title p::before {
  position: absolute;
  content: "";
  bottom: -31px;
  left: 42px;
  width: 240px;
  height: 13px;
  background-color: #f03b3b;
}
.faq-section {
  width: 100%;
  padding-block: 173px 141px;
}
.faq-title {
  font-size: 62px;
  font-weight: 600;
  width: 100%;
  margin-bottom: 117px;
}
.faq-title p {
  position: relative;
}
.faq-title p::before {
  position: absolute;
  content: "";
  bottom: -31px;
  left: 75px;
  width: 240px;
  height: 13px;
  background-color: #f03b3b;
}
.faq-info {
  padding-left: 80px;
  border-bottom: 1px solid #ff8080;
  padding-bottom: 48px;
  margin-bottom: 45px;
}
.faq-q {
  margin-bottom: 12px;
}
.faq-info p:nth-of-type(1) {
  font-size: 60px;
  color: #ffffff;
  font-weight: 600;
  background-color: #f03b3b;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 30px;
}
.faq-info p:nth-of-type(2) {
  font-size: 36px;
  font-weight: 600;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  padding-inline: 85px;
  opacity: 0;
  pointer-events: none;
}
.faq-info.open .faq-a {
  max-height: 500px;
  opacity: 1;
  pointer-events: auto;
}
.faq-a p:nth-of-type(1) {
  background-color: #ff8080;
  width: 90px;
  height: 90px;
}
.faq-a p:nth-of-type(2) {
  font-weight: normal;
  width: 90%;
}
.faq-info:nth-last-of-type(1) {
  border-bottom: none;
}
.faq-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 700px;
  background: linear-gradient(to bottom, #ff4d4d, #cc0000);
  color: #fff;
  font-size: 30px;
  padding: 28px 76px;
  border: 3px solid #ec0404;
  border-radius: 200px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  margin-top: 10px;
  font-weight: bold;
  gap: 41px;
}
.faq-btn img {
  width: 700px;
  height: auto;
}
.contact-section {
  width: 100%;
  background-color: #f5e6e6;
  padding-block: 143px 93px;
}
.contact-title {
  font-size: 62px;
  font-weight: 600;
  width: 100%;
  margin-bottom: 154px;
}
.contact-title p {
  position: relative;
}
.contact-title p::before {
  position: absolute;
  content: "";
  bottom: -31px;
  left: 135px;
  width: 240px;
  height: 13px;
  background-color: #f03b3b;
}
.form-box {
  width: 100%;
  padding-inline: 100px;
  padding-block: 60px;
  background-color: #ffffff;
  margin-bottom: 60px;
}
.form-box form {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}
.form-box form label {
  font-size: 32px;
  font-weight: 600;
}
.form-box form input[type="text"],
.form-box form input[type="email"],
.form-box form input[type="tel"],
.form-box form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.form-box form textarea {
  resize: vertical;
  height: 340px;
}
.form-box form .wpcf7-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 800px;
  background: linear-gradient(to bottom, #ff4d4d, #cc0000);
  color: #fff;
  font-size: 50px;
  padding: 12px 0;
  border: 3px solid #ec0404;
  border-radius: 200px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  margin-top: 10px;
  font-weight: bold;
  gap: 80px;
}
.form-box form .wpcf7-submit:hover {
  background: linear-gradient(to bottom, #e60000, #990000);
}
.form-name,
.form-tel {
  margin-bottom: 30px;
  width: 100%;
}
.form-context {
  margin-bottom: 62px;
  width: 100%;
}
.line-btn {
  width: 800px;
  padding: 12px 0;
  background: linear-gradient(to bottom, #00c300, #009e00);
  color: white;
  font-weight: bold;
  font-size: 50px;
  text-decoration: none;
  border: 3px solid #2ca95f;
  border-radius: 999px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: background 0.3s;
  gap: 56px;
}

.line-btn:hover {
  background: linear-gradient(to bottom, #00a500, #007c00);
}
.boast-btn {
  width: 800px;
  padding: 12px 0;
  background: linear-gradient(to bottom, #fff5f5, #ffeaea);
  color: #e60033;
  font-weight: bold;
  font-size: 50px;
  text-decoration: none;
  border-radius: 999px;
  border: 2px solid #f17a7a;
  box-shadow: 0 4px 8px rgba(255, 0, 0, 0.2);
  transition: background 0.3s, transform 0.2s;
  gap: 50px;
}

.boast-btn:hover {
  background: linear-gradient(to bottom, #ffeaea, #ffd5d5);
  transform: translateY(-2px);
}
.boast-section .container {
  padding-block: 166px 102px;
}
.boast-title {
  font-size: 62px;
  font-weight: 600;
  width: 100%;
  margin-bottom: 154px;
}
.boast-title p {
  position: relative;
}
.boast-title p::before {
  position: absolute;
  content: "";
  bottom: -31px;
  left: 185px;
  width: 240px;
  height: 13px;
  background-color: #f03b3b;
}
.boast-img-group {
  margin-bottom: 106px;
  width: 100%;
}
.boast-img-group img {
  width: 100%;
  height: auto;
}
/* ===== Footer ========= */
footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f03b3b;
  padding-block: 138px 190px;
}

.footer-title {
  font-size: 50px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 117px;
}
.contact-half {
  width: 45%;
}
.card {
  position: relative;
  width: 380px;
  height: 300px;
  background: #fff;
  border: 4px solid #f44336;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding-block: 25px;
  text-align: center;
}

.bookmark {
  background: url(../img/bookmark.png) no-repeat center / cover;
  width: 79px;
  height: 117px;
  position: absolute;
  top: -20px;
  left: 20px;
  color: #ffffff;
  font-size: 48px;
  font-weight: bold;
  display: flex;
  justify-content: center;
}
.bookmark p {
  margin-top: 16px;
}
.icon img {
  width: 124px;
  height: auto;
}
.card:nth-of-type(2) .icon img {
  width: 90px;
}
.card:nth-of-type(3) .icon img {
  width: 100px;
}
.card:nth-of-type(4) .icon img {
  width: 121px;
}
.card:nth-of-type(5) .icon img {
  width: 138px;
}
.card:nth-of-type(6) .icon img {
  width: 90px;
}
.main-text {
  font-size: 37px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  position: relative;
}
.sub-text span {
  font-size: 20px;
}
.main-text::after {
  content: "";
  display: block;
  width: 60%;
  height: 20px;
  background: #ddd;
  margin: -25px auto 0;
}
.card:nth-of-type(3) .main-text::after {
  width: 80%;
}
.card:nth-of-type(4) .main-text::after {
  width: 65%;
}
.card:nth-of-type(5) .main-text::after {
  width: 97%;
}
.sub-text {
  font-size: 26px;
  color: #333;
  line-height: 1.6;
}
.footer-contact {
  margin-bottom: 45px;
}
.footer-contact img {
  width: auto;
  height: 47px;
  margin-right: 36px;
}
.footer-contact p {
  font-size: 40px;
  font-weight: 600;
  color: #ffffff;
}
.footer-sns {
  height: 70px !important;
}
footer {
  position: relative;
}
.footer-tel {
  position: absolute;
  bottom: 20px;
  right: 40px;
}
.footer-tel p {
  font-size: 18px;
}
.footer-tel img {
  height: 30px;
}
/* === slider ===== */
.slider-container {
  position: relative;
  width: 100%;
  max-width: 1250px;
  height: 650px;
  background: #fff;
  overflow: hidden;
  padding: 20px;
  box-sizing: border-box;
}

.slider {
  display: flex;
  transition: transform 0.3s ease-in-out;
}

.slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 10px;
  text-align: center;
}

.slide img {
  width: auto;
  height: 427px;
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: red;
  color: white;
  padding: 10px 25px;
  cursor: pointer;
  font-size: 40px;
  border: none;
}

.slider-arrow.left {
  left: 0;
    z-index: 9;
}

.slider-arrow.right {
  right: 0;
}
/* ======= Responsive ========== */
@media (max-width: 1700px) {
  .first-view {
    padding-top: 180px;
    padding-left: 175px;
  }
}
@media (max-width: 1600px) {
  header .container {
    padding-inline: 120px 165px;
  }
  .logo {
    width: 190px;
  }
  .company-info p:nth-of-type(1) {
    font-size: 24px;
  }
  .company-info p:nth-of-type(2) {
    font-size: 20px;
  }
  .CTA-btn {
    width: 420px;
    height: 50px;
  }
  .CTA-btn p {
    font-size: 20px;
  }
  .CTA-btn img {
    width: 10px;
  }
  .first-view {
    padding-top: 180px;
    padding-left: 150px;
  }
  .age-able {
    font-size: 28px;
  }
  .emphasize img {
    height: 110px;
  }
  .cal-card-group img {
    width: 320px;
  }
  .first-view-com img {
    height: 130px;
  }
  .member-name {
    top: 610px;
    right: 120px;
  }
}
@media (max-width: 1440px) {
  .container {
    width: 100%;
    padding-inline: 100px;
  }
  .first-view {
    padding-left: 85px;
  }
  .mail-line a {
    font-size: 30px;
    padding: 2px 40px;
  }
  .mail-line a img {
    height: 30px;
  }
  .arrow {
    height: 30px !important;
  }
  .pay-btn a {
    padding: 10px 40px;
    font-size: 30px;
  }
  .pay-btn img {
    height: 40px;
  }
  .member-name img {
    height: 100px;
  }
  .ask-img-txt {
    font-size: 28px;
  }
  .beware-blog-title {
    font-size: 40px;
  }
  .beware-blog-info-txt {
    font-size: 28px;
  }
  .beware-blog img {
    width: 300px;
    height: auto;
  }
  .beware-blog-info-icon img {
    width: 30px;
  }
  .ex-img {
    height: 220px;
  }
  .footer-title {
    font-size: 40px;
  }
.reason-group {
    gap: 30px;
  }
  .card {
    width: 300px;
    height: 260px;
  }
  .bookmark {
    left: 10px;
    width: 60px;
    height: 90px;
    font-size: 38px;
  }
  .main-text {
    font-size: 28px;
  }
  .sub-text {
    font-size: 22px;
    line-height: 1.2;
  }
  .sub-text span {
    font-size: 16px;
  }
}
}
@media (max-width: 1300px) {
  .company-info {
    display: none;
  }
  .first-view {
    background: url("../img/first-view-tablet.png") no-repeat center / cover;
    background-position: right;
  }
  .cost-plan-section img {
    height: 240px;
  }
  .ex-img {
    height: 180px;
  }
  .ex-title p:nth-of-type(1) {
    font-size: 90px;
  }
  .ex-title p {
    font-size: 40px;
  }
  .ex-address {
    width: 150px;
    height: 150px;
    font-size: 30px;
    font-weight: 600;
  }
  .faq-info p:nth-of-type(2) {
    font-size: 32px;
  }
  .footer-contact p {
    font-size: 32px;
  }
  .footer-contact img {
    height: 35px;
  }
  .footer-sns {
    height: 50px !important;
  }
  .construction-ex:nth-of-type(4) .ex-imgs {
    width: 70%;
  }
  .construction-ex:nth-of-type(4) .ex-imgs .ex-img {
    height: 200px;
  }
  .reason-group img {
    width: fit-content;
    height: 220px;
}
}
@media (max-width: 1150px) {
  .first-view {
    padding-inline: 20px;
  }
  .age-able {
    font-size: 22px;
  }
  .emphasize img {
    height: 90px;
  }
  .cal-card-group img {
    width: 250px;
  }
  .first-view-com img {
    height: 100px;
  }
  .member-name {
    top: 550px;
    right: 120px;
  }
  .mail-line {
    padding-left: 0;
    justify-content: space-around;
    gap: 0;
  }
  .mail-line a {
    font-size: 20px;
    padding: 2px 40px;
  }
  .pay-btn {
    padding-right: 0;
  }
  .ask-img-txt {
    font-size: 22px;
  }
  .beware-blog-title {
    font-size: 24px;
  }
  .beware-blog-info-txt {
    font-size: 16px;
  }
  .beware-blog {
    gap: 30px;
  }
  .ex-address {
    width: 110px;
    height: 110px;
    font-size: 22px;
  }
  .ex-img {
    height: 140px;
  }
  .ex-title p:nth-of-type(1) {
    font-size: 80px;
    margin-right: 50px;
  }
  .ex-title p {
    font-size: 34px;
  }
  .faq-info {
    padding-left: 0;
  }
  .faq-info p:nth-of-type(1) {
    width: 85px;
    height: 85px;
    font-size: 45px;
    margin-right: 20px;
  }
  .faq-a {
    padding-inline: 45px;
  }
  .faq-info p:nth-of-type(2) {
    font-size: 28px;
  }
  .form-box {
    padding-inline: 35px;
  }
  .form-box form .wpcf7-submit {
    width: 525px;
  }
  .line-btn {
    width: 525px;
  }
  .boast-btn {
    width: 525px;
    font-size: 40px;
  }
  .slide img {
    height: 370px;
  }
  .construction-ex:nth-of-type(4) .ex-imgs {
    width: 60%;
  }
  .construction-ex:nth-of-type(4) .ex-imgs .ex-img {
    height: 150px;
  }
}
@media (max-width: 950px) {
  header .container {
    padding-inline: 30px 95px;
  }
  .member-name {
    right: 20px;
  }
  .mail-line a {
    gap: 10px;
  }
  .arrow {
    height: 20px !important;
  }
  .mail-line a img {
    height: 20px;
  }
  .mail-line a:nth-of-type(2) img {
    width: auto;
    height: 45px;
  }
  .pay-btn img {
    height: 30px;
  }
  .ask-title {
    font-size: 30px;
    height: 60px;
  }
  .ask-img-txt {
    font-size: 18px;
  }
  .ask-img-txt:nth-of-type(2) {
    top: 82px;
    left: 0;
  }
  .ask-img-group img {
    width: 280px;
  }
  .cost-plan-content {
    flex-direction: column;
  }
  .cost-plan-section img {
    width: auto;
    height: 300px;
  }
  .ex-content {
    padding-left: 0;
    flex-direction: column;
    align-items: baseline;
    gap: 20px;
  }
  .ex-imgs {
    width: 100%;
    justify-content: space-between;
  }
  .ex-img {
    height: auto;
    width: 30%;
  }
  .ex-address {
    width: 150px;
    height: 150px;
    font-size: 30px;
  }
  .ex-title {
    margin-bottom: 65px;
  }
  .footer-contact-group {
    flex-direction: column;
    align-items: center;
  }
  .contact-half {
    width: 60%;
  }
  .construction-ex:nth-of-type(4) .ex-imgs {
    width: 100%;
  }
  .construction-ex:nth-of-type(4) .ex-imgs .ex-img {
    width: 40%;
    height: auto;
  }
}
@media (max-width: 768px) {
  header .container {
    padding-inline: 20px;
  }
  .CTA-btn {
    width: 300px;
  }
  .first-view {
    background: url("../img/first-view-sp.png") no-repeat center / cover;
    background-position: right;
  }
  .container {
    padding-inline: 20px;
  }
  .age-able {
    font-size: 16px;
  }
  .emphasize img {
    height: 70px;
  }
  .cal-card-group img {
    width: 200px;
  }
  .first-view-com img {
    height: 80px;
  }
  .member-name {
    top: 480px;
  }
  .member-name img {
    height: 80px;
  }
  .badge img {
    height: 80px;
  }
  .ask-img-txt {
    padding: 7px 20px;
  }
  .ask-img-txt:nth-of-type(3) {
    top: 261px;
    left: 10px;
  }
  .ask-img-txt:nth-of-type(4) {
    top: 207px;
    right: 10px;
  }
  .beware-blog-info-txt {
    font-size: 14px;
  }
  .beware-blog {
    gap: 15px;
  }
  .beware-blog-info-icon img {
    width: 20px !important;
  }
  .beware-blog-info {
    gap: 10px;
  }
  .beware-blog-info {
    gap: 10px;
  }
  .beware-title {
    font-size: 40px;
  }
  .beware-title span {
    font-size: 50px;
  }
  .ask-bottom-arrow img {
    height: 40px;
  }
  .beware-blog img {
    width: 215px;
    height: auto;
  }
  .reason-title img {
    height: 165px;
  }
  .ex-title p:nth-of-type(1) {
    margin-right: 30px;
  }
  .ex-title {
    margin-bottom: 30px;
  }
  .faq-btn img {
    width: 520px;
  }
  .boast-title {
    font-size: 45px;
  }
  .boast-title p::before {
    left: 100px;
  }
  .faq-btn {
    font-size: 28px;
    width: 500px;
    padding: 28px 25px;
    gap: 10px;
  }
  .slide img {
    height: 265px;
  }
  .slider-container {
    height: 500px;
  }
  .cost-plan-section {
    padding-top: 65px;
  }
  .construction-section {
    padding-top: 120px;
  }
  .client-voice-title {
    margin-bottom: 150px;
  }
  .client-voice-section {
    padding-block: 68px 260px;
  }
  .reason-group {
    gap: 10px;
    justify-content: space-evenly;
  }
  .card {
    width: 49%;
    margin-bottom: 30px;
  }
  .main-text {
    font-size: 24px;
  }
  .ex-imgs {
    overflow-x: auto;
}
.footer-title {
  font-size: 24px;
}
}
@media (max-width: 600px) {
  .ex-imgs {
    
  }
  .ex-img {
    width: 300px;
  }
  .construction-ex:nth-of-type(4) .ex-imgs .ex-img {
    width: 300px;
    height: auto;
}
  .reason-group {
    gap: 7px;
}
  .ex-imgs .arrow {
    
  }
  .faq-info p:nth-of-type(1) {
    width: 50px;
    height: 50px;
    font-size: 32px;
  }
  .faq-info p:nth-of-type(2) {
    font-size: 20px;
  }
  .faq-a {
    padding-inline: 15px;
  }
  .form-box form .wpcf7-submit {
    width: 300px;
    font-size: 32px;
    gap: 15px;
  }
  .line-btn {
    width: 300px;
    font-size: 32px;
    gap: 15px;
  }
  .form-box {
    padding-inline: 10px;
  }
  .boast-btn {
    width: 375px;
    font-size: 32px;
    gap: 15px;
  }
  .boast-img-group {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .boast-img-group img {
    width: 100%;
  }
  .contact-half {
    width: 80%;
  }
  .footer-contact p {
    font-size: 24px;
  }
  .cost-plan-section {
    padding-bottom: 100px;
  }
  .form-box form label {
    font-size: 20px;
  }
  .sp-floating-btns {
    display: flex;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100vw;
    z-index: 9999;
    justify-content: space-around;
    padding-block: 10px;
    background-color: rgba(0, 0, 0, 0.6);
  }
  .sp-floating-btns .sp-btn {
    width: 45%;
    text-align: center;
    padding: 12px 0;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
  }
  .sp-floating-btns .estimate-btn {
    background: linear-gradient(to right, #f03b3b, #ff8080);
  }
  .sp-floating-btns .line-floating-btn {
    background: linear-gradient(to right, #03c251, #2ca95f);
  }
}
@media (max-width: 550px) {
  header .container {
    height: 60px;
  }
  .logo {
    width: 155px;
  }
  .CTA-btn {
    width: 160px;
    height: 40px;
  }
  .CTA-btn p {
    font-size: 16px;
  }
  .CTA-btn span {
    display: none;
  }
  .first-view {
    padding-top: 85px;
  }
  .cal-card-group {
    display: flex;
    flex-direction: column;
  }
  .mail-line {
    flex-direction: column;
    gap: 30px;
  }
  .member-name {
    display: none;
  }
  .mail-line a {
    width: 100%;
    font-size: 22px;
    padding: 10px 40px;
    justify-content: space-between;
  }
  .pay-btn a {
    width: 100%;
    gap: 0;
    font-size: 22px;
    justify-content: space-between;
  }
  .ask-img-group img {
    padding-top: 100px;
    width: 250px;
  }
  .ask-request-section {
    padding-block: 90px;
  }
  .ask-title {
    margin-bottom: 40px;
  }
  .ask-img-txt:nth-of-type(2) {
    top: 60px;
  }
  .ask-img-txt:nth-of-type(3) {
    top: 270px;
  }
  .ask-img-txt:nth-of-type(4) {
    top: 240px;
    right: 10px;
  }
  .ask-title {
    font-size: 23px;
  }
  .ask-img-txt {
    font-size: 16px;
    padding: 10px 25px;
  }
  .beware-blog img {
    width: 205px;
  }
  .beware-title {
    font-size: 23px;
  }
  .beware-title span {
    font-size: 40px;
  }
  .beware-blog {
    gap: 15px;
    flex-direction: column;
  }
  .beware-blog img {
    width: 100%;
  }
  .beware-blog-txt {
    padding-inline: 10px;
    padding-bottom: 10px;
  }
  .beware-blog-info-txt {
    font-size: 15px;
  }
  .beware-blog-info-icon img {
    width: 16px !important;
  }
  .reason-title img {
    height: 100px;
  }
  .cost-plan-title {
    font-size: 45px;
  }
  .cost-plan-title p::before {
    left: 20px;
  }
  .cost-plan-section img {
    height: 190px;
  }
  .construction-title {
    font-size: 45px;
  }
  .construction-title p::before {
    left: 10px;
    width: 160px;
  }
  .ex-title p:nth-of-type(1) {
    margin-right: 10px;
    font-size: 52px;
  }
  .ex-title p {
    font-size: 20px;
  }
  .faq-btn img {
    width: 320px;
  }
  .faq-title {
    font-size: 45px;
  }

  .faq-title p::before {
    left: 42px;
    width: 200px;
  }
  .contact-title {
    font-size: 36px;
  }
  .contact-title p::before {
    left: 45px;
    width: 200px;
  }
  .inquiry-form label {
    font-size: 24px;
  }
  .boast-title {
    font-size: 32px;
  }
  .boast-title p::before {
    left: 50px;
  }
  .faq-btn {
    font-size: 16px;
    width: 330px;
    padding: 18px 25px;
  }
  .slide img {
    height: 175px;
  }
  .client-voice-title {
    font-size: 45px;
}
.client-voice-title p::before {
  left: 23px;
  width: 180px;
}
.ex-address {
  width: 120px;
  height: 120px;
  font-size: 24px;
}
.card {
    height: 230px;
  }
  .bookmark {
    width: 40px;
    height: 60px;
    font-size: 28px;
  }
  .bookmark p {
    margin-top: 10px;
  }
  .main-text {
    font-size: 18px;
  }
  .main-text::after {
    width: 90%;
    height: 13px;
    margin: -13px auto 0;
  }
  .sub-text {
    font-size: 14px;
  }
  .sub-text span {
    font-size: 12px;
  }
  .icon img {
    width: 100px;
  }
  .card:nth-of-type(2) .icon img {
    width: 70px;
  }
  .card:nth-of-type(5) .icon img {
    width: 115px;
  }
  .card:nth-of-type(6) .icon img {
    width: 75px;
  }
}
@media (max-width: 450px) {
  .emphasize img {
    height: 55px;
  }
  .cal-card-group img {
    width: 45%;
  }
  .first-view-com img {
    width: 100%;
    height: auto;
  }
  .mail-line a {
    font-size: 20px;
    padding: 2px 20px !important;
    min-height: 70px;
  }
  .pay-btn a {
    font-size: 18px;
    padding: 10px 20px;
    min-height: 70px;
  }
  .age-able {
    font-size: 15px;
    justify-content: space-between;
    gap: 0;
  }
  .able {
    padding: 0px 15px;
  }
  .badge img {
    height: 65px;
  }
  .boast-btn {
    width: 320px;
    font-size: 27px;
    gap: 10px;
  }
  .contact-half {
    width: 100%;
  }
.footer-title {
  font-size: 16px;
}
}

.faq-q {
  cursor: pointer;
}

@media (max-width: 768px) {
	.column-sp{
		flex-direction: column;		
	}
	.company-intro {
		gap: 0px;
	}
	.company-info p:nth-of-type(1) {
        font-size: 2.4vw;
    }
	.company-info p:nth-of-type(2) {
        font-size: 2.4vw;
    }
	
	.plus-text {
		position: absolute;
		right: 0;
		font-size: 12px !important;
		bottom: -10px;
	}
}

.thanks_content{
  padding: 210px 16px 120px;
}
.thanks_content > p{
  font-size: 32px;
  line-height: 1.5;
  width: fit-content;
  margin: 0 auto 60px;
}
.thanks_content .faq-btn{
  margin: 0 auto;
}
@media (max-width: 550px) {
  .thanks_content{
    padding: 80px 16px 120px;
  }
 .thanks_content > p{
    font-size: 18px;
  } 
}