/*** THEME ***/
/*
================================================================================

	MOGANA - TOP

================================================================================
*/
body {
  background: repeating-linear-gradient(-45deg, #c8c8c8, #c8c8c8 8px, #ffffff 4px, #ffffff 10px);
  background-size: 14px 14px;
}

.movie-container {
  height: 80vh;
  position: relative;
  background: #f1f1f1;
}
@media only screen and (max-width: 736px) {
  .movie-container {
    height: 50vh !important;
  }
}
.movie-container .movie-inner {
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
}
.movie-container .movie-inner iframe {
  box-sizing: border-box;
  height: 56.25vw;
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 177.77777778vh;
}
.movie-container .overlay_video2 {
  display: block;
  background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.4) 50%);
  background-size: 3px 3px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100%;
}
@media only screen and (max-width: 736px) {
  .movie-container .overlay_video2 {
    background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.6) 50%);
  }
}
.movie-container #logo {
  width: 80vw;
  margin: auto;
}
.movie-container #logo path {
  stroke: transparent;
  fill: transparent;
}
.movie-container #logo.start .st0,
.movie-container #logo.start .st1 {
  stroke-dasharray: 50;
  stroke-dashoffset: 0;
  stroke-width: 1;
}
.movie-container #logo.start .st0 {
  stroke: #fff;
  animation: st0_anime0 8s ease-in 0s forwards;
}
.movie-container #logo.start .st1 {
  stroke: #fff;
  animation: st1_anime0 8s ease-in 0s forwards;
}
@keyframes st0_anime0 {
  0% {
    stroke-dashoffset: 6000;
    fill: transparent;
    stroke-width: 1;
  }
  50% {
    fill: transparent;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #fff;
    stroke-width: 0;
  }
}
@keyframes st1_anime0 {
  0% {
    stroke-dashoffset: 6000;
    fill: transparent;
    stroke-width: 1;
  }
  50% {
    fill: transparent;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #fff;
    stroke-width: 0;
  }
}
.movie-container .box {
  width: 100vw;
  position: absolute;
  top: 30%;
  left: 0;
  padding: 50px 0;
  text-align: center;
  z-index: 100;
}
.movie-container .top_area {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  color: #fff;
  z-index: 3;
  width: 100%;
  text-align: center;
}
@media only screen and (max-width: 736px) {
  .movie-container .top_area {
    width: 95%;
  }
}
.movie-container .top_area .top_ttl {
  font-size: 5rem;
  margin-bottom: 2.1428571429rem;
}
.movie-container .top_area .top_ttl .mR1 {
  margin-right: 2.8571428571rem;
}
.movie-container .top_area .top_ttl .mL1 {
  margin-left: 8.5714285714rem;
  font-size: 4rem;
}
.movie-container .top_area .top_ttl .mL2 {
  margin-left: 8.5714285714rem;
}
.movie-container .top_area .top_ttl .small {
  font-size: 2.1428571429rem;
}
@media only screen and (max-width: 736px) {
  .movie-container .top_area .top_ttl {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 1.4285714286rem;
    line-height: 1.4;
  }
  .movie-container .top_area .top_ttl .mR1 {
    margin-right: 1.2rem;
  }
  .movie-container .top_area .top_ttl .mL1,
  .movie-container .top_area .top_ttl .mL2 {
    margin: 0;
  }
  .movie-container .top_area .top_ttl .mL1 {
    font-size: 2.4rem;
  }
  .movie-container .top_area .top_ttl .small {
    font-size: 1.6rem;
  }
}
.movie-container .top_area .top_text {
  margin-top: 5.7142857143rem;
  font-size: 1.2857142857rem;
  line-height: 3;
  text-align: center;
  margin-bottom: 0;
}
@media only screen and (max-width: 736px) {
  .movie-container .top_area .top_text {
    margin: 1.4285714286rem 0 0;
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.8;
  }
}
.movie-container .scroll {
  z-index: 3;
  color: #fff;
  position: absolute;
  right: 5%;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}
@media only screen and (max-width: 736px) {
  .movie-container .scroll {
    display: none;
  }
}
.movie-container .scroll span {
  display: block;
  writing-mode: vertical-rl;
  letter-spacing: 0.2em;
}
.movie-container .scroll .border_ani {
  position: relative;
  height: 5.7142857143rem;
  margin-left: -2px;
  margin-top: 0.7142857143rem;
  transform: scaleY(0);
  animation: move 2s cubic-bezier(1, 0, 0, 1) infinite forwards;
  transform-origin: top left;
}
.movie-container .scroll .border_ani:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 3;
  width: 2px;
  height: 100%;
  background: #fff;
}

