@charset "UTF-8";
/* CSS Document */
*,*::before,
*::after{
	box-sizing: border-box;
}

html {
	font-size: 62.5%;
}

body {
	width: 100%;
	background-image: url("../img/background.png");
	background-repeat: repeat;
	font-size: 16px;
	text-align: center;
	line-height: 1.7;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	/*font-family: 'Zen Maru Gothic', sans-serif;*/
}

main{
	margin: 0 10%;
	background: #FFFFFF;
}

.brand-info{
	padding-top: 130px;
	margin: 0 10%;
	background: #FFFFFF;
}

.brand-info p{
	padding: 0 20%;
}

.neko2{
	margin-top: -160px;
}

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

.icon{
	margin-left: 20%;
	padding-top: 1%;
	align-content: left;
}

.description{
	align-content: right;
	width: 40%;
	margin-right: 20%;
}

p{
	text-align: left;
}

.small {
	font-size: 50%;
	font-weight: bold;
	text-align: left;
}

.description h3 {
  position: relative;
  display: inline-block;
  margin-bottom: 1em;
}

.description h3:before {
  content: '';
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 60px;
  height: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #3E3A39;
  border-radius: 2px;
}

footer{
    border-top: solid 5px #9F2936;
	background: #FFFFFF;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 20px;
	mairgin-bottom: -10px;
}

.item{
	margin-left: 10%;
}

.item-description{
	margin-right: 10%;
	width: 50%;
}

.point-red{
	display: block;
	background-color: #9F2936;
	border-radius: 10px;
	padding: 10px;
	color:#FFF;
	font-weight: 800;
	font-size: 18px;
	text-align: center;
}

.point-blue{
	display: block;
	background-color: #0E2B49;
	border-radius: 10px;
	padding: 10px;
	color:#FFF;
	font-weight: 800;
	font-size: 18px;
	text-align: center;
}

.point-green{
	display: block;
	background-color: #205F40;
	border-radius: 10px;
	padding: 10px;
	color:#FFF;
	font-weight: 800;
	font-size: 18px;
	text-align: center;
}

.ac-cont {
	text-align: left;
}

 .ac-content .ac-cont table {
    border: 1px solid #000000;
    border-collapse: collapse;
	width: 95%;
}

 .ac-content .ac-cont td{
    border: 1px solid #000000;
    text-align: center;
    padding: 10px;
}

 .ac-content .ac-cont th{
    border: 1px solid #000000;
	font-style: #fff;
    padding: 10px;
    line-height: 20px;
}

 .accordion input {
  display: none;
}

 .accordion img{
	display: block;
	margin-right: auto;
	margin-left: auto;
	cursor: pointer;
	text-align: center;
}

 .accordion label:hover {
	background-color: #29abe2;
	color: #FFF;
}

 .accordion .ac-cont {
	transition: 0.2s;
	height: 0;
	overflow: hidden;
}
 .accordion input:checked + .ac-cont {
  height: auto;
}


/*-------------------------------------*/
.js-header-inner{
	animation-name:anima-1;
	animation-duration: 5s;
    animation-fill-mode: both;

}

.anima-1 {
	animation-name:anima-1;
	animation-duration: 5s;
    animation-fill-mode: both
}

@keyframes anima-1 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


.js-header-site-menu {
	width: 100%;
	display: flex;
	background: #fff;
	align-items: center;
	position: fixed;
	z-index: 300;
	border-bottom: solid 5px #9F2936;
	box-shadow: 0 0 10px rgb(0,0,0,.5);
	transition: all 0.3s;
	padding: 10px 0;
	
}

.js-header-site-menu img {
	padding: 10px;
	margin: 0 15px;
}

.js-header-site-menu.change-color {
	background-color: #554135;
	box-shadow: 0 0 5px 0 #eee;
}

.none {
	text-transform: none;
}

.header-h1 {
	margin: 0 auto;
	padding-top: 100px;
}

.site-menu-a {
	display: block;
}

.site-menu-ul{
	list-style: none;
	display: flex;
	padding: 0;
	}

.site-menu-list{
	font-size: 1.5rem;
	font-weight: 800;
	text-align: center;
	text-transform: uppercase;
	margin: auto 20px;
}

.site-menu-ul a {
	position: relative;
	color: #000;
	text-decoration: none;
}

.site-menu-a:hover {
	color: #fcd7a1;
	transition: 0.3s;
}

/*-----------------------------------*/


