@charset "UTF-8";
/* clearfix
--------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,500,700,900%7CRoboto+Condensed:700%7CInter:100,800%7CNoto+Serif+JP:wght@700&display=swap&subset=japanese");
/* =========================================================
function
========================================================= */
.clearfix {
  *zoom: 1;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

/* border-box
--------------------------------------------------------- */
* {
  box-sizing: border-box;
}

/* =========================================================
utility
========================================================= */
/* =========================================================
reset
========================================================= */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  -webkit-text-decoration: none;
  text-decoration: none;
  cursor: pointer;
  font-style: normal;
}
a:hover{
  opacity: 0.8;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

input,
select {
  vertical-align: middle;
}

/* =========================================================
base
========================================================= */
html {
  font-size: 62.5%;
}

html,
body {
  width: 100%;
  height: auto;
}

img {
  max-width: 100%;
    width: revert-layer;
  vertical-align: top;
}

body {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  color: #333;
  background: #fff;
}


/* アニメーションの定義
-------------------------*/
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.circles{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.circles li{
    position: absolute;
    display: block;
    list-style: none;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.4);
    animation: animate 10s linear infinite;
    bottom: -150px;
    
}

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


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

.circles li:nth-child(3){
    left: 70%;
    width: 20px;
    height: 20px;
    animation-delay: 4s;
}

.circles li:nth-child(4){
    left: 40%;
    width: 60px;
    height: 60px;
    animation-delay: 0s;
    animation-duration: 18s;
}

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

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

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

.circles li:nth-child(8){
    left: 50%;
    width: 25px;
    height: 25px;
    animation-delay: 15s;
    animation-duration: 45s;
}

.circles li:nth-child(9){
    left: 20%;
    width: 15px;
    height: 15px;
    animation-delay: 2s;
    animation-duration: 35s;
}

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



@keyframes animate {

    0%{
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100%{
        transform: translateY(-2500px) rotate(720deg);
        opacity: 0.3;
        border-radius: 50%;
    }

}


/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container,
.modal-container2,
.modal-container3{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0,0,0,50%);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  box-sizing: border-box;
	z-index: 10000;
}
/*モーダル本体の擬似要素の指定*/
.modal-container:before,
.modal-container2:before,
.modal-container3:before{
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active,
.modal-container2.active,
.modal-container3.active{
  opacity: 1;
  visibility: visible;
}
/*モーダル枠の指定*/
.modal-body,
.modal-body2,
.modal-body3{
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 500px;
  width: 90%;
}
/*モーダルを閉じるボタンの指定*/
.modal-close,
.modal-close2,
.modal-close3{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -40px;
  right: -40px;
  width: 40px;
  height: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}
/*モーダル内のコンテンツの指定*/
.modal-content{
  background: #fff;
  text-align: left;
  padding: 30px;
}
.modal-content h4{
  font-size: 16px;
    margin-bottom: 15px;
    text-align: center;
}
.modal-content h3{
  font-size: 18px;
    text-align: center;
    margin-bottom: 15px;
}
.modal-content ul{}
.modal-content ul li{
      display: block;
    border-bottom: 1px solid #ddd;
    padding: 4px 0;
}
.modal-content ul li a{
        display: block;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 18px;
    color: #ffffff;
    background-color: #fc0171;
    border-radius: 6px;
}
.modal-content ul li a:hover{}
/* =========================================================
heder
========================================================= */
.header2{
  text-align: center;
  background-color: #fff;
}
.header2 img{
	width:140px;
}
/* =========================================================
footer
========================================================= */
footer{
  padding: 80px 40px 40px;
      color: #560616;
    font-size: 12px;
}
footer a{
  color: #560616;
  text-decoration: underline;
}
footer p{
  margin-bottom: 15px;
}
/* =========================================================
KV
========================================================= */
.kv{
  background-image: url(img/img_dani/main_pc.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
      margin-bottom: -55px;
}

.kv .logo{
        position: absolute;
    top: 0vh;
    right: 2vw;
    width: 31vw;
}
.kv .copy{
        position: absolute;
    bottom: 2vh;
    left: 2vw;
    width: 40vw;
}
.kv .links{
    bottom: 2vh;
    position: fixed;
    width: 290px;
    right: 1vw;
    z-index: 100;
}
.kv .links a{
  display: inline-block;
	    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    border-radius: 20px;
}
.kv .links .read{
  display: block;
	margin-bottom:10px;
}
.kv .links .buy{width: 49%;}
.kv .links .special{width: 49%;}

@media (max-width: 980px) {
	body {
    background: #fff;
}
	pc{display:none;}
	sp{display:block;}
	
	.kv {
    width: 100%;
    overflow: hidden;
}
	.kv .logo {
    position: absolute;
    top: 4vh;
    right: -5vw;
    width: 48vw;
}
	.kv .copy {
    position: absolute;
    bottom: 5vh;
    left: 0;
    width: 100%;
    margin: 0 auto;
}
	.kv .copy img{
		    width: 80%;
    margin: 0 auto;
    display: block;
	}
	
	.kv .links {
    bottom: 1vh;
    position: fixed;
    width: 94%;
    right: 3%;
}
	.kv .links .read {
    display: inline-block;
    margin-bottom: 0px;
    width: 46%;
}
	.kv .links .buy {
    width: 26%;
}
	.kv .links .special {
    width: 26%;
}
	.kv .links a {
    border-radius: 12px;
}

}


/* =========================================================
main
========================================================= */
main{
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
  overflow: hidden;
  box-shadow: 0 80px 40px #a90056;
}

.loop{
  position: relative;
      margin-bottom: -30px;
}

.wrapper {
  display: flex;
  width: 400%;
}
.wrapper_left {
      display: flex;
    width: 200%;
    position: absolute;
    top: 4px;
}

@keyframes  loop_animation_right_double {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes  loop_animation_left_double {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.loop_right_double {
  animation: loop_animation_right_double 12s linear infinite;
  white-space: nowrap;

}
.loop_right_double img{
    margin-right: -10px;
}
.loop_left_double {
  animation: loop_animation_left_double 20s linear infinite;
  white-space: nowrap;
  margin-left: -10px;

}
.loop_left_double img{
    margin-left: -10px;
    width: 2000px;
}


@media (max-width: 980px) {
	main {
    box-shadow: 0 23px 25px #dadada;
}
	.wrapper {
    display: flex;
    width: 200%;
}
	.loop {
    position: relative;
    margin-bottom: -67px;
}

}


/* =========================================================
sec01
========================================================= */
.sec01{
      background-image: url(img/img_dani/sec01_bg.png);
    background-repeat: repeat;
    background-size: 100% auto;
    background-position: top center;
    position: relative;
    margin-bottom: -55px;
}
.sec01 .inner{
  width: 980px;
    margin: 0px auto 0;
}
.sec01 h2 {
    text-align: center;
    margin-bottom: 50px;
}
.sec01 h2 img{}

.sec01 .pic{width: 50%;}
.sec01 .txt{width: 50%;}

.sec01 .art01{
      display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}
.sec01 .art01 img{width: 100%;}
.sec01 .art01 .pic{width: 50%;}
.sec01 .art01 .txt{}

.sec01 .art02{
      display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}
.sec01 .art02 img{width: 100%;}
.sec01 .art02 .pic{}
.sec01 .art02 .txt{}

.sec01 .art03{
  margin-bottom: -200px;
    position: relative;
    z-index: 1;
}
.sec01 .art03 img{width: 100%;}
.sec01 .art03 .pic{width: 100%;}
.sec01 .art03 .txt{width: 50%;margin: 40px auto;}
.sec01 .art03 .txt img{width: 100%;margin-bottom: 40px;}


@media (max-width: 980px) {
	.sec01 .inner {width: 90%;}
	.sec01 h2 {
    text-align: center;
    width: 68%;
    margin: 50px auto;
}
	.sec01 .art01 {
    display: block;
	}
	.sec01 .art01 .pic {
    width: 80%;
    margin: 0 auto;
}
	.sec01 .txt {
    width: 90%;
    margin: 20px auto;
}
	.sec01 .art02 {
    display: block;
	}
	.sec01 .art02 .pic {
    width: 80%;
    margin: 0 auto;
}
	.sec01 .txt {
    width: 90%;
    margin: 20px auto;
}
	.sec01 .art03 {
    margin-bottom: 0px;
    position: relative;
    z-index: 1;
}
	.sec01 .art03 .txt {
    width: 80%;
    margin: 40px auto 0;
}

}



/* =========================================================
sec02
========================================================= */
.sec02{
  background-image: url(img/img_dani/sec02_bg.png);
    background-repeat: no-repeat;
    background-size: 138% auto;
    background-position: top center;
    position: relative;
    margin-bottom: -55px;
}
.sec02 .inner{
  width: 980px;
    margin: 0px auto 0;
    padding-top: 170px;
}
.sec02 h2 {
    text-align: center;
    margin-bottom: 80px;
}
.sec02 h2 img{}

.sec02 .pic{width: 40%;}
.sec02 .txt{width: 60%;    position: relative;}

.sec02 .art01{
  display: flex;
        align-items: flex-start;
    gap: 0px;
    margin-bottom: -50px;
}
.sec02 .art01 img{width: 100%;}
.sec02 .art01 .pic{margin-left: -50px;margin-top: -30px;}
.sec02 .art01 .txt{}

.sec02 .art02{
  display: flex;
        align-items: flex-start;
    gap: 0px;
    position: relative;
}
.sec02 .art02 img{width: 100%;}
.sec02 .art02 .pic{width: 50%;margin-right: -80px;}
.sec02 .art02 .txt{width: 50%;margin-top: 120px;}

.sec02 .cv{margin-top: -80px; position: relative;}
.sec02 .cv .pic{width: 100%;}
.sec02 .cv .pic img{}
.sec02 .cv .pic .btn_Area{
      text-align: center;
    margin: -55px auto 0px;
    padding-bottom: 88px;
    display: flex;
    justify-content: center;
}
.sec02 .cv .pic .btn_Area a{
  width: 40%;
}
.sec02 .cv .pic .btn_Area a img{
  width: 100%;
}
.sec02 .cv .pic .btn_Area a:hover{}
.sec02 .cv .pic .btn_Area .read{}
.sec02 .cv .pic .btn_Area .buy{}


@media (max-width: 980px) {
	.sec02 .inner {
    width: 90%;
    margin: 0px auto 0;
    padding-top: 50px;
}
	.sec02 h2 {
    width: 75%;
    margin: 20px auto 20px;
}
	.sec02 .art01 {
    display: block;
	}
	.sec02 .txt {
    width: 90%;
    position: relative;
    margin: 0 auto 0px;
}
	.sec02 .pic {
    width: 60%;
}
.sec02 .art01 .pic {
    margin-left: 31%;
    margin-top: -30px;
}
	.sec02 .art02 .pic {
    width: 66%;
    margin-right: -168px;
    margin-left: -46px;
}
	.sec02 .art02 .pic {
    width: 66%;
    margin-right: -114px;
    margin-left: -46px;
}
	.sec02 .art02 .txt {
    width: 73%;
    margin-top: 154px;
}
	.sec02 .cv {
    margin-top: 24px;
    position: relative;
}
	.sec02 {
    background-repeat: repeat;
	}
	.sec02 .cv .pic .btn_Area {
    text-align: center;
    margin: -42px auto 0px;
    padding-bottom: 50px;
    display: block;
    justify-content: center;
}
	.sec02 .cv .pic .btn_Area a {
    width: 80%;
    display: block;
    margin: 0 auto;
}
	.sec02 .cv .pic .btn_Area .read {
    margin-bottom: -10px;
}
}



/* =========================================================
sec03
========================================================= */
.sec03{}
.sec03 .inner{
  width: 980px;
    margin: 0px auto 0;
    padding-top: 100px;
    position: relative;
    padding-bottom: 80px;
}
.sec03 h2{
  text-align: center;
    margin-bottom: 80px;
}
.sec03 h2 img{}

.sec03 .buys{
      display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.sec03 .buys .old{
  position: relative;
}
.sec03 .buys .old img{}
.sec03 .buys .old .btn_Area{
      position: absolute;
    width: 90%;
    left: 4%;
    bottom: 26px;
    display: flex;
}
.sec03 .buys .old .btn_Area a{}
.sec03 .buys .old .btn_Area a:hover{opacity: 0.7;}
.sec03 .btn_Area .read{}
.sec03 .btn_Area .buy{}


@media (max-width: 980px) {
	.sec03 .inner {
    width: 90%;
		padding-bottom: 30px;
	}
	.sec03 h2 {
    width: 70%;
    margin: 0 auto 23px;
}
	.sec03 .buys {
    display: block;
	}
	.sec03 .buys .old {
    position: relative;
    width: 80%;
    margin: 0 auto 20px;
}
	.sec03 .buys .old .btn_Area {
    left: 4%;
    bottom: 17px;
}

}


/* =========================================================
sec04
========================================================= */
.sec04{
  background-image: url(img/img_dani/sec04_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    position: relative;
    margin-bottom: -55px;
}
.sec04 .inner{
  width: 980px;
    margin: 0px auto 0;
    padding-top: 80px;
    padding-bottom: 80px;
}
.sec04 h2 {
    text-align: center;
    margin-bottom: 40px;
}
.sec04 h2 img{}

.sec04 .bnr img{
  display: block;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0px 0 47px #ff00b8;
    width: 820px;
    margin: 0 auto;
}
.sec04 .btn_Area{
  text-align: center;
    margin: 0px auto 0px;
    padding-bottom: 40px;
    display: flex;
    justify-content: center;
}

.sec04 .btn_Area a{width: 50%;}
.sec04 .btn_Area a img{width: 100%;}
.sec04 .btn_Area a:hover{opacity: 0.7!important;}
.sec04 .btn_Area .read{}
.sec04 .btn_Area .buy{}


@media (max-width: 980px) {
	.sec04 .inner {
    width: 90%;
    margin: 0px auto 0;
    padding-top: 30px;
    padding-bottom: 40px;
}
	.sec04 h2 {
    text-align: center;
    margin-bottom: 40px;
    width: 90%;
    margin: 0 auto 25px;
}
	.sec04 .btn_Area {
		display: block;
	}
	.sec04 .btn_Area a {
    width: 80%;
    display: block;
    margin: 0 auto;
}
	.sec04 .btn_Area .read {
    margin-bottom: -14px;
}
	.sec04 .bnr img {
    width: 100%;
}

}


/* =========================================================
sec05
========================================================= */

.sec05{
  background-image: url(img/img_dani/sec05_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    position: relative;
}
.sec05 .inner{
  width: 980px;
    margin: 0px auto 0;
    padding-top: 20px;
    padding-bottom: 80px;
}
.sec05 h3{}
.sec05 h3 marquee{
  font-size: 40px;
    color: #fcff00;
}
.sec05 .bnr{}
.sec05 .bnr a{
  display: block;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 3px 0 20px #000;
    width: 820px;
    margin: 0 auto;
}
.sec05 .bnr a:hover{}


@media (max-width: 980px) {
	
	.sec05 .inner {
    width: 90%;
    padding-top: 20px;
    padding-bottom: 50px;
}
	.sec05 .bnr a {
    width: 100%;
	}

}
