@charset "UTF-8";

/* 共通部分
-------------------------------- */

html {
	font-size: 100%;
}

body {
	font-family: "メイリオ", Meiryo, "Yu Gothic Medium", "游ゴシック Medium", Yugothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
	line-height: 1.7;
	color: #4a5469;
	border-top: 4px solid #3fa9f5;
}

a {
	text-decoration: none;
}

img {
	max-width: 100%;
}

p {
	font-size: 1.25rem;
}


.wrapper {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 4%;
}

h2 {
	font-size: 2rem;
}

h3 {
	color: #3fa9f5;
	margin: 40px 0 20px;
	font-size: 1.75rem;
	border-bottom: 3px solid #3fa9f5;
	text-align: center;
}

a[href^="tel:"] {
	color: #fff;
}

mark {
	background: linear-gradient(rgba(255, 255, 255, 0) 42%, #ffd5ff 60%);
	color: #4a5469;
}

@media (max-width: 600px) {

	h2 {
		font-size: 1.5rem;
	}

	h3 {
		font-size: 1.25rem;
	}

	p {
		font-size: 1rem;
	}

	.lead h2 {
		font-size: 1.15rem;
	}

}



/* HEADER
-------------------------------- */

header {
	background-color: #fff;
}

.logo {
	width: 250px;
	margin-top: 14px;
}

.page-header {
	display: flex;
	justify-content: space-between;
}

.main-nav {
	display: flex;
	font-size: 1rem;
	text-transform: uppercase;
	margin-top: 34px;
	list-style: none;
}

.main-nav li {
	margin-left: 36px;
}

.main-nav a {
	color: #3fa9f5;
}

.main-nav a:hover {
	color: #8bd;
}

/* headerメニューのスクロール時固定 */

header.m_fixed {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 99;
	background-color: rgba(255, 255, 255, 0.9);
}

/* キービジュアル */

.lead {
	margin-bottom: 40px;
}

.lead h2 {
	text-align: center;
	color: #3fa9f5;
	margin: 30px 0 20px;
	border-bottom: 2px #3fa9f5 solid;
}

/* SECTION
------------------------------- */

section {
	padding: 60px 0;
}

section h2 {
	text-align: center;
	color: #3fa9f5;
	border-top: 4px double #3fa9f5;
	border-bottom: 4px double #3fa9f5;
	margin-bottom: 40px;
	padding: 5px 0;
}

.sec_img {
	margin-bottom: 40px;
}

/* 集配対応エリアBOX */

.area {
	display: flex;
	align-items: center;
	border: 1px solid #ff7bac;
	background-color: #ffdee3;
	font-size: 1.25rem;
	margin: 40px 0;
}

.area_lavel {
	font-size: 1.5rem;
	width:30%;
	text-align: center;
}

.area_list {
	width:70%;
	padding: 20px 20px;
	background-color: #fff;
}

.note {
	display: inline-block;
	font-size: 1rem;
	padding-left: 1rem;
	text-indent: -1rem;
	margin-top: 0.5rem;
}



/* 法人向け */

#company,
#price {
	background: #f0f8ff;
}

.list {
	list-style: disc;
	font-size: 1.25rem;
	margin-bottom: 40px;
	margin-left: 5%;
}

.info_lead,
.info_text {
	width: 100%;
}

.info_lead {
	background-color: #8bd;
	color: #fff;
	text-align: center;
	font-size: 1.5rem;
	padding: 10px;
	border-radius: 5px 5px 0 0;
}

.info_text {
	/* background-image: url(../images/track.png);
	background-repeat: no-repeat;
	background-position: right 10px bottom 0px; */
	background-color: #fff;
	padding: 15px 15px 50px;
	margin-bottom: 60px;
	border-radius: 0 0 5px 5px;
	border: 2px solid #8bd;
}

.info {
	position: relative;
}

.badge {
	position: absolute;
	right: 3px;
	top: -50px;
	max-width: 100%;
}

@media (max-width: 600px) {

	.info_lead {
		font-size: 1.25rem;
	}
}

/* お問い合わせバナー */

.contact_banner {
	background-color: #3fa9f5;
	color: #fff;
	text-align: center;
	padding: 20px;
	box-shadow: 0px 0px 6px 2px rgba(0,0,0,0.3);
}

.con_banner_text {
	font-size: 1.5rem;
	padding-bottom: 3px;
}

