/* ヘッター・フッター用 CSS */
@charset "utf-8";

/* リセットCSS
------------------------------------ */
* {
margin: 0;
padding: 0;
border: 0;
outline:0;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video, select {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
/* HTML5非対応ブラウザ用 */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
img {
	vertical-align:top;
	width:100%;
	max-width: 100%;
	height: auto;
}
ol, ul {
  list-style-type: none;
}
/* ボタンのリセット */
button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    /* 要素に標準スタイルを適用させない */
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}
.button {
  background-color: #F39802;
  border: 0;
  border-radius: 6px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.12);
  color: #000;
  cursor: pointer;
  line-height: 1;
  outline: 0;
  padding: 0.75rem 1rem;
	font-size: 14px;
	font-weight: 600;
}
@media (max-width: 750px) {
    /*
	.navi {
    margin-right: 6px;
		padding-top: 10px;
	} */
	.button {
	  padding: 0.3rem 1rem;
		font-size: 12px;
	}
}
/* 右ナビからモーダルウィンドウ */
.modal-overlay {
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: opacity 200ms linear;
  z-index: 999;
}
.modal.is-open .modal-overlay {
  opacity: 1;
  pointer-events: auto;
}
.modal-container {
  background-color: #fff;
  border-radius: 6px;
  width: 450px;
  height: 64vh;
  padding: 1.5rem;
  transform: translateY(24px);
  transition: transform 300ms ease-in-out;
	position: relative;
}
@media (max-width: 950px) {
	.modal-container {
	  width: 80vw;
	}
}
.modal-menu li {
	font-size: 1.2rem;
	text-align: center;
	padding: 2vh;
	background-color: #eeeeee;
	margin-bottom: 10px;
}
.modal-menu li a {
  display: block;
  height: 100%;
  color:#202020;
	text-decoration: none;
}
.modal-menu li a:focus,.modal-menu li a:active,
.modal-menu li a:hover,.modal-menu li a:visited, {
  color:#192f60;
	text-decoration: none;
}
.modal.is-open .modal-container {
  transform: translateY(0);
}
.modal-title {
  border-bottom: 1px solid #dedede;
  font-size: 1.25rem;
  margin: 0 0 1.5rem 0;
  padding-bottom: 0.5rem;
	text-align: center;
}
.modal-close {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 40px;
}