@charset "utf-8";

/* -------------------------------------------------- */
/* RESET*/
/* -------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}

li {
	list-style-type: none;
}

blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

img {
	vertical-align: bottom;
}

textarea,select,option {
	font: inherit;
}

/* -------------------------------------------------- */
/* WP*/
/* -------------------------------------------------- */
/* 投稿の画像配置 */
.alignright { display: block; margin: 0 0 10px auto; }/* 配置位置 左 */
.alignleft { display: block; margin: 0 auto 10px 0; }/* 配置位置 右 */
.aligncenter { display: block; margin: 0 auto 10px; }/* 配置位置 中央 */
/* .alignright { float: right; padding: 0px 0 10px 10px; } *//* 後続のテキスト左回り込み */
/*.alignleft { float: left; padding: 0px 10px 10px 0; }*//* 後続テキスト右回り込み */

/* -------------------------------------------------- */
/* LINK */
/* -------------------------------------------------- */
a:link,
a:visited { text-decoration: none; color: #333333; }
a:hover  { text-decoration: none; color: #275aa3; }
a:active { text-decoration: none; color: #275aa3; }

/* -------------------------------------------------- */
/* CLEARFIX */
/* -------------------------------------------------- */
.cf:before,
.cf:after {
	content: " ";
	display: table;
}

.cf:after {
	clear: both;
}

.cf {
	*zoom: 1;
}

/* -------------------------------------------------- */
/* COMMON */
/* -------------------------------------------------- */
html {
	font-size: 62.5%;/* 10px */
	min-height: 100vh;
}

body {
	background: #FFFFFF;
	color: #333333;
	font-size: 14px;
	font-size: 1.4rem;
	-webkit-text-size-adjust: 100%;
}

#container {
	position: relative;
	font-family: fot-tsukuardgothic-std, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka,"ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: 700;
	line-height: 1.5;
}

* {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

img {
	max-width: 100%;
}

/* 改行調整
------------------------------------ */
.tabbr {
	display: none;
}

.spbr {
	display: none;
}

/* テキスト調整
------------------------------------ */
.txt-center {
	text-align: center!important;
}

.txt-right {
	text-align: right!important;
}

.txt-left {
	text-align: left!important;
}

/* 共通パーツ
------------------------------------ */
.inner {
	width: 1280px;
	max-width: 100%;
	margin-right: auto;
	margin-left: auto;
	padding: 0 40px;
}

.inner--full {
	width: 100%;
}

/* ボタン */
.btn {
	max-width: 100%;
	padding: 1em 2.5em 1em 1em;
	display: inline-block;
	color: #ffffff;
	font-size: 2.2rem;
	font-weight: 700;
	background-color: #275aa3;
	background-image: url(./img/icon_arrow-right-white.svg);
	background-repeat: no-repeat;
	background-position: right 0.6em center;
	background-size: 1.6em;
	border-radius: 10px;
}

a.btn {
	color: #ffffff;
}

.btn--white {
	max-width: 100%;
	color: #275aa3;
	background-color: #ffffff;
	background-image: url(./img/icon_arrow-right-blue.svg);
	border: 2px solid #275aa3;
}

a.btn--white {
	color: #275aa3;
}

/* セクション */
.ntwSection {
	padding-bottom: 80px;
}

.title {
	margin-bottom: 15px;
	color: #275ba4;
	font-size: 3.6rem;
	font-weight: 700;
}

.sectionTxt {
	font-size: 1.8rem;
	line-height: 1.7778;
}

.sectionTxt:not(:last-child) {
	margin-bottom: 25px;
}

/* 記事一覧 */
.articleInfo {
	font-size: 1.4rem;
}

.articleInfo > *:not(:last-child) {
	margin-right: 10px;
}

.articleDate {
	display: inline-block;
}

.articleLabel {
	padding: 4px 6px;
	display: inline-block;
	color: #275aa3;
	line-height: 1;
	border: 2px solid currentColor;
	border-radius: 14px;
}

.articleTtl {
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.625;
}

.articleTxt {
	font-size: 1.6rem;
}

/* -------------------------------------------------- */
/* ホバーエフェクト */
/* -------------------------------------------------- */
@media screen and (min-width: 1025px) {
	.btn {
		-webkit-transition: 0.3s ease-in-out;
		transition: 0.3s ease-in-out;
	}
	.btn:hover {
		opacity: 0.8;
	}
}


/* -------------------------------------------------- */
/* TAB&SP */
/* -------------------------------------------------- */
@media screen and (max-width: 1024px) {
	.inner {
		padding: 0 3%;
	}

	.pcbr {
		display: none;
	}

	.title {
		font-size: 3rem;
	}

	.sectionTxt {
		font-size: 1.5rem;
	}
}

/* -------------------------------------------------- */
/* TAB(調整) */
/* -------------------------------------------------- */
@media screen and (min-width: 768px) and (max-width: 1024px) {
	.tabbr {
		display: block;
	}

	/* 記事一覧 */
	.articleLabel {
		font-size: 1.2rem;
	}

	.articleTtl {
		font-size: 1.4rem;
	}
}

/* -------------------------------------------------- */
/* SP(調整) */
/* -------------------------------------------------- */
@media screen and (max-width: 767px) {
	#container {
		/* スマホでWebフォントを使用しない時は下記のコメントアウトを外す */
		/* font-family: "Hiragino Sans", "Noto Sans CJK JP", sans-serif;
		font-weight: 400; */
	}

	.spbr {
		display: block;
	}

	.btn {
		font-size: 1.8rem;
	}

	.ntwSection {
		padding-bottom: 60px;
	}

	.title {
		margin-bottom: 10px;
		font-size: 2.4rem;
	}

	.sectionTxt {
		font-size: 1.4rem;
	}

	/* 記事一覧 */
	.articleInfo {
		font-size: 1.1rem;
	}

	.articleLabel {
		padding: 2px 4px;
		font-size: 1rem;
		line-height: 1.1;
		border-width: 1px;
	}

	.articleTtl {
		font-size: 1.3rem;
	}
}

@media screen and (max-width: 374px) {
	html {
		font-size: 2.667vw;
	}
}
