@charset "utf-8";
*, ::before, ::after {
	padding: 0px;
	margin: 0px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
img {
	vertical-align: top;
	max-width: 100%;
	height: auto;
}
body {
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, sans-serif;
	line-height: 1.8;
}
a {
	text-shadow: 0px 0px;
	text-decoration: none;
	color: #0092c9;
}
a:hover {
	text-decoration: underline;
}
ul {
	list-style-type: none;
}
.text-small {
	font-size: 0.8em;
}
header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 20px;
	border-top: 10px solid #ec008c;
	background-color: rgba(0,12,54,0.8);
	-webkit-box-shadow: 0px 1px 6px 0px rgba(0,0,0,0.5);
	box-shadow: 0px 1px 6px 0px rgba(0,0,0,0.5);
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	z-index: 1;
	transition: 2s;
}
.menu {
	display: flex;
	align-items: center;
}
.menu a {
	padding: 10px 20px;
	color: #fff;
	display: block;
	text-align: center;
	line-height: 1.4;
	border-bottom: 2px solid rgba(0,0,0,0);
}

.menu a:hover{
	text-decoration: none;
	border-bottom-color: #FFFFCC;
	transition: 2s;
}
.menu span {
	white-space: nowrap;
}
.container {
	margin: 0 auto;
	padding: 0 20px;
	max-width: 1240px;
}
.mv {
	margin-bottom: 50px;
	position: relative;
}
.mv-bg img  {
	width: 100%;
	height: 750px;
	object-fit: cover;
}
.mv-catch {
	position: absolute;
	padding: 0 20px;
	width: 100%;
	left: 0px;
	bottom: 50px;
	text-align: center;
}
section {
	margin-bottom: 100px;
}
section h2 {
	height: 60px;
	line-height: 60px;
	font-size: 24px;
	color: #010175;
	border-bottom: 5px solid #ec008e;
	background-color: #ffeed7;
	background-image: url(img/bg-title.png);
	background-repeat: no-repeat;
	padding-left: 90px;
	-webkit-box-shadow: 2px 2px 3px rgba(0,0,0,0.4);
	box-shadow: 2px 2px 3px rgba(0,0,0,0.4);
	margin-bottom: 50px;
}
.box-area {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.box   {
	width: 48%;
	margin-bottom: 50px;
}
.box-area:last-child {
	margin-bottom: -50px;
}
.box h3 {
	font-size: 20px;
	margin-bottom: 20px;
}
.adout figuer {
	margin-bottom: 20px;
}
.watching .box-area:nth-of-type(even) {
	flex-direction: row-reverse;
}
.box-link {
	color: #0054a6;
	font-style: italic;
	text-align: right;
	margin-top: 20px;
}
.feeding .box {
	float: left;
	margin-right: 4%;
	margin-bottom: 4%;
}
.feeding p
{
	margin-bottom: 1lh;
}

.eating table {
	width: 100%;
	margin-bottom: 20px;
	border-collapse: collapse;
}
.eating tr:nth-child(odd)  {
	background-color: #7accc8;
}
.eating tr:nth-child(even)  {
	background-color: #8dc63f;
}
.eating th, .eating td {
	padding: 20px;
	border: 1px solid #fff;
	vertical-align: top;
}
.eating th {
	text-align: left;
	white-space: nowrap;
}
.faq-box {
	border-radius: 10px;
	padding: 30px;
	border: 2px solid #87cedd;
	margin-bottom: 30px;
}
.faq-box dt  , .faq-box dd {
	display: flex;
}
.faq-box dt {
	margin-bottom: 20px;
}
.faq-box dt::before {
	content: "Q";
	background-color: #f00;
}
.faq-box dd::before {
	content: "A";
	background-color: #00f;
}
.faq-box dt::before, .faq-box dd::before {
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	width: 40px;
	border-radius: 50%;
	height: 40px;
	display: flex;
	justify-content: center;
	align-content: center;
	margin-right: 20px;
	flex-shrink: 0;
}
.gotop {
	position: fixed;
	bottom: 0px;
	right: 20px;
	opacity: 0.7;
	display: none;
}
.gotop:hover {
	opacity: 1;
}
footer {
	padding: 30px 0;
	background-color: #ec008c;
}
footer .menu {
	margin-bottom: 150px;
	padding: 0 20px;
	justify-content: center;
	
}
.copyright {
	color: #fff;
	font-size: 14px;
	text-align: center;
}
html {
	scroll-padding-top: 100px;
	scroll-behavior: smooth;
	
}
header h1 {
	flex-shrink: 0;
}
.sp {
	display: none;
}
.watching iframe {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 16/9;
}
.show {
	transform: translateY(100px);
	opacity: 0;
}
.show.fade-in {
	opacity: 1;
	transform: translateY(0);
	transition: 2s;
}
.faq-box .open {
	background-color: #3AF573;
}
header.scroll {
	background-color: rgba(0,12,5,0.50);
}









@media (max-width:800px){
body {
	background-color: #65F483;
}
nav {
	position: fixed;
	top: 0px;
	left: 100%;
	width: 100%;
	height: 100%;
	background-color: #000c36;
	padding-top: 100px;
	transition: 0.5s;
}
.menu-open nav {
	left: 0px;
}

nav .menu {
	display: block;
	height: 100%;
	padding-bottom: 50px;
	overflow: auto;
}
nav .menu a {
	padding: 30px 0;
	font-size: 30px;
}
header h1 {
	z-index: 1;
}
.nav-button {
	width: 70px;
	height: 50px;
	position: relative;
	z-index: 1;
}
.nav-button span {
	width: 30px;
	height: 2px;
	background-color: #fff;
	position: absolute;
	left: 20px;
	transition: 2s;
}
.nav-button span:nth-child(1) {
	top: 12px;
}
.nav-button span:nth-child(2) {
	top: 24px;
}
.nav-button span:nth-child(3) {
	top: 36px;
}
.menu-open .nav-button span:nth-child(1) {
	top: 24px;
	transform: rotate(315deg);
}
.menu-open .nav-button span:nth-child(2) {
	width: 0px;
	left: 50%;
}
.menu-open .nav-button span:nth-child(3) {
	top: 24px;
	transform: rotate(-315deg);
}



}

@media (max-width:600px){
body {
	background-color: #F344E7;
}
header {
	border-top-width: 5px;
}
header h1 img {
	height: 50px;
	width: auto;
}
header h1 {
	line-height: 1;
}
.nav-button {
	right: -20px;
}
html {
	scroll-padding-top: 70px;
}
section {
	margin-bottom: 50px;
}
section h2 {
	margin-bottom: 20px;
}
.box {
	width: 100%;
	margin-bottom: 20px;
}
.box-area:last-child {
	margin-bottom: -20px;
}
.eating th, .eating td {
	display: block;
}
.eating td {
	border-top-style: none;
}
footer .menu {
	display: block;
	margin-bottom: 50px;
}
footer .menu a {
	padding-top: 15px;
	padding-bottom: 15px;
}
footer .menu li {
	border-bottom: 1px solid rgba(255,255,255,0.7);
}
.mv-bg img {
	height: 75vh;
}
.sp {
	display: inline;
}
.pc {
	display: none;
}



}
