@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Kaisei+Tokumin:wght@400;500;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kaisei+Tokumin:wght@400;500;700;800&family=Noto+Sans+JP:wght@100..900&family=Ribeye&family=RocknRoll+One&display=swap');
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");

:root {
	--base-color: #fff;
	--base-inverse-color: #444;	/* 0e211f */
	--primary-color: #E4717A;
	--primary-inverse-color: #fff;
	--content-space: 1rem;
}
@media screen and (min-width:900px) {
	:root {
		--content-space: 4rem;
	}
}

@keyframes animation1 {
	0% {left: -200px;}
	100% {left: 0px;}
}
@keyframes opa1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
@keyframes jump1 {
  0%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  90% {
    transform: translateX(-50%) translateY(-10px);
  }
}

body * {box-sizing: border-box;}
html,body {
	font-size: 17px;
}
@media screen and (min-width:900px) {
	html, body {
		font-size: 20px;
	}
}

body {
	margin: 0;padding:0;
	font-family: "RocknRoll One", "Kaisei Tokumin", "Noto Serif JP", "Hiragino Mincho Pro", "ヒラギノ明朝 Pro W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;	/*フォント種類（ゴシック）*/
	font-optical-sizing: auto;
	font-style: normal;
	-webkit-text-size-adjust: none;
	background: var(--base-color);
	color: var(--base-inverse-color);
	line-height: 1.6;
	overflow-x: hidden;
}

/*リセット*/
figure {margin: 0;}
dd {margin: 0;}
nav,ul,li,ol {margin: 0;padding: 0;}
nav ul {list-style: none;}
table {border-collapse:collapse;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
input {font-size: 1rem;}

.noto-sans-jp-800 {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
}

section {
	padding: 0 var(--content-space);
}

a {
	color: inherit;
	transition: 0.3s;
}
a:hover {
	filter: brightness(1.1);
}


#container {
	position: relative;
	animation: opa1 1s 0.4s both;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	/* padding: 0 var(--content-space); */
	padding:0;
	width:100%;
	overflow:hidden;
}
header {
	padding: 0;
}

#logo {margin: 0;padding: 0;}
#logo img {
	display: inline-block;
	width: 250px;
	padding: 0.8rem;
}
header #logo img {
	width: 250px;
}
#header-box * {margin: 0;padding: 0;}
#header-box {
	list-style: none;
	position: fixed;
	z-index: 101;
	right: 70px;
	top: 0px;
	height: 70px;
	display: flex;
}
#header-box a {
	display: flex;text-decoration: none;
	height: 100%;
	align-items: center;
	background: var(--primary-color);
	color: var(--primary-inverse-color);
	padding: 0 2rem;
}


#mainimg-box h2 {
	font-size: 6vw;
	line-height: 1.6;
	font-weight: 200;
	position: relative;
	display: block;
	padding: 1rem 1.2rem;
	width:80%;
	margin:2rem auto;
}
#mainimg-box h2 span {
	color: var(--primary-color);
}
#mainimg-box h2::before,
#mainimg-box h2::after {
	content: "";
	position: absolute;
	width: 20px;
	height: 50px;
	border: 1px solid var(--base-inverse-color);

}
#mainimg-box h2::before {
	top: 0px;
	left: 0px;
	border-right: none;
	border-bottom: none;
}
#mainimg-box h2::after {
	bottom: 0px;
	right: 0px;
	border-left: none;
	border-top: none;
}

#mainimg {
	width:100%;
	overflow-x: hidden;
	position: relative;
	background: linear-gradient(transparent 20%, var(--primary-color) 20%);
	color: var(--primary-inverse-color);
}

#mainimg .img {
	display: flex;
}
#mainimg .img img {
	padding: 0 1vw;
}
#mainimg .slider-container + p.caveat {
	padding: 2rem;
	font-size: 1rem;
	text-align:center;
}
.caveat {
	font-family: "Caveat", cursive;
	font-optical-sizing: auto;
	font-weight: normal;
	font-style: normal;
}
#mainimg .rtl, #mainimg .ltr {
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}
#mainimg .rtl {animation-name: slide-rtl;}
#mainimg .ltr {animation-name: slide-ltr;}
@keyframes slide-rtl {
	0% {transform: translateX(0);}
	100% {transform: translateX(-50%);}
}
@keyframes slide-ltr {
	0% {transform: translateX(-50%);}
	100% {transform: translateX(0);}
}

