@charset "UTF-8";

/*--------------------------
リセット
---------------------------- */
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: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/*--------------------------
基本：基本タグ
---------------------------- */
/* [ PC - SP switch ] */
@media screen and (min-width: 768px) {
  .pcOFF {
    display: none !important;
  }
}
@media screen and (max-width: 767px) { /* Smartphone */
  .spOFF {
    display: none !important;
  }
}
/* -------*/
* {
  box-sizing: border-box;
}

html {
  overflow-y: scroll;
}

body {
	font-family: 'Noto Sans JP', sans-serif;
	line-height:1.5;
	color:#1F1F1F;
}
@media screen and (max-width: 767px) { /* Smartphone */
}
/*==============================
基本書式
================================ */
a{
	text-decoration:none;
}

/* btnLnk */
.btnLnk{
}
.btnLnk a{
	background:#1F81CC;
	color:#fff;
	font-size:24px;
	font-weight:bold;
	text-align:center;
	padding:20px;
	display:inline-block;
	width:100%;
	transition: all .3s;
}
.btnLnk a:hover{
	background:#FF8000;
}
.btnLnk-yellow a{
	background:#FDCA00;
}
.btnLnk-yellow:hover a{
	background:#FF8000;
}

.btnLst{
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	align-items: flex-start;
}
.btnLst .btnLnk{
	flex-basis:48%;
}

.commonBtnBox{
	margin-bottom:150px;
}
.commonBtnBox .btnLst{
}
.commonBtnBox .btnLst .btnLnk{
	flex-basis:32%;
}
.commonBtnBox .btnLst .btnLnk a{
}
.tit01{
	font-size:40px;
	font-weight:bold;
	text-align:center;
	position:relative;
	margin-bottom:50px;
}	
.tit01:before{
	content:"";
	width:90px;
	height:5px;
	background:#FDCA00;
	position:absolute;
	left:0;
	right:0;
	bottom:-10px;
	margin:auto;
}

.txt01{
	font-size:20px;
	margin-bottom:50px;
}
.imgCenter{
	text-align:center;
}
.imgCenter img{
	width:100%;
	height:auto;
}

ul.lst01{
	margin-left:1.5em;
}
ul.lst01 li{
	list-style:disc;
	font-size:20px;
	margin-bottom:10px;
}

ul.lst02{
	margin-bottom:20px;
}
ul.lst02 li{
	background:url(../img/lst_icon01.png) no-repeat left 2px;
	padding-left:35px;
	font-size:20px;
	color:#532C32;
	margin-bottom:10px;
}

.box{
	width:100%;
	max-width:1200px;
	margin-left:auto;
	margin-right:auto;
}

.layoutBox{
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
}
.layoutBox .pic{
	order:1;
}

.layoutBox .cnt{
	order:2;
}
.layoutBox.img-right .pic{
	order:2;
}

.layoutBox.img-right .cnt{
	order:1;
}

/* --- */
.tbl{
	border-radius:20px;
	overflow:hidden;
}
.tbl thead{
}
.tbl thead th{
	background:#EFEBE0;
	font-size:20px;
	padding:20px;
	text-align:center;
}
.tbl tbody{
}
.tbl tbody th{
	background:#EFEBE0;
	font-size:20px;
	padding:20px;
	text-align:center;
}
.tbl tbody td{
	font-size:20px;
	padding:20px;
	background:#EEEEEE;
}
.tbl tbody tr:nth-child(2n) th{
	background:#F7F5F0;
}
.tbl tbody tr:nth-child(2n) td{
	background:#F7F7F7;
}


/* --- */
.dlTbl{
}
.dlTbl dl{
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	margin-bottom:25px;
}
.dlTbl dl dt{
	flex-basis:25%;
	border-top:solid 3px #FF7F00;
	font-size:20px;
	padding:20px 10px;
}
.dlTbl dl dd{
	flex-basis:75%;
	border-top:solid 3px #CCCCCC;
	font-size:20px;
	padding:20px 20px;
}

@media screen and (max-width: 1200px) { /* Smartphone */
	.box{
		max-width:calc(100% - 30px);
	}

}
@media screen and (max-width: 900px) { /* Smartphone */
	.btnLnk a{
		font-size:20px;
		padding:16px 10px;
	}
}

@media screen and (max-width: 767px) { /* Smartphone */

	.tit01{
		font-size:25px;
	}	
	.tit01:before{
	}
	.btnLnk {
		text-align:center;
	}
	.btnLnk a{
		font-size:20px;
		padding:16px 10px;
		border-radius:4px;
	}
	.commonBtnBox{
	}
	.commonBtnBox .btnLst{
	}
	.commonBtnBox .btnLst .btnLnk{
		flex-basis:100%;
		margin-bottom:10px;
	}
	.layoutBox .pic{
		order:1 !important;
	}

	.layoutBox .cnt{
		order:2 !important;
	}

	.scroll-table .tbl,
	.scroll-table .dlTbl{
		width:1050px;
	}


	.tbl thead th{
		padding:5px;
	}
	.tbl tbody{
	}
	.tbl tbody th{
		padding:5px;
	}
	.tbl tbody td{
		padding:5px;
	}


	.dlTbl dl dt{
		flex-basis:100%;
		padding:10px 10px;
	}
	.dlTbl dl dd{
		flex-basis:100%;
		padding:20px 10px 10px;
	}
}


/*--------------------------
SPヘッダー
---------------------------- */
/* スマホヘッダー */
#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 9999999;
}

#fixed-top {
  background: #fff;
  position: fixed;
  top: 0;
  z-index: 99999999;
  width: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

/* ヘッダーのロゴ */
#fixed-top .logo {
  padding: 7px 0 0 7px;
}

#fixed-top .logo img {
  width: auto;
  height: 22px;
}
#fixed-top .logo img:last-child{
  height: 38px;
}

/* ヘッダーのボタン関連 */
#fixed-top .headerButtons {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: right;
  justify-content: right;
}

#fixed-top .headerButtons li a {
  display: block;
}

#fixed-top .headerButtons li img {
  vertical-align: bottom;
  height: 55px;
  width: auto;
}

/* スマートフォン用ナビゲーション*/
#slidar_menu {
  background: #fff;
  padding: 10px;
  z-index: 999999;
}

#slidar_menu .sb-right-inner .logo {
  margin: 0px 0 20px;
  text-align: center;
  overflow: hidden;
}

#slidar_menu .sb-right-inner .logo img {
  display: block;
  width: 161px;
  height: auto;
  margin: 10px auto;
  text-align: center;
}

#slidar_menu .sb-right-inner .parent .tit {
  display: block;
  background: #f0f6ff;
  padding: 5px;
  margin-bottom: 10px;
  border-radius: 3px;
  font-weight: bold;
  color: #cf1357;
}

#slidar_menu .sb-right-inner .parent li {
  border-bottom: solid 1px #ccc;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

#slidar_menu .sb-right-inner .parent li.banner img {
  width: 100%;
  height: auto;
}

#slidar_menu .sb-right-inner .parent li.banner {
  border-bottom: none;
  margin-bottom: 5px;
  padding-bottom: 0px;
}

#slidar_menu .sb-close {
  text-align: right;
  margin-bottom: 10px;
}

#slidar_menu .sb-right-inner a {
  display: block;
  text-decoration: none;
  font-size: 18px;
  color: #333;
  font-weight: bold;
}

/* テキストメニュー */
#slidar_menu .parent.txt {
  margin-bottom: 30px;
}

#slidar_menu .parent.txt li {
  background-image: url(../img/shoplist_marker.png);
  background-repeat: no-repeat;
  background-position: 98% 4px;
  background-size: 14px 14px;
}

/* バナーメニュー */
#slidar_menu .parent.banner li {
  padding: 0 !important;
  margin: 0 !important;
  border: none;
}

#slidar_menu .parent.banner .tit {
  text-align: center;
  margin-bottom: 5px !important;
  background: #cf1357;
  color: #fff;
}

#slidar_menu .parent.banner img {
  width: 100%;
  height: auto;
}

/* スライドメニュー：サムネイルメニュー */
#slidar_menu .parent.prsvNav .parent__tit {
  font-weight: bold;
  text-align: center;
  font-size: 20px;
  margin-bottom: 30px;
}

#slidar_menu .parent.prsvNav .parent__lst {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: dotted 1px #000;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

#slidar_menu .parent.prsvNav .parent__lst li {
  width: 48%;
  margin-bottom: 10px;
  border: none !important;
}

#slidar_menu .parent.prsvNav .parent__lst li a {
  text-decoration: none;
  color: #000;
  font-size: 14px;
  font-weight: normal;
}

#slidar_menu .parent.prsvNav .parent__lst li img {
  width: 100%;
  height: auto;
  margin-bottom: 0px;
  vertical-align: bottom;
  border: solid 1px #000;
}

/* コンタクトメニュー */
#slidar_menu .parent.contact {
  margin-bottom: 30px;
}

#slidar_menu .parent.contact .tit {
  border: none;
  background: none;
  text-align: center;
}

