@charset "UTF-8";
/* フォント設定 *******************************************/
/* モリサワType Square ************************************/
/* クリアフィックス */
.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

/*----------- 定義内容-----------
ブレイクポイント設定
メディアクエリ
コンテンツ幅(basicWrap)
基本ベンダープレフィックスをつけた状態で書き出す(prefix)
アニメーション：プレフィクス付（animation）
角丸設定(border-radius)

---------------------------------
*/
#intro {
  text-align: center;
  position: relative;
  height: 500px;
  overflow: hidden;
}
#intro .ph-title {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 700;
  font-style: normal;
  width: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 1;
  font-size: 42px;
  font-size: 4.2rem;
  color: #fff;
  font-weight: normal;
  line-height: 1.6;
  text-shadow: 0 0 4px #000;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}
@media only screen and (max-width: 600px) {
  #intro .ph-title {
    font-size: 26px;
    font-size: 2.6rem;
    line-height: 1.5;
  }
}
#intro .slider {
  height: 500px;
  margin: 0 auto;
  position: relative;
}
#intro .slider ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#intro .slider ul li {
  width: 100%;
  height: 500px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 24s;
          animation-duration: 24s;
}
#intro .slider ul li:nth-child(1) {
  -webkit-animation-name: slider;
          animation-name: slider;
  -webkit-animation-delay: -2s;
          animation-delay: -2s;
}
#intro .slider ul li:nth-child(1) img {
  -o-object-position: 25% 0;
     object-position: 25% 0;
}
#intro .slider ul li:nth-child(2) {
  -webkit-animation-name: slider;
          animation-name: slider;
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
  opacity: 0;
}
#intro .slider ul li:nth-child(3) {
  -webkit-animation-name: slider;
          animation-name: slider;
  -webkit-animation-delay: 10s;
          animation-delay: 10s;
  opacity: 0;
}
#intro .slider ul li:nth-child(4) {
  -webkit-animation-name: slider;
          animation-name: slider;
  -webkit-animation-delay: 16s;
          animation-delay: 16s;
  opacity: 0;
}
#intro .slider ul li:nth-child(4) img {
  -o-object-position: 70% 0;
     object-position: 70% 0;
}
#intro .slider ul li img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}
@-webkit-keyframes slider {
  0% {
    opacity: 0;
  }
  15.63% {
    opacity: 1;
  }
  25.00% {
    opacity: 1;
  }
  37.5% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes slider {
  0% {
    opacity: 0;
  }
  15.63% {
    opacity: 1;
  }
  25.00% {
    opacity: 1;
  }
  37.5% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/*本文 **********************************************************/
#contents-base > section {
  padding: 60px 0 60px;
}
@media only screen and (max-width: 600px) {
  #contents-base > section {
    padding: 0 0 30px;
  }
}

.innerBlock {
  max-width: 750px;
}
@media only screen and (max-width: 600px) {
  .innerBlock {
    width: 100%;
  }
}

.innerWrap {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  padding-left: 5%;
  padding-right: 5%;
  margin-bottom: 80px;
}
.innerWrap .ph-textArea {
  margin-top: 60px;
  line-height: 1.8;
}
.innerWrap .ph-textArea p {
  margin-bottom: 40px;
  font-size: 17px;
  font-size: 1.7rem;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
}
.innerWrap .ph-textArea .right {
  text-align: right;
}
.innerWrap .logointroBox {
  margin-bottom: 80px;
  border: 1px solid #999;
  padding: 24px 5%;
}
.innerWrap .logointroBox h3 {
  font-size: 24px;
  font-size: 2.4rem;
}
