/*================================================
width
================================================*/
#content #flow,
#content #flow dl,
#content #flow dl dt,
#content #flow dl dt img,
#content #flow dl dd{
  width: 100%;
}

#content #flow .left_data,
#content #flow .right_data{
  width: 40%;
}

/*タブレット (iPad pro ランドスケープ)*/
@media only screen and (orientation: landscape) and (max-width: 1366px) {
  #content #flow dl dt img{
    width: 100%;
  }

  #content #flow .left_data,
  #content #flow .right_data{
    width: 94%;
  }
}

/*タブレット (iPad pro ポートレート)*/
@media only screen and (orientation: portrait) and (max-width: 1024px) {
  #content #flow .left_data,
  #content #flow .right_data{
    width: 94%;
  }
}

/*タブレット (iPhone14 pro max ポートレート)*/
@media only screen and (orientation: portrait) and (max-width: 480px) {
  #content #flow dl dt,
  #content #flow dl dd{
    width: 100%;
  }
}


/*================================================
height
================================================*/
#content #flow dl dt img{
  height: auto;
}

#content #flow dl dd{
  height: 120px;
}


/*================================================
display
================================================*/
#content #flow,
#content #flow dl{
  display: flex;
  flex-wrap: wrap;
}


/*================================================
justify-content
================================================*/



/*================================================
align-items
================================================*/



/*================================================
font-size
================================================*/
#content #flow h3 span{
  font-size: 26px;
}

#content #flow h3{
  font-size: 20px;
}

#content #flow dl dd{
  font-size: 14px;
}

/*タブレット (iPad ランドスケープ)*/
@media only screen and (orientation: landscape) and (max-width: 1024px) {
  #content #flow dl dd{
    font-size: 12px;
  }
}

/*タブレット (iPad pro ポートレート)*/
@media only screen and (orientation: portrait) and (max-width: 1024px) {
  #content #flow dl dd,
  #content #flow dl dd p,
  #content #flow dl dd a{
    font-size: 22px;
  }
}

/*タブレット (iPad ポートレート)*/
@media only screen and (orientation: portrait) and (max-width: 768px) {
  #content #flow dl dd,
  #content #flow dl dd p,
  #content #flow dl dd a{
    font-size: 18px;
  }
}

/*スマホ (iPhone14 pro max)*/
@media only screen and (orientation: portrait) and (max-width: 480px) {
  #content #flow dl dd,
  #content #flow dl dd p,
  #content #flow dl dd p a{
    font-size: 14px;
  }
}


/*================================================
font-weight
================================================*/
#content #flow dl dd span {
  font-weight: bold;
}


/*================================================
color
================================================*/
#content #flow dl dd span,
#content #flow h3 span{
  color: #ff8400;
}


/*================================================
margin
================================================*/
#content #flow .left_data,
#content #flow .right_data{
  margin: 0 5%;
}

#content #flow dl{
  margin-bottom: 30px;
}

/*タブレット (iPad pro ランドスケープ)*/
@media only screen and (orientation: landscape) and (max-width: 1366px) {
  #content #flow .left_data,
  #content #flow .right_data{
    margin: 0 2% 30px;
  }
}

/*タブレット (iPad pro ポートレート)*/
@media only screen and (orientation: portrait) and (max-width: 1024px) {
  #content #flow .left_data,
  #content #flow .right_data{
    margin: 0;
  }

  #content #flow .left_data{
    margin-bottom: 50px;
  }
}

/*タブレット (iPad ポートレート)*/
@media only screen and (orientation: portrait) and (max-width: 768px) {
  #content #flow .left_data{
    margin-bottom: 0;
  }
}

/*スマホ (iPhone14 pro max ポートレート)*/
@media only screen and (orientation: portrait) and (max-width: 480px) {
  #content #flow dl{
    margin-bottom: 40px;
  }
}


/*================================================
padding
================================================*/
#content #flow{
  padding: 10px 3% 120px;
}

#content #flow dl dd{
  padding-left: 10px;
}

/*タブレット (iPad ランドスケープ)*/
@media only screen and (orientation: landscape) and (max-width: 1024px) {
  #content #flow{
    padding-bottom: 60px;
  }
}

/*タブレット (iPad pro ポートレート)*/
@media only screen and (orientation: portrait) and (max-width: 1024px) {
  #content #flow{
    padding-bottom: 120px;
  }
}

/*タブレット (iPad pro ポートレート)*/
@media only screen and (orientation: portrait) and (max-width: 768px) {
  #content #flow{
    padding-bottom: 80px;
  }
}

/*スマホ (iPhone14 pro max)*/
@media only screen and (orientation: portrait) and (max-width: 480px) {
  #content #flow dl dd{
    padding: 0 5px;
  }
}


/*================================================
box-sizing
================================================*/
#content #flow dl dd{
  box-sizing: border-box;
}