#slidar_menu .parent.contact li {
  border: none;
}

#slidar_menu .parent.contact .thum {
  padding: 0 !important;
  background-color: #fff;
  background-image: url(../img/shoplist_marker.png);
  background-repeat: no-repeat;
  background-position: 98% center;
  background-size: 14px 14px;
  border: solid 1px #aaa !important;
  border-radius: 2px !important;
  margin-bottom: 3px !important;
}

#slidar_menu .parent.contact .thum a {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: normal;
  line-height: 130%;
}

#slidar_menu .parent.contact .thum a img {
  width: 65px;
  height: auto;
  margin-right: 5px;
  border-right: #aaa solid 1px;
}

#slidar_menu .parent.contact .tel a {
  border-radius: 3px;
  text-align: center;
}

#slidar_menu .parent.contact .tel a span {
  font-size: 14px;
}

#slidar_menu .parent.contact .tel a span span {
  font-weight: bold;
}







/*==============================
pcHeader
================================ */
.pcHeader{
	position:fixed;
	top:0;
	left:0;
	width:100%;
	background:#fff;
	z-index:99999;
	box-shadow: 0px 0px 15px -3px #777777;
}
.pcHeader .inner{
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	align-items: center;
	width:100%;
	max-width:1920px;
	margin-left:auto;
	margin-right:auto;
}

@media screen and (max-width: 1920px) { /* Smartphone */
	.pcHeader .inner{
		max-width:calc(100% - 30px);
	}
}
@media screen and (max-width: 1000px) { /* Smartphone */
	.pcHeader .inner{
		max-width:100%;
	}
}

/*==============================
headerLogo
================================ */
.headerLogo{
	flex-basis:15%;
}
.headerLogo a{
	display:block;
	text-decoration:none;
}
.headerLogo img{
	width:100%;
	max-width:270px;
	height:auto;
}
@media screen and (max-width: 1000px) { /* Smartphone */
	.headerLogo{
		padding-left:10px;
		flex-basis:20%;
	}
}

/*==============================
pcNav
================================ */
.pcNav{
	flex-basis:85%;
	padding-left:10%;
}
.pcNav .lst{
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	align-items: center;
}
.pcNav .lst .item{
}
.pcNav .lst .item:nth-child(1){ flex-basis:8%; }
.pcNav .lst .item:nth-child(2){ flex-basis:21%; }
.pcNav .lst .item:nth-child(3){ flex-basis:20%; }
.pcNav .lst .item:nth-child(4){ flex-basis:12%; }
.pcNav .lst .item:nth-child(5){ flex-basis:9%; }
.pcNav .lst .item:nth-child(6){ flex-basis:15%; }
.pcNav .lst .item:nth-child(7){ flex-basis:15%; }

.pcNav .lst .item a{
	font-size:18px;
	font-weight:bold;
	color:#202020;
	display:block;
	text-align:center;
	height:90px;

	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	align-items: center;

}
.pcNav .lst .item a br{
	display:none;
}
.pcNav .lst .item.normalNav{
}
.pcNav .lst .item.btnNav{
}
.pcNav .lst .item.btnNav.btnAppli{
}
.pcNav .lst .item.btnNav.btnEntry{
}
.pcNav .lst .item.btnNav.btnAppli a{
	background:#FDCA00;
}
.pcNav .lst .item.btnNav.btnEntry a{
	background:#FF8000;
	color:#fff;
}


body.body_home .pcNav .lst .item:nth-child(1) span{
	border-bottom:solid 4px #FDCA00;
	padding-top:7px;
}
body.body_reason .pcNav .lst .item:nth-child(2) span{
	border-bottom:solid 4px #FDCA00;
	padding-top:7px;
}
body.body_message .pcNav .lst .item:nth-child(3) span{
	border-bottom:solid 4px #FDCA00;
	padding-top:7px;
}
body.body_staff .pcNav .lst .item:nth-child(4) span{
	border-bottom:solid 4px #FDCA00;
	padding-top:7px;
}
body.body_company .pcNav .lst .item:nth-child(5) span{
	border-bottom:solid 4px #FDCA00;
	padding-top:7px;
}




@media screen and (max-width: 1550px) { /* Smartphone */
	.pcNav{
		padding-left:50px;
	}
	.pcNav .lst .item a{
		font-size:16px;
	}
}

@media screen and (max-width: 1250px) { /* Smartphone */
	.pcNav{
		padding-left:30px;
	}
	.pcNav .lst .item a{
		font-size:14px;
		letter-spacing:0;
	}
}

@media screen and (max-width: 1070px) { /* Smartphone */
	.pcNav{
		padding-left:10px;
	}
	.pcNav .lst .item a{
		font-size:13px;
		letter-spacing:0;
	}
}
@media screen and (max-width: 1000px) { /* Smartphone */
	.pcNav{
		flex-basis:78%;
	}
	.pcNav{
		padding-left:0%;
	}
	.pcNav .lst .item a br{
		display:block;
	}
	.pcNav .lst .item:nth-child(1){ flex-basis:12%; }
	.pcNav .lst .item:nth-child(2){ flex-basis:21%; }
	.pcNav .lst .item:nth-child(3){ flex-basis:17%; }
	.pcNav .lst .item:nth-child(4){ flex-basis:12%; }
	.pcNav .lst .item:nth-child(5){ flex-basis:14%; }
	.pcNav .lst .item:nth-child(6){ flex-basis:12%; }
	.pcNav .lst .item:nth-child(7){ flex-basis:12%; }
}
/*==============================
#wrapper
================================ */
#wrapper{
	margin-top:90px;
}
@media screen and (max-width: 767px) { /* Smartphone */
	#wrapper{
		margin-top:55px;
	}
}
/*==============================
pageHeader
================================ */
.pageHeader{
	background:#F6F6F6;
	margin-bottom:150px;
}
.pageHeader .inner{
	width:100%;
	max-width:1200px;
	margin-left:auto;
	margin-right:auto;
	height:200px;

	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	align-items: center;
}
.pageHeader .inner .tit{
	text-align:center;
	width:100%;
	font-size:30px;
	color:#FF7F00;
	font-weight:bold;
	letter-spacing:0.3em;
}
@media screen and (max-width: 1200px) { /* Smartphone */
	.pageHeader .inner{
		max-width:calc(100% - 30px);
	}
}
@media screen and (max-width: 767px) { /* Smartphone */
	.pageHeader{
		margin-bottom:30px;
	}
	.pageHeader .inner{
		height:80px;

	}
	.pageHeader .inner .tit{
		font-size:20px;
		letter-spacing:0;
	}
}

/*==============================
mainVisual
================================ */
.mainVisual{
}
.mainVisual .lst{
}
.mainVisual .lst .item{
}
.mainVisual .lst .item img{
	width:100%;
	max-width:1920px;
	height:auto;
}
/*==============================
footer
================================ */
.footer{
	background:#FDCA00;
}
.footer .inner{
	width:100%;
	max-width:1200px;
	margin-left:auto;
	margin-right:auto;

	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	align-items: flex-start;

}

/* logoArea */
.footer .logoArea{
	flex-basis:38%;
}
.footer .logoArea .logo{
}
.footer .logoArea .logo img{
	width:100%;
	max-width:270px;
	height:auto;
}
.footer .logoArea .info{
	font-size:16px;
}

/* footer__lnks */
.footer__lnks{
	flex-basis:45%;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
}
.footer__lnks .item{
	flex-basis:49%;
	margin-bottom:1em;
}
.footer__lnks .item a{
	font-size:16px;
	color:#1F1F1F;
	display:block;
	transition: all .3s;
}
.footer__lnks .item a:hover{
	color:#f00;
}

@media screen and (max-width: 1200px) { /* Smartphone */
	.footer .inner{
		max-width:calc(100% - 30px);
	}
}
@media screen and (max-width: 1000px) { /* Smartphone */

	.footer__lnks{
		flex-basis:60%;
	}
}
@media screen and (max-width: 767px) { /* Smartphone */
	.footer {
		padding-bottom:0;
	}
	.footer .inner{
		max-width:100%;
	}
	.footer .logoArea{
		flex-basis:100%;
		padding:0 15px;
	}
	.footer .logoArea .logo{
		text-align:center;
	}
	.footer .logoArea .info{
		font-size:15px;
		text-align:center;
	}
	.footer__lnks{
		flex-basis:100%;
	}
	.footer__lnks .item{
		flex-basis:100%;
		padding:0;
		margin:0;
	}
	.footer__lnks .item a{
		display:block;
		border-bottom:solid 1px #333333; 
		padding:10px 15px;
		font-weight:bold;
		background:url(../img/arrow01.png) no-repeat right 10px center;
		background-size:10px auto;
	}
	.footer__lnks .item:first-child a{
		border-top:solid 1px #333333; 
	}
}

/*==============================
address
================================ */
.address{
	background:#333333;
	padding:5px;
}
.address span{
	display:block;
	text-align:center;
	font-size:12px;
	color:#fff;
}
@media screen and (max-width: 767px) { /* Smartphone */
}

