@charset "UTF-8";
/* CSS Document */

html{
	font-size: 62.5%;/*16px*62.5%=10px*/
}


body{
	margin: 50px auto;
	margin-bottom: 0;
	max-width: 68%;
	letter-spacing: -0.08rem;
}

/*----------top----------*/



.header{
	height: auto;
}

.none{
	display: none;
}

.flexbox{
	display:flex;
	justify-content: space-between;
	width: 100%;
	margin: 0 auto;
}

.flexbox p,.flexbox a{
	font-size: 2.5rem;
	font-family: charlemagne-std , serif;
	font-weight: 1000;
	font-style:normal;
	color: #A1291D;
}
.box1{
	width: 30%;
	margin: 0 auto;
}

.logo{
	width: 100%;
}

.box2{
	display: flex;
	justify-content: space-around;
	width: 100%;
	padding-top: 30px;
}

.box2 li{
	margin: 0 20px;
	box-sizing: border-box;
}

.drawer-hidden {
  display: none;
}
.relative{
  position: relative;
}

.sp-none{
	display: none;
}

.online{
	position: absolute;
	width: 70%;
	top: 50%;
	left: 100%;
	transform: translate(40%,-50%);
	z-index: 100;
	clear: inherit!important;
}

/* .secretBox */
.max-margin{
	max-width: 1000px;
	margin: 0 auto;
	margin-top: 50px;
}

.banner{
	width: 60%;
	margin: 0 auto;
	margin-top: 20px;
}

.sp-none{
	display: none;
}

.secretBox {
	margin-bottom:44px;
	
}
.secretBox .mtxt {
	text-align:center;
	line-height:1.95;
	padding-bottom:58px;
}
.secretBox .img {
}

.flex{
	display: flex;
	width: 100%;
	justify-content: space-around;
}

.secretBox .img dd {
	padding:35px 0 0 35px;
}
.secretBox .img2 {
}
.secretBox .img2 dd {
	padding:35px 0 0 12px;
}

/* .secretBox2 */
.secretBox2 {
	width:747px;
	height:257px;
	margin:0 auto 67px auto;
	clear:both;
	background:url(../img/secret/bg.jpg) no-repeat left top;
}
.secretBox2 .title {
	padding:41px 0 0 46px;
}
.secretBox2 .txt {
	padding:20px 0 0 46px;
}

/* .secretBox3 */
.secretBox3 {
	width:860px;
	margin:0 auto;
}
.secretBox3 .inner {
	margin-bottom:80px;
}
.secretBox3 .tit {
	padding:6px 0 22px 0;
	width:280px;
	float:right;
}
.secretBox3 .txt {
	width:280px;
	float:right;
	margin-bottom:15px;
}
.secretBox3 .tit2 {
	padding:6px 0 22px 0;
}
.secretBox3 .txt2 {
	width:290px;
	margin-bottom:15px;
}
.secretBox3 .icoList {
	width:280px;
}
.secretBox3 .icoList li {
	width:33px;
	float:left;
	text-align:center;
	color:#46210c;
	padding:0 10px 0 0;
}
.secretBox3 .icoList li img {
	margin-bottom:2px;
}

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

.footer{
	margin: 0 auto;
	padding: 20px 20px 20px 0;
	box-sizing: border-box;
	width: 100%;
	background-color: #433730;
	display: block;
	text-align: center;
}

.copyrights{
    text-align: right;
	font-size: 2rem;
	color: #ffffff;
}

.copyrights-sp{
	display: none;
}


