@charset "utf-8";
/* CSS Document */

/*------------------- reset ---------------------------------------*/

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*--------------- form ------------------*/



button, input, select, textarea {
font-family : inherit;
font-size : 100%;
}

/*
input[type="checkbox"],
input[type="radio"] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}*/

label {
  position: relative;
  display: block;
  word-break: break-all;
}
label input[type="checkbox"] + span,
label input[type="radio"] + span {
  position: relative;
  padding-left: 15px;
}
label input[type="radio"] + span {
	padding-right: 15px;
	padding-left: 0;
}

/*--- checkbox --*/

label input[type="checkbox"] + span::before {
  border-color: #6A3906;
}
label input[type="checkbox"]:checked + span::before {
  background-color: #6A3906;
}
label span {
  display: inline-block;
}
/*label input[type="checkbox"] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 1px;
}*/

/* 20230512 */
/* label input[type="checkbox"] + span::before,
label input[type="checkbox"] + span::after {
  position: absolute;
  top: 7px;
  left: 0;
  display: inline-block;
  content: '';
  box-sizing: border-box;
}
label input[type="checkbox"] + span::before {
  z-index: 0;
  background-color: transparent;
  width: 12px;
  height: 12px;
  border: 1px #313131 solid;
}
label input[type="checkbox"] + span::after {
  z-index: 1;
  margin: 2px 4px;
  width: 6px;
  height: 9px;
}
label input[type="checkbox"]:checked + span::before {
  background-color: #fff;
}
label input[type="checkbox"]:checked + span::after {
  border: 2px solid #313131;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
} */

/*--- radio ----*/

label input[type="radio"] + span::before {
  border-color: #6A3906;
}
label span {
  display: inline-block;
}

/*label input[type="radio"] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 1px;
}*/
label input[type="radio"] + span::before {
  position: absolute;
  display: inline-block;
  content: '';
  box-sizing: border-box;
	border: 1px solid #668dd4;
	border-radius: 50%;
}
label input[type="radio"] + span::before {
	z-index: 0;
	top: 5px;
	right: 0;
	background-color: transparent;
	width: 14px;
	height: 14px;

}
/*label input[type="radio"]:checked + span::before {
  border: 4px solid #668dd4;
}*/
label input[type="radio"]:checked + span::after {
  position: absolute;
  display: inline-block;
  content: '';
  box-sizing: border-box;
	background-color:  #668dd4;
	border-radius: 50%;

	z-index: 0;
	top: 7px;
	right: 2px;
	width: 10px;
	height: 10px;	
}

/*-------- text email tel ---------*/

input[type="text"],
input[type="email"],
input[type="tel"] ,
textarea,select,
input[type=button],
input[type=submit]{
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
	padding:5px;
	background-color: #f7f7f7;
	border: 1px solid #c9c9c9;
	border-radius: 10px;
  width: 100%;
  box-sizing: border-box;
}

/*-------- select ------------*/

select {
	width: 200px;
	background-image: url(../images/contact_select_arr.png);
	background-repeat: no-repeat;
	background-position: 92% center;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-weight: bold;
}
select::-ms-expand {
    display: none;
}

input[type="text"],
input[type="email"],
input[type="tel"] ,
textarea{
	/* width: auto; */
	max-width: 100%;

}

textarea{
	resize: vertical;
    overflow: auto;
    height: 160px;
}


input[type=button],
input[type=submit]{
    padding: 10px 40px;
    font-size: 1.2em;
    background-color: #6a3906;
    color: #fff;
    border-style: none;
	
}
input[type=submit]:hover{
/*	opacity: 0.7;*/

}


@media screen and (max-width:768px){

	input[type="text"],
	input[type="email"],
	input[type="tel"] ,
	textarea{
		width: 100%;
	}
}

::placeholder {
	color: #b2b2b2;
}

/*----------------------------------------------*/

/*--------------- common -----------------------*/



body {
	font-size: 100%;
	background-color: #fff;
	color: #000;
	font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
}

h1,h2,h3,h4,h5,h6{
	font-weight:normal;
	margin: 0;
	padding: 0;
}

html,body{
/*     height:100%;*/
	overflow-x: hidden;
	
}

.clearfix::after {
    content:" ";
    display:block;
    clear:both;
}

.clr {	clear:both; }

.fr{ float:right;}

.fl{ float:left;}

img{
	display: block;
}

*, *:before, *:after {
    -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{ font-size:62.5%;}

body {
	font-size: 1.0rem;
	line-height: 1.8;
}

.tab{ display: none !important;}
.sp{ display:none !important;}
.ip{ display:none !important;}
.and{ display:none !important;}


section::after,
.wrap::after {
    content:" ";
    display:block;
    clear:both;
}

.wrap{
	width: 980px;
	max-width: 100%;
	margin: auto;
}

.wrap img{
	display: block;
	margin: auto;
}
#agent .wrap #slider img{
  width: 45%;
}
img.mv_txt.switch {
  width: 68%;
}

a{
	text-decoration: none;
	outline:none;
}

a:hover{
	text-decoration: underline;
}
a:hover img{
	opacity: 0.7;
}


.switch{
	display: none;
}
.flex{
	display: flex;
}
.f_cntr{
	justify-content: center;
}
.f_btw{
	justify-content: space-between;
}
.f_ac{
	align-items: center;
}
/*------------------ general----------------*/


.mt0   { margin-top:  0px !important ; }
.mt10  { margin-top: 10px !important ; }

.mb0   { margin-bottom:  0px !important ; }
.mb10  { margin-bottom: 10px !important ; }
.mb60  { margin-bottom: 60px !important ; }


/*---------------- sp-------------------*/

@media screen and (max-width:768px){
	
	.sp{
		display: block !important;
	}
	.pc {
		display: none !important;
	}
	
	.wrap{
		width: 100%;
		/* padding: 0 3.3%; */
		padding: 0;
	}
	
}


