/*-----------------------------------------------------------------
reset
-----------------------------------------------------------------*/
*{
    margin: 0;
    padding: 0;
    font-size: 16px;
    list-style: none;
    text-decoration: none;
}

@media screen and (max-width: 750px){
    *{
        font-size: 12px;
    }
}

/*-----------------------------------------------------------------
common
-----------------------------------------------------------------*/

/*width: 100%;*/
h1,
header,
main,
#privacy h2,
#sitemap dl dt,
#sitemap dl dd,
#sitemap dl dt a,
#sitemap dl dd a,
#reserve dl,
#reserve table,
#reserve table tbody,
#reserve table tbody tr,
#reserve table tbody tr td span,
#request form,
#request form dl dd ul,
#request form dl dd input,
#request form dl dd :not(ul input),
#request form dl dd select,
#request form dl dd textarea,
#thanks div
#thanks dt,
#thanks dt h4,
#thanks dd,
#thanks dd a,
#thanks dd dl,
#thanks dd dl dt,
#thanks dd dl dd{
    width: 100%;
}

/*display: flex;*/
header,
header ul,
main,
#sitemap,
#sitemap dl,
#sitemap dl dt,
#sitemap dl dd,
#request form dl,
#request form dl dt,
#request form dl dd,
#request form dl dd ul,
#request form dl dd ul li,
#request form dl dd input,
#request form dl dd select,
#request form dl dd textarea,
#thanks div{
    display: flex;
    flex-wrap: wrap;
}

/*align-items: center;*/
header,
#sitemap dl dt,
#sitemap dl dd,
#request form dl,
#request form dl dt,
#request form dl dd,
#request form dl dd ul,
#request form dl dd ul li,
#request form dl dt input,
#request form dl dt select{
    align-items: center;
}

/*align-items: flex-start;*/
#sitemap{
    align-items: flex-start;
}

/*justify-content: flex-end; */
header ul{
    justify-content: flex-end;    
}

/*color: #fff;*/
h1,
header,
header ul li a,
#reserve table tbody tr .sanday,
#reserve table tbody tr .saturday,
#request form .confirmation{
    color: #fff;    
}

/*margin: 0 auto;*/
main,
#sitemap,
#privacy,
#privacy h3,
#privacy p,
#privacy a,
#privacy ul,
.confirm,
#thanks{
    margin: 0 auto; 
}


@media screen and (max-width: 750px){
    main{
        display: initial;
        }
}

/*-----------------------------------------------------------------
h
-----------------------------------------------------------------*/
h1{
    font-size: 12px;
    padding: 5px 0;
    text-align: center;
    background: #666666;
    font-weight: normal;
    color: #fff;
}

h2{
    font-size: 18px;      
}

@media screen and (max-width: 750px){
    h1{
        font-size: 10px;
    }
}

/*-----------------------------------------------------------------
header
-----------------------------------------------------------------*/
header{
    background: #000;
    padding: 20px 0;
}

header h2{
    width: 45%;
    padding-left: 5%;
}

header nav{
    width: 50%;
}

header ul li{
    width: 25%;    
}

@media screen and (max-width: 750px){
    header h2{
        width: 75%;
    }
}

/*--------------------------------------------------
hamburger
--------------------------------------------------*/
/*========= ナビゲーションのためのCSS ==============*/

#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
	top:0;
    right: -120%;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background: rgba(00,00,00,0.7);
    /*動き*/
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    right: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:45%;
    left:50%;
    transform: translate(-50%,-50%);
}

/*リストのレイアウト設定*/

#g-nav li{
    width: 50%;
	list-style: none;
    text-align: center;
}

#g-nav li a{
	color: #fff;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top: 28px;
	right: 20px;
	cursor: pointer;
    width: 60px;
    height: 60px;
    background: #000;
    border-radius: 50%;
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 15px;
    height: 3px;
    border-radius: 2px;
	background-color: #fff;
  	width: 50%;
  }

.openbtn span:nth-of-type(1) {
	top:18px;	
}

