/*
 * Author: Carlos Alvarez
 * URL: http://alvarez.is
 *
 * Project Name: Bolt - Free Bootstrap 3 Theme
 * Version: 1.0
 * URL: http://blacktie.co
 */

/* FONTS */
@import url(http://fonts.googleapis.com/css?family=Lato:300,400,700,900);
@import url(http://fonts.googleapis.com/css?family=Raleway:400,300,700,900);

/* OVERALL ASPECT */

body {
	/*background:url(../img/bg.gif);*/
	background-color: #7f395b;
	background-attachment: fixed;
	/*font-family: "Lato";*/
	font-family: 'Zen Kaku Gothic Antique', sans-serif;
	font-weight: 400;
	font-size: 18px;
	color: #330000;
	-webkit-font-smoothing: antialiased;
	-webkit-overflow-scrolling: touch;
}

img {
	max-width: 100%;
}

/* Titles */
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Zen Kaku Gothic Antique', sans-serif;
	margin: 0;
}

h1,
h2 {
	background-color: #fff;
	width: 100%;
	line-height: 1.3;
	text-align: center;
	padding: 25px 10px;
	margin-bottom: 10px;
}

h1 {
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 900;
    margin-bottom: -1em;
}

h2 {
	font-size: clamp(24px, 3vw, 32px);
	font-weight: 500;
}

h3 {
	font-size: clamp(24px, 2vw, 28px);
	font-weight: 500;
	display: inline-block;
	position: relative;
	background: #330000;
	padding: 0.8em 2em;
	margin-bottom: 50px;
	text-align: center;
	color: #FFFFFF;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
}

h3:after {
	border: solid transparent;
	content: '';
	height: 0;
	width: 0;
	pointer-events: none;
	position: absolute;
	border-color: rgba(51, 0, 0, 0);
	border-top-width: 15px;
	border-bottom-width: 15px;
	border-left-width: 15px;
	border-right-width: 15px;
	margin-left: -15px;
	border-top-color: #330000;
	top: 100%;
	left: 20%;
}

.sub_title {
	font-size: smaller;
	font-weight: 700;
}


/* Paragraph & Typographic */

.centered {
	text-align: center;
}

/* Links */
a,
a:visited {
	color: #330000;
}

a:hover,
a:focus {
	color: #330000;
	background-color: #7f395b;
	text-decoration: none;
}

.title_hover:hover {
  background:rgba(255,255,255,0);
}

/* WRAP SECTIONS */

.main-contents {
	width: 100vw;
	max-width: 800px;
	/*background-color: #fff;*/
	text-align: center;
	margin: 0 auto;
}

.main-contents:not(:first-child) {
	margin-top: 50px;
}

.content-top {
	margin: 0 auto 50px;
	/*background-color: #3e6eee;
	background:url(../img/bg.jpg);
	background-size: cover;
	background-repeat: no-repeat;*/
	box-shadow: 0 0px 25px 0 rgb(158, 157, 157);
}

.purchase {
	padding: 20px;
	line-height: 1.5;
	font-weight: 600;
	text-align: center;
}

/* purchase */

.purchase ul {
	padding-inline-start: 0px;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.purchase li {
	list-style: none;
	flex: 1;
	min-width: 100%;
	margin: 0 0 20px;
}

.purchase li a {
	display: inline-block;
	font-size: clamp(30px, 3vw, 40px);
	width: 100%;
	padding: 0.3em;
	background-color: #fff;
	border-radius: 100px;
	transition: 0.3s;
	filter:drop-shadow(0 0 5px rgba(250,129,138,1));
}

.purchase li a:hover,
.purchase li a:focus {
	color:#7f395b;
	text-decoration: none;
}

/* Social Links */
#social {
	width: 100%;
	padding-top: 200px;
	padding-bottom: 200px;
}

#social i {
	font-size: 50px;
	color: #74cfae;
}

#social .col-md-3:hover {
	background-color: #f5f5f5;
}

#social .col-md-3 {
	padding: 30px;
}

/* Footer */

footer {
	background-color: #7f395b;
	padding: 30px 20px;
	font-weight: 600;
}

.footer_logo {
	display: inline-block;
	margin: 10px;
	width: 50%;
	max-width: 200px;
}

@media only screen and (min-width:590px) {

body {
	background-color: transparent;
}
	
.all {
	background: url(../img/header.jpg) no-repeat center / cover;
	position: relative;
	overflow: hidden;
	z-index: 0;
	background-attachment: fixed;
}

.all:before{
	width: 200vw;
	content: '';
	background: inherit;
	background-color:rgba(255,255,255,0.7);
	background-blend-mode: lighten;
	-webkit-filter: blur(15px);
	-moz-filter: blur(15px);
	-o-filter: blur(15px);
	-ms-filter: blur(15px);
	filter: blur(15px);
	position: absolute;
	top: -500px;
	left: -500px;
	right: -500px;
	bottom: -500px;
	z-index: -1;
  }
	
.content-top {
	margin: 50px auto 40px;
	box-shadow: none;
}

.top-img {
	border: 3px solid #7f395b;
	width: 90vw;
	max-width: 800px;
	margin: 0 auto;
}

.top-img img {
	width: 100%;
	height: 500px;
	object-fit: cover;
}

.main-contents:not(:first-child) {
	margin-top: 100px;
}

.main-contents .top-img img {
	object-position: 0 70%;/*１枚目の画像トリミング位置調整*/
}

.main-contents-2 .top-img img {
	object-position: 0 50%;/*２枚目画像トリミング位置調整*/
}

.main-contents-3 .top-img img {
	object-position: 0 50%;/*３枚目画像トリミング位置調整*/
}

h1,h2 {
	background-color: transparent;
	text-shadow: 2px 2px 0 #FFF, -2px -2px 0 #FFF,
	-2px 2px 0 #FFF, 2px -2px 0 #FFF,
	0px 2px 0 #FFF,  0-2px 0 #FFF,
	-2px 0 0 #FFF, 2px 0 0 #FFF;
	filter: drop-shadow( 0 0 5px #fff);
}

.purchase {
	padding: 20px 0;
}

.purchase li{
	min-width: calc(50% - 20px);
	max-width: calc(50% - 20px);
	margin: 10px;
}

.purchase .link_amazon {
	min-width: calc(100% - 20px);
}

footer {
	margin-top: 50px;
}

	}