@charset "UTF-8";

/* ===================================
	File Name   : common.css
	Description : Base Layout CSS

	Update Description :
	[2020/11/10] pc/sp切り替えプロパティ追加
	[2015/02/27] 調整
	[2015/02/10] 新規作成

====================================== */

/*========== Style Contents ==========

	1. Global Redefinition
	2. Font Redefinition
	3. Box Setting
	4. Common Items Setting
		- Basic Link
	 	- Header Items
	5. Contents Setting
	6. Media Queries

====================================== */





/*===== ■1. Global Redefinition =====*/
* { box-sizing: border-box;}

body {
  margin: 0px auto;
	color: #444;
	line-height: 1.8;
	-webkit-text-size-adjust: 100%;
}

img { width: 100%;}

.pc { display: none;}
.sp { display: block;}



/*===== ■2. Font Redefinition =====*/
html { font-size: 62.5%;}

body {
	font-size: 13px;
	font-size: 1.3rem;
	font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.li { font-family: 'Libre Baskerville', serif;}
.mo { font-family: 'Montserrat', sans-serif;}



/* Icon */
@font-face {
	font-family: 'icomoon';
	src:url('fonts/icomoon.eot?-nhpyp8');
	src:url('fonts/icomoon.eot?#iefix-nhpyp8') format('embedded-opentype'),
		url('fonts/icomoon.woff?-nhpyp8') format('woff'),
		url('fonts/icomoon.ttf?-nhpyp8') format('truetype'),
		url('fonts/icomoon.svg?-nhpyp8#icomoon') format('svg');
	font-weight: normal;
	font-style: normal;
}

[class^="icon-"], [class*=" icon-"] {
	font-family: 'icomoon';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;

	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.icon-arr:before { content: "\e600";}
.icon-close:before { content: "\e601";}
.icon-facebook:before { content: "\e602";}
.icon-must:before { content: "\e604"; color: #c54634;}
.icon-triangle:before { content: "\e605";}
.icon-twitter:before { content: "\e606";}





/*===== ■3. Box Setting =====*/
#entirety {
	position: relative;
	margin: 0px auto;
}

header { text-align: center;}

section {
	position: relative;
	margin: 0 0 15px;
}

footer {
	position: relative;
	text-align: center;
}





/*===== ■4. Common Items Setting =====*/
/* Basic Link */
a {
	outline: hidden;
	text-decoration: none;
}

a:link {
	color: #0D152B;
}

a:visited {
	color: #0D152B;
}

a:hover {
	color: #C54634;
}


/* Header Items */
header strong#logo {
	display: block;
	background: #0D152B;
	margin-bottom: 20px;
	border-top: 12px solid #0D152B;
	line-height: 0;
}

header strong img {
	display: none;
	width: auto;
	max-width: 210px;
	min-width: 131px;
}

header h1 {
	margin-bottom: 15px;
	font-weight: bold;
	font-size: 17px;
	font-size: 1.7rem;
}
header h1:before {
	display: block;
	width: 64px;
	height: 18px;
	margin: 0 auto 5px;
	background: url(../img/common/mark-head.png) no-repeat;
	background-size: 64px,18px;
	content: '';
}

header h2 {
	display: block;
	font-weight: bold;
	font-size: 17px;
	font-size: 1.7rem;
	text-align: center;
}

header h3 {
	display: block;
	margin-bottom: 35px;
	font-weight: bold;
	font-size: 12px;
	font-size: 1.2rem;
	text-align: center;
}

header ul {
	width: 87%;
	margin: 0 auto 20px;
	padding-bottom: 25px;
	border-bottom: 1px solid #444;
}

header li {
	position: relative;
	margin-bottom: 8px;
	padding: 2px 0 3px;
	background: #444;
	color: #fff;
	font-weight: bold;
	font-size: 12px;
	font-size: 1.2rem;
	text-align: center;
}
header li:before {
		position: absolute;
		bottom: -4px;
		left: 48.5%;
		width: 7px;
		height: 7px;
		background: #444;
		content: '';
		transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
}
header li.active,
header li.active:before { background: #c54634;}

header li:last-child {
	margin: 0;
	padding: 0;
	background: none;
	color: #0D152B;
}

header li:last-child:before { display: none;}

header p {
	width: 87%;
	margin: 0 auto 15px;
	font-size: 11px;
	font-size: 1.1rem;
	line-height: 140%;
	text-align: left;
}

header p+strong {
	display: block;
	width: 87%;
	margin: 15px auto;
	padding: 15px;
	border: 4px solid #c54634;
	background: none;
	color: #c54634;
	font-weight: bold;
	font-size: 12px;
	font-size: 1.2rem;
	text-align: left;
}

/* Footer Items */
footer span {
	display: block;
	margin-bottom: 20px;
}
footer span a {
	display: inline-block;
	padding: 5px 30px;
	background: #444;
	color: #fff !important;
	font-size: 14px;
	font-size: 1.4rem;
	font-family: 'Montserrat', sans-serif;
}
footer span a:hover { background: #999;}

footer span i {
	position: relative;
	top: 1px;
	margin-right: 5px;
}

footer p { text-align: center;}

footer p small {
	display: inline-block;
	margin-bottom: 15px;
	font-size: 8px;
	font-size: 0.8rem;
	font-family: 'Montserrat', sans-serif;
}





/*===== ■5. Contents Setting =====*/
main>em {
	display: block;
	width: 87%;
	margin: 0 auto 15px;
	font-size: 11px;
	font-size: 1.1rem;
	text-align: right;
}

main>div {
	margin-bottom: 20px;
	padding-top: 20px;
	border-top: 1px solid #444;
	border-bottom: 1px solid #444;
}

p#ssl {
	width: 83%;
	margin: 0 auto 25px;
	font-size: 10px;
	font-size: 1.0rem;
	line-height: 180%;
	text-align: center;
}

main hr { display: none;}

main dl {
	width: 87%;
	margin: 0 auto 15px;
}

main dt {
	margin-bottom: 5px;
	font-size: 12px;
	font-size: 1.2rem;
}

main dt i { margin-left: 3px;}

main dd em {
	display: block;
	margin-top: 5px;
	font-weight: bold;
	color: #c54634;
	font-size: 12px;
	font-size: 1.2rem;
}

main dd p {
	color: #666;
	margin-top: 5px;
	font-weight: bold;
	font-size: 10px;
	font-size: 1.0rem;
}

main dd p a {
  color: #c54634 !important;
  text-decoration: underline;
}
main dd p a:hover {
  text-decoration: none;
}

main dd p.notice {
	margin-bottom: 5px;
	font-weight: bold;
	font-size: 10px;
	font-size: 1.0rem;
	line-height: 150%;
}

main dd p.notice a { color: #c54634;}

main dd p.notice a:hover { color: #F37A64;}

main dd p.privacy_policy {
  overflow: auto;
  height: 85px;
  margin: 0 0 10px;
  padding: 5px 10px 5px 5px;
  border: 1px solid #bbb;
  font-weight: normal;
  font-size: inherit;
  line-height:150%;
}

main dd p.privacy_policy span {
  display: block;
  margin: 0 0 15px;
  padding: 0;
}

main dd p.privacy_policy span em {
  font-size: inherit;
  color: #666;
}

main dd label {
	font-weight: bold;
	font-size: 14px;
	font-size: 1.4rem;
}

main .btn_sample {
  text-decoration: underline;
  color: #c54634;
}
main .btn_sample:hover {
  text-decoration: none;
}

main #btn_action {
	margin: 0 auto;
	text-align: center;
}

main #btn_action li { margin-bottom: 15px;}

main #btn_action button {
	display: inline-block;
	text-align: center;
	width: 80%;
	padding: 10px 0;
	border: 4px solid #444;
	background: none;
	font-size: 21px;
	font-size: 2.1rem;
	line-height: 21px;
	font-family: 'Montserrat', sans-serif;
	vertical-align: middle;
	cursor: pointer;
}
main #btn_action button b {
	margin-left: 15px;
	font-weight: bold;
	font-size: 10px;
	font-size: 1.0rem;
	vertical-align: bottom;
}

main #btn_action button:hover {
	color: #c54634;
	border-color: #c54634;
}

