@charset "utf-8";

/*--------------------*/
/*---- common.css ----*/
/*--------------------*/

/*-------------- reset -------------*/
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-appearance: none;
}
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;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
b, strong {
	font-weight: bold;
}
/* safariで自動付与されるスタイルの打ち消し */
select {
	border-radius: 0;
}

/*-------------- body -------------*/
body {
	position: relative;
	/* font-family: "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "MS Ｐゴシック", "MS P Gothic", "Osaka", Verdana, Arial, Helvetica, sans-serif; */
	color: #222;
	font-feature-settings: "palt";
	-webkit-text-size-adjust: 100%;
	background-color: #fff;
	height: 2000px;
}

h1{
	margin-top: 80px;
	font-size: 3rem;
	text-align: center;
}

/*-------------- font設定 -------------*/
/* body {
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "MS Ｐゴシック", "MS P Gothic", "Osaka", Verdana, Arial, Helvetica, sans-serif;
	font-optical-sizing: auto;
	font-weight: var(--font-w-medium);
	font-style: normal;
	letter-spacing: 1px;
} */

/* グローバル変数宣言 */
/* :root {
	--font-w-regular: 400;
	--font-w-medium: 500;
	--font-w-bold: 700;
	--font-w-black: 900;
} */
/* 
〜 文字の設定値 〜
Regular 400
Medium 500
SemiBold 600
Bold 700
ExtraBold 800
Black 900
*/

/*-------------- a  -------------*/
a {
	text-decoration: none;
	color: #222;
}

/*-------------- 要素が少ない場合でもfooterを画面下部に固定する -------------*/
body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}
footer {
	margin-top: auto;
}


/*-------------- form -------------*/
/* フォームのフォント指定(必ず設定すること)↓ */
/* .formControl {
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "MS Ｐゴシック", "MS P Gothic", "Osaka", Verdana, Arial, Helvetica, sans-serif;
	font-weight: 400;
}
textarea {
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "MS Ｐゴシック", "MS P Gothic", "Osaka", Verdana, Arial, Helvetica, sans-serif;
	font-weight: 400;
}
button {
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "MS Ｐゴシック", "MS P Gothic", "Osaka", Verdana, Arial, Helvetica, sans-serif;
	font-weight: 400;
} */


/*-------------- formリセットCSS -------------*/
/* input,
button,
select,
textarea {
	margin: 0;
	padding: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font: inherit;
	border: none;
	border-radius: 0;
	outline: none;
	background: none;
}
textarea {
	resize: vertical;
}
input[type='checkbox'],
input[type='radio'] {
	display: none;
}
input[type='submit'],
input[type='button'],
label,
button,
select {
	cursor: pointer;
}
select::-ms-expand {
	display: none;
} */


/*-------------- WordPress専用CSS  -------------*/
/* 画像の位置調整 */
/* .aligncenter {
	display: block;
	margin-right: auto;
	margin-left: auto;
}
.alignright {
	float: right;
}
.alignleft {
	float: left;
}
.wp-caption,
[class*='wp-image'] {
	display: block;
	max-width: 100% !important;
	text-align: center;
}
.wp-caption-text {
	margin-top: 0;
} */

/* コンテンツ自由入力欄画像のflot解除用 */
/* .articleBody * {
	clear: both;
}
.articleBody .alignright + * {
	clear: both;
}
.articleBody .alignleft + * {
	clear: both;
} */