@charset "utf-8";

/*-----------------------------------------------------------
全体スタイル
-----------------------------------------------------------*/

body {
	width: 100% !important;
	color: #665241;
	line-height: 1.6;
	overflow: hidden;
	font-size: 1.8rem;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	font-family: 'Zen Kaku Gothic New', sans-serif;
	background: url(../img/main_bg.png) top center fixed no-repeat #FCFAF6;
}

body.open{
	height: 100vh;
}


/* color */
.white{
	color: #ffffff;
}
.blue{
	color: blue;
}
.red{
	color: red;
}
.green{
	color: green;
}
.yellow{
	color: yellow;
}

.bgwh{
	background: #ffffff;
}
.bgblu{
	background:blue;
}
.bgred{
	background: red;
}
.bggre{
	background: green;
}
.bgyel{
	background: yellow;
}


/*リンク表示方法*/

a {
	text-decoration: underline;	
}

a:link {
	color: #333;
}

a:visited {
	color: #333;
}

a:active {
	color: #333;
}

a:hover {
	opacity: 0.7;
}

a:hover img {
	opacity: 1;
}

.hLogo a:hover{
	opacity: 1;
}

:has( > .lista){
	position: relative;
}

.lista{
	position: absolute;
	left: 0;
	top:0;
	width:100%;
	height:100%;
	z-index: 1;
}

a[href*="tel:"] {
	pointer-events: none;
	cursor: default;
	text-decoration: none;
	}

.btn01:link{
	display: block;
	width: 90%;
	margin: 0 auto;
	text-align: center;
	font-size: 2.9rem;
	background: #E58C6C;
	text-decoration: none;
	border-radius: 50px;
	color: #fff;
	padding: 2%;
	position: relative;
	font-weight: 700;
}

.btn01:visited{
	color: #fff;
}

.btn01:before{
	content: "";
	display: block;
	position: absolute;
	background: url(../img/mail_aicon.png) no-repeat;
	width: 60px;
	height: 60px;
	background-size: contain;
	background-position-y: center;
	top: 5px;
	left: 5px;
}

/*-----------------------------------------------------------
PCサイズ
-----------------------------------------------------------*/

.pc,.pc2 {
	display: block;
}

.sp,.sp2, .spTel {
	display: none;
}

.pcTel {
	display: inline;
}

.maincon{
	width: 100%;
	max-width: 560px;
	margin: 0 auto;
	background: #fff;
	box-shadow: 0px 0px 27px #bebcbc;
}

/*-----------------------------------------------------------
header
-----------------------------------------------------------*/

header {
	padding: 0;
	width: 95%;
	max-width: 1200px;
	margin: 30px auto 28px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.hLogo{
	text-align: center;
	width: 100%;
	font-size: 5.3rem;
	line-height: .5;
}

.hLogo span{
	font-size: 1.6rem;
	letter-spacing: .9em;
}

h1{
	font-size: 1.6rem;
	text-align: center;
	font-weight: 500;
	background: #665241;
	color: #FFFFFF;
}

.headerUl {
	margin: 0 0 0;
	position: absolute;
	right: 2%;
	top: 30px;
}

.headerUl:after {
	content: '';
	display: block;
	clear: both;
}

.headerUl li {
}

.menuBtn{
	background: #665241;
	border-radius: 50px;
	height: 80px;
	width: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.logo {
	width: 234px;
}

.logo a:hover img {
	opacity: 1;
}

.headerTel {
	margin: 0 0 0 0;
	padding: 0px 0 0;
	font-weight: 900;
}

/*--- modal ---*/

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.menu-trigger {
  position: relative;
  width: 35px;
  height: 25px;
  z-index: 9999;
  text-align: center;
  top: -8px;
}


.menu-trigger:after{
	content: "menu";
	display: block;
	position: absolute;
	color: #fff;
	font-size: 1.4rem;
	bottom: -24px;
}

.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #fff;
  border-radius: 4px;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: 11px;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(20px) rotate(-45deg);
  transform: translateY(20px) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-20px) rotate(45deg);
  transform: translateY(-20px) rotate(45deg);
}

/*gnav*/
.gnav{
    background: #534234ed;
    display: none;
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: 999;
    transition: 1s;
    left: 0;
    top: 0;
    max-width: 100%;
    margin: 0;
}

