@charset "UTF-8";

:root {
	--primary-color: #1A2D4D;
	--secondary-color: #E61D1D;
	--font-color: #333;
	--fs-h2:3.3rem;
	--fs-h3:2.2rem;
	--fs-main:1.6rem;
	--fs-small:1.5rem;
}
@media (max-width: 767.98px) {
	:root {
		--fs-h2:3.1rem;
		--fs-h3:2.0rem;
		--fs-main:1.4rem;
		--fs-small:1.3rem;
	}
	
}
html {
	font-size: 62.5%;
	scroll-behavior: smooth;
}
body {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 500;
	font-style: normal;
	line-height: 1.6;
	letter-spacing: 0.05em;
	font-size: var(--fs-main);
}

a {
	text-decoration: none;
	outline: none;
}

h1{
	font-size: var(--fs-h1);
}

h2{
	font-size: var(--fs-h2);
}

h3{
	font-size: var(--fs-h3);
}

h4{
	font-size: var(--fs-h4);
}

.d-inline-block{
	display: inline-block;
}
.d-none{
	display: none;
}
.d-sp-block{
	display: block;
}
@media (min-width: 576px) {
	.d-pc-none{
		display: none!important;
	}
	.d-pc-block{
		display: block!important;
	}
	.d-pc-inline{
		display: inline!important;
	}
}

/*
 * loading
 * -------------------------------------------------------------------
 */
#loading {
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	right: 0;
	width: 100vw;
	height: 100vh;
	z-index: 1000;
	background-image: linear-gradient(204deg, #5fcbfb, #dee7fa 36%, #bff6fb 68%, #b2bcfc);
	transition: all 1s;
	gap: 10px;
}
.loaded {
	opacity: 0;
	visibility: hidden;
}
.loading-logo{
	margin-top: 10px;
}
#loading span {
	display: inline-block;
	color: var(--primary-color);
	font-weight: 600;
	animation: animation-loading-5 1s infinite;
	font-size: 1.7rem;
}

#loading span:nth-of-type(2) {
	animation-delay: .1s;
}

#loading span:nth-of-type(3) {
	animation-delay: .2s;
}

#loading span:nth-of-type(4) {
	animation-delay: .3s;
}

#loading span:nth-of-type(5) {
	animation-delay: .4s;
}

#loading span:nth-of-type(6) {
	animation-delay: .5s;
}

#loading span:nth-of-type(7) {
	animation-delay: .6s;
}

#loading span:nth-of-type(8) {
	animation-delay: .7s;
}

#loading span:nth-of-type(9) {
	animation-delay: .8s;
}

#loading span:nth-of-type(10) {
	animation-delay: .9s;
}

@keyframes animation-loading-5 {
	50% {
		transform: translateY(10px);
	}
}
/*
 * wrapper
 * -------------------------------------------------------------------
 */
.wrapper{
	position: relative;
}

@media (min-width: 768px) {
	.wrapper{
		background:url("../img/bg_sp.png");
		background-attachment: fixed;
		background-size: 100% 100%;
	}
}

/*
 * hb-main
 * -------------------------------------------------------------------
 */
.hb-main{
	margin: 0 auto;
	width: 40vw;
	min-width: 450px;
	filter: drop-shadow(0 0 15px rgba(50, 0, 1, 0.25));
	background:url("../img/bg_sp.png");
	background-attachment: fixed;
	background-size: 100% 100%;
	z-index: 2;
	position: relative;
}
.lp-content{
	padding-top: 15px;
	margin-bottom: 90px;
}
.content__container{
	position: relative;
}
@media (max-width: 991.98px) {
	
}
@media (max-width: 767.98px) {
	.hb-main{
		min-width: 100%;
		width: 100%;
		filter: none;
	}
}
/*
 * hb-cta__button
 * -------------------------------------------------------------------
 */

