@charset "UTF-8";
/**
 *
 * common: 共通
 *
*/
/*----------------------------
	ツール
-----------------------------*/
/*--------------------------------------------------------------------------
	basic elements
---------------------------------------------------------------------------*/
html {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 1px;
  color: #222;
}

body {
  width: 100%;
  background: #fff;
  -webkit-text-size-adjust: 100%;
  word-wrap: break-word;
  transition: opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
body #FixedBg {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 1;
  background: url("../images/kasoudbg_pc.jpg") no-repeat top center;
  background-size: 100%;
  padding: 0;
}
body #FixedBg .inner {
  width: calc(100% - 150px);
  height: 100vh;
  margin: 0 auto;
  z-index: 2;
}
body #Contents {
  overflow: hidden;
}

a {
  color: #222;
  outline: none;
  display: block;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(57, 60, 61, 0.2);
  position: relative;
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
@media screen and (min-width: 1024px) {
  a:hover {
    color: #a2a2a2;
  }
}
@media screen and (min-width: 1024px) {
  a:hover {
    opacity: 0.7;
  }
}
a * {
  cursor: pointer;
}

picture {
  display: block;
}

img {
  width: 100%;
  display: block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

select, input, textarea {
  align-self: center;
  display: block;
  border: none;
  outline: none;
  border-radius: 0;
  /*-webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;*/
  /* Google Chrome, Safari, Opera 15+, Android, iOS */
  /* Firefox 18- */
  /* Firefox 19+ */
  /* IE 10+ */
}
select:-moz-placeholder-shown, input:-moz-placeholder-shown, textarea:-moz-placeholder-shown {
  color: #d0d0d0;
}
select:placeholder-shown, input:placeholder-shown, textarea:placeholder-shown {
  color: #d0d0d0;
}
select::-webkit-input-placeholder, input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #d0d0d0;
}
select:-moz-placeholder, input:-moz-placeholder, textarea:-moz-placeholder {
  color: #d0d0d0;
  opacity: 1;
}
select::-moz-placeholder, input::-moz-placeholder, textarea::-moz-placeholder {
  color: #d0d0d0;
  opacity: 1;
}
select:-ms-input-placeholder, input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #d0d0d0;
}

input[type=text], input[type=email], input[type=tel] {
  line-height: normal;
}

select {
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  width: auto;
}
select::-ms-expand {
  display: none;
}

span, label {
  display: block;
}

video::-webkit-media-controls-enclosure {
  overflow: hidden;
}

video::-webkit-media-controls-panel {
  width: calc(100% + 30px);
}

@media all and (-ms-high-contrast: none) {
  html {
    overflow: visible;
  }
  body #Page {
    overflow: visible;
  }
}
@media all and (max-width: 1024px) {
  html {
    font-size: 4vw;
    line-height: 6vw;
    letter-spacing: 0.2vw;
  }
  body #FixedBg {
    background: none;
  }
  body #FixedBg span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: url("../images/kasoudbg_sp.jpg") no-repeat top center;
    background-size: 100%;
  }
}
@media all and (max-width: 767px) {
  body {
    min-width: 320px;
  }
}
/*----------------------------
	helper : layout
-----------------------------*/
.sp {
  display: none !important;
}

.tb {
  display: none !important;
}