main {
	color:var(--base-inverse-color);
	flex: 1;
}
main section.bg1 {
	background: var(--primary-color);
	color: var(--primary-inverse-color);
}
main section .title {
	margin-bottom:25px;
	opacity: 0;
	transform: translate(0, 50%);
	transition: 3s;
	text-align:center;
}
main section .title.is-show {
	transform: translate(0, 0);
	opacity: 1;
}
main section .title h2 {
	font-weight: 700;
	font-size: 2.5rem;
	margin-bottom:0;

}
main section.bg1 .title h2 {
	color: var(--primary-inverse-color);
}
main section .title p {
	color:#666;
	margin-top:0;
	text-align:center;
}

main section.bg title p {
	color:#eee;
}

main span.color-primary {
	color: var(--primary-color);
}

main section .sub_title h3 {
	text-align:center;
	font-size:1.7rem;
	margin-bottom:0.5rem;
}
main section .sub_title h3:after {
	content:'';
	display:block;
	width:30%;
	height:2px;
	background-color:var(--primary-color);
	margin:0 auto;
}
main section .sub_title p {
	color:#666;
	text-align:center;
	margin-top:0;
}

.btn5-container {
	position: relative;
	margin-top: 5rem;
	opacity: 0;
	transform: translate(0, 50%);
	transition: 1.5s;
	text-align:center;
}
.btn5-container.is-show {
	transform: translate(0, 0);
	opacity: 1;
}
a.btn5 {
	text-decoration: none;display: inline-block;
	background: linear-gradient(#f24137, var(--primary-color));
	color: #fff;
	padding: 0.5rem 3rem;
	font-size: 1.2rem;
	border-radius: 5px;
}
a.btn5:hover {
	transform: scale(1.02);
}
.btn5-container .fukidasi {
	font-size:0.8rem;
	background: #fff;
	border: 2px solid var(--primary-color);
	padding: 0.2rem 0.8rem;
	border-radius: 80px;
	position: absolute;
	top: -30px;
    left: 50%;
    transform: translateX(-50%);
	box-shadow: 0px 3px 10px rgba(0,0,0,0.2);
	animation: jump1 2s infinite;
}
.btn5-container .fukidasi::before {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(315deg);
    width: 10px;
    height: 10px;
    background: #fff;
    border-left: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}
.btn5.border-radius {
	border-radius: 20px;
}

.list-grid .list * {margin: 0;padding: 0;}
.list-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}

.list-grid .list {
    display: grid;
	position: relative;
    grid-template-rows: auto 1fr;
	overflow: hidden;
}

.list-grid figure {
	aspect-ratio: 1;
	overflow:hidden;
}
.list-grid figure a {
	display:block;
	width:100%;
	height:100%;
	display: flex;
	justify-content: center;
	align-items: center;
	border:solid 1px #eee;
}
.list-grid figure a img {
	margin: auto !important;
    display: block;
}
.list-grid .list h4 {
	font-size:0.9rem;
	line-height:1.2;
	margin-top:0.5rem;
}
.list-grid .list p {
	font-size: 0.7rem;
	line-height: 1.5;
	color:#666;
}

.list-grid .icon-bg1,
.list-grid .icon-bg2,
.list-grid .icon-bg3 {
	font-family: "Roboto", sans-serif;
	font-weight: 600;
	overflow: hidden;
	position: absolute;
	left: 0px;
	top: 0px;
	font-size: 0.85rem;
	width: 7rem;
	padding-top: 2rem;
	text-align: center;
	transform: rotate(-45deg) translate(-1.2rem,-3rem);
	box-shadow: 0px 5px #fff;
}
.list-grid .icon-bg1 {
	background: #ff3535; color: #fff;
}
.list-grid .icon-bg2 {
	background: #1c31ff; color: #fff;
}
.list-grid .icon-bg3 {
	background: var(--primary-color); color: #fff;
}

.bg-slideup {
    /* background-image: url("../images/moveup.jpg"); */
    /*background-image: url("../images/universal_studios.gif"); */
    background-repeat: no-repeat;
    background-size: cover;
	width: 100%;
	height: 50vh;
	border-radius: 0px 15vw 0px 15vw;
	margin-top:2rem;
	position: relative;
}
.bg-slideup video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0px 15vw 0px 15vw;
}

footer * {margin: 0;padding: 0;}
footer ul {list-style: none;}

footer {
	background: #222;
	color: #ccc;
}
footer .logo {
	width: 300px;
}
footer .copyright {
	font-size:0.6rem;
	text-align:center;
	padding-bottom:0.5rem;
}
footer div.footer1 {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding:1rem;
	color:#fff;
	display: none;
}