.hb-cta{
	width: 45vw;
	position: fixed;
	opacity: 0;
	bottom: -100px;
	left: 50%;
	min-width: 500px;
	transform: translateX(-50%);
	transition: bottom 0.4s ease, opacity 0.4s ease;
	z-index: 100;
}
.hb-cta.show {
	bottom: 0;
	opacity: 1;
}
.hb-cta__button{
}
.hb-cta__button-link{
	color: #fff;
	background: #003366;
	text-align: center;
	display: block;
	border-radius: 40px 40px 0 0;
	position: relative;
	padding: 20px 0 27px 20px;
	transition: all .15s ease-out;
	transform: translateY(10px);
	border: 1px solid #ddd;
}
.hb-cta__button-link:before{
	position: absolute;
	content: '';
	display: inline-block;
	background-image: url(../img/cta_button-icon.png);
	background-size: contain;
	background-repeat: no-repeat;
	left: 20px;
	bottom: 15px;
	width: 115px;
	height: 85px;
	animation: poyopoyo 2s ease-out infinite;
	opacity: 1;
}
@keyframes poyopoyo {
	0%, 40%, 60%, 80% {
		transform: scale(1.0);
	}
	50%, 70% {
		transform: scale(0.9);
	}
}
.hb-cta__button-link:hover{
	transform: translateY(0);
}

.hb-cta__button-link__ballon{
	position: absolute;
	top: -7px;
	left: 50%;
	transform: translateX(-50%);
	width: 135px;
}
.hb-cta__button-link__text{
	position: relative;
	font-size: 2.1rem;
	font-weight: 600;
	letter-spacing: .1em;
	display: inline-block;
}
.hb-cta__button-link__text:after{
	content: "";
	position: absolute;
	top: 10px;
	right: -30px;
	border: 7px solid transparent;
	border-top: 9px solid #fff;
}

@media (max-width: 767.98px) {
	.hb-cta{
		width: 100%;
		min-width: 100%;
	}
	.hb-cta__button-link{
		padding: 13px 0 25px 20px;
	}
	.hb-cta__button-link:before{
		width: 95px;
		height: 65px;
	}
	.hb-cta__button-link__text{
		font-size: 1.75rem;
		letter-spacing: .07em;
	}
	.hb-cta__button-link__ballon{
		width: 115px;
	}
}
/*
 * hb-main__mainvisual
 * -------------------------------------------------------------------
 */
.hb-main__mainvisual{
	height: 78vh;
	background:url("../img/bg_sp-treat.gif");
	background-size: 100% auto;
	max-height: 730px;
}
.mainvisual__logo{
	padding: 10px 15px;
	display: inline-block;
	margin-bottom: 15px;
}
.mainvisual__logo img{
	width: 180px;
	height: auto;
}

.mainvisual__text h1{
	text-align: center;
}
.mainvisual__text h1 img:nth-of-type(1){
	width: 68%;
	position: relative;
	z-index: 2;
	max-width: 480px;
}
.mainvisual__text h1 img:nth-of-type(2){
	width: 90%;
	margin-top: -23px;
	position: relative;
	z-index: 1;
	max-width: 610px;
}
.mainvisual__button{
	text-align: center;
	margin-top: -20px;
}
.mainvisual__button-link{
	display: inline-block;
	text-align: center;
	width: 70%;
	position: relative;
	padding: 20px 0 20px;
	background: var(--secondary-color);
	border-radius: 50px;
	box-shadow: 0px 5px 0px 0px rgb(55 0 0 / 70%);
	transition: all .15s ease;
	animation: dokundokun 1300ms ease infinite;
}
@keyframes dokundokun {
	0%  { transform: scale(1); }
	15% { transform: scale(1.03); }
	30% { transform: scale(1); }
	45% { transform: scale(1.03); }
	70% { transform: scale(1); }
}
.mainvisual__button-link:hover{
	box-shadow: none;
	opacity: .9;
}
.mainvisual__button-link__ballon{
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	width: 130px;
	top: -17px;
}
.mainvisual__button-link__text{
	position: relative;
	text-align: center;
	font-size: 2.2rem;
	color: #fff;
	font-weight: 900;
	z-index: 1;
	line-height: 1;
	letter-spacing: .08em;
	display: inline-block;
}
.mainvisual__button-link__text:after{
	content: "";
	position: absolute;
	top: 5px;
	right: -30px;
	border: 7px solid transparent;
	border-top: 9px solid #fff;
}
.mainvisual__image{
	margin-top: 15px;
	max-width: 700px;
	margin: 15px auto 0;
}
@media (min-width: 768px) {
	.mainvisual__logo{
		display: none;
	}
	.mainvisual__text{
		padding-top: 45px;
	}
} 
@media (max-width: 1199.98px) {
	.hb-main__mainvisual{
		max-height: 670px;
	}
}
@media (max-width: 991.98px) {
	.hb-main__mainvisual{
		height: 75vh;
		max-height: 610px;
	}
}
@media (max-width: 767.98px) {
	.mainvisual__button{
		margin-top: 0;
	}
	.mainvisual__button-link{
		padding: 15px 0 14px;
	}
	.mainvisual__button-link__text{
		font-size: 1.75rem;
	letter-spacing: .05em;
	}
	.mainvisual__button-link{
		width: 80%;
	}
	.mainvisual__image{
		margin-top: 0;
	}
	.mainvisual__text h1 img:nth-of-type(2){
		width: 93%;
	}
}