main #btn_action li#modify button {
	background: #444;
	color: #fff;
	font-weight: bold;
	font-size: 12px;
	font-size: 1.2rem;
}
main #btn_action li#modify button:hover {
	color: #fff;
	border-color: #999;
	background: #999;
}

main #btn_action li#done button {
	font-weight: bold;
	font-size: 16px;
	font-size: 1.6rem;
}




/* text */
main dd input[type=text],
main dd textarea {
	width: 100%;
	padding: 8px 10px 6px;
	border: solid 1px #bbb;
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 130%;
	font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	-webkit-appearance: none;
}
main dd textarea { min-height: 100px;}

main dd input[type=text].short {
	width: 25%;
	margin-right: 10px;
}


/* select */
main dd .custom {
	position: relative;
	display: inline-block;
	overflow: hidden;
	width: 100%;
	margin-top: -3px;
	padding: 6px 10px 4px;
	border: 1px solid #bbb;
	background: url(../img/common/mark-select.png) no-repeat right center;
	font-size: 14px;
	font-size: 1.4rem;
	line-height: 100%;
	vertical-align: middle;
	border-radius: 5px;
}

main dd .custom.pre_hour,
main dd .custom.pre_minutes {
  width: 100%;
  margin-bottom: 5px;
}


main dd .custom:after {
	position: absolute;
	top: 0;
	right: 30px;
	padding: 16px 0px;
	border-left: 1px solid #bbb;
	content: '';
}
main dd > .custom { margin-top: 0;}

