@charset "utf-8";

/*----------ローディング-----------*/
#loading {
  background: #fff;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0px;
  left: 0px;
  z-index: 9999;
}
#animation-wrap {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#animation-box {
  width: 200px;
  max-width: 30%;
  margin: 0 auto;
  position: relative;
}
.animation-house {
  width: 50%;
  margin: 0 auto;
}
.animation-sun {
  width: 36%;
  transform: scale(0.4);
  animation: zoom-in 2s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
}
.animation-leaf1 {
  width: 10%;
  position: absolute;
  bottom: 10%;
  left: 20%;
  transform: scale(0.1);
  animation: zoom-in 2s cubic-bezier(0, -0.25, 0.95, -1.32) forwards;
  animation-delay: 0.5s;
}
.animation-leaf2 {
  width: 15%;
  position: absolute;
  bottom: 0;
  right: 20%;
  transform: scale(0.02);
  animation: zoom-in 2s cubic-bezier(0, -0.25, 0.95, -1.32) forwards;
  animation-delay:1s;
}
@keyframes zoom-in {

   0%{
       opacity: 0;
    }
  100% {
       transform: scale(1);
    }
}

h2 {
  font-size: clamp(17px, 3.2vw, 43px);
}
h3 {
  font-size: clamp(16px, 3.2vw, 28px);
}
p {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.4em;
}
a {
  color: #fff;
}
body {
  font-family: "M PLUS Rounded 1c",serif;
  max-width: 1920px;
  margin: 0 auto;
}
/*----------トップメニュー-----------*/
@media only screen and (max-width: 767px) {
   #topbar img{
     max-width: 100px;
   }
   #topbar {
     height: 70px;
     position: fixed;
     background-color: #000;
     opacity: 0.8;
     top: 0;
     z-index: 3;
     display: flex;
     flex-direction: row;
     align-items: center;
   }
   .character {
     width: 20%;
     bottom: 0;
     right: 0;
     position: absolute;
     transform: translateY(10%) translateX(-40%);
   }
   .character img {
     width: 100%;
     max-width: 300px;
   }
   .hamburger {
     display : block;
     position: fixed;
     z-index : 3;
     right : 13px;
     top   : 12px;
     width : 42px;
     height: 42px;
     background: #000;
     cursor: pointer;
     text-align: center;
     opacity: 0.8;
   }
   .hamburger span {
     display : block;
     position: absolute;
     width   : 30px;
     height  : 4px ;
     left    : 6px;
     background : #fff;
     border-radius: 4px;
     -webkit-transition: 0.3s ease-in-out;
     -moz-transition   : 0.3s ease-in-out;
     transition        : 0.3s ease-in-out;
   }
   .hamburger span:nth-child(1) {
     top: 9px;
   }
   .hamburger span:nth-child(2) {
     top: 19px;
   }
   .hamburger span:nth-child(3) {
     top: 29px;
   }
/*----------ナビ開いてる時のボタン----------*/
   .hamburger.active span:nth-child(1) {
     top : 16px;
     left: 6px;
     background :#fff;
     -webkit-transform: rotate(-45deg);
     -moz-transform   : rotate(-45deg);
     transform        : rotate(-45deg);
   }
   .hamburger.active span:nth-child(2),
   .hamburger.active span:nth-child(3) {
     top: 16px;
     background :#fff;
     -webkit-transform: rotate(45deg);
     -moz-transform   : rotate(45deg);
     transform        : rotate(45deg);
   }
   .menu-list {
     position: fixed;
     z-index : 2;
     top  : 0;
     left : 0;
     color: #fff;
     text-align: center;
     width: 100%;
     opacity: 0;
     visibility: hidden;
     transition: opacity .6s ease, visibility .6s ease;
   }
   .menu-list ul {
     margin: 0 auto;
     padding: 0;
     width: 100%;
     display: flex;
     flex-direction: column;
     background-color: #000;
     height: 100vh;
     justify-content: center;
   }
   .menu-list li {
     list-style-type: none;
     padding: 0;
     width: 100%;
     font-size: 2.5vh;
     transition: .4s all;
   }
   .menu-list ul li:last-child {
     padding-bottom: 0;
   }
   .menu-list ul li a {
     padding: 10px;
     display: block;
     color: #fff;
     font-size: 4vh;
     text-decoration :none;
   }