/*
 * lp-benefits
 * -------------------------------------------------------------------
 */
#lp-benefits{
	padding-top: 80px;
}
.benefits-heading{
	text-align: center;
	position: absolute;
	top: -82px;
	z-index: 2;
	width: 100%;
}
.benefits-heading__text-img{
	width: 320px;
}
.benefits-body{
	position: relative;
	background: #fff;
	border-top-left-radius: 100% 20%;
	border-top-right-radius: 100% 20%;
	width: calc(100% - 30px);
	margin: 0 auto;
	border: 6px solid var(--primary-color);
	padding: 70px 30px 30px;
	max-width: 650px;
}

.benefits-body:before{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	content: '';
	background:url("../img/bg_benefits.jpg");
	background-size: 100% 100%;
	opacity: .55;
	mix-blend-mode: darken;
	z-index: 1;
}
.benefits-body__lead{
	font-size: var(--fs-h3);
	letter-spacing: -0.09em;
	text-align: center;
	font-weight: 600;
	margin-bottom: 20px;
	color: var(--primary-color);
	position: relative;
	z-index: 2;
}
.benefits-body__lead span:nth-of-type(1){
	color: #fff;
	background: var(--secondary-color);
	border-radius: 15px;
	padding: 4px 10px 5px;
	line-height: 1;
	display: inline-block;
	margin-right: 2px;
}
.benefits-body__lead span:nth-of-type(2){
	font-size: 90%;
	display: inline-block;
	margin: 0 2px;
}
.benefits-body__price{
	margin-bottom: 5px;
	text-align: center;
	position: relative;
	z-index: 2;
	/* max-width: 100%; */
}
.benefits-body__price img{
	width: 70%;
	max-width: 100%;
	min-width: 350px;
}
.benefits-body__list{
	font-size: var(--fs-small);
	letter-spacing: -.05em;
	line-height: 1.5;
	font-weight: 400;
	position: relative;
	z-index: 2;
}
.benefits-body__list li{
	padding-left: 15px;
	position: relative;
}
.benefits-body__list li:before{
	content: '\203B';
	position: absolute;
	left: 0;
}
.benefits-body__list li:nth-of-type(n+2){
	margin-top: 5px;
}
@media (max-width: 1199.98px) {
	.benefits-body__price img{
		max-width: 100%;
	}
}
@media (max-width: 767.98px) {
	.benefits-heading{
		top: -52px;
	}
	.benefits-heading__text-img {
		width: 250px;
	}
	.benefits-body{
		padding: 50px 20px 30px;
	}
	.benefits-body__lead{
		margin-bottom: 10px;
	}
	.benefits-body__price img{
		width: 100%;
		max-width: 300px;
	}
}
@media (max-width: 575.98px){
	.benefits-body__lead{
		font-size: 1.6rem;
		letter-spacing: -0.1em;
	}
	.benefits-body__price img{
		min-width: 100%;
	}
	
}


