@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;600;700&display=swap");
/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
* {
  box-sizing: border-box;
}

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, font, 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 {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 1em;
}

html {
  font-size: 62.5%;
}

body, table, input, textarea, select, option {
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-size: 1.6rem;
  line-height: 1.7;
}

input[type=submit],
button {
  appearance: none;
  -webkit-appearance: none;
}

.container-fluid {
  width: 100%;
  padding: 0 50px;
}
@media all and (max-width: 896px) {
  .container-fluid {
    padding: 0 12px;
  }
}

.container {
  max-width: 1100px;
  padding: 0 12px;
  margin: auto;
}

input:-webkit-autofill {
  box-shadow: 0 0 0px 999px #fff inset;
  transition: background-color 10000s ease-in-out 0s;
}

.site-header {
  width: 100%;
  padding: 15px 0;
  line-height: 1;
  background-color: #ffffff;
}
@media all and (max-width: 896px) {
  .site-header {
    padding: 10px 0;
  }
}
.site-header .row {
  justify-content: space-between;
  align-items: center;
  display: flex;
}
.site-branding {
  line-height: 1;
  display: inline-block;
}
.site-logout {
  float: right;
}
.site-logo {
  width: auto;
  height: 45px;
  display: block;
}
@media all and (max-width: 896px) {
  .site-logo {
    height: 38px;
  }
}
.site-main {
  width: 100%;
  position: fixed;
}
.site-footer {
  width: 100%;
}
.site-info {
  font-size: 1.2rem;
  text-align: center;
}
.site-logout a {
  padding: 5px 15px;
  text-decoration: none;
  color: #ffffff;
  background-color: #295d72;
  border-radius: 50px;
  transition: 0.3s;
}
.site-logout a:hover {
  opacity: 0.8;
}

.home {
  background-color: #F7F7F7;
}
.home .site-footer {
  padding: 15px 0;
  position: fixed;
  bottom: 0;
}

.front {
  height: 100%;
}
.front .container {
  height: 100%;
}
.front-table {
  width: 100%;
  max-width: 400px;
  height: 100%;
  margin: auto;
  display: table;
}
.front-cell {
  width: 100%;
  height: 100%;
  vertical-align: middle;
  display: table-cell;
}
.front-box {
  padding: 40px 20px 40px;
  background-color: #ffffff;
}
.front-headline {
  margin-bottom: 15px;
  font-size: 2rem;
  text-align: center;
}
.front-field, .front-login {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}
.front-field {
  width: 100%;
  padding: 12px;
  font-size: 1.6rem;
  border-bottom: 1px solid #eee;
}
.front-login {
  width: 100%;
  max-width: 240px;
  padding: 12px;
  margin: 40px auto 0;
  text-align: center;
  color: #ffffff;
  background-color: #295d72;
  transition: 0.5s;
  cursor: pointer;
  display: block;
}
.front-login:hover {
  opacity: 0.8;
}

.single-chat .entry-header {
  width: 100%;
  padding: 10px 0;
  background-color: #fafafa;
  transition: 0.5s;
  position: absolute;
  top: 0;
  z-index: 10;
  z-index: 1;
}
.single-chat .entry-content {
  width: 100%;
  position: absolute;
}
.single-chat .entry-footer {
  width: 100%;
  padding: 15px 0 10px;
  background-color: #f2f2f2;
  position: fixed;
  bottom: 0;
}
.single-chat .site-header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 10;
}
.single-chat .site-footer {
  display: none;
}