.gnav.active{
	display: block;
}

.gnav__menu{
    display: block;
    width: 100%;
    height: 100%;
    padding: 60px 0 60px;
    margin-bottom: 10px;
}

.gnav__wrap{
    align-items:center;
    display: flex;
    height: 100%;
    justify-content: center;
    position: fixed;
    width: 100%;
	top: 0px;
    overflow: scroll;
}

nav .gnav__menu__item{
    margin: 30px auto 0;
    width: 95%;
}

.gnav__menu__item a{
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    padding: 0;
    text-decoration: none;
    transition: .5s;
    background: none;
    text-align: center;
    width: 100%;
    text-align: center;
    padding: 0 0 25px 0;
}

nav .gnav__menu__item a.btn03{
    padding: 0 5%;
    font-size: 2rem;
}

.gnav__menu__item a:hover{
    color: #e62219;
}


/*-----------------------------------------------------------
テーブル共通
-----------------------------------------------------------*/

table {
	border-collapse: separate;
}

th {
	background: #555;
	color: #fff;
}

td {
	background: #ddd;
	color: #555;
}


/*-----------------------------------------------------------
 nav
-----------------------------------------------------------*/

nav {
	margin: 10px auto 0;
	width: 95%;
	max-width: 1200px;
}

nav ul{
	display: flex;
	justify-content: space-between;
}

nav > ul li {
}

nav li a {
	display: block;
	text-decoration: none;
}

nav li a:hover {
	color: #329026;
}


/*-----------------------------------------------------------
#slide
-----------------------------------------------------------*/

#modal {
	display: none;
}

/*-----------------------------------------------------------
#cover
-----------------------------------------------------------*/

#cover {
	max-width: 1920px;
	width: 100%;
	margin: 10px auto 0;
	background: url(../img/mv_bg.png) bottom center no-repeat;
	position: relative;
	padding: 0 0 100px 0;
}

#cover h2{
	text-align: center;
	font-size: 3.9rem;
	color: #665241;
	position: relative;
	top: -11px;
	margin: 0 0 14px 0;
}

#cover .img{
	position: relative;
	height: 438px;
	width: 100%;
}

#cover .img img{
    width: 110%;
    max-width: 110%;
    position: absolute;
    left: -5%;
    right: 0;
    margin: 0 auto;
    text-align: center;
}

#cover .sp {
	display: none !important;
}

#cover li {
	height: 500px;
}

#cover img {
	width: 1000px;
	margin: 0 auto;
	display: block;
}

.cover01 {
	background: #ccc;
}

.cover02 {
	width: 100%;
    background: #555;
}

.cover03 {
	width: 100%;
    background: #333;
}

/*-- 中ページカバー --*/

.privacy #cover {
	background: #555;
}

.company #cover {
	background: #444;
}

.contact #cover {
	background: #777;
}

.list #cover {
	background: #ccc;
}


/*-----------------------------------------------------------
 #main
-----------------------------------------------------------*/

#main {
	width: 100%;
	/* margin: 80px auto 0; */
	background: #FCFAF6;
	padding-bottom: 80px;
}

.inner{
	width: 95%;
	max-width: 1200px;
	margin: 0 auto;
}

.mainTit{
	font-size: 3rem;
	text-align: center;
	line-height: 1.3;
}

.mainTit span{
	display: block;
	font-size: 1.4rem;
	color: #E58C6C;
	margin: 0 0 8px 0;
}

.content01{
	margin: 0;
}

.content01 .inner{
	position: relative;
	padding-bottom: 250px;
}

.content01 p{
    margin: 27px 0 0;
    font-size: 1.8rem;
}

.content01 .img{
	text-align: center;
	position: absolute;
	bottom: -79px;
	left: 0;
	right: 0;
	margin: 0 auto;
	width: 84%;
}

.content01 .box{
	position: relative;
}

.content01 .box:before {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -15px;
	border: 15px solid transparent;
	border-top: 15px solid #ffffff;
}

.content01 h3{
	text-align: center;
	background: #fff;
	padding: 15px 2%;
	font-size: 2.8rem;
	border-radius: 16px;
	margin: 50px 0 0 0;
}

.content02{
	background: #fff;
	padding: 105px 0;
	background: url(../img/content02_bgbottom.png) bottom center no-repeat;
}