/*
 * lp-merit
 * -------------------------------------------------------------------
 */
.merit-heading{
	text-align: center;
	margin-bottom: 30px;
}
.merit-heading__text-img{
	width: 75%;
	max-width: 400px;
}
.merit-body img{
	margin: 0 auto;
}


/*
 * lp-flow
 * -------------------------------------------------------------------
 */
.flow-heading{
	text-align: center;
	margin-bottom: 30px;
}
.flow-heading__text-img{
	width: 80%;
}
.flow-list{
	margin: 0 auto;
	width: calc(100% - 60px);
}
.flow-item{
	display: flex;
	position: relative;
}
.flow-item:before{
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	background: #fff;
	opacity: .55;
	z-index: 1;
	border-radius: 15px;
}
.flow-item:nth-of-type(n+2){
	margin-top: 15px;
}
.flow-item__image{
	position: relative;
	z-index: 2;
	margin: 20px 0 20px 15px;
	width: 115px;
}
.flow-item__image-img{
}
.flow-item__text{
	position: relative;
	z-index: 2;
	padding: 20px 15px;
	width: calc(100% - 115px);
}
.flow-item__num{
	margin-bottom: 2px;
}
.flow-item__num-img{
	width: 70px;
	display: block;
}
.flow-item__title{
	font-size: var(--fs-h3);
	color: var(--primary-color);
	font-weight: 600;
	letter-spacing: -0.03em;
	line-height: 1.2;
	margin-bottom: 5px;
}
.flow-item__body{
	color: var(--font-color);
	letter-spacing: -0.02em;
	font-weight: 400;
	line-height: 1.45;
}
@media (max-width: 1199.98px) { 
	.flow-list{
		width: calc(100% - 40px);
	}
}
@media (max-width: 575.98px){
	.flow-item__image{
		width: 90px;
	}
	.flow-item__text{
		width: calc(100% - 90px);
	}
}

/*
 * lp-story
 * -------------------------------------------------------------------
 */