/*==============================
pageTop
================================ */
@media screen and (max-width: 767px) { /* Smartphone */
	.pageTop{
	}
	.pageTop img{
		width:30px;
		height:auto;
	}
}
/*==============================
.dataBox
================================ */
.dataBox{
	margin-bottom:100px;
	background:#F5F5EB;
	padding:0px 0 50px;
}
/* --- */
.dataBox .titBox{
	background:#F9F0A3;
	padding:100px 0;
	text-align:center;
	margin-bottom:50px;
}
.dataBox .titBox .tit{
	display:inline-block;
	font-size:55px;
	font-weight:bold;
	background-image:url(../img/dataBox_tit_obj01.png),url(../img/dataBox_tit_obj02.png);
	background-repeat:no-repeat , no-repeat;
	background-position:left center , right center;
	background-size:auto 100%, auto 100% ;
	padding:20px 0;
}
.dataBox .titBox .titInner{
	display:inline-block;
	padding-left:190px;
	padding-right:190px;
}
.dataBox .titBox .titInner span{
	font-size:40px;
}
/* --- */
.dataBox .inner{
	width:100%;
	max-width:1200px;
	margin-left:auto;
	margin-right:auto;
}

/* --- */
.dataBox .lead{
	text-align:center;
	font-size:28px;
	font-weight:bold;
	margin-bottom:50px;
}


/* --- */
.dataBox__lst{
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
}
/* --- */

.dataBox__lst .dataBox_item{
	flex-basis:50%;
	background:#fff;
	border-bottom:solid 1px #21B7B6;
	padding:30px;
}
.dataBox__lst .dataBox_item.item01,
.dataBox__lst .dataBox_item.item02,
.dataBox__lst .dataBox_item.item11,
.dataBox__lst .dataBox_item.item12 {
	flex-basis:100%;
}

.dataBox_item:nth-child(2n){
}

.dataBox__lst .dataBox_item.item01{
	border-top:solid 1px #21B7B6;
	border-left:solid 1px #21B7B6;
	border-right:solid 1px #21B7B6;
	background:#fff;
}
.dataBox__lst .dataBox_item.item02{
	border-left:solid 1px #21B7B6;
	border-right:solid 1px #21B7B6;
	background:#eee;
}
.dataBox__lst .dataBox_item.item03{
	border-left:solid 1px #21B7B6;
	border-right:solid 1px #21B7B6;
	background:#fff;
}
.dataBox__lst .dataBox_item.item04{
	border-right:solid 1px #21B7B6;
	background:#eee;
}
.dataBox__lst .dataBox_item.item05{
	border-left:solid 1px #21B7B6;
	border-right:solid 1px #21B7B6;
	background:#eee;
}
.dataBox__lst .dataBox_item.item06{
	border-right:solid 1px #21B7B6;
	background:#fff;
	position:relative;
}
.dataBox__lst .dataBox_item.item06 img{
	position:absolute;
	bottom:0;
	left:0;
	right:0;
	margin:0 auto;
}
.dataBox__lst .dataBox_item.item07{
	border-left:solid 1px #21B7B6;
	border-right:solid 1px #21B7B6;
	background:#fff;
}
.dataBox__lst .dataBox_item.item08{
	border-right:solid 1px #21B7B6;
	background:#eee;
}
.dataBox__lst .dataBox_item.item09{
	border-left:solid 1px #21B7B6;
	border-right:solid 1px #21B7B6;
	background:#eee;
}
.dataBox__lst .dataBox_item.item10{
	border-right:solid 1px #21B7B6;
	background:#fff;
	position:relative;
}
.dataBox__lst .dataBox_item.item10 img{
	position:absolute;
	bottom:0;
	left:0;
	right:0;
	margin:0 auto;
}

.dataBox__lst .dataBox_item.item11{
	border-left:solid 1px #21B7B6;
	border-right:solid 1px #21B7B6;
	background:#fff;
}
.dataBox__lst .dataBox_item.item12{
	border-left:solid 1px #21B7B6;
	border-right:solid 1px #21B7B6;
	border-bottom:solid 1px #21B7B6;
	background:#eee;
}



/* ---- */
.dataBox_item .subTit{
	text-align:center;
	color:#222222;
	font-size:26px;
	margin-bottom:30px;
	font-weight:bold;
}
.dataBox_item .pic{
	margin-bottom:40px;
	text-align:center;
}
body.body_home .dataBox_item .pic{
	opacity:0;
	position:relative;
	top:50px;

}


.dataBox_item .pic img{
	width:100%;
	height:auto;
}
.dataBox_item .txt{
	font-size:20px;
	margin-bottom:20px;
}
.dataBox_item .txt.small{
	font-size:16px;
}
.dataBox_item.item02 .pic{
	margin-bottom:0px;
}
.dataBox_item.item02 .info{
	margin-top:-100px;
	padding-right:33%;
}

.dataBox .btnLnk{
	text-align:center;
}
.dataBox .btnLnk a{
	max-width:500px;
}


.dataBox__item__hobbys{
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
}
.dataBox__item__hobbys li{
	flex-basis:24%;
	background:#fff;
	font-size:20px;
	font-weight:bold;
	padding:5px ;
	text-align:center;
	margin-bottom:3px;
}


@media screen and (max-width: 1400px) { /* Smartphone */
	.dataBox .titBox .titInner{
		display:inline-block;
		padding-left:90px;
		padding-right:132px;
	}
}
@media screen and (max-width: 1200px) { /* Smartphone */
	.dataBox .tit,
	.dataBox .inner{
		max-width:calc(100% - 30px);
	}

}
@media screen and (max-width: 1000px) { /* Smartphone */

	.dataBox .titBox .tit{
		background-size:auto 100px, auto 100px ;
		padding:20px 0;
		font-size:35px;
	}
	.dataBox .titBox .titInner{
		display:inline-block;
		padding-left:110px;
		padding-right:110px;
	}
	.dataBox .titBox .titInner span{
		font-size:25px;
	}
	.dataBox_item.item02 .info{
		margin-top:-70px;
	}
}
@media screen and (max-width: 767px) { /* Smartphone */
	.dataBox {
		margin-bottom:0px;
	}

	.dataBox .titBox {
		padding:10px 0;
	}
	.dataBox .titBox .tit{
		background-image:url(../img/dataBox_tit_obj01.png);
		background-repeat:no-repeat;
		background-position:left center;
		background-size:80px auto;
		padding:10px 0;
	}
	.dataBox .titBox .tit .titInner{
		padding-left:55px;
		padding-right:0;
	}
	.dataBox .titBox .tit .titInner br{
		display:none;
	}

	.dataBox .lead{
		font-size:22px;
	}
	.dataBox__lst .dataBox_item{
		padding:15px;
		flex-basis:100% !important;

		border-left:solid 1px #21B7B6;
		border-right:solid 1px #21B7B6;
	}
	.dataBox__lst .dataBox_item img{
		position:relative !important;
	}
	.dataBox_item .subTit{
		font-size:24px;
	}
	.dataBox_item.item02 .info{
		margin-top:0px !important;
		padding:0;
	}
	.dataBox_item.item03{
		width:100%;
	}
}
@media screen and (max-width: 450px) { /* Smartphone */

	.dataBox .titBox .tit{
		font-size:30px;
	}
	.dataBox .titBox .tit .titInner br{
		display:block;
	}

	.dataBox .titBox .titInner span{
		font-size:25px;
	}
	.dataBox_item.item02 .info{
	}
	.dataBox__item__hobbys li{
		flex-basis:49%;
		font-size:16px;
	}
}
/*==============================
.overlayBox
================================ */
.overlayBox{
	margin-bottom:100px;
}
/* ----- */
.overlayBox .inner{
	width:100%;
	max-width:1785px;
	margin-left:auto;
	margin-right:auto;

	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
}
.overlayBox .inner .pic{
	position:relative;
	flex-basis:45%;
}
.overlayBox .inner .pic img{
	width:100%;
	height:auto;
}
.overlayBox .inner .cnt{
	flex-basis:45%;
}
/* ----- */
.overlayBox .inner .cnt .titArea{
	margin-top:50px;
	margin-bottom:50px;
	position:relative;
}
.overlayBox .inner .cnt .titArea .tit{
	font-size:46px;
	font-weight:bold;
}
.overlayBox .inner .cnt .titArea .tit > span{
	position:relative;
}
.overlayBox .inner .cnt .titArea .icon{
	position:absolute;
}
.overlayBox .inner .cnt .txt{
	font-size:24px;
	font-weight:bold;
	margin-bottom:80px;
}
/* --- wealth --- */
.overlayBox.wealth .titArea .icon{
	top:-20px;
	right:-20px;
}
.overlayBox.wealth .titArea svg{
}
/* --- reason --- */
.overlayBox.reason{
	background:#F5F5EB;
	padding:60px 0;
}
.overlayBox.reason .pic{
	order:2;
}
.overlayBox.reason .cnt{
	order:1;
	padding-left:100px;
}
.overlayBox.reason .titArea .icon{
	top:-75px;;
	left:-85px;
}
.overlayBox.reason .titArea svg{
	position:absolute;
	top:10px;
	right:-100px;
}


