@charset "UTF-8";

* {
    box-sizing: border-box;
  } /*全ての要素をborder-boxにするーーコンテンツ、border、paddingの合計がwidthと解釈される*/
  
  html {
    font-size: 100%;
  }
  /*設定した文字サイズを正しく反映*/
  
  img {
    max-width: 100%;
  }
  /*画像の大きさの指定。画像が親要素よりも大きくなることを防ぐ*/

  
/*====================ここからOur Storiesのcss=======*/
  
/*ourstories*/

.ourstories-container {
  width: 91%;
  max-width: 1200px;
  display: block;
  grid-template-columns: 1fr;
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
}

.ourstories-item {
  width: 30%;
  min-width: 320px;
  justify-content: center;
}

.ourstories-contents h2 {
  margin-left: 50px;
  margin-top: 20px;
  font-size: 32px;
  font-weight: 700;
}

.ourstories-title{
  width: 69.44%;
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
}

.border-only {
  width: 100%;
  height: 0px;
  border: solid #4070bf 3px;
  margin-top: 80px;
}

#ourstories-visual {
  width: 100%;
  max-width: 700px;
  min-width: 320px;
  margin: auto;
}

.ourstories-item h4 {
  font-size: 16px;
}

.ourstories-item h4,
.ourstories-item p {
  text-align: center;
}

p.part {
  font-size: 18px;
  text-align: justify;
}

ul.page-numbers li span.page-numbers.current {
  color: #fff;
  background-color: #cccccc;
}
  
.back-blue {
  background: #336B94;
  color: #fff;
  text-align: center;
  padding: 30px;
}

.label-position {
  width: 69.44%;
  margin: auto;
  margin-top: 50px;
}

.label-position h2 {
  margin-left: 20px;
  font-size: 32px;
}

.out-stories-label{
  position: relative;
  top: -45px;
}

.content{
  width: 70%;
  margin: auto;
  max-width: 1200px;
  min-width: 700px;
}

@media (max-width: 678px) {
  .ourstories-contents h2{
    font-size: 24px;
  }
  .ourstories-si-contents {
    width: 90%;
  }
  .ourstories-title{
    width: 90%;
  }
  .label-position {
    width: 90%;
    margin-top: 30px;
  }
  .out-stories-label{
    width: 100%;
    top: -40px;
  }
  .border-only {
    margin-top: 20px;
  }
  .ourstories-title{
    margin-top: 20px;
  }
  .content{
    width: 90%;
    min-width: 300px;
  }
}