@media all and (min-width: 768px) and (max-width: 1024px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: none !important;
  }
  .tb {
    display: block !important;
  }
}
@media all and (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .tb {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
/*----------------------------
	Layout
-----------------------------*/
.flex, .slider_contents {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.flex.nowrap, .nowrap.slider_contents {
  flex-wrap: nowrap;
}

.flex.reverse, .reverse.slider_contents {
  flex-direction: row-reverse;
}

.flex.center, .center.slider_contents {
  justify-content: center;
  align-items: center;
}

.flex.row, .row.slider_contents {
  flex-flow: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
}

.centering {
  display: flex;
  justify-content: center;
  align-items: center;
}

.textof {
  text-overflow: ellipsis;
  overflow: hidden;
}

.ofi {
  font-family: "object-fit: cover;";
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  position: absolute;
  top: 0;
  left: 0;
}

.textfit {
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  overflow: hidden;
}

.dammybtn {
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.dammybtn * {
  cursor: pointer;
}
@media screen and (min-width: 1024px) {
  .dammybtn:hover {
    opacity: 0.7;
  }
}

.overflow {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
}

.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #202227;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: none;
}

.scroll-x {
  overflow-x: scroll;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
  -ms-overflow-style: none;
  flex-wrap: nowrap;
}
.scroll-x::-webkit-scrollbar {
  display: none;
}

.tbrl {
  writing-mode: vertical-rl;
}

.unactive {
  pointer-events: none;
}

.shadow {
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.sticky-top {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.sticky-bottom {
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
  align-self: flex-end;
}

.itemlist {
  list-style-type: none !important;
}

.vjs-menu-button-popup .vjs-menu {
  width: 20em;
  left: calc(50% - 10em);
}

.slider_contents .slider-arrow {
  width: 60px;
  height: 60px;
  top: calc(50% - 30px);
  position: absolute;
  left: 20px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
}
.slider_contents .slider-arrow::after {
  content: "";
  width: 18px;
  height: 38px;
  border: 0px;
  position: absolute;
  top: calc(50% - 19px);
  left: calc(50% - 12px);
  background: url("../images/icon_sliderarrow.svg") no-repeat center center;
  background-size: 100%;
}
.slider_contents .slider-arrow.slick-disabled {
  opacity: 0;
  pointer-events: none;
}
.slider_contents .slider-arrow.slider-next {
  left: auto;
  right: 20px;
  transform: rotate(180deg);
}
.slider_contents .slick-dots {
  bottom: -25px;
}
.slider_contents .slick-dots li {
  margin: 0;
}
.slider_contents .slick-dots li button::before {
  color: #fff;
  opacity: 1;
}
.slider_contents .slick-dots li.slick-active button::before {
  color: #08a3d1;
}

@media all and (min-width: 1025px) and (max-width: 1279px) {
  .slider_contents .slick-dots {
    bottom: -6.2548866302vw;
  }
  .slider_contents .slick-dots li {
    width: 4.6911649726vw;
    height: 4.6911649726vw;
  }
  .slider_contents .slick-dots li button {
    width: 4.6911649726vw;
    height: 4.6911649726vw;
  }
  .slider_contents .slider-arrow {
    width: 6.2548866302vw;
    top: calc(50% - 8.36591vw);
    left: -7.8186082877vw;
  }
  .slider_contents .slider-arrow.slider-next {
    left: auto;
    right: -7.8186082877vw;
  }
}
.term {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 30px 14px 30px 44px;
  background: #fff;
  overflow: hidden;
}
.term .scroll-area {
  width: 100%;
  height: 480px;
  overflow: hidden;
}
.term .scroll-area .term_logo {
  width: 120px;
  margin-bottom: 5px;
}
.term .scroll-area .term_logo img {
  height: 37.06px;
}
.term .scroll-area h4 {
  font-weight: 700;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: 0;
  margin-bottom: 20px;
  text-align: center;
}
.term .scroll-area h5 {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
}
.term .scroll-area .article_content {
  margin-bottom: 10px;
}
.term .scroll-area .article_content:last-child {
  margin-bottom: 0;
}
.term .scroll-area .article_content h5 {
  font-weight: 700;
  letter-spacing: 0;
}
.term .scroll-area .article_content p, .term .scroll-area .article_content li {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
}
.term .scroll-area .article_content p.margin_left, .term .scroll-area .article_content li.margin_left {
  margin-left: 15px;
}
.term .scroll-area .article_content p a, .term .scroll-area .article_content li a {
  display: inline;
  transition: color 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.term .scroll-area .article_content .attention {
  margin-top: 10px;
}
.term .scroll-area .article_content .attention p {
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0;
}
.term .scroll-area .article_content .disclist li {
  margin-left: 12px;
}
.term .scroll-area .article_content .disclist li::before {
  position: relative;
  top: -2px;
  left: -6px;
  display: inline-block;
  width: 4px;
  height: 4px;
  content: "";
  border-radius: 100%;
  background: #222;
}
.term .scroll-area .article_content .numberlist li {
  list-style-type: decimal;
  margin-left: 17px;
}

.mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
  margin-right: 30px;
}

.mCSB_draggerContainer::before {
  content: "";
  width: 4px;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  position: absolute;
  top: 0;
  left: calc(50% - 2px);
}
.mCSB_draggerContainer .mCSB_draggerRail {
  display: none;
}

@media all and (max-width: 1024px) {
  /*.slider_contents{
    .slider-arrow{
      width: getSize(33);
      top: calc(50% - 6.973335vw);
      left: getSize(-2);
      &.slider-prev {
        -webkit-animation: arrow-move-sp-l .5s infinite alternate ease-in-out;
        animation: arrow-move-sp-l .5s infinite alternate ease-in-out;    
      }
      &.slider-next {
        -webkit-animation: arrow-move-sp-r .5s infinite alternate ease-in-out;
        animation: arrow-move-sp-r .5s infinite alternate ease-in-out;    
        left: auto;
        right: getSize(-2);
      }
    }
    .slick-dots{
      bottom: getSize(-35);
      li{
        width: getSize(40);
        height: getSize(40);
        button{
          width: getSize(40);
          height: getSize(40);
        }
      }
    }
  }*/
  .term {
    padding: 5.3333333333vw 1.6vw 5.3333333333vw 6.9333333333vw;
  }
  .term .scroll-area {
    height: 56vw;
  }
  .term .scroll-area .term_logo {
    width: 21.3333333333vw;
    margin-bottom: 1.3333333333vw;
  }
  .term .scroll-area .term_logo img {
    height: auto;
  }
  .term .scroll-area h4 {
    font-size: 3.7333333333vw;
    line-height: 3.7333333333vw;
    margin-bottom: 2.6666666667vw;
  }
  .term .scroll-area h5 {
    font-size: 2.6666666667vw;
    line-height: 3.7333333333vw;
  }
  .term .scroll-area .article_content {
    margin-bottom: 1.6vw;
  }
  .term .scroll-area .article_content:last-child {
    margin-bottom: 0;
  }
  .term .scroll-area .article_content p, .term .scroll-area .article_content li {
    font-size: 2.6666666667vw;
    line-height: 3.7333333333vw;
  }
  .term .scroll-area .article_content p.margin_left, .term .scroll-area .article_content li.margin_left {
    margin-left: 4.8vw;
  }
  .term .scroll-area .article_content .attention {
    margin-top: 2.6666666667vw;
  }
  .term .scroll-area .article_content .attention p {
    font-size: 2.6666666667vw;
    line-height: 3.7333333333vw;
  }
  .term .scroll-area .article_content .disclist li {
    margin-left: 1.8666666667vw;
  }
  .term .scroll-area .article_content .disclist li::before {
    top: -0.5333333333vw;
    left: -1.3333333333vw;
    width: 0.8vw;
    height: 0.8vw;
  }
  .term .scroll-area .article_content .numberlist li {
    margin-left: 1.8666666667vw;
  }
  .mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
    margin-right: 5.33333vw;
  }
  .mCSB_inside > .mCSB_container {
    margin-right: 5.3333333333vw;
  }
}
/*----------------------------
	keyframes
-----------------------------*/
@-webkit-keyframes menu-close {
  30% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes menu-close {
  30% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes menu-open {
  30% {
    -webkit-transform: scale(0);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}
@keyframes menu-open {
  30% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes arrow-move-l {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(-10px);
  }
}
@keyframes arrow-move-l {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(-10px);
  }
}
@-webkit-keyframes arrow-move-r {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(10px);
  }
}
@keyframes arrow-move-r {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(10px);
  }
}
@-webkit-keyframes arrow-move-sp-l {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(-1.2vw);
  }
}
@keyframes arrow-move-sp-l {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(-1.2vw);
  }
}
@-webkit-keyframes arrow-move-sp-r {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(1.2vw);
  }
}
@keyframes arrow-move-sp-r {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(1.2vw);
  }
}
@-webkit-keyframes loadinganim {
  0% {
    background-position-x: 0px;
  }
  100% {
    background-position-x: 72px;
  }
}
@keyframes loadinganim {
  0% {
    background-position-x: 0px;
  }
  100% {
    background-position-x: 72px;
  }
}
@-webkit-keyframes logo-anime {
  0% {
    filter: brightness(500%);
  }
  100% {
    filter: brightness(100%);
  }
}
@keyframes logo-anime {
  0% {
    filter: brightness(500%);
  }
  100% {
    filter: brightness(100%);
  }
}
@-webkit-keyframes orderbtn-hover {
  0% {
    opacity: 1;
  }
  49% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes orderbtn-hover {
  0% {
    opacity: 1;
  }
  49% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes orderbtn-loop {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes orderbtn-loop {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/****************************
 tool
****************************/
.sa {
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 0;
}

.sa.show {
  opacity: 1;
  transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
}

.sa_fade {
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
}

.sa_lr {
  transform: translate(-70px, 0);
  -webkit-transform: translate(-70px, 0);
  -moz-transform: translate(-70px, 0);
  -ms-transform: translate(-70px, 0);
  -o-transform: translate(-70px, 0);
}
@media all and (max-width: 1024px) {
  .sa_lr {
    transform: translate(-8vw, 0);
    -webkit-transform: translate(-8vw, 0);
    -moz-transform: translate(-8vw, 0);
    -ms-transform: translate(-8vw, 0);
    -o-transform: translate(-8vw, 0);
  }
}

.sa_rl {
  transform: translate(70px, 0);
  -webkit-transform: translate(70px, 0);
  -moz-transform: translate(70px, 0);
  -ms-transform: translate(70px, 0);
  -o-transform: translate(70px, 0);
}
@media all and (max-width: 1024px) {
  .sa_rl {
    transform: translate(8vw, 0);
    -webkit-transform: translate(8vw, 0);
    -moz-transform: translate(8vw, 0);
    -ms-transform: translate(8vw, 0);
    -o-transform: translate(8vw, 0);
  }
}

.sa_up {
  transform: translate(0, 70px);
  -webkit-transform: translate(0, 70px);
  -moz-transform: translate(0, 70px);
  -ms-transform: translate(0, 70px);
  -o-transform: translate(0, 70px);
}
@media all and (max-width: 1024px) {
  .sa_up {
    transform: translate(0, 8vw);
    -webkit-transform: translate(0, 8vw);
    -moz-transform: translate(0, 8vw);
    -ms-transform: translate(0, 8vw);
    -o-transform: translate(0, 8vw);
  }
}

.sa_down {
  transform: translate(0, -70px);
  -webkit-transform: translate(0, -70px);
  -moz-transform: translate(0, -70px);
  -ms-transform: translate(0, -70px);
  -o-transform: translate(0, -70px);
}
@media all and (max-width: 1024px) {
  .sa_down {
    transform: translate(0, -8vw);
    -webkit-transform: translate(0, -8vw);
    -moz-transform: translate(0, -8vw);
    -ms-transform: translate(0, -8vw);
    -o-transform: translate(0, -8vw);
  }
}

.sa_scaleup {
  transform: scale(0.5);
  -webkit-transform: scale(0.5);
  -moz-transform: scale(0.5);
  -ms-transform: scale(0.5);
  -o-transform: scale(0.5);
}

.sa_scaledown {
  transform: scale(1.5);
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  -ms-transform: scale(1.5);
  -o-transform: scale(1.5);
}

.sa_rotate_l {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

.sa_rotate_r {
  transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
}

/*----------------------------
	Layout Styles
-----------------------------*/
#Page {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #fff;
}
#Page.active {
  opacity: 1;
}

@media all and (max-width: 767px) {
  #Page {
    width: 100%;
    padding: 0;
  }
}
/*----------------------------
	section
-----------------------------*/
.section_contents {
  position: relative;
  z-index: 1;
  padding: 70px 0;
}
.section_contents .inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 100px;
  position: relative;
  z-index: 3;
}
.section_contents .inner.nopadding {
  padding: 0;
}
.section_contents .inner .section_title {
  width: 100%;
  max-width: 500px;
  position: relative;
  margin: 0 auto 70px auto;
}
.section_contents .inner .section_text {
  font-weight: 400;
  font-size: 28px;
  line-height: 46px;
  letter-spacing: 1px;
  color: #222;
  text-align: center;
}
.section_contents .inner .section_text label {
  display: inline;
  font-weight: 600;
}
.section_contents .inner .section_text label.red {
  color: #ff0000;
}
.section_contents .inner .section_text label.blue {
  color: #08a3d1;
}

@media all and (min-width: 1025px) and (max-width: 1279px) {
  .section_contents .inner {
    padding: 0 50px;
  }
}
@media all and (max-width: 1024px) {
  .section_contents {
    padding: 6.6666666667vw 0;
  }
  .section_contents .inner {
    padding: 0 2.66667vw;
  }
  .section_contents .inner .section_title {
    width: 53.3333333333vw;
    margin: 0 auto 6.6666666667vw auto;
  }
}
/*----------------------------
	Other
-----------------------------*/
.hoverbtn figure img {
  transition: opacity 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hoverbtn figure .src_active {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}
.hoverbtn.coming {
  pointer-events: none;
}
@media screen and (min-width: 1024px) {
  .hoverbtn:hover {
    opacity: 1;
  }
  .hoverbtn:hover figure .src_active {
    opacity: 1;
  }
}

.mini {
  width: 100%;
  max-width: 1200px !important;
  margin: 0 auto;
}

#Scrollbtn {
  position: fixed;
  width: 11%;
  max-width: 227px;
  bottom: -224px;
  right: 10px;
  z-index: 100;
}
#Scrollbtn.active {
  bottom: 10px;
}
@media screen and (min-width: 1024px) {
  #Scrollbtn:hover {
    opacity: 1;
    filter: brightness(120%);
  }
}

