@charset "utf-8";

/*==========================================
 Base
===========================================*/
* {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	font-family: "ヒラギノ角ゴシック", "Hiragino Kaku Gothic Pro", "游ゴシック", "YuGothic", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
}
*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	outline: none;
}
html,
body {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
body {
	width: 100%;
	background: #fff;
	line-height: 1.5;
	font-weight: 500 !important;
	font-feature-settings: "palt";
	letter-spacing: 0.1em;
	color: #1b1b1b;
	font-size: 16px;
	text-align: left;
	overflow-wrap: break-word;
	word-wrap: break-word;
	overflow-x: hidden;
	margin: 0 auto;
	text-align: center;
}
p,
li,
span,
label {
	font-family: "ヒラギノ角ゴシック", "Hiragino Kaku Gothic Pro", "游ゴシック", "YuGothic", "メイリオ", "Meiryo", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
}
small {
	line-height: 1.2;
	font-size: .8rem;
}
ul,
ol,
li {
	list-style: none;
}
/* Chrome/Safari */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
/* FireFox/IE */
input[type="number"] {
	-moz-appearance:textfield;
}
textarea {
	resize: none;
	height: 100px;
}
.readonly:focus {
	outline: none;
}
.color-red {
	color: #b22222;
}
.hide {
	display: none;
}
.mt_10 {
	margin-top: 10px;
}
.only-pc {
	display: block;
}
.only-sp {
	display: none;
}
@media only screen and (max-width: 768px) {
	.only-pc {
		display: none;
	}
	.only-sp {
		display: block;
	}
}

/*==========================================
 font/link
===========================================*/
a {
	outline: none;
	text-decoration: underline;
	-webkit-transition: all .8s;
	transition: all .3s;
}
a:link {
	color: #000;
	text-decoration: none;
}
a:visited {
	color: #000;
	text-decoration: none;
}
a:hover {
	color: #000;
	text-decoration: none;
	opacity: 0.7;
}
a:active {
	color: #000;
}
@media only screen and (max-width: 768px) {
	a:hover {
		text-decoration: none;
	}
}

/*==========================================
 img
===========================================*/
img {
	max-width: 100%;
	height: auto;
}
a img {
	border: none;
	padding: 0;
	margin: 0;
	outline: none !important;
}

/*==========================================
 radio
===========================================*/
.radio {
	position: relative;
	padding-left: 15px;
	margin-right: 50px;
	cursor: pointer;
}
.radio input {
	opacity: 0;
}
.radio .image {
	display: block;
	position: absolute;
	left: 0;
	top: 0px;
	width: 20px;
	height: 20px;
	background: url(../img/ico_radioImage.png) 0 0 no-repeat;
	background-size: 20px auto;
}
.radio input:checked + .image {
	background-position: 0 -20px;
}
.radio .text {
	display: inline-block;
	vertical-align: middle;
}
@media only screen and (max-width: 768px) {
	.radio {
		padding-left: 0px;
		margin-right: 5px;
		font-size: 3.2vw;
	}
	.radio .image {
		top: -3px;
	}
	.radio .text {
		width: 85%
	}
}

/*==========================================
 checkBox
===========================================*/
.checkBox {
	position: relative;
	padding-left: 5px;
	cursor: pointer;
}
.checkBox input {
	opacity: 0;
}
.checkBox .image {
	display: block;
	position: absolute;
	left: 0;
	top: 0px;
	width: 18px;
	height: 18px;
	background: url(../img/ico_checkImage.png) 0 0 no-repeat;
	background-size: 18px auto;
}
.checkBox input:checked + .image {
	background-position: 0 -18px;
}

/*==========================================
 header
===========================================*/
#header {
	padding: 15px;
}
#header a {
	display: flex;
	align-items: center;
    flex-direction: column;
}
#header .logo {
	font-size: 50px;
	color: #f5a90f;
	font-family: 'Lucida Grande', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', "Meiryo", "メイリオ", "sans-serif";
}
#header img {
	max-width: 1000px;
}
@media only screen and (max-width: 768px) {
	#header .logo {
		font-size: 28px;
	}
	#header img {
		width: 100%;
		margin: 0 3px 0 0;
	}
	#header a span {
		font-size: 12px;
	}
}