.con_banner_num {
	font-size: 2rem;
	word-break: break-all; /* TEL番号がBOXからはみ出さず折り返すようにする設定 */
}

.contact_banner span {
	font-size: 1rem;
}

@media (max-width: 600px) {

	.con_banner_text {
		font-size: 1.5rem;
		border-bottom: 1px dashed #fff;
		margin-bottom: 5px;
	}

	.contact_banner span {
		font-size: 0.75rem;
	}

	.list li {
		font-size: 1rem;
	}

	.con_banner_num {
		border: 3px dotted #8bd;
		margin: 10px 0;
	}

	.con_banner_num:hover {
		border: 3px dotted #f0f8ff;	
	}

}


/* 料金表 */

.price_box {
	display: flex;
	justify-content: space-between;
	width: 100%;
	margin-bottom: 15px;
}

.price_table {
	width: 46%;

}

table {
	border-collapse: collapse;
	table-layout: auto;
	width: 100%;
}

th, tr, td {
	border: 1px solid #3fa9f5;
	padding: 5px;
}

td {
	background-color: #fff;
}

td:nth-child(2) {
	width: 28%;
	text-align: center;
}


/* 会社概要
------------------------------ */

#about dl {
	display: flex;
	flex-wrap: wrap;
}


#about dt {
	background-color: #3fa9f5;
	width: 20%;
	padding: 10px;
	box-sizing: border-box;
	border-bottom: 1px dashed #fff;
	color: #fff;
}

#about dd {
	padding: 10px;
	margin: 0;
	border-bottom: 1px dashed #3fa9f5;
	width: 80%;
	box-sizing: border-box; 
}

.bd_none {
	border-bottom: none;
}

.text_small {
	font-size: 0.825rem;
}

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

	#about dl {
		flex-flow: column nowrap;
	}

	#about dt,
	#about dd {
		width: 100%;
		border-bottom: none;
		text-align: center;
	}

	#about dt {
		background-color: #f0f8ff;
		border-top:  1px solid #3fa9f5;
		border-bottom: 1px solid #3fa9f5;
		font-weight: bold;
		color: #4a5469;
	}

	.bd_last {
		border-bottom: 1px solid #3fa9f5;
	}

}

/* フッター
------------------------------ */

footer {
	background: #3fa9f5;
	text-align: center;
	padding: 26px 0;
}

footer p {
	color: #fff;
	font-size: 0.875rem;
}

.footer-nav {
	display: flex;
	font-size: 0.75rem;
	text-transform: uppercase;
	margin-bottom: 30px;
	list-style: none;
	justify-content: flex-end;
}

.footer-nav li {
	margin-right: 20px;
}

.footer-nav a {
	color: #fff;
}

.footer-nav a:hover {
	color: #8bd;
}


/* CONTACT
------------------------------ */

/* PCでは改行しない */

@media (min-width: 600px) {
	.br-sp {
		display: none;
	}

/* PCでは電話番号タップのイベントは起こさない */

	a[href^="tel:"] {
		pointer-events: none;
	}
}


/* モバイル版
------------------------------ */

@media (max-width: 600px) {
	.page-title {
		font-size: 2.5rem;
	}

	/* HEADER */

	.main-nav {
		font-size: 0.75rem;
		margin-top: 10px;
		margin-bottom: 10px;
	}

	.main-nav li {
		margin: 0 10px;
	}

	.page-header {
		flex-direction: column;
		align-items: center;
	}


	
	/* CONTACT */

	#contact .page-title {
		margin-top: 40px;
	}


	.contact {
		flex-direction: column;
	}

	.tel, .tel-num {
		width: 100%;
	}

	.tel {
		border-bottom: 3px dotted #fff;
		border-right: none;
	}

	/* 集配対応エリアBOX */

	.area {
		flex-direction: column;
	}

	.area_lavel, .area_list {
		width: 100%;
		text-align: center;
	}

	 .area_lavel {
		padding: 3% 0;
	}

	.area_lavel p, .area_list p {
		font-size: 1.25rem;
	}

	.note {
		text-align: left;
	}

	/* 料金表 */

	.price_box {
		flex-direction: column;
	}

	.price_table {
		width: 100%;
	}

	.margin_btm30 {
		margin-bottom: 30px;
	}

	.footer-nav {
	justify-content: space-around;
	}


}





