@charset "UTF-8";
/* CSS Document */
body{
    font-family: 'Noto Sans JP', sans-serif;
	background-color: #fff;
}
.inner{
	max-width: 1100px;
	margin-right: auto;
	margin-left: auto;
}
.inner2{
	max-width: 1000px;
	margin-right: auto;
	margin-left: auto;
}
.inner3{
	max-width: 850px;
	margin-right: auto;
	margin-left: auto;
}
/*header*/
.header-pc{
	display: flex;
}
.header-sp{
	display: none;
}

/*animation*/
  .fadeUp {
	animation-name:fadeUpAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
	opacity: 0;
	}
	@keyframes fadeUpAnime{
	  from {
		opacity: 0;
	  transform: translateY(30px);
	  }
	  to {
		opacity: 1;
	  transform: translateY(0);
	  }
	}
	.fadeUpTrigger{
		opacity: 0;
	}
	.delay-time02{
	animation-delay: 0.6s;
	}
	.delay-time04{
	animation-delay: 1.2s;
	}
	.delay-time06{
		animation-delay: 1.6s;
	}

@media screen and (max-width:1065px){
.inner{
	width: 90%;
}
.inner2{
	width: 90%;
}
.inner3{
	width: 90%;
}
}


@media screen and (max-width:780px){
.inner{
	width: 90%;
	margin-right:auto;
	margin-left: auto;
}
.inner3{
	width: 100%;
}
    
/*header*/
.header-pc{
	display: none;
}
.header-sp{
	display: block;
}
    
.header-pc{
	display: none;
}
.header-sp {
    display: flex;
    width: 100%;
    background-color: #fff;
    height: 61px;
    align-items: center;
    position: fixed;
    z-index: 85;
    box-shadow: 0px 1px 10px #7a7a7a;
}
/*hamburger menu*/
.menu-btn {
	position: fixed;
	top:  0;
	right: 0;
	display: flex;
	height: 60px;
	width: 60px;
	justify-content: center;
	align-items: center;
	z-index: 90;
	background-color: #ffffff;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
	content: '';
	display: block;
	height: 3px;
	width: 25px;
	border-radius: 3px;
	background-color: #16336B;
	position: absolute;
}
.menu-btn span:before {
	bottom: 8px;
}
.menu-btn span:after {
	top: 8px;
}
#menu-btn-check:checked ~ .menu-btn span {
	background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
	bottom: 0;
	transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
	top: 0;
	transform: rotate(-45deg);
}
#menu-btn-check {
    display: none;
}
#menu-btn-check:checked ~ .menu-content {
    left: 0;
}
.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 80;
    background-color: #f6e5e5;
    transition: all 0.8s;
    margin-top: 62px;
}
.menu-content ul {
	padding: 50px 10px 0;
}
.menu-content ul li {
	list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 80%;
    font-size: 16px;
    box-sizing: border-box;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
    margin: 0 auto 10px;
    border-bottom: 1px solid #f2a6a5;
}
.menu-content ul li a:hover {
    color: #f2a6a5;
    transition: .3s;
}
    
}