/* .message */

.overlayBox.message .inner{
	align-items: center;
}
.overlayBox.message{
	background:#F5F5EB;
	padding:100px 0;
}
.overlayBox.message .tit{
	font-size:46px;
	font-weight:bold;
	margin-bottom:20px;
}
.overlayBox.message .txt{
	font-size:20px;
	line-height:2;
}

/* ===== SVG ==== */



@media screen and (max-width: 1785px) { /* Smartphone */

	.overlayBox .inner{
		max-width:calc(100% - 30px);
	}
	.overlayBox .inner .cnt .titArea .tit > span{
		position:relative;
		display:block;
	}
}

@media screen and (max-width: 1400px) { /* Smartphone */

	.overlayBox .inner .pic{
		flex-basis:38%;
	}
	.overlayBox .inner .cnt{
		position:relative;
		flex-basis:58%;
	}
	.overlayBox.reason .titArea svg{
		right:-0px;
	}
}


@media screen and (max-width: 1200px) { /* Smartphone */
	.overlayBox.wealth .titArea svg{
		width:100%;
	}
	.overlayBox.reason .titArea svg{
		width:180px;
	}
}
@media screen and (max-width: 1040px) { /* Smartphone */


	.overlayBox .inner .cnt .titArea{
		margin-top:30px;
		margin-bottom:30px;
	}
	.overlayBox .inner .cnt .titArea .tit{
		font-size:30px;
		margin-bottom:20px;
	}
	.overlayBox .inner .cnt .txt{
		font-size:16px;
		margin-bottom:50px;
	}
	.overlayBox.reason .titArea svg{
		right:-10px;
	}
}
@media screen and (max-width: 850px) { /* Smartphone */
	.overlayBox.reason .titArea svg{
		right:-20px;
		width:150px;
	}
}
@media screen and (max-width: 767px) { /* Smartphone */
	.overlayBox{
		margin-bottom:0px;
		padding:30px 0;
	}

	.overlayBox .inner .pic{
		flex-basis:100%;
		order:1;
	}
	.overlayBox .inner .cnt{
		position:relative;
		flex-basis:100%;
		padding-left:0;
		order:2;
		padding:10px;
	}
	.overlayBox .inner .cnt .titArea {
		margin:0;
	}
	.overlayBox .inner .cnt .titArea .tit{
		font-size:25px;
	}
	.overlayBox .inner .cnt .txt{
		font-size:20px;
		margin-bottom:30px;
	}
	.overlayBox .inner .cnt .txt br{
		display:none;
	}



	.overlayBox .inner .cnt .titArea .tit > span{
		position:relative;
		display:block;
		width:100%;
	}
	.overlayBox .inner .cnt .titArea .tit br{
		display:none;
	}
	.overlayBox.wealth .titArea .icon{
		top:-20px;
		right:-10px;
	}
	.overlayBox.wealth .titArea .icon img{
		width:60px;
		height:auto;
	}

	.overlayBox.reason{
		background:#F5F5EB;
		padding:40px 0;
		margin-bottom:30px;
	}

	.overlayBox.reason .titArea .icon{
		top:-40px;;
		left:-30px;
	}
	.overlayBox.reason .titArea .icon img{
		width:55px;
		height:auto;
	}

	/* .message */

	.overlayBox.message .inner{
	}
	.overlayBox.message{
		padding:30px 0;
	}
	.overlayBox.message .tit{
		font-size:23px;
		margin-bottom:20px;
	}
	.overlayBox.message .txt{
		font-size:20px;
		font-weight:normal !important;
		line-height:2;
	}



}
@media screen and (max-width: 490px) { /* Smartphone */
	.overlayBox.wealth .inner .cnt .titArea .tit br{
		display:block;
	}
}
/*==============================
.aboutBox
================================ */
.aboutBox{
	margin-bottom:100px;
}
.aboutBox .inner{
}
.aboutBox .tit{
	max-width:1345px;
	margin-left:auto;
	margin-right:auto;
	font-size:45px;
	font-weight:bold;
	text-align:center;
}
.aboutBox .tit span{
	font-size:57px;
}
.aboutBox .pic{
	text-align:center;
	background:url(../img/about_bk.png) repeat-x left bottom 25%;
	background-size:50% auto;
	margin-bottom:100px;
}

body.body_home .aboutBox .pic{
	opacity:0;
	position:relative;
	top:50px;
}

.aboutBox .pic span{
	display:block;
	width:100%;
	max-width:1345px;
	margin-left:auto;
	margin-right:auto;
}
.aboutBox .pic img{
	width:100%;
	height:auto;
}
.aboutBox .btnLst{
	width:100%;
	max-width:1060px;
	margin-left:auto;
	margin-right:auto;
}

@media screen and (max-width: 1345px) { /* Smartphone */
	.aboutBox .tit{
		max-width:calc(100% - 30px);
	}
	.aboutBox .pic span{
		max-width:calc(100% - 30px);
	}
	.aboutBox .btnLst{
		max-width:calc(100% - 30px);
	}
}
@media screen and (max-width: 767px) { /* Smartphone */
	.aboutBox{
		margin-bottom:50px;
	}
	.aboutBox .tit{
		font-size:25px;
	}
	.aboutBox .tit span{
		font-size:30px;
	}
	.aboutBox .pic{
		margin-bottom:30px;
	}
}
@media screen and (max-width: 475px) { /* Smartphone */
	.aboutBox .btnLst .btnLnk{
		flex-basis:100%;
		margin-bottom:10px;
	}
}
/*==============================
.googpointBox
================================ */
.googpointBox{
	margin-bottom:100px;
}

body.body_home .googpointBox{
	opacity:0;
	position:relative;
	top:50px;
}

.googpointBox .inner{
	width:100%;
	max-width:1600px;
	height:825px;
	margin-left:auto;
	margin-right:auto;
	position:relative;
	padding:30px 0;
}

.googpointBox__tit{
	    position: absolute;
    top: 13%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
	text-align:center;
	width:100%;
	height:auto;
}
.googpointBox__tit img{
	width:90%;
	height:auto;
}
.googpointBox__tit img.sp{
	display:none;
}
.googpointBox .pic{
	position:absolute;
	text-align:center;
}
.googpointBox .pic .sp{
	display:none;
}
.googpointBox .pic img{
	width:90%;
	height:auto;
}
.googpointBox__pic01{
	top:0%;
	left:5%;
	width:100%;
}
.googpointBox__pic02{
	top:0%;
	right:5%;
	width:100%;
}
.googpointBox__pic03{
	top: 60%;
    left: 0%;
    transform: translateY(-60%);
    -webkit-transform: translateY(-60%);
    -ms-transform: translateY(-60%);
	width:100%;
}
.googpointBox__pic04{
	top: 65%;
    right: 0%;
    transform: translateY(-60%);
    -webkit-transform: translateY(-60%);
    -ms-transform: translateY(-60%);
	width:100%;
}
.googpointBox__pic05{
	bottom:0%;
	left:5%;
	width:100%;
}
.googpointBox__pic06{
	bottom:0%;
	right:5%;
	width:100%;
}
.googpointBox__tit{
	max-width:32%;
}
.googpointBox__pic01{
	max-width:31%;
}
.googpointBox__pic02{
	max-width:34%;
}
.googpointBox__pic03{
	max-width:31%;
}
.googpointBox__pic04{
	max-width:28%;
}
.googpointBox__pic05{
	max-width:47%;
}
.googpointBox__pic06{
	max-width:43%;
}

@media screen and (max-width: 1400px) { /* Smartphone */
	.googpointBox .inner{
		height:730px;
	}
}

@media screen and (max-width: 1250px) { /* Smartphone */
	.googpointBox .inner{
		height:650px;
	}
	.googpointBox__tit{ max-width:35%; }
}

@media screen and (max-width: 1100px) { /* Smartphone */
	.googpointBox .inner{
		height:575px;
	}
}

@media screen and (max-width: 980px) { /* Smartphone */
	.googpointBox .inner{
		height:530px;
	}
}

@media screen and (max-width: 880px) { /* Smartphone */
	.googpointBox .inner{
		height:465px;
	}
}

@media screen and (max-width: 770px) { /* Smartphone */
	.googpointBox{
		margin-bottom:30px;
	}
	.googpointBox .inner{
		height:390px;
	}
}

@media screen and (max-width: 630px) { /* Smartphone */
	.googpointBox .inner{
		height:340px;
	}
}

@media screen and (max-width: 550px) { /* Smartphone */
	.googpointBox .inner{
		height:285px;
	}
	.googpointBox__tit{ max-width:36%; }
}

