@charset "utf-8";

html {
  width: 100%;
}

body {
  width: 100%;
  font-family: 'メイリオ';
  font-size: 62.5%;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a,p {
  text-decoration: none;
}

.wrapp_all {
  width: 100%;
  overflow: hidden;
}

.pc_menu_content {
  display: none;
}

/* ハンバーガーメニュー */
.menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 10px;
    width: 20px;
    justify-content: center;
    align-items: center;
    z-index: 90;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 20px;
    border-radius: 3px;
    background-color: #031790;
    position: absolute;
    transition: .3s;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}
#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}
#menu-btn-check {
    display: none;
}
.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    margin-top: 30px;
    background-color: #fff;
}
.menu-content ul {
    padding: 70px 10px 0;
}
.menu-content ul li {
    border-bottom: solid 1px #031790;
    list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 12px;
    box-sizing: border-box;
    color:#031790;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #031790;
    border-right: solid 2px #031790;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}
.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 24;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 1000;
    background-color: #fff;
    transition: all 0.5s;/*アニメーション設定*/
}
#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}

header {
  width: 100%;
  height: 30px;
}

.header_title {
  display: block;
  margin: 0 auto;
}

main {
  width: 100%;
  margin: 0;
  padding: 0;
  padding-bottom: 100px;
}

h1 {
  font-size: 1em;
  font-family: 'sans-serif';
  color: #031790;
  padding: 6px 6px;
}


/*フッターメニュー*/
.footer {
  width: 100%;
  margin-bottom: 48px;
}
.global-nav {
  width: 100%;
  max-width: 750px;
  position: fixed;
  z-index: 10000;
  left: 0;
  bottom: 0;
  background: #031790;
}
.nav-list {
  width: 100%;
  display: table;
  table-layout: fixed;
  border-collapse: collapse;
  padding: 0;
  list-style: none;
  text-align: center;
}
.nav-item {
  display: table-cell;
  border: solid 1px gray;
  padding: 10px 0px;
}
.nav-item p {
  color: #fff;
}
.nav-item a {
  text-decoration: none;
}
.nav-item i {
  display: block;
  font-size: 1.6em;
  color: white;
}
.nav-item a span img {
  transform: scale(0.7);
}

/* 会社概要 */
.company_tit_Wrapper {
  width: 100%;
}
.company_tit img {
  width: 100%;
  display: block;
  margin: 0 auto;
}
.company_txt img {
  width: 100%;
  display: block;
  margin: 0 auto;
}

.history table{
  width: 95%;
  height: auto;
  margin: 0 auto;
  margin-top: 16px;
  border: solid 1px black;
}

.history table tr{
  border: solid 1px black;
  font-family: "メイリオ";
}

.history table th{
  font-family: "メイリオ";
  position: relative;
  text-align: center;
  width: 30%;
  background-color: #031790;
  color: white;
  border: solid 1px white;
}

.history table td {
  font-family: "メイリオ";
  font-size: 14px;
  padding-left: 16px;
}

/* 問い合わせフォーム */
.reservation_tit_Wrapper {
  width: 100%;
}
.reservation_tit img {
  width: 75%;
  display: block;
  margin: 0 auto;
  margin-top: 48px;
}
#formWrap {
	width:100%;
  display: block;
	margin:0 auto;
  margin-top: 36px;
  background-color: white;
}
#formWrap p {
  font-size: 1.2em;
  text-align: center;
}
#formWrap h3 {
  font-size: 1.4em;
  text-align: center;
  color: #031790;
}
.formTable {
  width: 100%;
  margin: 0 auto;
  margin-top: 16px;
}
table.formTable td {
	width: auto;
	display: block;
  margin: 0 auto;
  font-size: 12px;
}
table.formTable th {
  display: block;
	border-bottom:0;
  color: #fff;
  font-size: 12px;
}
input[type="text"], textarea {
	width: 100%;
	padding: 20px;
	font-size: 12px;
	display: block;
}
input[type="submit"], input[type="reset"], input[type="button"] {
	display:block;
	width:100%;
	height:35px;
  background-color: #fff;
  color: #031790;
}
.date_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
input[type="date"],input[type="time"] {
  width: 35%;
  height: 30px;
  font-size: 12px;
}
table{
  width: 85%;
  margin: 0 auto;
  margin-top: 6px;
  border-collapse: collapse;
  border: solid 1px black;
  font-family: 'メイリオ',
}

table tr{
  border-bottom: solid 1px black;
}

table tr:last-child{
  border-bottom: none;
}

table th{
  text-align: center;
  background-color: #031790;
  color: black;
  padding: 10px 0;
  font-size: 12px;
}

table td {
	font-size: 12px;
	padding-left: 6px;
  padding: 8px;
}
