.p-movie--youtube {
  display: none;
}

.mb60{
  margin-bottom: 60px;
}

small{
  font-size: 0.7em;
}

/**********Youtubeを横並びに変更**********/
.flexinnerBox{
  display: flex;
}

.flexinnerBox .p-movie__iframe{
  width: 40%;
}

@media screen and (max-width: 750px) {
  .flexinnerBox{
    display:block;
  }
  .flexinnerBox .p-movie__iframe{
    width: 100%;
  }
}

/**********FloatingBnrここから**********/
.banner {
  /*display: none;*/
  position: fixed;
  margin: 15px 20px;
  z-index: 99998;
  bottom: 0;
  right: 0;
}
.banner a {
  text-decoration: none;
}
.pc_bnr{
  display:block;
}
.sp_bnr{
  display:none;
}
.banner-icon {
  color: #f8f8f8;
  font-size: 40px;
}

.banner-back {
  width: 300px;
  background-color: #fff;
  border-radius: 25px;
}

.banner-top {
  padding: 20px;
  border-radius: 25px 25px 0px 0px;
  background: -moz-radial-gradient(#0AB0C7, #006EB0 70%);
  background: -webkit-radial-gradient(#0AB0C7, #006EB0 70%);
  background: radial-gradient(#0AB0C7, #006EB0 70%);
}

.banner-copy {
  font-size: 18px;
  position: relative;
}
.banner-copy::after {
  font-family: 'Font Awesome 6 Free';
  font-size: 20px;
  content: '\f054';
  color: #006EB0;
  position: absolute;
  margin-top: 11px;
  top: 0;
  right: 18px;
}

.banner-bottom {
  line-height: 1.6;
}

.banner-body {
  width: 300px;
  background: #f8f8f8;
  color: #000000;
  font-weight: bold;
  text-align: center;
  border-radius: 25px;
  -webkit-box-shadow: 0 0 7px rgb(0 0 0 / 40%);
  box-shadow: 0 0 7px rgb(0 0 0 / 40%);
}
.banner-body:hover {
  transition: opacity 0.3s ease;
  opacity: 0.7;
}

.banner-close {
  font-weight: bold;
  position: absolute;
  top: -2px;
  right: -4px;
  z-index: 99999;
  padding: 4px 8px;
  border: none;
  background-color: #f8f8f8;
  border-radius: 25px;
  cursor: pointer;
  -webkit-box-shadow: 0 0 7px rgb(0 0 0 / 40%);
  box-shadow: 0 0 7px rgb(0 0 0 / 40%);
  color: #000 !important;
}
.banner-close a:link, a:visited, a:hover, a:active{
  /*color: #000 !important;*/
}

@media screen and (max-width: 750px) {
  .banner {
      width: 100%;
      margin: 0px;
  }
  .banner .pc_bnr{
    display: none;
  }
  .banner .sp_bnr{
    width: 100%;
    display:block;
  }
  
  .banner-icon {
      font-size: 28px;
  }
  .banner-body {
      width: 100%;
      border-radius: 0px;
  }
  .banner-back {
      width: 100%;
      margin: 0px;
      border-radius: 0px;
  }
  .banner-top {
      padding: 5px;
      border-radius: 0px;
      background: -moz-linear-gradient(#006EB0 50%, #0AB0C7);
      background: -webkit-linear-gradient(#006EB0 50%, #0AB0C7);
      background: linear-gradient(#006EB0 50%, #0AB0C7);
  }

  .banner-copy {
      font-size: 15px;
  }
  .banner-copy::after {
      font-size: 12px;
      margin-top: 1.4px;
      margin-left: 12px;
      top: initial;
      right: initial;
  }
  .banner-close {
      top: 8px;
      right: 15px;
      
      -webkit-touch-callout: none;
      -webkit-tap-highlight-color: transparent;
      cursor: pointer;
      display: block;
  }
 
 
  }
  .banner-copy-br {
      display: none;

  }

/**********FloatingBnrここまで**********/
/********** infinity-scroll-left ここから↓ **********/
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
    to {
    transform: translateX(-100%);
  }
  }
  .scroll-infinity__wrap {
    display: flex;
    overflow: hidden;
    margin: 30px 0;
  }
  .scroll-infinity__list {
    display: flex;
    list-style: none;
    padding: 0
  }
  .scroll-infinity__list--left {
    animation: infinity-scroll-left 100s infinite linear 0.5s both;
  }
  .scroll-infinity__item {
    /*width: calc(100vw / 6);*/
    width: 5250px;
    margin-right: 40px;
  }
  .scroll-infinity__item>img {
    width: 100%;
  }
/********** infinity-scroll-left　ここまで↑ **********/

/********** .p-environment追加 ここから **********/
.p-environment__inner {
  margin: 0 auto;
  padding-bottom: 100px;
  padding-top: 100px;
  width: 900px;
}
@media screen and (max-width: 1199px) {
  .p-environment__inner {
    padding-bottom: calc(100 / 1200 * 100vw);
    padding-top: calc(100 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-environment__inner {
    padding-bottom: calc(100 / 375 * 100vw);
    padding-top: calc(100 / 375 * 100vw);
  }
}
@media screen and (max-width: 1199px) {
  .p-environment__inner {
    width: calc(900 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-environment__inner {
    padding-bottom: 40px;
    padding-top: 40px;
    width: 100%;
  }
}
@media screen and (max-width: 767px) and (max-width: 1199px) {
  .p-environment__inner {
    padding-bottom: calc(40 / 1200 * 100vw);
    padding-top: calc(40 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-environment__inner {
    padding-bottom: calc(40 / 375 * 100vw);
    padding-top: calc(40 / 375 * 100vw);
  }
}

.p-environment .c-sectionTitle__title {
  line-height: 1.3;
}

.p-environment__imageWrap {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.p-environment__image {
  max-height: 300px;
}

.p-environment__image:first-child {
  aspect-ratio: 586 / 522;
}

.p-environment__image:nth-child(2) {
  aspect-ratio: 592 / 602;
}

.p-environment__image img {
  width: 100%;
  height: auto;
}
/********** .p-environment追加 ここまで **********/
