@charset "UTF-8";

/* ========================================
	utility
======================================== */

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	font-weight:normal;
}

p, ul, li {
	margin: 0;
	/* Android・文字サイズ対応 */
	max-height: 9999px;
	/* Android・文字の折り返し対応 */
	background: transparent;
}

*, *: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;
}

a {
	text-decoration: none;
	/* スマホのハイライトデザインを無効にする */
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	transition: .3s;
}
a:hover {
	text-decoration: none;
}
:focus {
	outline: none;
}

/* テキスト選択時 */
::selection {
	color: #ffffff;
	background: #000000;
}
::-moz-selection {
	color: #ffffff;
	background: #000000; /* Firefox */
}

sup{
	color: #695912;
}

/* img {
	width: 100%;
} */

.tc {
	text-align: center !important;
}

.ma {
	margin-left: auto;
	margin-right: auto;
}

.mt02 { margin-top:2em !important; }

ul.kome { /* リスト（※） */
	font-size: 1.4rem;
	line-height:1.6;
	padding-left: 1.5em;
	margin-top:2em;
}
ul.kome li {
	text-indent: -1.5em;
}
ul.kome li:not(:last-of-type) {
	margin-bottom:0.3em;
}
ul.kome li:before {
	content: "\203b";
	margin-right: 0.5em;
	color:#695912;
}

ul.komenum { /* リスト（※連番） */
	font-size: 1.4rem;
	line-height:1.6;
	padding-left: 2em;
	margin-top:2em;
}
ul.komenum li {
	text-indent: -2em;
}
ul.komenum li:before {
	counter-increment: number 1; 
	content: "\203b counter(number)";
	margin-right: 0.5em;
	color:#695912;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
}
.flex-container.sb {
    justify-content: space-between;
}

.flex-item {
	width: 100%;
}

/* 動画フォーマット */
.movie {
	position: relative;
	height: 0;
	padding-top: 56.25%;
	overflow: hidden;
}
.movie iframe {
	position: absolute;
	top: 0;
	left: 0;
	right:0;
	margin:auto;
	width: 100% !important;
	height: 100% !important;
}

/* 行数調整スクリプト用 */
.empty {
	height: 0 !important;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
	border: none !important;
}

/* ===================================
	common base style
=================================== */
html{
	font-size: 62.5%; /* sets the base font to 10px for easier math */
}
body {
	/* font-family:'Noto Sans JP', sans-serif; */
	/* font-family: 'Noto Serif JP', serif; */
	font-family: zen-kaku-gothic-antique, sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 1.8;
	counter-reset: number 0; /* number のカウンタを 0 にセット */
	background-color: #EDEDED;
}

html:before,
html:after,
body:before,
body:after {
  content: "";
  background: #DCC700;
  position: fixed;
  display: block;
  z-index: 1;
}

/* 上 */
html:before {
  height: 7px; 
  width: 100vw;
  left: 0;
  top: 0;
}

/* 右 */
html:after {
  width: 7px;
  height: 100vh;
  right: 0;
  top: 0;
}

/* 下 */
body:before {
  height: 7px;
  width: 100vw;
  bottom: 0;
  left: 0;
}

/* 左 */
body:after {
  width: 7px;
  height: 100vh;
  top: 0;
  left: 0;
}

/* ========================================
	1024px以上専用スタイル（PC）
======================================== */
@media print,
screen and (min-width: 1024px) {

	.pc { display: block; }
	.tab { display: none; }
	.sp { display: none; }

	/* .pc { display: block !important; }
	.sp { display: none; }
	.sp-small { display: none; }
	.sp-large { display: none; } */
	
	.outer-base-width {
		padding-left: 1.5%;
		padding-right: 1.5%;
	}

	/* フレックスコンテナ：ハーフ */
	.flex-container.sb>.flex-item {
		width: 48%;
	}

}

/* ========================================
	1200px以上専用スタイル
======================================== */
@media screen and (min-width: 1200px) {

	/* .pc-small { display: none; } */

	/* .contents-width {
		max-width: 1200px;
		margin-left: auto;
		margin-right: auto;
	} */

	.base-width-pc,
	.base-width {
		max-width: 1200px;
		margin-left: auto;
		margin-right: auto;
	}

}

/* ========================================
	768px以上専用スタイル（TAB & PC）
======================================== */
@media print,screen and (min-width: 768px) {

	/* 電話番号リンクPCは非対応に */
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
	}

}

/* ========================================
	1023px以下専用スタイル（TAB & SP）
======================================== */
@media only screen and (max-width: 1023px) {

	/* .pc { display: none; }
	.pc-large { display: none; }
	.pc-small { display: none; } */

	body {
		min-width: 320px;
	}

	main {
		overflow: hidden;
	}

	.base-width-sp,
	.base-width {
		padding-left: 5%;
		padding-right: 5%;
	}

}

/* ========================================
	768px以上1023px以下専用スタイル（TAB）
======================================== */
@media only screen and (min-width: 768px) and (max-width: 1023px) {

	.pc { display: none; }
	.tab { display: block; }
	.sp { display: none; }

	/* .pc-small { display: none; }
	.tb { display: none; } */

	.outer-base-width {
		padding-left: 1.5%;
		padding-right: 1.5%;
	}

}

/* ========================================
	767px以下専用スタイル（SP）
======================================== */
@media only screen and (max-width: 767px) {

	.pc { display: none; }
	.tab { display: none; }
	.sp { display: block; }
	/* .sp-large { display: none; } */

	article {
		font-size: 1.4rem;
		line-height: 1.8;
	}

	ul.kome,
	ul.komenum {
		font-size: 1.2rem !important;
	}	

}

/* ========================================
	IE
======================================== */
@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {}