@charset "utf-8";

/* ---------------------------------------------------------------
	Reset
--------------------------------------------------------------- */
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/

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.fadedown.is-animated {
	animation: fadedown 0.8s cubic-bezier(0.33, 1, 0.68, 1) 1 forwards;
}
@keyframes fadedown {
	0% {
		transform: translateY(0);
		opacity: 0;
	}
	70% {
		opacity: 1;
	}
	100% {
		opacity: 1;
		transform: translateY(50px);
	}
}

.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-delay02{
	animation-delay: .2s !important;
}
.anim-delay04{
	animation-delay: .4s !important;
}
.anim-delay06{
	animation-delay: .6s !important;
}
.anim-delay08{
	animation-delay: .8s !important;
}
.anim-delay10{
	animation-delay: 1s !important;
}
.anim-delay12{
	animation-delay: 1.2s !important;
}



/* ---------------------------------------------------------------
	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: 51%;
	top: 70.0%;
	width: calc(236 / 750 * 400px);
}
.elm01_02{
	right: 3%;
	top: 76.0%;
	width: calc(703 / 750 * 400px);
}

.elm02_01{
	right: 8.2%;
	top: 87.5%;
	width: calc(389 / 750 * 400px);
}

.elm03_01{
	right: 11%;
	top: 3%;
	margin: auto;
	width: calc(483 / 750 * 400px);
}
.elm03_02{
	right: 16.5%;
	top: 13.2%;
	width: calc(295 / 750 * 400px);
}
.elm03_03{
	right: 6.2%;
	top: 35.2%;
	width: calc(520 / 750 * 400px);
}
.elm03_04{
	right: 10%;
	top: 44.3%;
	width: calc(212 / 750 * 400px);
}
.elm03_05{
	right: 7.5%;
	top: 59.5%;
	width: calc(509 / 750 * 400px);
}
.elm03_06{
	right: 4%;
	top: 70.5%;
	width: calc(198 / 750 * 400px);
}
.elm03_07{
	right: 64.5%;
	top: 80.4%;
	width: calc(239 / 750 * 400px);
}
.elm03_08{
	margin: auto;
	right: 0;
	left: 0;
	top: 90.35%;
	width: calc(637 / 750 * 400px);
}

.elm04_01{
	margin: auto;
	right: 0;
	left: 0;
	top: 7.5%;
	width: calc(646 / 750 * 400px);
}
.elm04_02{
	top: 50.5%;
	right: 25%;
	width: calc(346 / 750 * 400px);
}
.elm04_03{
	top: 58.8%;
	right: 33%;
	width: calc(235 / 750 * 400px);
}
.elm04_04{
	top: 67.5%;
	right: 31.5%;
	width: calc(260 / 750 * 400px);
}
.elm04_05{
	margin: auto;
	left: 0;
	right: 0;
	top: 81%;
	width: calc(610 / 750 * 400px);
}
.elm04_btn{
	position: absolute;
	top: 25.5%;
	left: 9%;
	width: calc(125 / 750 * 400px);
	z-index: 3;
}

.elm05_01{
	top: 19.2%;
	right: 38.7%;
	width: calc(414 / 750 * 400px);
}
.elm05_02{
	top: 49.0%;
	right: 7%;
	width: calc(363 / 750 * 400px);
}
.elm05_03{
	top: 69.2%;
	right: 38%;
	width: calc(302 / 750 * 400px);
}
.elm05_text{
	position: absolute;
	top: 71.0%;
	left: 5.5%;
	width: calc(189 / 750 * 400px);
	z-index: 3;
}

.elm06_01{
	top: 28.2%;
	right: 6%;
	width: calc(444 / 750 * 400px);
}
.elm06_02{
	top: 55.0%;
	right: 5%;
	width: calc(409 / 750 * 400px);
}
.elm06_03{
	top: 72.5%;
	right: 23%;
	width: calc(302 / 750 * 400px);
}
.elm06_text{
	position: absolute;
	top: 75.0%;
	left: 70.5%;
	width: calc(192 / 750 * 400px);
	z-index: 3;
}

/* SP */
@media all and (max-width: 750px) {
	.elm01_01{
		width: calc(236vw / 750 * 100);
	}	
	.elm01_02{
		width: calc(703vw / 750 * 100);
	}
	
	.elm02_01{
		width: calc(389vw / 750 * 100);
	}
	
	.elm03_01{
		width: calc(483vw / 750 * 100);
	}
	.elm03_02{
		width: calc(295vw / 750 * 100);
	}
	.elm03_03{
		width: calc(520vw / 750 * 100);
	}
	.elm03_04{
		width: calc(212vw / 750 * 100);
	}
	.elm03_05{
		width: calc(509vw / 750 * 100);
	}
	.elm03_06{
		width: calc(198vw / 750 * 100);
	}
	.elm03_07{
		width: calc(239vw / 750 * 100);
	}
	.elm03_08{
		width: calc(637vw / 750 * 100);
	}
	
	.elm04_01{
		width: calc(646vw / 750 * 100);
	}
	.elm04_02{
		width: calc(346vw / 750 * 100);
	}
	.elm04_03{
		width: calc(235vw / 750 * 100);
	}
	.elm04_04{
		width: calc(260vw / 750 * 100);
	}
	.elm04_05{
		width: calc(610vw / 750 * 100);
	}
	.elm04_btn{
		width: calc(125vw / 750 * 100);
	}
	
	.elm05_01{
		width: calc(414vw / 750 * 100);
	}
	.elm05_02{
		width: calc(363vw / 750 * 100);
	}
	.elm05_03{
		width: calc(302vw / 750 * 100);
	}
	.elm05_text{
		width: calc(189vw / 750 * 100);
	}
	
	.elm06_01{
		width: calc(444vw / 750 * 100);
	}
	.elm06_02{
		width: calc(409vw / 750 * 100);
	}	
	.elm06_03{
		width: calc(302vw / 750 * 100);
	}
	.elm06_text{
		width: calc(192vw / 750 * 100);
	}
}


