body {
    font-family: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;
}

*, *::before, *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
.slider {
  height: calc(100 * var(--vh));
}
@media screen and (min-width: 768px) {
  .slider {
    background-image: url("../images/background.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}
.slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: calc(100 * var(--vh));
}
.image-container {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  overflow: hidden;
}
.image-container.visible {
  overflow: visible;
}
@media screen and (min-width: 768px) {
  .image-container {
    -webkit-box-shadow: 20px 0 40px 10px rgba(178, 187, 198, 0.2);
    box-shadow: 20px 0 40px 10px rgba(178, 187, 198, 0.2);
  }
}
.image-container img {
  max-width: 100vw;
  height: auto;
  width: auto;
  max-height: calc(100 * var(--vh));
}
@-webkit-keyframes swipe {
  0% {
    -webkit-transform: translateX(2%);
    transform: translateX(2%);
  }
  50% {
    -webkit-transform: translateX(-25%);
    transform: translateX(-25%);
  }
  100% {
    -webkit-transform: translateX(2%);
    transform: translateX(2%);
  }
}
@keyframes swipe {
  0% {
    -webkit-transform: translateX(2%);
    transform: translateX(2%);
  }
  50% {
    -webkit-transform: translateX(-25%);
    transform: translateX(-25%);
  }
  100% {
    -webkit-transform: translateX(2%);
    transform: translateX(2%);
  }
}
.swipe_pc{
  position: absolute;
  top: 75%;
  right: 30%;
  z-index: 2;
  pointer-events: none;
  width: clamp(48px, 8vw, 96px);
}

.swipe_pc .icon {
  width: 90%;
}
.swipe_pc .hand {
  width: 33.2%;
  position: absolute;
  left: 33%;
  top: 11%;
  -webkit-animation: swipe 2s ease-in-out infinite;
  animation: swipe 2s ease-in-out infinite;
}

@media screen and (max-width: 768px) {
  .swipe_pc {
  display: none;
  }
}
@media screen and (min-width: 1300px) and (max-width: 1499px) {
  .swipe_pc {
  right: 31%;
  }
}
@media screen and (min-width: 1500px) {
  .swipe_pc {
  right: 32%;
  }
}
@media screen and (min-width: 768px) {
  .swipe_sp {
  display: none;
  }
}
.swipe_sp{
  position: fixed;
  right: -4%;
  bottom: 3%;
  z-index: 2;
}
.swipe_sp .icon {
  width: 90%;
}
.swipe_sp .hand {
  width: 33.2%;
  position: absolute;
  left: 36%;
  top: 12%;
  -webkit-animation: swipe 2s ease-in-out infinite;
  animation: swipe 2s ease-in-out infinite;
}


/*★★add★★*/
.image-container .works {
  width: 100%;
  pointer-events: none;
}
.works{
  position: absolute;
  top: 32%;
}
@media screen and (max-width: 768px) {
  .image-container .works {
  top: 215px;
  }
}

.fixed-stack{
  position: fixed;
  right: 25px;
  bottom: 30px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;             
  pointer-events: none;  
  width: 200px;
}
.fixed-stack > *{
  pointer-events: auto;  
}
@media screen and (max-width: 768px) {
  .fixed-stack {
  display: none;
  }
}
.fixed-contactArea{
  position: flex;
}

.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.hide-scrollbar::-webkit-scrollbar {
  display: none;
}
.form{
  position: relative;
  bottom: 12px;
  right: 0;
  z-index: 10;
  width: 350px;
  height: 65vh;
  overflow: visible;       
  background: #fff;
  box-shadow: 0 18px 36px 2px rgba(1, 94, 234, 0.3);
  border-radius: 20px 0 0 20px;
  display: flex;
  flex-direction: column;
  padding-top: 50px;      
}
@media screen and (min-width: 768px) {
  .form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.form-deco{
  position: absolute;
  top: -17px;              
  left: 50%;
  transform: translateX(-50%);
  height: auto;
  display: block;
  pointer-events: none;    
  z-index: 2;
}
.form iframe{
  flex: 1;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media screen and (min-width: 768px) {
  .fixedBtn_flex{
  display: none;
  }
  .fixedBtn_flex.is-show{
    display: flex;
    justify-content: center;
    position: fixed;
    z-index: 2;
    bottom: 3%;
    right: 0;
    left: 0;
    margin: auto;
    /* background: linear-gradient(to top, transparent, #000 0, #000 10%, transparent); */
    /* padding: 15px 58px 15px 30px; */
    position: fixed;
    width: 100%;
    max-width: 330px;
    gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  .fixedBtn_flex{
    display: flex;
    justify-content: center;
    position: fixed;
    z-index: 2;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    background: linear-gradient(to top, transparent, #000 0, #000 10%, transparent);
    padding: 15px 58px 15px 30px;
  }
}
@media (max-width: 768px){
  .fixedBtn_flex.is-hidden{ 
    display:none; 
  }
}


.sride_area{
    position: absolute;
    bottom: 15%;
    overflow: visible;
    left: 0;
    right: 0;
}

.sride_area .swiper{
  width: 70%;
  max-width: 400px;
  margin: 0 auto;
}

.sride_area .swiper-slide{
  display: flex;
  justify-content: center;
  align-items: center;
}

.sride_area .swiper-slide img{
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: contain; 
}


@media (max-width: 768px) {
  .sride_area {
    top: 37%;
  }
  .sride_area .swiper {
    width: 90%;
    max-width: 300px;
  }
  .swiper-scrollbar{
    top: 1% !important;
  }
}

.embed-container{
  border: none;
}

/* modalform */
.modal { display:none; position:fixed; inset:0; z-index:9999; }
.modal.is-open { display:block; }

.modal__overlay { position:absolute; inset:0; background:rgba(0,0,0,.6); }

.modal__panel {
  position:relative;
  width:min(92vw, 560px);
  max-height: 88vh;
  overflow:auto;
  background:#fff;
  margin: 6vh auto;
  padding: 24px 18px;
}

.contact-title{
  font-weight: 700;
  text-align: center;
  color: #00af96;
  line-height: 1;
  font-size: 24px;
}

.form_item { 
  margin: 14px 0; 
}
.form_item_title {
    text-align: left;
    font-size: 18px;
    font-weight: 700;
    color: #3c3c3c;
}
.contact-description {
    font-size: 14px;
}
p {
    text-align: center;
}
.form_item_title span {
    background-color: #d00000;
    color: #fff;
    border-radius: 5px;
    padding: 2px 5px;
    margin-left: 10px;
    font-size: 12px;
}
.form_item_content input {
    width: 100%;
    border: 1px solid #cccccc;
    font-size: 16px;
    padding: 10px;
    line-height: 1;
    border-radius: 6px;
}

.btn_area {
  display: flex;
  justify-content: space-evenly;
}

.btn-submit, .btn-clear { 
    padding: 10px 30px;
    font-size: 18px;
    line-height: 1.4;
    border-radius: 50px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.23);
    display: inline-block;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    min-width: 150px;
 }
.btn-submit { 
    border: 3px solid #009D3E;
    background: #FFFFFF;
    color: #009D3E;
 }
.btn-clear { 
    border: 3px solid #82848D;
    background: #CACACA;
    color: #82848D;
 }

button{
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  line-height: 0; 
}

.linktext{
  position: absolute;
  bottom: 22%;
  right: 10%;
  font-size: 9px;
  font-weight: 600;
  border-bottom: 1px solid #009113;
}
.linktext a{
  color: #009113;
  text-decoration: none;
}

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