/*================================================
スライダー用CSS
================================================*/
#content #flow .slider,
#content #flow .slider_b{/*横幅94%で左右に余白を持たせて中央寄せ*/
  width:94%;
  margin:0 auto;
}

#content #flow .slider dl,
#content #flow .slider_b dl{
  max-width: 500px;
}

#content #flow .slider dl dd,
#content #flow .slider_b dl dd{
  height: auto;
  padding: 10px;
}

#content #flow .slider img,
#content #flow .slider_b img {
  width: 100%;/*スライダー内の画像を60vwにしてレスポンシブ化*/
  height: auto;
}

.slider .slick-slide,
.slider_b .slick-slide{
  transform: scale(0.8);/*左右の画像のサイズを80%に*/
  transition: all .5s;/*拡大や透過のアニメーションを0.5秒で行う*/
  opacity: 0.5;/*透過50%*/
}

.slider .slick-slide.slick-center,
.slider_b .slick-slide.slick-center{
  transform: scale(1);/*中央の画像のサイズだけ等倍に*/
  opacity: 1;/*透過なし*/
}

.slick-dots{
  position: initial!important;
}

/*タブレット (iPad Pro ランドスケープ)*/
@media only screen and (orientation: landscape) and (max-width: 1366px) {
  #content #flow .slider dl dd,
  #content #flow .slider_b dl dd{
    font-size: 16px;
  }

  #content #flow .slider dl dd span,
  #content #flow .slider_b dl dd span{
    font-size: 18px;
  }
}

/*タブレット (iPad ランドスケープ)*/
@media only screen and (orientation: landscape) and (max-width: 1024px) {
  #content #flow .slider dl dd,
  #content #flow .slider_b dl dd{
    font-size: 12px;
  }

  #content #flow .slider dl dd span,
  #content #flow .slider_b dl dd span{
    font-size: 14px;
  }
}

/*タブレット (iPad pro ポートレート)*/
@media only screen and (orientation: portrait) and (max-width: 1024px) {
  #content #flow .slider dl dd span,
  #content #flow .slider_b dl dd span{
    font-size: 26px;
  }
}

/*タブレット (iPad ポートレート)*/
@media only screen and (orientation: portrait) and (max-width: 768px) {
  #content #flow .slider dl dd span,
  #content #flow .slider_b dl dd span{
    font-size: 20px;
  }
}

/*タブレット (iPhone14 Pro Max ポートレート)*/
@media only screen and (orientation: portrait) and (max-width: 430px) {
  #content #flow .slider dl,
  #content #flow .slider_b dl{
    max-width: 380px;
  }

  #content #flow .slider dl dd span,
  #content #flow .slider_b dl dd span{
    font-size: 16px;
  }
}

/*タブレット (iPhoneXR ポートレート)*/
@media only screen and (orientation: portrait) and (max-width: 414px) {
  #content #flow .slider dl,
  #content #flow .slider_b dl{
    max-width: 360px;
  }
}

/*タブレット (iPhone12 Pro ポートレート)*/
@media only screen and (orientation: portrait) and (max-width: 390px) {
  #content #flow .slider dl,
  #content #flow .slider_b dl{
    max-width: 340px;
  }
}

/*タブレット (iPhoneSE ポートレート)*/
@media only screen and (orientation: portrait) and (max-width: 375px) {
  #content #flow .slider dl,
  #content #flow .slider_b dl{
    max-width: 320px;
  }
}


/*================================================
矢印の設定
================================================*/
/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
  position: absolute;/*絶対配置にする*/
  top: 42%;
  font-size: 50px;
  color: #fff;
  cursor: pointer;/*マウスカーソルを指マークに*/
  outline: none;/*クリックをしたら出てくる枠線を消す*/
  height: auto;
  width: 70px;
  text-align: center;
}

.slick-prev {/*戻る矢印の位置と形状*/
  left: -1.5%;
}

.slick-next {/*次へ矢印の位置と形状*/
  right: -1.5%;
}

.slick-next,
.slick-prev{
  transform: rotate(0deg);
  background: #bd302f;
  border-radius: 50%;
  border: none;
}

/*スマホ (iPhone14 Pro Max ポートレート)*/
@media only screen and (orientation: portrait) and (max-width: 430px) {
  /*戻る、次へ矢印の位置*/
  .slick-prev, 
  .slick-next {
    font-size: 35px;
    width: 50px;
  }
}

/*================================================
ドットナビゲーションの設定
================================================*/
.slick-dots {
  text-align:center;
  margin:20px 0 0 0;
}

.slick-dots .silder_box {
  display:inline-block;
  margin:0 5px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width:8px;/*ドットボタンのサイズ*/
  height:8px;/*ドットボタンのサイズ*/
  display:block;
  border-radius:50%;
  background:#ccc;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
  background:#333;/*ドットボタンの現在地表示の色*/
}