@media screen and (max-width: 490px) { /* Smartphone */
	.googpointBox .inner{
		height:auto;
	}
	.googpointBox__tit img.pc{
		display:none;
	}
	.googpointBox__tit img.sp{
		display:inline-block;
	}
	.googpointBox__tit{
		max-width:100%;
		position:relative;
		transform: initial;
		-webkit-transform: initial;
		-ms-transform: initial;
		top:auto !important;
		left:auto !important;
		right:auto !important;
		bottom:auto !important;
		margin-bottom:20px;
	}
	.googpointBox .pic{
		width:100%;
		position:relative;
		transform: initial;
		-webkit-transform: initial;
		-ms-transform: initial;
		text-align:center;
	}
	.googpointBox .pic img{
		width:80%;
	}
	.googpointBox .pic .pc{
		display:none;
	}
	.googpointBox .pic .sp{
		display:inline-block;
	}
	.googpointBox__pic01{
		max-width:100%;
		display:block;
		top:auto !important;
		left:auto !important;
		right:auto !important;
		bottom:auto !important;
	}
	.googpointBox__pic02{
		max-width:100%;
		display:block;
		top:auto !important;
		left:auto !important;
		right:auto !important;
		bottom:auto !important;
	}
	.googpointBox__pic03{
		max-width:100%;
		display:block;
		top:auto !important;
		left:auto !important;
		right:auto !important;
		bottom:auto !important;
	}
	.googpointBox__pic04{
		max-width:100%;
		display:block;
		top:auto !important;
		left:auto !important;
		right:auto !important;
		bottom:auto !important;
	}
	.googpointBox__pic05{
		max-width:100%;
		display:block;
		top:auto !important;
		left:auto !important;
		right:auto !important;
		bottom:auto !important;
	}
	.googpointBox__pic06{
		max-width:100%;
		display:block;
		top:auto !important;
		left:auto !important;
		right:auto !important;
		bottom:auto !important;
	}
}


/*==============================
.manga
================================ */

.mangaInfo{
	background: #dbdbdb;
	padding:50px;
}
.mangaInfo .mangatit{
	text-align:center;
	margin-bottom: 30px;
}
.mangaInfo .mangatit h2{
	font-size: 25px;
}

.mangaInfo .inner{
	width:100%;
	max-width:550px;
	margin-left:auto;
	margin-right:auto;
}

.mangaInfo .manga01{
	opacity: 0;
    position: relative;
    top: 50px;
}

.mangaInfo .manga01 li img{
	width: 100%;
}

.mangaInfo .slick-arrow{
	width: 40px;
	height: 40px;
}
.mangaInfo .slick-prev{
	left: -50px;
}
.mangaInfo .slick-next {
	right: -50px;
}
.mangaInfo .slick-arrow::before{
	font-size: 40px;
}

.mangaInfo .slick-dots{
	display: flex;
	justify-content: space-around;
	padding: 10px;
}
.mangaInfo .slick-dots li  {
	width: 10px;
}
.mangaInfo .slick-dots li button{
	width: 10px;
}

.mangaInfo .slick-num{
	text-align: center;
	padding: 10px;
}

/*==============================
.galleryInfo
================================ */
.galleryInfo{
	background:#F0F0E1;
	padding:80px  0;
}
.galleryInfo .inner{
	width:100%;
	max-width:1000px;
	margin-left:auto;
	margin-right:auto;
 
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
}
.galleryInfo .pic{
	flex-basis:44%;
	text-align:center;
}
body.body_home .galleryInfo .pic{
	position:relative;
	top:50px;
	opacity:0;
}
.galleryInfo .pic img{
	width:100%;
	max-width:318px;
	height:auto;
}
.galleryInfo .info{
	flex-basis:56%;
}
.galleryInfo .info .tit{
	font-size:40px;
	margin-bottom:30px;
	color:#333333;
	font-weight:bold;
}
.galleryInfo .info .txt{
	font-size:20px;
	margin-bottom:30px;
	color:#333333;
}
.galleryInfo .info .btnLnk{

}
.galleryInfo .info .btnLnk a{
	max-width:500px;
}

@media screen and (max-width: 1000px) { /* Smartphone */
	.galleryInfo .inner{
		max-width:calc(100% - 30px);
	}
}

@media screen and (max-width: 767px) { /* Smartphone */
	.galleryInfo {
		padding:30px 0;
	}
	.galleryInfo .inner{
		max-width:calc(100% - 50px);
	}
	.galleryInfo .pic{
		flex-basis:100%;
		margin-bottom:20px;
	}
	.galleryInfo .info{
		flex-basis:100%;
	}
	.galleryInfo .info .tit{
		font-size:30px;
		margin-bottom:10px;
	}
	.galleryInfo .info .txt{
		font-size:22px;
	}
}


/*==============================
entryBox
================================ */
.entryBox{
	background:#F9F0A3 url(../img/entryBox_bk.png) repeat center center;
	background-size:100% auto;
	padding:200px 0;
	position:relative;
	overflow:hidden;
}
.entryBox .inner{
	width:100%;
	max-width:1200px;
	margin-left:auto;
	margin-right:auto;
	position:relative;
}

/* btns */
.entryBox__btns{
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	align-items: flex-start;

	width:100%;
	max-width:83%;
	margin-left:auto;
	margin-right:auto;
}
.entryBox__btns .item{
	flex-basis:50%;
}
.entryBox__btns .item a{
	width:100%;
	display:block;
	text-align:center;
	color:#FF8000;
	font-size:26px;
	background:#fff;
	font-weight:bold;
	letter-spacing:2px;

	border:solid 1px #FF8000;

	display:flex;
	flex-wrap:wrap;
	justify-content:center;
	align-items: center;

	height:150px;
	transition: all .3s;
}
.entryBox__btns .item a span{
}
.entryBox__btns .item:nth-child(1) a{
}
.entryBox__btns .item:nth-child(2) a{
	background:#FF8000;
	color:#fff;
}
.entryBox__btns .item a:hover{
	background:#FDCA00;
	border-color:#FDCA00;
	color:#fff;
}

/* pic */
.entryBox .pic02{
	position:absolute;
	right:-18%;
	top:-15%;
}
.entryBox .pic02 img{
	width:100%;
	max-width:362px;
	height:auto;
}
@media screen and (min-width: 1451px) { /* Smartphone */
	.entryBox .pic01{
		display:none;
	}
}
@media screen and (max-width: 1450px) { /* Smartphone */
	.entryBox .pic02{
		display:none;
	}
	/* pic01 */
	.entryBox .pic01{
		display:block;
		position:absolute;
		right:-10%;
		bottom:5%;
	}
	.entryBox .pic01 img{
		max-width:300px;
	}
}

@media screen and (max-width: 1000px) { /* Smartphone */
	.entryBox{
		padding:100px 0;
		background-size:cover;
	}
	.entryBox__btns{
		max-width: 100%;
	}
	.entryBox__btns .item a{
		height:80px;
		font-size:20px;
		letter-spacing:0;
	}
	.entryBox .pic01{
		position:absolute;
		right:-8%;
		bottom:-0%;
	}
	.entryBox .pic01 img{
		max-width:200px;
	}
}

@media screen and (max-width: 767px) { /* Smartphone */
	.entryBox{
		padding:80px 0;
	}
	.entryBox .inner{
		max-width:calc(100% - 30px);
	}
	.entryBox__btns .item {
		flex-basis:100%;
		margin-bottom:10px;
	}
	.entryBox__btns .item a{
		font-size:22px;
		height:60px;
	}
	/* pic */
	.entryBox .pic01{
		position:absolute;
		right:-12%;
		top:auto;
		bottom:-0%;
	}
	.entryBox .pic01 img{
		max-width:200px;
	}
}
.entry-btnLnk{
	max-width:640px;
	margin-left:auto;
	margin-right:auto;
}
.entry-btnLnk a{
}
@media screen and (max-width: 400px) { /* Smartphone */
	/* pic */
	.entryBox .pic01{
		position:absolute;
		right:-16%;
		top:auto;
		bottom:-0%;
	}
	.entryBox .pic01 img{
		max-width:150px;
	}
}

/*==============================
.tbl-jisseki
================================ */
.tbl-jisseki{
	width:100%;
}
.tbl-jisseki thead th:last-child{
	border-left:solid 1px #fff;
}
.tbl-jisseki tbody td{
	border-right:solid 1px #fff;
}
@media screen and (max-width: 767px) { /* Smartphone */

}

/*==============================
dlTbl
================================ */
@media screen and (max-width: 767px) { /* Smartphone */
}




/*==============================
reasonBox
================================ */
.reasonBox{
	font-family: 'Zen Maru Gothic', sans-serif;
	color:#552D32;
	background:#FFF9D9;
	padding:0px 0 0;
}
.reasonBox .inner{
	width:100%;
	max-width:1400px;
	margin-left:auto;
	margin-right:auto;
}

.reasonBox__tit{
	text-align:center;
	padding:100px 0;
}