#NaviGroup {
  position: fixed;
  width: 12%;
  max-width: 160px;
  bottom: 10px;
  right: 5px;
  z-index: 100;
  transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#NaviGroup #Navibtn .src_active {
  -webkit-animation: orderbtn-hover 1.2s infinite linear;
  animation: orderbtn-hover 1.2s infinite linear;
}
#NaviGroup figure {
  position: relative;
}

.fas-obj {
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

@media all and (max-width: 1024px) {
  #Scrollbtn {
    width: 24vw;
    bottom: -27vw;
    right: 0.5vw;
    max-width: auto;
    max-width: none;
    max-width: unset;
  }
  #Scrollbtn.active {
    bottom: 1vw;
  }
  #NaviGroup {
    width: 21.3333333333vw;
    bottom: 9vw;
    right: 0.5vw;
    max-width: auto;
    max-width: none;
    max-width: unset;
  }
}
/*----------------------------
	Keyvisual
-----------------------------*/
#Keyvisual {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 40px 0 0 0;
}
#Keyvisual #MvBg {
  width: 100%;
}

@media all and (max-width: 1024px) {
  #Keyvisual {
    padding: 4vw 0 0 0;
  }
}
/*----------------------------
	Footer
-----------------------------*/
#Footer {
  position: relative;
  z-index: 10;
  margin: 0 auto;
  padding: 0;
  height: 50px;
}
#Footer .inner .copyright {
  margin: 0 auto;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
}

