@charset "UTF-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200&display=swap');
@import url('https://fonts.googleapis.com/css2?family=BIZ+UDPMincho&display=swap');

html,body {
	margin:0;
	padding:0;
	scroll-behavior: smooth;
	font-size: 62.5%; /*フォントサイズの規定値を１０pxに*/
}
body {
margin: 0;
font-family: 'Noto Sans JP';
font-size: 1.6rem;
font-weight: 400;
font-style: normal;
color:#4D3837;
 background-color: #f6f4f7;
position: relative;
}
.clear{
clear: both;
}

@media print, screen and (min-width: 651px){

.esc-pc{
display: none;
}
.document{
width: 1200px;
max-width: 95%;
margin: 0 auto;
}
section{
display:block
}
a {
text-decoration: none;
color: inherit;
transition: 0.5s;
font-style: normal;
}

a:hover {
  color : #069;
}

hr {
  border: 1px #333 solid;
}
table{
width: 100%;
border-collapse: collapse;
}
td{
padding: 1%;
border: #666 1px solid;
}
ul{
margin: 0;
padding: 0;
}
dl dd{
margin-left: 0;
}
img {
	vertical-align: text-bottom;
}


/*均等配置2列ーーーーーーーーーーーーーーーーーー*/
.box_flex2{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.box_flex2 .inner{
width: 46%;
padding: 1%;
margin-bottom: 20px;
}
/*均等配置3列ーーーーーーーーーーーーーーーーーー*/
.box_flex3{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.box_flex3::after{
  content:"";
  display: block;
  width:31%;
}
.box_flex3 .inner{
width: 31%;
padding: 1%;
margin-bottom: 20px;
}
/*均等配置４列ーーーーーーーーーーーーーーーーーー*/
.box_flex4{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.box_flex4::before{
  content:"";
  display: block;
  width:22%;
  order:1;
}
.box_flex4::after{
  content:"";
  display: block;
  width:22%;
}
.box_flex4 .inner{
width: 22%;
padding: 1%;
margin-bottom: 20px;
}

.inner img{
width: 100%;
}
/*横並び配置スタンダードーーーーーーーーーーーーーーーーーー*/
.box_flex{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.box_flex .com{
 width: 70%;
}
.box_flex .photo{
width: 26%;
padding: 1%;
}
.box_flex .photo img{
width: 100%;
}
.box_fix{
position: fixed;
bottom:2%;
right:2%;
text-align: center;
 width: 180px;
 max-width: 25%;
 background-color: rgba(000,000,000,0.7);
 padding: 1% 2%;
 box-shadow: 2px 2px 2px #666;
 z-index: 9999;
 color: #EEE;
 font-family: "Times New Roman", Times, "serif";
 font-weight: 600
}

header{
display: block;
width:70%;
background-color: rgba(255,255,255,1.0);
position: fixed;
z-index: 9999;
border-radius:50px;
left: 50%;
transform: translateX(-50%);
border: #CCC 1px solid;
top:10px;
height: 60px;
overflow: hidden;
padding-left: 25%
}
header .inner_header{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
position: relative;
}

h1 {
width: 250px;
max-width: 20%;
position: absolute;
top:50%;
left: 1%;
transform: translateY(-100%)
}
h1 img{
width: 100%;
}
.toptext{
position: absolute;
text-align: center;
font-size: 1.2rem;
top: 2px;
width: 60%
}
.nav{
width:63%;
padding: 25px 0 0 20%;
position: relative;
display:block;
height: 50px
}
.nav .box_nav {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding-top: 5px
}
.nav .box_nav a {
display: block;
text-align: center;

font-size: clamp(0.9rem,0.7vw,1.5rem);
box-sizing: border-box;
margin: 0;
line-height: 120%;
position: relative;
overflow: hidden;
transition: all .2s;
color:#C57794;
text-shadow:1px 1px 0 #FFF, -1px -1px 0 #FFF,
            -1px 1px 0 #FFF, 1px -1px 0 #FFF,
            0px 1px 0 #FFF,  0-1px 0 #FFF,
            -1px 0 0 #FFF, 1px 0 0 #FFF;
transition: 0.5s
}
.nav .box_nav a:hover{
color: #B06162;
font-weight: 600
}
header .inner_header .nav_reserve{
width: 12%;
background-color: #d291a6;
padding-top: 15px;
transition: 0.5s;
cursor: pointer
}
header .inner_header .nav_reserve:hover{
background-color: #B06162
}
.inner_header .nav_reserve a{
display: block;
color: #FFF;
font-weight: 500;
text-align: center;
font-size: clamp(1.2rem,0.8vw,1.6rem);
}
.text_menu{
font-size: 1.8rem;
font-weight: 500;
text-align: center;
padding-bottom: 15px
}
/*モーダルウィンドウ*/
.modal{
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
	left: 0;
    width: 100%;
	z-index: 9999
}
.modal__bg{
    background: rgba(255,255,255,0.9);
    height: 100vh;
	left: 0;
    position: absolute;
    width: 100%;
}
.modal__content{
	color: #000;
    left: 50%;
    position: absolute;
    top: 20%;
    transform: translateX(-50%);
    width: 60%;
	height: 70vh;
	overflow-y: scroll;
	overflow-x: hidden
}
.modal__content::-webkit-scrollbar {
    width: 15px;
}
 
.modal__content::-webkit-scrollbar-track {
    background-color:#FFF
}
 
.modal__content::-webkit-scrollbar-thumb {
     background-color:#069;
	 border-radius: 5px
}
.modal__content .title_campain{
width: 70%;
margin: 0 auto 30px auto
}
.modal__content .title_campain img{
width: 100%
}
.js-modal-close a{
color: #000!important
}
.page_header{
position: relative
}
.page_header img{
width: 100%;
}
.pagetitle{
position: absolute;
top: 50%;
left: 15%;
transform: translateY(-50%);
font-size:  clamp(2.3rem,1.5vw,3.0rem);
color: #b26e87;
font-weight: 600;
}
.pagetitle img{
width: 100%
}
.breadcrumb-area {
font-size: 1.2rem;
color: #FFF;
background-color: #900;
padding: 5px 25px;
text-align: right
}

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

.footer {
	padding-bottom:10px;
    background-color:#D18591;
	color:#FFF;
	line-height:130%;padding-top: 50px
}

.footer .flex_add{
width: 1100px;
max-width: 90%;
margin: 0 auto 100px auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
padding-top: 50px;
font-size: 1.4rem;
background-color: #FFF;
padding: 2%;
border-radius: 20px;
color: #FFF;
border-top: #FFF 2px solid;
border-left: #FFF 2px solid;
border-bottom: #999 2px solid;
border-right: #999 2px solid;
}
.footer .flex_add .com{
width: 42%;
color: #333
}
.footer .flex_add .com .name1{
font-size: 1.3rem
}
.footer .flex_add .com .name2{
font-size: 2.5rem;
font-weight: 500;
padding: 3px 0 20px 0;
color: #c57e96;
text-shadow:1px 1px 0 #FFF, -1px -1px 0 #FFF,
            -1px 1px 0 #FFF, 1px -1px 0 #FFF,
            0px 1px 0 #FFF,  0 -1px 0 #FFF,
            -1px 0 0 #FFF, 1px 0 0 #FFF;
}
.footer .flex_add .com img{
width: 400px;
max-width: 90%
}
.footer .flex_add .com .subtitle{
font-size: 1.8rem;
font-weight: 500;
padding: 30px 0 15px 0;
color: #c57e96;
}
.footer .flex_add .com .add_access{
line-height: 200%
}

.footer .flex_add .com a{
display: block;
width: 80%;
text-decoration: none;
background-color: #c57e96;
color: #FFF;
text-align: center;
font-size: clamp(1.0rem,1.4vw,1.5rem);
font-weight: 400;
padding: 10px 0;
transition: 0.5s;
position: relative;
margin: 30px auto 0 auto;
border: #FFF 1px solid
}
.footer .flex_add .com a:after{
  font-family: FontAwesome;
  content: '\f105 '; /* アイコンのunicode */
  position:absolute;
  right:5px;
}
.footer .flex_add .com a:hover{
background-color: #b26e87;
}
.footer .flex_add .map{
width: 55%;
}
.footer .flex_footer{
width: 1200px;
max-width: 90%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
border-top: #FFF 1px solid;
padding-top: 20px
}
.footer .flex_footer .box_sitemap{
width: 70%;
}
.footer .sitemap{
 font-weight: 300;
 font-size:1.5rem;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.footer .sitemap a{
 display: block;
 margin-bottom: 5px;
 position: relative;
 padding-left: 15px;
 font-size: 1.4rem;
 font-weight: 500;
 color:#FFF
}
.footer .sitemap a:hover{
  color:#00c;
}
.footer .sitemap a.nohover:hover{
  color:#FFF;
}
.footer .sitemap a:before{
  font-family: FontAwesome;
  content: '\f0da';
  margin-bottom: -100px;
  position:absolute;
  left: 0;
  top:2px;
  color: #FFF;
}

.footer .right{
 width: 24%;
 font-size: 12px;
 text-align: center;
 border-left: #FFF 1px dotted;
 padding-left: 1%
}
.footer .right .logo{
margin-bottom: 5px
}
.footer .right .bunner{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin-bottom: 5px
}
.footer .right .bunner a{
display: block;
width: 49%;
margin-bottom: 5px
}
.footer .right img{
display: block;
width: 100%;
}
.footer .right .copyright{
  border-top:3px #FFF solid;
  padding-top: 15px;
  padding-left: 2%;
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 40px;
}

/*パンくずリスト　ー--------------------------------------------------------------------------*/
.breadcrumbs {
	margin-left:auto;
	margin-right:auto;
	position: absolute;
	top:350px;
    left: 0;
    right: 0;
     margin: auto;
	width: 950px;
	height: 30px;
	font-weight: 300;
	color: #999;
}
.breadcrumbs a{
 color: #999;
}

/*=======管理画面ビジュアルエディターのスタイルを反映===============================================*/
.alignleft{
float: left;
margin-right: 2%;
margin-bottom: 2%;
}
.alignright{
float: right;
margin-left: 2%;
margin-bottom: 2%;
}
}

/*モバイルー---------ー---------ー---------ー---------ー---------ー---------ー---------ー---------ー---------ー---------ー---------*/
@media screen and (max-width: 650px){

.esc-sp{
display: none;
}
#bt_coating{
display: none
}
.document{
width: 92%;
margin: 0 auto;
}
header {
display: block;
width: 100%;
background-color:#F4E9E9;
border-bottom: #C57794 1px solid;
position: fixed;
z-index: 9999;
height: 60px;
}
header .document{
width: 100%!important
}


h1 {
width: 250px;
max-width:  70%;
padding:5px 0 0 5px;
margin: 0;
}
h1 img{
width: 100%;
}
h2 {
margin: 0 40px 0 0;
padding: 0;
width: 100%;
}
h2 img{
 width: 100%;
 display: block;
}
h2 {
  border-bottom: solid 3px #6d5b2f;
  position: relative;
  color: #6d5b2f;
  margin-top: 50px;
  margin-bottom: 25px;
  font-size: 2.0rem
}

h2:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #ffc778;
  bottom: -3px;
  width: 30%;
}

h3 {
font-size: 20px;

}

h4 {
  font-weight: 500;
  text-align: center;
  margin: 0;
  padding: 25px 0
}

h5 {
  font-weight: 400;
}
hr {
  border: 1px #333 solid;
}

table{
width: 100%;
border-collapse: collapse;
}
td{
display: block;
width: 98%;
padding: 1%;
border: #666 1px solid;
}
td:nth-child(last){
margin-bottom: 25px;
}

ul{
margin: 0;
padding: 0;
}
dl dd{
margin-left: 0;
}
a{
text-decoration: none
}
img {
	vertical-align: text-bottom;
}
/*均等配置2列ーーーーーーーーーーーーーーーーーー*/
.box_flex2{
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.box_flex2 .inner{
width: 98%;
padding: 1%;
margin-bottom: 20px;
}
/*均等配置3列ーーーーーーーーーーーーーーーーーー*/
.box_flex3{
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.box_flex3::after{
  content:"";
  display: block;
  width:31%;
}
.box_flex3 .inner{
width: 98%;
padding: 1%;
margin-bottom: 20px;
}
/*均等配置４列ーーーーーーーーーーーーーーーーーー*/
.box_flex4{
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.box_fle4x .inner{
width: 98%;
padding: 1%;
margin-bottom: 20px;
}

.inner img{
width: 100%;
}
/*横並び配置スタンダードーーーーーーーーーーーーーーーーーー*/
.box_flex{
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.box_flex .com{
 width: 98%;
}
.box_flex .photo{
width: 80%;
padding: 1%;
}
.box_flex .photo img{
width: 100%;
}
.bt_link a {
display: block;
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  background-color: #999;
  padding: 6px 30px;
  text-align: center;
  margin: 10px auto;
  width: 80%;
}

/*ナビゲーション---------------------------------------*/
.globalMenuSp {
	position:fixed;
	color: #FFF;
    top: 0;
    left: 0;
    transform: translateY(-100%);
    transition: all 0.6s;
    width: 100%;
	height: 100vh;
	z-index:15;
	padding-bottom: 30px;
	height: 100vh;
	background-color: rgba(255,255,255,0.9);
	padding-top: 50px;
	
}
.globalMenuSp .box_nav-shop {
	padding: 30px 10% 0 10%;
	margin: 0 auto;
}
.globalMenuSp .box_nav-shop a {
display: block;
margin-bottom: 15px;
  padding: 3% 5px 3px 5px;
  border-bottom: #C57794 1px dotted;
  box-sizing: border-box;
  font-size: 1.7rem;
  font-weight: 500;
  text-decoration: none;
  color: #C57794;
  line-height:100%;
}


.globalMenuSp .text1{
padding-top: 30px;
text-align: center
}
.globalMenuSp .box_nav {
	padding: 20px 2% 0 2%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
 
.globalMenuSp .box_nav  a {
display: block;
  width: 50%;
  border: #C57794 1px solid;
  
  margin-left: 1%;
  margin-bottom: 15px;
  padding: 3.5vw 0;
  text-align: center;
  box-sizing: border-box;
  font-size: 3.8vw;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  color: #C57794;
	line-height:100%;
}

/* 最後はラインを描かない */
.globalMenuSp ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
 
/* このクラスを、jQueryで付与・削除する */
.globalMenuSp.active {
    transform: translateY(0%);
}
.globalMenuSp ul li ul{
	margin-top:-20px;
	padding-bottom:5px;
}
.globalMenuSp ul li ul li{
	height:28px;
	padding-bottom:0;
	border:none;
	font-weight:normal;
}
/*ハンバーガー---------*/
.navToggle {
    display: block;
    position: absolute;  
    right: 13px;
    top: 3px;
    width: 42px;
    height: 51px;
    cursor: pointer;
    z-index: 13;
  /* background: #FFF;*/
    text-align: center;
	z-index:20;
}
 
.navToggle span {
    display: block;
    position: absolute;    /* navToggleに対して */
    width: 35px;
    border-bottom: solid 3px #C57794;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    left: 6px;
	
}
 
.navToggle span:nth-child(1) {
    top: 9px;
}
 
.navToggle span:nth-child(2) {
    top: 18px;
}
 
.navToggle span:nth-child(3) {
    top: 27px;
}
 
.navToggle span:nth-child(4) {
    border: none;
    color: #C57794;
    font-size: 9px;
    font-weight: bold;
    top: 34px;
}
/*タップ後のXボタン---------*/
/* 最初のspanをマイナス45度に */
.navToggle.active span:nth-child(1) {
    top: 18px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
	border-bottom: solid 3px #C57794;
}
 
/* 2番目と3番目のspanを45度に */
.navToggle.active span:nth-child(2),
.navToggle.active span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
	border-bottom: solid 3px #C57794;
}
.bt_servicemenu a{
display: block;
border: #FFF 1px solid;
color: #FFF;
font-weight: 500;
text-align: center;
padding: 8px 0;
margin: 3px auto
}
/*モーダルウィンドウ*/
.modal{
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
	left: 0;
    width: 100%;
	z-index: 9999
}
.modal__bg{
    background: rgba(255,255,255,0.9);
    height: 100vh;
	left: 0;
    position: absolute;
    width: 100%;
}
.modal__content{
	color: #000;
    left: 50%;
    padding: 0 40px 40px 40px;
    position: absolute;
    top: 55%;
    transform: translate(-50%,-50%);
    width: 90%;
	height: 70vh;
	overflow-y: scroll;
	overflow-x: hidden;
}
.modal__content::-webkit-scrollbar {
    width: 10px;
}
 
.modal__content::-webkit-scrollbar-track {
    background-color:#CCC
}
 
.modal__content::-webkit-scrollbar-thumb {
     background-color:#069;
	 border-radius: 5px
}
.modal__content .title_campain{
margin: 0 auto 30px auto
}
.modal__content .title_campain img{
width: 100%
}
.page_header{
position: relative
}
.page_header img{
width: 100%;
}
.pagetitle{
position: absolute;
top: 60%;
left: 5%;
transform: translateY(-50%);
font-size:  clamp(2.3rem,1.5vw,3.0rem);
color: #b26e87;
font-weight: 600;
}
.breadcrumb-area {
font-size: 1.2rem;
color: #FFF;
background-color: #900;
padding: 5px 25px;
text-align: right
}
.breadcrumb-area a{
color: #FFF
}

/*パンくずリスト　ー--------------------------------------------------------------------------*/
.breadcrumbs {
display: none;
}

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

.footer {
padding-top: 50px;
	padding-bottom:10px;
    background-color:#D18591;
	color:#FFF;
	line-height:130%;
	margin-bottom: -210px /* フッター下にできるスペースを埋める */
}

.footer .flex_add{
width: 75%;
margin: 0 auto 100px auto;
padding-top: 50px;
font-size: 1.4rem;
background-color: #FFF;
padding: 5%;
border-radius: 20px;
color: #FFF;
border-top: #FFF 2px solid;
border-left: #FFF 2px solid;
border-bottom: #999 2px solid;
border-right: #999 2px solid;
}
.footer .flex_add .com{
color: #333;
margin-bottom: 30px
}
.footer .flex_add .com .name1{
font-size: 1.3rem
}
.footer .flex_add .com .name2{
font-size: 2.0rem;
font-weight: 800;
padding: 3px 0 0 0;
color: #c57e96;
text-shadow:1px 1px 0 #FFF, -1px -1px 0 #FFF,
            -1px 1px 0 #FFF, 1px -1px 0 #FFF,
            0px 1px 0 #FFF,  0-1px 0 #FFF,
            -1px 0 0 #FFF, 1px 0 0 #FFF;
}
.footer .flex_add .com img{
max-width: 100%
}
.footer .flex_add .com .subtitle{
font-size: 1.8rem;
font-weight: 500;
padding: 30px 0 15px 0;
color: #c57e96;
}
.footer .flex_add .com .add_access{
line-height: 200%
}

.footer .flex_add .com a{
display: block;
text-decoration: none;
background-color: #c57e96;
color: #FFF;
text-align: center;
font-size: 1.6rem;
font-weight: 400;
padding: 10px 0;
transition: 0.5s;
position: relative;
margin: 30px auto 0 auto;
border: #FFF 1px solid
}
.footer .flex_add .com a:after{
  font-family: FontAwesome;
  content: '\f105 '; /* アイコンのunicode */
  position:absolute;
  right:5px;
}
.footer .flex_add .com a:hover{
background-color: #b26e87;
}
.footer .flex_add .map{

}
.footer .flex_footer{
width: 90%;
margin: 0 auto;
border-top: #FFF 1px solid;
padding-top: 20px
}
.footer .flex_footer .box_sitemap{

}
.footer .sitemap{
 font-weight: 300;
 font-size:90%;
 margin-bottom: 30px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}

.footer .sitemap a{
 display: block;
 margin-bottom: 10px;
 position: relative;
 font-size: 1.5rem;
 font-weight: 500;
 color:#FFF;
 width: 48%
}
.footer .sitemap a:hover{
  color:#00c;
}
.footer .sitemap a.nohover:hover{
  color:#FFF;
}


.footer .right{
 font-size: 14px;
 text-align: center;
}
.footer .right .logo{
margin-bottom: 20px;
width: 80%;
margin-left: auto;
margin-right: auto
}
.footer .right .bunner{
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin-bottom: 5px
}
.footer .right .bunner a{
display: block;
width: 49%;
margin-bottom: 5px
}
.footer .right img{
display: block;
width: 100%;
}

.footer .right .copyright{
  border-top:3px #FFF solid;
  padding-top: 15px;
  padding-left: 2%;
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 60px;
  color: #FFF
}

.footer-fix{
position: fixed;
width: 100%;
bottom: 0;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
z-index: 9999
}
.footer-fix a{
width: calc(100% / 2);
box-sizing: border-box;
text-align: center;
padding: 15px 0;
font-weight: 600;
border: 1px solid #CCC;
color: #FFF;
display: block;
font-size: 1.5rem
}
.footer-fix a i{
color: #FFF;
font-size: 1.7rem
}
}
.pager{
padding-bottom: 50px;
}
.pager td{
 border: none!important;
 display: table-cell;
 width: 50%
}
.pager a{
 background-color: #999;
 color: #FFF;
 padding: 5px 25px;
 margin-right: 10px;
 font-size: 16px;
}



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

#page-top {
	position: fixed;
	bottom: 20px;
	right:2%;
	z-index: 9999;
}
#page-top a {
	text-decoration: none;
	background-color: #331405;
	color: #FFF;
	padding: 0 5px;
	font-weight:bold;
	font-size:30px;
	text-align: center;
	display: block;
	border-radius: 3px;
}
#page-top a:hover {
	text-decoration: none;
	opacity: 0.7;
}