#menubar_hdr {
	display: none;
	position: fixed;
	z-index: 101;
	cursor: pointer;
	right: 0px;
	top: 0px;
	width: 70px;
	height: 70px;
	background: #0e211f;
	transform-origin: right top;
	transform: scale(1);
}
#menubar_hdr.ham {
	background: #ff0000;
}
#menubar_hdr span {
	display: block;
	position: absolute;
	left: 18px;
	width: 35px;
	height: 2px;
	background: #fff;
	transition: 0.3s;
}
#menubar_hdr span:nth-of-type(1) {
	top: 24px;
}
#menubar_hdr span:nth-of-type(2) {
	top: 34px;
}
#menubar_hdr span:nth-of-type(3) {
	top: 44px;
}
#menubar_hdr.ham span:nth-of-type(1) {
	transform: translateY(10px) rotate(-45deg);
}
#menubar_hdr.ham span:nth-of-type(2) {
	opacity: 0;
}
#menubar_hdr.ham span:nth-of-type(3) {
	transform: translateY(-10px) rotate(45deg);
}

.small-screen #menubar_hdr {
	display: flex;
}
.small-screen #menubar {
	animation: animation1 0.2s both;
	position: fixed;overflow: auto;z-index: 100;
	right: 0px;top: 0px;
	width: 100%;
	height: 100%;
	padding: 100px var(--content-space) 50px;
	background: var(--primary-color);
	color: var(--primary-inverse-color);
}

.small-screen #menubar {display: none;}
.small-screen #menubar a {
	display: block;text-decoration: none;
	color: inherit;
	border: 1px solid #fff;
	margin-bottom: 1rem;
	padding: 1rem 2rem;
}
.small-screen #menubar a:hover {
	background-color:#fff;
	color: #333;
}
.small-screen #menubar ul ul a {
	border: none;
	padding: 1rem;
    margin-left: 2rem;
}

a.ddmenu::before {
	font-family: "Font Awesome 6 Free";
	font-weight: bold;
	content: "\f078";
	margin-right: 0.3em;
	transform: scale(0.7);
	display: inline-block;
}
a.ddmenu {cursor: default;}

#kazari1 {
	position: absolute;
	z-index: -1;
	left: 0;
	top: 0;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-miterlimit: 10;
	stroke: #fff;
	stroke-width: 30;
	width: 100%;
}

.bg1 {
	background: var(--primary-color);
	color: var(--primary-inverse-color);
}

pre {white-space: pre-wrap;word-wrap: break-word;overflow-wrap: break-word;}
.clearfix::after {content: "";display: block;clear: both;}
.color-check, .color-check a {color: #ff0000 !important;}
.l {text-align: left !important;}
.r {text-align: right !important;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.small {font-size: 0.75em;}
.large {font-size: 2em; letter-spacing: 0.1em;}
.pc {display: none;}
.dn {display: none !important;}
.block {display: block !important;}

.sepa_line {
	max-width:500px;
	margin:2rem 1rem;
	display:block;
	background:url(../images/line_4.png) center center no-repeat;
	min-width:300px;
	height:60px;
	background-size: contain;
}

/* ------ About Us ------- */
#about .about-hero .left {
  opacity: 0;
  transform: translate(-50%, 0);
  transition: 2s;
  background-color:var(--primary-color);
  postion:relative;
  padding:1rem;
  margin-left:1rem;
  margin-bottom:1rem;
}
#about .about-hero .left:after {
	display:block;
	content:'';
	width:100%;
	height:100%;
	border:solid 1px var(--primary-color);
	position:absolute;
	z-index:-1;
	right:1rem;
	top:1rem;
}
#about .about-hero .left.is-show {
  transform: translate(0, 0);
  opacity: 1;
}
#about .about-hero .left p {
	margin:0;
	font-size:1.3rem;
	font-weight:500;
	line-height:1.3;
	color:#fff;
}
#about .about-hero .right {
	opacity: 0;
	transform: translate(0, 0);
	transition: 3s;
	margin-top:2.5rem;
}
#about .about-hero .right.is-show {
	transform: translate(0, 0);
	opacity: 1;
}
#about .about-hero .right p {
	font-size:0.8rem;
	margin-bottom:1rem;
	line-height:1.2;
}
#about .about-hero .right p:last-child {
	margin-bottom:0;
}

/* ------ Possibility ------- */
section#possibility {
	padding:0;
}
#possibility ul.introduction{
	list-style:none;
}

#possibility ul.introduction li h3 {
	margin:0;
	padding:1rem 0.8rem;
	background: var(--primary-color);
	color:#fff;
	width:100%;
}