@media all and (max-width: 1024px) {
  #Footer {
    height: 2.6666666667vw;
  }
  #Footer .inner .copyright {
    font-size: 2.6666666667vw;
    line-height: 3.7333333333vw;
  }
}
/*----------------------------
	ModalContent
-----------------------------*/
#ModalContent {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  transition: opacity 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 0;
  pointer-events: none;
  min-height: 720px;
}
#ModalContent.image #ModalTarget {
  background: none;
  max-width: auto;
  max-width: none;
  max-width: unset;
  min-width: auto;
  min-width: none;
  min-width: unset;
  min-height: auto;
  min-height: none;
  min-height: unset;
  width: auto;
  height: calc(100% - 60px);
}
#ModalContent.image #ModalTarget img {
  height: 100%;
  width: auto;
}
#ModalContent.active {
  opacity: 1;
  pointer-events: all;
}
#ModalContent .backbg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}
#ModalContent #ModalTarget {
  background: #000;
  transform: scale(0);
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  max-width: calc(100% - 400px);
}
#ModalContent #ModalTarget.active {
  transform: scale(1);
}
#ModalContent #ModalTarget .loader {
  color: #fff;
  font-size: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  text-indent: -9999em;
  -webkit-animation: load4 1.3s infinite linear;
  animation: load4 1.3s infinite linear;
  transform: translateZ(0);
  position: absolute;
  top: calc(50% - 5px);
  left: calc(50% - 5px);
  z-index: 10;
}
#ModalContent #Player {
  position: relative;
  width: 100%;
  opacity: 0;
  pointer-events: none;
}
#ModalContent #Player.active {
  opacity: 1;
  pointer-events: auto;
}
#ModalContent .closebtn {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
}
#ModalContent .closebtn::before, #ModalContent .closebtn::after {
  content: "";
  background: #fff;
  width: 30px;
  height: 2px;
  position: absolute;
  top: calc(50% - 1px);
  left: calc(50% - 15px);
  transform: rotateZ(45deg);
}
#ModalContent .closebtn::after {
  transform: rotateZ(-45deg);
}

