@charset "utf-8";


/* -------------------------------------------------------
   common parts
------------------------------------------------------- */

/*fadein
------------------------------------------------------- */
.anim{
  opacity: 0;
}
.anim.active {
  -webkit-animation: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
          animation: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
  -webkit-animation-name: slide_in_lv1, fade_in;
          animation-name: slide_in_lv1, fade_in;
}
@keyframes fade_in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes slide_in_lv1 {
  0% { transform: translateY(0.7vw); }
  100% { transform: translateY(0); }
}
@keyframes scale_in_lv1 {
  0% { transform: scale(0.8); }
  100% { transform: scale(1); }
}


/* mv
------------------------------------------------------- */
.mv{
  width: 100%;
  position: relative;
  overflow:hidden;
  background-size:100%;
  height: 30vh;
}
.mv > .mvTxt{
  position:absolute;
  top:0;
  bottom: 0;
  left:20px;
  margin: auto;
  height:6.5em;
  line-height: 1;
}
.mvTxt h2{
  font-size: 275%;
  letter-spacing: 0.1em;
  text-align: left;
  position: relative;
  opacity: 0;
  animation:move 2s cubic-bezier(.4, 0, .2, 1) forwards;
  animation-delay: 0.2s;
}
.mvTxt h2 span{
  display: block;
  font-size: 50%;
  font-family: "Roboto","sans-self";
  font-weight: 700;
  padding-top: 2.2em;
  position: relative;
}
@keyframes move {
  100% {
    transform: translate(30px, 0);
    opacity:  1;
  }
}

@media screen and (max-width:1024px){
  .mv > .mvTxt{
    height:4em;
  }
  .mvTxt h2{
    font-size: 220%;
  }
  .mvTxt h2 span{
    padding-top: 1em;
  }
}
@media screen and (max-width:767px){
  .mv{height: auto;}
  .mv > .mvTxt{
    height:3em;
    left:  15px;
  }
  .mvTxt h2{
    font-size:170%;
  }
}


/* title
------------------------------------------------------- */

/*ttlBoxC*/
.ttlBoxC{
  display: block;
  text-align: center;
  font-size: 214%;
  font-family: "ten-mincho", serif;
  font-feature-settings: "ss02";
  margin-bottom: 60px;
  font-weight: normal;
}
.ttlBoxC span{
  border: solid 1px #ccc;
  padding: 16px 60px;
  line-height: 1;
  display: inline-block;
}
.ttlBoxC span > span{
  font-size: 60%;
  border: none;
  padding: 0;
}
@media screen and (max-width:1024px){
  .ttlBoxC{
    font-size:182%;
    margin-bottom:30px;
  }
  .ttlBoxC span{
    padding: 10px 30px;
  }
}
@media screen and (max-width:1024px){
  .ttlBoxC{
    font-size:160%;
  }
}


/*ttlLineBtm*/
.ttlLineBtm{
  font-family: "ten-mincho", serif;
  font-feature-settings: "ss02";
  font-weight: normal;
  font-size:200%;
  margin-bottom: 60px;
  position: relative;
  line-height: 2;
}
.ttlLineBtm::after{
  content: "";
  position: absolute;
  left:0;
  bottom: -20px;
  height: 1px;
  width: 5em;
  background-color: #000;
}
.ttlLineBtm span{
  font-size: 60%;
}
@media all and (max-width: 1024px) {
  .ttlLineBtm{
    font-size: 160%;
    line-height: 1.7;
  }
}


/* btn
------------------------------------------------------- */
.btn{
  margin: 0 auto;
  text-align: center;
}
.btn a::before{
  content: "\f105";
  position: relative;
  padding-right: 5px;
  font-family: "fontAwesome";
}
.btn a {
  display: inline-block;
  padding:16px 30px;
  min-width: 220px;
  position: relative;
  transition: all .3s;
  text-decoration: none;
  text-align: center;
}
.btn.blk a{
  color: #fff;
  background: #000;
}
.btn.btnLine a{
  color: #fff;
  border: solid 1px #fff;
}
.btn.blk a:hover {
  background-color: #444;
}
.btn.btnLine a:hover {
  background-color: #fff;
  color: #000;
}

/*btn white*/
.btnWht {
  margin: 0 auto;
  text-align: center;
  display: block;
}
.btnBlk a {
  display: inline-block;
  padding:16px 30px;
  width: 100%;
  min-width: 220px;
  color: #fff;
  position: relative;
  background: #000;
  transition: all .3s;
  text-decoration: none;
  text-align: center;
}
.btnBlk a::before{
  content: "\f105";
  position: relative;
  padding-right: 5px;
  font-family: "fontAwesome";
}
.btnBlk a:hover {
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  background-color: #444;
}




/* アンカーリンク調整
------------------------------------------------------- */
  .anchor{
    margin-top:-120px !important;
    padding-top: 120px !important;
  }

@media all and (max-width:1118px) {
  .anchor{
    margin-top:-90px !important;
    padding-top: 90px !important;
  }
}