#possibility ul.introduction li {
	width:93%;
}
#possibility ul.introduction li p {
	padding:0 1rem;
	line-height:1.3rem;
	font-size:0.8rem;
}

#possibility ul.introduction li:nth-child(odd) {
  	opacity: 0;
  	transform: translate(-50%, 0);
  	transition: 1.5s;
}
#possibility ul.introduction li:nth-child(even) {
	margin-left:10%;
  	opacity: 0;
  	transform: translate(50%, 0);
  	transition: 1.5s;
}
#possibility ul.introduction li.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

/* ----- Archivements ----- */
#archivements {
}
#archivements .item-lists {
	margin: 0 1rem;
	position:relative;
}
#archivements .item-lists .gift_box {
	position: relative;
	width: 220px;
	height: 220px;
	border-radius: 50% 0 0 0;
	-webkit-mask-image: radial-gradient(rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
	mask-image: radial-gradient(rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 100%);
	z-index:-1;
	position:absolute;
	right:0;
	bottom:0;
}
#archivements .item-lists .gift_box img {
	border-radius: 110px 0 0;
	mask-image: linear-gradient(140deg, transparent 0%, black 100%);
	-webkit-mask-image: linear-gradient(140deg, transparent 0%, black 100%);
}
/*
#archivements .item-lists:after {
	display:block;
	content:'';
	background: linear-gradient(90deg, #fff 0,rgba(255,255,255,0) 50%),  url(../images/box.jpg) 30%;
    background-repeat: no-repeat;
    background-position: right bottom;
	background-size: contain;
	position:absolute;
	right:0;
	bottom:0;
	width:120px;
	height:120px;
	z-index:-1;
}
*/
#archivements .item-lists ul {
	list-style:none;
}
#archivements .item-lists ul li {
	line-height:1.3;
	font-size:0.9rem;
}
#archivements .item-lists ul li:before {
	display:inline-block;
	content: "\f521";
	width:20px;
	height:20px;
	color:#dcdcdc;
	font-family: FontAwesome;
	margin-right:10px;
}
#archivements .item-lists ul li.gold:before{
	color:#b39855;
}
#archivements .item-lists ul li.silver:before {
	color:#a9a9a9;
}
#archivements .item-lists ul li.normal:before {
	color:#ffb6c1;
}

#archivements .item-lists ul li small {
	display:none;
}

/* ----- FAQ ----- */
#faq dl dt {
	cursor:pointer;
	background: var(--primary-color);
	color:#fff;
	padding:1rem 0.5rem;
	vertical-align: middle;
	position:relative;
}

#faq dl dt:after {
	position:absolute;
	right:10px;
	bottom:10px;
	display:block;
	content: "";
	height: 30px;
	width: 30px;
	background-color:#fff;
	clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

#faq dl dt:before {
    content: '';
    display: inline-block;
    margin-right: 0.5rem;
    background: url(../images/icons/question-mark.png) center center;
    width: 2rem;
    height: 2rem;
    background-size: contain;
    vertical-align: middle;
	
}
#faq dl dt:not(:first-child) {
	margin-top:1rem;
}
#faq dl dd {
	display:none;
	font-size:0.8rem;
	line-height:1.3;
	border:solid 1px #666;
	border-top:none;
	padding:1rem;
}

#contact {
	padding-bottom:3rem;
	padding-top:0.1rem;
	min-height: 100vh;
}
#contact .title p {
	color:#eee;
}
#contact h4 {
	font-size:1.2rem;
}


#contact ul {
	list-style:none;
}
#contact ul li {
	line-height:1.4;
	font-size:0.9rem;
}
#contact ul li:before {
	display:inline-block;
	content:"\f00c";
	width:20px;
	height:20px;
	font-family: FontAwesome;
	margin-right:0.5rem;
}
#contact .message {
	line-height:1.2;
	font-size:0.8rem;
	margin-top:1.7rem;
}
#contact .right {
}
#contact .right a {
	display:flex;
	background:#fff;
	border:solid 3px #06C755;
	padding:1rem;
	margin-top:2rem;
}
#contact .line img{
	width:50px;
	height:50px;
	display:block;
}
#contact .right .fukidashi {
	margin-left:1rem;
	color:#06C755;
	line-height:1.3;
}
#contact .right .image_box {
	position:relative;

}
#contact .right .image_box img{
	display: block;
	position:absolute;
	bottom:0;
	right:0;
    color: #fff;
    background-color: #fff;
    box-shadow: 0px 0px 20px 21px #fff;
    margin: 40px 30px;
    border-radius: 75px;
    width: 150px;
}