.comment-ol {
  padding: 0;
  list-style: none;
}
.comment-li {
  padding: 30px;
  border-bottom: 1px solid #eee;
  display: flex;
}
.comment-left {
  line-height: 1;
}
.comment-right {
  width: 100%;
  margin-left: 20px;
}
@media all and (max-width: 896px) {
  .comment-right {
    margin-left: 12px;
  }
}
.comment-avatar {
  width: 60px;
  height: auto;
}
@media all and (max-width: 896px) {
  .comment-avatar {
    width: 50px;
  }
}
.comment-author {
  font-size: 1.4rem;
  font-weight: bold;
}
.comment-author time {
  margin-left: 10px;
  font-size: 1.2rem;
  font-weight: normal;
}
.comment-text {
  white-space: pre-wrap;
}
.comment-form {
  position: relative;
}
.comment-image-reloaded {
  display: inline-block;
}
.comment-image-reloaded label {
  padding: 5px 20px;
  color: #ffffff;
  background-color: #295d72;
  cursor: pointer;
  border-radius: 10px;
  transition: 0.3s;
  display: inline-block !important;
}
@media all and (max-width: 896px) {
  .comment-image-reloaded label {
    padding: 5px 12px;
  }
}
.comment-image-reloaded label:hover {
  opacity: 0.8;
}
.comment-image-reloaded input {
  display: none;
}
.comment-image-reloaded span {
  margin-left: 10px;
}
@media all and (max-width: 896px) {
  .comment-image-reloaded span {
    font-size: 14px;
  }
}
.comment-respond #comment-image-reloaded-wrapper {
  margin-top: 5px;
}
.comment-image-ul {
  list-style: none;
}
@media all and (max-width: 896px) {
  .comment-image-ul {
    margin-top: 5px;
  }
}
.comment-image-li {
  line-height: 1;
  padding: 10px !important;
  float: left;
}
@media all and (max-width: 896px) {
  .comment-image-li {
    width: 50%;
    padding: 5px !important;
  }
  .comment-image-li img {
    width: 100%;
    height: auto;
  }
}
.comment-layer {
  width: 100%;
  height: 100%;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  z-index: 100;
  display: none;
}
.comment-layer-wrap {
  width: 100%;
  height: 100%;
  text-align: center;
  display: table;
}
.comment-layer-sending {
  line-height: 1;
  vertical-align: middle;
  display: table-cell;
}
.comment-layer-sending .icon-sending {
  width: 50px;
  height: 50px;
  background-image: url(../images/icon-send.svg);
  background-size: 50px;
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
}
.comment-layer-sending span {
  display: block;
}

.comment-list {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.comment-list .comment-li {
  padding: 20px;
}
@media all and (max-width: 896px) {
  .comment-list .comment-li {
    padding: 12px 0;
  }
}
.comment-list .comment-li .comment-body {
  display: flex;
}

#commentform {
  flex-wrap: wrap;
  justify-content: space-between;
  display: flex;
}
#commentform .comment-form-comment {
  width: 100%;
}
#commentform label {
  display: block;
}
#commentform .form-submit .submit {
  width: 48px;
  height: 48px;
  color: #ffffff;
  background-image: url(../images/icon-send.svg);
  background-size: 30px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #295d72;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  outline: none;
  padding: 0;
  transition: 0.3s;
  appearance: none;
}
#commentform .form-submit .submit:hover {
  opacity: 0.8;
}

#comment {
  width: 100%;
  height: 78.4px;
  min-height: 78.4px;
  max-height: 400px;
  padding: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  resize: none;
}

#inline-recaptcha {
  margin: 30px auto 0;
  display: table;
}

.grecaptcha-badge {
  filter: grayscale(1);
}

.short-select .short-select-ul {
  width: 280px;
  padding: 0;
  margin-top: 10px;
  list-style: none;
}
.short-select .short-select-li {
  width: 100%;
  padding: 5px 12px;
  margin-bottom: 10px;
  text-align: center;
  background-color: #F2F2F2;
  border-radius: 20px;
  transition: 0.15s;
  cursor: pointer;
}
.short-select .short-select-li:hover {
  opacity: 0.8;
}
.short-select .short-select-li.selected {
  color: #ffffff;
  background-color: #FF9872;
}
.short-select .short-select small {
  font-size: 1.3rem;
}

