@charset "UTF-8";

/**
 * 全体で使うscss用変数
 */

html {
  scroll-behavior: smooth;
}

.caution_area {
  border: #C1272D solid;
  display: flex;
}

@media screen and (min-width: 960px) {
  .caution_area {
    border-width: 8px;
  }
}

@media screen and (min-width: 600px) and (max-width: 959px) {
  .caution_area {
    border-width: 8px;
  }
}

@media screen and (max-width: 599px) {
  .caution_area {
    border-width: 5px;
  }
}

.caution_area .caution_block {
  width: 50%;
}

@media screen and (min-width: 960px) {
  .caution_area .caution_block.left_block {
    border-right: #C1272D solid 4px;
  }
}

@media screen and (min-width: 600px) and (max-width: 959px) {
  .caution_area .caution_block.left_block {
    border-right: #C1272D solid 4px;
  }
}

@media screen and (max-width: 599px) {
  .caution_area .caution_block.left_block {
    border-right: #C1272D solid 2.5px;
  }
}

@media screen and (min-width: 960px) {
  .caution_area .caution_block.right_block {
    border-left: #C1272D solid 4px;
  }
}

@media screen and (min-width: 600px) and (max-width: 959px) {
  .caution_area .caution_block.right_block {
    border-left: #C1272D solid 4px;
  }
}

@media screen and (max-width: 599px) {
  .caution_area .caution_block.right_block {
    border-left: #C1272D solid 2.5px;
  }
}

.border_green {
  border-bottom: 2px solid #4BB582;
}

.movie_description_text {
  color: red;
  font-weight: bold;
  font-size: 30px;
  margin-top: 30px;
  text-align: center;
}

@media screen and (max-width: 599px) {
  .movie_description_text {
    font-size: 20px;
  }
}

.register_movie_area {
  margin: 0 auto 10px;
  position: relative;
  width: 48%;
  margin-bottom: 30px;
}

@media screen and (max-width: 599px) {
  .register_movie_area {
    margin-bottom: 10px;
    width: 75%;
  }
}

.registerGuideArea {
  text-align: center;
  width: 48%;
}

@media screen and (max-width: 599px) {
  .registerGuideArea {
    width: 100%;
  }
}

.registerGuideArea p {
  font-size: 30px;
}

@media screen and (min-width: 960px) {
  .registerGuideArea p {
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 600px) and (max-width: 959px) {
  .registerGuideArea p {
    font-size: 20px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 599px) {
  .registerGuideArea p {
    font-size: 16px;
    margin-bottom: 0;
  }
}

.registerGuideArea p .focusText {
  color: red;
  font-weight: bold;
}

.registerGuideArea .anchorButton {
  background-color: #ed7d0d;
  color: #fff;
  display: block;
  font-size: 30px;
  margin: 0 auto;
  padding: 20px;
  width: 70%;
}

@media screen and (min-width: 600px) and (max-width: 959px) {
  .registerGuideArea .anchorButton {
    font-size: 20px;
  }
}

@media screen and (max-width: 599px) {
  .registerGuideArea .anchorButton {
    display: none;
  }
}

.registerGuideArea .anchorButton:hover {
  opacity: 0.7;
}

input[name=tab] {
  display: none;
}

.tabMenu {
  border: 1px solid #000;
  cursor: pointer;
  font-size: 20px;
  padding: 10px 0;
  text-align: center;
  width: 50%;
}

@media screen and (max-width: 599px) {
  .tabMenu {
    font-size: 18px;
  }
}

.tabMenu.mailMenu {
  border-left: none;
}

h2 {
  font-size: 30px;
}

@media screen and (max-width: 599px) {
  h2 {
    font-size: 5.5vw;
  }
}

@media screen and (max-width: 599px) {
  .play_video_icon {
    width: 40px !important;
  }
}

.formAnchor {
  display: block;
  padding-top: 80px;
  margin-top: -80px;
}

