﻿@charset "utf-8";

/*		Contents
---------------------------------------------------------------------------

	Reset Styles
	From（フォーム）
	Paging（ページング）
	Widget（共通パーツ）

------------------------------------------------------------------------ */


/* ========================================================================
	Reset Styles
======================================================================== */

/* HTML5 */
article, aside, figure, figcaption, video, footer, header,
main, nav, section, summary{
	display:block;
	margin:0;
}


/* Base Styles */
*{
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-o-box-sizing:border-box;
	-ms-box-sizing:border-box;
	box-sizing:border-box;
}

html, body, div, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, address, small,
ul, ol, li, dl, dt, dd,
table, th, td,
form, fieldset{
	margin:0;
	padding:0;
	font-weight:normal;
}

html{
	font-size:62.5%; /* 10px */
}

body{
	font-family:-apple-system, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	font-size:1.4rem; /* 14px */
	color:#333333;
	line-height:1.2;
	-webkit-text-size-adjust:100%;
}

select,input,button,textarea{
	font-family:inherit;
	font-size:100%;
	color:#333333;
}

pre,code,kbd,samp{
	font-family:inherit;
}

img,
iframe{
	border:none;
	vertical-align:bottom;
}

table{
	width:100%;
	border:none;
	border-collapse:collapse;
	border-spacing:0;
	font-size:inherit;
}

label{
	display:inline-block;
	position:relative;
	margin:0 60px 0 0;
	padding:0 0 0 38px;
	line-height:4.6rem;
	cursor:pointer;
}
label:last-child{ margin:0; }

input,
textarea{
	padding:0;
	vertical-align:middle;
}

input::placeholder{
	color:#969696;
	opacity:1; /* Firefox用 */
}
input:-ms-input-placeholder{ color:#969696; } /* IE用 */

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="url"],
textarea{
	width:100%;
	height:46px;
	margin:0;
	padding:0 16px;
	border:1px solid #B59824;
	border-radius:5px;
	-webkit-appearance:none; /* iPhone・iPad グラデーション解除 */
}

textarea{
	height:auto;
	padding:10px 16px;
}

/* Firefox・IE スピンボタン非表示 */
input[type="number"]{
	-moz-appearance:textfield;
}

/* Chrome・Safari スピンボタン非表示 */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button{
	margin:0;
	-webkit-appearance:none;
}

input[type="radio"],
input[type="checkbox"]{
	margin:0 6px 0 0;
	vertical-align:baseline;
	cursor:pointer;
}

button,
input[type="image"],
input[type="submit"],
input[type="button"]{
	margin:0; /* iPhone・iPad用 */
	padding:0;
	cursor:pointer;
	border-radius:0; /* iPhone・iPad 角丸解除 */
	-webkit-appearance:none; /* iPhone・iPad グラデーション解除 */
}

select,
select option,
select optgroup{
	margin:0;
	padding:0 16px;
	font-style:normal;
	cursor:pointer;
}

ol,ul{
	list-style:none;
}

h1,h2,h3,h4,h5,h6,small{
	font-size:100%;
}

address{
	font-style:normal;
} 

a,
input{
	outline:none;
}


/* Basic Text Link */
a{
	color:#333333; text-decoration:underline;
}
a:link{
	color:#333333; text-decoration:underline;
}
a:visited{
	color:#333333; text-decoration:underline;
}
a:hover{
	color:#333333; text-decoration:none;
}
a:focus{
	color:#333333; text-decoration:underline;
}
a:active{
	color:#333333; text-decoration:underline;
}


/* Common Styles */
img{
	max-width:100%;
	height:auto;
}

ul,
ol,
.column{
	overflow:hidden;
	position:relative;
}

.center{
	text-align:center;
}


/* radio Styles */
label > input[type="radio"]{
	display:none;
}

label > input[type="radio"] + span{
	vertical-align:bottom;
	transition-duration:0.2s;
}

label > input[type="radio"] + span::before,
label > input[type="radio"] + span::after{
	content:"";
	position:absolute;
	top:9px;
	left:0;
	width:26px;
	height:26px;
	background:#ffffff;
	border:1px solid #B59824;
	border-radius:50%;
	transition-duration:0.2s;
}
label > input[type="radio"] + span::after{
	top:16px;
	left:7px;
	width:12px;
	height:12px;
	background:#B59824;
	opacity:0;
}
label > input[type="radio"]:checked + span::after{ opacity:1; }


/* select Styles */
.select{
	overflow:hidden;
	position:relative;
	display:block;
	width:100%;
	height:46px;
	background:none;
	border:3px solid #B59824;
	border-radius:5px;
}

.select::before,
.select::after{
	content:"";
	position:absolute;
	top:12px;
	right:16px;
	border-style:solid;
	border-width:0 3.5px 6px 3.5px;
	border-color:transparent transparent #b59824 transparent;
	pointer-events:none;
}
.select::after{
	top:auto;
	bottom:12px;
	border-width:6px 3.5px 0 3.5px;
	border-color:#b59824 transparent transparent transparent;
}

.select select{
	width:100%;
	height:40px;
	padding:0 32px 0 16px;
	background:none;
	border:none;
	outline:none;
	appearance:none;
}