@charset "UTF-8";
@import url("import/extend.css");
/*-------------------------------

ベース

-------------------------------*/
* {
  -webkit-transition: width, height, padding 0.4s ease-in-out 0.01s;
  transition: width, height, padding 0.4s ease-in-out 0.01s;
}

html {
  font-size: calc(12px + 0.9375vw);
}

body {
  background-color: #f3f3f2 !important;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  color: #494a41;
  background-image: url（ "../images/bg_ptn.svg" ）;
  text-justify: inter-ideograph;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: justify;
  line-height: 1.5em;
  letter-spacing: 0.1em;
}

section {
  margin: 13vh 2vw;
  padding: 5vw;
  position: relative;
  background-color: #fff;
}
section:first-of-type {
  margin: 8vh 2vw 13vh;
}

h2 {
  font-size: 1.5rem;
  margin-top: 0.7em !important;
  letter-spacing: 0.2em;
  font-family: "a-otf-midashi-mi-ma31-pr6n", serif;
  color: #e83929;
}

p {
  font-size: 1rem;
}

a {
  color: #e04141;
  text-decoration: none;
}
a:hover, a:active, a:focus {
  color: #ee9999;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media screen and (min-width: 600px) {
  html {
    font-size: calc(9px + 0.9375vw);
  }
  section {
    margin: 9vh 7vw;
  }
  section:first-of-type {
    margin: 6vh auto 9vh;
  }
  h2 {
    font-size: 1.5rem;
  }
  .hidden_min-tablet {
    display: none !important;
  }
}
@media screen and (min-width: 920px) {
  body {
    letter-spacing: 0.1em;
  }
  html {
    font-size: 16px;
  }
  h2 {
    font-size: 32px;
  }
}
@media screen and (min-width: 1400px) {
  section {
    max-width: 1100px;
    margin: 90px auto;
  }
}
@media screen and (max-width: 600px) {
  .visible_min-tablet {
    display: none !important;
  }
}
/*---------- 共通パーツ ----------*/
.btn {
  font-size: 0.8em;
  display: block;
  margin: 0 auto;
  width: 160px;
  padding: 0.6em;
  text-align: center;
  text-decoration: none !important;
  color: #e83929 !important;
  border: 2px solid #e83929 !important;
  border-radius: 3px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.btn:hover {
  background: #e83929;
  color: #fff !important;
}

.vertical-line:before {
  background-color: #e83929;
  display: block;
  position: absolute;
  top: -1.3rem;
  left: 50%;
  content: "";
  width: 1px;
  height: 2.5rem;
  margin: 0 auto 0.6rem;
}

.Copyright {
  display: block;
  background: #e83929;
  margin: 0;
  padding: 1rem 0;
  text-align: center;
  font-size: 0.7em;
  color: #fff;
  font-family: "a-otf-midashi-mi-ma31-pr6n", serif;
}

@media screen and (min-width: 600px) {
  .text-center_min-tablet {
    text-align: center !important;
  }
}
.text-small {
  font-size: 0.7rem;
  margin: 0.6rem 0;
}

.text-gray {
  color: #97998b;
}

/*-------------------------------

各ページ

-------------------------------*/
/*---------- facebook埋め込み：レスポンシブ対応 ----------*/
.fb-page {
  display: block !important;
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  height: 600px;
}

/*---------- index.html ----------*/
.logo {
  width: 100%;
}
.logo img {
  height: 40vh;
  display: block;
  margin-left: 70vw;
}
@media screen and (min-width: 920px) {
  .logo img {
    height: 35vh;
  }
}

#about p {
  line-height: 2em;
}
#about .place {
  margin: 0 auto;
  padding: 2vh 0;
  height: 30vh;
  text-align: center;
  background-image: url("../images/bg_place.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
#about .place > svg {
  height: 100%;
}
#about .place > svg #dot-line {
  fill: none;
  stroke: #FFFFFF;
  stroke-width: 0.18rem;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 2, 4;
}
#about .place > svg #out-line {
  fill: none;
  stroke: #FFFFFF;
  stroke-width: 0.18rem;
  stroke-linecap: round;
  stroke-linejoin: round;
}
#about .place > svg .tamamura {
  fill: #E04141;
}
#about .place > svg .red {
  opacity: 0.5;
  fill: #E04141;
  mix-blend-mode: screen;
}
#about .place > svg .white {
  fill: #FFFFFF;
  mix-blend-mode: luminosity;
  -webkit-animation: opacity 4s;
          animation: opacity 4s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
@-webkit-keyframes opacity {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0.2;
  }
  100% {
    opacity: 0;
  }
}
@keyframes opacity {
  0% {
    opacity: 0;
  }
  40% {
    opacity: 0.2;
  }
  100% {
    opacity: 0;
  }
}
@media screen and (min-width: 600px) {
  #about .place {
    margin: 2.5rem 0;
  }
}

#movie .movie-container {
  padding: 5px;
}
#movie .img-container {
  position: relative;
}
#movie .img-container .scale {
  overflow: hidden;
}
#movie .img-container .scale:before {
  background: radial-gradient(rgba(0, 0, 0, 0.6), rgb(0, 0, 0));
  opacity: 0;
}
#movie .img-container .scale .thum {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
#movie figure .playbtn {
  width: 30%;
  height: auto;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
#movie figure figcaption {
  letter-spacing: 0.1em;
  color: #494a41;
  margin: 1rem 0;
  line-height: 1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
#movie figure figcaption .title {
  font-size: 0.8rem;
  display: block;
}
#movie figure figcaption .date {
  font-size: 0.6rem;
  letter-spacing: 0;
}
#movie a {
  text-decoration: none;
}
#movie a:hover figcaption {
  color: #e04141;
  text-decoration: underline;
}
#movie a:hover .thum {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}
#movie a:hover .scale:before {
  opacity: 1;
}