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



/*==============================
共通
==============================*/
#singleWrap{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: space-between;
}

.titleBox{
  width: 100px;
  height: calc(100vh - 100px);
  position: sticky;
  top: 100px;
  align-items: flex-start;
  text-align: center;
}

.titleBox h3{
  font-family: 'Overpass', sans-serif;
  font-weight: bold;
  padding: 10px 0;
  border-bottom: 5px solid #000;
  text-align: center;
}

.titleBox h2{
  padding-top: 30px;
  display: inline-block;
  writing-mode: vertical-rl;
  font-family: a-otf-futo-min-a101-pr6n, serif;
  font-weight: 400;
  font-style: bold;
  white-space: normal;
}

@media screen and (max-width: 1240px) {
  .contentsBox{
    width: calc(100% - 120px);
  }
}

@media screen and (max-width: 1000px) {
  .titleBox{
    height: calc(100vh - 70px);
  }
}

@media screen and (max-width: 600px) {
  #singleWrap{
    display: block;
  }
  
  .titleBox{
    position: relative;
    text-align: center;
    width: 100%;
    height: auto;
    top: auto;
  }
  
  .titleBox h3{
    display: inline-block;
    text-align: center;
    padding: 10px 20px;
  }
  
  .titleBox h2{
    width: 100%;
    writing-mode: horizontal-tb;
    padding: 30px 0px;
    text-align: left;
    font-size: 24px;
    line-height: 34px;
    letter-spacing: 2px;
  }
  
  .contentsBox{
    width: 100%;
  }
}

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


.contentsBox{
  width: 875px;
  text-align: right;
  margin-left: 20px;
}

.contentsBox > img{
  max-width: 100%;
  margin-bottom: 0px;
  vertical-align: bottom;
}

.contentsBox > h2{
  text-align: left;
  font-family: a-otf-futo-min-a101-pr6n, serif;
  font-weight: 400;
  font-style: bold;
  font-size: 40px;
  line-height: 70px;
  letter-spacing: 4px;
}

.contentsBox > p{
  display: inline-block;
  text-align: left;
  writing-mode: vertical-rl;
  font-family: a-otf-futo-min-a101-pr6n, serif;
  font-weight: 400;
  font-style: bold;
  font-size: 15px;
  line-height: 35px;
  letter-spacing: 2px;
  padding: 50px 0;
  border-bottom: 2px solid #000;
  white-space: nowrap;
}

.contentsBox > p:first-of-type{
  padding-top: 0;
}

.contentsBox > p:last-of-type{
  border-bottom: none;
}

.nextBox{
  padding: 10px 0 50px;
  border-top: 5px solid #000;
  border-bottom: 5px solid #000;
}

.nextBox ul{
  display: flex;
  justify-content: space-between;
}

.nextBox ul li{
  width: 40%;
}

.nextBox ul li a{
  display: block;
}

.nextBox ul li a > img{
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.nextBox ul li div{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nextBox ul li div p{
  font-family: a-otf-futo-min-a101-pr6n, serif;
  font-weight: 400;
  font-style: bold;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 1px;
  margin-right: 10px;
  margin-left: 10px;
}

.nextBox ul li div img{
  align-self: center;
  margin-right: 10px;
  margin-left: 10px;
}
/*==============================
レスポンシブ
==============================*/

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

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

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

@media screen and (max-width: 1000px) {
  .contentsBox{
    width: 625px;
  }
  
  .contentsBox > h2{
    font-size: 30px;
  }
  
  .contentsBox > p{
    line-height: 25px;
  }
  
  .nextBox ul li{
    width: 45%;
  }
}

@media screen and (max-width: 840px) {
  .contentsBox > p{
    font-size: 14px;
  }
}

@media screen and (max-width: 600px){
  
  .contentsBox{
    margin-left: 0;
    text-align: left;
    width: 100%;
  }
  
  .contentsBox > p{
    width: 100%;
    writing-mode: horizontal-tb;
    font-size: 15px;
    line-height: 35px;
    letter-spacing: 1px;
    white-space:normal;
  }
  
  .contentsBox > h2{
    display: none;
  }
  
  .nextBox ul li div{
    position: relative;
    display: block;
  }
  .nextBox ul li div img{
    position: absolute;
    bottom: -25px;
  }
  .nextBox ul li:first-of-type div img{
    left: 0;
  }
  .nextBox ul li:last-of-type div img{
    right: 0;
  }
}

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