/* 基本のスタイル */
.delighter {
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  -webkit-transform: translateY(15px);
  transform: translateY(15px);
  opacity: 0;
}
.delighter.started {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.delighter.delay {
  transition-delay: 0.2s;
  transition-duration:1s;
}




/* 画像拡大
------------------------------------------------------- */
@keyframes lum-fade {
  0% {opacity: 0;}
  100% {opacity: 1;}
}
@keyframes lum-fadeZoom {
  0% {transform: scale(0.5);opacity: 0;}
  100% {transform: scale(1);opacity: 1;}
}
@keyframes lum-loader-rotate {
  0% { transform: translate(-50%, -50%) rotate(0);}
  50% { transform: translate(-50%, -50%) rotate(-180deg);}
  100% { transform: translate(-50%, -50%) rotate(-360deg);}
}
@keyframes lum-loader-before {
  0% { transform: scale(1);}
  10% { transform: scale(1.2) translateX(6px);}
  25% { transform: scale(1.3) translateX(8px);}
  40% { transform: scale(1.2) translateX(6px);}
  50% { transform: scale(1);}
  60% { transform: scale(0.8) translateX(6px);}
  75% { transform: scale(0.7) translateX(8px);}
  90% { transform: scale(0.8) translateX(6px);}
  100% { transform: scale(1);}
}
@keyframes lum-loader-after {
  0% { transform: scale(1);}
  10% { transform: scale(1.2) translateX(-6px);}
  25% { transform: scale(1.3) translateX(-8px);}
  40% { transform: scale(1.2) translateX(-6px);}
  50% { transform: scale(1);}
  60% { transform: scale(0.8) translateX(-6px);}
  75% { transform: scale(0.7) translateX(-8px);}
  90% { transform: scale(0.8) translateX(-6px);}
  100% { transform: scale(1);}
}
.lum-lightbox {background: rgba(0, 0, 0, 0.6);  z-index: 999;}
.lum-lightbox-inner {
  top: 2.5%;
  right: 2.5%;
  bottom: 2.5%;
  left: 2.5%;
}
.lum-lightbox-inner img {position: relative;}
.lum-lightbox-inner .lum-lightbox-caption {
  margin: 0 auto;
  color: #fff;
  max-width: 700px;
  text-align: center;
}
.lum-loading .lum-lightbox-loader {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 66px;
  height: 20px;
  animation: lum-loader-rotate 1800ms infinite linear;
}
.lum-lightbox-loader:before,
.lum-lightbox-loader:after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  margin-top: -10px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
}
.lum-lightbox-loader:before {
  left: 0;
  animation: lum-loader-before 1800ms infinite linear;
}

.lum-lightbox-loader:after {
  right: 0;
  animation: lum-loader-after 1800ms infinite linear;
  animation-delay: -900ms;
}

.lum-lightbox.lum-opening {
  animation: lum-fade 180ms ease-out;
}
.lum-lightbox.lum-opening .lum-lightbox-inner {
  animation: lum-fadeZoom 180ms ease-out;
}
.lum-lightbox.lum-closing {
  animation: lum-fade 300ms ease-in;
  animation-direction: reverse;
}
.lum-lightbox.lum-closing .lum-lightbox-inner {
  animation: lum-fadeZoom 300ms ease-in;
  animation-direction: reverse;
}
.lum-img {transition: opacity 120ms ease-out;}
.lum-loading .lum-img {opacity: 0;}
.lum-gallery-button {
  overflow: hidden;
  text-indent: 150%;
  white-space: nowrap;
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0;
  outline: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 100px;
  max-height: 100%;
  width: 60px;
  cursor: pointer;
}
.lum-close-button {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 32px;
  height: 32px;
  opacity: 0.3;
}
.lum-close-button:hover {
  opacity: 1;
}
.lum-close-button:before,
.lum-close-button:after {
  position: absolute;
  left: 15px;
  content: " ";
  height: 33px;
  width: 2px;
  background-color: #fff;
}
.lum-close-button:before {
  transform: rotate(45deg);
}
.lum-close-button:after {
  transform: rotate(-45deg);
}
.lum-previous-button {
  left: 12px;
}
.lum-next-button {
  right: 12px;
}
.lum-gallery-button:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  width: 36px;
  height: 36px;
  border-top: 4px solid rgba(255, 255, 255, 0.8);
}
.lum-previous-button:after {
  transform: translateY(-50%) rotate(-45deg);
  border-left: 4px solid rgba(255, 255, 255, 0.8);
  box-shadow: -2px 0 rgba(0, 0, 0, 0.2);
  left: 12%;
  border-radius: 3px 0 0 0;
}
.lum-next-button:after {
  transform: translateY(-50%) rotate(45deg);
  border-right: 4px solid rgba(255, 255, 255, 0.8);
  box-shadow: 2px 0 rgba(0, 0, 0, 0.2);
  right: 12%;
  border-radius: 0 3px 0 0;
}
/* This media query makes screens less than 460px wide display in a "fullscreen"-esque mode. Users can then scroll around inside the lightbox to see the entire image. */
@media (max-width: 460px) {
  .lum-lightbox-image-wrapper {
    display: flex;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  .lum-lightbox-caption {
    width: 100%;
    position: absolute;
    bottom: 0;
  }
  /* Used to centre the image in the container, respecting overflow: https://stackoverflow.com/a/33455342/515634 */
  .lum-lightbox-position-helper {
    margin: auto;
  }
  .lum-lightbox-inner img {
    max-width: none;
    max-height: none;
  }
}

.newsList dl {
  display: flex;
  flex-wrap: wrap;
}
.newsList dl dt {
  width: 22%;
}
.newsList dl dd {
  width: 78%;
}

/* 中 middle
------------------------------------------------------- */

/* 小 small */
