/* --------------------------------------
  WRAPPER
-------------------------------------- */
.inner {
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 40px;
  }
}
@media screen and (max-width: 480px) {
  .inner {
    padding: 0 20px;
  }
}

/* --------------------------------------
  FLEX
-------------------------------------- */
.col3 {
  width: calc(100% / 3);
  width: -webkit-calc(100% / 3);
}
@media screen and (max-width: 767px) {
  .flex-sp-col .col3 {
    width: calc(100%);
    width: -webkit-calc(100%);
  }
}

/* --------------------------------------
  Headline
-------------------------------------- */
.sectionHeadline-1 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 50px;
}
.sectionHeadline-2 {
  font-size: 24px;
  font-weight: bold;
  margin: 50px auto 30px;
}

@media screen and (max-width: 767px) {
  .sectionHeadline-1 {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .sectionHeadline-2 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

/* Text */
.attentionText {
  color: #c30000;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .attentionText {
    font-size: 16px; 
  }
}

/* --------------------------------------
  Button
-------------------------------------- */
button {
  background: transparent;
  border: none;
  -webkit-appearance: none;
  outline: none;
}
.btn {
  display: inline-block;
  width: 100%;
  color: #434343;
  text-align: center;
  line-height: 20px;
  vertical-align: middle;
  border-radius: 5px;
  border: 1px solid #d0d0d0;
  position: relative;
}

@media screen and (max-width: 767px) {
  .btn {
    display: block;
    margin: 0 auto;
  }
  .btn ~ .btn {
    margin-top: 10px;
  }
}

/* Arrow */
.is-prev:before,
.is-next:before {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  border-left: 2px solid #434343;
  border-bottom: 2px solid #434343;
  position: absolute;
  top: 50%;
}
.is-prev:before {
  left: 12px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  -ms-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}
.is-next:before {
  right: 12px;
  -webkit-transform: translateY(-50%) rotate(225deg);
  -ms-transform: translateY(-50%) rotate(225deg);
  transform: translateY(-50%) rotate(225deg);
}

/* Button Block */
.btnBlock {
  text-align: center;
  margin-top: 50px;
}
.btnBlock__text {
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .btnBlock__text {
    margin-top: 10px;
  }
}

/* --------------------------------------
  Block
-------------------------------------- */
/* Gray Block */
.grayBlock {
  background: #f3f3f3;
  padding: 30px 30px 40px;
  border: 1px solid #d0d0d0;
  border-radius: 5px;
}
.grayBlock__ttl {
  font-size: 20px;
  font-weight: bold;
}
.grayBlock__text {
  font-size: 20px;
}
.grayBlock .btnBlock {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .grayBlock {
    padding: 20px 15px 30px;
  }
  .grayBlock__text {
    font-size: 16px;
  }
}

/* Border Block */
.borderBlock {
  text-align: center;
  padding: 30px 15px;
  border: 2px solid #ddd;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .borderBlock {
    padding: 15px;
  }
}

/* --------------------------------------
  Slider
-------------------------------------- */
.js-slider__item {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
@media screen and (max-width: 767px) {
  .js-slider__item {
    /*padding: 0 20px;*/
  }
}

/* --------------------------------------
  MOVIE
-------------------------------------- */
.video-wrapper {
  position: relative;
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
}
.video-5625 {
  padding-bottom: 56.25%;
}
.video-6666 {
  padding-bottom: 66.66%;
}
.video-wrapper iframe, 
.video-wrapper object, 
.video-wrapper embed,
.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* --------------------------------------
  LINK
-------------------------------------- */
.link_googlemap {
  display: inline-block;
  /*margin: 0 0 0 10px;*/
}
.link_googlemap a {
  display: block;
  font-family: Helvetica, "Helvetica Neue", "Lucida Grande", Arial, sans-serif;
  font-size: 15px;
  font-weight: bold;
  color: #e60012;
}
.link_googlemap a:hover {
  /*opacity: 1;*/
}
@media screen and (max-width: 480px) {
  .link_googlemap {
    margin: 10px 0 0;
  }
}