.reasonBox .outer{
	width:100%;
	border-top:solid 1px #552D32;
	border-bottom:solid 1px #552D32;
}
.reasonBox .txt01{
	margin-bottom:20px;
}
/* ----- */
.reasonTit{
	font-size:54px;
	font-weight:bold;
	text-align:center;
	margin-bottom:55px;
}
.reasonTit span{
	background:url(../img/reasonTit_01.png) no-repeat left 10px;
	display:inline-block;
	padding:20px 0 20px 100px;;
}
.reason01 .reasonTit span{ background-image:url(../img/reasonTit_01.png); }
.reason02 .reasonTit span{ background-image:url(../img/reasonTit_02.png); }
.reason03 .reasonTit span{ background-image:url(../img/reasonTit_03.png); }
.reason04 .reasonTit span{ background-image:url(../img/reasonTit_04.png); }
.reason05 .reasonTit span{ background-image:url(../img/reasonTit_05.png); }

.reason02 .reasonTit{
	font-size:46px;
}
.reason03 .reasonTit{
	font-size:44px;
}
/* ----- */
.reasonSubTit01{
	font-size:24px;
	color:#532C32;
	font-weight:bold;
	background:#fff;
	padding:5px 10px;
	border:solid 1px #532C32;
	margin-bottom:35px;
	box-shadow: 5px 7px 0px 2px #FFDF1E;
	z-index:2;
}
/* ----- */
.reasonSubTit02{
	font-size:20px;
	color:#fff;
	background:#552D32;
	padding:5px 10px;
	text-align:center;
	margin-bottom:15px;
}


/* ----- */
.reasonBox .reasonData{
	border-left:solid 1px #552D32;
	border-right:solid 1px #552D32;
	border-bottom:solid 1px #552D32;
	padding:4% 7%;
}
.reasonBox .reasonData:last-child{
	border-bottom:none;
}
/* ----- */
.reasonTypeLst{
	width:100%;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	margin-bottom:10px;
}
.reasonTypeLst dt{
	flex-basis:37%;
	margin-bottom:0px;
}
.reasonTypeLst dt span{
	display:block;
	width:100%;
	border-radius:100px;
	padding:5px;
	text-align:center;
	background:#FFDF1E;
	color:#552D32;
	border:solid 1px #552D32;
	font-size:20px;
	font-weight:bold;
}
.reasonTypeLst.tit-type03 dt span{
	font-size:16px;
}
.reasonTypeLst dd{
	flex-basis:62%;
	font-size:20px;
	margin-bottom:0px;
}


@media screen and (max-width: 1400px) { /* Smartphone */
	.reasonBox .inner{
		max-width:calc(100% - 30px);
	}


	.reasonTypeLst dt{
		flex-basis:100%;
		margin-bottom:0px;
		position:relative;
		z-index:5;
	}
	.reasonTypeLst dt span{
		display:inline-block;
		width:auto;
		font-size:20px !important;
	}
	.reasonTypeLst.tit-type03 dt span{
		font-size:16px;
	}
	.reasonTypeLst dd{
		flex-basis:100%;
		font-size:20px;
		margin-bottom:0px;
		background:#fff;
		padding:25px 10px 10px 10px;
		margin-top:-10px;
		position:relative;
		z-index:1;
		border:solid 1px #552D32;
		margin-bottom:15px;
	}

}



@media screen and (max-width: 767px) { /* Smartphone */

	.reasonBox__tit{
		padding:80px 15px;
	}
	.reasonSubTit01{
		font-size:20px;
	}
	/* ----- */
	.reasonSubTit02{
		font-size:20px;
	}

	.reasonTit{
		font-size:25px;
		margin-bottom:25px;
		text-align:left;
	}
	.reasonTit span{
		background-size:25px;
		padding:5px 0 0px 30px;
	}

	.reason02 .reasonTit{
		font-size:25px;
	}
	.reason03 .reasonTit{
		font-size:25px;
	}

	/* ----- */
	.reasonBox .reasonData{
		padding:15px 10px;
	}
	.reasonBox .reasonData:last-child{
	}
}

/*==============================
reasonBox reason01
================================ */

.reasonBox .reason01{
}
.reasonBox .reason01 .layout{
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
}
.reasonBox .reason01 .layout .pic{
	flex-basis:35%;
	order:2;
}
.reasonBox .reason01 .layout .pic .imgCenter{
	margin-bottom:20px;
}
.reasonBox .reason01 .layout .cnt{
	flex-basis:60%;
	order:1;
}

/* ----- */
.fukuriLst{
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	align-items: flex-start;
}
.fukuriLst li{
	flex-basis:48%;
	margin-bottom:15px;
	background:url(../img/reason_fukuri01.png) no-repeat left top;
	padding:10px 0 0 100px;
	font-weight:bold;
	min-height:90px;
}
.fukuriLst li:nth-child(1){ background-image:url(../img/reason_fukuri01.png); }
.fukuriLst li:nth-child(2){ background-image:url(../img/reason_fukuri02.png); }
.fukuriLst li:nth-child(3){ background-image:url(../img/reason_fukuri03.png); }
.fukuriLst li:nth-child(4){ background-image:url(../img/reason_fukuri04.png); }
.fukuriLst li:nth-child(5){ background-image:url(../img/reason_fukuri05.png); }
.fukuriLst li:nth-child(6){ background-image:url(../img/reason_fukuri06.png); }
.fukuriLst li:nth-child(7){ background-image:url(../img/reason_fukuri07.png); }
.fukuriLst li:nth-child(8){ background-image:url(../img/reason_fukuri08.png); }
.fukuriLst li:nth-child(9){ background-image:url(../img/reason_fukuri09.png); }

.fukuriLst.fukuri-lst02 li{
	flex-basis:100%;
	 background-image:url(../img/reason_fukuri09.png);
}


@media screen and (max-width: 767px) { /* Smartphone */
	.reasonBox .reason01 .layout .pic{
		flex-basis:100%;
		order:1;
	}
	.reasonBox .reason01 .layout .pic .imgCenter{
		margin-bottom:20px;
	}
	.reasonBox .reason01 .layout .pic img{
		max-width:255px !important;
	}
	.reasonBox .reason01 .layout .cnt{
		flex-basis:100%;
		order:2;
	}
	.fukuriLst li{
		flex-basis:100%;
		margin-bottom:0px;
		background-size:50px auto;
		padding:10px 0 10px 60px;
		min-height:65px;
	}

}

/*==============================
reasonBox reason02
================================ */

.reasonBox .reason02{
}
.reason02 .yarigaiLst{
	width:100%;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
}
.reason02 .yarigaiLst > li{
	flex-basis:48%;
	margin-bottom:25px;
}
.reason02 .yarigaiLst > li.pic{
	margin-top:-100px;
}

@media screen and (max-width: 767px) { /* Smartphone */
	.reason02 .yarigaiLst > li{
		flex-basis:100%;
		margin-bottom:25px;
	}
	.reason02 .yarigaiLst > li.pic{
		margin-top:0px;
	}
	.reason02 .yarigaiLst > li.pic img{
		width:100%;
		height:auto;
	}

}

/*==============================
reasonBox reason03
================================ */

.reasonBox .reason03{
}
.reasonBox .reason03 .layout{
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
}
.reasonBox .reason03 .layout .pic{
	flex-basis:30%;
	padding-top:100px;
}
.reasonBox .reason03 .layout .pic.imgCenter{
	margin-bottom:20px;
}
.reasonBox .reason03 .layout .cnt{
	flex-basis:65%;
}
@media screen and (max-width: 767px) { /* Smartphone */
	.reasonBox .reason03 .layout .pic{
		flex-basis:100%;
		order:1;
		padding-top:0;
	}
	.reasonBox .reason03 .layout .pic.imgCenter{
		text-align:center;
	}
	.reasonBox .reason03 .layout .pic.imgCenter img{
		max-width:260px !important;
	}
	.reasonBox .reason03 .layout .cnt{
		flex-basis:100%;
		order:2;
	}
}
/*==============================
reasonBox reason04
================================ */
.reasonBox .reason04{
	background:url(../img/reasonBox_pic04.png) no-repeat left bottom;
	background-size:78% auto;
}
.reasonBox .reason04 .layout{
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
}
.reasonBox .reason04 .layout .leftCnt{
	flex-basis:48%;
}
.reasonBox .reason04 .layout .rightCnt{
	flex-basis:48%;
}

@media screen and (max-width: 767px) { /* Smartphone */
	.reasonBox .reason04{
		padding-bottom:200px;
		background-size:150% auto !important;
	}
	.reasonBox .reason04 .layout .leftCnt{
		flex-basis:100%;
	}
	.reasonBox .reason04 .layout .rightCnt{
		flex-basis:100%;
	}
}
/*==============================
reasonBox reason05
================================ */

.reasonBox .reason05{
}
.reasonBox .reason05 .layout{
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
}
.reasonBox .reason05 .layout .pic{
	flex-basis:30%;
	padding-top:50px;
	order:2;
}
.reasonBox .reason05 .layout .pic.imgCenter{
	margin-bottom:20px;
}
.reasonBox .reason05 .layout .cnt{
	order:1;
	flex-basis:65%;
}
@media screen and (max-width: 767px) { /* Smartphone */
	.reasonBox .reason05 .layout .pic{
		order:2;
		flex-basis:100%;
		padding-top:0px;
		text-align:center;
	}
	.reasonBox .reason05 .layout .pic img{
		max-width:255px !important;
	}
	.reasonBox .reason05 .layout .pic.imgCenter{
		margin-bottom:20px;
	}
	.reasonBox .reason05 .layout .cnt{
		order:2;
		flex-basis:100%;
	}
}