.story-heading{
	text-align: center;
	margin-bottom: 60px;
}
.story-heading__text-img{
	width: 75%;
	max-width: 400px;
}
.story-list{
	margin:0 auto 15px;
	width: calc(100% - 60px);
}
.story-item{
	position: relative;
}
.story-item:nth-of-type(n+2){
	margin-top: 90px;
}
.story-item:before{
	position: absolute;
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: #fff;
	opacity: .55;
	z-index: 1;
	border-radius: 15px;
}
.story-item__num{
	z-index: 2;

	position: absolute;
	top: -35px;
	left: 50%;
	transform: translateX(-50%);
	width: 140px;
	/* height: 60px; */
}
.story-item__num-circle{
	position: relative;
	display: inline-block;
	width: 140px;
	height: 35px;
	overflow: hidden;
	z-index: 2;
}
.story-item__num-circle:before{
	position: absolute;
	content: '';
	display: block;
	width: 100%;
	height: 45px;
	background: #fff;
	opacity: .55;
	z-index: -1;
	border-radius: 50% / 100% 100% 0 0;
}
.story-item__num-img{
	position: absolute;
	top: 21px;
	width: 115px;
	z-index: 3;
}
.story-item__main{
	position: relative;
	z-index: 2;
	padding: 50px 30px 30px;
}
.story-item__main-image{
	margin-bottom: 15px;
	border-radius: 12px;
	overflow: hidden;
}
.story-item__image-img{
	display: block;
}
.story-item__main-text{
	
}
.story-item__main-text__title{
	text-align: center;
	font-size: var(--fs-h3);
	color: var(--primary-color);
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 5px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
.story-item__main-text__title span{
	display: inline-block;
	width: 30px;
	position: relative;
}
.story-item__main-text__title span img{
}
.story-item__main-text__attribute{
	text-align: center;
	margin-bottom: 15px;
}
.story-item__main-text__body{
	/*font-weight: 400;*/
	color: var(--primary-color);
	letter-spacing: -0.01em;
}
.story-item__sub{
	position: relative;
	z-index: 2;
	padding: 0 20px 30px;
}
.story-item__sub-title{
	text-align: center;
	color: var(--primary-color);
	font-size: 1.75rem;
	margin-bottom: 12px;
	font-weight: 500;
}
.story-item__sub-title span{
	position: relative;
	display: inline-block;
	line-height: 1;
}
.story-item__sub-title span:before,
.story-item__sub-title span:after{
	position: absolute;
	top: -3px;
	font-size: 18px;
}
.story-item__sub-title span:before{
	content: '[';
	left: -12px;
}
.story-item__sub-title span:after{
	content: ']';
	right: -12px;
}
.story-item__sub-body{
	display: flex;
	flex-wrap: wrap;
}
.story-item__sub-image{
	width: 60px;
	border-radius: 50%;
	overflow: hidden;
	height: 60px;
}
.story-item__sub-text{
	position: relative;
	width: calc(100% - 80px);
	margin-left: 20px;
	background: #fff;
	border-radius: 9px;
	padding: 15px 17px;
	letter-spacing: -0.05em;
	font-size: var(--fs-main);
	color: var(--font-color);
	font-weight: 400;
}
.story-item__sub-text:before{
	content: '';
	background: url("../img/appeal_icon-l_parts.png");
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	left: -15px;
	top: 15px;
	width: 20px;
	height: 20px;
	display: inline-block;
}

.story-link{
	text-align: right;
	margin: 0 20px;
}
.story-link a{
	font-weight: 400;
	text-decoration: underline;
	color: var(--primary-color);
}
.story-link a:hover{
	text-decoration: none;
}
@media (max-width: 1199.98px) { 
	.story-list{
		width: calc(100% - 40px);
	}
	.story-item__main{
		padding: 50px 20px 30px;
	}
}

@media (max-width: 767.98px) {
	.story-item__main-text__title{
		font-size: 1.7rem;
		margin-bottom: 2px;
	}
	.story-item__sub-title{
		font-size: 1.5rem;
	}
	.story-item__sub-text{
		padding: 12px 13px;
		line-height: 1.5;
	}
}
@media (max-width: 575.98px){
	.story-item__main-text__body{
		font-weight: 400;
	}
	.story-item__sub-text{
		font-size: 1.35rem;
		margin-left: 13px;
		width: calc(100% - 73px);
	}
	.story-item__sub-title{
		font-weight: 600;
		margin-bottom: 9px;
		font-size: 1.45rem;
	}
	.story-item__sub-text:before{
		width: 15px;
		height: 15px;
		left: -9px;
	}
}

/*
 * lp-appeal
 * -------------------------------------------------------------------
 */
.movie-body{
	position: relative;
	width: calc(100% - 60px);
	margin: 0 auto 45px;
}
.movie-body:before {
	position: absolute;
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background: var(--primary-color);
	z-index: -1;
	border-radius: 5px;
	bottom: -9px;
	right: -9px;
	opacity: .1;
}
.movie-wrap {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
	height: 0;
	border-radius: 5px;
	overflow: hidden;
}
.movie-wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.appeal-body{
	width: calc(100% - 90px);
	margin: 0 auto;
}
.appeal-heading{
	text-align: center;
	margin-bottom: 45px;
}
.appeal-heading__text-img{
	width: 75%;
	max-width: 400px;
}
.appeal-list{
}
.appeal-item{
	display: flex;
	flex-wrap: wrap;
}
.appeal-item:nth-of-type(n+2){
	margin-top: 20px;
}
.appeal-item.-question{
	
}
.appeal-item.-answer{
	
}
.appeal-item-img{
	width: 45px;
	height: 45px;
}
.-answer .appeal-item-img{
	order: 2;
}
.appeal-item__ballon{
	position: relative;
	width: calc(100% - 65px);
	border-radius: 10px;
	padding: 15px;
}
.appeal-item__ballon:before{
	content: '';
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 9px;
	width: 15px;
	height: 15px;
	display: inline-block;
}
.-question .appeal-item__ballon{
	background: #fff;
	margin-left: 20px;
}
.-question .appeal-item__ballon:before{
	left: -12px;
	background-image: url("../img/appeal_icon-l_parts.png");
}
.-answer .appeal-item__ballon{
	order: 1;
	background: #003366;
	margin-right: 20px;
	color: #fff;
}
.-answer .appeal-item__ballon:before{
	right: -12px;
	background-image: url("../img/appeal_icon-r_parts.png");
}
.appeal-item__ballon-main{
	font-size: 1.75rem;
	letter-spacing: -0.01em;
}
.-answer .appeal-item__ballon-main{
	margin-bottom: 10px;
}
.appeal-item__ballon-list{
	font-weight: 400;
	font-size: var(--fs-small);
	margin-top: 0;
	margin-bottom: 6px;
}
.appeal-item__ballon-list li{
	position: relative;
	padding-left: 13px;
	line-height: 1.4;
}
.appeal-item__ballon-list li:before{
	content: '';
	width: 4px;
	height: 4px;
	display: inline-block;
	background: #fff;
	border-radius: 50%;
	position: absolute;
	left: 3px;
	top: 7px;
}
.appeal-item__ballon-list li:nth-of-type(n+2){
	margin-top: 3px;
}
.appeal-item__ballon-sub{
	position: relative;
	font-weight: 400;
	font-size: var(--fs-small);
	padding-left: 30px;
	letter-spacing: -.01em;
}

.appeal-item__ballon-sub:before,
.appeal-item__ballon-sub:after {
	position: absolute;
	content: '';
}

.appeal-item__ballon-sub:before {
	top: 11px;
	left: 2px;
	width: 17px;
	height: 1px;
	background: #fff;
}

.appeal-item__ballon-sub:after {
	top: 7px;
	left: 15px;
	width: 0;
	height: 0;
	border-top: 5px solid transparent;
	border-right: 0 solid transparent;
	border-bottom: 0 solid transparent;
	border-left: 8px solid #fff;
}
@media (max-width: 991.98px) {
	.appeal-body{
		width: calc(100% - 40px);
	}
}
@media (max-width: 767.98px) {
	.appeal-item__ballon-main{
		font-size: 1.5rem;
	}
	.appeal-item__ballon-sub{
		padding-left: 26px;
	}
	.appeal-item__ballon-sub:before{
		left: 0;
	}
}
@media (max-width: 575.98px){
	.appeal-heading{
		
	}
	.movie-body{
		width: calc(100% - 35px);
	}
	.appeal-item__ballon-sub{
		line-height: 1.4;
	}
}
/*
 * lp-form
 * -------------------------------------------------------------------
 */
#lp-form.lp-content{
	margin-bottom: 0;
	padding-bottom: 60px;
}
.form-heading{
	text-align: center;
	margin-bottom: 30px;
}
.form-heading__text-img{
	width: 75%;
	max-width: 350px;
}
.form-body{
	text-align: center;
}
.form-body p{
	text-align: center;
	font-weight: 400;
}
.form-body__iframe{
	width: calc(100% - 90px);
	margin: 30px auto 0;
	filter: drop-shadow(2px 4px 6px #999);
}
.form-body__iframe iframe{
	border-radius: 15px;
}
@media (max-width: 767.98px) {
	.form-heading{
		margin-bottom: 15px;
	}
	.form-body__iframe{
		width: calc(100% - 40px);
		margin: 10px auto 0;
	}
}

/*
 * lp-form
 * -------------------------------------------------------------------
 */
.footer__container{
	width: calc(100% - 90px);
	padding-bottom: 45px;
	margin: 0 auto;
}
.footer__info{
	margin-bottom: 10px;
}
.footer__info img{
	display: block;
}
.footer__menu{
	
}
.footer__menu-list{
	
}
.footer__menu-item{
	
}
.footer__menu-item-link{
	color: #5B5C57;
}
.footer__menu-item-link:hover{
	opacity: .75;
}
.footer__menu-item-link:after{
	content: '';
	background-image: url("../img/footer_tab-icon.png");
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	width: 12px;
	height: 12px;
	margin-left: 4px;
	opacity: .7;
}
.footer__menu-item-link.-search:after{
	background-image: url("../img/footer_tab-icon_search.png");
}
.footer__line{
	padding-top: 50px;
	margin-bottom: 15px;
}
.footer__line-link-wrapper{
	position: relative;
}
.footer__line-link{
	/* background: #06C755; */
	display: block;
	position: relative;
	text-align: center;
	z-index: 1;
	cursor: pointer;
}
.footer__line-link__ballon{
	position: absolute;
	top: -50px;
	left: 50%;
	transform: translateX(-50%);
	width: 270px;
	z-index: 2;
}
.footer__line-link__text{
	color: #fff;
	font-weight: 600;
	font-size: 2.2rem;
	letter-spacing: .05em;
	line-height: 1;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 5px;
	align-items: center;
	cursor: pointer;
	padding: 20px;
	transition: all .15s ease;
	background: #06C755;
}
.footer__line-link__text:-webkit-details-marker {
	display: none;
}
.footer__line-link__text:hover{
	opacity: .75;
	transform: translateY(5px);
}
.footer__line-pc details[open] .footer__line-link__text:hover{
	transform: none;
	opacity: 1;
}
.footer__line-link__text img{
	width: 30px;
	display: inline-block;
}
.footer__copy{
	font-size: 1.2rem;
	text-align: center;
	color: #5B5C57;
}

.footer__line-sp{
	display: none;
}
.footer__line-pc .footer__line-link__qr{
	background: #06c755;
	padding: 0 20px 20px;
	cursor: auto;
}
.footer__line-pc .footer__line-link__qr-inner{
	background: #fff;
	padding: 20px;
}
.footer__line-pc .footer__line-link__qr-img{
	width: 130px;
	display: block;
	margin: 0 auto;
	padding: 0;
}
.footer__line-pc .footer__line-link__qr{
	display: none;
	transition: transform 0.4s;
}
.footer__line-pc details[open] .footer__line-link__qr{
	display: block;
}
.footer__line-link__qr-text{
	font-size: 1.3rem;
	margin-bottom: 15px;
	letter-spacing: -.05em;
	color: var(--font-color);
	background: #eee;
	padding: 5px;
}
.footer__pagetop{
	text-align: right;
	margin-top: 30px;
}
.footer__pagetop a{
	color: #5B5C57;
	display: inline-block;
	font-size: 1.3rem;
	position: relative;
	padding-top: 10px;
	transition: .15s all;
}
.footer__pagetop a:before {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	border-top: 2px solid #5B5C57;
	border-right: 2px solid #5B5C57;
	left: 50%;
	transform: translateX(-50%) rotate(-45deg);
	position: absolute;
	top: 0;
}
.footer__pagetop a:hover{
	opacity: .75;
}

@media (max-width: 767.98px) {
	.footer__container{
		width: calc(100% - 40px);
		padding-bottom: 30px;
	}
	.footer__line-sp{
		display: block;
	}
	.footer__line-pc{
		display: none;
	}
}



/*
 * hb-menu
 * -------------------------------------------------------------------
 */
.hb-menu{
	position: fixed;
	top: 0;
	right: 0;
	height: calc(100% - 60px);
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	margin: 30px;
	justify-content: center;
	gap: 10px;
	width: calc(30vw - 65px);
	z-index: 5;
}
.hb-menu__block.-top{
	padding: 50px 20px 24px;
	background: rgba(255,255,255,0.4);
	border: 1px solid var(--primary-color);
	border-top-left-radius: 100% 20%;
	border-top-right-radius: 100% 20%;
	position: relative;
}
.hb-menu__top-title{
	display: inline-block;
	background: #003366;
	color: #fff;
	border-radius: 30px;
	padding: 2px;
	/* margin-bottom: 10px; */
	position: absolute;

	left: 50%;
	top: -10px;
	height: 45px;
	width: 180px;
	text-align: center;
	line-height: 40px;
	font-weight: 600;
	letter-spacing: .1em;
	transform: translateX(-50%);
}
.-top .hb-menu__list{
	
}

.-top .hb-menu__item{
	padding-left: 20px;
	position: relative;
	letter-spacing: -.01em;
}
.-top .hb-menu__item:nth-of-type(n+2){
	margin-top: 6px;
}
.-top .hb-menu__item:before{
	position: absolute;
	left: 2px;
	top: 13px;
	width: 11px;
	height: 1px;
	display: inline-block;
	content: '';
	background: var(--primary-color);
}
.-top .hb-menu__item a{
	color: var(--primary-color);
}
.-top .hb-menu__item a:hover{
	opacity: .75;
}
.hb-menu__block.-bottom{
	padding-right: 3px;
	font-size: 1.4rem;
	text-align: right;
}


.hb-menu__logo{
	position: fixed;
	left: 15px;
	top: 15px;
}
.hb-menu__logo-img{
	width: 260px;
}
@media (max-width: 1199.98px) {
	
}
@media (max-width: 991.98px) {
	.hb-menu{
		display: none;
	}
}

/*
 * hb-icon
 * -------------------------------------------------------------------
 */

.hb-icon{
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
.hb-icon-hyururu{
	position: absolute;
	bottom: 20px;
	left: -20px;
	animation: hyururu 8s ease-in-out infinite;
}
.hb-icon-hyururu img{
	width: 140px;
}
.hb-icon-buriri{
	position: absolute;
	bottom: 10px;
	right: -30px;
	transform: translate(100%, 100%);
	animation: buriri 8s ease-in-out infinite;
	animation-delay: 4s;
}
.hb-icon-buriri img{
	width: 200px;
}
@keyframes hyururu {
	0%, 60%, 100% {
		transform: translate(-150%, 100%);
	}
	5% {
		transform: translateY(0);
	}
	11%, 14%, 18% {
		transform: translate(-3px, 3px);
	}
	12%, 16%, 20% {
		transform: translateY(0);
	}
	22% {
		transform: translateY(0);
	}
	28% {
		transform: translate(-150%, 100%);
	}
}
/* 右：ぶりり */
@keyframes buriri {
	0%, 60%, 100% {
		transform: translate(100%, 100%);
	}
	5% {
		transform: translateY(0);
	}
	11%, 14%, 18% {
		transform: translate(3px, 3px);
	}
	12%, 16%, 20% {
		transform: translateY(0);
	}
	22% {
		transform: translateY(0);
	}
	28% {
		transform: translate(100%, 100%);
	}
}
@media (max-width: 767.98px) {
	.hb-icon{
		display: none;
	}
}

/*
 * hb-bg_pc
 * -------------------------------------------------------------------
 */
.hb-bg{
	position: fixed;
	left: 0;
	width: 650px;
	top: 50%;
	text-align: center;
	opacity: .1;
	transform: translateY(-50%);
	filter: hue-rotate(45deg);
}
.hb-bg-sub{
	position: relative;
	z-index: 2;
	width: 380px;
}
.hb-bg-main{
	margin-top: -20px;
	z-index: 1;
	position: relative;
	width: 600px;
}


@media print {
  /* 印刷用スタイルはすべてこちらへ */
	.wrapper,.hb-main{
		background-attachment: unset;
	}
	.hb-icon-hyururu{
		transform: translate(-3px, 3px)!important;
		animation: none !important;
	}
	.hb-icon-buriri{
		transform: translate(3px, 3px)!important;
		animation: none !important;
	}
}

/*
 * error
 * -------------------------------------------------------------------
 */
.error .hb-main{
	min-height: 100vh;
    padding: 50px;
    filter: none;
}
.error .hb-menu{
	display: block!important;
}
.error-title{
	font-weight: 600;
    font-size: 2.2rem;
    margin-bottom: 5px;
}
.error .hb-main p a{
	text-decoration: underline;
	color: #024dcb;
}
.error .hb-main p a:hover{
	text-decoration: none;
}
@media (max-width: 575.98px) {
	.error .hb-main{
    	padding: 70px 15px;
	}
	.error-title{
    	font-size: 1.8rem;
	}
}