/* オープン時にアニメーションを設定 */
details[open] .table01,.table02,.tableP{
  animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
  0% {
    opacity: 0; /* 透明 */
    transform: translateY(-10px); /* 上から表示 */
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

/*---------------------------------------*/

.another-link {
	color: #4F96F4;
	transition: 0.3s;
	margin-top: 100px;

}

.another-link:hover {
	text-decoration: underline;
}

/*---------------------------TOPに戻るボタン*/

.top-button {
	max-width: 1024px;
	font-size: 2rem;
	line-height: 1.5;
	background: #000;
	color: #fff;
	border-radius: 50px;
	margin: 150px auto 50px;
	padding: 10px;
	
}

.top-button:hover{
	background: #fff;
	color: #000;
	border:solid 2px;
	transition: 0.3s;
}

/*----------------------------------footer*/


.yeaster-link {
	color: #4F96F4;
	transition: 0.3s;
}

.yeaster-link:hover {
	text-decoration: underline;
}


/*ipad-------------------------------------*/

	
@media only screen and (max-width:1024px) {

	
	.pc {
		display: none;
	}
	
	.ipad {
		display: block;
	}
	
	.site-menu-list {
		font-size: 1.2rem;
	}
	
	.main-view-ipad {
		width: 100%;
		padding-top: 90px;
	}
	
	.main-view-ipad img {
		width: 100%;
	}
	
	body {
		background-size:contain;
	}
	
	
	
	h2.inner-text-title {
		font-size: 5rem;
	}
	
	.explanation-subtitle {
		font-size: 2rem;
	}
	
	
	
	.nav {
		font-size: 1.2rem;
	}
	
	p {
		font-size: 1.6rem;
	}
	
	.inner-button {
		width: 100%;
	}
	
	.green-box,
	.orange-box {
		padding: 50px;
	}
	
	
	.top-section-img-box {
		width: 80%;
		margin: auto;
	}
	
	.top-section,
	.second-section{
		margin-top: 0;
	}
	
	.second-section-img {
		width: 20%;
	}
	
	.inner-text-content {
		width: 55%;
		padding: 10px;
	}
	
	.ipad-left {
		text-align: left;
	}
	
	.top-button {
		width: 80%;
	}
	
	.lineup-content-box {
		display: block;
	}
	
	.lineup-content {
		width: 80%;
		margin: auto;
	}
	
	.lineup-content:first-child {
		margin-bottom: 70px;
	}
	
	.green-Label,
	.orange-Label{
		font-size: 2rem;
	}
}


/*--------------------------------------*/


/*sp-------------------------------------*/

@media only screen and (max-width:599px) {

	.js-header-site-menu img {
		width: 70px;
	}
	
	.js-header-site-menu {
		height: 59px;
		padding: 0;
	}
	
	.main-view {
		padding-top: 59px;
	}
	
	.main-view-sp {
		width: 100%;
	}
	
	.sp {
			display: block;
		}
	
	.ipad {
		display: none;
	}
	
	.pc {
		display: none;
	}
	
	
	
	p {
		font-size: 1.4rem;
	}
	
	.nav

	/*ハンバーガーメニュー------------------*/	
	
	.js-header-site-menu {
		justify-content: space-between;
	}
	
	.site-menu-ul{
		position: fixed;
		right: -100%;
		width: 100%;
		height: 70%;
		margin-left: auto;
		/* メニューを縦に */
		display: flex;
		flex-direction: column;
		color: #fff;
		background-color:rgba(255,255,255,0.85);
		transition: .3s;
		padding-top: 1rem;
	}
	
	.site-menu-list {
		width: 80%;
 		display: flex;		
		font-size: 1.2rem;
 		align-items: center;
		border-bottom:solid 3px #fff;
		margin: 20px auto;

	}
	
	.btn {
  		/* ボタンの配置位置  */
  		position: fixed;
		right: 28px;
		/* ボタンの大きさ  */
  		width: 30px;
  		height: 20px;
		background-color: #fff;
  		/* 最前面に */
  		z-index: 10;
	}
	
	.btn-line {
		display: block;
		position: relative;  /* バーガー線の位置基準として設定 */
		width: 100%;  /* 線の長さと高さ */
		height: 3px;
		background-color: #000;  /* バーガー線の色 */
		border-radius: 10px;
		transition: .3s;
	}
	
/****** 上下のバーガー線 *****/
	.btn-line::before {
	  	content: "";
	  	position: absolute;
	  	right: 0;
		width: 100%;
	  	height: 100%;
		border-radius: 10px;
	  	background-color: #000;
	  	transition: .3s;	
	}
	
	.btn-line::after {
		content: "";
	  	position: absolute;	
		width: 100%;
	  	height: 100%;
		border-radius: 10px;
		background-color: #000;
		right: 0;
	  	transition: .3s;	
	}
	.btn-line::before {
	  /* 上の線の位置 */
		transform: translateY(-9px);
	}
	.btn-line::after {
	  /* 下の線の位置 */
		transform: translateY(9px);
	}
		
	.site-menu-ul.open {
		height: 100%;
		width: 100%;
		right: 0;

	}
/*--------------------------------------*/
