@charset "utf-8";
/* CSS Document */
/*共通要素*/
html{
	margin: 0;
	padding: 0;
}
body{
	font-family: 'Cinzel', 'Sawarabi Mincho', serif;
	font-weight:100;
	background: linear-gradient(135deg, #fefaee, #ae9873);
}
a,a:hover{
	text-decoration: none;
}

.f-eng{
	font-family: 'Cinzel', 'Sawarabi Mincho', serif;
	font-weight:100;
}

/*フェードイン*/
	/*1.フェードインアニメーションの指定*/
.scrollanime {opacity: 0;} /*一瞬表示されるのを防ぐ*/
.fadeInDown {
    animation-name: fadeInDown;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}
@keyframes fadeInDown {
    0% {
        opacity: 0;         
    }
    100% {
    opacity: 1;
    transform: translate(0);
    }
}
	/*2.上下の動きを指定*/
.updown {transform: translateY(-50px);}
.downup {transform: translateY(50px);}
	/*3.左右の動きを指定*/
.sect02{overflow: hidden;} /*横スクロールバーを隠す*/
.slide-right {transform: translateX(200px);}
.slide-left {transform: translateX(-200px);}

/*ページ内リンクの位置調整*/
#system,#peony,#recruit{
	margin-top: -80px;
	padding-top:80px;
}

/*navbar*/
nav{
	max-width:1200px;
	margin:0 auto;
}
a.nav-link{
	font-size: 14px;
	color:#ffffff;
}
.bg-nav{
	background-color: rgba( 0, 0, 0, 0.5 );
}
.navbar-toggler{
	background: hsla(0,0%,77%,0.85);
}
@media screen and (min-width:768px) {
.l-nav{
	display: none;
}
.navbar-nav {
}
.navbar-nav ul {
}
.navbar-nav li {
	/*border-top: 0px solid rgba(0, 0, 0, .1);*/
}
.navbar-nav li a {
	font-weight: bold;
	text-align: center;
	/*border-left: 1px solid rgba(255, 255, 255, .75);
	border-right: 1px solid rgba(0, 0, 0, .1);*/
}
.navbar-nav li:last-child a {
	border-right: 0;
	border-radius: 0 3px 3px 0;
}
}
@media screen and (max-width:768px) {
	.m-nav{
	display: none;
	}
	.slider-container,.header-img{
		margin-top: 80px;
	}
}

/*画像の上に文字*/
.text-on {
	position: relative;
}
.text-on p {
	position: absolute;
	width:100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	margin:0;
	text-align: center;
	color: #D4D4D4;
	font-weight: bold;
	font-size: 2.0vw;
	z-index:1000;
}
.text-on p span{
	font-size: 1.4vw;
	display: block;
}
.text-on::after {
  position: absolute;
  top: 30%;
  left: 0;
  display: block;
  width: 100%;
  height: 40%;
  content: "";
  background: rgba(0, 0, 0, 0.6);
}
@media screen and (max-width:768px) {
	.text-on p {
		font-size: 6.0vw;
	}
	.text-on p span{
		font-size: 3.0vw;
	}
	.text-on::after {
		top: 20%;
		height: 60%;
	}
}

/*HOME*/
.header img{
	width: 100%;
}

/*MESSAGE*/
#message{
	text-align: center;
	padding-top: 1.0rem;
	padding-bottom: 1.0rem;
	background-color: #1F1714;
	color: #DCDCDC;
}
#message p{
	font-size: 1.4rem;
}
#message p span{
	display: block;
	font-size: 0.8rem;
}
.line {
  position: relative;
  display: inline-block;
  padding: 0 65px;
  text-align: center;
}
.line:before,
.line:after {
  position: absolute;
  top: calc(50% - 3px);
  width: 50px;
  height: 6px;
  content: '';
  border-top: solid 2px #DCDCDC;
  border-bottom: solid 2px #DCDCDC;
}
.line:before {
  left: 0;
}
.line:after {
  right: 0;
}
.balloon {
  position: relative;
  display: inline-block;
  margin: 1.5em 30px 1.5em 0;
  padding: 7px 10px;
  min-width: 120px;
  max-width: 100%;
  color: #DCDCDC;
  background: #1F1714;
  border: solid 2px #555;
  box-sizing: border-box;
	text-align: left;
	font-family: 'Yusei Magic', sans-serif;
}
.balloon:before {
  content: "";
  position: absolute;
  top: 50%;
  right: -24px;
  margin-top: -12px;
  border: 12px solid transparent;
  border-left: 12px solid #1F1714;
  z-index: 2;
}
.balloon:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  margin-top: -14px;
  border: 14px solid transparent;
  border-left: 14px solid #555;
  z-index: 1;
}
#message div.balloon p {
	margin: 0;
	padding: 0;
	font-size: 1.0rem;
	line-height: 2.5rem;
}
.message{
	text-align: right;
}
.face{
	text-align: left;
}
.face div{
	text-align: center;
	width: 50%;
}
.face img{
	width: 100%;
	margin: 0;
	padding: 0;
}
@media screen and (max-width:768px) {
	.message{
		text-align: center;
	}
	.face div{
		margin: 0 auto;
	}
	.balloon {
		margin: 1.5rem auto;
		width: 90%;
	}
	.balloon:before {
		top: 100%;
		right: 50%;
		margin-top: 0;
		border-left: none;
		content: "";
		position: absolute;
		bottom: -24px;
		left: 50%;
		margin-left: -15px;
		border: 12px solid transparent;
		border-top: 12px solid #1F1714;
		z-index: 2;
	}
	.balloon:after {
		top: 100%;
		right: 49%;
		margin-top: 0;
		border-left: none;
		content: "";
		position: absolute;
		bottom: -30px;
		left: 50%;
		margin-left: -17px;
		border: 14px solid transparent;
		border-top: 14px solid #555;
		z-index: 1;
	}
}