/*==========================================
 footer
===========================================*/
#footer {
	padding: 10px 5px;
	background: #333;
	color: #fff;
}
#footer ul {
	display: flex;
	justify-content: center;
	margin: 10px 0;
}
#footer ul li {
	padding: 8px;
}
#footer ul li a {
	color: #fff;
}
@media only screen and (max-width: 768px) {
	#footer {
		min-width: 100%;
		padding: 10px 3%;
		font-size: 11px;
	}
}

/*==========================================
 contents
===========================================*/
.main {
	max-width: 1200px;
	margin: 0 auto 100px;
}
.inner {
	width: 90%;
	margin: 0 auto;
}
.error {
	padding: 8px;
	margin: 5px 0 10px 0;
	background: #fcd4d4;
	color: #b22222;
	font-size: 14px;
	font-weight: bold;
	border-radius: 5px;
}
.order {
	margin: 50px 0 25px 0;
}
.order a {
	display: inline-block;
	position: relative;
	width: 300px;
	margin: 0 auto;
	padding: 15px 50px;
	background: #e7604b;
	border-radius: 10px;
	box-shadow: 6px 6px 8px rgb(0 0 0 / 15%);
	color: #fff;
	font-size: 18px;
	font-weight: bold;
}
.order a:after {
	display: block;
	position: absolute;
	top: 50%;
	right: 0.75em;
	width: 0.5em;
	height: 0.5em;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	content: '';
	transform: translateY(-50%) rotate(45deg);
}
h2 {
	position: relative;
	margin: 2.7em 0 1.4em;
	padding: 1.8em 0 1.0em;
	border-top: 1px solid #dedede;
	color: #430e0e;
	font-size: 22px;
	font-weight: 700;
}
h2:before {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	width: 60px;
	height: 3px;
	margin: auto;
	background: #b22222;
	content: '';
}
h2:after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	width: 71px;
	height: 3px;
	margin: auto;
	background: url(../img/icon_dot.svg) no-repeat 0 0/100%;
	content: '';
}
.type {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	max-width: 800px;
	margin: 0 auto;
}
.type li {
	display: flex;
	align-items: center;
	text-align: left;
	font-size: 30px;
	margin: 0 10px 20px;
}
.type li img {
	max-width: 30px;
	margin-right: 5px;
}
.type li span {
	padding: 0 10px;
	color: #430e0e;
	font-weight: bold;
	background: linear-gradient(transparent 60%, #f4f3df 40%);
	border-radius: 80% 50% 60% 5%/80% 75% 15% 75%;
}
.desc {
	max-width: 600px;
	margin: 50px auto;
	padding: 20px;
	background: #eee;
}
.desc h3 {
	font-size: 19px;
}
.desc ul {
	margin: 15px 0 5px;
	text-align: left;
}
.desc ul li {
	margin-bottom: 15px;
}
.desc ul li p {
	font-weight: bold;
}
.desc ul li span {
	font-size: 14px;
}
@media only screen and (max-width: 768px) {
	.order a {
		display: block;
		margin-bottom: 15px;
	}
	.type {
		justify-content: flex-start;
	}
	.type li {
		font-size: 16px;
		width: 100%;
	}
	.desc {
		margin-top: 20px;
	}
}

/*==========================================
 information
===========================================*/
.information {
	max-width: 980px;
	margin: 0 auto;
	padding: 15px;
	text-align: center;
	border: solid 1px #b22222;
}
.information h3 {
	font-size: 1.5rem;
}
.information div {
	width: 80%;
	margin: 0 auto;
	text-align: left;
}
.information p {
	font-size: 0.9rem;
	margin-top: 15px;
}
.information p.red {
	color: #b22222;
	font-weight: 600;
}
