@charset "utf-8";

/*行の高さをフォントサイズと同じにしています*/
body {
    line-height:180%;
	font-size:16px;
	color: #4D4D4D;
	/*min-width: 480px;*/
	background: #fff;
font-family: kozuka-gothic-pro, sans-serif;
font-weight: 400;
font-style: normal;
}


.snone,.none{
	display: none;
}

/* スクロールの幅の設定 */
html::-webkit-scrollbar {
width: 15px;
height: 10px;
}

/* スクロールの背景の設定 */
html::-webkit-scrollbar-track {
border-radius: 5px;
box-shadow: 0 0 4px #FFEFBF inset;
}

/* スクロールのつまみ部分の設定 */
html::-webkit-scrollbar-thumb {
border-radius: 5px;
background:  #D8720E;
}

html { scroll-behavior: smooth;}

@media (max-width: 480px) {
   /* 横幅が1200px以下の場合に適用するスタイル */

img{
    max-width: 480px;
}
	
}


#page_up{
	position: fixed;
	right: 25px;
	bottom: 25px;
	z-index: 10;
}

#page_up a:hover{
	display: inline-block;
	   animation: hurueru .2s  infinite;
}


@keyframes hurueru {
    0% {transform: translate(0px, 0px) rotateZ(0deg)}
    25% {transform: translate(2px, 2px) rotateZ(1deg)}
    50% {transform: translate(0px, 2px) rotateZ(0deg)}
    75% {transform: translate(2px, 0px) rotateZ(-1deg)}
    100% {transform: translate(0px, 0px) rotateZ(0deg)}
}




/*********************************************************/


#pan{
    display: flex;
    /*width: 100%;
	max-width: 480px;*/
    margin: auto;
    padding-top: 15px;
    padding-bottom: 15px;
	padding-left: 15px;
}

#pan li a{
    text-decoration: none;
    color: #555;
}

#pan li a:hover{
    text-decoration: underline;
}

#pan li{
    color: #555;
}

ol#pan > li:before{
    content: "»";
    padding-right: 10px;
    padding-left: 10px;
}

ol#pan > li:first-child:before {
  content: none;
}

ol#pan br{
	display: none;
}

/**************************************************************************/

#up_btn{
	position: fixed;
	right: 25px;
	bottom: 25px;
	z-index: 9999;
}



/*************************************************/

.btns{
	width: 885px;
	margin: auto;
		position: relative;
    overflow: hidden;
}

@keyframes shiny {
    0% { left: -20%; }
    10% { left: 140%; }
    100% { left: 140%; }
}

header #top_btn::after,
.btns a::after {
    content: '';
    position: absolute;
    top: -10%;
    left: -20%;
    width: 40px;
    height: 100%;
    transform: scale(2) rotate(20deg);
    background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, .5) 100%, rgba(255, 255, 255, 0) 0%);
    
    /* アニメーション */
    animation-name: shiny;
    animation-duration: 3s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}


.line_btn{
	text-align: center;
}



.brackets{
	background-image: url("../img/brackets_left.svg") ,url("../img/brackets_right.svg");
	background-repeat: no-repeat;
	background-position: left top,right top;
	height: 20px;
}



/*******************************************/

#page_title{
	margin-bottom: 20px;
	text-align: center;
}

#page_title h1{
	width: 80%;
	margin: auto;
	border-top: 1px solid;
	text-align: center;
	padding-top: 30px;
	margin-bottom: 20px;
	font-size: 54px;
	color: #A67C52;
	font-family: acumin-variable, sans-serif; 
font-variation-settings: "slnt" 0, "wdth" 50, "wght" 600;
}

#page_title small{
	display: block;
	text-align: center;
	font-size: 15px;
	color: #A67C52;
	font-family: kozuka-gothic-pro, sans-serif;
font-weight: 500;
font-style: normal;
	margin-bottom: 20px;
}

#keyimg{
	width: 100%;
	max-width: 480px;
	text-align: center;
}

#keyimg img{
	width: 100%;
	height: auto;
}


header{
	max-width: 480px;
	margin: auto;
	padding-top: 10px;
}
header #headertitle,
header span.nbox{
	width: 60px;
}
header #headertitle,
header h1{
	width: 130px;	
	z-index: 100;
}

#header_rap{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}

/*#header_rap ul{
	width: 210px;
	text-align: center;
}*/

/*#header_rap ul li{
	margin-right: 25px;
}*/

/*#header_rap ul li:last-child{
	margin-right: 0;
}*/

#header_rap ul li a{
	font-size: 16px;
	padding-bottom: 10px;
font-family: source-han-sans-japanese, sans-serif;
font-weight: 700;
font-style: normal;
}

