@charset "utf-8";

/*リセットCSS
----------------------------------------------------------------*/

/* 要素 フォントサイズ・マージン・パディングをリセット */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    font-weight: normal;
    vertical-align:baseline;
    background:transparent;
}

/* 行の高=フォントサイズ */
body {
    line-height:1;
	font-size: 1.6rem;
}
@media screen and (max-width: 767px){
	body {
		font-size: 1.4rem;
		line-height: 1.785;
	}
}


/* 新規追加要素をブロック要素化 */
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}

/* ulのマーカー非表示 */
ol, ul {
    list-style: none;
}

/* 引用符の非表示 */
blockquote, q {
    quotes:none;
}

/* blockquote要素、q要素の前後にコンテンツ非表示 */
blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

/* フォントサイズ　リセット フォントの縦方向 ベースライン揃え 点線削除 */
a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
    outline: none;
}

/* ins要素 デフォルトセット 色を変える場合はここで変更 */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}

/* mark要素 デフォルトセット 色やフォントスタイルを変える場合はここで変更 */
mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}

/* テキスト 打ち消し線 */
del {
    text-decoration: line-through;
}

/* IE　デフォルトで点線を下線表示設定　下線設定 マウスオーバー時 ヘルプカーソル表示可 */
abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}

/*　隣接するセルのボーダーを重ねて表示　*/
table {
    border-collapse:collapse;
    border-spacing:0;
}

/* 水平罫線デフォルトリセット */
hr {
    display:block;
    height:1px;
    border:0;  
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

/* 縦方向の揃え 中央揃え */
input, select {
    vertical-align:middle;
}

/* 画像を縦に並べた時に余白0 */
img {
    vertical-align: top;
    font-size: 0;
    line-height: 0;
}

/*box-sizingを全ブラウザに対応*/
*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

.clearfix:after {
	overflow: hidden;
	visibility: hidden;
	height: 0;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
}

br {
	line-height: inherit;
}

/*【共通】パーツ
----------------------------------------------------------------*/
/* リンク */
a,
a * {
	-webkit-transition: opacity 0.6s ease;
	-moz-transition: opacity 0.6s ease;
	-o-transition: opacity 0.6s ease;
	transition: opacity  0.6s ease;
	text-decoration: none;
	font-size: inherit;
	font-weight: inherit;
	color: inherit;
	font-family: inherit;
	-webkit-backface-visibility: hidden; /* 追加 */
	backface-visibility: hidden; /* 追加 */
}
a:hover, a:active {
	text-decoration:none;
	opacity: 0.7;
	filter: alpha(opacity=70);
}
img {
	max-width: 100%;
	height: auto;
}

/* 表示切り替え */
#wrapper .sp-display {
	display: none;
}
#wrapper .tb-display {
	display: none;
}
@media screen and (max-width: 1279px) {
#wrapper .tb-display {
	display: block;
}
}
@media screen and (max-width: 767px) {
#wrapper .sp-display {
	display: block;
}
}

/* 配置 */
#wrapper .f_left {
	float: left;
	text-align: center;
	line-height: 2;
}
#wrapper .f_right {
	float: right;
	text-align: center;
	line-height: 2;
}
#wrapper .leftOn {
	text-align: left;
}
#wrapper .rightOn {
	text-align: right;
}
#wrapper .centerOn {
	text-align: center;
}

/*基本設定
----------------------------------------------------------------*/

