――――――――――――――――
@charset "utf-8";
/* CSS Document */

/*共通部分
-------------------------------*/

html{
	font-size: 100%;
}


body{
background-color:#FFFFFF;
background-image:url("image/back.jpg");
background-repeat : repeat;
background-position: center center;
background-attachment: fixed; 
line-height:1.9;
color:#666666;
letter-spacing: 2px;

}

a{
	text-decoration:none;
}
a:hover{
  color : #ff7043;
}
.line {
  background: linear-gradient(transparent 50%, #ffd700 50%);
}

img{
	max-width:100%;
}

video{
	max-width: 95%;
	text-align: center;
}
a img.mouselink{
background:none!important;
}
 
a:hover img.mouselink{
opacity:0.6;
filter:alpha(opacity=20);
-ms-filter: "alpha( opacity=10 )";
background:none!important;
}

p{
	letter-spacing: 1px;
	font-size:16px;	
}

h2{
	color:#B78210;
	letter-spacing: 6px;
}

h3{
	color:#E42D30;
	letter-spacing: 2px;
	text-align: center;
}

hr{
	border-top: 1px solid #dcdcdc; 
	width: 100%;
	 margin:0px auto 10px auto;
	text-align: center;
	color: #D7D7D7;
}



/*ヘッダー　（サイトに合わせて調整して下さい。）*/
* {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
}

:root {
     --nav-height: 10vh;
     --nav-background: #faf0e6;
}

nav {
	  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10000;
     display: flex;
     padding:50px 50px;
     align-items: center;
     width: 100%;
     height: var(--nav-height);
     background: var(--nav-background);
	
	
}
nav a{
text-decoration: none;
color: #333;
}

nav a.current{
color: #00B0F0;
border-bottom:2px solid #00B0F0;
}

nav a:hover{
color:#F7CB4D;
border-bottom:2px solid #F7CB4D;
}

nav li{
list-style: none;
display: inline-block;
width: 10%;
min-width: 80px;
}



.logo h1 {
     font-size: 20px;
     font-weight: 600;
     text-transform: uppercase;
     letter-spacing: 3px;
}

/* nav-links */

.nav-links {
     display: flex;
     height: var(--nav-height);
     align-items: center;
     margin-left: auto;
	z-index: 2;
	
}

.nav-links li {
     list-style: none;
     margin: 0 15px;
     height: var(--nav-height);
     line-height: var(--nav-height);
     text-align: center;
}

.nav-links li a {
     text-decoration: none;
     color: rgb(99, 99, 99);
     position: relative;
}

/* menu */

.menu {
     cursor: pointer;
     background: var(--nav-background);
     border: none;
     outline: none;
     display: none;
}

.menu .bar {
     width: 20px;
     height: 2px;
     background: #000;
     border-radius: 5px;
     opacity: 1;
     visibility: visible;
     transition: 0.5s ease;
     transform-origin: left;
}

.menu .bar1 {
     margin-bottom: 5px;
}

.menu .bar3 {
     margin-top: 5px;
}

.menu.toggle .bar1 {
     transform-origin: left;
     transform: rotate(45deg);
}

.menu.toggle .bar2 {
     opacity: 0;
     visibility: hidden;
}

.menu.toggle .bar3 {
     transform-origin: left;
     transform: rotate(-45deg);
}

/* responsive */

@media screen and (max-width: 1100px) {
     .nav-links {
          flex-direction: column;
          position: fixed;
          top: 0;
          left: 100%;
          width: 300px;
          height: 100%;
          background: var(--nav-background);
          margin-top: var(--nav-height);
          transition: 0.5s ease-out;
     }
     .nav-links li {
          height: var(--nav-height);
          line-height: var(--nav-height);
          text-align: center;
          width: 100%;
          display: block;
     }
     .menu {
          display: block;
          margin-left: auto;
     }

     .menu.toggle + .nav-links {
          transform: translateX(-100%);
     }
}

.top{
   max-width:1000px;
    margin:0px auto;
	margin-top: 150px;
	
    padding:5px 0px;
}

.topbanner{
	text-align: center;
	margin-top: 100px;
	padding-bottom: 0px;
	padding-top: 0px;
background-image:url("image/back_2.png");
	background-position: center center;

}
/*---------------------------------
　index top
---------------------------------*/

/* container */

.index_top{
    width:100%;
	margin:0px auto;
	padding-top:50px;
	padding-bottom: 60px;
	background-image: url("image/top_back.jpg");
	background-repeat : repeat;
	background-position: center center;
}

.index_top .container{
    max-width:1000px;
    margin:0px auto;
}

/* content */
.index_top .content .heading{
    margin:0px auto;
    font-size: 24px;
    font-weight: normal; 
}

@media (min-width: 992px) {
    .index_top .content .list {
        display: flex;
        align-items: center;
		text-orientation: center;	
    }
}

.index_top .content .list-item {
    margin:10px 0px;
	justify-content: center;
}

@media (min-width: 992px) {
    .index_top .content .list-item {
        margin:0px auto;
        width:calc(100% / 3);
		justify-content: center;
		text-orientation: center;
		line-height:5px;
    }
}


.index_top .content .list-item .image{
    display:block;
    width:100%;
    max-width:400px;
    margin:0px auto 5px auto;
	padding: 5px;
	text-orientation: center;  	
}

.index_top .content .list-item .text{
    line-height:1.8rem;
    font-size:0.8rem;
    color:#666666;
}


/*---------------------------------
　index ITEM
---------------------------------*/

/* container */
.item{
    width:100%;
	
}
.item .container{
    max-width:1000px;
    margin:0px auto;
	margin-top: 50px;
    padding:0px 0px;
	
	text-orientation:center;
}

/* content */
@media (min-width: 992px) {
    .item .container .content {
        display: flex;
        align-items: center;
        justify-content: center;
		
    }
}
.item .content-item {
    width:100%;
text-align: center;
}

@media (min-width: 992px) {
    .item .content-item {
        width:50%;
		text-align: center;
    }
}
.item .image{
    display:block;
    max-width:100%;
    margin:0px auto;
	text-align: center;
}
.item .text{
    padding:50px;
	
}
.item .text .heading{
    margin:0px 0px 0px 0px;
    font-size: 24px;
    font-weight: normal;
    text-align: center;
	
	
}

.btn--orange,
a.btn--orange {
  color: #fff;
  background-color: #eb6100;
	margin-top:100px;
	padding: 10px;
}
.btn--orange:hover,
a.btn--orange:hover {
  color: #fff;
  background: #f56500;
}

a.btn--radius {
   border-radius: 100vh;
}


.indexillust1 .container{
    max-width:1000px;
    margin:0px auto;
    padding:0px auto;
	text-align: right;
}

/*---------------------------------
　index OEM
---------------------------------*/

.oem{
    width:100%;   
}
.oem .container{
    max-width:1000px;
    margin:0px auto;
    padding:0px 0px;
	
}
/* content */
@media (min-width: 992px) {
    .oem .container .content {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
/* PC時のみ順番を入れ替える */
@media (min-width: 992px) {
    .oem .content {
        flex-direction:row-reverse;
		   
		text-align: center;
    }
}
.oem .content-item {
    width:100%;
	text-align: center;
	 
}
@media (min-width: 992px) {
    .oem .content-item {
        width:50%;
    }
}
.oem .image{
    display:block;
    max-width:100%;
    margin:0px auto;
}
.oem .text{
    padding:50px;
}
.oem .text .heading{
    margin:0px 0px 0px 0px;
    font-size: 24px;
    font-weight: normal;
    text-align: center;
}

.illust{
	text-align: left;
    
}


/*---------------------------------
　index blog
---------------------------------*/

/* container */
.blog{
    width:100%;
	
}

.blog .container{
    max-width:1000px;
    margin: auto;
    padding:20px 0px;
	vertical-align: top;
		background-color: rgba(255,255,255,0.86);
}

/* content */
.blog .content .heading{
    margin:0px 0px 20px 0px;
    font-size: 24px;
    font-weight: normal;
    text-align: center;
}

@media (min-width: 992px) {
    .blog .content .list {
        display: flex;
        align-items: center;
        justify-content: center;	
    }
}
.blog .content .list-item {
    margin:50px 0px;
    padding:0px 50px;
    text-align:center;	
}
@media (min-width: 992px) {
    .blog .content .list-item {
        margin:0px;
        width:calc(100% / 3);
    }
}

.blog .content .list-item .image{
    display:block;
    width:100%;
    max-width:300px;
    margin:0px auto 20px auto; 
}

.blog .content .list-item .text{
    line-height:1.8rem;
    font-size:0.8rem;
    color:#666666;
}


/*---------------------------------
　index shop
---------------------------------*/

/* container */
.shop{
    width:100%;
	margin-top: 100px;
	
}
.shop .container{
    max-width:1000px;
    margin:0px auto;
    padding:10px 20px;
	background-color:rgba(244,216,96,0.47);

}

/* content */
@media (min-width: 992px) {
    .shop .container .content {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
/* PC時のみ順番を入れ替える */
@media (min-width: 992px) {
    .shop .content {
        flex-direction:row-reverse;
    }
}
.shop .content-item {
    width:100%;
}
@media (min-width: 992px) {
    .shop .content-item {
        width:50%;
    }
}
.shop .image{
    display:block;
    max-width:100%;
    margin:0px auto;
}
.shop .text{
    padding:20px;
}
.shop .text .heading{
    margin:0px 0px 20px 0px;
    font-size: 24px;
    font-weight: normal;
    text-align: center;
	 position: relative;
  padding: 0.2em;
  
}


/*---------------------------------
　index inst
---------------------------------*/

/* container */
.inst{
    width:100%;
}
.inst .container{
    max-width:1000px;
    margin:0px auto;
    padding:40px 0px;
	margin-bottom: 100px;
}
/* content */
.inst .content .heading{
    margin:0px 0px 40px 0px;
    font-size: 24px;
    font-weight: normal;
    text-align: center;
}
@media (min-width: 992px) {
    .inst .content .list {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
.inst .content .list-item {
    margin:50px 0px;
    padding:0px 50px;
    text-align:center;
}
@media (min-width: 992px) {
    .inst .content .list-item {
        margin:0px;
        width:calc(100% / 3);
    }
}
.inst .content .list-item .image{
    display:block;
    width:100%;
    max-width:300px;
    margin:0px auto 10px auto;
	border-radius:100%;
   
}
.inst .content .list-item .text{
    line-height:1.8rem;
    font-size:0.8rem;
    color:#666666;
}




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

.under{
    width:100%;
    
}
.under .container{
    max-width:1000px;
    margin:0px auto;
    padding:10px 0px;
}

/* content */
@media (min-width: 992px) {
    .under .container .content {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
.under .content-item {
    width:100%;
}
@media (min-width: 992px) {
    .under .content-item {
        width:50%;
    }
}
.under .image{
    display:block;
    max-width:100%;
    margin:0px auto;
}
.under .text{
    padding:50px;
}
.under .text .heading{
    margin:0px 0px 30px 0px;
    font-size: 24px;
    font-weight: normal;
    text-align: center;
}


.under-nav{
	max-width:1000px;
	display: flex; 
	justify-content: space-around;
	margin-top:34px;
	list-style:none;
	margin:0 auto;
	padding: 0 4%;

}

.under-nav li{
	margin-left:30px;
		-ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
	text-orientation: upright;
}

.under-nav a{
	color:#1E1E1E;
}

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

.main-under{
	margin-top:0px;
	margin-bottom: 0px;
	width: 100%;
	text-align: center;
}

footer{
	background:#432;
	text-align:center;
	padding: 26px 0;
	
}

footer p{
	color: #fff;
	font-size:0.875rem;
}
	


/*---------------------------------
　MENU beika
---------------------------------*/

.menutop{
   max-width:1000px;
    margin:0px auto;
    padding:0px 0px;
	text-align: center;
}


.beika .container{
    max-width:1000px;
    margin:0px auto;
    padding:0px 0px;
	margin-bottom: 0px;
}
.menu-nav{
	display: flex;
	max-width:1000px;
	margin-top:200px;
	justify-content: space-around;
	list-style:none;
}

/*---------------------------------
　menu
---------------------------------*/

/* container */
.menu-pic{
    width:100%;
}
.menu-pic .container{
    max-width:1000px;
    margin:auto;

    padding:10px 0px;
	
	
}
/* content */
.menu-pic .content .heading{
    margin:0px 0px 10px 0px;
    font-size: 24px;
    font-weight: normal;
    text-align: center;
	padding-bottom: .5em;
  

}



@media (min-width: 992px) {
    .menu-pic .content .list {
        display: flex;
        align-items: top;
        justify-content: center;
		vertical-align: top;
		
		
    }
}

.menu-pic .content .list-item {
    margin:10px 0px;
    padding:0px 10px;
     vertical-align: top;
	
}

@media (min-width: 992px) {
    .menu-pic .content .list-item {
        margin:0px;
        width:calc(100% / 3);
		align-items: center;
        justify-content: center;
		text-align: center;
    }
}
.menu-pic .content .list-item .image{
    display:block;
    width:100%;
    max-width:300px;
    margin:0px auto 0px auto;
   
}
.menu-pic .content .list-item .text{
    line-height:1.6rem;
    font-size:0.8rem;
    color:#666666;
	display: inline-block;
	text-align:left;
}


.menutext{
	color: rgba(75,75,75,1.00);
	font-size:0.8rem;
	
}


/*---------------------------------
　catalog
---------------------------------*/

/* container */
.catalog{
    width:100%;
}
.catalog .container{
    max-width:1000px;
    margin:auto;

    padding:10px 0px;
	
}
/* content */
.catalog .content .heading{
    margin:0px 0px 10px 0px;
    font-size: 24px;
    font-weight: normal;
    text-align: center;
	padding-bottom: .5em;
   

}

@media (min-width: 992px) {
    .catalog .content .list {
        display: flex;
        align-items: center;
        justify-content: center;
		
    }
}
.catalog .content .list-item {
    margin:10px 0px;
    padding:0px 10px;
    text-align:center;
}
@media (min-width: 992px) {
    .catalog .content .list-item {
        margin:0px;
        width:calc(100% / 3);
		align-items: center;
        justify-content: center;
		text-align: center;
    }
}
.catalog .content .list-item .image{
    display:block;
    width:100%;
    max-width:300px;
    margin:0px auto 0px auto;
   
}
.catalog .content .list-item .text{
    line-height:1.6rem;
    font-size:0.8rem;
    color:#666666;
	display: inline-block;
	text-align:left;
	
	
}

.menutext{
	color: rgba(75,75,75,1.00);
	font-size:0.8rem;
}


/*---------------------------------
　OEM
---------------------------------*/

/* container */
.oemsetumei{
    width:100%;
}
.oemsetumei .container{
    max-width:1000px;
    margin:0px auto;
    padding:10px 0px;

}

/* content */
@media (min-width: 992px) {
    .oemsetumei .container .content {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.oemsetumei .content-item {
    width:100%;
	vertical-align:top;
}

@media (min-width: 992px) {
    .oemsetumei .content-item {
        width:50%;
    }
}
.oemsetumei .image{
    display:block;
    max-width:100%;
    margin:0px auto;
}
.oemsetumei .text{
    padding:30px;
    margin: 20px;
	background: rgba(255,255,255,0.72);
}

.oemsetumei .text .heading{
    margin:0px 0px 5px 0px;
    font-size: 24px;
    font-weight: normal;
    text-align: center;
	
}
.oemsetumei .oem_design{
    padding:50px;
	 padding: 1em 1.5em;
    margin: 20px;
    background:#FFFCF7;
}

/* container */
.oemtop{
    width:100%;
	margin-top: 50px;
	

}
.oemtop .container{
    max-width:1000px;
    margin:0px auto;
    padding:50px auto;
	text-align: center;
	
}


.oemtop .text{
    background: rgba(255,255,255,0.72);
}

.oemtop .text .heading{
    
    font-size: 40px;
    font-weight: normal;
    text-align: center;
	
}

/* container */
.oemcase{
    width:100%;
	background-color:rgba(243,222,172,0.49);
}
.oemcase .container{
    max-width:1000px;
    margin:0px auto;
    padding:10px 0px;
	
}

/* content */
@media (min-width: 992px) {
    .oemcase .container .content {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.oemcase .content-item {
    width:100%;
}

@media (min-width: 992px) {
    .oemcase .content-item {
        width:50%;
    }
}
.oemcase .image{
    display:block;
    max-width:100%;
    margin:0px auto;
}
.oemcase .text{
    padding:30px;
    margin: 10px;
    
}

.oemcase .text .heading{
    margin:0px 0px 5px 0px;
    font-size: 24px;
    font-weight: normal;
    text-align: center;
	padding-bottom: .1em;
    border-bottom: 1px solid #FFFFFF;
	
}
.oemcase .oem_design{
    padding:30px;
	 padding: 1em 1.5em;
    margin: 20px;
    background:#FFFCF7;
}

/* container */
.oemtop{
    width:100%;
}
.oemtop .container{
    max-width:1000px;
    margin:0px auto;
    padding:0px auto;
	text-align: center;
}






/*---------------------------------
　SHOP
---------------------------------*/

.baiten{
	display: list-item;  /* 縦に並べる */
	list-style:none;
}

.baiten-nav{
	text-align: center;
	background-color:#F3EBDF;

	
}

.map{
	text-align: center;
}

.baiten-other{
	font-size: 14px;
	color: rgba(255,47,50,1.00);
}


/*カレンダー
-----------------------------*/


/* container */
.care{
    width:100%;
	
}
.care .container{
    max-width:1000px;
    margin:0px auto;
	margin-top: 50px;
    padding:0px 0px;
	text-orientation:center;
}

/* content */
@media (min-width: 992px) {
    .care .container .content {
        display: flex;
        align-items: center;
        justify-content: center;
	}
}
.care .content-item {
    width:100%;
text-align: center;
}

@media (min-width: 992px) {
    .care .content-item {
        width:50%;
		text-align: center;
    }
}
.care .image{
    display:block;
    max-width:100%;
    margin:0px auto;
	text-align: center;
}
.care .text{
    padding:50px;
	
}
.care .text .heading{
    margin:0px 0px 0px 0px;
    font-size: 24px;
    font-weight: normal;
    text-align: center;
	
	
}


table{
	background-color:#FFFFFF;
	justify-content: space-around;
	border-spacing:10px; 
	vertical-align:middle;
	margin: auto;
}

.close {
	color:#FFFFFF;
	background-color:#E42D30;	
}

table td {
	text-align: center;
	padding: 10px;
	background-color:rgba(252,252,252,1.00);
	justify-content: space-around;
}

.gaiyou-care{
	background-color: #B39056;
	color: #F9EEEE;
	text-align: center;
	margin: 30px;

	
}

.space {
	color:#FFFFFF;
	background-color: rgba(255,255,255,0.00);
		
}


/*---------------------------------
　会社案内
---------------------------------*/

/* container */
.gaiyou{
    width:100%;
}
.gaiyou .container{
    max-width:1000px;
    margin:0px auto;
}

/* content */
@media (min-width: 992px) {
    .gaiyou .container .content {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
.gaiyou .content-item {
    width:100%;
}
@media (min-width: 992px) {
    .gaiyou .content-item {
        width:50%;
    }
}
.gaiyou .image{
    display:block;
    max-width:100%;
    margin:0px auto;
}
.gaiyou .text{
    padding-left: 20px;
	padding-right: 20px;

}
.gaiyou .text .heading{
    margin:100px 0px 30px 0px;
    font-size: 24px;
    font-weight: normal;
    text-align: center;
	background-color: #B39056;
	color: #FFFFFF;
	
}

/*---------------------------------
　こだわり
---------------------------------*/
.concept_title{
   max-width:1000px;
    margin:50px auto;
    padding:0px 0px;
}

/* container */
.concept{
    width:100%;
}
.concept .container{
    max-width:1000px;
    margin:0px auto;
    padding:80px 0px;
}
/* content */
.concept .content {
    padding:50px;
    text-align:center;
}
.concept .content .heading{
    margin:0px 0px 40px 0px;
    font-size: 24px;
    font-weight: normal;
    text-align: center;
}


/*---------------------------------
　こだわり写真
---------------------------------*/

/* container */
.message1{
    width:100%;
}
.message1 .container{
    max-width:1000px;
    margin:10px auto;
    padding:20px;
	background-color:rgba(255,255,255,0.76);
	 border: solid 2px #B9B9B9;/*線*/
}

/* content */
@media (min-width: 992px) {
    .message1 .container .content {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
.message1 .content-item {
    width:100%;
}
@media (min-width: 992px) {
    .message1 .content-item {
        width:50%;
    }
}
.message1 .image{
    display:block;
    max-width:100%;
    margin:0px auto;
}
.message1 .text{
    padding:50px;
}
.message1 .text .heading{
    margin:0px 0px 30px 0px;
    font-size: 24px;
    font-weight: normal;
    text-align: center;
	
}



/*---------------------------------
　index OEM
---------------------------------*/

/* container */
.message2{
    width:100%;
   
}
.message2 .container{
   max-width:1000px;
    margin:20px auto;
    padding:20px;
	background-color:rgba(255,255,255,0.76);
	border: solid 2px #B9B9B9;/*線*/
}

/* content */
@media (min-width: 992px) {
    .message2 .container .content {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
/* PC時のみ順番を入れ替える */
@media (min-width: 992px) {
    .message2 .content {
        flex-direction:row-reverse;
    }
}
.message2 .content-item {
    width:100%;
	
}
@media (min-width: 992px) {
    .message2 .content-item {
        width:50%;
    }
}
.message2 .image{
    display:block;
    max-width:100%;
    margin:auto;
}
.message2 .text{
    padding:auto;
	
}



/*お知らせ
-----------------------------*/

.news{
	
max-width: 1000px;

}

.post-info{
	position:relative;
	
	margin-bottom:40px;
	margin-top: 80px;
	background: #FFFFFF;
	
	padding: 20px;
}

.post-date{
	background:#D0AA2B;
	border-radius:50%;
	color:#FFF;
	width:80px;
	height:80px;
	font-size:1.2rem;
	text-align:center;
	position:absolute;
	top: 5px;
	padding-top:5px;
}



.post-date span{
	font-size:1rem;
	border-top: 1px #FDFCFC solid;
	padding-top:6px;
	display:block;
	width:50%;
	margin: 0 auto;
}



.post-title,
.post-cat{
	margin-left: 120px;
}

.news-text{
	text-align: justify;
	text-justify:inter-character;
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 50px;
	padding-bottom: 100px;
}
	


/*サイドバー
-----------------------------*/
.kizi{
	width: 40%;
	height:50%;
	margin-top: 80px;
	margin-left: 20px;
	background-color: #FFFFFF;
	padding: 10px;
}

.sub-title{
	padding: 0 8px 8px;
	border-bottom: 2px #A37E38 solid;
	font-weight:normal;
	color: #A37E38;
}

.sub-menu{
	margin-bottom:60px;
	list-style:none;
}

.sub_menu li{
	border-bottom:1px #868686 solid;
}

.sub-menu a{
	color:#4F4F4F;
	padding:10px;
	display:block;
}

.sub-menu a:hover{
	color:#B93E40;
}


.news-contents{
	display:flex;
	justify-content: space-between;
	margin-bottom: 50px;
	max-width: 1000px;
	margin:0 auto;

}

@media screen and (max-width: 992px){
	.kizi {
        display: none;
    }
}

/*お知らせナビ
-----------------------------*/

.news-nav{
text-align: center;
}
.news-nav ul{
margin: 0 ;
padding: 0 ;
}
.news-nav li{
list-style: none;
display: inline-block;
width: 10%;
min-width: 200px;
}
.news-nav li:not(:last-child){
border-right:2px solid rgba(209,165,93,1.00);
}
.news-nav a{
text-decoration: none;
color: #333;
}
.news-nav a.current{
color: #00B0F0;
border-bottom:2px solid #00B0F0;
}
.news-nav a:hover{
color:#F7CB4D;
border-bottom:2px solid #F7CB4D;
}


/*メールフォーム
-----------------------------*/

/* container */
.mail{
    width:100%;
	margin-top: 200px;
}
.mail .container{
    max-width:1000px;
    margin:0px auto;
	background-color:rgba(255,255,255,0.76);
}

/* content */
@media (min-width: 992px) {
    .mail .container .content {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
.mail .content-item {
    width:100%;
}
@media (min-width: 992px) {
    .mail .content-item {
        width:50%;
    }
}
.mail .image{
    display:block;
    max-width:100%;
    margin:0px auto;
}
.mail .text{
    padding-left: 20px;
	padding-right: 20px;
	text-align: center;
	
}
.mail .text .heading{
    margin:100px 0px 30px 0px;
    font-size: 24px;
    font-weight: normal;
    text-align: center;
	
}



table {
  border-collapse: collapse;
}
 

input[type="submit"],
input[type="text"],
select,
textarea,
button {
  -moz-appearance: none;
  -webkit-appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
  border: none;
}
 
 
input[type="text"],
textarea {
  background: #f8f8f8;
  display: block;
  font-size: 16px;
  padding: 12px 15px;
  width: 480px;
  transition: 0.8s;
  border-radius: 0;
}
 
input[type="text"]:focus,
textarea:focus {
  background: #e9f5fb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
 
textarea[name="content"] {
  display: inline-block;
  width: 100%;
  height: 200px;
}
 
input::placeholder,
textarea::placeholder {
  color: #ccc;
}
 
::-webkit-input-placeholder {
  color: #ccc;
  opacity: 1;
}
 
::-moz-placeholder {
  color: #ccc;
  opacity: 1;
}
 
:-ms-input-placeholder {
  color: #ccc;
  opacity: 1;
}
 
.form-table {
  width: 100%;
	margin-top: 20px;
}
 
.form-table th,
.form-table td {
  border-top: 1px solid #B0A6A6;
  border-bottom: 1px solid #B0A6A6;
	 text-align: left;
  padding: 20px;
}
 
.form-table th {
  background:#FFDC85;
  padding-left: 50px;
  text-align: left;	
  width: 300px;
}


input[type="submit"] {
  padding: 1em 1em;
	background-color:#DCDCDC;
}

input[type="reset"] {
  padding: 1em 1em;
	background-color:#DCDCDC;
}



/* container */
.menuback{
    width:100%;
    
}
.menuback .container{
    max-width:1000px;
    margin:auto;
	margin-top: 80px;
    padding:auto;
	background-color: #FFFFFF;

}

/* content */
.menuback .content .heading{
    margin:0px 0px 5px 0px;
    color:#E3A04A;
    font-size: 22px;
    text-align: center;
	letter-spacing: 5px;
	padding-bottom: .5em;
    border-bottom: 1px solid #ccc;

}

@media (min-width: 992px) {
    .menuback .content .list {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.menuback .content .list-item {
    padding:20px;
    line-height:1.8rem;
    color:#5A5454;
    text-align:center;
	letter-spacing: 5px;
}

@media (min-width: 992px) {
    .menuback .content .list-item {
        width:50%;
    }
}

.fadein {
    opacity : 0;
    transform : translate(0, 120px);
    transition : all 1000ms;

}
.fadein.scrollin {
    opacity : 1;
    transform : translate(0, 0);
}


a img.fadein{
background:none!important;
}
 
a:hover img.fadein{
opacity:0.6;
filter:alpha(opacity=60);
-ms-filter: "alpha( opacity=60 )";
background:none!important;
}


.side {
  display: flex;
  align-items: center;
  justify-content: center;
  position: -webkit-sticky;
  position: sticky;
  top: 180px;
  width: 250px; 
  height: 80px;
  color: #fff;
}

@media screen and (max-width: 992px){
	.side {
        display: none;
    }
}