/*
 *  Remodal - v1.1.1
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */

/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */

/* Default theme styles for the background */

.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  -webkit-filter: blur(3px);
  filter: blur(3px);
}

/* Default theme styles of the overlay */

.remodal-overlay {
  background: rgba(0,0,0, 0.6);
}

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
  -webkit-animation-name: remodal-overlay-opening-keyframes;
  animation-name: remodal-overlay-opening-keyframes;
}

.remodal-overlay.remodal-is-closing {
  -webkit-animation-name: remodal-overlay-closing-keyframes;
  animation-name: remodal-overlay-closing-keyframes;
}

/* Default theme styles of the wrapper */

.remodal-wrapper {
  padding: 10px 10px 0;
}

/* Default theme styles of the modal dialog */

.remodal {
  box-sizing: border-box;
  width: 95%;
  margin-bottom: 10px;
  padding: 4%;

  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  color: #2b2e38;
}

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
  -webkit-animation-name: remodal-opening-keyframes;
  animation-name: remodal-opening-keyframes;
}

.remodal.remodal-is-closing {
  -webkit-animation-name: remodal-closing-keyframes;
  animation-name: remodal-closing-keyframes;
}

/* Vertical align of the modal dialog */

.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}

/* Close button */

.remodal-close {
  /*position: absolute;
  top: 0;
  right: 0;

  display: block;
  overflow: visible;

  width: 35px;
  height: 35px;
  margin: 0;
  padding: 0;

  cursor: pointer;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  text-decoration: none;

  color: #a4802a;
  border: 0;
  outline: 0;
  background: transparent; */

  width: 50px;
  height: 50px;
  background: url(../img/modal_close.svg);
  background-size: cover;
  position: absolute;
  right: 0;
  top: 0;
  left: auto;
  border: none;
  z-index: 100;
}
@media only screen and (max-width: 749px) {
  .remodal-close{
    width: 31px;
    height: 30px;
  }
}

.remodal-close:hover,
.remodal-close:focus {
  color: #2b2e38;
}

/*.remodal-close:before {
  font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
  font-size: 25px;
  line-height: 35px;

  position: absolute;
  top: 0;
  left: 0;

  display: block;

  width: 35px;

  content: "\00d7";
  text-align: center;
} */

/* Dialog buttons */

.remodal-confirm,
.remodal-cancel {
  font: inherit;

  display: inline-block;
  overflow: visible;

  min-width: 110px;
  margin: 0;
  padding: 12px 0;

  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;

  border: 0;
  outline: 0;
}

.remodal-confirm {
  color: #fff;
  background: #81c784;
}

.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a;
}

.remodal-cancel {
  color: #fff;
  background: #e57373;
}

.remodal-cancel:hover,
.remodal-cancel:focus {
  background: #ef5350;
}

/* Remove inner padding and border in Firefox 4+ for the button tag. */

.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;

  border: 0;
}

/*========================================
 logbum-css 
 ========================================*/

.logbum-remodal-inner {
  height: 85vh;
  overflow-x: hidden;
  background-color: #fff;
  padding-bottom: 30px;
}
.modal-cont {
  padding: 20px;
}
.logbum-remodal-inner p {
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  font-size: 14px;
  font-family: 'Noto Sans JP', sans-serif;
  margin: 0;
  line-height: 1.5em;
}
.logbum-remodal-inner .modal-cont .modal-ttl p{
  background-color: #008b22;
  color: #fff;
  width: fit-content;
  margin:  0 auto;
  padding: 5px 10px;
  margin-bottom: 10px;
  font-size: 16px!important;
  font-weight: 800!important;
}
.logbum-remodal-inner .modal-tag {
  background-color: #fff;
  border: 1px solid #008b22;
  padding: 3px 10px;
  width: fit-content;
  margin:  0 auto;
  color: #008b22;
  border-radius: 20px;
  margin-bottom: 20px;
}
.modal-cont .modal-img img{
  width: 100%;
  margin: 0 auto;
  object-fit: cover;
  margin-bottom: 20px;
}
.logbum-remodal-inner .modal-text {
  text-align: left;
  line-height: 1.8;
  width: 100%;
}
.modal-slider-ttl {
  font-size: 16px;
  padding: 5px 10px;
  border-top: 2px solid #008b22;
  border-bottom: 2px solid #008b22;
  color: #008b22;
  font-weight: 600;
  width: fit-content;
  margin: 0 auto 20px;
}
.logbum-search {
  margin: 30px auto;
}
.swiper-slide a {
  color: #000;
  text-decoration: none;
}
.swiper-slide .column-cont {
  text-align: left;

}
.swiper-slide .column-cont:hover {
  opacity: 0.7;
  transition: .3s;
}
.swiper-slide .column-cont img {
    width: 100%;
    height: 30vw;
    object-fit: cover;
    margin-bottom: 5px;
}
.swiper-slide .column-cont .ttl {
  font-size: 14px;
  font-weight: 800!important;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* 任意の行数を指定 */
  margin-bottom: 5px;
}
.swiper-slide .column-cont .text {
  font-size: 14px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* 任意の行数を指定 */
}

@media screen and (min-width: 768px) {
  .remodal {
    padding: 2%;
  }
  .logbum-remodal-inner {
    padding-bottom: 50px;
  }
  .modal-cont {
    padding: 50px;
  }
  .modal-cont .modal-img img{
    object-fit: contain;
    max-height: 530px;
  }
  .logbum-search {
    margin: 50px auto;
  }
  .swiper-slide .column-cont img {
    height: auto;
    margin: 50px auto;
    object-fit: cover;
    margin-bottom: 5px;
	  height: 200px;
  }
  .remodal-close {
    width: 30px;
    height: 28px;
  }
  .modal-slider-ttl {
    margin: 0 auto 0;
  }

}
/*========================================
 logbum-css end 
 ========================================*/

/* Keyframes
   ========================================================================== */

@-webkit-keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);

    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;

    opacity: 1;

    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

@keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);

    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;

    opacity: 1;

    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

@-webkit-keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);

    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);

    opacity: 0;

    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

@keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);

    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);

    opacity: 0;

    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

@-webkit-keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* Media queries
   ========================================================================== */

   @media only screen and (min-width: 641px) {
  .remodal {
    max-width: 1000px;
  }
} 

/* IE8
   ========================================================================== */

.lt-ie9 .remodal-overlay {
  background: #2b2e38;
}

.lt-ie9 .remodal {
  width: 700px;
}