.swal2-container.swal2-backdrop-show, .swal2-container.swal2-noanimation {
  background: rgba(0, 0, 0, 0.8);
}

.swal2-container {
  padding: 0;
}
.swal2-container .swal2-popup {
  width: calc(100% - 400px);
  padding: 30px 0;
  border-radius: 0;
  background: none;
  max-width: 1000px;
}
.swal2-container .swal2-popup .swal2-content {
  font-size: 0;
  padding: 0;
}
.swal2-container .swal2-popup .swal2-content audio {
  width: 100%;
}
.swal2-container .swal2-popup .swal2-content video, .swal2-container .swal2-popup .swal2-content .video-js {
  width: 100%;
  height: auto;
}
.swal2-container .swal2-popup .swal2-content video video, .swal2-container .swal2-popup .swal2-content .video-js video {
  position: relative;
}
.swal2-container .swal2-popup #swal2-content.youtube {
  width: 100%;
  padding-top: 56.25%;
}
.swal2-container .swal2-popup #swal2-content.youtube iframe {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.swal2-container .swal2-popup .swal2-actions {
  display: none;
}

.video-js span, .video-js label {
  display: inline;
}

#ModalLoader {
  color: #fff;
  font-size: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  text-indent: -9999em;
  -webkit-animation: load4 1.3s infinite linear;
  animation: load4 1.3s infinite linear;
  transform: translateZ(0);
  position: fixed;
  top: calc(50% - 5px);
  left: calc(50% - 5px);
  z-index: 10001;
}