.content02 ul{
	/* display: flex; */
	/* justify-content: space-between; */
	/* flex-wrap: wrap; */
	margin: 50px 0 0;
}

.content02 li{
	background: #fff;
	margin: 0 0 70px 0;
}

.content02 li .img{
	width: 90%;
	margin: 0 auto;
	max-width: 230px;
}

.content02 dt{
	text-align: center;
	font-size: 2.8rem;
	font-weight: 700;
	margin: 15px 0 0 0;
}

.content02 dd{
	margin: 10px 0 0 0;
}

.content02 dt span{
	display: block;
	font-size: 1.5rem;
	color: #E58C6C;
	font-weight: 500;
}

.content02 .note{
	position: relative;
	margin: 105px 0 0;
}

.content02 .note .inner{
	background: #FCF5E4;
	padding: 15px 5% 395px;
}

.content02 .note .inner:before{
	content: "";
	display: block;
	position: absolute;
	background: url(../img/note_top.svg) no-repeat;
	width: 95%;
	height: 55px;
	top: -55px;
	left: 0;
	right: 0;
	margin: 0 auto;
	background-size: cover;
}

.content02 .note h4{
	text-align: center;
	font-size: 2.6rem;
	margin-bottom: 30px;
}

.content02 .note .txt{
	line-height: 2.2;
}

.content02 .note .img{
	position: absolute;
	bottom: -52px;
}

.content03{
	padding: 80px 0;
}

.content03 h2{
	margin: 0 0 50px;
}

.content03 .name{
	text-align: center;
	line-height: 1.5;
	margin: 25px 0 25px;
}

.content03 .name p{
	font-size: 4rem;
}

.content03 .name .cate{
	font-size: 2rem;
}

.content03 .slider .img{
	text-align: center;
	display: flex;
	justify-content: center;
}

.content03 .slider li .img> img{
	border-radius: 30px;
	box-shadow: 0 0 10px #ccc;
}

.content03 .name .nick{
	font-size: 1.8rem;
}

.link{
	display: flex;
	justify-content: center;
	align-items: center;
}

.link a{
	margin: 30px 6px 0;
	max-width: 40px;
	display: block;
}

.content04{
	background: #fff;
	padding: 80px 0;
}

.content04 li{
	position: relative;
	margin: 80px 0 0 0;
}

.content04 li .no{
	position: absolute;
	left: 0;
	right: 0;
	margin: 0 auto;
	text-align: center;
	width: 75px;
	height: 75px;
	background: #665241;
	color: #fff;
	font-size: 3.5rem;
	font-weight: 700;
	border-radius: 100px;
	display: flex;
	justify-content: center;
	align-items: center;
	top: -37px;
}

.content04 li h4{
	font-size: 3rem;
	text-align: center;
	margin: 15px 0 15px 0;
}

.content05{
	padding: 80px 0;
}

.content05 li{
	margin: 60px 0 0;
}

.content05 .q{
	background: #E58C6C;
	padding: 10px;
	border-radius: 10px;
	display: flex;
	color: #fff;
	font-weight: 700;
	align-items: center;
	font-size: 2.5rem;
}

.content05 .q span,.content05 .an span{
	background: #fff;
	color: #E58C6C;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50px;
	margin: 0 15px 0 0;
}

.content05 .q p,.content05 .an p{
	width: 84%;
}

.content05 .an{
	display: flex;
	padding: 15px 10px 10px;
}

.content05 .an span{
	font-weight: 700;
	font-size: 2.5rem;
}

.content06{
	padding-bottom: 80px;
}

.content06 ul{
	margin-top: 30px;
}

.content06 li .img{
	display: flex;
	justify-content: center;
	padding: 10px 0;

}

.content06 li img{
	text-align: center;
	border-radius: 40px;
	overflow: hidden;
	box-shadow: 0 0 10px #ccc;
}


.content06 table {
	border-collapse: separate;
}

.content06 .box{
	margin: 10px 0;
}

.content06 .name{
	font-size: 3rem;
	font-weight: 700;
	margin: 12px 0 5px;
}

.content06 th {
	background: none;
	color: #665241;
	font-weight: 500;
}

.content06 td {
	background: none;
	color: #665241;
}

/*-----------------------------------------------------------
 footer
-----------------------------------------------------------*/