.line_alert {
	position:fixed;
	right: 1rem;
	bottom: 1.5rem;
	left:auto;
	display:none;
	text-decoration:none;
}
.line_alert.is-show {
	display:flex;
}
.line_alert .fuki {
	background-color:#fff;
	border:solid 2px #06C755;
	border-radius:5px;
	color:#06C755;
	padding: 5px;
	font-size:0.7rem;
}
.line_alert .icon {
	padding:5px;
	margin-left:1rem;
	width:60px;
	height:60px;
}
.line_alert .icon img{
	width:100%;
	height:100%;
	display:block;
}
@media screen and (min-width:900px) {
	footer div.footer1 {
		display:flex;
	}
	.ws {width: 48%;display: inline;}
	.sh {display: none;}
	.pc {display: block;}
	.small-screen #menubar  {
		width: 400px;
		border-right:solid 5px #777;
		padding: 80px 30px 50px;
	}
	
	#mainimg .img img {
	    max-width: 200px;
	}
	#mainimg-box h2 {
		font-size:3vw;
	}
	section {
		padding: 2rem;
	}
	
	.sepa_line {
		width:500px;
		margin: 3rem auto;
	}
	
	/* ------ About Us ------- */
	#about {
		padding-top:0;
	}
	#about .about-hero {
		display:flex;
		
	}
	#about .about-hero .left {
		width:40%;
		padding:2.5rem;
	}
	#about .about-hero .left:after {
		right:1.5rem;
		top:1.5rem;
	}
	#about .about-hero .right {
		width:60%;
		padding-left:2rem;
		margin-top:0;
	}
	#about .about-hero .left p {
		margin-bottom:1rem;
		line-height:1.5;
		margin-top: 0;
	}
	#possibility {
		padding-bottom:4rem;
	}
	#possibility ul.introduction li {
		width:70%;
	}
	#possibility ul.introduction li:nth-child(even) {
		margin-left:30%;
	}
	#about .about-hero .right p {
		font-size:1rem;
		margin-bottom:1rem;
		line-height:1.4;
		margin-top: 0;
	}
	
	.list-grid .list h4 {
		text-align:center;
	}
	.list-grid .list p {
		margin-top:0.5rem;
	}
	
	section#possibility .introduction {
		max-width:900px;
		margin:0 auto;
	}
	#possibility ul.introduction li p {
		font-size:1.1rem;
		padding:0;
	}
	
	section#possibility #archivements {
		display:flex;
		margin-top:3rem;
		opacity: 0;
		transform: translate(0, 50%);
		transition: 2s;
		margin-top:6rem;
	}
	section#possibility #archivements.is-show {
		transform: translate(0, 0);
		opacity: 1;
	}
	
	section#possibility #archivements .sub_title {
		width: 40%;
		background-color: var(--primary-color);
	}
	section#possibility #archivements .sub_title h3 {
		color: #fff;
	}
	section#possibility #archivements .sub_title p {
		color: #444;
	}
	section#possibility #archivements .item-lists {
		width: 60%;
		padding:1rem;
		border-top: solid 4px var(--primary-color);
		border-bottom: solid 4px var(--primary-color);
	}
	#archivements .item-lists ul li {
		line-height:1.6;
	}
	#contact {
		min-height:auto;
	}
	#contact .d-flex{
		display:flex;
		align-items:flex-end;
		justify-content: center;
		max-width:100%;
		margin:0 auto;
	}
	#contact .d-flex .left {
		width:450px;
	}
	#contact h4 {
		font-size:1.4rem;
		margin-top:0;
	}
	#contact .d-flex .right{
		width:350px;
		margin-left:1rem;
	}
	.flex-container {
/*
		display:flex;
		justify-content: center;
*/
		margin-top:4rem;
	}
	.list-grid {
		gap: 2rem;
		grid-template-columns: repeat(3, 1fr);
	}
	#livers {
		max-width: 890px;
		margin:0 auto;
	}
	.bg-slideup {
		min-width: 500px;
		max-height: 100%;
		height:100%;
        min-height: 400px;
        max-width:1200px;
        width:100%;
        margin:0 auto;
	}
	
	#faq {
		max-width:900px;
		margin-left:auto;
		margin-right:auto;
	}
	#faq dl dt {
		font-size:1.2rem;
	}
	#faq dl dd {
		font-size:1.1rem;
	}
	.sepa_line {
		max-width:900px;
		height:100px;
	}
	#mainimg .slider-container {
        max-width: 900px;
        /* width: 900px; */
        margin: 0 auto;
        overflow: hidden;
	}
}