#header_rap ul li a:hover{
	color: #A67C52;
	background: url("../img/icon.svg") center bottom no-repeat;
	background-size:10px;
}

#header_rap ul li.contact a{
	background: #808080 url("../img/white-line.svg") right center no-repeat;
	background-size:21px;
	display: block;
	width: 210px;
	color: #fff;
	text-align: center;
	line-height: 30px;
	padding-bottom: 3px;
	padding-top: 3px;
	height: 30px;
	border-radius: 50vh;
}

#header_rap ul li.contact a:hover{
	background: #A67C52 url("../img/white-line.svg") right center no-repeat;
	background-size:21px;
}


/*******************************/


header .drawer-hidden {
  display: none;
}

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

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

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

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

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

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

header #drawer-check:checked ~ .drawer-open span::after {
  top: 0;
  transform: rotate(-45deg);
}



header nav{
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 100%;/* メニューを画面の外に飛ばす */
  z-index: 99;
  background: #fff;
  transition: .5s;
}

#drawer-check:checked ~ nav{
  bottom:0;/* メニューを画面に入れる */
}

header nav ul{
	width: 210px;
	text-align: center;
	margin: auto;
	margin-top: 100px;
}

header nav li{
	border: 1px solid #CCCCCC;
	padding-top: 10px;
	padding-bottom: 5px;
	margin-bottom: 15px;
}

#header_rap ul li.contact,
#header_rap ul li:last-child{
	border: none;
}




/*******************************/






.footer_btm{
	background: #F1F2EB;
	padding-top: 50px;
	padding-bottom: 50px;
}

.footer_btm ul{
	max-width: 480px;
	width: 100%;
	margin: auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.footer_btm ul li{
	width: 48%;
	/*width: 356px;
	height: 200px;*/
	transition:0.5s all;
	margin-bottom: 30px;
}

.footer_btm ul li.n01{
	background: url("../img/concept_btn.webp") no-repeat center center;
	background-size: 100%;
}

.footer_btm ul li.n02{
	background: url("../img/brand_btn.webp") no-repeat center center;
	background-size: 100%;
}

.footer_btm ul li.n03{
	background: url("../img/news_btn.webp") no-repeat center center;
	background-size: 100%;
}

.footer_btm ul li.n04{
	background: url("../img/company_btn.webp") no-repeat center center;
	background-size: 100%;
}

.footer_btm ul li.n05{
	background: url("../img/online_btn.webp") no-repeat center center;
	background-size: 100%;
}

.footer_btm ul li.n06{
	background: url("../img/contact_btn.webp") no-repeat center center;
	background-size: 100%;
}



.footer_btm ul li a{
	display: flex;
	align-items: center;
	height: 100px;
	text-align: center;
	justify-content: center;
}

.footer_btm ul li a span{
 background-color:rgba(255,255,255,0.8);
	font-size: 15px;
	width: 80%;
	height: 50px;
	line-height: 50px;
	transition:1s all;
}

.footer_btm ul li:hover a span{
	background: #000;
	color: #fff;
transition:0.5s all;
}

footer{
	max-width: 480px;
	width:100%;
	margin: auto;
	padding-top: 50px;
}

footer .footer_rap{
	display: flex;
	flex-direction: column;
	align-items: center;
}

footer .footer_adress{
	margin-bottom: 30px;
}

footer .footer_rap h3{
	width: 115px;
	margin-bottom: 10px;
}

footer .footer_rap dl{
	font-size: 15px;
font-family: source-han-sans-japanese, sans-serif;
font-weight: 400;
font-style: normal;
}

footer .footer_rap .box{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

footer .footer_rap .elimsonline{
	width: 260px;
}

footer .footer_rap .elimsonline a{
	display: block;
	margin-bottom: 30px;
}

footer .footer_rap .box ul{
	display: flex;
	justify-content: space-around;
	width: 360px;
}

footer .footer_rap .box ul li{
	/*width: 50%;*/
	margin-bottom: 15px;
	padding-left: 15px;
}

footer .footer_rap .box ul li a{
	background: url("../img/icon02.svg") left center no-repeat;
	background-size: 7px;
	padding-left: 12px;
	font-size: 15px;
}

footer .footer_rap .box ul li a:hover{
	text-decoration: underline;
}

footer small{
	display: block;
	text-align: center;
	padding-bottom: 25px;
	font-family: source-han-sans-japanese, sans-serif;
font-weight: 400;
font-style: normal;
}


footer .footer_rap .box ul .footer_brand a{
	margin-left: 15px;
	margin-right: 30px;
	color:rgb(166, 124, 82);
}
