@charset "utf-8";
/* CSS Document */


/*==============================
共通
==============================*/

.titleBox{
  margin-bottom: 30px;
}

.titleBox h2{
  font-family: 'GFS Didot', serif;
  font-size: 50px;
  line-height: 50px;
  font-weight: bold;
  margin-bottom: 0px;
  color: #fa7f29;
}

.titleBox h3{
  font-size: 18px;
  color: #9c9c9c;
}

.btn{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 15px 30px;
  margin: 0 auto;
  background-color: #fa7f29;
  border-radius: 5px;
}

.btn p{
  color: #fff;
  font-weight: bold;
  margin-right: 10px;
}

@media screen and (max-width: 600px){   
  .titleBox h2{
    font-size: 40px;
    line-height: 40px;
  }
}

/*==============================
ヘッダ
==============================*/
header{
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
  padding: 0 20px;
  background-image: url("../img/pageBack.jpg");
  background-size: cover;
  background-position: center center;
}

header > div{
  width: 100%;
  max-width: 1000px;
  text-align: center;
}

header > div > h1{
  font-weight: bold;
  color: #fff;
  font-size: 30px;
  line-height: 40px;
  letter-spacing: 8px;
  margin-bottom: 15px;
}

header > div > p{
  text-align: center;
  color: #fff;
  font-weight: bold;
    margin-bottom: 10px;
}

@media screen and (max-width: 800px) {
  header{
    height: 300px;
  }
}

@media screen and (max-width: 600px){  
  header{
    height: 300px;
  }

  header > div > h1{
    font-size: 22px;
    line-height: 28px;
    letter-spacing: 4px;
    margin-bottom: 15px;
  }
  
  header > div > p{
    margin-bottom: 10px;
  }
}

/*==============================
メインコンテンツ
==============================*/
#tipsWrap{
  padding: 100px 20px;
}

.tipsList{
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.tipsList li{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
}

.tipsList li:nth-of-type(2n){
  flex-direction: row-reverse;
}

.tipsList li > div{
  width: 40%;
}

.tipsList li > div h4{
  position: relative;
  font-size: 30px;
  font-weight: bold;
  color: #fa7f29;
  padding-bottom: 5px;
}

.tipsList li > div h4 span{
  font-size: 18px;
  font-weight: bold;
  margin-right: 10px;
  color: #fa7f29;
}

.tipsList li > div h4::before{
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -60px;
  width: 2px;
  height: 60px;
  background-color: #fa7f29;  
}

.tipsList li > div h4::after{
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 150px;
  height: 2px;
  background-color: #fa7f29;  
}

.tipsList li > div h3{
  padding: 20px;
  font-size: 30px;
  line-height: 36px;
  letter-spacing: 4px;
  font-weight: bold;
  color: #fa7f29;
}

.tipsList li > img{
  width: 51%;
  align-self: flex-start;
  box-shadow: 10px 10px 0 0 #e0f0fa;
}

/*==============================
レスポンシブ
==============================*/

@media screen and (max-width: 1400px) {
}

@media screen and (max-width: 1300px) {
}

@media screen and (max-width: 1200px) {
  .tipsList li > div{
    width: 45%;
  }
}

@media screen and (max-width: 1000px) {
}

@media screen and (max-width: 900px) {
}

@media screen and (max-width: 800px) { 
  .tipsList{
    max-width: 600px;
  }
  .tipsList li{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-bottom: 50px;
  }

  .tipsList li:nth-of-type(2n){
    flex-direction: row;
  } 
  
  .tipsList li > div{
    margin-bottom: 20px;
  }
  
  .tipsList li > div,
  .tipsList li > img{
    width: 100%;
  }
}

@media screen and (max-width: 600px){  
  #tipsWrap{
    padding: 50px 20px;
  }
}

@media screen and (max-width: 500px){
}

@media screen and (max-width: 414px){
}


/*==============================
ローディングアニメーション
==============================*/
