@charset "UTF-8";

/*----------------------------------
	1. カラムボックス
------------------------------------*/
/*
ブレイクポイントの設定用クラス .bp768 .bp480 .bp420 
を切り替えて使ってください。
.column-box 又は .float-box に設定して下さい
*/
/* ------ カラム（flex） ------- */
.column-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.column-box-around {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}
.column-box-left {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.column-box__2col {
  width: 48% !important;
}

.column-box__3col {
  width: 31% !important;
}

.column-box__4col {
  width: 23% !important;
}

.column-box__5col {
  width: 18% !important;
}

/* カスタム用カラムボックス */
.column-box__80 {
  width: 80% !important;
}

.column-box__75 {
  width: 75% !important;
}

.column-box__70 {
  width: 70% !important;
}

.column-box__65 {
  width: 65% !important;
}

.column-box__60 {
  width: 60% !important;
}

.column-box__55 {
  width: 55% !important;
}

.column-box__50 {
  width: 50% !important;
}

.column-box__45 {
  width: 45% !important;
}

.column-box__40 {
  width: 40% !important;
}

.column-box__35 {
  width: 35% !important;
}

.column-box__30 {
  width: 30% !important;
}

.column-box__25 {
  width: 25% !important;
}

.column-box__20 {
  width: 20% !important;
}

.column-box__auto {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  flex: 1;
}
.column-box_outside{
  display: flex;
  justify-content: space-between;
  max-width: 1080px;
  margin: auto;
	align-items: center;
}
.reverse{
  flex-direction: row-reverse;
}
@media screen and (max-width: 480px) {
	.sp-reverse{
		flex-direction: column-reverse;
	}
}
.column-outside-right{
    flex: 1;
    margin-right: calc(50% - 50vw);
    margin-left: 4%;
}
@media screen and (max-width: 768px) {
	.column-box_outside{
		flex-wrap: wrap;
	}
	.column-outside-right{
		margin-right: 1px;
		margin-left: 1px;
	}
}
/* 中央揃え */
.column-box.align-c {
  align-items: center;
}
/* リバース */
.column-box.reverse {
  flex-direction: row-reverse;
}
/* 
最終行レイアウト維持のためのclass
コンテンツの数が変動する場合設定してください。
.column-box に設定してください。
*/
/* ３カラム用 */
.column-box--3return::after {
  content: "";
  display: block;
  width: 31%;
}

/* ４カラム用 */
.column-box--4return::before {
  content: "";
  display: block;
  width: 23%;
  order: 1;
}

.column-box--4return::after {
  content: "";
  display: block;
  width: 23%;
}

/* ブレイクポイント-汎用 */
@media screen and (max-width: 768px) {
  .bp768 > [class*=column-box__] {
    width: 100% !important;
    margin-bottom: 20px;
  }
  .bp768 > [class*=column-box__]:not(:last-child) {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 480px) {
  .bp480 > [class*=column-box__] {
    width: 100% !important;
  }
  .bp480 > [class*=column-box__]:not(:last-child) {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 320px) {
  .bp320 > [class*=column-box__] {
    width: 100%;
    margin-bottom: 20px;
  }
}
/* ブレイクポイント-中央揃え */
@media screen and (max-width: 768px) {
  .column-box.bp768-c {
    justify-content: space-around;
  }
  .column-box.bp768-c > [class*=column-box__] {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  .column-box.bp480-c {
    justify-content: space-around;
  }
  .column-box.bp480-c > [class*=column-box__] {
    width: 100%;
  }
}
@media screen and (max-width: 320px) {
  .column-box.bp320-c {
    justify-content: space-around;
  }
  .column-box.bp320-c > [class*=column-box__] {
    width: 100%;
  }
}
/* android4対策 */
@media screen and (max-width: 980px) {
  body.and4 .column-box {
    display: block;
    text-align: center;
  }
  body.and4 .column-box > div {
    display: inline-block;
  }
}

/*----------------------------------
	2. テキスト
------------------------------------*/

/* ------ テキストサイズ ------ */
/* ------ テキスト揃え ------ */
.l-txt {
  text-align: left !important;
}

.r-txt {
  text-align: right;
}

.c-txt {
  text-align: center;
}

.txt-red{
	color: #820909;
}


/*----------------------------------
	3. 空白ユーティリティ
------------------------------------*/
/* ------ 不変マージン ------ */
/* bottom */
.mb-70 {
  margin-bottom: 70px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-10 {
  margin-bottom: 10px !important;
}

.mb-0 {
  margin-bottom: 0px !important;
}

.mt-30 {
  margin-top: 30px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-10 {
  margin-top: 10px;
}


/* ------ 不変パディング ------ */
/* all */
.p-70 {
  padding: 70px;
	box-sizing: border-box;
}

.p-60 {
  padding: 60px;
	box-sizing: border-box;
}

.p-50 {
  padding: 50px;
	box-sizing: border-box;
}

.p-40 {
  padding: 40px;
	box-sizing: border-box;
}

.p-30 {
  padding: 30px;
	box-sizing: border-box;
}

.p-20 {
  padding: 20px;
	box-sizing: border-box;
}

.p-10 {
  padding: 10px;
	box-sizing: border-box;
}
/*padding*/
.pad_40-0{padding: 40px 0;}
.pad_50-0{padding: 50px 0;}
.pad_60-0{padding: 60px 0;}

@media(max-width:480px){
.pad_40-0{padding: 20px 0;}
.pad_50-0{padding: 20px 0;}
.pad_60-0{padding: 20px 0;}
}

.page_link_pd{
	padding: 96px 0 0 0;
	margin: -96px 0 0;
}
@media(max-width:480px){
	.page_link_pd{
		padding: 60px 0 0 0;
		margin: -60px 0 0;
	}
}
/* top bottom */
.mtb-70 {
  margin: 70px 0;
}

.mtb-60 {
  margin: 60px 0;
}

.mtb-50 {
  margin: 50px 0;
}

.mtb-40 {
  margin: 40px 0;
}

.mtb-30 {
  margin: 30px 0;
}

.mtb-20 {
  margin: 20px 0;
}

.mtb-10 {
  margin: 10px 0;
}

/*----------------------------------
	4. 中央配置
------------------------------------*/
/* ------ 中央揃え ------- */
/* position(高さ指定必要) */
.center-box01 {
  position: relative;
}

.center-box01__cell {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}

/* position(高さ指定不要) */
.center-box02 {
  position: relative;
}

.center-box02__cell {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}

/* flex(幅・高さ指定不要) */
.center-box03 {
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
}

/*----------------------------------
	5. 表示・非表示
------------------------------------*/
/* 
スマホ用の表示・非表示切り替えです。
ブレイクポイントの数値の後に -on(表示) -off(非表示) で切り替わります。
imgやbrなど細かい調節に使ってください
*/
/* 768px以下からon(表示) */
@media screen and (min-width: 769px) {
  .bp768-on {
    display: none;
  }
}
/* 768px以下からoff(非表示) */
@media screen and (max-width: 768px) {
  .bp768-off {
    display: none;
  }
}
/* 480px以下からon(表示) */
@media screen and (min-width: 481px) {
  .bp480-on {
    display: none;
  }
}
/* 480px以下からoff(非表示) */
@media screen and (max-width: 480px) {
  .bp480-off {
    display: none;
  }
}
/* 420px以下からon(表示) */
@media screen and (min-width: 421px) {
  .bp420-on {
    display: none;
  }
}
/* 420px以下からoff(非表示) */
@media screen and (max-width: 420px) {
  .bp420-off {
    display: none;
  }
}
/* 320px以下からoff(非表示) */
@media screen and (max-width: 320px) {
  .bp320-off {
    display: none;
  }
}
.no-wrap{
	display: inline-block;
}

/*----------------------------------
	画像
------------------------------------*/
img{
	width: 100%;
	height: auto;
}
/*----------------------------------
	背景
------------------------------------*/
.bg-gray{
	background: #f5f5f5;
}
/*----------------------------------
	幅
------------------------------------*/
.inner{
	width: 90%;
	max-width: 1000px;
	margin: 0 auto;
}
.inner02{
	width: 90%;
	max-width: 900px;
	margin: 0 auto;
}
.content-inner{
	width: 90%;
	max-width: 1180px;
	margin: 0 auto;
}
section{
	padding: 4em 0;
}
/*----------------------------------
	リスト・テーブル
------------------------------------*/
/* ------ テーブル ------- */
.table-style01 {
  width: 90%;
  max-width: 900px;
	margin: 0 auto;
	background: #fff;
	font-size: 14px;
	line-height: 2.6;
}

.table-style01 th,
.table-style01 td {
  border: solid 1px #999;
  padding: 1em;
	box-sizing: border-box;
}

.table-style01 th {
  text-align: left;
	width: 15%;
}
@media screen and (max-width: 480px) {
	.table-style01 th,
	.table-style01 td {
		display: block;
		width: 100%;
	}
}