/*----------このクラスを、jQueryで付与・削除する----------*/
   .menu-list.active {
     opacity: 1;
     visibility: visible;
   }
   /*----------solution----------*/
   .solution {
     width: 100%;
     padding: 50px 0 50px;
     font-weight: bold;
     text-align: center;
   }
   .solution-flex {
     padding: 40px 5vw 80px;
     display: flex;
     justify-content: space-evenly;
     flex-wrap: wrap;
   }
   .solution-title {
     text-decoration:underline;
     text-underline-offset: 10px;
     text-decoration-color:#FCEE21;
   }
   .solution-title, .solution-comment {
     color: #004135;
   }
   .solution-comment {
     padding: 10px 0;
     font-size: clamp(16px, 4vw, 54px);
   }
   .solution-contents {
     width: 75%;
     margin: 30px;
     background : #fff;
     border-style : Solid;
     border-color : #000;
     border-width : 1px;
     box-shadow : 12px 12px 0px rgba(41, 171, 226, 0.75);
     display: flex;
     align-items: center;
     flex-direction: column;
     justify-content: flex-start;
   }
   .solution-contents-box1 {
     width: 15%;
     padding: 20px;
   }
   .solution-contents-box1 img {
     width: 100%;
   }
   .solution-contents-box2 {
     display: flex;
     align-items: center;
     justify-content: center;
   }
   .solution-contents-box2 img {
     width: 10%;
   }
   .solution-contents-box3 {
     width: 60%;
     border-bottom: solid 2px #29ABE2;
     display: flex;
     align-items: center;
     justify-content: center;
   }
   .solution-box-p {
     padding: 20px;
   }
   .solution-contents-box4 {
     position: relative;
   }
   #solution-contents-box4-background {
     height: 200px;
     filter: brightness(0.3);
     background-image: url("../images/image02.jpg");
     background-repeat: no-repeat;
     background-size: 175%;
   }
   .solution-contents-box4 p {
     width: 100%;
     color: #fff;
     text-shadow: 0px 0px 12px #000;
     position: absolute;
     top: 50%;
     left: 50%;
     font-size: clamp( 12px, 3vw, 34px);
     text-align: center;
     z-index: 1;
     transform: translateY(-50%) translateX(-50%);
     -webkit- transform: translateY(-50%) translateX(-50%);
   }
   /*----------Service----------*/
   .service {
     width: 100%;
     padding: 50px 0 50px;
   }
   .service-title1 {
     text-align: center;
   }
   .service-wrap {
     width: 90%;
     margin: 0 auto;
   }
   .service-title2 {
     padding: 0 0 0 20px;
     border-left: solid 10px rgba(41, 171, 226, 0.75);
   }
   .service-comment {
     width: 80%;
     padding: 50px 0;
     margin: 0 auto;
   }
   .service-flex {
     padding: 20px 0 0 0;
     text-align: center;
     display: flex;
     justify-content: space-evenly;
   }
   .service-contents {
     align-items: center;
     display: flex;
     justify-content: space-evenly;
     flex-wrap: wrap;
   }
   .service-contents p {
     padding: 20px;
     font-size: clamp( 16px, 2vw, 34px);
     font-weight: bold;
   }
   .service-contents-box1 {
     width: 45%;
   }
   .service-contents-box1 img {
     width: 100%;
   }
   /*----------Customer----------*/
   .pc {
     display:  none;
   }
   .customer {
     width: 100%;
     padding: 50px 0 50px;
   }
   .customer-title {
     text-align: center;
   }
   .customer-comment {
     width: 100%;
     margin: 0 auto;
     padding: 50px 0;
   }
   .customer-wrap {
     width: 90%;
     max-width: 1200px;
     margin: 0 auto;
   }
   .customer-contents {
     margin: 20px 0 20px 0;
     background: #fff;
     display: flex;
     flex-direction: column;
     align-items: center;
     box-shadow: 0 4px 10px 0 rgb(0 0 0 / 60%)
   }
   .customer-contents p {
     padding: 10px;
   }
   .customer-contents-box1 {
     width: 100%;
   }
   .customer-contents-box1 img {
     width: 100%;
   }
   .customer-contents-box2 {
     width: 90%;
   }
   .customer-contents-name {
     font-size: clamp( 16px, 2vw, 28px);
   }
   /*----------Q&A----------*/
   .question {
     width: 100%;
     padding: 50px 0 50px;
     text-align: center;
   }
   .question-title {
   }
   .question-comment {
     padding: 50px 0;
   }   
   
   /*----------アコーディオン----------*/
   .accordion {
     width: 90%;
     margin: 0 auto;
   }
   .toggle {
     display: none;
   }
   .option {
     position: relative;
     margin-bottom: 4em;
   }
   .option p {
     width: 90%;
     font-size: clamp( 14px, 3vw, 30px);
   }
   .option img {
     width: 8%;
     margin: 5px;
   }
   .title,
   .content {
     -webkit-backface-visibility: hidden;
     backface-visibility: hidden;
     transform: translateZ(0);
     transition: all 0.3s;
   }
   .title {
     max-width: 500px;
     margin: 0 auto;
     border-bottom: solid 4px #FCEE21;
     padding: 1em;
     display: block;
     font-weight: bold;
   }
   .title::after,
   .title::before {
     content: "";
     position: absolute;
     right: 1.2em;
     top: 2em;
     width: 2px;
     height: 1.25em;
     background-color: #999;
     transition: all 0.3s;
   }
   .title::after {
     transform: rotate(90deg);
   }
   .content {
     max-width: 700px;
     max-height: 0;
     margin: 0 auto;
     display: flex;
     align-items: flex-start;
     overflow: hidden;
   }
   .content p {
     width: 100%;
     margin: 0;
     padding: 0.5em 1em 1em;
     line-height: 1.5;
     font-size: clamp( 14px, 3vw, 17px);
   }
   .toggle:checked + .title + .content {
     max-height: 900px;
     transition: all 1s;
   }
   .toggle:checked + .title::before {
     transform: rotate(90deg) !important;
   }
   /*----------contact----------*/
   .contact {
     width: 100%;
     padding: 50px 0 50px;
     font-weight: bold;
   }
   .contact-wrap {
     background-image: url("../images/footer.png");
     background-repeat: no-repeat;
     background-size: 90%;
     background-position: bottom;
     text-align: center;
   }
   .contact-title {
   }
   .contact-comment {
     padding: 50px 0 0 0;
     font-size: clamp( 16px, 4vw, 46px);
   }
   .contact-contents {
     width: 80%;
     max-width: 960px;
     padding: 20px;
     margin: 0 auto;
     display: flex;
     flex-direction: column;
     align-items: center;
     background-color: rgba(255,255,255,0.9);
     box-shadow: 0 4px 10px 0 rgb(0 0 0 / 60%)
   }
   .contact-contents p {
     font-size: clamp( 18px, 3vw, 32px);
     font-weight: bold;
   }
   .contact-contents-box1 {
     width: 50%;
     padding: 0 20px 20px;
   }
   .contact-contents-wrap1 {
     padding: 0 0 5vw 0;
   }
   .contact-contents-wrap2 {
     width: 90%;
     display: flex;
     justify-content: center;
     flex-direction: column;
     align-items: center;
   }
   .under {
     border-bottom: dotted 8px #FCEE21;
   }
   .contact-contents-box2 {
     width: 55vw;
     height: 3vw;
     margin: 0 0 14px;
     background: linear-gradient(transparent 60%, #FCEE21 0%);
     display: flex;
     justify-content: center;
     align-items: center;
   }
   .contact-contents-box2 p {
     font-size: clamp( 16px, 6vw, 60px);
     font-weight: bold;
   }
   .contact-contents-box2 img {
     width: 10%;
     vertical-align: bottom;
   }
   .contact-contents-box3 {
     width: 100%;
   }
   .contact-contents-box3 p {
     padding: 14px;
     font-size: clamp( 11px, 3.5vw, 28px);
     font-weight: bold;
     border: 2px solid #000;
     border-radius: 40px;
   }
   .button1 {
     width: 86%;
     margin: 0 auto;
     padding: 10px 0 50px 0;
     font-size: clamp( 12px, 4vw, 24px);
   }
   .button1 a {
     position: relative;
     display: flex;
     justify-content: space-around;
     align-items: center;
     max-width: 550px;
     padding: 20px 25px;
     color: #FFF;
     transition: 0.3s ease-in-out;
     font-weight: 600;
     background: #03A9F4;
     filter: drop-shadow(0px 2px 4px #ccc);
     border-radius: 50px;
   }
   .button1 a:after {
     content: '';
     width: 5px;
     height: 5px;
     border-top: 3px solid #FFF;
     border-right: 3px solid #FFF;
     transform: rotate(45deg) translateY(-50%);
     position: absolute;
     top: 46%;
     right: 20px;
     border-radius: 1px;
     transition: 0.3s ease-in-out;
   }
   .button11 a:hover {
     transform: translateY(-2px);
     box-shadow: 0 15px 30px -5px rgb(0 0 0 / 15%), 0 0 5px rgb(0 0 0 / 10%);
   }

}
/*-----------------------------------------------------------------------------------------------*/
@media only screen and (min-width: 768px) {
   #hamburger-box {
     display: none;
   }
   #none {
     display: none;
   }
   #topbar {
     width: 100%;
     max-width: 1920px;
     position: fixed;
     background: linear-gradient(to bottom, rgb(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 90%);
     top: 0;
     z-index: 3;
   }
   .menu-list img {
     width: 80%;
   }
   .character {
     width: 20%;
     bottom: 0;
     right: 0;
     position: absolute;
     transform: translateY(10%) translateX(-40%);
   }
   .character img {
     width: 100%;
     max-width: 300px;
   }
   #freedial-list {
     width: 250px;
   }
   .freedial {
     display: flex;
     align-items: center;
     flex-direction: column;
     justify-content: center;
   }
   .freedial-number {
     display: flex;
     align-items: center;
     justify-content: center;
   }
   .freedial-number img{
     width: 16%;
   }
   .freedial p {
     font-size: clamp( 34px, 3vw, 48px);
     color: #fff;
     font-weight: bold;
   }
   /*----------solution----------*/
   .solution {
     width: 100%;
     padding: 50px 0 50px;
     font-weight: bold;
     text-align: center;
   }
   .solution-flex {
     padding: 40px 5vw 80px;
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
   }
   .solution-title {
     text-decoration:underline;
     text-underline-offset: 10px;
     text-decoration-color:#FCEE21;
   }
   .solution-title, .solution-comment {
     color: #004135;
   }
   .solution-comment {
     padding: 10px 0;
     font-size: clamp(16px, 4vw, 54px);
   }
   .solution-contents {
     width : 40%;
     max-width: 300px;
     height : 300px;
     margin: 25px;
     background : #fff;
     border-style : Solid;
     border-color : #000;
     border-width : 1px;
     box-shadow : 12px 12px 0px rgba(41, 171, 226, 0.75);
     display: flex;
     align-items: center;
     flex-direction: column;
     justify-content: flex-start;
   }
   .solution-contents-box1 {
     width: 24%;
     padding: 30px;
   }
   .solution-contents-box1 img {
     width: 100%;
   }
   .solution-contents-box2 {
     display: flex;
     align-items: center;
     justify-content: center;
   }
   .solution-contents-box2 img {
     width: 10%;
   }
   .solution-contents-box3 {
     width: 60%;
     border-bottom: solid 2px #29ABE2;
     display: flex;
     align-items: center;
     justify-content: center;
   }
   .solution-box-p {
     padding: 20px;
   }
   .solution-contents-box4 {
     position: relative;
   }
   #solution-contents-box4-background {
     height: 300px;
     filter: brightness(0.3);
     background-image: url("../images/image02.jpg");
     background-repeat: no-repeat;
     background-size: 100%;
   }
   .solution-contents-box4 p {
     width: 100%;
     color: #fff;
     text-shadow: 0px 0px 12px #000;
     position: absolute;
     top: 50%;
     left: 50%;
     font-size: clamp( 16px, 2vw, 34px);
     text-align: center;
     z-index: 1;
     transform: translateY(-50%) translateX(-50%);
     -webkit- transform: translateY(-50%) translateX(-50%);
   }
   /*----------Service----------*/
   .service {
     width: 100%;
     padding: 50px 0 50px;
     font-weight: bold;
   }
   .service-title1 {
     text-align: center;
   }
   .service-wrap {
     width: 70%;
     margin: 0 auto;
   }
   .service-title2 {
     padding: 0 0 0 20px;
     border-left: solid 10px rgba(41, 171, 226, 0.75);
   }
   .service-comment {
     width: 70%;
     padding: 50px 0;
     margin: 0 auto;
   }
   .service-flex {
     padding: 20px 0 0 0;
     text-align: center;
     display: flex;
     justify-content: space-evenly;
   }
   .service-contents {
     align-items: center;
     display: flex;
     justify-content: space-evenly;
   }
   .service-contents p {
     padding: 20px;
     font-size: clamp( 16px, 2vw, 34px);
   }
   .service-contents-box1 {
     width: 30%;
   }
   .service-contents-box1 img {
     width: 100%;
   }
   /*----------Customer----------*/
   .customer-image {
     width: 100%;
     margin: 0 auto;
   }
   .sp {
     display:  none;
   }
   .customer-comment {
     padding: 30px 0;
   }
   .customer {
     width: 100%;
     padding: 50px 0 50px;
     font-weight: bold;
   }
   .customer-title {
     text-align: center;
   }

   .customer-wrap {
     width: 90%;
     max-width: 1200px;
     margin: 0 auto;
   }
   .customer-contents {
     margin: 20px 0 20px 0;
     background: #fff;
     display: flex;
     flex-direction: row;
     align-items: center;
     box-shadow: 0 4px 10px 0 rgb(0 0 0 / 60%)
   }
   .customer-contents p {
     padding: 10px;
     font-size: clamp(15px, 1.4vw, 17px);
   }
   .customer-contents-box1 {
     width: 40%;
     max-width: 340px;
   }
   .customer-contents-box1 img {
     width: 100%;
     height: 22vh;
     object-fit: cover;
   }
   .customer-contents-box2 {
     width: 100%;
   }
   .customer-contents-name {
     font-size: clamp( 16px, 2vw, 28px);
   }
   /*----------Q&A----------*/
   .question {
     width: 100%;
     padding: 50px 0 50px;
     text-align: center;
     font-weight: bold;
   }
   .question-title {
   }
   .question-comment {
     padding: 50px 0;
   }   
   
   /*----------アコーディオン----------*/
   .accordion {
     width: 80%;
     margin: 0 auto;
   }
   .toggle {
     display: none;
   }
   .option {
     position: relative;
     margin-bottom: 10em;
   }
   .option p {
     width: 90%;
     font-size: clamp( 20px, 3vw, 30px);
   }
   .option img {
     width: 40px;
     margin: 5px;
   }
   .title,
   .content {
     -webkit-backface-visibility: hidden;
     backface-visibility: hidden;
     transform: translateZ(0);
     transition: all 0.3s;
   }
   .title {
     max-width: 700px;
     margin: 0 auto;
     border-bottom: solid 4px #FCEE21;
     padding: 1em;
     display: block;
     font-weight: bold;
   }
   .title::after,
   .title::before {
     content: "";
     position: absolute;
     right: 1.2em;
     top: 1.2em;
     width: 2px;
     height: 2.25em;
     background-color: #999;
     transition: all 0.3s;
   }
   .title::after {
     transform: rotate(90deg);
   }
   .content {
     max-width: 700px;
     max-height: 0;
     margin: 0 auto;
     display: flex;
     align-items: flex-start;
     overflow: hidden;
   }
   .content p {
     width: 100%;
     margin: 0;
     padding: 0.5em 1em 1em;
     line-height: 1.5;
     font-size: clamp( 18px, 2vw, 22px);
   }
   .toggle:checked + .title + .content {
     max-height: 900px;
     transition: all 1s;
   }
   .toggle:checked + .title::before {
     transform: rotate(90deg) !important;
   }
   /*----------contact----------*/
   .contact {
     width: 100%;
     padding: 50px 0 50px;
     font-weight: bold;
   }
   .contact-wrap {
     background-image: url("../images/footer.png");
     background-repeat: no-repeat;
     background-size: 90%;
     background-position: bottom;
     text-align: center;
   }
   .contact-title {
   }
   .contact-comment {
     padding: 50px 0 0 0;
     font-size: clamp( 16px, 4vw, 46px);
   }
   .contact-contents {
     width: 70%;
     max-width: 960px;
     padding: 20px;
     margin: 0 auto;
     display: flex;
     flex-direction: row;
     background-color: rgba(255,255,255,0.9);
     align-items: center;
     box-shadow: 0 4px 10px 0 rgb(0 0 0 / 60%)
   }
   .contact-contents p {
     font-size: clamp( 16px, 2vw, 32px);
     font-weight: bold;
   }
   .contact-contents-box1 {
     width: 30%;
   }
   .contact-contents-wrap1 {
     padding: 0 0 5vw 0;
   }
   .contact-contents-wrap2 {
     width: 70%;
     display: flex;
     justify-content: center;
     flex-direction: column;
     align-items: center;
   }
   .under {
     border-bottom: dotted 8px #FCEE21;
   }
   .contact-contents-box2 {
     height: 3vw;
     margin: 0 0 14px;
     background: linear-gradient(transparent 60%, #FCEE21 0%);
     display: flex;
     justify-content: center;
     align-items: center;
   }
   .contact-contents-box2 p {
     font-size: clamp( 16px, 4vw, 60px);
     font-weight: bold;
   }
   .contact-contents-box2 img {
     width: 10%;
     vertical-align: bottom;
   }
   .contact-contents-box3 {
     width: 80%;
   }
   .contact-contents-box3 p {
     padding: 14px;
     font-size: clamp( 16px, 1.5vw, 28px);
     font-weight: bold;
     border: 2px solid #000;
     border-radius: 40px;
   }
   .button1 {
     width: 100%;
     padding: 10px 0 50px 0;
     font-size: 30px;
   }
   .button1 a {
     position: relative;
     display: flex;
     justify-content: space-around;
     align-items: center;
     margin: 0 auto;
     max-width: 550px;
     padding: 20px 25px;
     color: #FFF;
     transition: 0.3s ease-in-out;
     font-weight: 600;
     background: #03A9F4;
     filter: drop-shadow(0px 2px 4px #ccc);
     border-radius: 50px;
   }
   .button1 a:after {
     content: '';
     width: 5px;
     height: 5px;
     border-top: 3px solid #FFF;
     border-right: 3px solid #FFF;
     transform: rotate(45deg) translateY(-50%);
     position: absolute;
     top: 46%;
     right: 20px;
     border-radius: 1px;
     transition: 0.3s ease-in-out;
   }
   .button1 a:hover {
     transform: translateY(-2px);
     box-shadow: 0 15px 30px -5px rgb(0 0 0 / 15%), 0 0 5px rgb(0 0 0 / 10%);
   }

   /*---------------------------*/
   .menu-list {
     display: flex;
     justify-content: center;
   }
   .menu-list ul {
     width: 70%;
     display: flex;
   }
   .menu-list li {
     width: 100%;
     padding: 0 10px;
     text-align: center;
     display: flex;
     align-items: center;
     justify-content: center;
   }
   .menu-list a {
     color: #fff;
     font-size: clamp( 9px, 1.2vw, 30px);
     font-weight: bold;
     display: flex;
     justify-content: center;
   }
   .menu-list a {
     position: relative;
   }
   .menu-list-a::after {
     position: absolute;
     left: 0;
     content: '';
     width: 100%;
     height: 3px;
     background: #FCEE21;
     bottom: -1px;
     transform: scale(0, 1);
     transform-origin: center top;
     transition: transform 0.3s;
   }
   .menu-list-a:hover::after {
     transform: scale(1, 1);
   }
   .menu-list-b:hover {
     opacity: 0.6;
   }
   /*----------このクラスを、jQueryで付与・削除する----------*/
   .menu-list.active {
     opacity: 0.8;
     visibility: visible;
   }
}

/*----------スライドショー-----------*/
.slide-wrap {
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
}
.slide {
  position: relative;
  width: 100%;
  overflow: hidden;
}
@keyframes slideshow{
  0%{
    opacity: 0;
  }
  10%{
    opacity: 1;
  }
  28%{
    opacity: 1
  }
  38%{
    opacity: 0;
  }
  100%{
    opacity: 0;
  }
}
.slide img {
  width: 100%;
  max-height: 80vh;
  object-fit: cover;
  overflow: hidden;
  opacity: 0;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
  animation :slideshow 24s linear infinite;
}
 
.slide img:nth-child(2){
  animation-delay: 8s;
}
.slide img:last-child{
  animation-delay: 16s;
}
.slide1,.slide2 {
  position: absolute;left:0px;top:0px;width: 100%;height: auto;
}
.slide0 {
  position: relative;width: 100%;height: auto;
  vertical-align:bottom;
}
/*--------------------*/
.catch-phrase {
  width: 100%;
  position: relative;
}
.catch-phrase h1 {
  width: 100%;
  color: #fff;
  text-shadow: 0px 0px 12px #000;
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: clamp( 20px, 5vw, 90px);
  text-align: center;
  z-index: 1;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
}
/*----------ボタン----------*/
.buttons {
    margin: 10%;
    text-align: center;
}
.btn-hover {
    width: 80%;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    margin: 0 0 1vh 0;
    height: 55px;
    text-align:center;
    border: none;
    background-size: 300% 100%;

    border-radius: 50px;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.btn-hover:hover {
    background-position: 100% 0;
    moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.btn-hover:focus {
    outline: none;
}
.btn-hover.color-9 {
    background-image: linear-gradient(to right, #25aae1, #4481eb, #04befe, #3f86ed);
    box-shadow: 0 4px 15px 0 rgba(65, 132, 234, 0.75);
}
.button {
    padding: 10px 0 50px 0;
}
.button a {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 30px;
    margin: 0 auto;
    max-width: 240px;
    padding: 10px 25px;
    color: #FFF;
    transition: 0.3s ease-in-out;
    font-weight: bold;
    font-size: clamp( 16px, 2vw, 20px);
    background: #004135;
    filter: drop-shadow(0px 2px 4px #ccc);
    border-radius: 50px;
}
.button a:after {
    content: '';
    width: 5px;
    height: 5px;
    border-top: 3px solid #FFF;
    border-right: 3px solid #FFF;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 46%;
    right: 20px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}
.button a:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgb(0 0 0 / 15%), 0 0 5px rgb(0 0 0 / 10%);
}
/*----------フッター----------*/
#footer-menu {
  text-align: center;
  font-size: clamp( 15px, 3vw, 23px);
  font-weight: bold;
  background-color: #004135;
  color: #fff;
}
.copyright {
  padding: 24px;
}
/*----------Company----------*/
.top-image {
  width: 100%;
}
.top-image img {
  height: 15vw;
  max-height: 200px;
  object-fit: cover;
  object-position: 0 28%;
}
.company {
  width: 90%;
  padding: 50px 0 50px;
  margin: 0 auto;
}
.company h1 {
  font-size: clamp(16px, 3.2vw, 43px);
}
.company-title1 {
  text-align: center;
  padding: 0 0 60px;
}
th,td {
  width: 60%;
  height: 60px;
  border: solid 1px;
  font-weight: bold;
  padding: 10px;
  vertical-align: middle;
}
table {
  border-collapse:  collapse;
  margin: 0 auto;
}
th {
  width:  250px;
  font-size: clamp( 13px, 2vw, 24px);
}
td p {
  font-size: clamp( 13px, 2vw, 20px);
}
/*----------Service----------*/
.service3 {
  width: 100%;
  padding: 50px 0 50px;
  margin: 0 auto;
}
.service-wrap3 {
  width: 90%;
  margin: 0 auto;
}
.service3 h1 {
  font-size: clamp(18px, 3.2vw, 43px);
}
.service-title3 {
  text-align: center;
}
.service-comment3 {
  max-width: 1040px;
  padding: 30px 0;
  margin: 0 auto;
}
.service-title4 {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 0 0 20px;
  border-left: solid 10px #048C73;
}
.service-title4 h2 {
  margin: 60px 0 0;
}
.button2 {
  max-width: 550px;
  margin: 10px 0 50px 0;
  font-size: clamp( 14px, 2vw, 28px);
}
.button2 a {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 10px;
  padding: 20px 35px;
  transition: 0.3s ease-in-out;
  background: #048C73;
  filter: drop-shadow(0px 2px 4px #ccc);
  border-radius: 50px;
}
.button2 a:after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: 3px solid #FFF;
  border-right: 3px solid #FFF;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 46%;
  right: 20px;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}
.button2 a:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgb(0 0 0 / 15%), 0 0 5px rgb(0 0 0 / 10%);
}
.jump-btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.service-emphasis {
  margin: 12px 0;
  font-weight: bold;
  font-size: clamp( 16px, 3vw, 24px);
}
.service-emphasis2 {
  margin: 20px 0;
  font-weight: bold;
  font-size: clamp( 16px, 3vw, 30px);
  display: flex;
  justify-content: center;
}
.service-title-b {
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 20px 0;
  text-decoration: underline;
  text-underline-offset: 10px;
  text-decoration-color: #FCEE21;
}
.service-contents2 {
  max-width: 1070px;
  padding: 5px 0 5px;
  margin: 0 auto;  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.service-contents2 img {
  width: 12%;
  padding: 10px;
}
.service-p {
  width: 100%;
  font-weight: bold;
  font-size: clamp( 16px, 3vw, 24px);
}
.etc {
  width: 100%;
  max-width: 1070px;
  margin: 0 auto;
  font-weight: bold;
  font-size: clamp( 22px, 4vw, 36px);
  text-align: right;
}
.service-contents-box {
  width: 45%;
  max-width: 500px;
  margin: 15px;
  border-style: Solid;
  border-width: 1px;
  box-shadow: 12px 12px 0px #36BEB1;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.service-image1 {
  max-width: 1040px;
  padding: 15px 0;
  margin: 0 auto;
}
.service-image1 img {
  height: 15vw;
  max-height: 200px;
  object-fit: cover;
  object-position: 0 60%;
}
.service-flex-b {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.service-contents-b {
  width : 40%;
  max-width: 300px;
  margin: 25px;
  background : #fff;
  border-style : Solid;
  border-color : #000;
  border-width : 1px;
  box-shadow : 12px 12px 0px rgba(41, 171, 226, 0.75);
  display: flex;
  align-items: center;
  flex-direction: column;
}
.service-contents-box1-b {
  width: 24%;
  padding: 22px;
}
.service-contents-box2-b {
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-box-p-b {
  padding: 20px;
  font-size: clamp(13px, 2vw, 15px);
}
.service-contents-b2 {
  width: 90%;
  max-width: 1000px;
  padding: 5px 0 5px;
  margin: 0 auto;
}
.service-contents-b2 h3 {
  width: 50%;
  padding: 10px;
  font-weight: bold;
  font-size: clamp( 20px, 2vw, 30px);
}
.service-contents-b2 p {
  width: 100%;
  padding: 10px;
}
.service-contents-box-b2 {
  height: 100px;
  margin: 36px;
  border-style: Solid;
  border-width: 1px;
  box-shadow: 12px 12px 0px #36BEB1;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .service-contents-box {
    width: 80%;
  }
  .service-contents2 img {
    width: 8%;
  }
  .etc {
    width: 80%;
  }
  .service-contents-b {
    width : 100%;
    max-width: 500px;
  }
  .service-contents-box1-b {
    max-width: 60px;
  }
  .service-contents-b2 {
    width: 100%;
  }
  .service-contents-b2 h3 {
    text-align: center;
  }
  .service-contents-b2 p {
    width: auto;
  }
  .service-contents-box-b2 {
    height: auto;
    margin: 30px 0;
    display: flex;
    flex-direction: column;
  }
  .top-image{
    display: none;
  }
}
/*----------Privacy Policy----------*/
.privacy-policy {
  width: 100%;
  padding: 50px 0 0;
  margin: 0 auto;
}
.privacy-policy-wrap {
  width: 90%;
  margin: 0 auto;
  background-image: url("../images/footer.png");
  background-repeat: no-repeat;
  background-size: 90%;
  background-position: bottom;
}
.privacy-policy-title {
  font-size: clamp(18px, 3.2vw, 43px);
  text-align: center;
}
.privacy-policy-comment {
  max-width: 1040px;
  padding: 30px 0;
  margin: 0 auto;
}
.privacy-policy-title2 {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 0 0 20px;
  border-left: solid 10px #048C73;
}
.privacy-policy-title2 h2 {
  margin: 60px 0 0;
}
.p-b {
  margin: 0 0 18vw;
}
.footer-privacy-policy {
  padding: 20px 0 0;
  font-size: clamp(12px, 2vw, 16px);
}
/*----------フォーム-----------*/
.contacts {
  width: 100%;
  padding: 50px 0 0;
  margin: 0 auto;
}
.contacts-wrap {
  width: 90%;
  margin: 0 auto;
  background-image: url("../images/footer.png");
  background-repeat: no-repeat;
  background-size: 90%;
  background-position: bottom;
}
.contacts-title {
  font-size: clamp(18px, 3.2vw, 43px);
  text-align: center;
}
.contacts-a {
  color: #58a9ff;
}
.Form {
  width: 100%;
  margin: 0 auto;
  display: table;
}
.Form-Item {
  padding: 10px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #dfdfdf;
}
.Form-flex {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.Form-flex-p {
  width: 90%;
  color: #7d7d7d;
  font-size: clamp(12px, 2vw, 14px);
}
.Form-link {
  margin: 18px 0 0;
}
.Form-Item-Input {
  width: 90%;
  margin: 0 auto;
  border: 1px solid #ddd;
  border-radius: 6px;
  height: 52px;
  background: #eaedf2;
}
.Form-Item-Textarea {
  width: 90%;
  height: 216px;
  margin: 0 auto;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #eaedf2;
  font-size: 18px;
}
.form-button {
  width: 100%;
  max-width: 400px;
  padding: 50px 0;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-evenly;
}
#formWrap {
  margin-bottom: 100px;
  background-color: rgba(255, 255, 255, 0.9);
}
.Form-title {
  padding: 10px;
  background: #048C73;
  color: #fff;
  font-size: clamp(15px, 3.2vw, 30px);
}
.tab01 p {
  position: relative;
  width: 40%;
  font-size: clamp( 13px, 2vw, 14px);
}
.tab01 a {
  color: #58a9ff;
}
.required::after {
  content: "必須";
  color: #ffffff;
  background: #cc0000;
  font-size: 0.8em;
  padding: 0.3em;
  border-radius: 0.5em;
  margin-left:0.3em;
}
.checkbox {
  margin: 0;
  transform: scale(2);
}

.tab01 {
  max-width: 1000px;
  margin: 0 auto;
}
.tab_menu {
  width: calc(100%/2);
  height: 60px;
  line-height: 60px;
  font-size: clamp(11px, 3.2vw, 30px);
  text-align: center;
  color: #000;
  background-color: #d9d9d9;
  display: block;
  float: left;
  text-align: center;
  transition: all 0.2s ease;
}
.tab_menu:hover {
  opacity: 0.75;
}
input[name="tab_menu"] {
  display: none;
}
.tab_contents {
  display: none;
  padding: 40px 0;
  clear: both;
  overflow: hidden;
  transition: .5s opacity;
}
#menu01:checked ~ #menu01,
#menu02:checked ~ #menu02 {
  display: block;
}
.tab01 input:checked + .tab_menu {
  background-color: #048C73;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .Form-Item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .tab01 p {
    position: relative;
    width: 90%;
    display: flex;
    height: 50px;
    font-size: clamp(13px, 3vw, 14px);
    align-items: center;
  }
}




/*----------葉アニメーション-----------*/
.leaf {
  position: fixed;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: -1;
}

.leaf h1 {
  font-size: 5rem;
  color: #8c7851;
}
.leaf li{
  position: absolute;
  list-style: none;
  top: -50px;
  background: #47ff76;
  border-radius: 0% 70%;
}


@keyframes fall {
  to {
    top: 120%;
  }
}
@keyframes sway1 {
  from {
    transform: translateX(0px) rotate(0deg);
  }
  to {
    transform: translateX(200px) rotate(-45deg);
  }
}

@keyframes sway2 {
  from {
    transform: translateX(200px) rotate(-45deg);
  }
  to {
    transform: translateX(0px) rotate(0deg);
  }
}
.leaf li:nth-child(1){
  left: 0%;
  top: -60px;
  width: 24px;
  height: 15px;
  background-color: #006f37;
  animation: fall 10s linear infinite,
             sway1 3s ease-in-out infinite alternate;
  animation-delay: 2s;
}

.leaf li:nth-child(2){
  left: 5%;
  top: -70px;
  width: 13px;
  height: 9px;
  background-color: #009926;
  animation: fall 15s linear infinite,
             sway1 2s ease-in-out infinite alternate;
  animation-delay: 8s;
}
.leaf li:nth-child(3){
  left: 15%;
  top: -50px;
  width: 16px;
  height: 10px;
  background-color: #4ec25d;
  animation: fall 9s linear infinite,
             sway1 3.5s ease-in-out infinite alternate;
  animation-delay: 13s;
}
.leaf li:nth-child(4){
  left: 30%;
  top: -70px;
  width: 16px;
  height: 10px;
  background-color: #00ff45;
  animation: fall 8s linear infinite,
             sway2 4s ease-in-out infinite alternate;
  animation-delay: 7s;
}
.leaf li:nth-child(5){
  left: 40%;
  top: -60px;
  width: 16px;
  height: 10px;
  animation: fall 10s linear infinite,
             sway1 4s ease-in-out infinite alternate;
  animation-delay: 0s;
}
.leaf li:nth-child(6){
  left: 55%;
  top: -50px;
  width: 24px;
  height: 15px;
  background-color: #009926;
  animation: fall 11s linear infinite,
             sway2 3s ease-in-out infinite alternate;
  animation-delay: 3s;
}
.leaf li:nth-child(7){
  left: 65%;
  top: -40px;
  width: 16px;
  height: 10px;
  animation: fall 7s linear infinite,
             sway2 3.5s ease-in-out infinite alternate;
  animation-delay: 7s;
}
.leaf li:nth-child(8){
  left: 50%;
  top: -60px;
  width: 13px;
  height: 9px;
  background-color: #36beb1;
  animation: fall 7s linear infinite,
             sway1 3s ease-in-out infinite alternate;
  animation-delay: 3s;
}
.leaf li:nth-child(9){
  left: 80%;
  top: -70px;
  width: 16px;
  height: 10px;
  animation: fall 10s linear infinite,
             sway2 4s ease-in-out infinite alternate;
  animation-delay: 4s;
}
/*----------フェードイン-----------*/
.down-to-top {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1.5s;
}
.down-to-top.scrollin {
  opacity: 1;
  transform: translateY(0);
}

