/* 共通スタイル */
*,*::before,*::after {
    box-sizing: border-box;
    text-align: center;
	font-size: 20px;
	color: #425b6d;
	font-family: "Kiwi Maru", serif;
	font-weight: 400;
	font-style: normal;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f4f4f9;
}

header, footer {
    color: #fff;
    text-align: center;
    position: relative;
    padding: 1rem;
    padding-top: 2rem;
    overflow: hidden;
	border-bottom: solid 32px #BD9F66;
}

header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 32px; 
    background: repeating-linear-gradient(
        90deg, 
        #fff,
        #fff 10px,
        #82B4B5 10px,
        #82B4B5 20px
    );
}

#topLogo{
	width: 540px;
	height: auto;
	margin: 52px auto;
}


h2 {
    text-align: center;
	position: relative;
	font-size: 30px;
	display: inline-block;
}

section{
	padding: 52px;
}

h2::before{
	content: url("img/umbBar.png");
	position: absolute;
	top: -36px;
	right: -100px;
	bottom: 0;
	margin: auto;
	transform: scale(-0.5,0.5);
}
h2::after{
	content: url("img/umbBar.png");
	position: absolute;
	left: -100px;
	bottom: -32px;
	margin: auto;
	transform: scale(0.5,-0.5);
}

h1 {
    text-align: center;
    color: #ffffff;
}

.container {
    width: 90%;
    margin: 2rem auto;
    max-width: 1200px;
}


img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
	width: auto;
}

button {
    background: #BD9F66;
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    cursor: pointer;
}

.flex{
	display: flex;
	justify-content: center;
}

.flex img{
	margin: 0;
}
.flex p{
	padding: 0 32px;
}
.flexText{
	flex-flow: column;
}

button:hover {
    background: #82B4B5;
}

footer {
    margin: 0;
    font-size: 0.9rem;
	border: 0;
	background-color: #BD9F66;
	z-index: -1;
}
footer p{
	color: #FFFFFF !important;
}

.comic ,#info{
	background-color: rgba(130,180,181,0.1);
	
}
.comicText{
	align-items: center;
	justify-content: center;
}
.comic-frame{
	padding: 52px;
}

#xlogo{
	height: 40px;
	width: auto;
}
#instalogo{
	height: 40px;
	width: auto;
}
.menuImg{
	margin-top: 24px;
}
.logoflex{
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0;
}
.logoflex p{
	padding-left: 10px !important;
}




@media (max-width: 870px) {
	#concept{
		flex-direction: column;
	}
	#concept img{
		width: 300px;
		margin: 0 auto;
	}
	section{
		padding: 52px 8px;
	}
	.logowrap{
		display: flex;
		flex-flow: column;
	}
	.logoflex p{
		padding-left: 32px !important;
	}
	header{
		padding: 1rem 2rem !important;
	}
}
.rainning {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	z-index: -1;
}

.rain {
	position: absolute;
	width: 1px;
	height: 100%;
	top: 0;
	left: 50%;
	overflow: hidden;
}
.rain::after {
	content: "";
	display: block;
	position: absolute;
	height: 20vh;
	width: 100%;
	top: -50%;
	left: 0;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #82B4B5 80%, #82B4B5 100%);
	animation: drop 2.8s 0s infinite;
	animation-fill-mode: forwards;
	opacity: .6;
}
.rain:nth-child(1) {
	margin-left: -40%;
}
.rain:nth-child(1)::after {
	animation-delay: 1.2s;
}
.rain:nth-child(2) {
	margin-left: -30%;
}
.rain:nth-child(2)::after {
	animation-delay: 2.5s;
}
.rain:nth-child(3) {
	margin-left: -20%;
}
.rain:nth-child(3)::after {
	animation-delay: .6s;
}
.rain:nth-child(4) {
	margin-left: -10%;
}
.rain:nth-child(4)::after {
	animation-delay: 2.3s;
}
.rain:nth-child(5) {
	margin-left: 0%;
}
.rain:nth-child(5)::after {
	animation-delay: 1s;
}
.rain:nth-child(6) {
	margin-left: 10%;
}
.rain:nth-child(6)::after {
	animation-delay: .3s;
}
.rain:nth-child(7) {
	margin-left: 20%;
}
.rain:nth-child(7)::after {
	animation-delay: 2.6s;
}
.rain:nth-child(8) {
	margin-left: 30%;
}
.rain:nth-child(8)::after {
	animation-delay: 1.9s;
}
.rain:nth-child(9) {
	margin-left: 40%;
}
.rain:nth-child(9)::after {
	animation-delay: .7s;
}

@keyframes drop {
  0% {
    top: -50%;
  }
  100% {
    top: 150%;
  }
}