/* プルダウンリンクボタン
---------------------------------------------------------- */
.wrap_btn{
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 2;
}
.wrap_btn1{
	left: -51%;
	bottom: 28.8%;
	width: 45%;
}
.wrap_btn2{
	right: -51%;
	bottom: 28.8%;
	width: 45%;
}
.wrap_btn3{
	top: 27.5%;
}
.wrap_btn4{
	bottom: 2%;
}
.wrap_btn5{
	left: -51%;
	bottom: 36.0%;
	width: 45%;
}
.wrap_btn6{
	right: -51%;
	bottom: 36.0%;
	width: 45%;
}
.wrap_btn7{
	bottom: 4.5%;
}

.acMenu{
	position: relative;
	margin: auto;
	overflow: hidden;
}
.acMenu.active{
	overflow: visible;
}
.acMenu dt{
	text-indent: -9999px;
	background-position: center;
	background-size: contain;
	display: block;
	text-align: center;
	margin: auto;
	cursor: pointer;
	transition: .2s;
}
.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: center;
	text-align: center;
	margin: auto;
	transition: .2s;
}

.menu01,
.menu02 {
	width: calc(332 / 750 * 400px);
	height: calc(89 / 750 * 400px);
}
.menu03 {
	width: calc(434 / 750 * 400px);
	height: calc(88 / 750 * 400px);
}
.menu04 {
	width: calc(510 / 750 * 400px);
	height: calc(88 / 750 * 400px);
}

.menu01 dt{
	background: url("img/btn01_link_down.png") no-repeat;
	background-size: contain;
	width: calc(332 / 750 * 400px);
	height: calc(89 / 750 * 400px);
}
.menu02 dt{
	background: url("img/btn02_link_down.png") no-repeat;
	background-size: contain;
	width: calc(332 / 750 * 400px);
	height: calc(89 / 750 * 400px);
}
.menu03 dt{
	background: url("img/btn03_link_down.png") no-repeat;
	background-size: contain;
	width: calc(434 / 750 * 400px);
	height: calc(88 / 750 * 400px);
}
.menu04 dt{
	background: url("img/btn04_link_down.png") no-repeat;
	background-size: contain;
	width: calc(510 / 750 * 400px);
	height: calc(88 / 750 * 400px);
}