@media screen and (max-width:768px){
	
	body{
		margin: 0 10px;
	}
	
	.header{

	}
	
	.flexbox{
		display: block;
		margin: 0;
	}
	
.flexbox p,.flexbox a{
	font-size: 8vw;
	font-family: charlemagne-std , serif;
	font-weight: 1000;
	font-style:normal;
	color: #A1291D;
}

.sp-none{
	display: initial;
}
.pc-none{
	display: none;
}

	.online{
	position: absolute;
	width: 55%;
	top: 50%;
	left: -90%;
	transform: translate(40%,-50%);
	z-index: 100;
	clear: inherit!important;
	}
	
	.box2{
	display: block;
	position: absolute;
	text-align: center;
    z-index: 10;  
    box-sizing: border-box; 
    width:100%;
    height: 100%;
    padding: 50px 0 0;
	font-size: 4vh;
}

.box2 li{
	margin: 0 60px;
	padding: 30px;	
	box-sizing: border-box;
}
/* チェックボックスは非表示に */
.drawer-hidden {
  display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer-open {
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  position: relative;
  position: absolute;
  top:10px;
  right:12px;
  z-index: 10000;/* 重なり順を一番上に */
  cursor: pointer;
  
}

/* ハンバーガーメニューのアイコン */
.drawer-open span,
.drawer-open span:before,
.drawer-open span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #A1291D;
  transition: 0.5s;
  position: absolute;
}

/* 三本線のうち一番上の棒の位置調整 */
.drawer-open span:before {
  bottom: 8px;
}

/* 三本線のうち一番下の棒の位置調整 */
.drawer-open span:after {
  top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer-check:checked ~ .drawer-open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer-check:checked ~ .drawer-open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#drawer-check:checked ~ .drawer-open span::after {
  top: 0;
  transform: rotate(-45deg);
}
  
/* メニューのデザイン*/
.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: -100%;/* メニューを画面の外に飛ばす */
  z-index: 1000;
  background-color: rgba(255,255,255,0.9);
  transition: 0.8s;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer-check:checked ~ .drawer-content {
  top: 0;/* メニューを画面に入れる */
}
	
	.box1{
		width: 40%;
		margin: 20px auto;
		margin-bottom: 0;
	}
	
.pc-none{
	display: none;
}

.sp-none{
	display: initial;
}

	.banner-sp{
	display: initial;
	width: 100%;
	margin: 0 auto;
	}	
	.banner-sp img{
		width: 100%;
	}

	
.secretBox {
	margin-bottom:44px;
	
}
.secretBox .mtxt {
	text-align:center;
	line-height:1.95;
	padding-bottom:58px;
	letter-spacing: -0.05rem;
}
.img2{
	padding: 20px 30px;
}

.flex{
	display: initial;
	width: 80%;
	margin: 10px;
}

.flex img{
	width: 100%;
	margin: 0 auto
}

.secretBox .img dd {
	padding:35px 0 0 35px;
}
.secretBox  {
}
.secretBox .img2 dd {
	padding:35px 0 0 12px;
}

/* .secretBox2 */
.secretBox2 {
	margin:0;
	clear:both;
	background:none;
	width: 100%;
}
.secretBox2 .title {
	padding:0;
}
.secretBox2 .txt {
	padding:0;
}

.original{
	text-align: center;
	color: #A1291D;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-weight: 800;
	letter-spacing: -0.05rem;
	font-size: 2rem;
	white-space: pre;
	margin-bottom: 10px;
}

.menu{
	text-align: center;
	color: #A1291D;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-weight: 800;
	letter-spacing: -0.05rem;
	font-size: 2rem;
	white-space: pre;
	margin-bottom: 10px;
		border-bottom: dotted 10px;
	padding: 10px;
}

/* .secretBox3 */
.secretBox3 {
	width:100%;
	margin:0 auto;
}
.secretBox3 .inner {
	margin-bottom:80px;
}
.secretBox3 .tit {
	padding:6px 0 22px 0;
	width:280px;
	float:left;
}
.secretBox3 .txt {
	width:280px;
	float:left;
	margin-bottom:15px;
}
.secretBox3 .tit2 {
	padding:6px 0 22px 0;
}

.secretBox3 .txt2 {
	width:290px;
	margin-bottom:15px;
}
.secretBox3 .icoList {
	width:280px;
}
.secretBox3 .icoList li {
	width:33px;
	float:left;
	text-align:center;
	color:#46210c;
	padding:0 10px 0 0;
}
.secretBox3 .icoList li img {
	width: 100%;
	margin-bottom:2px;
}

.right{
	float: left;
}

.width img{
	width: 100%;
}
.footer{
	margin: 0 auto;
	padding: 10px 0px 10px 0;
	box-sizing: border-box;
	width: 100%;
	height: 20vw;
	background-color: #433730;
	text-align: center;
}

.copyrights{
    text-align: center;
	font-size: 5vw;
	color: #ffffff;
}

.copyrights-sp{
	display: initial;
}


}