/*SYSTEM*/
#system{
	padding-bottom: 80px;
}
#system img{
	width: 100%;
}
#system table {
  border-collapse: collapse;
  margin: 2.0rem auto;
  padding: 0;
  width: 650px;
  table-layout: fixed;
  color: #4CAF50;
}

#system table tr {
  background-color: #fff;
  padding: .35em;
  border-bottom: 1px dotted #8BC34A;
}
#system table tr:last-child{
   border-bottom: 2px solid #18521b;
}
#system table th,
#system table td {
  padding: 1em 10px 1em 1em;
}
#system tbody th {
    color: #0f7d13;
}
#system .price{
   text-align: center;
}
#system caption {
    caption-side: bottom;
	text-align: center;
	margin-top: 0;
	padding: 0;
	background-color: #FFFFFF;
	color: #0f7d13;
	font-weight: bold;
}
@media screen and (max-width: 768px) {
  #system table {
    border: 0;
    width:100%;
  }
  #system table th{
    display: block;
    border-right: none;
    border-bottom: 2px solid #0f7d13;
    padding-bottom: .6em;
    margin-bottom: .6em;

  }
  #system table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  
  #system table tr {
    display: block;
    margin-bottom: 2em;
        border-bottom: 2px solid #0f7d13;
  }
  
  #system table td {
    border-bottom: 1px solid #bbb;
    display: block;
    font-size: .8em;
    text-align: right;
    position: relative;
    padding: .625em .625em .625em 4em;
    border-right: none;
  }
  
  #system table td::before {
    content: attr(data-label);
    font-weight: bold;
    position: absolute;
    left: 10px;
  }
  
  #system table td:last-child {
    border-bottom: 0;
  }
	#system .price{
		text-align: right;
	}
}

/*PEONY*/
#peony{
	background-color: #1F1714;
	color: #DCDCDC;
}
.peony{
	position: relative;
	height: 500px;
}
#peony img.logo{
	max-width: 50%;
	max-height: 80%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#peony table {
	margin: 20px auto;
}
#peony table th {
	background: #5E4D46;
	border: solid 1px #ccc;
	color: #fff;
	padding: 10px;
}
#peony table td {
	border: solid 1px #ccc;
	padding: 10px;
}
#peony h3{
    position: relative;
    border-bottom: 2px solid #DCDCDC;
    text-align: center;
    font-size: 24px;
    padding: 30px 0 10px;
    margin: 0;
}
    /* 下三角 */ 
    #peony h3:before{
        content: "";
        position: absolute;
        bottom: -40px;
        left: 50%;
		transform: translateX(-50%);
        border: 20px solid transparent;
        border-top: 20px solid #1F1714;
        z-index: 2;
    }
    #peony h3:after {
        position: absolute;
        border: 20px solid transparent;
        border-top-color: #DCDCDC;
        border-bottom-width: 0;
        bottom: -21px;
        content: "";
        left: 50%;
		transform: translateX(-50%);
        z-index: 1;
    }
