@charset "utf-8";

/*行の高さをフォントサイズと同じにしています*/


body {
    line-height:180%;
	font-size:16px;
	min-width: 1200px;
font-family:'メイリオ', 'Meiryo', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', sans-serif;
font-weight: 500;
font-style: normal;
	cursor: default;
	letter-spacing: 0.1em;
	color: #000;
	background: #fff;
}

.pnone,
.none{
	display: none;
}


.en{
	font-family: "Jost",sans-serif;
}


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

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

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

html { scroll-behavior: smooth;}


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


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

#page_up a{
	position: relative;
	display: block;
	width: 70px;
	height: 70px;
}
#page_up a img{
	position: absolute;
}

#page_up a .icon01{
	right: 0;
	bottom: 10px;
	z-index: 3;
}

#page_up a .icon02{
	left: 15px;
	top: 10px;
	z-index: 2;
}

#page_up a .icon03{
	z-index: 1;
	left: 0;
	top: 0;
}
#page_up a:hover .icon01,
#page_up a:hover .icon03{
	animation: rotate-anime 1s linear infinite;
}




/*
#page_up a{
	transform: rotateZ( 0deg ) ;
	transition: .5s ;
	display: inline-block;
}

#page_up a:hover{
	transform: rotateZ( 360deg ) ;
}

*/


/*
.btn:hover{
	   animation: hurueru .5s  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)}
}
*/
/*拡大ボタン*/


.zbtn{
	transition: all  0.3s ease;
}

.zbtn:hover{
	transform: scale(1.05,1.05);
}

#pan{
    display: flex;
    width: 1070px;
    margin: auto;
    padding-top: 15px;
    padding-bottom: 15px;
	font-family: "メイリオ", Meiryo, "ＭＳ ゴシック", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ", "ProN W3", "sans-serif";
}

#pan li a{
    text-decoration: none;
    color: #555;
	font-size: 14px;
}

#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;
}

.s_btn a{
	position: relative;
	overflow: hidden;
}

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

.contactbtn a::after,
header #top_btn::after,
.s_btn 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;
}

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

header #header_rap{
	display: flex;
	justify-content: space-between;
	max-width: 1500px;
	margin: auto;
}

header #header_rap #pagelogo,
header #header_rap h1{
	padding-left: 35px;
	padding-top: 20px;
	padding-bottom: 15px;
}

header #nav_box{
	/*border-bottom: 5px solid #B20000;*/
	/*border-bottom: 5px solid #000;*/
	display: flex;
	align-items: flex-end;
	flex-grow:1;
	max-width: 1080px;
}

header #nav_box nav{
	width: 100%;
}

header #nav_box nav ul{
	display: flex;
	justify-content: center;
	align-items: end;
	padding-bottom: 15px;
}

/*header #nav_box nav ul li{
	border-right: 1px solid #000;
}*/

/*header #nav_box nav ul li:first-child{
	border-left: 1px solid #000;
}*/

header #nav_box nav ul li a{
	padding-left: 15px;
	padding-right: 15px;
	padding-bottom: 5px;
	position: relative;
}

header #nav_box nav ul li a::after {
position: absolute;
left: 0;
content: '';
width: 100%;
height: 2px;
/*background: #B20000;*/
background: #ddd;
bottom: -1px;
transform: scale(0, 1);
transform-origin: center top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
transition: transform 0.3s;   /*変形の時間*/
}

header #nav_box nav ul li a:hover::after {
transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
}

header #nav_box nav ul li.beauty{
	background: #ddd;
	border-radius: 10px;
	color: #878787;
	font-size: 14px;
	margin-left: 10px;
	margin-right: 10px;
}

header #nav_box nav ul li.beauty:hover{
	background: #000;
	color: #fff;
}

header #nav_box nav ul li.beauty a:hover::after  {
	display: none;
}


header #nav_box nav ul li.sns a img{
	width: 29px;
	height: auto;
}

header #nav_box nav ul li.sns a:hover::after  {
	display: none;
}


header #header_tell{
	padding-bottom: 15px;
}

header #header_tell a{
	/*background: #B20000;*/
	background: #000;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	height: 100%;
	width: 95px;
	text-align: center;
	color: #fff;
	font-size: 14px;
}

header #header_tell a:hover{
	background: #ddd;
}

header #header_tell a span{
	padding-bottom: 15px;
}

header #header_tell a span img{
	margin-bottom: 5px;
}

#keyimg{
	background: url("../img/keyimg.webp") center center no-repeat;
	background-size: cover;
}

#keyimg .keyimg_rap{
	max-width: 1200px;
	height: 320px;
	margin: auto;
	display: flex;
	align-items: center;
}

#keyimg .keyimg_rap h1{
	font-size: 30px;
	color: #fff;
	font-family: "MS 明朝", serif;
	text-shadow: 1px 1px 2px #000;
}

#footer_btns{
	display: flex;
	justify-content: center;
	height: 280px;
	background: #ddd;
	margin-bottom: 50px;
}

#footer_btns .box01{
	/*width : calc(100% / 2);*/
	width : calc(75% / 2);
	background: #ddd;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

#footer_btns .box02{
	/*width : calc(100% / 2);*/
	width : calc(75% / 2);
	background: #ddd;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}


#footer_btns a{
	color: #000;
	text-align: center;
	width: 400px;
	height: 90px;
	border: 1px solid #000;
	display: flex;
	align-items: center;
	justify-content: center;
	background: url( "../img/arrow02_b.svg") center right 30px no-repeat #fff;
	background-size: 9px;
	font-weight: bold;
}

#footer_btns a:hover{
	color: #fff;
	background: url( "../img/arrow02.svg") center right 30px no-repeat #000;
	background-size: 9px;
}


footer{
	/*background: #661A00;*/
	background: #fff;
	color: #000;
	padding-top: 35px;
}

footer a{
	color: #000;
}

footer #footer_rap{
	width: 1080px;
	margin: auto;
	display: flex;
	margin-bottom: 35px;
}

footer #footer_rap .box01{
	display: flex;
	align-items: center;
	border-right: 1px solid #fff;
	padding-right: 150px;
	padding-top: 15px;
	padding-bottom: 15px;
}

footer #footer_rap .footer_logo{
	margin-right: 50px;
}

footer #footer_rap .box01 dt{
	font-size: 22px;
	font-weight: bold;
	margin-bottom: 10px;
}

footer #footer_rap .box01 dd{
	font-size: 14px;
}

footer #footer_rap .box02{
	display: flex;
	padding-left: 100px;
	padding-top: 15px;
	padding-bottom: 15px;
}

footer #footer_rap .box02 ul{
	margin-right: 45px;
}

footer #footer_rap .box02 ul li{
	margin-bottom: 10px;
}

footer #footer_rap .box02 ul li a{
	background: url( "../img/arrow02_b.svg") center left no-repeat;
	background-size: 9px;
	padding-left: 20px;
}
footer #footer_rap .box02 ul li.beauty{
	background: #ddd;
	border-radius: 10px;
	font-size: 14px;
}

footer #footer_rap .box02 ul li.beauty a{
	background: none;
	color: #878787;
	padding-left: 10px;
	padding-right: 10px;
}

footer #footer_rap .box02 ul li.sns a{
	background: none;
	padding-left: 0;
}

footer #footer_rap .box02 ul li.sns a img{
	width: 29px;
	height: auto;
	/*padding-top: 2px;*/
}
footer #copy{
	font-size: 14px;
	font-weight: bold;
}