@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;
	}
}
//------------------------------
*/
/* ========================================================
プライバシーポリシー
=========================================================*/
.latest .private-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) {
  .latest .private-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) {
  .latest .private-container .contents {
    margin-top: 20px;
  }
}

@media screen and (max-width: 599px) {
  .private .private-container .txt-box {
    padding: 14px 0 0;
    font-size: 1.65rem;
    line-height: 1.8;
  }
}

.private .private-container .txt-box p {
  margin-bottom: 48px;
}

@media screen and (max-width: 599px) {
  .private .private-container .txt-box p {
    margin-bottom: 35px;
    padding-bottom: 0;
    font-size: 14px;
  }
}

.private .private-container .txt-box h4 {
  font-size: 19px;
  margin-bottom: 16px;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 14px;
}

.private .private-container .contents .category-pages article {
  padding-left: 8px;
  border-bottom: 1px solid #bdc7d1;
  height: 95px;
}

@media screen and (max-width: 599px) {
  .private .private-container .contents .category-pages article {
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.private .private-container .contents .category-pages article:first-child {
  border-top: 1px solid #bdc7d1;
}
.private .private-container .contents .category-pages article:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 599px) {
  .private .private-container .contents .category-pages article:last-child {
    margin-bottom: 0;
  }
}

.private .private-container .contents .category-pages article header {
  height: 100%;
  position: relative;
  padding-left: 0.75em;
}

.private .private-container .contents .category-pages article header a {
  display: flex;
  line-height: 95px;
}

@media screen and (max-width: 599px) {
  .private .private-container .contents .category-pages article header a {
    display: block;
  }
}

.private .private-container .contents .category-pages article header:before {
  position: absolute;
  content: '';
  top: 42px;
  left: 0;
  height: 0;
  width: 0;
  border-style: solid;
  border-width: 3.5px 0 3.5px 4.5px;
  border-color: transparent transparent transparent #07443d;
}

@media screen and (max-width: 599px){
  .private .private-container .contents .category-pages article header:before{
    top: 13px;
  }
}

.private .private-container .contents .category-pages article header time {
  width: 10em;
  font-size: 16px;
  color: #666;
  box-sizing: border-box;
  height: 100%;
}

.private .private-container .contents .category-pages article header a h4 {
  height: 100%;
  font-size: 16px;
  font-weight: normal;
}

@media screen and (max-width: 599px) {
  .private .private-container .contents .category-pages article header time,
  .private .private-container .contents .category-pages article header a h4 {
    display: block;
    line-height: 2.4;
    font-size: 14px;
  }
}

/* topic1 */

.topic .private-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) {
  .topic .private-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) {
  .private .private-container .txt-box {
    font-size: 1.65rem;
    line-height: 1.8;
    padding-top: 0;
  }
}

.private .private-container .txt-box .date102 {
  font-size: 16px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 34px;
}

@media screen and (max-width: 599px) {
  .private .private-container .txt-box .date102 {
    margin-bottom: 34px;
  }
}

.topic .private-container .txt-box p {
  margin-bottom: 50px;
}

@media screen and (max-width: 599px) {
  .private .private-container .txt-box p {
    margin-top: 0;
    margin-bottom: 35px;
    padding-bottom: 0;
  }
}

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

.private .private-container .btn-box a {
  background: #f5f5f5;
}