/*==============================
presidentBox
================================ */
.presidentBox{
}
.presidentBox .presidentMessageTit{
	font-size:30px;
	font-weight:bold;
	text-align:center;
	color:#FF7F00;
	display:block;
	margin:0 auto 50px;
}
.presidentBox .presidentMessageTit span{
	display:inline-block;
	padding:0 30px;
	background-image:url(../img/presidentMessageTit_before.png) , url(../img/presidentMessageTit_after.png);
	background-repeat:no-repeat , no-repeat;
	background-position:left center ,right center;
}

.presidentBox .layoutBox .pic{
}
.presidentBox .layoutBox .pic img{
	margin-bottom:15px;
	text-align:center;
}
.presidentBox .layoutBox .pic > span{ 
	display:block;
	text-align:right;
	font-size:16px;
}
.presidentBox .layoutBox .pic > span span{ 
	font-size:20px;
	font-weight:bold;
}

/*20231021修正*/

.presidentBox h2.pretit1{
	display: inline-block;
	font-size: 30px;
	color: #000;
	background: #fff4c7;
	box-shadow: 5px 5px 0px 2px #FDCA00;
	padding: 5px 15px;
	margin-top:30px;
	margin-bottom:50px;
	font-weight: bold;
}



.presidentBox h2.pretit2{
	display: inline-block;
	font-size: 25px;
	border: #FDCA00 solid 2px;
	background: ##fff;
	box-shadow: 5px 7px 0px 2px #fff4c7;
	padding: 5px 15px;
	margin-top:2em;
	margin-bottom: 1em;
	font-weight: bold;
}

.presidentBox .txt01{
	margin-bottom: 0.8em;
	padding-left: 10px;
}

.presidentBox ul{
}

.presidentBox ul li{

}


.presidentBox ul li strong{
	display: block;
	font-weight: bold;
	text-decoration: underline;
}

.presidentBox .prename{
text-align: right;
}
.presidentBox .prename span{
	font-size: 25px;
	font-weight: bold;
}

@media screen and (max-width: 767px) { /* Smartphone */
	.presidentBox .presidentMessageTit{
		font-size:22px;
		margin:0 auto 30px;
	}
	.presidentBox .layoutBox .pic{
		text-align:center;
	}
	.presidentBox .layoutBox .pic img{
		margin:0 auto 15px;
		max-width:280px !important;
	}
}
/*==============================
staffLst
================================ */
.staffLst{
}
.staffLst__item{
	position:relative;
	margin-bottom:100px;
}
.staffLst__item:last-child{
	margin-bottom:0px;
}
.staffLst__item .overlayBox{
	position:relative;
	order:10;
	margin-bottom:0px;
}
.staffLst__item .overlayBox .pic img{
	margin-right:-200px;
	vertical-align:bottom;
}
.staffLst__item .overlayBox .cnt{
	position:relative;
	flex-basis:55%;
}

.staffLst__item:nth-child(2n) .overlayBox{
	position:relative;
	margin-bottom:0px;
}
.staffLst__item:nth-child(2n) .overlayBox .pic{
	order:2;
}
.staffLst__item:nth-child(2n) .overlayBox .cnt{
	position:relative;
	flex-basis:55%;
	order:1;
}

.staffLst__item:nth-child(2n) .overlayBox .pic img{
	margin-right:0;
}

@media screen and (max-width: 767px) { /* Smartphone */
	.staffLst__item .overlayBox .cnt{
		flex-basis:100%;
		order:1;
	}

	.staffLst__item:nth-child(2n) .overlayBox{
	}
	.staffLst__item:nth-child(2n) .overlayBox .pic{
		order:1;
	}
	.staffLst__item:nth-child(2n) .overlayBox .cnt{
		flex-basis:100%;
		order:2;
	}
	.staffLst__item .overlayBox .pic img{
		margin-right:0px;
	}
}
/*==============================
staffLst__msgTit
================================ */
.staffLst__msgTit{
	margin-top:80px;
	margin-bottom:80px;
}
.staffLst__msgTit__item{
}
.staffLst__msgTit__item:nth-child(1){
}
.staffLst__msgTit__item:nth-child(2){
	margin-left:50px;
}
.staffLst__msgTit__item span{
	display:inline-block;
	font-size:24px;
	color:#532C32;
	font-weight:bold;
	background:#fff;
	padding:5px 10px;
	margin-bottom:25px;
	border:solid 1px #532C32;
	box-shadow: 5px 7px 0px 2px #FFDF1E;
	z-index:2;
	letter-spacing:5px;
	position:relative;
	padding-left:120px;
}
.staffLst__msgTit__item span:before{
	content:"";
	display:block;
	width:80px;
	height:80px;
	background:url(../img/staffLst__msgTit__item.png) no-repeat center center;
	background-size:100% auto;
	position:absolute;
	top:-10px;
	left:10px;
}


/* --- */
.staffLst__item:nth-child(2n) .staffLst__msgTit{
	margin-top:80px;
	margin-bottom:80px;
	margin-left:6%;
	position:relative;
	width:115%;
	z-index:100;
}
.staffLst__item:nth-child(2n) .staffLst__msgTit__item{
}
.staffLst__item:nth-child(2n) .staffLst__msgTit__item:nth-child(1){
}
.staffLst__item:nth-child(2n) .staffLst__msgTit__item:nth-child(2){
	margin-left:100px;
}
.staffLst__item:nth-child(2n)  .staffLst__msgTit__item span{
	display:inline-block;
	font-size:24px;
	color:#532C32;
	font-weight:bold;
	background:#fff;
	padding:5px 10px;
	border:solid 1px #532C32;
	margin-bottom:25px;
	box-shadow: 5px 7px 0px 2px #FFDF1E;
	z-index:2;
	letter-spacing:5px;
	position:relative;
	padding-left:120px;
}
.staffLst__item:nth-child(2n) .staffLst__msgTit__item span:before{
	content:"";
	display:block;
	width:80px;
	height:80px;
	background:url(../img/staffLst__msgTit__item.png) no-repeat center center;
	background-size:100% auto;
	position:absolute;
	top:-10px;
	left:10px;
}

@media screen and (max-width: 767px) { /* Smartphone */

	.staffLst__msgTit{
		margin-top:0px !important;
		margin-bottom:0px !important;
	}

	.staffLst__msgTit__item:nth-child(1){
	}
	.staffLst__msgTit__item:nth-child(2){
		margin-left:0px;
	}
	.staffLst__item:nth-child(2n) .staffLst__msgTit{
		margin-top:0px;
		margin-bottom:0px;
		margin-left:0px !important;
		width:100%;

	}

	.staffLst__item:nth-child(2n) .staffLst__msgTit__item:nth-child(2),
	.staffLst__item:nth-child(2n)  .staffLst__msgTit__item span{
		margin-left:0px !important;
	}
	.staffLst__item:nth-child(2n)  .staffLst__msgTit__item span br{
		display:none;
	}
	.staffLst__item  .staffLst__msgTit__item span,
	.staffLst__item:nth-child(2n)  .staffLst__msgTit__item span{
		display:inline-block;
		font-size:20px;
		color:#532C32;
		font-weight:bold;
		background:#fff;
		padding:5px 10px;
		border:solid 1px #532C32;
		margin-bottom:25px;
		box-shadow: 5px 7px 0px 2px #FFDF1E;
		z-index:2;
		letter-spacing:5px;
		position:relative;
		padding-left:80px;
	}

	.staffLst__item .staffLst__msgTit__item span:before,
	.staffLst__item:nth-child(2n) .staffLst__msgTit__item span:before{
		content:"";
		display:block;
		width:50px;
		height:50px;
		background:url(../img/staffLst__msgTit__item.png) no-repeat center center;
		background-size:100% auto;
		position:absolute;
		top:-10px;
		left:10px;
	}

}

/*==============================
nameJob
================================ */
.nameJob{
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	background:#fff;
	width:100%;
	max-width:720px;
	margin-left:50px;
}
.nameJob .name{
	flex-basis:66.7%;
	background:#fff;
	font-size:24px;
	font-weight:bold;
	padding:15px 10px;

}
.nameJob .beforeJob{
	flex-basis:33.3%;
	background:#FFDF1E;
	color:#1F1F1F;
	font-size:24px;
	font-weight:bold;
	padding:15px 10px;
}


.staffLst__item:nth-child(2n) .nameJob{
	margin-left:100px;
	position:relative;
	width:115%;
	z-index:100;
}
@media screen and (max-width: 1400px) { /* Smartphone */
	.nameJob{
		margin-left:0px;
	}
}

