@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;
	}
}
//------------------------------
*/
/* ========================================================
サイトマップ
=========================================================*/
.sitemap-container .box-pc {
  margin: 0 0 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 599px) {
  .sitemap-container .box-pc {
    display: block;
    margin-bottom: 0;
  }
}
.sitemap-container .box-pc > .link-box {
  width: calc(50% - 30px);
  margin-right: 30px;
}

@media screen and (max-width: 599px) {
  .sitemap-container .box-pc > .link-box {
    margin-right: 0;
    margin-bottom: 0;
    width: 100%;
  }
}
@media screen and (max-width: 599px) {
  .sitemap-container .box-pc > .link-box li:last-child {
    margin-bottom: 0;
  }
}
.sitemap-container .column-main 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) {
  .sitemap-container .column-main h3.tit {
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 1.8;
    border-bottom: 1px solid #c2c2c2;
    padding-bottom: 14px;
  }
}
.sitemap-container .column-main p {
  margin-bottom: 48px;
}
@media screen and (max-width: 599px) {
  .sitemap-container .column-main p {
    margin-bottom: 35px;
    padding-bottom: 0;
    font-size: 14px;
  }
}

.sitemap-container .box-pc > .link-box h4.tit a, .sitemap-container .box-pc > .link-box h4.tit.nolink {
  display: block;
  padding: 5px 10px 6px 30px;
  background: url("../img/sitemap/icon_sitemap01.svg") 8px 16px/16px 16px no-repeat;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  font-weight: normal;
}
@media screen and (max-width: 599px) {
  .sitemap-container .box-pc > .link-box h4.tit a, .sitemap-container .box-pc > .link-box h4.tit.nolink {
    background: url("../img/sitemap/icon_sitemap01.svg") 8px 16px/16px 16px no-repeat;
  }
}

.sitemap-container .link-box ul{
  margin-top: 16px;
}
.sitemap-container .box-pc > .link-box ul li {
  margin-bottom: 10px;
}
.sitemap-container .box-pc > .link-box ul li:last-of-type {
  margin-bottom: 0;
}

@media screen and (max-width: 599px) {
  .sitemap-container .box-pc > .link-box ul li:last-of-type {
    margin-bottom: 42px;
  }
  .sitemap-container .box-pc:last-child > .link-box:last-child ul li:last-of-type {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 599px) {
  .sitemap-container .box-pc > .link-box ul li {
    margin-bottom: 15px;
    padding-left: 7px;
    font-size: 14px;
  }
}
.sitemap-container .box-pc > .link-box ul li a {
  display: inline-block;
  padding: 0 0 1px 24px;
  background: url("../img/sitemap/icon_sitemap02.svg") left 11px/16px 16px no-repeat;
}

@media screen and (max-width: 599px) {
  .sitemap-container .box-pc > .link-box ul li a{
  background: url("../img/sitemap/icon_sitemap02.svg") left 8px/16px 16px no-repeat;
}
}

.sitemap-container .box-pc > .link-box .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
