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

/*==============================
基本設定
==============================*/

/*全タグ線幅、padding含むサイズ設定*/
*{
	box-sizing: border-box;
}

html{
	width: 100%;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

body{
	width: 100%;
	font-size: 1.5rem;
	/*font-weight: bold;*/
	text-align: justify;
	color: #000;
	background: #FFF;
	overflow-x: hidden;
	-webkit-text-size-adjust: 100%;/*スマホで横持ちした時フォントサイズが変わらないように*/
}

/*リンク設定*/
a:link,
a:visited,
a:hover,
a:active{
	color: #000;
	text-decoration: none;
}

/*イメージ設定*/
img{
	width: 100%;
	height: auto;
}

#wrapper{
	width: 100%;
}

.btn{
	margin: 0 auto;
	width: 340px;
	height: 52px;
}

.btn a{
	display: block;
	width: 100%;
	height: 100%;
	color: #fff;
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
	line-height: 52px;
	background: #d83473;
}

.btn a:hover{
	opacity: 0.7;
}

.btn a::after{
	content: "";
	display: inline-block;
	margin: 0 0 1px 10px;
	width: 12px;
	height: 14px;
	background: url(../img/img_arrow_white_yoko.svg) no-repeat center center / cover;
}

/*==============================
ヘッダー設定
==============================*/

#headerWrap{
	width: 100%;
	text-align: center;
}


.headerInner{
	margin: 0 auto;
	width: 1100px;
}

.headerTop{
	padding: 34px 0 10px 0;
	width: 100%;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	border-bottom: 3px solid #00636f;
}

.headerTop h1{
	width: 210px;
}

.headerTop h2{
	width: 408px;
}

#globalNav{
	padding: 16px 0 32px;
	width: 100%;
	display: flex;
	justify-content: space-between;
}

#globalNav .nav01,
#globalNav .nav02{
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#globalNav .nav01{
	padding: 0 0 0 20px;
	width: 578px;
}

#globalNav .nav01 li a{
	padding: 0 0 0 22px;
	color: #000;
	font-size: 2rem;
	font-weight: bold;
	position: relative;
}

#globalNav .nav01 li a:hover{
	opacity: 0.7;
}

#globalNav .nav01 li a::before{
	content: "";
	margin: 0 10px 2px 0;
	width: 12px;
	height: 14px;
	background: url(../img/img_arrow_pink_yoko.svg) no-repeat center center / cover;
	position: absolute;
	top: 4px;
	left: 0;
}

#globalNav .nav02{
	width: 488px;
}

#globalNav .nav02 .contact{
	width: 204px;
	height: 88px;
}

#globalNav .nav02 .order{
	width: 274px;
	height: 88px;
}

#globalNav .nav02 li a{
	display: block;
	padding: 0 0 0 36px;
	width: 100%;
	height: 100%;
	font-size: 2rem;
	font-weight: bold;
	line-height: 88px;
	border-radius: 5px;
	position: relative;
}

#globalNav .nav02 li a:hover{
	opacity: 0.7;
}

#globalNav .nav02 .contact a{
	color: #000;
	background: #e5e5e5;
}

#globalNav .nav02 .order a{
	color: #fff;
	background: #d83473;
}

#globalNav .nav02 .contact a::before,
#globalNav .nav02 .order a::before{
	content: "";
	display: block;
	position: absolute;
}

#globalNav .nav02 .contact a::before{
	width: 30px;
	height: 20px;
	background: url(../img/ico_mail.svg) no-repeat center center / cover;
	top: 34px;
	left: 24px;
}

#globalNav .nav02 .order a::before{
	width: 38px;
	height: 36px;
	background: url(../img/ico_cart.svg) no-repeat center center / cover;
	top: 25px;
	left: 26px;
}

.headerInner .manual{
	text-align: right;
}

.headerInner .manual a{
	color: #000;
	font-size: 1.6rem;
	font-weight: bold;
	text-decoration: underline;
	position: relative;
}

.headerInner .manual a:hover{
	text-decoration: none;
}

.headerInner .manual a::before{
	content: "";
	display: inline-block;
	width: 16px;
	height: 18px;
	background: url(../img/ico_file.svg) no-repeat center center /cover;
	position: absolute;
	left: -24px;
	top: 0;
}


/*==============================
コンテンツ設定
==============================*/

section{
	width: 100%;
}

section .inner{
	margin: 0 auto;
	width: 1100px;
}

section h2{
	width: auto;
	height: 46px;
	text-align: center;
}

section h2 img{
	width: auto;
	height: 100%;
}

main{
	padding: 40px 0 114px;
}


/*------------------------------
お問い合わせ先設定
------------------------------*/

#contact .inner{
	width: 870px;
}

#contact .info{
	margin: 30px 0 0 0;
	padding: 44px 55px;
	border: 3px solid #000;
}

#contact .info .manager{
	color: #000;
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
	position: relative;
}

#contact .info .manager::after{
	content: "";
	width: 100%;
	height: 1px;
	background: #000;
	position: absolute;
	bottom: -16px;
	left: 0;
}

#contact .infoBox{
	margin: 45px auto 0;
	padding: 0 26px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

#contact .leftBox,
#contact .rightBox{
	width: calc(50% - 20px);
}

#contact .leftBox dt,
#contact .rightBox dt{
	color: #d83473;
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
}

#contact .leftBox dd{
	margin: 10px 0 0 0;
}

#contact .leftBox dd{
	width: 100%;
	height: 126px;
}

#contact .leftBox dd a{
	display: block;
	width: 100%;
	height: 100%;
	color: #000;
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
	line-height: 126px;
	background: #e5e5e5;
	border-radius: 5px;
}

#contact .leftBox dd a:hover{
	opacity: 0.7;
}

#contact .leftBox dd a::before{
	content: "";
	display: inline-block;
	margin: 0 10px -3px 0;
	width: 30px;
	height: 20px;
	background: url(../img/ico_mail.svg) no-repeat center center / cover;
}

#contact .rightBox dd{
	margin: 10px 0 0 0;
}

#contact .rightBox .telInfo li{
	margin: 10px 0 0 0;
	color: #000;
	font-size: 1.4rem;
	font-weight: bold;
	text-align: center;
	line-height: 22px;
}

#contact .rightBox .telInfo li:nth-of-type(2){
	font-size: 1.6rem;
}

#contact .rightBox .telInfo .tel{
	color: #000;
	font-size: 4.2rem;
	font-weight: bold;
	text-align: center;
	line-height: 40px;
	white-space: nowrap;
}

#contact .rightBox .telInfo .tel a:hover{
	opacity: 0.7;
}

.holiday{
	margin: 32px 0 0 0;
	width: 100%;
	height: 60px;
	color: #fff;
	font-size: 2rem;
	font-weight: bold;
	line-height: 60px;
	text-align: center;
	background: #a0a0a0;
}

/*==============================
レスポンシブ設定
==============================*/




















































