@charset "UTF-8";
/* CSS Document */


.main {
  background-color: #fff;
}

body {
  margin: 0;
  padding: 0;
}

/****以下、img-pc,img-spは画像セクション用のクラス名****/
.img-pc{
  display:block;
  width:100%;
  margin:0 auto;
}
.img-pc img{
  display:block;
  width:100vw;
}
.img-ipad{
  display:none;
}
.img-sp{
  display:none;
}

/*ipad*/
@media(max-width:768px){
.img-ipad{
  display:block;
  width:100%;
  margin:0 auto;
}
.img-ipad img{
  display:block;
  width:100vw;
}
.img-pc{
  display:none;
}
.img-sp{
  display:none;
}
}
/*スマホ*/
@media(max-width:480px){
.img-sp{
  display:block;
  width:100%;
  margin:0 auto;
}
.img-sp img{
  display:block;
  width:100vw;
}
.img-pc{
  display:none;
}
.img-ipad{
  display:none;
}
}

/*--------------------------------------
コンバージョンボタン トップセールス
--------------------------------------*/
.button_text{
  display:block;
  color:#333;
  text-align: left;
  margin:0 2.4rem;
  padding-top:10px;
  padding-bottom:30px;
  font-size:1.0rem;
  line-height: 1.5;
}
.hover{
  position: relative;
  figure{
    position: relative;
    overflow: hidden;
    &::before{
      display: block;
      content: '';
      position: absolute;
      left: -30%;
      top:-260%;
      width: 230%;
      height: 200%;
      transform :rotate(40deg);
      background: rgba(255,255,255,.2);
      transition: .3s;
      z-index: 1;
    }
    &::after{
      display: block;
      content: '';
      position: absolute;
      left: -30%;
      top:-260%;
      width: 230%;
      height: 200%;
      transform :rotate(40deg);
      background: linear-gradient(to bottom right ,rgba(34, 169, 202,.3), rgba(83, 26, 175,.3));
      transition: .3s;
      z-index: 2;
    }
    img{
      display: block;
      width: 100%;
      transition: .3s;
    }
    figcaption{
      opacity: 0;
      transition: .3s;
      position: absolute;
      left: 0;
      top:0;
      width: 100%;
      height: 100%;
      color: #fff;
      z-index: 3;
      .txt_box{
        position: relative;
        width: 100%;
        height: 100%;
        >p{
          width: 100%;
          text-align: center;
          position: absolute;
          left: 50%;
          top:50%;
          transform: translate(-50%,-50%);
        }
      }
    }
  }
  &:hover{
    figure{
      &::before{
        top:0;
      }
      &::after{
        top:0;
        transition-delay:.2s;
      }
      figcaption{
        opacity: 1;
      }
    }
  }
}
/*tablet*/
@media(min-width:768px){
  .button_text{
    display:block;
    color:#333;
    text-align: left;
    margin:0 5rem;
    font-size:1.2rem;
    line-height: 1.5;
  }
}
/*pc*/
@media(min-width:1025px){
  .button_text{
    display:block;
    color:#333;
    text-align: left;
    margin:0 10rem;
    font-size:1.6rem;
    line-height: 1.5;
  }
}

/*--------------------------------------
コンバージョンアップボタン 黄色（中央寄せ）　　　　　※使ってない
--------------------------------------*/
.button3,
a.button3,
button.button3 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

.button3-wrap {
  margin: -80px 140px 60px;
  text-align: center; 
}

a.button3-c {
    font-size: 4.0rem;
    width: 100%;
    position: relative;
    padding: 0.1rem 2rem 2rem 2.1rem;
    color: #333;
    background: #fff100;
    -webkit-box-shadow: 0 5px 0 #2c9d60;
    box-shadow: 0 5px 0 #ccc100;
}

a.button3-c span {
    font-size: 2.4rem;
    position: absolute;
    top: -10px;
    left: calc(50% - 250px);
    display: block;
    width: 500px;
    padding: 0.5rem 0.5rem;
    color: #333;
    border: 2px solid #249EFF;
    border-radius: 0.5rem;
    background: #fff;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}

a.button3-c:hover {
  -webkit-transform: translate(0, 3px);
  transform: translate(0, 3px);
  color: #333;
  background: #fff100;
  -webkit-box-shadow: 0 2px 0 #ccc100;
  box-shadow: 0 2px 0 #ccc100;
}

a.button3-c:hover:before {
  left: 2rem;
}
/*ipad pro*/
@media(max-width:1024px){
.button3-wrap {
    margin: 10px 120px 60px;
    text-align: center;
}
a.button3-c {
font-size: 3.0rem;
    width: 100%;
    position: relative;
    padding: 0rem 2rem 2.5rem 2.1rem;
}
  a.button3-c span {
    font-size: 0.8rem;
    position: absolute;
    top: -10px;
    left: calc(50% - 150px);
    display: block;
    width: 300px;
    padding: 0.2rem 0;
    color: #333;
    border: 2px solid #249EFF;
    border-radius: 0.5rem;
    background: #fff;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}
}
/*ipad*/
@media(max-width:1080px){
.button3-wrap {
    margin: -20px 40px 60px;
    text-align: center;
}
}
/*ipad*/
@media(max-width:768px){
.button3-wrap {
    margin: 20px 40px 60px;
    text-align: center;
}
a.button3-c {
font-size: 3.4rem;
    width: 100%;
    position: relative;
    padding: 0.1rem 2rem 2rem 2.1rem;
}
  a.button3-c span {
    font-size: 1.8rem;
    position: absolute;
    top: -10px;
    left: calc(50% - 150px);
    display: block;
    width: 300px;
    padding: 0.2rem 0;
    color: #333;
    border: 2px solid #249EFF;
    border-radius: 0.5rem;
    background: #fff;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}
}
/*sp*/
@media(max-width:480px){
.button3-wrap {
    margin: 20px 24px 40px;
    text-align: center;
}
a.button3-c {
font-size: 2.4rem;
    width: 100%;
    position: relative;
    padding: 0.1rem 2rem 2rem 2.1rem;
}
  a.button3-c span {
    font-size: 1.6rem;
    position: absolute;
    top: -20px;
    left: calc(50% - 150px);
    display: block;
    width: 300px;
    padding: 0.6rem 0;
    color: #333;
    border: 2px solid #249EFF;
    border-radius: 0.5rem;
    background: #fff;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}
}