@keyframes move {
  0% {
    transform: scaleY(0);
    transform-origin: top left;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top left;
  }
  75% {
    transform: scaleY(1);
    transform-origin: bottom left;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom left;
  }
}
#contents .sub-contents {
  position: relative;
  max-width: 100rem;
  margin: 0 auto;
}
@media only screen and (max-width: 736px) {
  #contents .sub-contents {
    padding: 0 2%;
  }
}
#contents .sub-contents .contents_area {
  width: 100rem;
  padding: 4.2857142857rem 0;
}
@media only screen and (max-width: 736px) {
  #contents .sub-contents .contents_area {
    width: 100%;
    margin-top: 0.5rem;
    padding-top: 1.4285714286rem;
  }
}
#contents .sub-contents .contents_area .flex_area {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 2rem;
}
@media only screen and (max-width: 736px) {
  #contents .sub-contents .contents_area .flex_area {
    justify-content: space-between;
    padding: 0;
  }
}
#contents .sub-contents .contents_area .flex_area .services {
  outline: 6px solid #323232;
  outline-offset: -6px;
  width: 30.7142857143rem;
  background: #fff;
  margin-right: 1.9285714286rem;
  margin-bottom: 1.4285714286rem;
  box-sizing: border-box;
  position: relative;
}
#contents .sub-contents .contents_area .flex_area .services:nth-child(3n) {
  margin-right: 0;
}
@media only screen and (max-width: 736px) {
  #contents .sub-contents .contents_area .flex_area .services {
    outline: 3px solid #323232;
    outline-offset: -3px;
    width: 48%;
    margin-right: 0;
  }
}
#contents .sub-contents .contents_area .flex_area .services a,
#contents .sub-contents .contents_area .flex_area .services .a_no {
  text-decoration: none;
  display: block;
}
#contents .sub-contents .contents_area .flex_area .services a img,
#contents .sub-contents .contents_area .flex_area .services .a_no img {
  opacity: 1;
  display: block;
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 736px) {
  #contents .sub-contents .contents_area .flex_area .services a img,
  #contents .sub-contents .contents_area .flex_area .services .a_no img {
    width: 100%;
  }
}
#contents .sub-contents .contents_area .flex_area .services a .free_icon,
#contents .sub-contents .contents_area .flex_area .services .a_no .free_icon {
  position: absolute;
  top: 4%;
  right: 4%;
}
@media only screen and (max-width: 736px) {
  #contents .sub-contents .contents_area .flex_area .services a .free_icon,
  #contents .sub-contents .contents_area .flex_area .services .a_no .free_icon {
    width: 15%;
    height: auto;
  }
}
#contents .sub-contents .contents_area .flex_area .services a .free_icon img,
#contents .sub-contents .contents_area .flex_area .services .a_no .free_icon img {
  width: 3.9285714286rem;
  height: 3.9285714286rem;
}
@media only screen and (max-width: 736px) {
  #contents .sub-contents .contents_area .flex_area .services a .free_icon img,
  #contents .sub-contents .contents_area .flex_area .services .a_no .free_icon img {
    width: 100%;
    height: auto;
  }
}
#contents .sub-contents .contents_area .flex_area .services a .services_txt,
#contents .sub-contents .contents_area .flex_area .services .a_no .services_txt {
  height: 2.8571428571rem;
  padding: 0 8px 10px 14px;
  display: flex;
  background: #fff;
  align-items: center;
  font-size: 0.8571428571rem;
}
@media only screen and (max-width: 736px) {
  #contents .sub-contents .contents_area .flex_area .services a .services_txt,
  #contents .sub-contents .contents_area .flex_area .services .a_no .services_txt {
    height: 6.0714285714rem;
    display: block;
    line-height: 1.8;
    font-size: 0.9285714286rem;
    padding: 0 6px 0;
  }
}
#contents .sub-contents .contents_area .flex_area .services a:hover::before,
#contents .sub-contents .contents_area .flex_area .services .a_no:hover::before {
  content: "";
  position: absolute;
  z-index: 1;
  background: rgba(255, 255, 255, 0.3);
  width: 100%;
  height: 100%;
}
#contents .sub-contents .contents_area .flex_area .services .a_no:hover {
  opacity: 1;
}
#contents .sub-contents .contents_area .flex_area .comming {
  position: relative;
}
#contents .sub-contents .contents_area .flex_area .comming::before {
  content: "coming soon...";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  z-index: 1;
  text-align: center;
  font-size: 1.6em;
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#contents .sub-contents .contents_area .toppage_news {
  background-color: #fff;
  border-radius: 10px;
  padding: 2rem 3rem;
  margin: 3rem 2rem 0 2rem;
  box-sizing: border-box;
}
@media only screen and (max-width: 736px) {
  #contents .sub-contents .contents_area .toppage_news {
    margin: 8% 0 0 0;
    padding: 8% 3%;
  }
}
#contents .sub-contents .contents_area .toppage_news h2 {
  padding-bottom: 10px;
  border-bottom: 3px dotted #000;
  margin-bottom: 1em;
}
#contents .sub-contents .contents_area .toppage_news ul {
  width: 100%;
  list-style-type: none;
  overflow: auto;
  max-height: 340px;
}
#contents .sub-contents .contents_area .toppage_news ul li {
  margin-bottom: 0.5em;
  display: block;
}
#contents .sub-contents .contents_area .toppage_news ul li :hover {
  background-color: #f0f0f0;
  transition: 0.5s;
  border-radius: 10px;
}
#contents .sub-contents .contents_area .toppage_news ul li a {
  text-decoration: none;
  display: flex;
  padding: 10px 0;
  padding-left: 10px;
}
@media only screen and (max-width: 736px) {
  #contents .sub-contents .contents_area .toppage_news ul li a {
    flex-direction: column;
    padding-left: 0;
  }
}
#contents .sub-contents .contents_area .toppage_news ul li span.news_date {
  width: 15%;
}
@media only screen and (max-width: 736px) {
  #contents .sub-contents .contents_area .toppage_news ul li span.news_date {
    width: 100%;
    margin-bottom: 0.3em;
  }
}
#contents .sub-contents .contents_area .toppage_news ul li span.news_text {
  width: 82%;
}
@media only screen and (max-width: 736px) {
  #contents .sub-contents .contents_area .toppage_news ul li span.news_text {
    width: 100%;
    text-decoration: underline;
  }
}