@charset "UTF-8";

.card-bg {
  background: #fff;
  padding: 40px 0;
}

.link-btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 48px;
  margin: 20px;
}

@media screen and (max-width: 767px) {
  .link-btns {
    gap: 10px 10px;
    margin-top: 50px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 25px 0;
  }
}

.link-card {
  display: block;
  width: calc(23% - 12px);
  height: 320px;
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 6px 6px 20px 3px #7EBAFF;
  box-shadow: 6px 6px 20px 3px #7EBAFF;
  text-align: center;
  padding: 18px 15px;
  -webkit-transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s;
  transition: transform 0.3s, box-shadow 0.3s, -webkit-transform 0.3s, -webkit-box-shadow 0.3s;
  border: 1px solid #eee;
}

@media screen and (max-width: 767px) {
  .link-card {
    width: 295px;
    height: 85px;
    padding: 10px;
  }
}

.link-card:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
  -webkit-box-shadow: 0 8px 25px rgba(0, 122, 255, 0.3);
  box-shadow: 0 8px 25px rgba(0, 122, 255, 0.3);
}

.link-card__inner {
  border: 1px solid #DFDFDF;
  border-radius: 10px;
  padding: 32px 10px 29px;
  width: 100%;
  height: 100%;
  position: relative;
}