@media screen and (max-width: 767px) { /* Smartphone */
	.nameJob{
		display:flex;
		flex-wrap:wrap;
		justify-content:space-between;
		background:#fff;
		width:100%;
		max-width:720px;
		margin-left:50px;
	}
	.nameJob .name{
		flex-basis:66.7%;
		background:#fff;
		font-size:20px;
		font-weight:bold;
		padding:10px 10px;

	}
	.nameJob .beforeJob{
		flex-basis:33.3%;
		background:#FFDF1E;
		color:#1F1F1F;
		font-size:20px;
		font-weight:bold;
		padding:10px 10px;
	}


	.staffLst__item .nameJob{
		border:solid 1px #000;
		margin-left:0px !important;
		width:100% !important;
		z-index:100;
	}
}

/*==============================
staffLst__qa
================================ */
.staffLst__qa__outer{
	margin-top:-100px;
	background:#F5F5EB;
	padding:180px 0 80px;
}
.staffLst__qa{
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	width:100%;
	max-width:1200px;
	margin-left:auto;
	margin-right:auto;
}
.staffLst__qa__item{
	flex-basis:31%;
}
.staffLst__qa__item .tit{
	font-size:22px;
	font-weight:bold;
	margin-bottom:20px;
	background:url(../img/staffLst__qa__item_q.png) no-repeat left top;
	padding:3px 0 5px 50px;
}
.staffLst__qa__item .txt{
	font-size:20px;
}

@media screen and (max-width: 1200px) { /* Smartphone */
	.staffLst__qa{
		max-width:calc(100% - 60px);
	}
}
@media screen and (max-width: 767px) { /* Smartphone */
	.staffLst__qa__outer{
		margin-top:0px;
		background:#F5F5EB;
		padding:40px 0 40px;
	}
	.staffLst__qa__item{
		flex-basis:100%;
		margin-bottom:20px;
	}
}


/*==============================
schedule
================================ */
.schedule{
	background:#F9F0A3;
	padding:100px 0;
	margin-bottom:100px;
}
.schedule .inner{
	width:100%;
	max-width:1000px;
	margin-left:auto;
	margin-right:auto;
}
.scheduleTit{
	background:url(../img/scheduleTit_pic.png) no-repeat center top;
	padding-top:60px;
	text-align:center;
	color:#333333;
	font-size:40px;
	font-weight:bold;
	margin-bottom:80px;
}
.scheduleLst{
}
.scheduleLst .item{
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
	margin-bottom:25px;
}
.scheduleLst .item .aboutTime{
	flex-basis:15%;
	background:url(../img/scheduleLst_arrow.png) no-repeat 2px bottom;
}
.scheduleLst .item .aboutTime span{
	background:url(../img/scheduleLst_mark.png) no-repeat left 5px;
	padding-left:25px;
}
.scheduleLst .item:last-child .aboutTime{
	background:none;
}



.scheduleLst .item .task{
	flex-basis:56%;
}
.scheduleLst .item .task .tit{
	font-size:22px;
	font-weight:bold;
	color:#FF8000;
	margin-bottom:20px;
	display:block;
}
.scheduleLst .item .task .txt{
	font-size:20px;
}
.scheduleLst .item .pic{
	flex-basis:29%;
}
.scheduleLst .item .pic img{
	width:100%;
	max-width:285px;
	height:auto;
}

/* schedule__msg */
.schedule__msg{
	font-size:20px;
	color:#532C32;
	background:#fff;
	padding:20px;
	border:solid 1px #532C32;
	margin-bottom:25px;
	box-shadow: 5px 7px 0px 2px #FFDF1E;
	z-index:2;
	position:relative;

}
.schedule__msg .txt01{
	margin-bottom:1em;
}
.schedule__msg .txt01:last-child{
	padding-right:250px;
}
.schedule__msg:after{
	content:"";
	width:215px;
	height:160px;
	display:inline-block;
	position:absolute;
	right:2%;
	bottom:-40px;
	background:url(../img/schedule__msg_pic.png) no-repeat left top;
	background-size:100% auto;
}


@media screen and (max-width: 1000px) { /* Smartphone */
	.schedule .inner{
		max-width:calc(100% - 30px);
	}
}
@media screen and (max-width: 767px) { /* Smartphone */
	.schedule{
		padding:30px 0;
	}

	.scheduleTit{
		margin-bottom:20px;
	}

	.scheduleLst .item .aboutTime{
		flex-basis:80px;
	}
	.scheduleLst .item .task{
		flex-basis:calc(100% - 80px);
	}
	.scheduleLst .item .task .tit{
		font-size:20px;
		margin-bottom:0px;
	}
	.scheduleLst .item .task .txt{
	}
	.scheduleLst .item .pic{
		flex-basis:100%;
		text-align:right;
	}
	.scheduleLst .item .pic img{
		max-width:150px;
	}

	.scheduleLst .item .aboutTime{
		background:none;
	}

	/* schedule__msg */
	.schedule__msg{
		margin-top:100px;
		font-size:20px;
		color:#532C32;
		background:#fff;
		padding:80px 20px 20px;
	}
	.schedule__msg .txt01{
		margin-bottom:1em;
	}
	.schedule__msg .txt01:last-child{
		padding-right:0px;
	}
	.schedule__msg:after{
		content:"";
		width:100%;
		height:160px;
		display:inline-block;
		position:absolute;
		right:%;
		bottom:auto;
		top:-80px;
		background:url(../img/schedule__msg_pic.png) no-repeat center;
		background-size:200px auto;
	}

}


/*==============================
goodPoint
================================ */
.goodPoint{
	margin-bottom:100px;
}
.goodPointLst{
}
.goodPointLst .item{
	padding:70px 0 35px;
	background:#fff;
}
.goodPointLst .item:nth-child(2n){
	background:#F5F5EB;
}
.goodPointLst .item .inner{
	width:100%;
	max-width:1195px;
	margin-left:auto;
	margin-right:auto;

    color: #532C32;
    background: #fff;
    padding: 40px 80px;
    border: solid 1px #532C32;
    margin-bottom: 25px;
    box-shadow: 5px 7px 0px 2px #FFDF1E;
    position: relative;

}
.goodPointLst .item .inner:before{
	content:"";
	display:inline-block;
	width:100px;
	height:99px;
	position:absolute;
	top:-40px;
	left:-40px;
	background:url(../img/goodPoint_icon01.png) no-repeat;
	background-size:100% auto;
}
.goodPointLst .item:nth-child(1) .inner:before{ background-image:url(../img/goodPoint_icon01.png); }
.goodPointLst .item:nth-child(2) .inner:before{ background-image:url(../img/goodPoint_icon02.png); }
.goodPointLst .item:nth-child(3) .inner:before{ background-image:url(../img/goodPoint_icon03.png); }
.goodPointLst .item:nth-child(4) .inner:before{ background-image:url(../img/goodPoint_icon04.png); }
.goodPointLst .item:nth-child(5) .inner:before{ background-image:url(../img/goodPoint_icon05.png); }
.goodPointLst .item:nth-child(6) .inner:before{ background-image:url(../img/goodPoint_icon06.png); }
.goodPointLst .item:nth-child(7) .inner:before{ background-image:url(../img/goodPoint_icon07.png); }
.goodPointLst .item:nth-child(8) .inner:before{ background-image:url(../img/goodPoint_icon08.png); }
.goodPointLst .item:nth-child(9) .inner:before{ background-image:url(../img/goodPoint_icon09.png); }
.goodPointLst .item:nth-child(10) .inner:before{ background-image:url(../img/goodPoint_icon10.png); }
.goodPointLst .item:nth-child(11) .inner:before{ background-image:url(../img/goodPoint_icon11.png); }



.goodPointLst .item .inner .tit{
	font-size:22px;
	font-weight:bold;
	color:#FF7F00;
	margin-bottom:35px;
}
.goodPointLst .item .inner .txt{
	font-size:20px;
}

@media screen and (max-width: 1195px) { /* Smartphone */
	.goodPointLst .item .inner{
		max-width:calc(100% - 30px);
		padding:20px 15px 30px;
	}

	.goodPointLst .item .inner:before{
		width:60px;
		height:60px;
		top:5px;
		left:5px;
	}
	.goodPointLst .item .inner .tit{
		font-size:22px;
		margin-bottom:15px;
		padding-left:70px;
	}
}
@media screen and (max-width: 767px) { /* Smartphone */
	.goodPointLst .item{
		padding:20px 0 15px;
	}
}
 
/*==============================
galleryLst
================================ */
.galleryLst{
	width:100%;
	max-width:1290px;
	margin-left:auto;
	margin-right:auto;
	display:flex;
	flex-wrap:wrap;
	justify-content:space-between;
}
.galleryLst li{
	margin-bottom:15px;
	flex-basis:23%;
}
.galleryLst li img{
	width:100%;
	height:auto;
}
@media screen and (max-width: 1290px) { /* Smartphone */
	.galleryLst{
		max-width:calc(100% - 30px);
	}
}
@media screen and (max-width: 767px) { /* Smartphone */
	.goodPointLst .item{
		padding:20px 0 15px;
	}
	.galleryLst li{
		flex-basis:48%;
	}
}