#ModalClosebtn {
  width: 60px;
  height: 60px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10001;
}
#ModalClosebtn::before, #ModalClosebtn::after {
  content: "";
  background: #fff;
  width: 30px;
  height: 2px;
  position: absolute;
  top: calc(50% - 1px);
  left: calc(50% - 15px);
  transform: rotateZ(45deg);
}
#ModalClosebtn::after {
  transform: rotateZ(-45deg);
}

@media all and (max-width: 1024px) {
  #ModalContent.image #ModalTarget {
    max-width: auto;
    max-width: none;
    max-width: unset;
    height: calc(100% - 200px);
  }
  #ModalContent #ModalTarget {
    max-width: calc(100% - 50px);
  }
  .swal2-container .swal2-popup {
    width: calc(100% - 50px);
  }
}
@media all and (max-width: 767px) {
  #ModalContent.image #ModalTarget {
    max-width: auto;
    max-width: none;
    max-width: unset;
    width: calc(100% - 20vw);
    height: auto;
  }
  #ModalContent.image #ModalTarget img {
    width: 100%;
    height: auto;
  }
  #ModalContent #ModalTarget {
    max-width: calc(100% - 5.33334vw);
  }
  .swal2-container .swal2-popup {
    width: calc(100% - 5.33334vw);
    padding: 13.3333333333vw 0 2.6666666667vw 0;
  }
}
.modaal-container iframe {
  min-height: 600px;
}
/*# sourceMappingURL=common.css.map */