@charset "utf-8";

* {
    padding: 0;
    margin: 0;
    font-family: 'Meiryo',"ヒラギノ角ゴ Pro W3","ＭＳ Ｐゴシック","Osaka", sans-serif;
}

html {
  height: 100%;
}

body{
   color: #111;
   background-color: #fff;
}

a{
    text-decoration: none;
}

@media(min-width:721px){/*PCのとき非表示*/
    .sp{
        display: none !important;
    }
}
@media(max-width:720px){/*スマホのとき非表示*/
    .pc{
        display: none !important;
    }
}

header{
    width: 100%;
    background-color: #fff;
    position: fixed;
    z-index: 300;
    top: 0px;
    height: 52px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 3px 0px;
      -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 3px 0px;
      -moz-box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 3px 0px;
}

h1{
    position: absolute;
    top: 8px;
    left: 10px;
}

header .header_contact{
    background-color: #333;
    color: #fff;
    border: 1px solid #fff;
}

header .header_contact a{
    display: block;
    color: #333;
    text-align: center;
    position: absolute;
    text-decoration: none;
    letter-spacing: 1px;
    width: 120px;
    top: 10px;
    right: 10px;
    line-height: 29px;
    padding-top: 1px;
    font-size: 12px;
    border: 1px solid #999;
    transition: 0.3s ease-in-out;
}

header .header_contact a:hover{
    color: #fff;
    background-color: #333;
    border: 1px solid #fff;
}

section{
    margin: 0 auto;
    width: 100%; 
    max-width: 720px;
    /*margin-bottom: -7px;*/
}

/* =================================
        メインビジュアル アニメーション
================================= */

.bk-white{
    background-color: #fff;
}

.bk-yellow{
    background-color: #ffe100;
}
.bk-black{
    background-color: #333;
}

.small-font{
    font-size: 12px;
}


.circles{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-height: 862px;
    overflow: hidden;
    z-index: 1;
}

@media screen and (max-width: 767px) {
    .circles{
        max-height: 600px;
    }
}

.circles li{
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    
    animation: animate 25s linear infinite;
    bottom: -150px;
    
}

.circles li:nth-child(1){
    left: 25%;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.4);
    animation-delay: 0s;
}


.circles li:nth-child(2){
    left: 10%;
    width: 20px;
    height: 20px;
    animation-delay: 2s;
    background: rgba(255, 255, 255, 0.4);
    animation-duration: 12s;
}

.circles li:nth-child(3){
    left: 70%;
    width: 20px;
    height: 20px;
    background: rgba(149, 47, 140, 0.4);/*紫*/
    animation-delay: 4s;
}

.circles li:nth-child(4){
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    background: rgba(231, 57, 119, 0.4);/*桃*/
    animation-duration: 18s;
}

.circles li:nth-child(5){
    left: 65%;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.4);
    animation-delay: 0s;
}

.circles li:nth-child(6){
    left: 75%;
    width: 110px;
    height: 110px;
    background: rgba(255, 255, 255, 0.4);
    animation-delay: 3s;
}

.circles li:nth-child(7){
    left: 35%;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.4);
    animation-delay: 7s;
}

.circles li:nth-child(8){
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    background: rgba(149, 47, 140, 0.4);/*紫*/
    animation-duration: 45s;
}

.circles li:nth-child(9){
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    background: rgba(231, 57, 119, 0.4);/*桃*/
    animation-duration: 35s;
}

.circles li:nth-child(10){
    left: 85%;
    width: 150px;
    height: 150px;
    animation-delay: 0s;
    background: rgba(255, 255, 255, 0.4);
    animation-duration: 11s;
}



@keyframes animate {
    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }
    100%{
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 0%;
    }
}


section img{
    width: 100%;
}

/* =================================
                footer
================================= */

footer{
    background-color: #333;
    color: #fff;
}

footer .copyright{
    font-size: 12px;
    padding: 20px;
    text-align: center;
}

/* =================================
                
================================= */

.buy-button {
  min-width: 80%;
  height: 40px;
  padding: 10px 10px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  outline: none;
  border: 2px solid #000;
  color: #000;
  background: transparent;
  text-align: center;
  line-height: 40px;
  text-decoration: none;
}
.buy-button:hover::after {
  top: 0;
  left: 0;
}

.buy-button::after {
  content: "";
  width: 100%;
  z-index: -1;
  position: absolute;
  height: 100%;
  top: 5px;
  left: 5px;
  transition: 0.2s;
  background-color: #ffe100;
}

