@CHARSET "UTF-8";
/*
*** basic setting on css/destyle.css ***
*/


/* = common setting
-------------------------------------------------------------- */ 

:root {
  --red: #ab3b3a; 
}

*{
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
html{
  font-size: 62.5%;
  overflow-y: scroll;
}
body {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 400;
  font-family: "Bonheur Royale", cursive;
  color: #fff;
  line-height: 1.7;
  letter-spacing: 1px;
  background: var(--red);
  position: relative;
  height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}
body::after{
  content: '';
  background: url(../images/miscanto.jpg) no-repeat center center / cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: .5;
}
h1{
  font-size: 4rem;
}
h1::before{
	content: '';
	background: url('../images/logo.svg') no-repeat center center / contain;
	width: 3rem;
	height: 5rem;
	display: block;
	margin: 0 auto;
}

/* =layouts
-------------------------------------------------------------- */

body,
#page{
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
#site_footer{
  margin-top: auto;
}

table{
	width: 100%;
	border-collapse: collapse;
  border-spacing: 0;
}
table th{
	padding: 1rem;
	text-align: left;
  width: 30%;
	font-weight: 400;
}
table td{
	padding: 1rem;
}

.txt_right{
	text-align: right;
}

h1,h2,h3,h4,h5,h6{
	margin: 0;
	font-weight: 400;
}
ul,dl,dt,dd{
	margin: 0;
	padding: 0;
	font-weight: 400;
}
li{
	list-style-type: none;
	margin: 0;
	padding: 0;
}
p{
	margin: 0;
}
.pc_only{
	display: none;
}

.wrapper{
	width: 90%;
	max-width: 1050px;
	margin: 0 auto;
}

.section{
	padding: 3rem 0;
}


/* Clearing floats */
.clear:after{
	clear: both;
}
.clear:before,
.clear:after{
	display: table;
	content: "";
}

.txt_right{
	text-align: right;
}
.txt_vertical{
	writing-mode: vertical-rl;
}
.txt_small{
	font-size: 70%;
}
.txt_large{
	font-size: 150%;
}

.underline{
	background: linear-gradient(to bottom , rgba(255,255,255,0) 50%, #ffff00 51%);
	font-weight: 700;
}



/* =link
-------------------------------------------------------------- */


a{
	outline: none;
	color: var(--bk);
	text-decoration: underline;
	transition: .3s;
}
*:focus {
  outline: none;
}

.btn_link{
	background: #000;
	border: #000 solid 1px;
	color: #fff;
	display: block;
	padding: 1rem;
	width: 100%;
	max-width: 300px;
	margin: 0 auto;
	text-align: center;
  position: relative;
}

.link_none{
  pointer-events: none !important;
  cursor: default !important;
  opacity: .3;
}


input[type="submit"]{
	outline: 0;
	box-shadow: none;
	border: none;
	cursor: pointer;
}
label{
	cursor: pointer;
}



/* =media
-------------------------------------------------------------- */

img,
svg{
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
iframe{
	max-width: 100%;
}
.img_clip{
	position: relative;
}
.img_clip::before{
	content: '';
	padding-top: 100%;
	display: block;
	background: #ccc;
}
.img_clip img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.wp-block-embed-youtube .wp-block-embed__wrapper,
.youtube_wrap{
  position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}
.wp-block-embed-youtube .wp-block-embed__wrapper iframe,
.youtube_wrap iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}






/* =RWD
-------------------------------------------------------------- */

@media screen and (min-width: 768px){
  .mobile_only{
		display: none;
	}
	.pc_only{
		display: block;
	}
  a[href*="tel:"] {
    pointer-events: none !important;
    cursor: default !important;
    text-decoration: none !important;
  }
  table th{
		padding: 1rem;
	}
	table td{
		padding: 1rem;
	}
}
@media screen and (min-width: 1024px){
  html{
    font-size: 75%;
		scroll-padding-top: 80px;
  }
}


@media (hover: hover) {
  .img_opacity:hover img{
  	opacity: .8;
  }
  .hover_up:hover{
  	transform: translateY(-5px);
  	box-shadow: 0 12px 10px -6px rgba(0,0,0,.3);
  }
  .hover_up__img:hover img{
  	transform: translateY(-5px);
  	box-shadow: 0 12px 10px -6px rgba(0,0,0,.3);
  }
	.btn_link:hover{
		background: #fff;
		color: #000;
	}
}