/*  配置  */
.flex-nml {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	flex-wrap:wrap;
}
.flex-btw {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	flex-wrap:wrap;
	-webkit-box-pack:justify;
	-ms-flex-pack:justify;
	justify-content:space-between;
}
.flex-cnt {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	flex-wrap:wrap;
	-webkit-box-pack:center;
	-ms-flex-pack:center;
	justify-content:center;
}
.flex-end {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	flex-wrap:wrap;
	-webkit-box-pack:end;
	-ms-flex-pack:end;
	justify-content:flex-end;
}
.row-reverse {
	-webkit-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
.items-center {
	-webkit-align-items: center;
	align-items: center;
}
.items-start {
	-webkit-align-items: flex-start;
	align-items: flex-start;
}
.items-end {
	-webkit-align-items: flex-end;
	align-items: flex-end;
}

/* 余白 */
.section-pd {
	padding: 270px 0 150px;
}

.section-pd-nml{
	padding: 80px 0;
}
.section-pd-last{
	padding: 80px 0 120px;
}
.section-pd-large{
	padding: 160px 0;
}
@media (max-width: 1024px){
	.section-pd{
	padding: 170px 0;
	}
}
@media (max-width: 767px){
	.section-pd{
	padding: 90px 0;
	}
}
@media (max-width: 1080px){
	.section-pd-large{
		padding: 120px 0;
	}
}
.mb0{margin-bottom: 0;}
.mb10{margin-bottom: 10px;}
.mb15{margin-bottom: 15px;}
.mb20{margin-bottom: 20px;}
.mb30{margin-bottom: 30px;}
.mb40{margin-bottom: 40px;}
.mb50{margin-bottom: 50px;}
.mb60{margin-bottom: 60px;}
.mb70{margin-bottom: 70px;}
.mb80{margin-bottom: 80px;}
.mb90{margin-bottom: 90px;}
.mb100{margin-bottom: 100px;}
.mb120{margin-bottom: 120px;}
.mb140{margin-bottom: 140px;}
.mb160{margin-bottom: 160px;}
.mr0{margin-right: 0;}
.mr20{margin-right: 20px;}
@media screen and (max-width:767px) {
	 .section-pd-nml{
		padding: 50px 0;
	}
	 .section-pd-last{
		padding: 50px 0 60px;
	}
	 .section-pd-large{
		padding: 70px 0;
	}
	.mb30{margin-bottom: 20px;}
    .mb40{margin-bottom: 30px;}
	.mb50{margin-bottom: 30px;}
	.mb60{margin-bottom: 35px;}
	.mb70{margin-bottom: 40px;}
	.mb80{margin-bottom: 45px;}
	.mb90{margin-bottom: 50px;}
	.mb100{margin-bottom: 50px;}
	.mb120{margin-bottom: 60px;}
	.mb140{margin-bottom: 70px;}
	.mb160{margin-bottom: 70px;}
}

/*	【汎用】タイトル
---------------------------------*/
/*タイトル*/
.ttl-cmn01{
	font-size: 4.0rem;
	line-height: 1;
	position: relative;
	padding-bottom: 40px;
	text-align: center;
	font-weight: 700;
	letter-spacing: 0.075em;
	text-align: left;
}
.ttl-cmn01 span{
	display: block;
	font-family: 'Kanit';
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    color: #6488BE;
	font-size: 1.6rem;
	margin-bottom: 5px;

}
.ttl-cmn02{
	font-weight: bold;
	font-size: 4rem;
	line-height: 1;
	position: relative;
	padding-bottom: 45px;
	text-align: center;
	letter-spacing: 2px;
}
.ttl-cmn03{
	font-weight: bold;
	font-size: 3.2rem;
	line-height: 46px;
	position: relative;
	padding-left: 16px;
	letter-spacing: 2px;
}
.ttl-cmn03::after{
	content: '';
    background-image: url(../img/icon_ttl-side.png);
    width: 16px;
    height: 46px;
    position: absolute;
    top: 0px;
    left: 0px;
    transform: translateX(-50%);
}
@media (max-width: 1080px){
	.ttl-cmn01{
		font-size: 2.8rem;
		line-height: 1;
		position: relative;
		padding-bottom: 30px;
		text-align: center;
		font-weight: 700;
		letter-spacing: 0.075em;
		text-align: left;
	}
	.ttl-cmn01 span{
		display: block;
		font-family: 'Kanit';
		font-style: normal;
		font-weight: 500;
		line-height: 24px;
		color: #6488BE;
		font-size: 1.6rem;
		margin-bottom: 5px;
	
	}
	.ttl-cmn02 {
		font-size: 3rem;
	}
	.ttl-cmn03{
		font-size: 2.8rem;
		line-height: 46px;
		position: relative;
		padding-left: 20px;
		letter-spacing: 2px;
	}

}
@media (max-width: 767px){
	.ttl-cmn01{
		font-size: 2.5rem;
		padding-bottom: 0px;
	}
	.ttl-cmn02 {
		font-size: 2.4rem;
		padding-bottom: 25px;
	}
	.ttl-cmn03{
		font-size: 2.3rem;
		padding-left: 20px;
		letter-spacing: 2px;
	}
	.ttl-cmn03::after{
		width: 12px;
		height: 40px;
		top: 4px;
	}
	
}
.txt01 {
	font-weight: 700;
	font-size: 2rem;
	text-align: left;
}
/*	【汎用】ボタン
---------------------------------*/
.btn-cmn01 {
	max-width: 232px;
	margin-right: auto;
	margin-left: auto;
}
.btn-cmn01.left {
	margin-right: auto;
	margin-left: 0;
}
.btn-cmn01 input,
.btn-cmn01 a {
	letter-spacing: 0.1em;
	display: block;
	font-size: 1.4rem;
	text-align: center;
	position: relative;
	border: solid 1px #1F5799;
	color: #1F5799;
	background: #fff;
	line-height: 60px;
	font-weight: 700;
	-webkit-transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
	cursor: pointer;
}
.btn-cmn01 a:after {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 30px;
	width: 13px;
	height: 13px;
	background:no-repeat center center / contain;
	background-image: url(../img/icon-blue.png);
}
.btn-cmn02 {
	width: 120px;
	color: #1F5799;
	font-weight: 700;
	border-bottom: 1px solid #1F5799;;
}
.btn-cmn02 input,
.btn-cmn02 a {
	letter-spacing: 0.1em;
	display: block;
	text-align: left;
	position: relative;
	line-height: 40px;
	-webkit-transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
	cursor: pointer;
}
.btn-cmn02 a:after {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0px;
	width: 16px;
	height: 16px;
	background:no-repeat center center / contain;
	background-image: url(../img/icon-blue.png);
}
.btn-cmn02:hover{
	opacity: 0.45;
}

.btn-cmn03 input,
.btn-cmn03 a {
	position: relative;
    width: 100%;
    background: none;
    border: 1px solid #226cac;
    color: #226cac;
    text-align: center;
    font-weight: normal;
    line-height: 1;
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
	height: 70px;
}

@media screen and (max-width:767px) {
.btn-cmn01 {
	width: 100%;
}
.btn-cmn01 input,
.btn-cmn01 a {
	line-height: 60px;
	border-color: #333;
	font-size: 1.4rem;
	padding-right: 15px;
}
.btn-cmn01.left {
	margin-right: auto;
	margin-left: 0;
}


.btn-cmn02 span{
	line-height: 25px;
	font-size: 1.3rem;
}
}


/*	【汎用】テーブル
---------------------------------*/
.tbl-cmn01 table {
	margin: 0 auto;
	width: 100%;
	border-top: 1px solid #ccc;
	text-align:left;
	font-size: 1.6rem;
}
.tbl-cmn01 table tr {
	border-bottom: 1px solid #ccc;
	justify-content: space-between;
}
.tbl-cmn01 table th {
	padding: 15px 40px;
	width: 300px;
	font-weight: bold;
	color: #222222;
	line-height: 1.88;
}

.tbl-cmn01 table td {
	padding: 40px 20px;
	line-height: 1.88;
	letter-spacing: 0.8px;
	width: calc(100%-300px);
}
@media screen and (max-width:1024px){
	.tbl-cmn01 table th {
		width: 30%;
        padding: 15px;
	}
}
@media screen and (max-width:770px){
	.tbl-cmn01 table th {
		padding: 15px 0px 15px 40px;
	}
}
@media screen and (max-width: 767px){
	.tbl-cmn01 table {
		font-size: 1.4rem;
	} 
	.tbl-cmn01 table th{
          border-right: none;
		  padding: 10px 10px 2px 10px;
		  display: block;
			width: 100%;
		border-bottom: none;
	}
	.tbl-cmn01 table tbody{
		border-bottom: 2px solid #999;
	}
}

@media screen and (max-width: 767px){
	.tbl-cmn01 table td{
          border-left: none;
		  padding: 2px 10px 10px 10px;
		  display: block;
			width: 100%;
	}
}

/*【共通】パーツ
----------------------------------------------------------------*/


/* 表示切り替え */
.sp-display {
    display: none;
}
.tb-display {
    display: none;
}
.pc-none {
    display: none;
}
@media screen and (max-width: 1023px) {
    .tb-display {
        display: block;
    }
    .pc-display {
        display: none;
    }
    .pc-none {
        display: block;
    }
}

@media screen and (max-width: 767px) {
    .tb-display {
        display: none;
    }
    .sp-display {
        display: block;
    }
    .pc-display {
        display: none;
    }
    .sp-none {
        display: none;
    }
    .pc-none {
        display: block;
    }
}

 /*スクロールバー全体*/
 ::-webkit-scrollbar {
	width: 10px;
  }
  
  ::-webkit-scrollbar-button {
	vertical: decrement;
  }
  
  /*スクロールバーの軌道*/
  ::-webkit-scrollbar-track {
	border-radius: 0px;
	-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
			box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  }
  
  /*スクロールバーの動く部分*/
  ::-webkit-scrollbar-thumb {
	background-color: #ccc;
	border-radius: 0px;
	-webkit-box-shadow: 0 0 0 1px white;
			box-shadow: 0 0 0 1px white;
  }
  /*　プライバシーポリシー　*/
  .privacypolicy h3 {
	  font-size: 2rem;
  }
.contact-privacy-box {
	height: 290px;
	border: 1px solid #ccc;
	overflow-y: scroll;
	padding: 29px 74px 11px 30px;
	text-align: left;
  }
  
  .contact-privacy-box p {
	margin: 0 0 20px;
	line-height: 1.63;
  }
  
  .contact-privacy-box dt {
	font-weight: 600;
	line-height: 1.63;
  }
  
  .contact-privacy-box dd {
	margin: 0 0 20px;
	line-height: 1.6;
  }
  
  @media screen and (max-width: 767px) {
	.contact-privacy-box {
	  margin: 0 0 25px;
	  padding: 10px;
	}
	.contact-privacy-box p {
	  margin: 0 0 10px;
	  font-size: 1.3rem;
	}
	.contact-privacy-box dt, .contact-privacy-box dd {
	  font-size: 1.3rem;
	}
  }