.openbtn span:nth-of-type(2) {
	top:28px;
}

.openbtn span:nth-of-type(3) {
	top:38px;
}

.openbtn.active span:nth-of-type(1) {
    top: 23px;
    left: 21px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 35px;
    left: 21px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

@media screen and (max-width: 750px){
    #g-nav ul{
        width: 90%;
        }

    #g-nav li{
        width: 100%;
        }

    #g-nav li a{
        padding: 20px 10px;
    }
        
}


/*-----------------------------------------------------------------
main
-----------------------------------------------------------------*/
main{
   width: 1280px;
   padding: 50px 0;
}


@media screen and (max-width: 750px){
    main{
        width: 100%;
        padding: 0;
        display: block;
     }
}


/*-----------------------------------------------------------------
#reserve / #request
-----------------------------------------------------------------*/
#reserve{
    width: 39%;
}

#request{
    width: 40%;
}

#reserve,
#request{
    padding: 0 5%
}

@media screen and (max-width: 750px){
    #reserve,    
    #request{
        width: 90%;
        margin: 50px 0;
    }
}


/*-----------------------------------------------------------------
#reserve
-----------------------------------------------------------------*/
#reserve {
    border-right: 1px solid #dcdcdd;
}

#reserve dl{
    margin: 20px 0 30px;
 }

#reserve dl dt{
    font-weight: bold;
 }

 #reserve dl dd{
    text-indent: 1em;
 }

 #reserve table{
    border-collapse:  collapse;
    margin-bottom: 30px;
 }

 #reserve table,
 #reserve table tbody,
 #reserve table tbody tr,
 #reserve table tbody tr th,
 #reserve table tbody tr td{
    border: 1px solid #dcdcdd;
 }

 #reserve table tbody tr .sanday{
    background-color: #c1272d;
 }

 #reserve table tbody tr th,
 #reserve table tbody tr td{
    width:  14.2%;
 }
 
 #reserve table tbody tr th,
 #reserve table tbody tr td span{
    text-align: center;
    padding: 5px 0;
 }
 
 #reserve table tbody tr th{
    background-color: #e6e6e6;
 }
 
 
 #reserve table tbody tr td span{
    display: block;
 }

#reserve table tbody tr td .under{
    border-bottom: 1px dotted  #dcdcdd;
 }

#reserve table tbody tr .sanday{
    background-color: #c1272d;
 }

 #reserve table tbody tr .saturday{
    background-color: #2e3192;
 }

 #reserve table tbody tr .san_text span{
    color: #c1272d;
 }

 #reserve table tbody tr .sat_text span{
    color: #2e3192;
 }

 #reserve p{
    margin-bottom: 10px;
 }


 @media screen and (max-width: 750px){
    #reserve {
        border: none;
    }

    #reserve table tbody tr th,
    #reserve table tbody tr td span{
       font-size:  12px;
    }
    
}


 /*-----------------------------------------------------------------
#request
-----------------------------------------------------------------*/
#request p{
    color: #c1272d;
}

#request dl{
    margin: 30px 0;
}

#request dl dt{
    width: 25%;
    font-weight: bold;
}

#request dl dd{
    width: 75%;
}

#request dl dt,
#request dl dd{
   margin-top: 20px;
}


#request dl dt,
#request form dl dd select,
#request form .confirm_box dd{
    height: 40px;
}

#request form dl dd input{
    height: 30px;
}

#request form dl dd input,
#request form dl dd select{
    padding:  5px;
}

#request form dl dd textarea{
    height: 140px;
    padding: 5px;
}

#request form .confirm_box .data{
    height: 150px;
}


#request form dl dd input,
#request form dl dd input[type="radio"],
#request form dl dd select,
#request form dl dd textarea{
    border: 1px solid #dcdcdd;
}

#request form dl dd ul li{
    width: 25%;
}

#request form dl dd ul li input{
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

#request form .confirmation{
    width: 30%;
    margin: 30px 35% 0;
    background: #000;
    padding: 10px;
    border-radius: 5px;
    border: none;
}