.menu01 dt:hover,
.menu02 dt:hover{
	background-image:url("img/btn00_link_down_hover.png");
}
.menu03 dt:hover{
	background-image:url("img/btn03_link_down_hover.png");
}
.menu04 dt:hover{
	background-image:url("img/btn04_link_down_hover.png");
}

.menu01.active dt{
	background-image:url("img/btn01_link_up.png");
}
.menu02.active dt{
	background-image:url("img/btn02_link_up.png");
}
.menu03.active dt{
	background-image:url("img/btn03_link_up.png");
}
.menu04.active dt{
	background-image:url("img/btn04_link_up.png");
}

.menu01 dd a,
.menu02 dd a{
	width: calc(332 / 750 * 400px);
	height: calc(89 / 750 * 400px);
	margin: 1.5% 0;
}
.menu03 dd a{
	width: calc(434 / 750 * 400px);
	height: calc(88 / 750 * 400px);
	margin: 1.5% 0;
}
.menu04 dd a{
	width: calc(510 / 750 * 400px);
	height: calc(88 / 750 * 400px);
	margin: 1.5% 0;
}
.menu01 dd a:first-child,
.menu02 dd a:first-child{
	background-image: url("img/btn00_official.png");
}
.menu03 dd a:first-child{
	background-image: url("img/btn03_official.png");
}
.menu04 dd a:first-child{
	background-image: url("img/btn04_official.png");
}
.menu01 dd a:nth-child(2),
.menu02 dd a:nth-child(2){
	background-image: url("img/btn00_rakuten.png");
}
.menu03 dd a:nth-child(2){
	background-image: url("img/btn03_rakuten.png");
}
.menu04 dd a:nth-child(2){
	background-image: url("img/btn04_rakuten.png");
}
.menu01 dd a:last-child,
.menu02 dd a:last-child{
	background-image: url("img/btn00_amazon.png");
}
.menu03 dd a:last-child{
	background-image: url("img/btn03_amazon.png");
}
.menu04 dd a:last-child{
	background-image: url("img/btn04_amazon.png");
}


/* SP */
@media all and (max-width: 750px) {
	.wrap_btn::after{
		width: calc(198vw / 750 * 100);
		height: calc(72vw / 750 * 100);
	}
	.wrap_btn2::after{
		width: calc(188vw / 750 * 100);
		height: calc(108vw / 750 * 100);
	}
	
	.menu01,
	.menu02,
	.menu01 dt,
	.menu02 dt{
		width: calc(332vw / 750 * 100);
		height: calc(89vw / 750 * 100);
	}
	.menu03,
	.menu03 dt{
		width: calc(434vw / 750 * 100);
		height: calc(88vw / 750 * 100);
	}
	.menu04,
	.menu04 dt{
		width: calc(510vw / 750 * 100);
		height: calc(88vw / 750 * 100);
	}

	.menu01 dd a,
	.menu02 dd a{
		width: calc(332vw / 750 * 100);
		height: calc(89vw / 750 * 100);
	}
	.menu03 dd a{
		width: calc(434vw / 750 * 100);
		height: calc(88vw / 750 * 100);
	}
	.menu04 dd a{
		width: calc(510vw / 750 * 100);
		height: calc(88vw / 750 * 100);
	}
}



/* ---------------------------------------------------------------
	Footer
--------------------------------------------------------------- */
footer{
	background: #eae3da;
	padding: 4.5% 0 7.5%;
	font-size: calc(19.5 / 750 * 400px);
	color: #221e1f;
}
.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 #221e1f;
}
footer ul li a{
	color: #221e1f;
	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);
	}
}

