@charset "UTF-8";

/* PC用CSS Document */

/* normalize based ress */

/*@import url(https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.0/normalize.min.css);*/

@import url(https://unpkg.com/ress/dist/ress.min.css);

/* for ress
*
{
 margin: 0px;
 padding: 0px;
 -webkit-box-sizing: border-box;
 -moz-box-sizing: border-box;
 box-sizing: border-box;
}
*/

/* ericcarle only */
:root {
  --main-font-color: #333333;
	--main-green-color:#00953b;
	--sub-green-color:#6cb33f;
	--main-bgcolor:#f9f9f9;
	--sub-bgcolor:#d7eacb;
	--ac-yellow-color:#ffda00;
	--ac-red-color:#e31937;
	--ac-blue-color:#50c8e8;
	--ac-purple-color:#7e57c5;
}

html,
body {
	height: 100%;
}

html {
	font-size: 62.5%;
}

/* 「BIZ UDPゴシック」Windowsの標準フォント（windows Oct.2018 update以降） */
body {
	font-size: 14px;
	font-size: 1.4rem;
  font-family: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans","BIZ UDPGothic",Meiryo,sans-serif;
  color: var(--main-font-color);
	word-wrap: break-word;
}

a {
	color: var(--main-font-color);
	text-decoration: none;
	transition: All 0.2s ease;
}

a:hover {
	color: var(--sub-green-color);
	text-decoration: none;
}

ul.nolist,
.nolist li {
	list-style: none;
}

ul.reglist,
ul.reglist2,
ul.komelist,
ul.komelist_wh,
ul.komelist_bl {
	margin: 0 0 20px;
	padding: 0;
}

.reglist li,
.reglist2 li,
.komelist li,
.komelist_wh li,
.komelist_bl li {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: baseline;
	align-items: baseline;
	margin-bottom: 5px;
	padding: 0;
}

.reglist li::before {
	content: "\f111" !important;
	font-family: "Font Awesome 5 Free" !important;
	font-weight: 900;
  /* background: linear-gradient(-130deg, rgba(219, 169, 0, 1) 23%, rgba(245, 217, 116, 1) 47%, rgba(219, 169, 0, 1) 74%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
	margin-right: 5px;
	color: var(--sub-green-color);
}

.reglist2 li::before {
	content: "\f111" !important;
	font-family: "Font Awesome 5 Free" !important;
	font-weight: 900;
	color: #00b760;
	margin-right: 5px;
}
.komelist li::before {
	content: '※';
	color: #4E6990;
	margin-right: 5px;
}

.komelist_wh li::before {
	content: '※';
	color: #fff;
	margin-right: 5px;
}

.komelist_bl li::before {
	content: '※';
	color: var(--main-font-color);
	margin-right: 5px;
}

ol.regnum {
	counter-reset: number;
}

.regnum li {
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: baseline;
	align-items: baseline;
	margin: 0 0 5px;
}

.regnum li::before {
	counter-increment: number;
	content: counter(number)".";
	margin: 0 5px 0 0;
	flex-basis: 2em;
	flex-shrink: 0;
}

.wrap {
	margin: 0;
	padding: 0;
}

.invisible {
	transition: opacity 0.7s ease;
	opacity: 0.0;
}

.visible {
	transition: opacity 0.7s ease;
	opacity: 1.0;
}


/*------------------------------
 Basic Color
----------------------------- */

.red {
	color: #FF0000;
}

.white {
	color: #ffffff;
}

a.text-white{
	color: #fff;
}

a:hover.text-white{
	color: rgba(253,206,13,1.00);
}

/* .col_green {
	color: #75b13b;
} */

.black {
	color: rgba(35,31,32,1.00);
}

.yellow {
	color: rgba(253,206,13,1.00);
}

.gray {
	color: rgba(94,91,88,1.00);
}

.orange {
	color: rgba(251,170,27,1.00);
}

.red {
	color: rgba(237,69,35,1.00);
}

.lightpink {
	color: rgba(244,189,189,1.00);
}

.pink {
	color: rgba(225,129,119,1.00);
}

.blue {
	color: rgba(54,111,168,1.00);
}

.deepblue {
	color: rgba(24,76,132,1.00);
}

/* .bkcol_green {
	background-color: #03994c;
} */

/* .bkcol_green2 {
	background-color: #0b9379;
} */

.bkcol_blue {
	background-color: #015f8a;
}

.bkcol_red {
	background-color: #d41217;
}

.bkcol_orange {
	background-color: #d85a32;
}

.bkcol_white {
	background-color: #fff;
}

.bkcol_black {
	background-color:  rgba(35,31,32,1.00)
}

.bkcol_gray {
	background-color:  rgba(94,91,88,1.00)
}

.bkcol_orange2 {
	background-color:  #ef8a24;
}

.bkcol_red2 {
	background-color:  rgba(237,69,35,1.00)
}

.bkcol_lightpink {
	background-color:  rgba(244,189,189,1.00)
}

.bkcol_pink {
	background-color:  rgba(225,129,119,1.00)
}

.bkcol_blue2 {
	background-color:  rgba(54,111,168,1.00)
}

.bkcol_deepblue {
	background-color:  rgba(24,76,132,1.00)
}

/* はらぺこあおむし（新）で使用 */
.bkcol_green {
	background-color:  var(--main-green-color);
}

.bkcol_green2{
	background-color: var(--sub-green-color);
}

.bkcol_yellow{
	background-color: var(--ac-yellow-color);
}

.bkcol_white2 {
	background-color: var(--main-bgcolor);
}

.col_green{
	color: var(--main-green-color);
}


/*-----------------------
 Margin
-------------------------*/

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

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

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

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

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

.mt10 {
	margin-top: 10px !important;
}

.mt20 {
	margin-top: 20px !important;
}

.mt30 {
	margin-top: 30px !important;
}

.mt40 {
	margin-top: 40px !important;
}

.mt50 {
	margin-top: 40px !important;
}

.mr1 {
	margin-right: 1px !important;
}
.mr2 {
	margin-right: 2px !important;
}
.mr3 {
	margin-right: 3px !important;
}
.mr4 {
	margin-right: 4px !important;
}
.mr5 {
	margin-right: 5px !important;
}
.mr6 {
	margin-right: 6px !important;
}
.mr7 {
	margin-right: 7px !important;
}
.mr8 {
	margin-right: 8px !important;
}
.mr9 {
	margin-right: 9px !important;
}
.mr10 {
	margin-right: 10px !important;
}
.mr15 {
	margin-right: 15px !important;
}
.mr20 {
	margin-right: 20px !important;
}
.mr30 {
	margin-right: 30px !important;
}
.mrb40 {
	margin-right: 40px !important;
	margin-bottom: 40px !important;
}

.ml1 {
	margin-left: 1px;
}
.ml2 {
	margin-left: 2px;
}
.ml3 {
	margin-left: 3px;
}
.ml4 {
	margin-left: 4px;
}
.ml5 {
	margin-left: 5px;
}
.ml6 {
	margin-left: 6px;
}
.ml7 {
	margin-left: 7px;
}
.ml8 {
	margin-left: 8px;
}
.ml9 {
	margin-left: 9px;
}
.ml10 {
	margin-left: 10px;
}
.ml15 {
	margin-left: 15px;
}
.ml20 {
	margin-left: 20px;
}

.pdtb0 {
	padding-top: 0px !important;
	padding-bottom: 0px !important;
}

.pdtb5 {
	padding-top: 5px !important;
	padding-bottom: 5px !important;
}

.pdtb10 {
	padding-top: 10px !important;
	padding-bottom: 10px !important;
}

.pdtb20 {
	padding-top: 20px !important;
	padding-bottom: 20px !important;
}

.pdtb30 {
	padding-top: 30px !important;
	padding-bottom: 30px !important;
}

.pdtb40 {
	padding-top: 40px !important;
	padding-bottom: 40px !important;
}

.pdrl0 {
	padding-right: 0 !important;
	padding-left: 0 !important;
}

.pdrl5 {
	padding-right: 5px !important;
	padding-left: 5px !important;
}

.pdrl10 {
	padding-right: 10px !important;
	padding-left: 10px !important;
}

.pdrl20 {
	padding-right: 20px !important;
	padding-left: 20px !important;
}

.pdrl30 {
	padding-right: 30px !important;
	padding-left: 30px !important;
}

.pdrl40 {
	padding-right: 40px !important;
	padding-left: 40px !important;
}
.pdrl80 {
	padding-right: 80px !important;
	padding-left: 80px !important;
}

.center {
	text-align: center;
	margin-right: auto;
	margin-left: auto;
}

.ta_right {
	text-align: right;
}

/*-----------------------
 Font Size
-------------------------*/

.fs10 {
	font-size: 10px !important;
	font-size: 1.0rem !important;
}

.fs12 {
	font-size: 12px !important;
	font-size: 1.2rem !important;
}

.fs14 {
	font-size: 14px !important;
	font-size: 1.4rem !important;
}

.fs16 {
	font-size: 16px !important;
	font-size: 1.6rem !important;
}

.fs18 {
	font-size: 18px !important;
	font-size: 1.8rem !important;
}

.fs20 {
	font-size: 20px !important;
	font-size: 2rem !important;
}

.fs24 {
	font-size: 24px !important;
	font-size: 2.4rem !important;
}

.fs30 {
	font-size: 30px !important;
	font-size: 3rem !important;
}

.fs45 {
	font-size: 45px !important;
	font-size: 4.5rem !important;
}

.fssm {
	font-size: smaller !important;
}

.fslg {
	font-size: larger !important;
}

.lh15 {
	line-height: 1.5em !important;
}

.lh18 {
	line-height: 1.8em !important;
}

.lh20 {
	line-height: 2em !important;
}

/*-----------------------
 Round
-------------------------*/

.round5 {
	border-radius: 5px;
}

.round10 {
	border-radius: 10px;
}

.round_top10 {
	border-radius: 10px 10px 0 0;
}

.round_bottom10 {
	border-radius: 0 0 10px 10px;
}

/*-----------------------
 Button
-------------------------*/

.css3button_blue,
.css3button_blue2 {
	line-height: 1em;
	padding: 0;
	margin: 0;
}

.css3button_blue a {
	background-color: rgba(60, 72, 89, 0.70);
}

.css3button_blue2 a {
	background-color: rgba(16, 54, 117, 1.00);
}

.css3button_blue a:hover {
	background-color: rgba(60, 72, 89, 0.90);
}

.css3button_blue2 a:hover {
	background-color: rgba(16, 54, 117, 0.80);
}


/* ------------------------
 基本テーブル
------------------------ */

table {
	width: 100%;
	border: 1px solid var(--main-green-color);
	border-collapse: collapse;
	border-spacing: 0;
	padding: 0;
	margin: 0 0 20px;
}

th,
td {
	padding: 10px;
	margin: 0;
	border-top: 0;
	border-right: 0;
	border-left: 1px solid var(--main-green-color);
	border-bottom: 1px solid var(--main-green-color);
	text-align: left;
	vertical-align: top;
	font-weight: normal;
	line-height: 2em;
}

th {
  background-color: var(--sub-green-color);
	color: #fff;
}


/* ------------------------
YouTubeレスポンシブ化
------------------------ */

.yt {
	position: relative;
	width: 100%;
	padding: 56.25% 20% 20px;
	margin: 0;
}

.yt iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}

.yt .pd {
	padding: 0 10%;
}

/* ------------------------
CSS ホバーエフェクト（:hover）で画像の上に文字を出す
------------------------ */

.rcm-box {
	width: 100%;
	background-color: #231F20;
	position: relative;
	overflow: hidden;
}

.rcm-box img {
	display: block;
	width: 100%;
	opacity: 1;
	-webkit-transition: opacity 0.4s, transform 0.4s;
	transition: opacity 0.4s, transform 0.4s;
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
}

.rcm-box:hover img {
	opacity: 0.3;
	-webkit-transform: scale3d(1.2, 1.2, 1);
	transform: scale3d(1.2, 1.2, 1);
}

.rcm-overlay {
	opacity: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	text-align: center;
	-webkit-transition: opacity 0.4s;
	transition: opacity 0.4s;
}

.rcm-box:hover .rcm-overlay {
	opacity: 1;
}

.rcm-contents {
	padding: 0 10px 5px;
	color: red;
	-webkit-transform: scale3d(0, 0, 1);
	transform: scale3d(0, 0, 1);
	-webkit-transition: transform 0.4s, color 0.4s;
	transition: transform 0.4s, color 0.4s;
}

.rcm-box:hover .rcm-contents {
	color: white;
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
}

.rcm-button {
	background: red;
	padding: 5px 30px;
	text-decoration: none;
	-webkit-transition: background 0.4s;
	transition: background 0.4s;
}

.rcm-box:hover .rcm-button {
	background: white;
}

/* ------------------------
画像関連
------------------------ */
.img-bottom0 {
	margin: 0;
	padding: 0;
	vertical-align: bottom;
}

