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



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

.titleBox{
  text-align: center;
  margin-bottom: 30px;
}

.titleBox h3{
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 26px;
  color: #ffe824;
}

.titleBox hr{
  display: block;
  width: 50px;
  margin: 15px auto;
  height: 2px;
  border: none;
  background-color: #fff;
}

.titleBox h2{
  font-size: 22px;
  letter-spacing: 3px;
  font-weight: bold;
  color: #fff;
}

@media screen and (max-width: 600px){
  .titleBox h3{
    font-size: 18px;
    letter-spacing: 2px;
  }
  
  .titleBox hr{
    margin: 10px auto;
  }
  
  .titleBox h2{
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 26px;
  }
}

/*==============================
メイン
==============================*/

#headWrap{
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  background-color: #fff;
  border: 100px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../img/headwrap.jpg);
  background-size: cover;
  background-position: center center;
}

.headCopy{
  text-align: center;
  z-index: 2;
  width: 100%;
  max-width: calc(100% - 100px);
}

.headCopy h2{
  display: inline-block;
  color: #fff;
  font-size: 100px;
  line-height: 70px;
  letter-spacing: 20px;
  font-weight: 100;
}

#messageWrap{
  text-align: center;
}

#messageWrap > h2{
  color: #46788c;
}

#messageWrap > h3{
  margin-bottom: 100px;
}

.messageBox{
  position: relative;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 100px;
}

.messageBox > img{
  position: relative;
  right: -50px;
  top: -50px;
  align-self: flex-start;
  z-index: 1;
}

.messageBox > div{
  position: relative;
  background-color: #eef3f2;
  width: 100%;
  max-width: 1000px;
  padding: 50px;
  text-align: left;
  padding-left: 100px;
  z-index: 0;
}

.messageBox > div h4{
  color: #46788c;
  margin-bottom: 20px;
}

.messageBox > div h2{
  font-size: 26px;
  letter-spacing: 6px;
  line-height: 36px;
  margin-bottom: 20px;
}

.messageBox:nth-of-type(2n){
  flex-flow: row-reverse;
}

.messageBox:nth-of-type(2n) > img{
  right: 50px;
  top: -50px;
}

.messageBox:nth-of-type(2n) > div{
  padding: 50px;
  padding-right: 100px;
}

.messageBox:nth-of-type(3) > div p:last-of-type{
  margin-top: 30px;
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 0;
}

#yokoWrap{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

#yokoWrap h3{
  color: #46788c;
  width: 100%;
  text-align: left;
  margin-bottom: 30px;
}

#yokoWrap > div{
  display: flex;
  justify-content: space-between;
}

#yokoWrap > div table{
  border-collapse: collapse;
  border-spacing: 0;
  width: 48%;
  align-self: flex-start;
}

#yokoWrap > div table td{
  border-top: 1px solid #7dacbf;
  border-bottom: 1px solid #7dacbf;
  padding: 25px;
  vertical-align: top;
  letter-spacing: 2px;
}

#yokoWrap > div table td:first-of-type{
  width: 25%;
}

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

@media screen and (max-width: 1400px) {  
  .headCopy h2{
    font-size: 70px;
    letter-spacing: 15px;
  }
}

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

@media screen and (max-width: 1200px) {  
  .headCopy h2{
    font-size: 50px;
    letter-spacing: 10px;
  }
}

@media screen and (max-width: 1000px) {
  #headWrap{
    border: 70px solid #fff;
  }
  
  .headCopy h2{
    font-size: 40px;
    line-height: 50px;
    letter-spacing: 6px;
  }
  
}

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

@media screen and (max-width: 600px){
  #headWrap{
    border: none;
    height: 300px;
  }
  .headCopy{
    position: absolute;
  }
  
}

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