@charset "utf-8";

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

body {
    line-height:1;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
    display:block;
}

nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

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

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* change colours to suit your needs */
mark {
    background-color:#ff9;
    color:#000; 
    font-style:italic;
    font-weight:bold;
}

del {
    text-decoration: line-through;
}

abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

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

/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}


/* add to
---------------------------------------------------------- */
html{
	-webkit-text-size-adjust: 100%;
	box-sizing: border-box;
}
*, *:before, *:after{
	box-sizing: inherit;
}

main{
	display: block;
}

img {
	border-style: none;
}

button, input, select, textarea {
	font-family: inherit;
	font-weight: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

ul li,
ol li{
	vertical-align: top;
}



/* ---------------------------------------------------------------
	Base
--------------------------------------------------------------- */
body {
	color: #000;
	font-size: 18px;
	font-weight: normal;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height: 1.7;
	word-break: normal;
	overflow-wrap: break-word;
	word-wrap: break-word;
	background-color: #fff;
	-webkit-font-smoothing: antialiased;
	text-align: center;
}

a {
	color: #333;
	text-decoration: underline;
}

strong{
	font-weight: bold;
}
em{
	font-style: italic;
}
del{
	font-style: line-through;
}

sup, sub {
	line-height: 1.35;
	font-size: 10px;
}
sup {
	vertical-align: super;
}
sub {
	vertical-align: sub;
}

img{
	max-width: 100%;
	height: auto !important;
	display: block;
	margin: auto;
}

table{
	max-width: 100%;
}

/* PCのみ */
@media all and (min-width: 751px) {
	body{
		min-width: 400px;
/*		background: url("img/bg_pc.jpg") no-repeat;
*/		background-size: cover;
		background-attachment: fixed;
	}
	#all{
		width: 400px;
		margin: auto;
		background: #fff;
		box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 15%);
	}
	
	a,
	a img{
		-webkit-transition: 0.3s;
		-moz-transition: 0.3s;
		-o-transition: 0.3s;
		-ms-transition: 0.3s;
		transition: 0.3s;
		-webkit-transition-property: opacity;
		-ms-transition-property: opacity;
		transition-property: opacity;
	}
	a:hover{
		text-decoration: none;
	}
/*	a:hover img{
		opacity: 0.7;
		filter: alpha(opacity=70);
		-ms-filter: "alpha( opacity=70 )";
	}
*/}
/* SPのみ */
@media all and (max-width: 750px) {
	body{
		width: 100%;
		min-width: 320px;
	}
	#all{
		width: 100%;
	}
}



/* ---------------------------------------------------------------
	Animation
--------------------------------------------------------------- */
.anim-box{
	opacity: 0;
	position: absolute;
}

.anim-box.slidein-left.is-animated {
	animation: slideInLeft 1s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}
@keyframes slideInLeft {
	0% {
		transform: translateX(-180px);
		opacity: 0;
	}
	100% {
		transform: translateX(0);
	}
	40%,100% {
		opacity: 1;
	}
}

.anim-box.slidein-right.is-animated {
	animation: slideInRight 1s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}
@keyframes slideInRight {
	0% {
		transform: translateX(180px);
		opacity: 0;
	}
	100% {
		transform: translateX(0);
	}
	40%,100% {
		opacity: 1;
	}
}

.anim-box.fadeup.is-animated {
	animation: fadeup 0.5s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}