@media screen and (max-width: 767px) {
  .link-card__inner {
    padding: 10px 0;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.link-card__title {
  font-size: 22px;
  font-weight: 700;
  color: #002D63;
  font-family: "Poppins";
}

@media screen and (max-width: 767px) {
  .link-card__title {
    font-size: 20px;
  }
}

.link-card__subtitle {
  font-size: 12px;
  color: #253C61;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .link-card__subtitle {
    display: none !important;
  }
}

.link-card__imgbox {
  height: 95px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .link-card__imgbox {
    height: unset;
    display: unset;
  }
}

.link-card__icon {
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .link-card__icon {
    width: 60%;
    height: auto;
  }
}

.link-card .line {
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .title-none {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .pps {
    width: 60%;
  }

  .g-map {
    width: 40%;
  }

  .web {
    width: 50%;
  }
}

/* ポップアップ START */
.popup-overlay {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.popup-content {
  position: relative;
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  max-width: 70%;
}

@media screen and (max-width: 767px) {
  .popup-content {
    max-width: 95%;
  }
}

.popup-content img {
  max-width: 90%;
  height: auto;
  margin: 0 auto;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
}

@media screen and (max-width: 767px) {
  .close-btn {
    top: 0;
    font-size: 13px;
  }
}

/* ポップアップ END */

.side-scroll {
  position: relative;
  /* overflow: hidden; */
  background: url(../img/product/bg_slide_01.jpg) center/cover no-repeat;
  margin-top: 140px;
  height: calc(100vh - 110px);
}

@media screen and (max-width: 767px) {
  .side-scroll {
    height: 91.7vh;
    margin-top: 70px;
  }
}

.side-scroll-list-wrapper {
  position: relative;
  width: 100%;
  height: 61.2vh;
  overflow-x: hidden;
  margin: 0 auto;
}

.side-scroll-list {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  top: 0;
  left: 0;
  margin: 14px 0;
  align-items: center;
  height: 90%;
}
@media screen and (max-width: 767px){
  .side-scroll-list{
    height: 95%;
  }
}
.side-scroll-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 370px;
  height: 530px;
  background-color: #fff;
  border-radius: 20px;
  padding: 15px 30px;
  margin: 0 75px;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .side-scroll-item {
    width: 270px;
    height: 380px;
    padding: 15px;
    margin: 0 50px;
  }
}

.slide-box {
  font-weight: 400;
  text-align: left;
}

.slide-box img {
  width: 70%;
  border-radius: 10px;
  margin: 0 auto;
}

.slide-box h3 {
  margin-top: 30px;
  font-size: 24px;
  font-weight: 400;
}

.slide-box p {
  margin-top: 15px;
  font-size: 15px;
}

@media screen and (max-width: 767px) {
  .slide-box {
    width: 100%;
    height: 100%;
  }

  .slide-box img {
    width: 80%;
    margin: 0 auto;
  }

  .slide-box h3 {
    margin-top: 10px;
    font-size: 20px;
  }

  .slide-box p {
    margin-top: 10px;
    font-size: 13px;
  }
}

.slide-btn {
  display: block;
  width: 270px;
  height: 50px;
  background: #0041A7;
  border-radius: 25px;
  color: #fff;
  font-weight: 700;
  padding: 10px 20px;
  text-align: center;
  margin: 0 auto;
  margin-top: 15px;
}

@media screen and (max-width: 767px) {
  .slide-btn {
    width: 200px;
    height: 35px;
    font-size: 13px;
    margin: 0 auto;
    margin-top: 10px;
  }
}

.silde-md01 {
  background: rgba(255, 255, 255, 0.31);
  padding: 20px 0;
  height: 13.4vh;
  align-content: center;
}

.silde-md01 img,
.silde-md01 a {
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .silde-md01 {
    padding: 25px;
  }

  .silde-md01 img {
    width: 70%;
  }
}

@media screen and (max-width: 767px) {
  .silde-md02 {
    margin-top: 25px;
  }
}

.box-bg {
  background: rgba(255, 255, 255, 0.3);
  -webkit-box-shadow: 4px 4px 16px 0px rgba(121, 159, 216, 0.8980392157);
  box-shadow: 4px 4px 16px 0px rgba(121, 159, 216, 0.8980392157);
  border-radius: 40px;
  margin-top: 150px;
  padding: 60px 0;
  backdrop-filter: blur(6px);
}

@media screen and (max-width: 767px) {
  .box-bg {
    margin-top: 75px;
    padding: 30px 0;
  }
}

.reception01 {
  position: relative;
}

.reception01 img {
  position: absolute;
  top: -330px;
  width: 100vw;
  z-index: -1;
}

.rec-line img {
  top: 0;
}

@media screen and (max-width: 767px) {
  .reception01 img {
    top: -50px;
  }
}

.reception02 {
  position: relative;
}

.reception02 img {
  position: absolute;
  bottom: -150px;
  width: 100vw;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .reception02 img {
    bottom: -25px;
  }
}

.box01 {
  background: #fff;
  border-radius: 20px;
  padding: 75px 40px;
}

@media screen and (max-width: 767px) {
  .box01 {
    padding: 37px 25px;
  }
}

.box01 h2 {
  color: #253C61;
  font-family: "Poppins";
  font-weight: 600;
  font-size: 48px;
  text-align: center;
}

.box01 h2 span {
  font-weight: 400;
  font-size: 24px;
  display: block;
}

@media screen and (max-width: 767px) {
  .box01 h2 {
    font-size: 38px;
  }

  .box01 h2 span {
    font-size: 18px;
  }
}

.box01__logo {
  text-align: center;
}

.box01__logo img {
  display: inline-block;
}

.box01__logo span {
  display: block;
  font-size: 24px;
}

.g-log,
.app-log,
.line-log {
  width: 35%;
}

@media screen and (max-width: 767px) {
  .box01__logo span {
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  .g-log {
    width: 60%;
  }
}

@media screen and (max-width: 767px) {
  .app-log {
    width: 70%;
  }
}

@media screen and (max-width: 767px) {
  .line-log {
    width: 100%;
  }
}

.box01__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0 120px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 90px;
  border-bottom: 1px solid #CACACA;
  padding-bottom: 75px;
}

.box01__inner:last-of-type {
  border-bottom: unset;
}

@media screen and (max-width: 767px) {
  .box01__inner {
    margin-top: 45px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.img-radi {
  border-radius: 20px;
}

@media screen and (max-width: 767px) {
  .img-radi {
    margin-top: 25px;
  }
}

.img-pc {
  display: block;
}

@media screen and (max-width: 767px) {
  .img-pc {
    display: none;
  }
}

.img-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .img-sp {
    display: block;
  }
}

.slick-img {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .slick-img {
    width: 100%;
  }
}

.slick-img>div {
  max-width: 600px;
  margin: 0 auto;
}

.slick-img img {
  max-width: 100%;
  height: auto;
  display: block;
}

.slick-img button {
  display: none;
}


.box01__text {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .box01__text {
    width: 100%;
  }
}

.box01__text h3 {
  font-size: 32px;
  font-weight: 500;
}

.box01__text p {
  margin-top: 30px;
}

.box01__text span {
  display: block;
  margin-top: 20px;
}

.box01__text--md {
  font-weight: 700;
  line-height: 32px;
}

@media screen and (max-width: 767px) {
  .box01__text {
    width: 100%;
  }

  .box01__text h3 {
    font-size: 20px;
  }

  .box01__text p {
    margin-top: 15px;
    font-size: 13px;
  }

  .box01__text span {
    margin-top: 10px;
  }
}

.box01__btn01 {
  margin-top: 30px;
}

.box01 ol {
  margin-top: 30px;
}

.box01 ol li {
  position: relative;
  padding-left: 1em;
}

.box01 ol li::before {
  content: "・";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
}

.box01__imgbx {
  width: 50%;
}

@media screen and (max-width: 767px) {
  .box01__imgbx {
    margin-top: 1em;
  }
}

.box01__imgbx p {
  text-align: center;
  font-size: 14px;
  margin-top: 1em;
}

.box01__imgbx img {
  margin: 0 auto;
}

.app-btn {
  margin: 100px auto;
}

@media screen and (max-width: 767px) {
  .app-btn {
    margin: 0 auto;
  }
}

.wrapper01 {
  overflow: hidden;
  position: relative;
}

.parallax-bg {
  /* background-attachment: fixed; 背景が画像スクロールしても固定しておくやつ*/
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 500px;
  margin-top: 150px;
}

@media screen and (max-width: 767px) {
  .parallax-bg {
    height: 250px;
    margin-top: 40px;
  }
}

.img-bg-01 {
  background-image: url(../img/product/bg_parallax_01.jpg);
}

.img-bg-02 {
  background-image: url(../img/product/bg_parallax_02.jpg);
}