@charset "UTF-8";
/* CSS Document */
body {
  font-family:
    "Helvetica Neue", "Hiragino Sans", "Hiragino Kaku Gothic ProN",
    "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", sans-serif;
  font-weight: 400;
  color: #555;
  font-style: normal;
  max-width: 768px;
  margin: 0 auto;
  background: #eee;
  font-feature-settings: "palt";
  font-size: 18px;
}
header {
  position: fixed;
  z-index: 11;
  max-width: 768px;
}
@keyframes fadeIn_h {
  0% {
      opacity:0;
      transform: translateY(-50px);
  }
  80% {
      transform: translateY(2px);
  }
  100% {
      opacity:1;
      transform: translateY(0px);
  }
}
.fadeIn_h{
  animation-name: fadeIn_h;
  animation-duration: .5s;
  animation-timing-function: ease;
  animation-fill-mode: backwards;
  /* background-color: white; */
  animation-delay: 2s;
}

.wrapper .main-information {
	text-align: center;
	color: #222;
}
.wrapper .main-information .date222-gray {
	color: inherit;
}
.wrapper .main-information-greeting #text-greeting {
	text-align: center;
	line-height: 1.2;
  font-size: 24px;
}
.wrapper .main-information-greeting {
	margin: 3em 0;
  text-align: center;
  background: #ffffffee;
}
.main-information-greeting #text-greeting #announce {
	background-color: #3867a0;
	color: #d8f330;
	height: 2.1em;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1em;
	margin-top: 10px;
}
.wrapper .main-information-greeting #flag {
	padding: 0 auto;
}
.wrapper .main-information-greeting p {
	padding-right: 7%;
	padding-left: 7%;
}
.wrapper .main-information-greeting .detail {
	margin: .8em;
  color: #3867a0;
}
.main-information-greeting .detail p:last-child  {
	font-size: 0.8em;
  margin-top: -.3em;
}
.wrapper .main-information-shukketsu {
	text-align: center;
	padding-top: 7%;
	padding-right: 7%;
	padding-left: 7%;
	padding-bottom: 7%;
	background-color: #9bb3e9;
  height: auto;
}
.main-information-shukketsu h4 {
    font-size: 1.9em;
    color: white;
    line-height: 1.1;
    margin-bottom: .7em;
}
.main-information-shukketsu h5 {
  transform: rotate(-10deg);
    font-size: .7em;
    margin-bottom: .5em;
    position: relative;
    left: -6.5em;
}
.wrapper .main-information-shukketsu p {
	text-align: left;
	font-size: 0.9em;
	line-height: 1.7;
}
.wrapper .main-information-shukketsu #shukketsu {
	background-color: #FFFFFF;
}
.wrapper .main-information {
	color: inherit;
	font-size: 3.6em;
	line-height: 0.7;
	margin-top: 0.8em;
  position: relative;
}
.place {
  margin: -.1em 0 .5em;
}
.gonyaito {
  font-size: 10px;
  position: absolute;
  top: 22%;
  left: 25%;
  transform: rotate(-25deg);
  letter-spacing: .2em;
  color: #222;
  text-align: left;
}
.gonyaito p:last-child {
  font-size: 20px;
  text-align: center;
  position: relative;
  top: 10px;
  left: 20px;
  transform: rotate(5deg);
}
.wrapper .main-information .timefee {
	font-size: .7em;
	line-height: 1.2em;
}
.openstart {
  display: flex;
  justify-content: center;
  padding-right: .1em;
}
.openstart p:first-child,
.openstart p:nth-child(3) {
  font-size: 0.5em;
  border: 1px solid #555;
  width: 2.5em;
  height: auto;
  margin-left: 8px;
  border-radius: 100%;
}
.openstart.at>p {
  width: 2em;
  height: 2em;
  font-size: .3em;
  line-height: 2;
}
.large {
  font-size: 1.3em;
}
.small {
  font-size: .7em;
}

/*--------------------------*/
nav ul li {
  height: 43px;
  border-bottom: 1px solid #ddd;
  padding-top: 7px;
  /* display: flex;
  justify-content: center;
  align-items: center; */
}
/*--------------------------*/
#drawer-checkbox {
  display: none;
}
#drawer-icon {
  cursor: pointer;
  display: inline-block;
  height: 50px;
  position: relative;
  width: 50px;
  z-index: 12;
}
#drawer-icon span {
  background:  #fff;
  /* border-radius: 4px; */
  display: block;
  height: 4%;
  left: 50%;
  margin: -2% 0 0 -54%;
  position: absolute;
  top: 50%;
  transition: all 0.3s ease-in-out;
  width: 84%;
}
#drawer-icon span::before,
#drawer-icon span::after {
  -webkit-transform: rotate(0);
  background: #fff;
  /* border-radius: 4px; */
  content: "";
  display: block;
  height: 100%;
  left: 50%;
  margin: -8% 0 0 -50%;
  position: absolute;
  top: 50%;
  transform: rotate(0);
  transition: all 0.3s ease-in-out;
  width: 100%;
}
#drawer-icon span::before {
  margin-top: -28%;
}
#drawer-icon span::after {
  margin-top: 22%;
}
#drawer-checkbox:checked ~ #drawer-icon span {
  background: rgba(51, 51, 51, 0);
}
#drawer-checkbox:checked ~ #drawer-icon span::before,
#drawer-checkbox:checked ~ #drawer-icon span::after {
  content: "";
  display: block;
  height: 100%;
  left: 50%;
  margin: -8% 0 0 -42%;
  position: absolute;
  top: 50%;
  width: 100%;
}
#drawer-checkbox:checked ~ #drawer-icon span::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
#drawer-checkbox:checked ~ #drawer-icon span::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#drawer-content {
  overflow: auto;
  position: fixed;
  top: 0;
  /* left: 0; */
  z-index: 40;
  width: 100%;
  max-width: 768px;
  /* height: 100%; */
  background: #fff;
  transition: all 0.3s ease-in-out 0s;
  transform: translateY(-100%);
  text-align: center;
}
#drawer-content .current {
  background: #ccc;
}
#drawer-content ul li a  {
  display: block;
}
#drawer-content li:not(.current):hover {
  background: #3867a0;
  color: white;
}
#drawer-checkbox:checked ~ #drawer-content {
  transform: translateY(50px);
  box-shadow: 6px 0 25px rgba(0, 0, 0, 0.16);
}

#drawer-close {
  display: none;
  position: fixed;
  z-index: 39;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  transition: all 0.3s ease-in-out 0s;
}
#drawer-checkbox:checked ~ #drawer-close {
  display: block;
  opacity: 0.3;
}

/*--------------------------*/
#kanji dd {
  position: relative;
}
#kanji dd p {
  padding-left: 2em;
}
#kanji dd p.kakari {
  text-align: right;
  font-size: .8em;
  border-bottom: 1px dotted;
  margin-top: .3em;
  /* background: #eee; */
  position: absolute;
  top: -2.5em;
  width: 100%;
  padding: 0;
}