main dd .custom select {
	width: 110%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none transparent;
  color: inherit;
  font-size: inherit;
	font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  box-sizing: content-box;
  vertical-align: middle;
	-moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}


/* checkbox */
main dd input[type=checkbox] { margin-right: 5px;}


/* Confirm */
#confirm dd { text-align: right;}

#confirm dd span {
	display: block;
	margin-left: 40px;
	text-align: left;
}


/* Complete */
#complete {
	width: 87%;
	margin: 0 auto 25px;
	padding: 15px 20px;
	border: 1px solid #444;
}

#complete p {
	font-size: 11px;
	font-size: 1.1rem;
	line-height: 160%;
}

#complete p strong {
	display: block;
	margin-bottom: 5px;
	font-weight: bold;
}





/*===== ■6. Media Queries =====*/
@media all and (min-width: 981px) {
  .pc { display: block;}
  .sp { display: none;}
  
	/* Header Items */
	header #logo {
		margin-bottom: 35px;
		padding: 25px 0;
		border-top: none !important;
	}

	header #logo img {
		display: inline;
		height: 80px;
	}

	header h1 {
		margin-bottom: 35px;
		font-size: 18px;
		font-size: 1.8rem;
	}
	header h1:before { margin: 0 auto 10px;}

	header ul {
		display: table;
		width: 610px;
		margin: 0 auto 20px;
		padding-bottom: 0;
		border-bottom: none;
	}

	header li {
		display: table-cell;
		margin-bottom: 0;
		padding: 10px 35px;
		border-left: 1px solid #fff;
		letter-spacing: 0;
	}
	header li:before { display: none;}

	header li:last-child {
		padding: 0 0 0 40px;
		border: none;
		background: none;
		color: #0D152B;
	}

	header li:nth-child(3):before {
		display: block;
		position: absolute;
		top: 6px;
		left: inherit;
		right: -15px;
		width: 29px;
		height: 29px;
		content: '';
		transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
	}

	header p {
		width: 510px;
		margin: 0 auto 15px;
		line-height: 180%;
		text-align: center;
	}

	header p+strong { width: 645px;}


	/* Contents Setting */
	main>em { width: 645px;}

	main>div {
		margin: 0 0 40px;
		padding-top: 0;
	}

	main hr {
		display: block;
		margin: 0;
		padding: 0;
		border: none;
		height: 1px;
		border-top: 1px solid #eee;
	}

	main dl {
		width: 645px;
		margin-bottom: 0;
	}

	main dt {
		display: table-cell;
		position: relative;
		width: 145px;
		padding: 15px 30px 10px 10px;
		text-align: right;
		vertical-align: top;
	}

	main dt i {
		position: absolute;
		top: 20px;
		right: 15px;
		vertical-align: top;
	}

	main dd {
		display: table-cell;
		width: 500px;
		padding: 10px 30px;
		border-left: 2px solid #444;
		vertical-align: middle;
	}
	main hr+dl dt,
	main hr+dl dd,
	main dl:first-child dt,
	main dl:first-child dd { padding: 20px 30px 10px;}
	main hr+dl+dl+dl+dl dt,
	main hr+dl+dl+dl+dl dd,
	main dl:first-child+dl+dl dt,
	main dl:first-child+dl+dl dd { padding: 10px 30px 20px;}

	main hr+dl dt i { top: 25px;}
	main hr+dl+dl+dl+dl dt i,
	main dl:first-child+dl+dl dt i { top: 15px;}


	main dd p {
		font-size: 11px;
		font-size: 1.1rem;
	}

	main dd p.notice {
		font-size: 12px;
		font-size: 1.2rem;
	}

main dd .custom.pre_hour,
main dd .custom.pre_minutes {
  width: 38%;
  margin-right: 3%;
}


	main #btn_action { width: 435px;}

	main #btn_action button {
		font-size: 24px;
		font-size: 2.4rem;
	}
	main #btn_action button b {
		font-size: 12px;
		font-size: 1.2rem;
	}

	main #btn_action li#modify,
	main #btn_action li#done {
		display: inline-block;
		margin: 0 10px 15px;
	}

	main #btn_action li#modify button {
		width: 100%;
		padding: 10px 20px 10px 15px;
	}

	main #btn_action li#done button {
		width: 100%;
		padding: 15px 100px;
	}


	/* select */
	main dd .custom { width: 80%;}


	/* Confirm */
	#confirm dd { text-align: left;}

	#confirm dd span { margin-left: 0;}


	/* Complete */
	#complete {
		width: 645px;
		margin: 0 auto 35px;
		padding: 25px 20px;
	}
}