@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  font-size: 11px;
}

body {
  margin: 0;
  background-color: #fff;
  -webkit-text-size-adjust: none;
          text-size-adjust: none;
  font-size: 1.5rem;
  font-family: sans-serif;
  color: #333;
  line-height: 1.5;
}

p,
form,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
dd,
input,
textarea,
button {
  margin: 0;
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  color: inherit;
  line-height: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

img {
  border: 0;
  vertical-align: bottom;
}

hr {
  margin: 0;
  border: 0;
}

select {
  font-size: 1.6rem;
  display: block;
  width: 100%;
  -webkit-appearance: none;
          appearance: none;
  padding: 4px 25px 4px 10px;
  border-radius: 3px;
  border: 1px solid #ccc;
  background: #fff url(/assets/img/select.png) no-repeat 100% 50%;
  background-size: 15px 14px;
}

select::-ms-expand {
  display: none;
}

button {
  padding: 10px;
  border: 0;
  display: block;
  width: 100%;
  color: #fff;
  background-color: #0047cc;
  font-size: 1.6rem;
  text-align: center;
}

input::-ms-clear {
  visibility: hidden;
}

input::-ms-reveal {
  visibility: hidden;
}

input,
textarea {
  border: 0;
  border-radius: 0;
  font-size: 1.6rem;
  box-shadow: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

input[type='text'],
input[type='password'],
textarea {
  padding: 5px 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
  display: block;
  width: 100%;
}

::-webkit-input-placeholder {
  color: #ccc;
}

::-moz-placeholder {
  color: #ccc;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #ccc;
}

a {
  color: #007acc;
  text-decoration: none;
}

/*!
 * Pikaday
 * Copyright © 2014 David Bushell | BSD & MIT license | http://dbushell.com/
 */
.pika-single {
  z-index: 9999;
  display: block;
  position: relative;
  color: #333;
  background: #fff;
  border: 1px solid #ccc;
  border-bottom-color: #bbb;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/*
clear child float (pika-lendar), using the famous micro clearfix hack
http://nicolasgallagher.com/micro-clearfix-hack/
*/
.pika-single:before,
.pika-single:after {
  content: " ";
  display: table;
}

.pika-single:after {
  clear: both;
}

.pika-single {
  *zoom: 1;
}

.pika-single.is-hidden {
  display: none;
}

.pika-single.is-bound {
  position: absolute;
  box-shadow: 0 5px 15px -5px rgba(0, 0, 0, .5);
}

.pika-lendar {
  float: left;
  width: 240px;
  margin: 8px;
}

.pika-title {
  position: relative;
  text-align: center;
}

.pika-label {
  display: inline-block;
  *display: inline;
  position: relative;
  z-index: 9999;
  overflow: hidden;
  margin: 0;
  padding: 5px 3px;
  font-size: 14px;
  line-height: 20px;
  font-weight: bold;
  background-color: #fff;
}

.pika-title select {
  cursor: pointer;
  position: absolute;
  z-index: 9998;
  margin: 0;
  left: 0;
  top: 5px;
  filter: alpha(opacity=0);
  opacity: 0;
}

.pika-prev,
.pika-next {
  display: block;
  cursor: pointer;
  position: relative;
  outline: none;
  border: 0;
  padding: 0;
  width: 20px;
  height: 30px;
  /* hide text using text-indent trick, using width value (it's enough) */
  text-indent: 20px;
  white-space: nowrap;
  overflow: hidden;
  background-color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 75% 75%;
  opacity: .5;
  *position: absolute;
  *top: 0;
}

.pika-prev:hover,
.pika-next:hover {
  opacity: 1;
}

.pika-prev,
.is-rtl .pika-next {
  float: left;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAUklEQVR42u3VMQoAIBADQf8Pgj+OD9hG2CtONJB2ymQkKe0HbwAP0xucDiQWARITIDEBEnMgMQ8S8+AqBIl6kKgHiXqQqAeJepBo/z38J/U0uAHlaBkBl9I4GwAAAABJRU5ErkJggg==");
  *left: 0;
}

.pika-next,
.is-rtl .pika-prev {
  float: right;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAU0lEQVR42u3VOwoAMAgE0dwfAnNjU26bYkBCFGwfiL9VVWoO+BJ4Gf3gtsEKKoFBNTCoCAYVwaAiGNQGMUHMkjGbgjk2mIONuXo0nC8XnCf1JXgArVIZAQh5TKYAAAAASUVORK5CYII=");
  *right: 0;
}

.pika-prev.is-disabled,
.pika-next.is-disabled {
  cursor: default;
  opacity: .2;
}

.pika-select {
  display: inline-block;
  *display: inline;
}

.pika-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 0;
}

.pika-table th,
.pika-table td {
  width: 14.285714285714286%;
  padding: 0;
}

.pika-table th {
  color: #999;
  font-size: 12px;
  line-height: 25px;
  font-weight: bold;
  text-align: center;
}

.pika-button {
  cursor: pointer;
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  outline: none;
  border: 0;
  margin: 0;
  width: 100%;
  padding: 5px;
  color: #666;
  font-size: 12px;
  line-height: 15px;
  text-align: right;
  background: #f5f5f5;
}

.pika-week {
  font-size: 11px;
  color: #999;
}

.is-today .pika-button {
  color: #33aaff;
  font-weight: bold;
}

.is-selected .pika-button,
.has-event .pika-button {
  color: #fff;
  font-weight: bold;
  background: #33aaff;
  box-shadow: inset 0 1px 3px #178fe5;
  border-radius: 3px;
}

.has-event .pika-button {
  background: #005da9;
  box-shadow: inset 0 1px 3px #0076c9;
}

.is-disabled .pika-button,
.is-inrange .pika-button {
  background: #D5E9F7;
}

.is-startrange .pika-button {
  color: #fff;
  background: #6CB31D;
  box-shadow: none;
  border-radius: 3px;
}

.is-endrange .pika-button {
  color: #fff;
  background: #33aaff;
  box-shadow: none;
  border-radius: 3px;
}

.is-disabled .pika-button {
  pointer-events: none;
  cursor: default;
  color: #999;
  opacity: .3;
}

.is-outside-current-month .pika-button {
  color: #999;
  opacity: .3;
}

.is-selection-disabled {
  pointer-events: none;
  cursor: default;
}

.pika-button:hover,
.pika-row.pick-whole-week:hover .pika-button {
  color: #fff;
  background: #ff8000;
  box-shadow: none;
  border-radius: 3px;
}

/* styling for abbr */
.pika-table abbr {
  border-bottom: none;
  cursor: help;
}

.g-card {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  color: #000;
}

.g-card_img {
  margin-bottom: 15px;
  margin-left: -15px;
  width: 100vw;
}

.g-card_img a {
  padding-bottom: 75%;
  height: 0;
  display: block;
  background-position: center top;
  background-size: cover;
  text-indent: -9999px;
}

.g-card-alt .g-card_img a {
  padding-bottom: 0;
  height: 180px;
}

.g-card_img + .g-label {
  top: 10px !important;
}

.g-card_h {
  margin-bottom: 7px;
  margin-right: 85px;
  font-size: 1.7rem;
}

.g-card_h a {
  display: inline-block;
  text-indent: -0.5em;
  margin-left: 1em;
}

.g-card_h i {
  margin-right: 5px;
}

.g-card_img + .g-label + .g-card_h {
  margin-right: 0;
}

.g-card_date {
  margin-bottom: 5px;
  text-align: right;
  color: #666;
}

.g-card_body {
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
  transition: height 0.3s;
}

.g-card-acc .g-card_body {
  height: 2.5em;
}

.g-card-acc .g-card_body::after {
  content: '';
  width: 100%;
  height: 1.5em;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 100%);
  position: absolute;
  left: 0;
  bottom: 0;
}

.g-card_more {
  font-size: 1.7rem;
  text-align: right;
}

.g-card_more .fa-chevron-right {
  margin-left: 5px;
}

.g-card_more .fa-chevron-down {
  margin-right: 5px;
}

.g-card-acc .g-card_more a::after {
  content: '続きを読む';
}

.g-card-open .g-card_body::after {
  content: none;
}

.g-card-open .g-card_more i {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.g-card-open .g-card_more a::after {
  content: '閉じる';
}

.g-card-acc .g-card_img {
  margin-left: 0;
  width: 100%;
}

.g-card-acc::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 0;
//  width: 5px;
  height: 100%;
//  background-color: #ccc;
}

.g-card .g-label {
  position: absolute;
  right: 0;
  top: 0;
}

.g-content {
  padding-left: 15px;
  padding-right: 15px;
}

.g-cover {
  margin-bottom: 20px;
}

.g-drawer {
  transition: -webkit-transform .3s ease-out;
  transition: transform .3s ease-out;
  transition: transform .3s ease-out, -webkit-transform .3s ease-out;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  background-color: rgba(0, 0, 0, .8);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100vw;
  height: 100vh;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
}

.g-drawer-open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.g-drawer_list {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
          align-items: center;
  font-size: 1.6rem;
}

.g-drawer_list a {
  padding: 5px 10px;
  color: #fff;
  display: block;
}

.g-drawer_close {
  position: absolute;
  left: 10px;
  top: 10px;
  width: 40px;
  height: 40px;
}

.g-drawer_close::before, .g-drawer_close::after {
  content: "";
  width: 1px;
  height: 40px;
  background-color: #fff;
  position: absolute;
  left: 20px;
  top: 0;
}

.g-drawer_close::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.g-drawer_close::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.g-footer {
  margin-top: 10px;
  padding: 10px;
  text-align: center;
  color: #666;
  font-size: 1.2rem;
}

.g-formEl {
  margin-bottom: 20px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
}

.g-formEl_h {
  margin-bottom: 5px;
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
}

.g-free {
  margin-top: 40px;
  width: 100%;
  overflow: auto;
}

.g-free img {
  width: 100%;
  height: auto;
}

.g-gallery {
  margin: 20px 0 20px -15px;
  width: 100vw;
}

.g-gallery-vimeo {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.g-gallery-vimeo iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.g-h-1 {
  margin-bottom: 5px;
  font-size: 1.8rem;
}

.g-h-2 {
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.g-h-2::before {
  content: '■';
  color: #0047cc;
  -webkit-transform: scale(0.6);
          transform: scale(0.6);
  display: inline-block;
}

.g-h-2.g-h-deco-1 {
  padding-bottom: 3px;
  border-bottom: 2px solid #0047cc;
}

.g-h-2.g-h-deco-2::before, .g-h-2.g-h-deco-3::before {
  content: '';
  background-color: #0047cc;
  display: inline-block;
  width: 5px;
  height: 1.8rem;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
  margin-right: 8px;
}

.g-h-2.g-h-deco-3 {
  padding-bottom: 3px;
  border-bottom: 2px solid #0047cc;
}

.g-h-2.g-h-deco-4 {
  padding-bottom: 3px;
  border-bottom: 2px solid #0047cc;
}

.g-h-2.g-h-deco-4::before {
  content: none;
}

.g-h-2.g-h-deco-5 {
  padding: 3px 10px;
  background-color: #0047cc;
  color: #fff;
}

.g-h-2.g-h-deco-5::before {
  content: none;
}

.g-header {
  padding: 0 10px 0 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  background-color: #fff;
  border-bottom: 4px solid #0047cc;
  box-shadow: 0 0 4px 2px rgba(0, 0, 0, .4);
  width: 100%;
  font-size: 1.4rem;
  position: relative;
  z-index: 1;
}

.g-header_logo {
  display: -webkit-flex;
  display: flex;
}

.g-header_logo a {
  padding: 0 10px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  color: #333;
  font-weight: bold;
}

.g-header_btn {
  display: -webkit-flex;
  display: flex;
  font-size: 2.6rem;
}

.g-header_btn p {
  width: 40px;
  height: 40px;
  display: -webkit-flex;
  display: flex;
}

.g-header_btn a {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
  width: 100%;
  color: #333;
}

.g-hr {
  border-bottom: 4px solid #000080;
/*  border-bottom: 4px dotted #888; */
}

.g-img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.g-label {
  padding: 4px 6px;
  text-align: center;
  border-radius: 3px;
  color: #fff;
  line-height: 1;
  border: 1px solid #fff;
}

.g-label a {
  color: #fff;
}

.g-label-1 {
  background-color: #cc0014;
}

.g-label-2 {
  background-color: #cc5200;
}

.g-label-3 {
  background-color: #00cc52;
}

.g-label-4 {
  background-color: #ccb800;
}

.g-label-5 {
  background-color: #00ccb8;
}

.g-label-6 {
  background-color: #000;
}

.g-label-7 {
  background-color: #0014cc;
}

.g-label-8 {
  background-color: #196236;
}

.g-label-9 {
  background-color: #b800cc;
}

.g-label-10 {
  background-color: #fff;
  border-color: #000;
}

.g-label-10,
.g-label-10 a {
  color: #000;
}

.g-linkList {
  margin-left: -15px;
  width: 100vw;
  border-top: 1px solid #666;
}

.g-linkList li {
  border-bottom: 1px solid #666;
}

.g-linkList a {
  padding: 10px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-align-items: center;
          align-items: center;
  color: #333;
}

.g-more {
  margin-top: 10px;
  font-size: 1.6rem;
}

.g-more a {
  padding: 10px;
  display: block;
  text-align: center;
  font-weight: bold;
}

.g-more i {
  margin-right: 5px;
}

.g-photo {
  margin: 20px 0 20px -15px;
  width: 100vw;
}

.g-photo-vimeo {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.g-photo-vimeo iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.g-section-2 {
  margin: 40px 0;
}

.g-section-3 {
  margin: 20px 0;
}

.g-thumbnail {
  margin: 30px -13px 20px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}

.g-thumbnail li {
  border: 2px solid #fff;
  padding-bottom: 33.333333333%;
  width: 33.333333333%;
  height: 0;
  overflow: hidden;
  position: relative;
}

.g-thumbnail a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
}

.g-thumbnail img {
  visibility: hidden;
}

.pika-table abbr {
  text-decoration: none;
  font-size: 1.6rem;
}

.pika-button {
  color: #333;
  font-size: 1.6rem;
  background: none;
  text-align: center;
}

.is-today .pika-button {
  color: #333;
  font-weight: normal;
  background-color: #eee;
}

.is-selected .pika-button {
  color: #fff;
  font-weight: normal;
  background: #0047cc;
  box-shadow: none;
}

.pika-label {
  font-size: 1.6rem;
}

.pika-label::after {
  content: '年';
}

.pika-label + .pika-label::after {
  content: '月';
}

.pika-row td:first-child:not(.is-selected) .pika-button {
  color: #cd007a;
}

.pika-row td:last-child:not(.is-selected) .pika-button {
  color: #007acd;
}

.galleria {
  display: none;
  max-width: 100vw;
  width: 100vw;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 3;
}

.galleria-theme-classic {
  background-color: rgba(0, 0, 0, .9);
}

.galleria-theme-classic .galleria-stage {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.galleria-thumbnails-container {
  display: none;
}

.galleria-close {
  display: none;
  position: fixed;
  left: 10px;
  top: 10px;
  z-index: 3;
  width: 40px;
  height: 40px;
}

.galleria-close::before, .galleria-close::after {
  content: "";
  width: 1px;
  height: 40px;
  background-color: #fff;
  position: absolute;
  left: 20px;
  top: 0;
}

.galleria-close::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.galleria-close::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.galleria-image img {
  z-index: 2;
}

/*# sourceMappingURL=base.css.map */
