@charset "UTF-8";
/* CSS Document */
.section-top-content {
  position: relative;
}
.section-top-content h2 {
  position: absolute;
  font-size: 4.2rem;
	font-weight: 600;
  padding: 25px;
  background-color: rgb(255 255 255 / 60%);
  border-radius: 5px;
  left: 5%;
  top: 12vw;
  letter-spacing: 0.2rem;
  transition: 0.4s;
  z-index: 1;
}
.section-top-slider {
  width: 70%;
  margin: 0 0 0 auto;
}
.section-top-slider__image img {
  width: 100%;
  border-bottom-left-radius: 100px;
}
.scrolldown {
  position: absolute;
  left: 10%;
  bottom: 100px;
  height: 50px;
}
.scrolldown span {
  position: absolute;
  left: -20px;
  top: -20px;
  color: #333;
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}
.scrolldown::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 30px;
  background: #333;
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}
@media screen and (max-width:1160px) {
  .section-top {
    padding-top: 108px;
  }
  .section-top-content h2 {
    font-size: 3.8rem;
    padding: 20px 15px;
  }
}
@media screen and (max-width:960px) {
  .section-top-content h2 {
    font-size: 3.2rem;
    left: 4%;
    top: 11vw;
  }
  .scrolldown {
    bottom: 30px;
  }
}
@media screen and (max-width:768px) {
  .section-top {
    padding-top: 103px;
  }
  .section-top-content h2 {
    font-size: 2.8rem;
    padding: 15px 10px;
    top: 15vw;
  }
  .section-top-slider {
    width: 90%;
  }
  .scrolldown {
    left: 50%;
    bottom: 15px;
  }
}
@media screen and (max-width:580px) {
  .section-top {
    padding-top: 78px;
  }
  .section-top-slider img {
    height: 70vh;
    object-fit: cover;
    object-position: 60% 50%;
  }
  .section-top-content h2 {
    top: 22vh;
  }
  .scrolldown {
    bottom: 30px;
  }
}
.section-about {
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 40px;
}
.section-about-introduction {
  position: relative;
}
.section-about-introduction h2 {
  letter-spacing: 0.1rem;
}
.section-about-introduction h2 span {
  background: linear-gradient(transparent 75%, #b3ddff 60%);
}
.section-about-introduction__txt {
  margin: 60px 0 0;
  font-size: 1.8rem;
  line-height: 1.8;
}
.section-about-introduction__txt span {
  display: block;
}
.section-about-introduction__image-left {
  position: absolute;
  left: 20px;
  bottom: -20px;
  width: 150px;
}
.section-about-introduction__image-right {
  position: absolute;
  width: 220px;
  top: 0;
  right: -20px;
}
.section-about-strength h2 {
  display: inline-block;
  margin: 120px 0 80px;
  font-size: 2.6rem;
  position: relative;
}
.section-about-strength h2:before {
  content: "";
  position: absolute;
  top: -25px;
  left: -30px;
  display: block;
  border-radius: 50px;
  background: #E1ECF4;
  width: 70px;
  height: 70px;
  z-index: -1;
}
.section-about-strength__list h3 {
  display: inline-block;
  background: linear-gradient(transparent 75%, #b3ddff 60%);
}
.section-about-strength__list ul {
  display: flex;
  justify-content: space-evenly;
}
.section-about-strength__list ul li {
  width: 300px;
}
.section-about-strength__list-image {
  margin: 40px 0 20px;
  height: 100px;
}
.section-about-strength__list-image.support {
  padding: 15px;
}
.section-about-strength__list-image.workman {
  padding-right: 15px;
}
.section-about-strength__list-image img {
  height: 100%;
}
.section-about-strength__list-txt {
  padding: 0 15px;
  text-align: left;
}
@media screen and (max-width:1160px) {
  .section-about-introduction__image-left {
    width: 120px;
  }
  .section-about-introduction__image-right {
    width: 180px;
    right: -30px;
  }
  .section-about-introduction__txt {
    font-size: 1.6rem;
  }
  .section-about-strength__list ul {
    justify-content: space-around;
  }
}
@media screen and (max-width:960px) {
  .section-about-introduction h2 {
    font-size: 2.8rem;
    word-break: keep-all;
    line-height: 1.5;
  }
  .section-about-introduction__txt {
    margin: 60px 0 20px;
  }
  .section-about-introduction__image-left {
    position: unset;
  }
  .section-about-introduction__image-right {
    position: unset;
  }
  .section-about-strength h2 {
    font-size: 2.4rem;
  }
  .section-about-strength__list h3 {
    font-size: 1.8rem;
  }
  .section-about-strength__list ul li {
    width: 260px;
  }
}
@media screen and (max-width:768px) {
  .section-about-introduction h2 {
    font-size: 2.6rem;
  }
  .section-about-introduction__image-left {
    width: 90px;
    padding-bottom: 10px;
  }
  .section-about-introduction__image-right {
    width: 160px;
  }
  .section-about-strength__list ul {
    flex-wrap: wrap;
  }
  .section-about-strength__list ul li {
    width: 100%;
    margin: 20px 0 50px;
  }
  .section-about-introduction__txt {
    margin: 40px 0 20px;
    padding: 0 20px;
    text-align: left;
  }
  .section-about-introduction__txt span {
    display: inline;
  }
  .section-about-strength__list-image {
    margin: 30px 0;
  }
  .section-about-strength__list-txt {
    max-width: 350px;
    margin: 0 auto;
  }
}
@media screen and (max-width:580px) {
  .section-about {
    padding: 100px 30px 80px;
  }
  .section-about-introduction h2 {
    font-size: 2.4rem;
    word-break: unset;
    text-align: left;
  }
  .section-about-introduction__txt {
    padding: 0;
  }
  .section-about-strength h2 {
    font-size: 2.2rem;
  }
  .section-about-strength__list-txt {
    width: 100%;
    padding: 0 10px;
  }
}
.section-suggestion {
  padding: 120px 40px;
  background-color: #f7f7f7;
}
.section-suggestion-content {
  max-width: 1280px;
  margin: 0 auto;
  color: #404B75;
}
.section-suggestion-content h2 {
  display: inline-block;
}
.section-suggestion-content h2 span {
  background: linear-gradient(transparent 75%, #b3ddff 60%);
}
.section-suggestion-list {
  margin-top: 40px;
}
.section-suggestion-list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1040px;
  margin: 0 auto;
}
.section-suggestion-list ul li {
  margin: 2.5em;
}
.section-suggestion-list__wrapper {
  width: 400px;
  height: 360px;
  padding: 40px 40px 20px;
  background-color: #fff;
  border-radius: 20px;
}
.section-suggestion-list__txt {
  line-height: 1.5;
}
.section-suggestion-list__wrapper.sink .section-suggestion-list__image {
  padding: 40px;
}
.section-suggestion-list__wrapper {
  position: relative;
  box-shadow: 0px 3px 6px rgb(0 0 0 / 20%);
}
.section-suggestion-list__couple {
  position: absolute;
  bottom: -10px;
  left: -50px;
  max-height: 90px;
}
.section-suggestion-list__family {
  position: absolute;
  bottom: -10px;
  right: -40px;
  max-height: 90px;
}
.section-suggestion-list__middle {
  position: absolute;
  bottom: -10px;
  left: -50px;
  max-height: 90px;
}
.section-suggestion-list__senior {
  position: absolute;
  bottom: -10px;
  right: -40px;
  max-height: 90px;
}
.section-suggestion-list__image {
  padding: 60px;
}
.section-suggestion-list__image.toilet img {
  max-width: 160px;
}
.section-suggestion-list__image.sink img {
  transform: scale(-1, 1);
  max-width: 120px;
}
.section-suggestion-list__image.electricity img {
  transform: scale(-1, 1);
  max-width: 160px;
}
.section-suggestion-list__image.accessbility img {
  max-width: 120px;
}
.section-suggestion-contact {
  margin: 80px 0 0;
}
.section-suggestion-contact h3 {
  font-size: 2.6rem;
  position: relative;
  display: inline-block;
  padding: 0 40px;
}
.section-suggestion-contact h3:before {
  content: '';
  position: absolute;
  top: 8px;
  bottom: 0;
  display: inline-block;
  width: 35px;
  height: 3px;
  background-color: #404B75;
  ;
  -webkit-transform: rotate(70deg);
  transform: rotate(70deg);
}
.section-suggestion-contact h3:after {
  content: '';
  position: absolute;
  top: 8px;
  bottom: 0;
  display: inline-block;
  width: 35px;
  height: 3px;
  background-color: #404B75;
  -webkit-transform: rotate(-70deg);
  transform: rotate(-70deg);
}
.section-suggestion-contact h3:before {
  left: 0;
}
.section-suggestion-contact h3:after {
  right: 0;
}
.section-suggestion-contact__content ul {
  display: flex;
  max-width: 800px;
  margin: 50px auto 0;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}
.section-suggestion-contact__phone p {
  font-family: a-otf-ud-shin-go-pr6n, sans-serif;
  font-size: 3.2rem;
  margin-bottom: 15px;
  letter-spacing: 0.2rem;
}
.section-suggestion-contact__phone a {
  pointer-events: none;
}
.section-suggestion-contact__phone p::before {
  content: "";
  display: inline-block;
  background-image: url("../image/top/phone.png");
  background-size: cover;
  width: 28px;
  height: 28px;
  transform: translate(-2px, 0);
}
.section-suggestion-contact__phone span {
  font-size: 1.8rem;
}
.section-suggestion-contact__line {
  position: relative;
  z-index: 0;
}
.section-suggestion-contact__line::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 5px;
  left: 5px;
  background-color: #CDF5DD;
  z-index: -1;
  border-radius: 5px;
  transition: 0.2s;
}
.section-suggestion-contact__line:hover::after {
  top: 0;
  left: 0;
  background-color: #0cc755;
  color: #fff;
}
.section-suggestion-contact__line a span {
  border: 1px solid #404B75;
  border-radius: 5px;
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 400;
  padding: 20px 40px;
}
.section-suggestion-contact__line a span:hover {
  color: #fff;
  border: 1px solid #00000000;
}
.section-suggestion-contact__line a span::before {
  content: "";
  display: inline-block;
  background-image: url("../image/top/line.png");
  background-size: cover;
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
@media screen and (max-width:1160px) {
  .section-suggestion-list__wrapper {
    width: 350px;
    height: 300px;
  }
  .section-suggestion-list__txt {
    font-size: 1.8rem;
  }
  .section-suggestion-list__image {
    padding: 40px;
  }
  .section-suggestion-list__wrapper.sink .section-suggestion-list__image {
    padding: 30px;
  }
  .section-suggestion-list__image.toilet img, .section-suggestion-list__image.electricity img {
    max-width: 140px;
  }
  .section-suggestion-list__image.sink img, .section-suggestion-list__image.accessbility img {
    max-width: 100px;
  }
  .section-suggestion-list__couple, .section-suggestion-list__family, .section-suggestion-list__middle, .section-suggestion-list__senior {
    max-height: 80px;
  }
}
@media screen and (max-width:1160px) {
	.section-suggestion-contact__line a span {
		font-weight: 600;
		font-size: initial;
	}
}
@media screen and (max-width:960px) {
  .section-suggestion-content h2 {
    font-size: 2.8rem;
  }
}
@media screen and (max-width:768px) {
  .section-suggestion-contact {
    margin: 100px 0 0;
  }
  .section-suggestion-contact h3 {
    font-size: 2.4rem;
    line-height: 1.5;
    padding: 0 60px;
  }
  .section-suggestion-contact h3 span {
    display: block;
  }
  .section-suggestion-contact h3:before, .section-suggestion-contact h3:after {
    top: 45px;
  }
  .section-suggestion-contact__phone {
    width: 100%;
    margin: 20px 0 40px;
  }
  .section-suggestion-contact__phone a {
    pointer-events: auto;
  }
  .section-suggestion-contact__phone p {
    font-size: 3.0rem;
  }
}
@media screen and (max-width:480px) {
  .section-suggestion {
    padding: 80px 20px;
  }
  .section-suggestion-content h2 {
    font-size: 2.0rem;
  }
  .section-suggestion-contact h3 {
    font-size: 2.0rem;
    padding: 0 50px
  }
  .section-suggestion-list__wrapper {
    width: 300px;
    height: 280px;
    padding: 30px;
  }
  .section-suggestion-list__txt {
    font-size: 1.6rem;
  }
  .section-suggestion-list__couple, .section-suggestion-list__middle {
    left: -20px;
    max-height: 70px;
  }
  .section-suggestion-list__family, .section-suggestion-list__senior {
    right: -20px;
    max-height: 70px;
  }
  .section-suggestion-contact h3:before, .section-suggestion-contact h3:after {
    top: 35px;
  }
  .section-suggestion-contact__phone p {
    font-size: 2.6rem;
  }
  .section-suggestion-contact__phone span {
    font-size: 1.6rem;
  }
  .section-suggestion-contact__line a span {
    font-size: 1.6rem;
  }
  .section-suggestion-contact__line a span::before {
    width: 30px;
    height: 30px;
  }
}
.section-menu {
  max-width: 1280px;
  margin: 0 auto;
  padding: 100px 40px;
}
.section-menu h2 {
  font-size: 2.8rem;
  position: relative;
  color: #404B75;
}
.section-menu-list {
	margin: 80px 0 20px;
}
.section-menu-list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.section-menu-list ul li {
  width: 30%;
  margin: 0 2.5em 2.5em 0;
  overflow: hidden;
  border-radius: 10px;
}
.section-menu-list ul li:nth-child(3), .section-menu-list ul li:nth-child(6) {
  margin-right: 0;
}
.section-menu-list__content {
  position: relative;
}
.section-menu-list__content img {
  width: 100%;
  border-radius: 10px;
  transition: all 0.4s;
}
.section-menu-list__content img:hover {
  transform: scale(1.2);
}
.section-menu-list__name {
  position: absolute;
  bottom: 0;
  display: block;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.60);
  padding: 12px;
  font-size: 1.8rem;
  font-weight: 500;
  color: #404B75;
  text-shadow: 1px 1px #fff;
}
.section-menu-btn {
  position: relative;
  display: inline-block;
  color: #404B75;
  font-size: 1.6rem;
  font-weight: 400;
}
.section-menu-btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 5px;
  left: 5px;
  background-color: #E1ECF4;
  z-index: -1;
  border-radius: 5px;
  transition: 0.2s;
}
.section-menu-btn:hover::after {
  top: 0;
  left: 0;
  background-color: #404B75;
}
.section-menu-btn a span {
  border: 1px solid #404B75;
  border-radius: 5px;
  padding: 25px 30px;
  display: flex;
}
.section-menu-btn a span:hover {
  color: #fff;
}
@media screen and (max-width:960px) {
  .section-menu h2 {
    font-size: 2.6rem;
  }
  .section-menu-list ul li {
    width: 45%;
    margin: 0;
  }
  .section-menu-list ul li:nth-child(odd) {
    margin: 0 40px 40px 0;
  }
  .section-menu-list__name {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    font-size: 2.0rem;
	 font-weight: 600;
  }
	.section-menu-btn {
		font-weight: 600;
	}
}
@media screen and (max-width:768px) {
  .section-menu h2 {
    font-size: 2.4rem;
  }
  .section-menu-list__name {
    font-size: 1.6rem;
    word-break: keep-all;
  }
}
@media screen and (max-width:580px) {
  .section-menu-list__name {
    font-size: 1.4rem;
  }
  .section-menu-list ul li:nth-child(odd) {
    margin: 0 25px 25px 0;
  }
}
@media screen and (max-width:480px) {
  .section-menu-btn a span {
    font-size: 1.4rem;
  }
  .section-menu-list ul li {
    width: 90%;
    margin: 0 auto 20px;
  }
  .section-menu-list ul li:nth-child(odd) {
    margin: 0 auto 20px;
  }
  .section-menu-list ul li:nth-child(3), .section-menu-list ul li:nth-child(6) {
    margin: 0 auto 20px;
  }
  .section-menu-list {
    margin: 60px 0;
  }
}
.section-staff {
  padding: 100px 40px;
  background-color: #f7f7f7;
  color: #404B75;
}
.section-staff h2 {
  font-size: 2.8rem;
  display: inline-block;
  position: relative;
  z-index: 0;
}
.section-staff-list {
  margin-top: 100px;
}
.section-staff-slider {
  max-width: 1024px;
  margin: 0 auto;
  position: relative;
}
.section-staff-slider li {
  padding: 0 40px;
}
.section-staff-list__image {
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 50%;
  object-fit: cover;
}
.section-staff-list__text {
  margin: 30px auto 0;
  text-align: left;
  width: 250px;
}
.arrow-prev {
  cursor: pointer;
  position: absolute;
  left: -10px;
  top: 50%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  z-index: 1;
}
.arrow-prev span {
  height: 20px;
  width: 20px;
  border-top: 2px solid #404B75;
  border-left: 2px solid #404B75;
  position: absolute;
  top: 14px;
  left: 17px;
  transform: rotate(-45deg);
}
.arrow-next {
  cursor: pointer;
  position: absolute;
  right: -10px;
  top: 50%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  z-index: 1;
}
.arrow-next span {
  height: 20px;
  width: 20px;
  border-top: 2px solid #404B75;
  border-right: 2px solid #404B75;
  position: absolute;
  top: 14px;
  right: 17px;
  transform: rotate(45deg);
}
@media screen and (max-width:1160px) {
  .section-staff-slider li {
    padding: 0 20px;
  }
}
@media screen and (max-width:960px) {
  .section-staff h2 {
    font-size: 2.6rem;
  }
  .section-staff-list__image {
    width: 300px;
    height: 300px;
  }
}
@media screen and (max-width:768px) {
  .section-staff h2 {
    font-size: 2.4rem;
	  font-weight: 600;
  }
  .section-staff-list {
    margin-top: 80px;
  }
  .section-staff-slider {
    max-width: 600px;
  }
  .section-staff-slider li {
    padding: 40px;
  }
  .section-staff-list__image {
    width: 240px;
    height: 240px;
  }
  .section-staff-list__text {
    width: 240px;
  }
  .arrow-prev span {
    height: 15px;
    width: 15px;
  }
  .arrow-next span {
    height: 15px;
    width: 15px;
  }
  .section-staff-slider li {
    padding: 20px
  }
}
.fadeInTrigger, .fadeUpTrigger {
  opacity: 0;
}