.buy-button2{
  color: #fff;
  font-weight: bold;
  text-align: center;
  line-height: 70px;
  letter-spacing: 3px;
  width: 250px;
  height: 70px;
  background: #000;
  margin: 20px auto 0;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.buy-button2 a{
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #fff;
}

.buy-button2:before{
  position: absolute;
  content: '';
  display: inline-block;
  top: 100px;
  left: 0;
  width: 700px;
  height: 100%;
  background-color: #fff; 
}

/*アニメーション*/
.animation2:before{
  animation: kiran2 3s ease-in-out infinite;
}

@keyframes kiran2 {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.3; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 0.7; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}


.box3{
    display: flex;
    justify-content: space-between;
}


.product01-title{
    padding: 20px;
    color: #fff;
    text-align: center;
    background-color: #933b92;
}

.product02-title{
    padding: 20px;
    color: #fff;
    text-align: center;
    background-color: #de4f82;
}

.product03-title{
    padding: 20px;
    color: #fff;
    text-align: center;
    background-color: #a1a8ac;
}

.product04-title{
    padding: 20px;
    color: #000;
    text-align: center;
    background-color: #ffed7d;
}

/* =================================
                Q&A
================================= */

.qa-list{
    margin: 50px 0;
}

.qa-list dl {
    position: relative;
    margin: 0;
    padding: 28px 80px 28px 30px;
    cursor: pointer;
    border-bottom: 1px solid #000;
}
.qa-list dl:first-child {
    border-top: 1px solid #000;
}
.qa-list dl::before {
    position: absolute;
    top: 35px;
    right: 35px;
    display: block;
    width: 7px;
    height: 7px;
    margin: auto;
    content: '';
    transform: rotate(135deg);
    border-top: 2px solid #000;
    border-right: 2px solid #000;
}
.qa-list .open::before {
    transform: rotate(-45deg);
}
.qa-list dl dt {
    position: relative;
    margin: 0;
    padding: 0 0 0 50px;
    font-weight: bold;
    font-size: 20px;
}
.qa-list dl dt::before {
    font-size: 22px;
    line-height: 1;
    position: absolute;
    top: 3px;
    left: 0;
    display: block;
    content: 'Q.';
    color: #3285bf;
}
.qa-list dl dd::before {
    font-size: 22px;
    line-height: 1;
    position: absolute;
    top: 3px;
    left: 2px;
    display: block;
    content: 'A.';
    font-weight: bold;
    color: #3285bf;
}
.qa-list dl dd {
    position: relative;
    display: none;
    height: auto;
    margin: 20px 0 0;
    padding: 0 0 0 50px;
}
.qa-list dl dd p {
    margin: 30px 0 0;
}
.qa-list dl dd p:first-child{
    margin-top: 0;
}

@media screen and (max-width: 767px) {
    .qa-list dl {
        position: relative;
        padding: 15px 40px 15px 10px;
    }
    .qa-list dl::before {
        top: 20px;
        right: 20px;
        width: 7px;
        height: 7px;
    }
    .qa-list dl dt {
        padding: 0 0 0 30px;
        font-size: 14px;
    }
    .qa-list dl dt::before {
        font-size: 14px;
        top: 3px;
        left: 5px;
        content: 'Q.';
    }
    .qa-list dl dd::before {
        font-size: 14px;
        top: 5px;
        left: 5px;
        content: 'A.';
    }
    .qa-list dl dd {
        margin: 10px 0 0;
        padding: 0 0 0 30px;
        font-size: 14px;
    }
    .qa-list dl dd p {
        margin: 30px 0 0;
    }
    .qa-list dl dd p:first-child{
        margin-top: 0;
    }
}



/* スクロールCSS */
.fade-in {
  opacity: 0;
  transition-duration: 500ms;
  transition-property: opacity, transform;
}

.fade-in-up {
  transform: translate(0, 50px);
}

.fade-in-down {
  transform: translate(0, -50px);
}

.fade-in-left {
  transform: translate(-50px, 0);
}

.fade-in-right {
  transform: translate(50px, 0);
}

.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

/*ホバーアニメーション*/
.anim-box.kiran {
  opacity: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.anim-box.kiran::before {
  background-color: #fff;
  content: "";
  display: block;
  position: absolute;
  top: -100px;
  left: 0;
  width: 30px;
  height: 100%;
  opacity: 0;
  transition: cubic-bezier(0.32, 0, 0.67, 0);
}
.anim-box.kiran:before {
  /*animation: kiran 0.5s linear 1;*/
  animation: kiran2 3s ease-in-out infinite;
}

.anim-box.kiran:hover::before {
  animation: kiran 0.5s linear 1;
}

@keyframes kiran {
  0% {
    transform: scale(2) rotate(45deg);
    opacity: 0;
  }
  20% {
    transform: scale(20) rotate(45deg);
    opacity: 0.6;
  }
  40% {
    transform: scale(30) rotate(45deg);
    opacity: 0.4;
  }
  80% {
    transform: scale(45) rotate(45deg);
    opacity: 0.2;
  }
  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}

.col-main{
    display: flex;
}

.col2{
    width: 50%;
    text-align: center;
    padding: 10px;
}

.pagetop-col1{
    width: 100%;
    text-align: center;
    border-top: 1px solid #333;
}

.pagetop-col1 a{
    text-decoration: none;
    display: block;
    padding: 0 0 20px 0;
    color: #333;
}

.sns-col2{
    width: 50%;
    text-align: center;
    border-top: 1px solid #333;
}
.sns-col2 a{
    text-decoration: none;
    display: block;
    z-index: 2;
}

.sns-col2-right-border{
    border-right: 1px solid #fff;
}

.btn {
    display: inline-block;
    text-align: center;
    -webkit-transition: .3s;
    transition: .3s;
}
.btn01 {
    position: relative;
    color: #fff;
    background: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
    background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;/*グラデーション①*/
    overflow: hidden;
    z-index: 2;
}
.btn01::after {
    position: absolute;
    display: block;
    content: '';
    top: -100%;
    width: 100%;
    height: 100%;
    z-index: -1;
    -webkit-transition: .3s;
    transition: .3s;
}
.btn01:hover {
    border-color: #333;
    color: #333;
}
.btn01:hover::after {
    top: 0;
    background-color: #fff;
}

.btn02 {
    position: relative;
    color: #fff;
    background-color: #00acee;
    overflow: hidden;
    z-index: 2;
}
.btn02::after {
    position: absolute;
    display: block;
    content: '';
    top: -100%;
    width: 100%;
    height: 100%;
    z-index: -1;
    -webkit-transition: .3s;
    transition: .3s;
}
.btn02:hover {
    color: #00acee;
    border-color: #00acee;
}
.btn02:hover::after {
    top: 0;
    background-color: #fff;
}

h3 {
  position: relative;
  display: inline-block;
  padding: 20px 2em;
  text-align: center;
}

h3:before,
h3:after {
  font-family: 'Font Awesome 5 Free';
  line-height: 1;
  position: absolute;
  top: calc(50% - .5em);
  color: #eb6100;
}

h3:before {
  left: 0;
  content: '\f101';
}

h3:after {
  right: 0;
  content: '\f100';
}

h4 {
  position: relative;
  display: inline-block;
  padding: 0 65px;
  text-align: center;
}

h4:before,
h4:after {
  position: absolute;
  top: calc(50% - 3px);
  width: 50px;
  height: 6px;
  content: '';
  border-top: solid 1px #aaa;
  border-bottom: solid 1px #aaa;
}

h4:before {
  left: 0;
}

h4:after {
  right: 0;
}


h5 {
  position: relative;
  display: inline-block;
  padding: 20px 2em;
  text-align: center;
}

h5:before,
h5:after {
  font-family: 'Font Awesome 5 Free';
  line-height: 1;
  position: absolute;
  top: calc(50% - .5em);
  color: #eb6100;
}

h5:before {
  left: 0;
  content: '\f101';
}

h5:after {
  right: 0;
  content: '\f100';
}


/* =================================
            PRODUCT 3SKU BOX
================================= */

#product-3sku{
    max-width: 900px;
    margin: 0 auto;
}

#product-3sku .product-box{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

#product-3sku .product-box .product{
    margin: 0.5em 1%;
    width: calc(94% / 3);
    flex-shrink: 0;
    flex-grow: 0;
    position: relative;
    text-align: center;
}

.buy-button3{
  color: #fff;
  font-weight: bold;
  text-align: center;
  line-height: 50px;
  letter-spacing: 3px;
  width: 100%;
  background: #000;
  margin: 10px auto 20px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.buy-button3 a{
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #fff;
}

.buy-button3:before{
  position: absolute;
  content: '';
  display: inline-block;
  top: 100px;
  left: 0;
  width: 700px;
  height: 100%;
  background-color: #fff; 
}

@media screen and (max-width: 767px) {
    #product-3sku .product-box{
        display: block;
    }
    #product-3sku .product-box .product{
        width: calc(98% / 1);
        margin-bottom: 100px;
    }
    #product-3sku .product-box .product img{
        width: 250px;
    }
    .buy-button3{
        width: 250px;
    }
}