footer {
	margin: 0 auto 0;
	padding: 80px 0 0;
	background: #665241;
	color: #fff;
}
p.addp2 a{
	color: #fff;
}
.addp2 a:hover{
	color: #080808;
}
footer .logo {
	width: 243px;
	margin: 0 auto;
}

footer .inner {
	padding: 0 0 80px;
	text-align: center;
}

footer .hLogo{
	font-size: 5rem;
	margin: 0 0 35px;
}

footer ul {
	margin: 30px 0 0;
}

footer ul + ul {
	margin: 5px 0 0;
}

footer ul li {
	display: inline-block;
}

footer ul li a {
	margin: 0 0 0 5px;
	padding: 0 0 0 6px;
	font-size: 12px;
	border-left: 1px solid #fff;
}

footer ul li:first-child a {
    border: none;
} 

footer .add li:before {
	content: '\25a1';
}

footer .add li {
	margin: 0 0 0 10px;
	font-size: 14px;
}

.copyright {
	background: #4D3825;
	color: #fff;
	text-align: center;
	padding: 15px 0;
}

.copyright small {
    /* width: 1000px; */
    /* margin: 0 auto; */
    /* padding: 20px 0 20px; */
    /* display: block; */
    /* text-align: right; */
}


/* 全ページ共通クラス
----------------------------------------------------------- */

/*--- パンくず ---*/

.pankuzu {
    width: 1000px;
    margin: 0 auto;
    font-size: 12px;
    padding: 16px 0 0;
}

.pankuzu li {
    margin: 0 0 0 10px;
    display: inline;
}

.pankuzu li:first-child {
    margin: 0;
}

.pankuzu li a {
    margin: 0 10px 0 0;
    color: #F44336;
}

.pankuzu li a:hover {
    color: #0071BC;
}


/*--- ページトップ ---*/
#pageTop {
	position: fixed;
	bottom: 200px;
	right: 25px;
	z-index: 9999;
}


/* -- お問い合わせ -- */

input {
	vertical-align: middle;
}

.btnBox1 {
	text-align: center;
}

.contact_cf .clearForm,.contact_cf .clearForm2 {
	padding: 10px 5px;
}

.choose_list1 > li {
	width: 200px;
	margin: 0 0 0 10px;
	float: left;
}

.choose_list1 > li:first-child {
	margin: 0;
}

.choose_list1 {
	width: 410px;
	margin: 20px auto;
}

.contact_tb td span {
	margin: 9px 0 0;
	display: block;
}

.clearForm,
.clearForm2,
.toHome {
	width: 200px;
	padding: 15px 5px;
	cursor: pointer;
	outline: 0;
	background: #555;
	color: #fff !important;
	font-size: 100%;
	border: none;
	font-weight: bold;
	transition: .2s;
	-moz-transition: .2s;
	-webkit-transition: .2s;
}

.clearForm:hover,
.clearForm2:hover,
.toHome:hover {
	background: #777;
	color: #FFF;
}

.toHome {
	margin: 50px auto 0 !important;
	text-decoration: none;
	display: block;
	text-align: center;
}

#name, #post, #mail, #mail_confirm, textarea, #url, #kana, #tel, #msg {
	width: 650px;
}

#msg {
	height: 100px;
}

#zip1, #zip2 {
	width: 150px;
}

#city, #pref, #add {
	width: 580px;
	margin: 2px 0 0 10px;
}

#add {
    margin: 2px 0 0 40px;
}

textarea {
	width: 90%;
	padding: 10px 5px;
}

input,
textarea,
button,
select,
option {
	outline: none;
}

input[type="text"] {
	height: 25px;
	padding: 5px;
}

input[type="text"],
textarea,
select,
option {
	border: 1px solid #CCC;
}

button {
	border: none;
	outline: none;
	background: none;
}

.form_notice1 {
	font-size: 85.714%;
	display: block;
	margin: 5px 0 0;
}

.form_notice2 {
	font-size: 87.5%;
}

.modification_wrap {
	overflow: hidden;
}

.modification {
	width: 221px;
	float: left;
	margin: 0 0 0 246px;
}

.send_bt {
	width: 221px;
	float: right;
	margin: 0 245px 0 0;
}