#peony h3 span{
	display: block;
	font-size: 0.7rem;
}
@media screen and (max-width:768px) {
	.peony{
		height: 150px;
	}
	#peony table {
		width: 80%;
	}
	#peony table th,#peony table td {
		border-bottom: none;
		display: block;
		width: 100%;
	}
	#peony table tr.last td {
		border-bottom: solid 1px #ccc;
		width: 100%;
	}
}
.insta_btn{/*ボタンの下地*/
  color: #FFF;/*文字・アイコン色*/
  border-radius: 7px;/*角丸に*/
  position: relative;
  display: inline-block;
  height: 50px;/*高さ*/
  width: 95%;/*幅*/
  text-align: center;/*中身を中央寄せ*/
  font-size: 20px;/*文字のサイズ*/
  line-height: 50px;/*高さと合わせる*/
  background: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;/*グラデーション①*/
  overflow: hidden;/*はみ出た部分を隠す*/
  text-decoration:none;/*下線は消す*/
}
.insta_btn:before{/*グラデーション②*/
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;/*全体を覆う*/
  height: 100%;/*全体を覆う*/
  background: -webkit-linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
  background: linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
}
.insta_btn:hover {
	color: #ffffff;
	
}
.insta_btn .fa-instagram{/*アイコン*/
  font-size: 32px;/*アイコンサイズ*/
  position: relative;
  top: 6px;/*アイコン位置の微調整*/
}
.insta_btn span {/*テキスト*/
  display:inline-block;
  position: relative;
  transition: .5s
}
.insta_btn:hover span{/*ホバーで一周回転*/
  -webkit-transform: rotateX(360deg);
  -ms-transform: rotateX(360deg);
  transform: rotateX(360deg);
}


/*RECRUIT*/
#recruit{
	margin-bottom: 2.0rem;
}
#recruit img{
	width: 100%;
}
#recruit h2 {
    position: relative;
    color: #000;
    text-align: center;
    font-size: 24px;
    padding: 30px 0;
    margin: 0;
}
    /* 下三角 */ 
    #recruit h2:after {
        border: 20px solid transparent;
        border-top-color: #000;
        border-bottom-width: 0;
        bottom: 0;
        content: "";
        display: block;
        left: 50%;
        position: absolute;
        width: 0;
    }
#recruit table{
	width: 90%;
	margin: 1.0rem auto;
	border-collapse: separate;
	border-spacing: 0rem 1.0rem;
	border-left: #C43B55 solid 5px;
	padding-left: 0.5rem;
}
#recruit table tr{
	margin-bottom: 10.0rem;
}
#recruit table th{
	position: relative;
	text-align: left;
	vertical-align: top;
	width: 7rem;
}
#recruit table th:after{
	display: block;
	font-family: "Font Awesome 5 Free";
	content: "\f054";
	position: absolute;
	top: 0;
	right:20px;
}
#recruit table td{
  text-align: left;
}
@media screen and (max-width:992px) {
	#recruit table{
		border-left: none;
		padding-left: 0;
		border-top: #C43B55 solid 5px;
		padding-top: 0.5rem;
	}
}

/*Contact*/
#contact img{
	width: 100%;
}
table.formTable{
	width:100%;
	max-width: 700px;
	margin:0 auto;
	border-collapse:collapse;
}
table.formTable td,table.formTable th{
	border:1px solid #ccc;
	padding:10px;
}
table.formTable th{
	width:30%;
	font-weight:normal;
	background:#efefef;
	text-align:left;
}
caption {
  caption-side: top;
	color: #1E1E1E;
}
input{
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
}
.formTable td{
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
}
@media screen and (max-width:768px) {
	table.formTable th, table.formTable td {
		width:auto;
		display:block;
	}
	table.formTable th {
		margin-top:5px;
		border-bottom:0;
	}
	input[type="text"], textarea {
		width:80%;
		padding:5px;
		font-size:110%;
		display:block;
	}
	input[type="submit"], input[type="reset"], input[type="button"] {
		display:block;
		width:100%;
		height:40px;
	}
}

/*フッター*/
footer{
	background-color: #1F1714;
	color: #DCDCDC;
	padding-top: 1.0rem;
}
footer a, footer a:focus, footer a:active {
    color: #DCDCDC;
}
.nav-list li {
    padding-top: 5px;
    padding-bottom: 5px;
}
.nav-list li a span {
	font-size:0.7rem;
}
.nav-list li a:hover:before {
    margin-left: 0;
    opacity: 1;
    visibility: visible;
}

ul, ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-list li a:before {
    content: "\f061";
    font: 900 21px/1 "Font Awesome 5 Free";
    color: #4d6de6;
    display: inline-block;
    vertical-align: baseline;
    margin-left: -28px;
    margin-right: 7px;
    opacity: 0;
    visibility: hidden;
    transition: .22s ease;
}
@media(min-width: 768px){
  a[href^="tel:"]{
    pointer-events: none;
  }
}