.short-answer .short-select-ul {
  width: 280px;
  padding: 0;
  margin-top: 10px;
  list-style: none;
}
.short-answer .short-select-li {
  width: 100%;
  padding: 5px 12px;
  margin-bottom: 10px;
  text-align: center;
  background-color: #F2F2F2;
  border-radius: 20px;
}
.short-answer .short-select-li.selected {
  color: #ffffff;
  background-color: #FF9872;
}
.short-answer .short-select small {
  font-size: 1.3rem;
}

.modal {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  display: none;
}
.modal-header {
  padding: 3px 15px;
  display: flex;
  justify-content: flex-end;
}
.modal-header h1 {
  margin: 1rem 0;
}
.modal-close {
  font-size: 2rem;
}
.modal-close:hover {
  cursor: pointer;
}
.modal-body {
  padding: 20px 20px 40px;
  text-align: center;
  color: black;
}
.modal-content {
  background-color: #f4f4f4;
  margin: 20% auto;
  width: 50%;
  box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 7px 20px 0 rgba(0, 0, 0, 0.17);
  animation-name: modalopen;
  animation-duration: 0.3s;
  position: relative;
  z-index: 10;
}
.modal-overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  overflow: auto;
}
.modal-button {
  padding: 8px 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  color: #ffffff;
  background-color: #295d72;
  border: 1px solid #295d72;
  border-radius: 10px;
  transition: 0.3s;
  cursor: pointer;
}
.modal-button:hover {
  opacity: 0.8;
}

@keyframes modalopen {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
body.lb-disable-scrolling {
  overflow: hidden;
}

.lightboxOverlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: black;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  opacity: 0.8;
  display: none;
}

.lightbox {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
  outline: none;
}

.lightbox .lb-image {
  display: block;
  height: auto;
  max-width: inherit;
  max-height: none;
  border-radius: 3px;
  /* Image border */
  border: 4px solid white;
}

.lightbox a img {
  border: none;
}

.lb-outerContainer {
  position: relative;
  *zoom: 1;
  width: 250px;
  height: 250px;
  margin: 0 auto;
  border-radius: 4px;
  /* Background color behind image.
     This is visible during transitions. */
  background-color: white;
}

.lb-outerContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-loader {
  position: absolute;
  top: 43%;
  left: 0;
  height: 25%;
  width: 100%;
  text-align: center;
  line-height: 0;
}

.lb-cancel {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(../images/loading.gif) no-repeat;
}

.lb-nav {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}

.lb-container > .nav {
  left: 0;
}

.lb-nav a {
  outline: none;
  background-image: url("data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==");
}

.lb-prev, .lb-next {
  height: 100%;
  cursor: pointer;
  display: block;
}

.lb-nav a.lb-prev {
  width: 34%;
  left: 0;
  float: left;
  background: url(../images/prev.png) left 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-prev:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-nav a.lb-next {
  width: 64%;
  right: 0;
  float: right;
  background: url(../images/next.png) right 48% no-repeat;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: opacity 0.6s;
  -moz-transition: opacity 0.6s;
  -o-transition: opacity 0.6s;
  transition: opacity 0.6s;
}

.lb-nav a.lb-next:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

.lb-dataContainer {
  margin: 0 auto;
  padding-top: 5px;
  *zoom: 1;
  width: 100%;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.lb-dataContainer:after {
  content: "";
  display: table;
  clear: both;
}

.lb-data {
  padding: 0 4px;
  color: #ccc;
}

.lb-data .lb-details {
  width: 85%;
  float: left;
  text-align: left;
  line-height: 1.1em;
}

.lb-data .lb-caption {
  font-size: 13px;
  font-weight: bold;
  line-height: 1em;
}

.lb-data .lb-caption a {
  color: #4ae;
}

.lb-data .lb-number {
  display: block;
  clear: left;
  padding-bottom: 1em;
  font-size: 12px;
  color: #999999;
}

.lb-data .lb-close {
  display: block;
  float: right;
  width: 30px;
  height: 30px;
  background: url(../images/close.png) top right no-repeat;
  text-align: right;
  outline: none;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.lb-data .lb-close:hover {
  cursor: pointer;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

/*# sourceMappingURL=sass */