@charset "utf-8";
.flexNowrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
          justify-content: space-between;
}

.flexNowrap__end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
          align-items: flex-end;
}


.square__center{
  position: relative;
  width: 100%;
  padding-top: 100%;
}
.square__center .item{
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  font-size: 1rem;
  white-space: nowrap;
  line-height: 1.3;
}
.bubble{
  position: relative;
  text-align: center;
  padding: 1.5vw 0;
  line-height: 1.2;
  font-size: 2.1rem;
}
.bubble::before{
  position: absolute;
  display: block;
  left: 50%;
  bottom: -15px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-right: solid transparent;
  border-left: solid transparent;
  border-width: 15px;
}
.bubble span{
  width: auto;
  height: 44px;
  display: inline-block;
  padding: 0 10px;
  vertical-align: middle;
}
.bubble span img.sp{
  display: block;
  width: auto;
  height: 44px;
  margin-top: -10px;
}

@media screen and (min-width: 768px){
  .flexNowrap--pc {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .bubble{
    font-size: 3.2rem;
    padding: 40px 0;
  }
  .bubble span{
    height: 85px;
    vertical-align: bottom;
  }
  .bubble span img.sp{
    display: none;
  }
  .bubble span img.pc{
    display: block;
    height: 85px;
  }
  .bubble::before{
    bottom: -20px;
    border-width: 20px;
  }
}

h3.title{
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 3.6vw;
}
@media screen and (min-width: 414px){
  h3.title{
    font-size: 2rem;
  }
}

@media screen and (min-width: 768px){
  h3.title{
    font-size: 3.2rem;
    margin-bottom: 10px;
  }
}
.balloon{
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.balloon.right{
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.balloon .staff{
  width: 16.8vw;
}
.balloon .staff .bgImg{
  border: solid 3px #fff;
  padding-top: 95%;
}
.balloon .comment{
  width: 72%;
}
.balloon .comment .wrap{
  position: relative;
  padding: 3.6vw;
  line-height: 1.5;
}
.balloon .comment .wrap::before{
  position: absolute;
  bottom: 1.2vw;
  left: -2.4vw;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 2.4vw 2.4vw 0;
  border-color: transparent #efefef transparent transparent;
}
.balloon.right .comment .wrap::before{
  left: auto;
  right: -2.4vw;
  border-width: 2.4vw 2.4vw 0 0;
  border-color: #f0eaec transparent transparent transparent ;
}
@media screen and (min-width: 768px){
  .balloon .staff .bgImg{
    border-width: 4px;
  }
  .balloon .staff p{
    margin-top: 10px;
    font-size: 1rem;
  }
  .balloon .comment{
    width: 855px;
  }
  .balloon .comment .wrap{
    padding: 40px;
  }
  .balloon.right .comment .wrap::before{
    right: -26px;
    border-width: 26px 26px 0 0;
  }
}
.mv .wrap{
  width: 100%;
  position: relative;
}
.mvImg{
  width: 100%;
}
.mvImg > .bgImg{
  width: 100%;
  height: 100%;
}
.mvCts{
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  width: 80%;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 23vw 6.4% 17.2vw;
}
.mvCts h1{
  font-size: 1.3rem;
  letter-spacing: 0;
}
.mvCts .titleImg{
  margin-top: 3.6vw;
}

.mvPoint{
  margin-top: 8.4vw;
}
.mvPoint li{
  width: 30%;
}
.mvPoint li:nth-child(1){
  left:-4.2em;
  -webkit-animation: mv__bound .5s .8s 1;
  animation: mv__bound .5s .8s 1;
}
.mvPoint li:nth-child(2){
  left:-2.8em;
  -webkit-animation: mv__bound .5s .9s 1;
  animation: mv__bound .5s .9s 1;
}
.mvPoint li:nth-child(3){
  left:-2.8em;
  -webkit-animation: mv__bound .5s 1s 1;
  animation: mv__bound .5s 1s 1;
}

@-webkit-keyframes mv__bound {
  0%,100% {
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
  }
  30% {
    -webkit-transform: scale(1) translateY(-20px);
            transform: scale(1) translateY(-20px);
  }
  50% {
    -webkit-transform: scale(1) translateY(-10px);
            transform: scale(1) translateY(-10px);
  }
  90% {
    -webkit-transform: scale(1.1,0.9) translateY(0);
            transform: scale(1.1,0.9) translateY(0);
  }
}
@keyframes mv__bound {
  0%,100% {
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
  }
  30% {
    -webkit-transform: scale(1) translateY(-20px);
            transform: scale(1) translateY(-20px);
  }
  50% {
    -webkit-transform: scale(1) translateY(-10px);
            transform: scale(1) translateY(-10px);
  }
  90% {
    -webkit-transform: scale(1.1,0.9) translateY(0);
            transform: scale(1.1,0.9) translateY(0);
  }
}

.contactFixBtn{
  position: fixed;
  width: 21.6vw;
  height: 21.6vw;
  right: 2.4vw;
  bottom: 2.4vw;
  z-index: 100;
  opacity: 0;
  -webkit-transform: scale(.5);
          transform: scale(.5);
}
.contactFixBtn.active{
  opacity: 1;
  -webkit-transition: all .3s ease 0s;
  transition: all .3s ease 0s;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.contactFixBtn .wrap{
  position: relative;
  width: 100%;
  height: 100%;
}
.contactFixBtn .wrap a{
  display: block;
  width: 100%;
  height: 100%;
}
.contactFixBtn .wrap img{
  width: 14.4vw;
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
}
@media screen and (min-width: 375px){
  .mvCts{
    width: 75%;
  }
  .mvCts h1{
    font-size: 1.4rem;
  }
  .square__center .item{
    font-size: 1.1rem;
  }
}
@media screen and (min-width: 414px){
  .mvCts h1{
    font-size: 1.5rem;
    letter-spacing: .05rem;
  }
  .square__center .item{
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 768px){
  .mv .wrap{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
            align-items: center;
  }
  .mvImg{
    width: 50%;
    height: 100vh;
  }
  .mvCts{
    position: relative;
    left: 0;
    transform: none;
    width: 50%;
    height: 100vh;
  }
  .mvCts .inner{
    width: 372px;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
  }
  .mvCts h1{
    font-size: 2rem;
    letter-spacing: .26rem;
    color: #c67874;
  }
  .mvCts .titleImg{
    margin-top: 30px;
  }
  .mvPoint{
    width: 325px;
    margin: 30px auto 0;
  }
  .square__center .item{
    font-size: 1.3rem;
  }
  .mv__price{
    margin-top: 30px;
  }
  .mv__price h2{
    position: relative;
    text-align: center;
  }
  .mv__price h2::before{
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    display: block;
    background-color: #cfb5ae;
  }
  .mv__price h2 span{
    position: relative;
    display: inline-block;
    background-color: #fff;
    padding: 0 10px;
    width: 112px;
    z-index: 10;
  }
  .mv__price .img img{
    width: auto;
    height: 47px
  }
  .mv__priceItem{
    font-size: 1.6rem;
    font-weight: bold;
  }
  .mv__price .start{
    width: 285px;
    margin-top: 26px;
  }
  .mv__price .monthly{
    width: 251px;
    margin-top: 17px;
  }
  .mv__price .sub{
    margin-top: 20px;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.3;
  }
  .contactFixBtn{
    width: 180px;
    height: 180px;
    right: 20px;
    bottom: 20px;
  }
  .contactFixBtn .wrap img{
    width: 108px;
  }
  .contactFixBtn a:hover{
    -webkit-transition-property: -webkit-box-shadow;
    transition-property: -webkit-box-shadow;
    transition-property: box-shadow;
    transition-property: box-shadow, -webkit-box-shadow;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-box-shadow: 0px 0px 0 0px rgba(0,0,0,.2);
    box-shadow: 0px 0px 0 0 rgba(0,0,0,.20);
  }
}
.check{
  position: relative;
  padding-top: 16.8vw;
}
.check .deco{
  position: absolute;
  top: 27vw;
  left: 0;
  width: 66%;
  z-index: 0;
}
.check h2{
  position: relative;
  z-index: 10;
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: .06rem;
}
.check h2 .letter{
  font-size: 2.6rem;
  -webkit-transform: rotate(0deg) translate(0,0);
  transform: rotate(0deg) translate(0,0);
  display: inline-block;
  padding-right: 3px;
  opacity: 1;
}
.check h2 .letter.ve{
  -webkit-transform: rotate(-19deg);
  transform: rotate(-19deg);
  -webkit-transition-duration: .3s;
            transition-duration: .3s;
  -webkit-transition-delay:.3s;
  transition-delay:.3s;
}
.checklist{
  position: relative;
  z-index: 10;
  margin-top: 7.2vw;
  padding: 10px 10px 0;
}
.checklist ul{
  padding: 2.4vw 4% 13.2vw;
  border: solid 1px #efefef;
}
.checklist .svgWrap{
  width: 24px;
  height: 24px;
}
.checklist li {
  border-bottom: dashed 1px #ccc;
  padding: 3.6vw 0;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}
.checklist li p{
  width: 100%;
  margin-left: 12px;
  line-height: 1.4;
}
@media screen and (min-width: 768px){
  .check{
    padding-top: 100px;
  }
  .check .deco{
    position: absolute;
    top: 132px;
    left: 0;
    width: 658px;
    z-index: 0;
  }
  .check h2{
    font-size: 3.2rem;
    letter-spacing: .3rem;
    line-height: 1.4;
  }
  .check h2 .letter{
    font-size: 4.4rem;
    padding: 0 3px 0 1px;
  }
  .check h2 .line{
    display: inline-block;
    width: 190px;
    height: 3px;
    background-color: #444;
    margin: -5px 0 0 10px;
    vertical-align: middle;
  }
  .checklist{
    position: relative;
    width: 800px;
    margin: 80px auto 0;
    padding: 40px 40px 0;
  }
  .checklist ul{
    height: 100%;
    padding: 44px 55px 118px;
  }
  .checklist .svgWrap{
    width: 36px;
    height: 36px;
  }
  .checklist li{
    padding: 25px 0;
  }
  .checklist li p{
    font-size: 2rem;
  }
  .checkDeco{
    position: absolute;
    right: -145px;
    bottom: 20px;
  }
}
.about{
  position: relative;
}
.about .bubble{
  line-height: 2.2;
}
.about .wrap{
  padding: 19.2vw 0;
}
.about h3{
  font-size: 1.6rem;
}
.about h3 img.sp{
  display: inline-block;
  vertical-align: bottom;
  width: auto;
  height: 39px;
}
.about .wrap .txt{
  margin-top: 9.6vw;
  line-height: 1.3;
}
.about .sfImg{
  margin-top: 9.6vw;
}
.about .deco{
  position: absolute;
  bottom: 74vw;
  right: 0;
  z-index: -10;
}
.about .deco img{
  width: auto;
  height: 34vw;
  max-height: 130px;
}
.point > ul > li + li{
  margin-top: 9.6vw;
}
.point .wrap{
  position: relative;
}
.point .frame{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 4vw 5%;
  z-index: 30;
}
.point .frame .inner{
  position: relative;
  width: 100%;
  height: 100%;
}
.point .frame .inner::before{
  position: absolute;
  left: 0;
  top: 0;
  border-width: 1px;
  border-style: solid;
  width: 100%;
  height: 100%;
}
.upperBg{
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.point .upper .inner,
.point .lower .inner,
.priceDetails{
  position: relative;
  z-index: 40;
}
.point .upper{
  position: relative;
  padding: 13.2vw 0 19.2vw;
}
.point .upper .inner,
.priceDetails,
.point .price .lower{
  width: 80%;
  margin: 0 auto;
}
.point .upper .inner::before{
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.point .upper h3{
  text-align: center;
  margin: 4.8vw auto 3.6vw;
}
.point .upper .lead{
  line-height: 1.3;
}
.point .upper .icon{
  margin: 0 auto;
  width: 20.3vw;
  height: 20.3vw;
}
.point .lower{
  margin-top: -12vw;
  padding-bottom: 10.8vw;
}
@media screen and (min-width: 414px){
  .point .frame{
    padding: 6vw 7%;
  }
  .point .upper .inner,
  .priceDetails,
  .point .price .lower{
    width: 74%;
  }
}

@media screen and (min-width: 768px){
  .point > ul > li + li{
    margin-top: 80px;
  }
  .point .frame{
    padding: 55px;
  }
  .point .upper{
    padding: 96px 0 150px;
  }
  .point .upper .icon{
    width: 130px;
    height: 130px;
  }
  .point .upper h3{
    margin: 30px auto 10px;
  }
  .point .upper .lead{
    text-align: center;
    font-weight: bold;
  }
  .point .lower{
    margin-top: -100px;
    padding-bottom: 96px;
  }
}

.point .design .sub{
  font-size: 1.1rem;
  text-align: center;
}
.point .design .sub .clickIcon{
  display: inline-block;
  vertical-align: middle;
  width: 5vw;
  height: 5vw;
  margin-right: -5px;
}

.point .design .lower{
  margin-top: -16vw;
}
.point .design .lower button{
  height: 80px;
}
.point .design .lower .slick-prev:before,
.point .design .lower .slick-next:before{
  font-size: 2.4rem;
}
.point .design .lower .slick-prev:before{
  content: '\003C';
}
.point .design .lower .slick-next:before{
  content: '\003E';
}
.slide__scroll .slick-list{
  padding-top: 4vw !important;
  padding-bottom: 4vw !important;
}
.slide__scroll li{
  cursor: pointer;
  margin: 0 10px;
  position: relative;
  font-size: 0;
  -webkit-box-shadow:0px 0px 10px 0px rgba(0,0,0,.2);
  box-shadow:0px 0px 10px 0px rgba(0,0,0,.20);
}
.slide__scroll li .clickIcon{
  position: absolute;
  width: 9vw;
  height: 9vw;
  bottom: 0;
  right: 0;
}
.point .gallery .lower,
.point .operation .lower{
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.galleryList{
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}
.galleryList li{
  width: 48%;
}
.galleryList li:nth-child(n+3){
  margin-top: 4%;
}
@media screen and (min-width: 414px){
  .point .gallery .lower,
  .point .operation .lower{
    width: 72%;
  }
}
@media screen and (min-width: 768px){
  .about .wrap{
    padding: 120px 0;
  }
  .about .wrap .inner{
    width: 435px;
    padding-left: 55px;
  }
  .about .sfImg{
    width: 665px;
    padding-left: 10px;
  }
  .about h3{
    font-size: 1.8rem;
  }
  .about h3 img.sp{
    display: none;
  }
  .about h3 img.pc{
    display: inline-block;
    vertical-align: bottom;
    margin-right: 8px;
  }
  .about .wrap .txt{
    margin-top: 65px;
    line-height: 1.7;
  }
  .about .sfImg{
    margin-top: 0;
  }
  .about .deco{
    bottom: -5px;
  }
  .about .deco img{
    height: 305px;
    max-height: 305px;
  }
  .point .design .lower{
    margin-top: 0;
  }
  .point .design .lower .slick-prev:before,
  .point .design .lower .slick-next:before{
    font-size: 3rem;
  }
  .slide__scroll .slick-list{
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .slide__scroll li .clickIcon{
    width: 56px;
    height: 56px;
  }
  .slide__scroll{
    margin-top: -120px;
  }
  .slide__scroll li{
    margin: 0 20px;
  }
  .point .design .sub .clickIcon{
    width: 28px;
    height: 28px;
    margin: -4px -3px 0 0;
  }
  .point .design .sub{
    margin-top: 15px;
    font-size: 1.4rem;
  }
  .point .gallery .lower,
  .point .operation .lower{
    width: 910px;
  }
  .point .operation .lower{
    text-align: center;
  }
  .point .operation .lower .inner{
    display: inline-block;
    margin: 0 auto;
  }
  .galleryList li{
    width: 276px;
  }
  .galleryList li:nth-child(n + 3){
    margin-top: 0;
  }
  .galleryList li:nth-child(n + 4){
    margin-top: 40px;
  }
}

.contactBtn{
  position: relative;
  margin: 9.6vw auto 21.6vw;
}
.contactBtn a{
  position: relative;
  display: block;
  height: 18vw;
}
.contactBtn .img{
  position: absolute;
  width: 64.8vw;
  top: 50%;
  left: 49%;
  transform: translate(-50%,-50%);
}
.contactBtn .hand{
  position: absolute;
  width: 7.68vw;
  right: 0;
  bottom: -1vw;
  -webkit-animation: bound .3s ease infinite alternate;
  animation: bound .3s ease infinite alternate;
}
.contents .bubble{
  padding: 6vw 0 3.9vw;
}
/*アニメーション*/
@-webkit-keyframes bound{
  0% {-webkit-transform: translateY(0px);transform: translateY(0px);}
  100% {-webkit-transform: translateY(-10px);transform: translateY(-10px);}
}
@keyframes bound{
  0% {-webkit-transform: translateY(0px);transform: translateY(0px);}
  100% {-webkit-transform: translateY(-10px);transform: translateY(-10px);}
}
@media screen and (min-width: 768px){
  .contactBtn{
    width: 634px;
    margin: 80px auto 150px;
  }
  .contactBtn a{
    width: 100%;
    height: 150px;
    -webkit-transition-property: -webkit-box-shadow;
            transition-property: -webkit-box-shadow;
            transition-property: box-shadow;
            transition-property: box-shadow, -webkit-box-shadow;
            -webkit-transition-duration: .3s;
                    transition-duration: .3s;
  }
  .contactBtn a .img{
    width: 430px;
    left: 48%;
  }
  .contactBtn .hand{
    width: auto;
  }
  .contents .bubble{
    padding: 38px 0;
  }
  .contactBtn a:hover{
    -webkit-transition-property: -webkit-box-shadow;
                transition-property: -webkit-box-shadow;
                transition-property: box-shadow;
                transition-property: box-shadow, -webkit-box-shadow;
                -webkit-transition-duration: .3s;
                        transition-duration: .3s;
    -webkit-box-shadow: 0px 0px 0 0px rgba(0,0,0,.2);
    box-shadow: 0px 0px 0 0 rgba(0,0,0,.20);
  }
}
.page{
  position: relative;
  padding: 14.4vw 0 19.2vw;
}
.page .lead{
  margin-bottom: 6vw;
  line-height: 1.3;
}
.page .deco{
  position: absolute;
  left: 0;
  top: 19.2vw;
  z-index: -10;
  width: 74vw;
}
.page h3{
  line-height: 1.3;
}
.page .balloon .comment{
  width: 74%;
}
.page .balloon .comment .wrap{
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.page .balloon .comment svg{
  width: 4.8vw;
  height: 4.08vw;
}
.pageLink{
  margin-top: 7.2vw;
}
.pageOption{
  margin: 4.8vw auto 4.8vw;
}
.pageLink,
.pageOption{
  border-radius: 15px;
  padding: 7.2vw 6vw;
}
.pageLink ul,
.pageOption ul{
  font-size: 0;
  margin-top: -2.4vw;
}
.pageLink li,
.pageOption li{
  display: inline-block;
  font-size: 1.3rem;
  margin: 2.4vw 2.4vw 0 0;
}
.pageLink li a,
.pageOption li a{
  padding: 2vw 2vw 1.8vw;
  border-radius: 5px;
}
.pageOption h3{
  font-size: 1.5rem;
  margin-bottom: 4.8vw;
}
.page .sup{
  line-height: 1.3;
}
@media screen and (min-width: 768px){
  .page{
    padding: 100px 0 0;
  }
  .page .deco{
    top: 55px;
    width: 750px;
  }
  .page > .wrap{
    position: relative;
  }
  .page .lead{
    text-align: center;
  }
  .page .balloon{
    position: absolute;
    bottom: 558px;
    right: 0;
  }
  .page .balloon .comment .wrap{
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 437px;
    font-size: 2rem;
    padding: 0;
    background-color: transparent;
  }
  .page .balloon .comment .wrap .svgWrap{
    width: 44px;
  }
  .page .balloon .comment .wrap .svgWrap svg{
    width: 36px;
    height: 31px;
  }
  .page .wrap::before{
    display: none;
  }
  .pageLink,
  .pageOption{
    border-radius: 1000px;
    -webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,.2);
    box-shadow:0px 0px 20px 0px rgba(0,0,0,.2);
  }
  .pageLink .wrap,
  .pageOption .wrap{
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
  }
  .pageLink ul,
  .pageOption ul{
    margin-top: -20px;
  }
  .pageLink li,
  .pageOption li{
    margin: 20px 20px 0 0;
  }
  .pageLink li a,
  .pageOption li a{
    padding: 10px 20px;
  }
  .pageLink{
    position: relative;
    width: 625px;
    height: 625px;
  }
  .pageLink .wrap{
    width: 447px;
    margin-left: 12px;
  }
  .pageLink .sub{
    width: 426px;
    margin-top: 35px;
    line-height: 1.5;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
  }
  .pageOption{
    position: relative;
    width: 436px;
    height: 436px;
    margin: -310px 0 -23px auto;

    background-color: #fff;
  }
  .pageOption h3{
    font-size: 2.4rem;
    margin-bottom: 40px;
  }
  .pageOption .wrap{
    width: 245px;
  }
  .pageOption li{
    margin-right: 0;
  }
}
.googleJobs{
  padding: 13.2vw 0;
}
.googleJobs h3.title{
  margin-bottom: 7.2vw;
}
.googleJobs h4{
  font-size: 1.5rem;
  padding: 7.2vw 0 3.6vw;
}
.googleJobs p{
  line-height: 1.5;
}
.jobsLink{
  display: block;
  margin-top: 3.6vw;
  text-decoration: underline;
}
@media screen and (min-width: 768px){
  .googleJobs{
    padding: 120px 0 110px;
  }
  .googleJobs .wrap{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: stretch;
    align-items: stretch;
  }
  .googleJobs h3.title{
    margin-bottom: 10px;
  }
  .googleJobs .lead{
    margin-bottom: 60px;
  }
  .googleJobs .wrap .img{
    width: 720px;
  }
  .googleJobs .wrap .inner{
    width: 340px;
    height: 340px;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 40px;
  }
  .googleJobs h4{
    padding: 0 0 40px;
  }
  .jobsLink{
    margin-top: 66px;
  }
}
.recommend{
  border-bottom-style: solid;
  border-bottom-width: 1px;
  padding: 14.4vw 0 4.8vw;
}
.recommend h3{
  margin-bottom: 6vw;
}
.recommend ul{
  font-size: 1.3rem;
}
.recommend ul + ul{
  margin-top: 3.6vw;
}
.recommend li + li{
  margin-top: 3.6vw;
}
@media screen and (min-width: 375px){
  .recommend ul{
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 768px){
  .recommend{
    padding: 140px 0 90px;
  }
  .recommend h3{
    margin-bottom: 80px;
  }
  .recommend .wrap{
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .recommend ul{
    font-size: 2.4rem;
  }
  .recommend ul + ul{
    margin-top: 0;
  }
  .recommend ul + ul li:last-child{
    font-size: 2rem;
  }
  .recommend li + li{
    margin-top: 25px;
  }
}
.qa{
  position: relative;
}
.qa .bubble,
.steps .bubble{
  padding: 6vw 0;
  position: relative;
}
.qa .deco{
  position: absolute;
  width: 40vw;
  top: 27vw;
  right: 0;
}
.qa .production{
  padding-top: 14.4vw;
}
.qa h3{
  margin-bottom: 6vw;
}
.qa li{
  position: relative;
  padding: 6vw;
  cursor: pointer
}
.qa li + li{
  margin-top: 4.8vw;
}
.qa dt{
  line-height: 1.5;
}
.qa dd{
  margin-top: 3.6vw;
  padding-top: 2.4vw;
}
.qa .balloon .staff{
  width: 23%;
}
.qa .balloon .staff .bgImg{
  -webkit-box-shadow:0px 0px 2px 0px rgba(0,0,0,.2);
  box-shadow:0px 0px 2px 0px rgba(0,0,0,.2);
}
.qa li .clickIcon{
  width: 7.5vw;
  height: 7.5vw;
  position: absolute;
  right: 0;
  bottom: 0;
}
.qa .inner + .inner{
  margin-top: 12vw;
}
@media screen and (min-width: 768px){
  .qa .bubble,
  .steps .bubble{
    padding: 50px 0;
  }
  .qa .deco{
    top: 196px;
    width: 430px;
  }
  .qa h3{
    margin-bottom: 60px;
  }
  .qa dt{
    font-size: 20px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .qa li{
    padding: 55px;
  }
  .qaIcon{
    width: 80px;
    margin-top: -12px;
  }
  .qa dt p{
    width: 890px;
  }
  .qa li .clickIcon{
    width: 54px;
    height: 54px;
  }
  .qa .production{
    padding-top: 130px;
  }
  .qa .inner + .inner{
    margin-top: 100px;
  }
  .qa .balloon .staff{
    width: 95px;
  }
  .qa dd{
    margin-top: 45px;
    padding-top: 0;
  }
}
.steps{
  position: relative;
}
.steps > .deco{
  position: absolute;
  width: 41vw;
  top: 36vw;
  left: 0;
}
.steps ul{
  padding: 14.4vw 0 20.4vw;
}
.steps li > p{
  font-size: 1.1rem;
  margin-bottom: 1.2vw;
}
.steps .box{
  position: relative;
  padding: 6vw 4.8vw;
}
.steps .arrow{
  margin-top: 4.8vw;
}
.steps .arrow img{
  display: inline-block;
  width: 6vw;
}
.steps li{
  position: relative;
  top: 0;
  right: 0;
}
.steps li:nth-child(1) .deco{
  position: absolute;
  right: -5vw;
  top: -4vw;
  width: 21.6vw;
}
.steps li:nth-child(5) .deco{
  position: absolute;
  right: -5vw;
  top: -1vw;
  width: 14.4vw;
}
.steps li:last-child{
  margin-top: 4.8vw;
}
.steps li:last-child h3{
  padding: 6vw 0;
}
.steps li:last-child p{
  margin-top: 3.6vw;
}
@media screen and (min-width: 768px){
  .steps ul{
    width: 720px;
    padding: 160px 0 150px;
  }
  .steps li > p{
    font-size: 2rem;
    margin-bottom: 10px;
  }
  .steps .box{
    font-size: 2rem;
    padding: 40px;
  }
  .steps .arrow img{
    width: 40px;
  }
  .steps .arrow{
    margin: 40px auto 10px;
  }
  .steps li:nth-child(1) .deco{
    right: -15px;
    top: -20px;
    width: auto;
  }
  .steps li:nth-child(5) .deco{
    right: 10px;
    top: -10px;
    width: auto;
  }
  .steps li:last-child h3{
    padding: 40px 0;
    font-size: 2rem;
  }
  .steps li:last-child h3{
    padding: 40px 0;
    font-size: 2rem;
  }
  .steps li:last-child{
    margin-top: 40px;
  }
  .steps li:last-child p{
    margin-top: 20px;
    font-size: 1.8rem;
  }
  .steps > .deco{
    width: 457px;
    top: 200px;
    left: 0;
  }
}
.price h3{
  font-size: 1.2rem;
  letter-spacing: 0;
}
.priceDetails dl{
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.priceDetails dt{
  width: 6rem;
  margin-bottom: 1.2vw;
  letter-spacing: 0;
}
.priceDetails dd img{
  width: auto;
  max-height: 27px;
  display: inline-block;
}
.priceDetails dl + dl{
  margin-top: 1.2vw;
}
.point .price .upper{
  padding-bottom: 6vw;
}
.point .price .lower{
  margin-top: 4.8vw;
  font-size: 1.1rem;
  line-height: 1.5;
}
.point .price .lower .sp{
  display: inline-block;
}
@media screen and (min-width: 375px){
  .price h3{
    font-size: 1.3rem;
  }
  .priceDetails dd img{
    max-height: 32px;
  }
}
@media screen and (min-width: 414px){
  .price h3{
    font-size: 1.4rem;
  }
  .priceDetails dd img{
    width: auto;
    max-height: 34px;
    display: inline-block;
  }
}
@media screen and (min-width: 768px){
  .point .price .upper h3{
    font-size: 3.2rem;
    margin: 30px auto 35px;
  }
  .priceDetails{
    width: 910px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .priceDetails dt{
    width: 115px;
    padding-left: 20px;
    font-size: 1.8rem;
  }
  .priceDetails dl + dl dt{
    padding-left: 40px;
  }
  .priceDetails dd{
    width: 340px;
  }
  .priceDetails dl + dl dd{
    padding-right: 20px;
  }
  .priceDetails dd img{
    height: 54px;
    max-height: 54px;
  }
  .point .price .upper{
    padding-bottom: 40px;
  }
  .point .price .lower{
    margin-top: 40px;
    font-size: 1.4rem;
    line-height: 1;
  }
  .point .price .lower .sp{
    display: none;
  }
}
.raymix{
  padding-bottom: 21.6vw;
}
.raymix .wrap{
  padding: 7.2vw 6vw;
}
.raymix h2{
  width: 62vw;
}
.raymix .lead{
  margin-top: 6vw;
  line-height: 1.5;
}
.works{
  margin-top: 6vw;
  position: relative;
}
.works h3{
  position: relative;
  display: inline-block;
  padding-right: 2.4vw;
  z-index: 10;
}
.works h3 img{
  width: 30vw;
}
.works::before{
  position: absolute;
  top: 1.2vw;
  width: 100%;
  height: 1px;
  z-index: 0;
}
.works ul{
  margin-top: 4.8vw;
  line-height: 1.3;
}
.works ul + ul{
  margin-top: 2.4vw;
}
.works ul .sub{
  font-size: 1rem;
}
.works ul li + li{
  margin-top: 2.4vw;
}
@media screen and (min-width: 768px){
  .raymix{
    padding-bottom: 140px;
  }
  .raymix .wrap{
    padding: 70px 55px;
  }
  .raymix .lead{
    font-size: 2rem;
    margin-top: 40px;
    line-height: 2;
  }
  .raymix .lead{
    margin-top: 50px;
  }
  .works{
    margin-top: 40px;
  }
  .works::before{
    top: 10px;
    height: 4px;
  }
  .works h3 img{
    width: auto;
  }
  .works ul{
    margin-top: 4.8vw;
  }
  .works .inner{
    margin-top: 30px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .works .inner ul:nth-child(1) {
    width: 420px;
  }
  .works .inner ul:nth-child(2) {
    width: 190px;
  }
  .works .inner ul:nth-child(3) {
    width: 380px;
  }
  .works ul,
  .works ul + ul{
    margin-top: 0;
    line-height: 1;
    font-size: 2rem;
  }
  .works ul li + li{
    margin-top: 20px;
  }
}