@keyframes fadeup {
	0% {
		transform: translateY(50px);
		opacity: 0;
	}
	70% {
		opacity: 1;
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.anim-box.fadeup-quick.is-animated {
	animation: fadeupQuick .3s cubic-bezier(.33, 1, .68, 1) 1 forwards;
}
@keyframes fadeupQuick {
	0% {
		opacity: 0;
		transform: translateY(50px);
	}
	70% {
		opacity: 1;
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.anim-box.zoomin.is-animated {
	animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}
@keyframes zoomIn {
	0% {
		transform: scale(0.8);
		opacity: 0;
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}
.anim-box.zoominScale {
	transform: scale(0.8);
	opacity: 0;
	transition: all 0.5s;
	transition-delay: .2s;
}
.anim-box.zoominScale.is-animated {
	transform: scale(1);
	opacity: 1;
}

.anim-box.zoomin-quick.is-animated {
	animation: zoomInQuick 0.3s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}
@keyframes zoomInQuick {
	0% {
		transform: scale(0.8);
		opacity: 0;
	}
	100% {
		opacity: 1;
		transform: scale(1);
	}
}

.anim-box.popup-quick.is-animated {
	animation: popupQuick 0.2s cubic-bezier(0.22, 1, 0.36, 1) 1 forwards;
}

@keyframes popupQuick {
	0% {
		transform: translateY(40px) scale(0.8);
		opacity: 0;
	}
	100% {
		transform: translateY(0) scale(1.0);
	}
	80%, 100% {
		opacity: 1;
	}
}

/* 遅れて開始 */
.anim-delay02{
	animation-delay: .2s !important;
}
.anim-delay04{
	animation-delay: .4s !important;
}
.anim-delay1{
	animation-delay: 1s !important;
}

.animYura {
	transform-origin: center bottom;
    animation: yura 2.5s linear infinite;
}
@keyframes yura {
	0% {transform: rotate(-3deg);}
    10% {transform: rotate(-3deg);}
    11% {transform: rotate(3deg);}
    20% {transform: rotate(3deg);}
    21% {transform: rotate(-3deg);}
    30% {transform: rotate(-3deg);}
    31% {transform: rotate(3deg);}
    40% {transform: rotate(3deg);}
    41% {transform: rotate(0deg);}
	99% {transform: rotate(0deg);}
	100% {transform: rotate(-3deg);}
}
.animYura02 {
	transform-origin: center bottom;
    animation: yura02 3.0s linear infinite;
}
@keyframes yura02 {
	0% {transform: rotate(3deg);}
    10% {transform: rotate(3deg);}
    11% {transform: rotate(-3deg);}
    20% {transform: rotate(-3deg);}
    21% {transform: rotate(3deg);}
    30% {transform: rotate(3deg);}
    31% {transform: rotate(-3deg);}
    40% {transform: rotate(-3deg);}
    41% {transform: rotate(0deg);}
	99% {transform: rotate(0deg);}
	100% {transform: rotate(3deg);}
}
.animYura03 {
	transform-origin: center bottom;
    animation: yura03 2.5s linear infinite;
}
@keyframes yura03 {
	0% {transform: rotate(3deg);}
    10% {transform: rotate(3deg);}
    11% {transform: rotate(-3deg);}
    20% {transform: rotate(-3deg);}
    21% {transform: rotate(3deg);}
    30% {transform: rotate(3deg);}
    31% {transform: rotate(-3deg);}
    40% {transform: rotate(-3deg);}
    41% {transform: rotate(0deg);}
	99% {transform: rotate(0deg);}
	100% {transform: rotate(3deg);}
}

/* ---------------------------------------------------------------
	Content
--------------------------------------------------------------- */
.cf:after {
	content:" ";
	display:block;
	clear:both;
}
/* PCのみ */
@media all and (min-width: 751px) {
	.inner{
		margin: auto;
	}
}

article > div{
	position: relative;
}

.elm01_01{
	right: 0;
	left: 0;
	top: 34.5%;
	margin: auto;
	width: calc(639 / 750 * 400px);
}
.elm01_02{
	left: 74%;
    top: 21%;
	margin: auto;
	width: calc(136 / 750 * 400px);
}
.elm01_03{
	left: 80%;
    top: 29%;
	margin: auto;
	width: calc(134 / 750 * 400px);
}
.elm01_04{
	left: 1%;
    top: 35.9%;
	margin: auto;
	width: calc(131 / 750 * 400px);
}

.elm02_01{
	right: 0;
	left: 0;
	top: 22.8%;
	margin: auto;
	width: calc(561 / 750 * 400px);
}

.elm03_01{
	left: 7%;
	top: 49%;
	width: calc(383 / 750 * 400px);
}
.elm03_02{
	right: 21%;
	top: 86%;
	width: calc(303 / 750 * 400px);
}

.elm04_01{
	top: 2.5%;
	left: 7%;
	width: calc(677 / 750 * 400px);
}

.elm05_01{
	top: 38%;
	right: 23%;
	width: calc(299 / 750 * 400px);
}
.elm05_02{
	top: 71.5%;
	left: 21%;
	width: calc(534 / 750 * 400px);
}

.elm06_01{
	top: 19%;
	left: 7%;
	width: calc(640 / 750 * 400px);
}

.elm07_01{
	top: 6%;
	left: 6%;
	width: calc(673 / 750 * 400px);
}
.elm07_02{
	top: 21%;
	right: 0.5%;
	width: calc(679 / 750 * 400px);
	z-index: 2;
}
.elm07_03{
	top: 33.4%;
	left: 3%;
	width: calc(649 / 750 * 400px);
}
.elm07_04{
	top: 48%;
	right: 0;
	width: calc(629 / 750 * 400px);
}
.elm07_05{
	top: 62.5%;
	left: 6%;
	width: calc(624 / 750 * 400px);
}

.elm09_01{
	top: 38.5%;
	left: 20%;
	width: calc(360 / 750 * 400px);
}
.elm10_01{
	position: absolute;
	bottom: -6%;
	left: 0;
	z-index: 2;
}
/* SP */
@media all and (max-width: 750px) {
	.elm01_01{
		width: calc(639vw / 750 * 100);
	}
	.elm01_02{
		width: calc(136vw / 750 * 100);
	}
	.elm01_03{
		width: calc(134vw / 750 * 100);
	}
	.elm01_04{
		width: calc(131vw / 750 * 100);
	}
	
	.elm02_01{
		width: calc(561vw / 750 * 100);
	}
	
	.elm03_01{
		width: calc(383vw / 750 * 100);
	}
	.elm03_02{
		width: calc(303vw / 750 * 100);
	}
	
	.elm04_01{
		width: calc(677vw / 750 * 100);
	}
	
	.elm05_01{
		width: calc(299vw / 750 * 100);
	}
	.elm05_02{
		width: calc(534vw / 750 * 100);
	}
	
	.elm06_01{
		width: calc(640vw / 750 * 100);
	}
	
	.elm07_01{
		width: calc(673vw / 750 * 100);
	}
	.elm07_02{
		width: calc(679vw / 750 * 100);
	}
	.elm07_03{
		width: calc(649vw / 750 * 100);
	}
	.elm07_04{
		width: calc(629vw / 750 * 100);
	}
	.elm07_05{
		width: calc(624vw / 750 * 100);
	}
	
	.elm09_01{
		width: calc(360vw / 750 * 100);
	}
}

/* プルダウンリンクボタン
---------------------------------------------------------- */
.wrap_btn{
	position: absolute;
	bottom: 0.5%;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 2;
}
.wrap_btn2{
	bottom: 3.7%;
}
.wrap_btn3{
	bottom: 2.7%;
	display: flex;
	justify-content: space-between;
	width: 95%;
}

.acMenu{
	position: relative;
	width: calc(632 / 750 * 400px);
	height: calc(98 / 750 * 400px);
	margin: auto;
	overflow: hidden;
}
.acMenu.active{
	overflow: visible;
}
.acMenu dt{
	text-indent: -9999px;
	background: url("img/btn_link_down.png") no-repeat;
	background-position: bottom center;
	background-size: contain;
	display: block;
	width: calc(632 / 750 * 400px);
	height: calc(98 / 750 * 400px);
	text-align: center;
	margin: auto;
	cursor: pointer;
	transition: .2s;
}
.wrap_btn3 .acMenu dt{
	background-image: url("img/btn02_link_down.png");
	width: calc(285 / 750 * 400px);
	height: calc(65 / 750 * 400px);
}

.acMenu.active dt{
	background-image:url("img/btn_link_up.png");
}
.wrap_btn3 .acMenu dt{
	background-image: url("img/btn02_link_down.png");
}
.wrap_btn3 .acMenu.active dt{
	background-image:url("img/btn02_link_up.png");
}

.acMenu dd{
	text-align:center;
	opacity: 0;
	transition: .4s;
}
.acMenu.active dd{
	opacity: 1;
}
.acMenu dd a{
	text-indent: -9999px;
	display: block;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: bottom center;
	width: calc(632 / 750 * 400px);
	height: calc(98 / 750 * 400px);
	text-align: center;
	margin: auto;
	transition: .2s;
}
.wrap_btn3 .acMenu dd a{
	width: calc(285 / 750 * 400px);
	height: calc(65 / 750 * 400px);
}
.acMenu dd a:first-child{
	background-image: url("img/btn_official.png");
}
.acMenu dd a:first-child:hover{
	background-image:url("img/btn_official_on.png");
}
.acMenu dd a:nth-child(2){
	background-image: url("img/btn_rakuten.png");
}
.acMenu dd a:nth-child(2):hover{
	background-image:url("img/btn_rakuten_on.png");
}
.acMenu dd a:last-child{
	background-image: url("img/btn_amazon.png");
}
.acMenu dd a:last-child:hover{
	background-image: url("img/btn_amazon_on.png");
}

.wrap_btn3 .acMenu dd a:first-child{
	background-image: url("img/btn02_official.png");
}
.wrap_btn3 .acMenu dd a:first-child:hover{
	background-image:url("img/btn02_official_on.png");
}
.wrap_btn3 .acMenu dd a:nth-child(2){
	background-image: url("img/btn02_rakuten.png");
}
.wrap_btn3 .acMenu dd a:nth-child(2):hover{
	background-image:url("img/btn02_rakuten_on.png");
}
.wrap_btn3 .acMenu dd a:last-child{
	background-image: url("img/btn02_amazon.png");
}
.wrap_btn3 .acMenu dd a:last-child:hover{
	background-image: url("img/btn02_amazon_on.png");
}
/* SP */
@media all and (max-width: 750px) {
	.acMenu,
	.acMenu dt{
		width: calc(632vw / 750 * 100);
		height: calc(98vw / 750 * 100);
	}
	.acMenu dd a{
		width: calc(632vw / 750 * 100);
		height: calc(98vw / 750 * 100);
	}
	
	.wrap_btn3 .acMenu,
	.wrap_btn3 .acMenu dt{
		width: calc(285vw / 750 * 100);
		height: calc(65vw / 750 * 100);
	}
	.wrap_btn3 .acMenu dd a{
		width: calc(285vw / 750 * 100);
		height: calc(65vw / 750 * 100);
	}
}

.acMenuMove{
	width: calc(740 / 750 * 400px);
	border: solid calc(4 / 750 * 400px) #000000;
	border-radius: calc(20 / 750 * 400px);
	background-color: #00b2f7;
	box-sizing: border-box;
	margin: 0 auto;
	transition: all .3s;
}
.btn02 .acMenuMove{
	background-color: #f78600;
}
.btnMoveFlex{
	display: flex;
	width: 100%;
	background: url("img/btn03_bg.jpg"), #b0cfef;
	background-repeat: no-repeat;
	background-position: top center;
	background-size: 100%;
	justify-content: space-between;
	padding: 0 calc(15 / 750 * 400px) calc(160 / 750 * 400px);
}
.btn03 .acMenuMove{
	width: calc(348 / 750 * 400px);
}
.acMenuMove dt{
	text-indent: -9999px;
	background: url("img/btn_link_down.png?v2") no-repeat;
	background-position: center;
	background-size: 100%;
	display: block;
	width: calc(600 / 750 * 400px);
	height: calc(141 / 750 * 400px);
	text-align: center;
	margin: auto;
	cursor: pointer;
	padding: calc(40 / 750 * 400px) 0;
	transition: all .3s;
}
.acMenuMove dt.selected{
	background: url("img/btn_link_up.png?v2") no-repeat;
	background-position: center;
	background-size: 100%;
}
.wrap_btnMove{
	position: relative;
	z-index: 2;
}
.btn03 .acMenuMove{
	border: solid calc(2 / 750 * 400px) #000000;
	border-radius: calc(10 / 750 * 400px);
}
.btn03 .acMenuMove dt{
	background: url("img/btn02_link_down.png?v2") no-repeat;
	background-position: center;
	background-size: 100%;
	width: calc(284 / 750 * 400px);
	height: calc(28 / 750 * 400px);
	padding: calc(30 / 750 * 400px) 0;
}
.btn03 .acMenuMove dt.selected{
	background: url("img/btn02_link_up.png?v2") no-repeat;
	background-position: center;
	background-size: 100%;
}
.acMenuMove dd{
	display: none;
	width: calc(710 / 750 * 400px);
	margin: auto;
	padding-bottom: calc(15 / 750 * 400px);
}
.acMenuMove dd a:not(:first-child){
	margin-top: calc(16 / 750 * 400px);
}
.btn03 .acMenuMove dd{
	width: calc(334 / 750 * 400px);
	padding-bottom: calc(10 / 750 * 400px);
}
.btn03 .acMenuMove dd a:not(:first-child){
	margin-top: calc(10 / 750 * 400px);
}
.acMenuMove dd a{
	display: block;
	transition: all .3s;
}
/* SP */
@media all and (max-width: 750px) {
	.acMenuMove{
		width: calc(740vw / 750 * 100);
		border: solid calc(4vw / 750 * 100) #000000;
		border-radius: calc(20vw / 750 * 100);
	}
	.btnMoveFlex{
		padding-bottom:calc(160vw / 750 * 100);
	}
	.btn03 .acMenuMove{
		width: calc(348vw / 750 * 100);
	}
	.acMenuMove dt{
		width: calc(600vw / 750 * 100);
		height: calc(141vw / 750 * 100);
		padding: calc(40vw / 750 * 100) 0;
	}
	.btnMoveFlex .wrap_btnMove{
		width: calc(720vw / 750 * 100);
	}
	.btn03 .acMenuMove{
		border: solid calc(2vw / 750 * 100) #000000;
		border-radius: calc(10vw / 750 * 100);
	}
	.btn03 .acMenuMove dt{
		width: calc(284vw / 750 * 100);
		height: calc(28vw / 750 * 100);
		padding: calc(30vw / 750 * 100) 0;
	}
	.acMenuMove dd{
		width: calc(710vw / 750 * 100);
		padding-bottom: calc(15 / 750 * 100);
	}
	.acMenuMove dd a:not(:first-child){
		margin-top: calc(16vw / 750 * 100);
	}
	.btn03 .acMenuMove dd{
		width: calc(334vw / 750 * 100);
		padding-bottom: calc(10vw / 750 * 100);
	}
	.btn03 .acMenuMove dd a:not(:first-child){
		margin-top: calc(10vw / 750 * 100);
	}
}
@media all and (min-width: 751px) {
	.acMenuMove dt:hover {
		opacity: 0.7;
	}
	.acMenuMove dd a:hover {
		opacity: 0.7;
	}
}

.cont01{
	position: relative;
}
.cont02{
	position: relative;
}
.contWrap02{
	background-color: #b0cfef;
}
.cont04{
	position: relative;
}
.btn02{
	margin-top: calc(-140 / 750 * 400px);
}
.contWrap03{
	background-color: #b0cfef;
}
.cont09{
	margin-top: calc(-100 / 750 * 400px);
	position: relative;
}
@media all and (max-width: 750px) {
	.cont02{
		margin-top: calc(-120vw / 750 * 100);
	}
	.btn02{
		margin-top: calc(-140vw / 750 * 100);
	}
	.cont09{
		margin-top: calc(-100vw / 750 * 100);
	}
}


/* ---------------------------------------------------------------
	Footer
--------------------------------------------------------------- */
footer{
	background: #fff;
	padding: 16% 0 12.5%;
	font-size: calc(19.5 / 750 * 400px);
	color: #000;
}
.logo{
	display: inline-block;
	width: calc(315 / 750 * 400px);
}
footer ul{
	margin-top: 4%;
	list-style: none;
	display: flex;
	justify-content: center;
}
footer ul li{
	padding: 0 1em;
	line-height: 1;
}
footer ul li:first-child{
	border-right: 1px solid #000;
}
footer ul li a{
	color: #000;
	text-decoration: none;
}
address{
	font-style: normal;
	line-height: 2;
}
/* SP */
@media all and (max-width: 750px) {
	footer{
		font-size: calc(19.5vw / 750 * 100);
	}
	.logo{
		width: calc(315vw / 750 * 100);
	}
}

