	@charset "utf-8";
html { 
	font-size: 62.5%; 
}

body, p, h1, h2, h3, ul, li, figure {
    padding: 0;
    margin: 0;
}

img {
    vertical-align: bottom;
}
a {
    text-decoration: none;
}
body {
    color: #874c00;
    font-family:'Meiryo', 'BIZ UDMincho', serif;
    font-size: 1.4em;
    line-height: 1.6em;
    letter-spacing: 0.1em;
}
main {
    margin: 0 auto;
    width: 85%;
}
header {
    display: flex;
    height: 120px;
    align-items: center;
    justify-content: space-between;
    color: #212940;
    margin: 0 auto;
    width: 90%;
}
.logo_sp {
    display: none;
}
header a  {
    color: #212940;

}


header .tel a:hover {
    color: #874C00;
}
header .tel {
    font-size: 1.6em;
    display: flex;
    align-items: center;
    z-index: 2;
    position: relative;
    white-space: nowrap;
}
header .tel img {
    margin-left: 10px;
    margin-right: 10px;
}
header li  {
    list-style-type: none;
    white-space: nowrap;
}

.mainimage {
    margin-bottom: 40px;
    margin-top: 30px;
    position: relative;
}



section {
    margin-bottom: 40px;
}
h2 {
    display: inline;
}
h2:nth-child(2) {
    text-indent: 5px;
}

.text h3{
    margin-bottom: 5px;
    font-size: 1.0em    ;
}
.text {
    margin-top: 30px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}
.inner   {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
}
.reserve {
    background-color: #BB915A;
    color: #fff;
    display: block;
    padding-left: 10px;
    padding-right: 10px;
    width: 80px;
    border-radius: 20px;
}

.in {
    margin-top: 0px;
    margin-bottom: 15px;
    margin-right: 20px;
}
.in a  {
    color: #874C00;
}
.in a:hover {
    color: #BB915A;
}


td {
	padding-left: 10px;
	width: 25vw;
}
th {
	font-weight: normal;
	text-align: left;
	vertical-align: top;
	padding-left: 10px;
	line-height: 2em;
	width: 7vw;
}
th img {
	text-align: center;
	vertical-align: top;
}
table {
	margin-bottom: 15px;
	vertical-align: top;

}
.pagetop {
    position: fixed;
    right: 20px;
    bottom: 10px;
}
footer {
    background-color: #BB915A;
    width: 100%;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
    color: #fff;
}
footer .f_cocowa {
    padding-right: 15px;
    font-size: 1.4em;
    padding-bottom: 15px;
    font-weight: bold;
    font-family: 'Zen Maru Gothic', sans-serif;
}
.contact {
	display: flex;
	justify-content: center;
}
.contact .line {
	font-weight: bold;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, sans-serif;
	margin: 0 20px;
}

footer a {
    color: #fff;
}
footer a:hover {
    color: #874C00;
}

.poli{

    margin-top: 10px;
    display: flex;
    justify-content: center;
    color: #FFE9CD;
    font-size: 0.8em;
    line-height: 1.3em;
    text-decoration: none;
    }


.copy::after {
  content: '｜';
  margin-right:10px;
    margin-left:10px;
}


.policy a{
    color: #FFE9CD;
    font-size: 0.8em;
    text-decoration: none;}

footer .f_link {
    margin-top: 10px;
}

/*popup setting*/
input {
    display: none;
}

/* ポップアップwindow部分 */
#overlay {
    visibility: hidden;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 70;
    width: 100%;
    height: 100%;
}
/* オーバーレイの背景部分 */
#bg_gray {
    background: rgba(0,0,0,0.5);
    width: 100%;
    height: 100%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 80;
}
/* ウィンドウ部分 */
#window {
    width: 50%;
    padding: 20px 70px;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 20px -6px rgba(0,0,0,0.6);
    z-index: 90;
    opacity: 0;
}
/* 閉じるボタン */
#btn_cloth {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #BB915A;
    border-radius: 5px;
    z-index: 100;
    cursor: pointer;
}
#btn_cloth:hover {
    opacity: 0.7;
}
#btn_cloth span,
#btn_cloth span::before {
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background: #fff;
}
#btn_cloth span {
    transform: rotate(45deg);
}
#btn_cloth span::before {
    content: "";
    position: absolute;
    bottom: 0;
    transform: rotate(-90deg);
}


/* クリックで表示 */
#popup:checked ~ #overlay {
    visibility: visible;
}
#popup:checked ~ #overlay #window {
    animation: fadein 500ms forwards;
    animation-timing-function: ease-in-out;
}
@keyframes fadein {
    100% {
        opacity: 1;
    }
}


/* コンテンツ部分のスタイル */

#txt_label {
    cursor: pointer;
}
#txt_label:hover {
    opacity: 0.7;
}

#msg{
    color: #874c00;
    font-size: 0.8em;
}


#msg a {
    display: inline-block;
    color: #874c00;
    font-size: 0.8em;
    background: #fff;
    border-radius: 20px;
    padding: 0.5em 1.5em;
    text-decoration: none;
}
#msg a:hover {
    opacity: 0.7;
}
/*popup setting*/

.mainimage { max-width: 600px; margin: 0 auto 50px; padding: 0; height: auto;}
.mainimage img{ width: 100%;}
.mainimage .slick-prev:before,.mainimage .slick-next:before {
    color: #212940;
}

/*カルーセル左右の矢印の位置を変える*/
.out_footer .mainimage .slick-next {
    right: 20px;
    z-index: 99;
}
.out_footer .mainimage .slick-prev {
     left: 20px;
    z-index: 100;
}
.sec3 .attention {
	margin-top: 5px;
}







@media screen and (max-width:1000px){
.mainimage {
    width: 95%;
}
.text, .inner {
    width: 90%;
}
img {
    max-width: 100%;
    height: auto;
}
.attention {
	font-size: 0.8em;
}

}

@media screen and (max-width:750px){
.inner {
    display: block;
}
.down {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
header .tel {
    font-size: 1.2em;
    margin-right: 50px;
    padding-right: 30px;
}
header .tel img {
    height: 26px;
    width: 20px;
}

nav ul {
    display: none;
    background-color: rgba(255,255,255,0.58);
    text-align: right;
    padding-right: 15px;
    margin-top: 20px;
    padding-top: 10px;
    line-height: 2em;
    padding-left: 10px;
}
nav {
    position: fixed;
    top: 10px;
    right: 10px;
	z-index: 1;
}


.logo_sp {
    display: block;
}


.logo_pc {
    display: none;
}


#nav-toggle  {
    width: 60px;
    height: 60px;
    margin-left: auto;
    position: relative;
    right: -20px;
    margin-right: 30px;
}
#nav-toggle:before  {
    content: "MENU";
    color: rgba(21,29,40,1.00);
    text-align: center;
    margin-bottom: 5px;
    display: block;
}

#nav-toggle span {
    width: 34px;
    height: 4px;
    display: block;
    background-color: #212940;
    position: absolute;
    left: 12px;
    transition: 1s;
}
#nav-toggle span:nth-child(1) {
    top: 25px;
}
#nav-toggle span:nth-child(2) {
    top: 36px;
}
#nav-toggle span:nth-child(3) {
    top: 47px;
}
#nav-toggle.open span:nth-child(1) {
    top: 34px;
    transform: rotate(315deg);
}
#nav-toggle.open span:nth-child(2) {
    width: 0;
    left: 50%;
}
#nav-toggle.open span:nth-child(3) {
    top: 34px;
    transform: rotate(-315deg);
}
header {
    width: 90%;
    height: 80px;
}
td {
	width: 30%;
}
th {
	width: 10%;
	text-align: left;
	vertical-align: middle;
}


.sec3 .down {
    display: none;
}





}

@media screen and (min-width:751px){
nav ul {
    display: block!important;
}

}