@charset "utf-8";

/*==================================================
スライダーのためのcss
===================================*/
.slider {
    position:relative;
    z-index: 1;
  /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
    height:80vh; /*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}

.slider-item01 {
    background:url(../image/top_panel/Singapore_photo.jpg);
}
.slider-item02 {
    background:url(../image/top_panel/usa_photo.jpg);
}
.slider-item03 {
    background:url(../image/top_panel/korea_photo.jpg);
}
.slider-item04 {
    background:url(../image/top_panel/thai_photo.jpg);
}
.slider-item05 {
    background:url(../image/top_panel/indnesia_photo.jpg);
}
.slider-item06 {
    background:url(../image/top_panel/Turkiye_photo.jpg);
}

.slider-item {
    width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    height:80vh;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    background-repeat: no-repeat;/*背景画像をリピートしない*/
    background-position: center;/*背景画像の位置を中央に*/
    background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
}

.slider::before{
content: '';
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-color: rgba(0,0,0,0.4);
    z-index: 10;
}


/*========= レイアウトのためのCSS ===============*/
.wrapper ul {
  margin:0;
  padding: 0;
  list-style: none;
}

a{
  color: #fff;
}

a:hover,
a:active{
  text-decoration: none;
}

h1{
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size:3.2vw;/*フォントサイズを3.2VW*/
  font-weight:bold;
  line-height:150%;
  color:#FFF;
  text-shadow: 1px 2px 3px #222;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.wrapper{
  position: relative;
}

.wrapper .top_cta {
    padding: 0px 60px 0px 58px;
    margin-top:30px;
    color: #fff;
    background: linear-gradient(70deg, #FB915F 0%, #F5689D 51%, #FB915F 100%);
    border-radius: 6px;
    display: inline-block;
    font-weight: 700;
    font-size: 3.2rem;
/*    -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.3);
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.3);
    */
    position: relative;
    background-position: 1% 50%;
    background-size: 200% auto;
    text-shadow: none;
/*    	box-shadow: 0px 10px  #dc598a;*/
}

/* boxの影 (filterプロパティ未対応のブラウザ) */
.wrapper .top_cta::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  box-shadow: 0 20px 20px rgba(0, 0, 0, 0.3); /* filterが効かない場合黒い影をつける */
      border-radius: 6px;
  z-index: -1;
}

/* boxの影 (filterプロパティ対応済のブラウザ) */
@supports (-webkit-filter: blur(20px)) {
.wrapper .top_cta::before {
    background-image: linear-gradient(135deg, #fa7334 0, #d0467a 100%);
        border-radius: 6px;
    -webkit-filter: blur(0px);
    filter: blur(0px);
    transform: translateY(10px);
    box-shadow: none;
  }
}

@media screen and (max-width: 960px) {
  h1 {
    width:100%;
    font-size:6.4vw;/*6.4VWに変更*/      
}

}

@media screen and (max-width: 768px) {
    .slider {
        position:relative;
        z-index: 1;
    /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
        height:60vh; /*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    }
    .slider-item {
        width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
        height:60vh;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
        background-repeat: no-repeat;/*背景画像をリピートしない*/
        background-position: center;/*背景画像の位置を中央に*/
        background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
}
    h1 {
        width:100%;
        font-size:6.4vw;/*フォントサイズを6.4VW*/   
    }
    .wrapper .top_cta {
        padding: 15px 60px 15px 58px;
        font-size: 2rem;
        line-height:1.2;
        letter-spacing:0;
    }
}



.container {
  background:#555;
}

.container p {
  padding: 300px 0; 
  text-align: center;
  color: #fff;
}