/* ダミー画像 */
.dummy_img {
	border: 1px solid #AAA;
	position: relative;
	background-color: #EDEDED;
	height: 200px;
	overflow: hidden;
	/* text-align: center; */
}
.dummy_img p {
	text-align: center;
	position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
	line-height: 1.5;
	font-size: 1.25rem;
	width: 100%;
	background-color: #FFFFFFAA;
	z-index: 5;
	padding: 10px;
}
.dummy_img img {
	opacity: 0.75;
	min-height: 100%;
	min-width: 100%;
}

/* 文字色 */
.fc_red {
	color: #FF3030;
}

/* PC・スマホ共通 */
body {
	color:#333;
	line-height: 1;
	font-family: 'Noto Sans JP', "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "A-OTF 新ゴ Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

/* 見出し */
.h3_A {
	font-size: 3rem;
	font-weight: 600;
	padding: 10px;
	margin-bottom: 50px;
	padding-left: 12.5%;
	position: relative;
	color: #FFF;
}

@media screen and (max-width: 800px) {
	.h3_A {
		font-size: 2.5rem;
	}
}

@media screen and (max-width: 600px) {
	.h3_A {
		font-size: 1.5rem;
	}
}

.h3_A img {
	position: absolute;
	left: 10px;
	bottom: 10px;
	width: 7.5%;
}

.h4_A {
	font-size: 1.75rem;
	margin-bottom: 25px;
	background-color: rgba(255, 255, 255, 0.75);
	padding: 25px 0;
	text-align: center;
}

/* コンテンツ冒頭ボックス */
.initial_box {
	margin-bottom: 50px;
}
.initial_box .text {
	line-height: 1.75;
	margin-top: 25px;
	width: 65%;
	float: right;
	margin-right: 25px;
	margin-top: -200px;
	position: sticky;
	padding: 25px;
	background-color: rgba(255, 255, 255, 0.9);
	/* border: 1px solid #aaa; */
}

@media screen and (max-width: 1000px) {
	.initial_box .text {
		width: 100%;
		float: none;
		margin-top: 0;
	}
}

.initial_box .text p {
	line-height: 1.75;
}
.initial_box h4 {
	margin: 10px 0;
	font-size: 1.25rem;
	padding: 10px;
	color: #FFF;
	background-color: #333;
}
.initial_box .text b {
	color: #a1933a;
	font-size: 1.5rem;
	font-weight: 600;
	display: block;
	text-align: center;
	margin-top: 25px;
}


/* ミニボックス */
.mini_box li {
	float: left;
	width: 49%;
	margin-right: 2%;
	margin-bottom: 25px;
	border: 1px solid #333;
	padding: 25px;
	background-color: #FFF;
}

@media screen and (max-width: 800px) {
	.mini_box li {
		float: none;
		width: 98%;
		margin-left: 1%;
		margin-right: 1%;
	}
}

.mini_box li:nth-child(2n) {
	margin-right: 0;
}
.mini_box li:nth-child(2n+1) {
	clear: both;
}
.mini_box li h5 {
	margin: 10px 0;
	font-size: 1.25rem;
	padding: 10px 10px 10px 15%;
	color: #FFF;
	background-color: #333;
	position: relative;
}
.mini_box li h5 img {
	width: 10%;
	position: absolute;
	left: 10px;
	bottom: 10px;
}
.mini_box li .image {
	margin-bottom: 25px;
}
.mini_box li .text {
	line-height: 1.5;
}

/*アニメマーカー*/

.marker.active{
    background-position: -100% .8em;
}

.marker_ani {
    background-repeat: repeat-x;
    background-size: 200% 1em;
    background-position: 0 0.5em;
    transition: all 2s ease;
    font-weight: bold;
}
.mk_orange_ani {
	background-image: -webkit-linear-gradient(left, transparent 10%, rgb(255, 168, 78) 80%);
	background-image: -moz-linear-gradient(left, transparent 10%, rgb(255, 168, 78) 80%);
	background-image: -ms-linear-gradient(left, transparent 10%, rgb(255, 168, 78) 80%);
	background-image: -o-linear-gradient(left, transparent 10%, rgb(255, 168, 78) 80%);
	background-image: linear-gradient(left, transparent 10%, rgb(255, 168, 78) 80%);
}
.mk_red_ani {
	background-image: -webkit-linear-gradient(left, transparent 10%, rgb(255, 78, 78) 80%);
	background-image: -moz-linear-gradient(left, transparent 10%, rgb(255, 78, 78) 80%);
	background-image: -ms-linear-gradient(left, transparent 10%, rgb(255, 78, 78) 80%);
	background-image: -o-linear-gradient(left, transparent 10%, rgb(255, 78, 78) 80%);
	background-image: linear-gradient(left, transparent 10%, rgb(255, 78, 78) 80%);
}

/* 固定マーカー */
.mk_orange {
	display: inline-block;
	background: linear-gradient(transparent 60%, #FACD89 60%);
	text-decoration: none;
}
.mk_pink {
	display: inline-block;
	background: linear-gradient(transparent 60%, #F9A3CF 60%);
	text-decoration: none;
}


/*共通：モーダルウィンドウ*/
.popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  max-width: 100vw;
  height: 100%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: .6s;
}
.popup.is-show {
  opacity: 1;
  visibility: visible;
}
.popup .popup-inner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: 90%;
  max-width: 1200px;
	max-height: 90%;
	overflow-y: auto;
  padding: 25px;
  background-color: #fff;
  z-index: 1000;
	color: #333;
}
.popup .popup-inner h3 {
	text-align: center;
	font-size: 1.25rem;
	font-weight: 600;
	margin-bottom: 50px;
	padding: 10px;
	border: 2px solid #333;
}
.popup .popup-inner h4 {
	margin-bottom: 25px;
	line-height: 1.5;
	font-weight: 600;
}
.popup .popup-inner .text {
	margin-bottom: 50px;
	line-height: 1.5;
}
.popup .popup-inner .name {
	text-align: right;
}

.popup .close-btn_bottom {
    text-align: right;
    margin-top: 20px;
}
.popup .close-btn_bottom img {
    width: 5%;
}
.popup .close-btn i {
  font-size: 20px;
}
.popup .black-background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.8);
  z-index: 1;
  cursor: pointer;
}
