@charset "UTF-8";
/*#########################################################

基本設定

#########################################################*/
/* ========================================================
単位用設定
=========================================================*/
/* ========================================================
色用設定
=========================================================*/
/* ========================================================
フォント用設定
=========================================================*/
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@700&family=Noto+Sans+JP:wght@300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@300;400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@700&display=swap");
/*#########################################################

レイアウト用設定

#########################################################*/
/* ========================================================
mixin mq用の変数設定
=========================================================*/
/*
▼iOSデバイス
iPhone5: 320 × 568
iPhone 6-8: 375 × 667（1334x750）
iPhone 6-8 plus: 414 × 736（1920x1080）
iPhone X,XS,11Pro: 375 × 812（1125x2436）
iPhone XR,11: 414 × 896（828x1792）

iPad/iPad Mini: 768 × 1024
iPad Pro: 1024 × 1366
https://www.paintcodeapp.com/news/ultimate-guide-to-iphone-resolutions

▼ブートストラップ
xs： ～767px
sm： 768～991px
md： 992～1119px
lg： 1120px～
*/
/* ========================================================
メディアクエリ用Mixin
=========================================================*/
/*
ステップ1.モバイルファーストかデスクトップファーストかを選ぶ
ステップ2.該当する設定を有効化、その他をコメントアウトする。
ステップ3.選択したタイプにより、「▼モバイルファーストの例」、「▼デスクトップファーストの例」のどちらかを参考にブレイクポイントを設定する。
→実際の設定は_base.scssではなく、インポート元で行う。
*/
/*
// ステップ2：モバイルファースト用（デスクトップファーストの場合はコメントアウト）
$breakpoints: (
	// タブレット
	'md': 'screen and (min-width: ' + ($screen-sm-max + 1) + ') and (max-width: ' + ($screen-md-max) + ')',
	// デスクトップ
	'lg': 'screen and (min-width: ' + ($screen-sm-max + 1) + ')',
) !default;
*/
/*
// ステップ3：▼モバイルファーストの例
// メディアクエリのブロック外にベースになるCSSを書く。
// モバイルファーストでは小さい画面サイズから順々に指定。
main{
	// デフォルト
	background: yellow;
	// タブレット
	@include mq(md){
		background: orange;
	}
	// デスクトップ
	@include mq(lg){
		background: red;
	}
}
//------------------------------
*/
/*
// ステップ3：▼デスクトップファーストの例
// メディアクエリのブロック外にベースになるCSSを書く。
// デスクトップファーストでは大きい画面サイズから順々に指定。
main{
	// デフォルト
	background: red;
	// タブレット
	@include mq(md){
		background: orange;
	}
	// スマートフォン
	@include mq(sm){
		background: yellow;
	}
}
//------------------------------
*/
/* ========================================================
Components
=========================================================*/
/* ========================================================
導入事例 一覧
=========================================================*/
.realvoice-container h3.tit {
  margin-bottom: 16px;
  line-height: 0.8;
  font-size: 25px;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 20px;
}

@media screen and (max-width: 599px) {
  .realvoice-container h3.tit {
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 1.8;
    border-bottom: 1px solid #cccccc;
    padding-bottom: 14px;
  }
}
@media screen and (max-width: 599px) {
  .realvoice-container {
    margin-top: 0;
  }
}
.realvoice-container .lead {
  margin-bottom: 48px;
}

.realvoice-container .realvoice-list {
  margin-bottom: 66px;
}

@media screen and (max-width: 599px) {
  .realvoice-container .realvoice-list {
    margin-bottom: 48px;
  }
}
.realvoice-container .realvoice-list li {
  margin-bottom: 30px;
}

@media screen and (max-width: 599px) {
  .realvoice-container .realvoice-list li {
    margin-bottom: 10.667vw;
  }
}
.realvoice-container .realvoice-list a {
  display: block;
  padding: 35px 35px 45px 35px;
  background: #fff;
  -webkit-box-shadow: 0px 5px 10px 3px rgba(0, 14, 56, 0.1);
  box-shadow: 0px 5px 10px 3px rgba(0, 14, 56, 0.1);
}

@media screen and (max-width: 599px) {
  .realvoice-container .realvoice-list a {
    padding-bottom: 10.667vw;
  }
}
.realvoice-container .realvoice-list a .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 4px;
}

@media screen and (max-width: 599px) {
  .realvoice-container .realvoice-list a .flex {
    display: block;
  }
}
.realvoice-container .realvoice-list a .flex .img-box {
  margin-right: 30px;
  width: 175px;
  height: 120px;
}

@media screen and (max-width: 599px) {
  .realvoice-container .realvoice-list a .flex .img-box {
    margin: 0 auto 5vw;
    width: 70.667vw;
    height: 44vw;
  }
}
.realvoice-container .realvoice-list a .flex .img-box img {
  width: 175px;
  height: 120px;
  -o-object-fit: cover;
  object-fit: cover;
  line-height: 0;
}

@media screen and (max-width: 599px) {
  .realvoice-container .realvoice-list a .flex .img-box img {
    width: 70.667vw;
    height: 44vw;
  }
}