.error_style {
	color: #FF0000;
	display: block;
	margin: 8px 0 0;
}

.contact_tb {
	width: 1000px;
	margin: 0 auto;
}

.contact_tb th {
	width: 250px;
	text-align: left;
	position: relative;
	line-height: 1.4;
}

.contact_tb th, .contact_tb td {
	padding: 13px 10px 10px 20px;
	font-size: 15px;
	border-bottom: 1px solid #ccc;
	position: relative;
}

.contact_tb th em {
	background: #F00;
	color: #FFFFFF;
	padding: 2px 5px;
	margin-left: 5px;
	right: 10px;
	font-size: 85.714%;
}


/*-- エラーチェック --*/

.formError {
	top: 20px !important;
	left: 40px !important;
}

.zip2formError {
	left: 220px !important;
}

.prefformError, .cityformError, .addformError {
	top: 0 !important;
	left: 80px !important;
}

.zip1 label {
	position: relative;
}


/*-- 送信前ダイアログ --*/

.ui-dialog {
    margin: auto;
    position: absolute;
    left: 0 !important;
    right: 0 !important;
}

.ui-corner-all.ui-button-text-only:focus {
	color: #737373;
    background: #fff;
    outline: none;
    border-color: #ccc;
}

.ui-corner-all.ui-button-text-only:hover {
    color: #fff;
    background: #555;
    outline: none;
    border-color: #ccc;
    transition: .3s;
}

.ui-widget-header {
    background: #555 !important;
    border-color: #555 !important;
}

.ui-dialog .ui-dialog-content,
.ui-button-text-only .ui-button-text {
	font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif !important;
}


/* TOP
----------------------------------------------------------- */

/*-- メインヴィジュアル スライダー --*/

.bx-wrapper {
	margin: 0 0 20px !important;
	position: relative;
}

.bx-controls-direction {
	width: 100%;
	position: absolute;
	top: 50%;
}

.bx-controls-direction a {
	width: 32px;
	height: 32px;
	margin: -16px 0 0;
	position: absolute;
	top: 50%;
	z-index: 9999;
	outline: 0;
	text-indent: -9999px;
}

.bx-prev {
	left: 1% !important;
	background: url(./../img/prev.png) no-repeat 0 0;
	background-size: contain;
}

.bx-next {
	right: 1% !important;
	background: url(./../img/next.png) no-repeat 100% 0;
	background-size: contain;
}


/*-- スクロールバーデザイン --*/

.scroll-pane {
	width: 100% !important;
	height: 300px; /*箱の高さ*/
	margin: 40px auto 0;
	overflow-y: auto;
}

.scroll-pane:focus {
	outline: none;
}

.jspContainer {
	width: 100% !important;
	overflow: hidden;
	position: relative;
}

.jspPane {
	width: 100% !important;
	position: absolute;
}

.jspVerticalBar {
	width: 20px;
	position: absolute;
	top: 0;
	right: -5px;
}

.jspArrowUp, .jspArrowDown {
	margin : 0;
	padding: 0;
	display: block;
	cursor : pointer;
	/* background: url(../img/scroll_top.png) no-repeat center; */
}

.jspArrowDown {
	background: url(../img/scroll_bottom.png) no-repeat center;
}

.jspTrack {
	/* background: url(./../img/scroll_bg1.png) repeat-y; */
	position: relative;
	background-position: center;
}

.jspDrag {
	width: 4px;
	margin: 0 auto;
	background: #6b6b6b;
	position: relative;
	cursor: pointer;
	border-radius: 8px;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
}

.jspArrow.jspDisabled {
	cursor: default;
}

.jspVerticalBar .jspArrow {
	height: 20px;
}

.jspVerticalBar .jspArrow:focus {
	outline: none;
}


/* 新着情報
----------------------------------------------------------- */

.news li {
	/* width: 660px; */
	margin: 0;
}

.news dl {
	width: 98%;
	padding: 30px 5px 30px;
	border-top: 1px solid #555;
	display: flex;
}

.news dt{
	min-width: 100px;
	margin: 0 20px 0 0;
}

.news li:first-child dl {
	border-top: none;
}


/*-----------------------------------------------------------
 中ページ
-----------------------------------------------------------*/

.leadTxt {
	margin: 30px auto 0;
	padding: 20px;
	background: #ccc;
}



