@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;
	}
}
//------------------------------
*/
/* ========================================================
プライバシーポリシー
=========================================================*/

.private .private-container h3.tit {
  margin-bottom: 16px;
  line-height: 0.8;
  font-size: 25px;
  border-bottom: 1px solid #c2c2c2;
  padding-bottom: 20px;
}
@media screen and (max-width: 599px) {
  .private .private-container h3.tit {
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 1.8;
    border-bottom: 1px solid #c2c2c2;
    padding-bottom: 14px;
  }
}
@media screen and (max-width: 599px) {
  .private .private-container .txt-box {
    font-size: 1.65rem;
    line-height: 1.8;
  }
}
.private .private-container .txt-box p {
  margin-bottom: 43px;
}
@media screen and (max-width: 599px) {
  .private .private-container .txt-box p {
    margin-bottom: 35px;
    padding-bottom: 0;
  }
}
.private .private-container .txt-box ul {
  padding-left: 15px;
}
@media screen and (max-width: 599px) {
  .private .private-container .txt-box ul {
    margin-bottom: 0;
    padding-left: 19px;
  }
}
.private .private-container .txt-box ul li {
  margin-bottom: 19px;
  list-style: decimal outside;
  font-size: 19px;
  font-weight: 500;
  margin-left: 10px;
}
@media screen and (max-width: 599px) {
  .private .private-container .txt-box ul li {
    margin-bottom: 16px;
    margin-left: 0;
    font-size: 15px;
  }
}

.private .private-container .txt-box ul li:last-child{
  margin-bottom: 0;
}

.private .private-container .txt-box ul li h4{
  font-size: 19px;
}
@media screen and (max-width: 599px) {
  .private .private-container .txt-box ul li h4{
    font-size: 15px;
  }
}
.private .private-container .txt-box ul li p{
  margin-bottom: 35px;
  font-size: 16px;
  font-weight: normal;
}
.private .private-container .txt-box ul li:last-child p{
  margin-bottom: 0;
  }
@media screen and (max-width: 599px) {
  .private .private-container .txt-box ul li p{
    font-size: 14px;
  }
  .private .private-container .txt-box ul li:nth-child(2n) p{
    margin-bottom: 20px;
  }
  .private .private-container .txt-box ul li:nth-child(2n) p:last-child{
    margin-bottom: 35px;
  }
  .private .private-container .txt-box ul li,
  .private .private-container .txt-box ul li:last-child p{
    margin-bottom: 0;
  }
}