.realvoice-container .realvoice-list a .flex h4.realvoice-tit {
  margin: 0 0 10px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (max-width: 599px) {
  .realvoice-container .realvoice-list a .flex h4.realvoice-tit {
    font-size: 15px;
  }
}
.realvoice-container .realvoice-list a .flex .txt p{
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin-bottom: 0;
}

.realvoice-container .realvoice-list a .flex .date {
  position: absolute;
  bottom: -20px;
  left: 0;
  font-size: 1.3rem;
  opacity: 0.4;
}

@media screen and (max-width: 599px) {
  .realvoice-container .realvoice-list a .flex .date {
    position: relative;
  }
}
/* ========================================================
トピック 詳細
=========================================================*/

.realvoice-det-container h3.colum_ttl {
  margin-bottom: 16px;
  line-height: 0.8;
  font-size: 25px;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 20px;
}

@media screen and (max-width: 599px) {
  .realvoice-det-container h3.colum_ttl {
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 1.8;
    border-bottom: 1px solid #cccccc;
    padding-bottom: 14px;
  }
}
@media screen and (max-width: 599px) {
  .realvoice-det-container h3.tit {
    margin-bottom: 20px;
    font-size: 2.6rem;
  }
}
.realvoice-det-container .lead {
  margin-bottom: 48px;
}

@media screen and (max-width: 599px) {
  .realvoice-det-container .lead {
    margin-bottom: 36px;
  }
}

.realvoice-det-container .customer-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* -ms-flex-wrap: wrap; */
  /* flex-wrap: wrap; */
  margin-bottom: 44px;
}

@media screen and (max-width: 599px) {
  .realvoice-det-container .customer-box {
    margin-bottom: 39.6px;
    display: block;
  }
}
.realvoice-det-container .customer-box .img-box {
  margin-right: 42px;
  width: 370px;
}

@media screen and (max-width: 599px) {
  .realvoice-det-container .customer-box .img-box {
    margin: 0 0 30px;
    width: 100%;
  }
}
.realvoice-det-container .customer-box .img-box img {
  width: 100%;
  height: auto;
}

.realvoice-det-container .customer-box .data-box {
  width: 508px;
}

@media screen and (max-width: 599px) {
  .realvoice-det-container .customer-box .data-box {
    width: 100%;
  }
}
.realvoice-det-container .customer-box .data-box dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #ddd;
  border-top: none;
}

@media screen and (max-width: 599px) {
  .realvoice-det-container .customer-box .data-box dl {
    display: block;
    font-size: 14px;
  }
}
.realvoice-det-container .customer-box .data-box dl:first-of-type {
  border-top: 1px solid #ddd;
}

.realvoice-det-container .customer-box .data-box dl dt {
  padding: 13px 12px;
  width: 188px;
  background: #F7F7F7;
  text-align: center;
  border-right: 1px solid #ddd;
}

@media screen and (max-width: 599px) {
  .realvoice-det-container .customer-box .data-box dl dt {
    width: 100%;
    padding: 8px 12px;
  }
}
.realvoice-det-container .customer-box .data-box dl dd {
  padding: 13px 20px;
  width: 60%;
}

@media screen and (max-width: 599px) {
  .realvoice-det-container .customer-box .data-box dl dd {
    width: 100%;
    text-align: center;
  }
}
.realvoice-det-container .txt-box {
  margin-bottom: 60px;
}

@media screen and (max-width: 599px) {
  .realvoice-det-container .txt-box {
    margin-bottom: 35px;
  }
  .realvoice-det-container .txt-box:last-child {
    margin-bottom: 40px;
  }
}
.realvoice-det-container .txt-box h4.tit {
  padding-bottom: 17px;
  margin-bottom: 14px;
  font-size: 19px;
  font-weight: 600;
  border-bottom: 1px solid #cccccc;
  line-height: 1;
}
@media screen and (max-width: 599px) {
  .realvoice-det-container .txt-box h4.tit {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 14px;
    line-height: 1.8;
  }
}

/* ========================================================
共通
=========================================================*/
/* 簡易ページ */

/* .realvoice-det-container h3.tit {
  font-size: 25px;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 10px;
} */

/* @media screen and (max-width: 599px) {
  .realvoice-det-container .txt-box h4.tit {
    margin-bottom: 18px;
    font-size: 18px;
    line-height: 1.8;
  }
} */
/* ページネーション css */
.pagenation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.pagenation.sp {
  display: none;
}

@media screen and (max-width: 599px) {
  .pagenation.sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 599px) {
  .pagenation.pc {
    display: none;
  }
}
@media screen and (max-width: 599px){
  .pagenation__list{
    width: 300px;
  }
}

.pagenation__list li {
  display: inline-block;
  border: solid 1px #0033cc;
  margin-right: 5px;
  font-size: 16px;
}

.pagenation__list li a {
  display: block;
  width: 38px;
  height: 38px;
  text-align: center;
  color: #0033cc;
}

@media screen and (max-width: 599px) {
  .pagenation__list li a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}
.pagenation__list li .selected {
  background-color: #0033cc;
  color: #fff;
}

.realvoice-det-container .btn-box {
  margin: 0 auto;
  width: 315px;
}

.realvoice-det-container .btn-box .btn-radius-solid{
  background: #f5f5f5;
}

@media screen and (max-width: 599px) {
  .realvoice-det-container .btn-box {
    width: 315px;
  }
}