/* プライバシーポリシー
----------------------------------------------------------- */

.privacy dl {
	margin: 30px 0 0;
}

.privacy dt {
	margin: 20px 0 0;
	padding: 0 5px;
	display: inline-block;
	font-weight: bold;
	border-bottom: 2px solid #ccc;
}

.privacy dt:first-child {
	margin: 0;
}

.privacy dd {
	font-size: 14px;
	margin: 10px 10px 0;
}


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

.company table {
	width: 1000px;
	margin: 30px auto 0;
}

.company th {
	width: 170px;
	padding: 10px 10px 10px 20px;
	border-bottom: 1px solid #fff;
}

.company td {
	width: 470px;
	padding: 10px 10px 10px 20px;
	border-bottom: 1px solid #fff;
}

.company iframe {
	width: 1000px;
	height: 280px;
	margin: 30px auto 0;
}


/*-- 固定ここまで --*/


/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

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

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */


/*-----------------------------------------------------------
全体スタイル
-----------------------------------------------------------*/

img {
	max-width: 100%;
	height: auto;
}



/*-----------------------------------------------------------
header
-----------------------------------------------------------*/

header {
}

header h1 {
	font-size: 80%;
}

.logo {
	width: 28%;
}

.headerAdd {
	width: 45%;
	margin: 0 0 0 1%;
	font-size: 90%;
}

.headerTel {
	height: auto;
	margin: 0 0 0 0%;
}


/*-----------------------------------------------------------
cover
-----------------------------------------------------------*/


/*-----------------------------------------------------------
#main
-----------------------------------------------------------*/

#main {
}


/*-----------------------------------------------------------
nav
-----------------------------------------------------------*/


/*-----------------------------------------------------------
footer
-----------------------------------------------------------*/

.copyright small {
	width: 96%;
}



/* 全ページ共通クラス
----------------------------------------------------------- */

.pankuzu {
	width: 98%;
}


/* トップページ
----------------------------------------------------------- */

.conte02 .txtBox {
    width: 96%;
    padding: 2%;
}

.news li {
    width: 94%;
    margin: 0 1%;
}

.news dl {
    width: 98%;
    font-size: 90%;
}

.scroll-pane {
	width: 100% !important;
}


/* 中ページ
----------------------------------------------------------- */

.leadTxt {
	padding: 20px 2%;
	font-size: 100%;
}

.privacy dt {
	padding: 0 1%;
}

.privacy dd {
	margin: 10px 2%;
}

.company table {
	width: 100%;
}

.company th {
	width: 30%;
	padding: 10px 2%;
	border-bottom: 1px solid #fff;
}

.company td {
	padding: 10px 2%;
	border-bottom: 1px solid #fff;
}

.company iframe {
	width: 100%;
}

.listUl {
	width: 100%;
	margin: 30px auto 0;
}

.listUl li {
	width: 31.3%;
	margin: 0 1%;
}


/*-- お問い合わせ --*/

.clearForm,
.clearForm2 {
	width: 96%;
	padding: 15px 2%;
}

.contact_tb {
	width: 98%;
}

.contact_tb th {
	width: 30%;
	padding: 13px 2% 10px;
	font-size: 80%;
}

.contact_tb td {
	padding: 13px 2% 10px;
	font-size: 80%;
}

.contact_cf .clearForm,.contact_cf .clearForm2 {
	padding: 10px 5px;
}

.choose_list1 > li {
	width: 48%;
	margin: 0 0 0 2%;
}

.choose_list1 > li:first-child {
	margin: 0;
}

.choose_list1 {
	width: 60%;
	margin: 20px auto;
}

#name, #post, #mail, #mail_confirm, textarea, #url, #kana, #tel, #msg {
	width: 98%;
}

#zip1, #zip2 {
	width: 40%;
}

#city, #pref {
	width: 86%;
	margin: 2px 0 0 2%;
}

#add {
	width: 86%;
	margin: 2px 0 0 6.3%;
}

/*-- エラーチェック --*/

.formError {
	top: 20px !important;
	left: 10% !important;
}

.zip2formError {
	left: 54% !important;
}

.prefformError, .cityformError, .addformError {
	top: 30px !important;
	left: 10% !important;
}

.ui-dialog {
	width: 80% !important;
}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

} /* max-width: 1000px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */




/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

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

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

.pc {
	display: none;
}

.sp {
	display: block;
}

nav li a {
	font-size: 1.5rem;
}


.contact_tb th {
	font-size: 70%;
}

a[href*="tel:"] {
	pointer-events: initial;
	cursor: pointer;
	text-decoration: none;
	}

/* ヘッダー
----------------------------------------------------------- */


.telBtn {
	width: 35%;
	line-height: 1;
	margin: 3px 11% 0 0;
	font-size: 4rem;
}

.headerUl{
	display: flex;
	width: 30%;
	justify-content: flex-end;
}

.menuBtn {
	/* width: 35%; */
}




/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

} /* max-width: 768px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */




/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

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

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

.pc2, .pcTel {
	display: none;
}

.sp2 {
	display: block;
}

.spTel  {
	display: inline;
}


/*-- テーブル --*/

table {
	width: 100%;
}

th, td {
	width: 96% !important;
	display: block;
}




/*-- ページトップ --*/

#pageTop {
	display: none !important;
}


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

.sp nav {
	margin: 0 auto;
	background: #329026;
}


/* トップページ
----------------------------------------------------------- */

#main {
}



/* 中ページ
----------------------------------------------------------- */
.company iframe {
	width: 100%;
	margin: 30px auto 0;
	display: block;
}

.listUl li {
	width: 48%;
}

.contact_tb th {
	font-size: 100%;

}

.choose_list1 {
	width: 80%;
}

#name, #post, #mail, #mail_confirm, textarea, #url, #kana, #tel, #msg {
	width: 96%;
}

#zip1, #zip2 {
	width: 40%;
}

#city, #pref, #add {
	width: 96%;
	margin: 2px 0 0;
}

/*-- エラーチェック --*/

.zip1formError {
	left: 10% !important;
}

.zip2formError {
	left: 54% !important;
}

.prefformError, .cityformError, .addformError {
	top: 30px !important;
	left: 50% !important;
}

.detailBox > div {
	width: 100%;
	float: none;
}

.detailBox > .detailTxt {
	width: 98%;
	margin: 20px auto 0;
}

.formError {
	top: 20px !important;
	left: 10% !important;
}

.zip2formError {
	width: 42% !important;
	left: 50% !important;
}

h1{
	font-size: 1.4rem;
	padding: 5px;
}

.hLogo{
	width: 100%;
	font-size: 3.5rem;
	line-height: .5;
}

footer .hLogo{
	text-align: center;
}

.hLogo span{
	font-size: 1.3rem;
}

header {
	padding: 0;
	width: 95%;
	max-width: 1200px;
	margin: 35px auto 35px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.headerUl {
	top: 40px;
}

#cover h2{
	text-align: center;
	font-size: 2.8rem;
	color: #665241;
	position: relative;
	top: -11px;
	margin: 0 0 14px 0;
}

#cover .img{
	height: 43vh;
}

.content01 h3{
	font-size: 2rem;;
}

.content01 .inner{
	padding-bottom: 30vh;
}

.mainTit{
	font-size: 2.5rem;
}
.content02 dt{
	font-size: 2.2rem;
}
.content02 .note h4{
	text-align: center;
	font-size: 2.2rem;
	margin-bottom: 30px;
}

.content02 .note .inner{
	padding: 15px 5% 45vh;
}

.btn01:before{
	content: "";
	display: block;
	position: absolute;
	background: url(../img/mail_aicon.png) no-repeat;
	width: 50px;
	height: 53px;
	background-size: contain;
	background-position-y: center;
	top: 5px;
	left: 5px;
}
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

} /* max-width: 591px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */




/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

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

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

.telBtn {
	width: 12%;
}




.ui-dialog.ui-widget.ui-widget-content.ui-corner-all.ui-front.ui-dialog-buttons {
    width: 94% !important;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
}

.choose_list1 {
	width: 96%;
	font-size: 90%;
}

.choose_list1 > li {
	width: 49%;
}

.content01 .inner{
	padding-bottom: 21vh;
}

.content02 .note .inner{
	padding: 15px 5% 35vh;
}

.slick-prev,
.slick-next
{
	top: 24% !important;
}
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

} /* max-width: 414px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */




/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

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

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */


/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

} /* max-width: 320px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */