@charset "utf-8";
/* CSS Document */
.section-top__image {
  width: 100%;
  height: 60vh;
  position: relative;
  z-index: 1;
  max-height: 700px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.top-item01 {
  background: url("../images/main_house.jpg");
}
.top-item02 {
  background: url("../images/main_business.jpg");
}
.top-item03 {
  background: url("../images/main_staff.png");
  background-position: center center;
}
.top-image {
  width: 60vw; /*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
  height: 60vh; /*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  background-repeat: no-repeat; /*背景画像をリピートしない*/
  background-position: center; /*背景画像の位置を中央に*/
  background-size: cover; /*背景画像が.slider-item全体を覆い表示*/
}
.top-circle {
  position: absolute;
  display: flex;
  z-index: 1;
  height: 200px;
  width: 200px;
  border-radius: 50%;
  line-height: 200px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 60% 0 0;
  right: 20px;
  
    animation: fuwafuwa 3s infinite ease-in-out .8s alternate;
  transition: 1.5s ease-in-out;

}

 
@keyframes fuwafuwa {
  0% {
    transform:translate(0, 0) rotate(-10deg);
  }
  50% {
    transform:translate(0, -10px) rotate(0deg);
  }
  100% {
    transform:translate(0, 0) rotate(10deg);
  }
}
.top-circle h2 {
  position: absolute;
  right: 9%;
  top: 25%;
  padding: 0 10px;
  margin: 0 auto;
  font-size: 1.8rem;
  font-weight: 500;
  opacity: 0.8;
  z-index: 2;
  letter-spacing: 0.05rem;
  line-height: normal;
  text-shadow: 1px 1px 1px #808080;
}

.top-text {
  padding-top: 20px;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 3.0rem;
  white-space: nowrap;
  overflow: hidden;
  animation: fade-in-anime 3s forwards linear;
}
@keyframes fade-in-anime {
  0% {
    opacity: 0;
    margin: 0 auto;
  }
  100% {
    opacity: 1;
    margin: 0 auto;
  }
}
@media(min-width:500px) {
  .top-circle {

  margin: 25% 0 0;
  right: 50px;
}
}
@media(min-width:767px) {
  

  .section-top {
    position: relative;
  }
  .section-top__image {
    width: 87%;
    height: 68vh;
    max-height: 1000px;
    margin: 0 auto;
  }
  .top-image {
    height: 68vh;
  }
  .top-circle {
  z-index: 1;
  height: 300px;
  width: 300px;
  line-height: 300px;
  margin: 12% auto 0;
    right: 5%;
}
 .top-circle h2 {
    left: 5%;
    top: 30%;
    text-align: left;
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 4.8rem;
  }
  .section-top p {
    font-size: 3.0rem;
    font-weight: 600;
    line-height: 4.0rem;
    opacity: 0.8;
  }
  .section-top p br {
    display: none;
  }
}
.section-information {
  padding-top: 60px;
}
.section-information__title {
  display: flex;
  position: relative;
}
.section-information__title h2 {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.2rem;
  text-align: center;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.section-information__title h2::before, .section-information__title h2::after {
  content: '';
  height: 2px;
  background-color: #707070;
  opacity: 0.8;
}
.section-information__title h2::before {
  margin-right: 20px;
  flex-grow: 1;
}
.section-information__title h2::after {
  margin-left: 20px;
  flex-grow: 1;
}
.section-information p {
  padding-top: 30px;
}
.section-information ol {
  padding-top: 40px;
  padding-bottom: 40px;
}
.section-information ol li {
  line-height: 3.5rem;
}
.section-information ol li:last-child {
  display: none;
}
.section-information ol li:first-child::after {
  display: inline-block; /* インラインボックス定義  */
  content: "NEW"; /* 表示する文字            */
  background: #ff0000; /* 背景色                  */
  color: #ffffff; /* 文字色                  */
  font-weight: 600; /* 太字                    */
  font-size: 1.4rem; /* ベースの文字サイズ      */
  letter-spacing: -1px; /* 文字間隔詰め            */
  line-height: 1; /* 1行の高さ               */
  vertical-align: top; /* 基準の高さ位置          */
  margin: 0; /* 外余白なし              */
  padding: 2px; /* 反転時の内余白          */
  transform: scale(0.6) /* 文字サイズ変更          */
    translateX(-30%); /* 横位置調整              */
  /* ブリンクのアニメ指定    */
  animation: newAnime .9s infinite alternate;
}
@keyframes newAnime {
  0% {
    color: #ff0000; /* ブリンク時の文字色      */
    background: #ffffff; /* ブリンク時の背景色      */
  }
  100% {
    color: #ffffff; /* ブリンク時の文字色      */
    background: #ff0000; /* ブリンク時の背景色      */
  }
}
.section-infomation__links {
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 400;
  color: #505050;
  border: solid 1px #505050;
  border-radius: 100vw;
  padding: 11px 15px;
}

.section-infomation__links:hover {
  background: #505050;
  color: #ffffff;
}
@media(min-width:960px) {
  .section-information {
    padding-top: 120px;
  }
  .section-information__title h2 {
    font-size: 2.8rem;
  }
  .section-information p {
    padding-top: 40px;
    font-size: 2.4rem;
  }
  .section-information ol li:last-child {
    display: flex;
  }
  .section-information ol li:first-child::after {
    display: inline-block;
    font-size: 1.6rem; /* ベースの文字サイズ      */
    letter-spacing: -1px; /* 文字間隔詰め            */
    line-height: 1; /* 1行の高さ               */
    vertical-align: top; /* 基準の高さ位置          */
    margin: 0; /* 外余白なし              */
    padding: 7px 2px; /* 反転時の内余白          */
    transform: scale(0.8) /* 文字サイズ変更          */
      translateX(-20%); /* 横位置調整              */
    
  }

  .section-information ol {
    padding: 60px 14% 30px 16%;
  }
  .section-information ol li {
    display: flex;
    font-size: 2.2rem;
    justify-content: flex-start;
    padding: 0 14% 24px 24%;
    line-height: normal;
    white-space: nowrap;
  }
  .section-information ol li time {
    padding-right: 12%;
  }
  .section-information ol li br {
    display: none;
  }
  .section-infomation__links {
    font-size: 1.8rem;
  }
}
  @keyframes newAnime {
  0% {
    color: #ff0000; /* ブリンク時の文字色      */
    background: #ffffff; /* ブリンク時の背景色      */
  }
  100% {
    color: #ffffff; /* ブリンク時の文字色      */
    background: #ff0000; /* ブリンク時の背景色      */
  }
}
.section-topics {
  padding-top: 60px;
}
.section-topics__title {
  display: flex;
  position: relative;
}
.section-topics h2 {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.2rem;
  text-align: center;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.section-topics h2::before, .section-topics h2::after {
  content: '';
  height: 2px;
  background-color: #707070;
  opacity: 0.8;
}
.section-topics h2::before {
  margin-right: 20px;
  flex-grow: 1;
}
.section-topics h2::after {
  margin-left: 20px;
  flex-grow: 1;
}
.section-topics p {
  padding-top: 30px;
}
.section-topics ul {
  padding-top: 40px;
  padding-bottom: 40px;
}
.section-topics ul li {
  line-height: 40px;
  padding-bottom: 50px;
}
.section-topics ul li:last-child {
  display: none;
}
.section-topics ul li a {
  display: flex;
  position: absolute;
  right: 15%;
  align-items: center;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 400;
  color: #505050;
  border: solid 1px #505050;
  border-radius: 100vw;
  line-height: normal;
   padding: 10px 15px;
}
.section-topics ul li a:hover {
  background: #505050;
  color: #ffffff;
}
.section-topics__banner1, .section-topics__banner2, .section-topics__banner3 {
  margin: 10px auto;
}
.section-topics__banner1:hover, .section-topics__banner2:hover, .section-topics__banner3:hover {
  opacity: 0.8;
}
@media(min-width:960px) {
  .section-topics {
    padding-top: 120px;
  }
  .section-topics h2 {
    font-size: 2.8rem;
  }
  .section-topics p {
    padding-top: 40px;
    font-size: 2.4rem;
  }
  .section-topics ul {
    padding: 60px 0;
  }
  .section-topics ul li {
    display: flex;
    font-size: 2.2rem;
    justify-content: space-between;
    padding-left: 20%;
    line-height: normal;
  }
  .section-topics ul li:last-child {
    display: flex;
  }
  .section-topics ul li a {
    font-size: 1.8rem;
    right: 22%;
  }
}
.section-works {
  padding-top: 60px;
}
.section-works__title {
  display: flex;
  position: relative;
}
.section-works h2 {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.2rem;
  text-align: center;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.section-works h2::before, .section-works h2::after {
  content: '';
  height: 2px;
  background-color: #707070;
  opacity: 0.8;
}
.section-works h2::before {
  margin-right: 20px;
  flex-grow: 1;
}
.section-works h2::after {
  margin-left: 20px;
  flex-grow: 1;
}
.section-works p {
  padding-top: 30px;
}
.section-works #slick-slide {
  margin: 0 24px;
  list-style: none;
  padding: 40px 0 80px;
}
#slick-slide a {
  text-decoration: none;
  color: #505050;
}
.section-works #slick-slide .section-works__frame {
  width: 100vw;
  margin-left: 10px;
  background-color: #EEEEEE;
  border-radius: 6px;
  text-align: left;
  padding-bottom: 40px;
  min-width: 300px;
   max-width: 350px;
  opacity: 1;
  transition: .3s ease-in-out; /*移り変わる速さを変更したい場合はこの数値を変更*/
}

.section-works__picture {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  border-radius: 6px 6px 0 0;
    min-width: 300px;
  max-width: 350px;
}
#slick-slide img {
  opacity: 1;
  transition: .3s ease-in-out; /*移り変わる速さを変更したい場合はこの数値を変更*/
}
#slick-slide:hover img { /*hoverした時の変化*/
  opacity: 0.8; /*透過具合を変更したい場合はこの数値を変更*/
}
.section-works h3 {
  margin: 0 20px;
  padding-top: 10px;
}
.section-works__description {
  margin: 0 20px;
}
.section-works__links {
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 400;
  color: #505050;
  border: solid 1px #505050;
  border-radius: 20px;
  padding: 10px 15px;
}
.section-works__links:hover {
  background: #505050;
  color: #ffffff;
}
@media(max-width:960px) {
  .section-works #slick-slide {
    max-width: 980px !important;
    height: 500px;
  }
}
@media(min-width:980px) {
  .section-works {
    padding-top: 120px;
  }
  .section-works__title h2 {
    font-size: 2.8rem;
  }
  .section-works p {
    padding-top: 40px;
    font-size: 1.8rem;
  }
  .section-works #slick-slide {
    padding: 60px 0 100px;
  }
  .section-works #slick-slide .section-works__frame {
    margin: 0 30px;
  }
  .section-works__picture {
    object-position: top;
  }
  .section-works #slick-slide .section-works__frame h3 {
    font-size: 2.2rem;
    padding-top: 28px;
  }
  .section-works__description {
    margin: 0 28px;
  }
  .section-works__links {
    font-size: 1.8rem;
  }
}
.section-voices {
  padding-top: 60px;
}
.section-voices__title {
  display: flex;
  position: relative;
}
.section-voices h2 {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.2rem;
  text-align: center;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.section-voices h2::before, .section-voices h2::after {
  content: '';
  height: 2px;
  background-color: #707070;
  opacity: 0.8;
}
.section-voices h2::before {
  margin-right: 20px;
  flex-grow: 1;
}
.section-voices h2::after {
  margin-left: 20px;
  flex-grow: 1;
}
.section-voices__subtitle {
  padding-top: 30px;
}
/*スライダー*/
.section-voices__slider {
  position: relative;
  /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
  height: 40vh; /*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}
.section-voices__wrapper {
  padding: 20px 0 40px;
}
.slider-item01 {
  background: url("../images/voice1.png");
}
.slider-item02 {
  background: url("../images/voice2.png");
}
.slider-item03 {
  background: url("../images/voice3.png");
}
.slider-item04 {
  background: url("../images/voice4.png");
}
.voices-image {
  width: 50vw; /*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
  height: 40vh; /*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.section-voices__button {
  display: inline-block;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 400;
  color: #505050;
  border: solid 1px #505050;
  border-radius: 100vw;
  line-height: normal;
  padding: 10px 15px;
}
.section-voices__button:hover {
  background-color: #505050;
  color: #ffffff;
}
@media(min-width:960px) {
  .section-voices {
    padding-top: 120px;
  }
  .section-voices h2 {
    font-size: 2.8rem;
  }
  .section-voices__subtitle {
    padding-top: 40px;
    font-size: 2.4rem;
  }
  /*fadein*/
  .section-voices__wrapper {
    padding: 20px 40px;
  }
  .section-voices__slider {
    position: relative;
    height: 40vh; /*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  }
  .voices-image {
    position: relative;
    display: flex;
    padding: 0 20px;
    opacity: 0;
    transition: all 1s;
  }
  .voices-image.active {
    opacity: 1;
  }
  .slider-item01 {}
  .slider-item02 {}
  .slider-item03 {}
  .slider-item04 {}
  .section-voices__button {
    font-size: 1.8rem;
  }
}
.section-contact {
  padding-top: 60px;
}
.section-contact__title {
  display: flex;
  position: relative;
}
.section-contact h2 {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.2rem;
  text-align: center;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.section-contact h2::before, .section-contact h2::after {
  content: '';
  height: 2px;
  background-color: #707070;
  opacity: 0.8;
}
.section-contact h2::before {
  margin-right: 20px;
  flex-grow: 1;
}
.section-contact h2::after {
  margin-left: 20px;
  flex-grow: 1;
}
.section-contact__subtitle {
  padding-top: 30px;
}

.btn,
a.btn,
button.btn {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 5px 15px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.3em;
  color: #ffffff;
  border-radius: 0.5rem;
   font-family: 'Lato', sans-serif;
}

.btn-wrap {
  display: block;
  max-width: 250px;
  margin: 0 auto 20px;
}

a.btn-c {
  font-size: 2.8rem;

  display: block;
  overflow: hidden;

  padding: 1.0rem 0 1.0rem 3.4rem;

  border-bottom: 5px solid #031407;
  background: #004211;
}

a.btn-c:before {
  font-size: 1.4rem;
  font-weight: 700;

  position: absolute;
  top: 1.0rem;
  left: -3.2rem;

  padding: .2rem 2.8rem;

  content: "無料";
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: top;
  transform-origin: top;
  letter-spacing: 0.1em;
  font-family: 'Lato', sans-serif;
  color: #333333;
  background: #fac33c;
  -webkit-box-shadow: 0 3px 3px #886103;
  box-shadow: 0 3px 3px #886103;
}

a.btn-c:hover {
  transform: translateY(3px);
  border-bottom: 2px solid #333333;

  opacity: 0.8;
}
.fa-solid.fa-caret-right {
  color: #FAC33C;
  padding-left: 7px;
}
.section-contact-wrapper {

  padding-top: 30px;

}
.section-contact-quotation, .section-contact-catalog {
  width: 250px;
  margin: 0 auto;
  padding: 10px;
}
.section-contact-number {
  padding-top: 40px;
  margin: 0 14px;
}
.t-btn,
a.t-btn,
button.t-btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.0;
  position: relative;
  display: inline-block;
  padding: 0 40px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.2em;
  color: #ffffff;
  border-radius: 10px;
  /*font-family: 'Lato', sans-serif; */
  /*font-family: 'Josefin Sans', sans-serif;*/
  font-family: 'Lato', sans-serif;
}

.tel-btn-wrap p {
  font-size: 1.4rem;
  padding: 0.4rem 0 1rem;
  letter-spacing: 0.1em;
}
.tel-btn-wrap .fa-solid.fa-phone {
  color:  #FAC33C;
}

a.btn-number {
   position: relative;
    font-size: 3rem;
  padding: 0 30px;
  letter-spacing: 0.2em;


  color: #505050;
  background: #fff;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
  border: solid 5px #004211;
   border-radius: 10px;
}

a.btn-number span {
  font-size: 1.6rem;

  position: absolute;
  top: -1.8rem;
  left: calc(50% - 150px);

  display: block;

  width: 300px;
  padding: 1rem;

  color: #ffffff;
  border: 2px solid #004211;
  border-radius: 100vh;
  background: #004211;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}

a.btn-number span:before,
a.btn-number span:after {
  position: absolute;
  left: calc(50% - 10px);

  content: "";
}

a.btn-number span:before {
  bottom: -10px;

  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #333333 transparent transparent transparent;
}

a.btn-number span:after {
  bottom: -7px;

  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #004211 transparent transparent transparent;
}

a.btn-number i {
  margin-right: 1rem;
}

a.btn-number:hover {
  -webkit-transform: translate(0, 3px);
  transform: translate(0, 3px);
  -webkit-box-shadow: 0 2px 0 #333333;
  box-shadow: 0 2px 0 #333333;
  opacity: 0.8;
}
@media(min-width:1200px) {
  .section-contact {
    padding-top: 120px;
  }
  .section-contact h2 {
    font-size: 2.8rem;
  }
  .section-contact__subtitle {
    padding-top: 40px;
    font-size: 2.4rem;
  }
.section-contact-wrapper {
  margin: 0 auto;
  padding: 30px 20%;
  position: relative;
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
}
  .section-contact-quotation, .section-contact-catalog {
    width: 22vw;
    margin: 0 6%;
  }
  .section-contact-number {
    padding-top: 40px;
    width: 55vw; 
    margin: 0 auto;
  }
  a.btn-number {
  font-size: 3.4rem;
  padding: 0 100px;
}
  .tel-btn-wrap p {

  
}
}
.section-access {
  padding-top: 60px;
}
.section-access__title {
  display: flex;
  position: relative;
}
.section-access h2 {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.2rem;
  text-align: center;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.section-access h2::before, .section-access h2::after {
  content: '';
  height: 2px;
  background-color: #707070;
  opacity: 0.8;
}
.section-access h2::before {
  margin-right: 20px;
  flex-grow: 1;
}
.section-access h2::after {
  margin-left: 20px;
  flex-grow: 1;
}
.section-access__subtitle {
  padding-top: 30px;
}
.section-access__map {
  margin-top: 40px;
  width: 100%;
  height: 470px;
  vertical-align: bottom;
  border: solid 1px #999;
}
.section-access__address {
  margin: 40px 50px 0;
  text-align: left;
}
.section-access__address h3 {
  font-size: 2.2rem;
  padding-top: 20px;
}
.section-access__address h3 img {
  position: relative;
  height: 25px;
  width: 25px;
  vertical-align: bottom;
  bottom: 1px;
  right: 2px;
}
.section-access__address address {
  font-style: normal;
  padding-top: 30px;
  font-size: 1.8rem;
}
.section-access__address h4 {
  padding-top: 20px;
  font-size: 2.0rem;
}
.section-access__address p {
  font-size: 1.8rem;
}
@media(min-width:960px) {
  .section-access {
    padding-top: 120px;
  }
  .section-access h2 {
    font-size: 2.8rem;
  }
  .section-access__subtitle {
    padding-top: 40px;
    font-size: 2.4rem;
  }
  .section-access-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
  }
  .section-access__map {
    width: 40vw;
  }
  .section-access__address h3 {
    font-size: 2.4rem;
    padding-top: 0px;
  }
  .section-access__address h3 img {
    height: 26px;
    width: 26px;
  }
  .section-access__address address {
    font-size: 2.0rem;
    padding-top: 50px;
  }
  .section-access__address h4 {
    font-size: 2.2rem;
    padding-top: 30px;
  }
  .section-access__address p {
    font-size: 2.0rem;
  }
}
/*{
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

.btn--orange,
a.btn--orange {
  color: #fff;
  background-color: #eb6100;
}

.btn--orange:hover,
a.btn--orange:hover {
  color: #fff;
  background: #f56500;
}

a.btn--radius {
  border-radius: 100vh;
}*/
/*h1::before, h1::after {
  position: absolute;
  content: '';
  top: calc(50% - 1px);
  width: 2em;
  height: 2px;
  background-color: #DA5019;
}
h1::before {
  left:0;
}
h1::after {
  right: 0;
}*/