#request form .confirm_box dt,
#request form .confirm_box dd{
    border-bottom: 1px solid #dcdcdd;
}

#request .comp_message{
  color: #000;
  white-space: pre-wrap;
  line-height: 20px;
  margin: 50px 0;
}


@media screen and (max-width: 750px){
    #request {
        border-top: 1px solid #dcdcdd; 
    }

    #request h2{
        margin-top: 50px; 
    }


    #request dl{
        margin: 10px 0 30px;
    }

    #request dl dt,
    #request dl dd{
        width: 100%;
    }

    #request dl dt{
           margin: 0;
    }

    #request dl dd{
        margin: 0 0 20px;
    }

    #request form .confirm_box dt{
        border-bottom: 1px dotted #fff;
    }
}


 /*-----------------------------------------------------------------
#sitemap/#privacy
-----------------------------------------------------------------*/
#sitemap,
#privacy{
    width: 1000px;
    padding-bottom: 50px;
    
}

@media screen and (max-width: 750px){
    #sitemap,
    #privacy{
        width: 100%;
    }
}

/*-----------------------------------------------------------------
#sitemap
-----------------------------------------------------------------*/
#sitemap dl{
    width: 30%;
    margin: 50px 1.53% 0;
    border-top: 1px solid #dcdcdd;
    border-right: 1px solid #dcdcdd;
    border-left: 1px solid #dcdcdd;
}

#sitemap dl dt ,
#sitemap dl dd {
    height: 100%;
    border-bottom: 1px solid #dcdcdd;
}

#sitemap dl dt{
    background: #000;
}

#sitemap dl dt a,
#sitemap dl dd a{
     padding: 20px 10px;
}

#sitemap dl dt a{
   color: #fff;
}

#sitemap dl dd a{
    color: #000;
 }

 @media screen and (max-width: 750px){
    #sitemap dl{
        width: 95%;
        margin: 50px 2.5% 0;
    }
 }

 /*-----------------------------------------------------------------
#privacy
-----------------------------------------------------------------*/
#privacy h2{
    display: block;
    padding: 10px;
    margin-top: 50px;
    margin-bottom: 25px;
    color: #fff;
    background: #000;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

#privacy h3,
#privacy p,
#privacy a,
#privacy ul{
    margin: 0 auto;
}

#privacy h3{
    width: 90%;
    padding: 20px 0 15px;
}

#privacy p,
#privacy a,
#privacy ul{
    width: 86%;
    text-indent: 1em;
}

#privacy a{
    display: block;
    padding: 10px 0;
}

#privacy ul{
    margin-top: 20px;
}

#privacy ul li{
    list-style: inside;
}

@media screen and (max-width: 750px){

    #privacy h2{
        margin: 50px auto 0;
    }
    

    #privacy h2,
    #privacy h3,
    #privacy p,
    #privacy a,
    #privacy ul{
        width: 90%;
    }

    #privacy p,
    #privacy a,
    #privacy ul{
        text-indent: 1em;
    }
    
}

 /*-----------------------------------------------------------------
#thanks
-----------------------------------------------------------------*/
#thanks{
    width: 600px;
    margin-top: 100px;
}

#thanks h3{
    font-size: 24px; 
    text-align: center;
    margin-bottom: 30px;
}

#thanks div{
    margin-top: 80px;
}

#thanks div .cont_t{
    width: 45%;
    margin: 0 2.5%;
}

#thanks div .cont_t dt h4{
    background: #000;
    padding: 10px 0;
    color: #fff;
    text-align: center;
    border-radius: 5px;
}

#thanks div .cont_t dd a{
    display: inline-block;
    color: #c30d23;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    border-bottom: 1px solid #dcdcdd;
}

#thanks div .cont_t dd a,
#thanks dd dl{
    margin-top: 20px;
}


@media screen and (max-width: 750px){
    #thanks{
        width: 95%;
        margin: 50px 2.5%;
    }

    #thanks div{
        margin-top: 0;
    }

    #thanks div .cont_t{
        width: 100%;
        margin: 30px 0;
    }
}
