@charset "utf-8";
/* CSS Document */
body {
    font-size: 17px !important;
    font-family: Hiragino Sans, Arial, sans-serif !important;
    line-height: 1.8 !important;
    color: #000000 !important;
	background-color: #C80600;
}
img {
	width: 100%;
	height: auto;
}
.half {
	text-align: center;
}
.half img {
	width: 50%;
	height: auto;
}
.red {
	color: #ff0000;
}
.yellow_l {
	background-color: #FFF500;
}
.bold {
	font-weight: bold;
}
.caution {
	font-size: 70%;
}
.spacer {
	margin-bottom: 1em;
}
header {
	max-width: 750px;
	margin: 0 auto;
}
main {
	max-width: 750px;
    background: #fff;
    margin: 0 auto;
	padding: 0;
}
section {
	max-width: 750px;
	margin: 0 auto;
	padding: 0;
}
section.cta {
	background: url(images/christmas_01_02.png);
    background-size: cover;
    padding: 19% 0 5.41%;
}
section.legal {
	background: url(images/christmas_01_05.png);
    background-size: cover;
    padding: 3% 0 4.334%;
}
section.legal .legal_title{
    text-align: center;
    font-size: 1.5em;
    font-weight: bold;
    border-bottom: 1px solid #000;
    margin-bottom: 10px;
    padding: 10px;
}
section.legal p {
	margin-bottom: 1em;
}
section img {
	margin: 0 auto;
}
.scrollbox {
    overflow: auto;
    width: 90%;
    height: 280px;
    padding: 1%;
    border: 2px dotted #ffffff;
    color: #000;
    background-color: #fff;
    line-height: 1.5em;
    margin: 5% auto;
    font-size: 0.6em;
}
.auraBtn {
    position: relative;
    width: 62%;
    margin: 0 0 0 8%;
}
.auraBtn a span:after {
    content: "";
    position: absolute;
    top: calc(50% - 4px);
    right: 25px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #fff;
    border-top: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
/*ボタンが広がるアニメーション（共通設定）*/
/* .auraBtn:before, .auraBtn:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0; */
    /*ボタンの角丸*/
    /* border-radius: 100vh; */
    /*広がるボタンの色(green, red, blue以外の場合はここを修正してください）*/
    /* background: #32ca5b; */
    /*広がるボタンの初期位置*/
    /* transform: translate3d(0, 0, 0); */
/* } */
.auraBtn:before {
    animation: auraBtn 2s ease-out infinite;
}
.auraBtn:after {
    animation: auraBtn 2s ease-out 1s infinite;
}

/*ボタン自体の設定*/
.auraBtn a {
    /*文字の色*/
    color: #fff;
    /*文字の太さ*/
    font-weight: 600;
    display: block;
    /*内側の余白　1番目の値は上下余白、2番目の値は左右余白*/
    padding: 6% 0;
    /*ボタンの角丸*/
    border-radius: 100vh;
    /*ボタン内テキストの水平方向の位置*/
    text-align: center;
    /*リンクの装飾*/
    text-decoration: none;
    /*ボタンの色(green, red, blue以外の場合はここを修正してください）*/
    background: #32ca5b;
    position: relative;
    z-index: 1;
}

/*広がるボタンのアニメーション（変更する場合は該当する箇所を修正してください）*/
@keyframes auraBtn {

  /*アニメーション初期（0秒の時）*/
  0% {
    /*拡大率　（1=100％）*/
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    /*透明度（0=透明、1=不透明）*/
    opacity: 1
  }

  /*1.8秒時*/
  90% {
    /*透明度*/
    opacity: .1
  }

  /*アニメーション最後（2秒時）*/
  to {
    /*拡大率　1番目の値はX軸、2番目の値はY軸*/
    -webkit-transform: scale(1.2, 1.5);
    transform: scale(1.2, 1.5);
    /*透明度*/
    opacity: 0
  }
}


/*ボタン右側の矢印の設定*/
.auraBtn a span {
  display: block;
  position: relative;
}

.auraBtn a span:after {
  content: "";
  position: absolute;
  /*矢印の位置*/
  top: calc(50% - 5px);
  right: 5%;
  /*矢印の横幅*/
  width: 8px;
  /*矢印の高さ*/
  height: 8px;
  /*矢印の線　太さ、線種、色*/
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  /*矢印の回転角度*/
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg)
}
.text_blink {
    animation: animation_text_blink 1s linear 0s infinite normal both;
}
@keyframes animation_text_blink {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}
@media screen and (max-width: 480px) {
.scrollContents__area img {
    margin-right: 10px!important;
    max-width: 60%!important;;
}
}
.imgItems {
    width: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
}
.scrollContents__area {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    padding-bottom: 0px;
    margin-bottom: -30px;
	min-width: 560px;
}
.scrollContents__area img {
    margin-right: 10px;
    max-width: 32%;
}

footer {
    background-color: #414345;
    background-image: linear-gradient(315deg, #232526, #414345);
    color: #e2e2e2;
	padding: 20px;
	font-size: 0.85em;
}
footer ul {
    list-style-type: none;
}
footer p {
    text-align: center;
}