@charset "utf-8";

* { box-sizing: border-box; }
body {
	background-color: #F7F0D2;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
	font-size: 10px !important;
}
body.menu-open {
	overflow: hidden;
}
a {
	color: #212529;
	text-decoration: none;
}
a:hover {
	color: #E94000;
}
.mt-6 {
  margin-top: 4.5rem !important
}
.clGray { color: #777; }
hr.dot { border: none; border-bottom: dotted 1px #666 }

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: #fff;
	z-index: 10000;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 15px;
	border-bottom: 1px solid #ccc;
}

.logo { margin: 2px 0px; }
@media (max-width: 768px) {
	.logo img { height: 35px; 0}
}
.header-right {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.button-group {
	display: flex;
	gap: 10px;
	margin-bottom: 5px;
}

.button-group .btn-icon {
	width: 16px;
	height: 16px;
	margin-left: 6px;
	vertical-align: middle;
	}

.button-group button {
  padding: 6px 16px;
  border: none;
  border-radius: 20px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  font-size: 1.3em;
  transition: opacity 0.3s ease;
}

.button-group button:hover {
  opacity: 0.7;
}

.button-single button {
  padding: 6px 26px;
  border: none;
  border-radius: 20px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.button-single button:hover {
  opacity: 0.7;
}

.btn1 { background: #1997b4; }
.btn2 { background: #e94000; }

.menu-group {
	display: flex;
	gap: 10px;
}

.menu-group a {
  position: relative;
  text-decoration: none;
  color: #000;
  font-size: 1.4em;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.menu-group a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: #FA3E12;
  transition: width 0.3s ease;
}

.menu-group a:hover {
	color: #FA3E12;
}

.menu-group a:hover::after {
  width: 100%;
}


.hamburger {
	display: none;
	width: 30px;
	height: 24px;
	position: relative;
	cursor: pointer;
	z-index: 10001;
    }

.hamburger div {
	position: absolute;
	height: 3px;
	background: #000;
	width: 100%;
	transition: all 0.4s ease;
	left: 0;
    }

.hamburger div:nth-child(1) { top: 0; }
.hamburger div:nth-child(2) { top: 10px; }
.hamburger div:nth-child(3) { top: 20px; }

.hamburger.active div:nth-child(1) {
	transform: rotate(45deg);
	top: 10px;
    }

.hamburger.active div:nth-child(2) {
	opacity: 0;
    }

.hamburger.active div:nth-child(3) {
	transform: rotate(-45deg);
	top: 10px;
    }

.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(247,240,210,0.9);
	transform: translateY(-100%);
	opacity: 0;
	pointer-events: none;
	transition: transform 0.4s ease, opacity 0.4s ease;
	z-index: 9999;
	padding: 80px 20px 100px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
    }

.overlay.active {
	transform: translateY(0);
	opacity: 1;
	pointer-events: auto;
    }

.overlay a {
	/*text-decoration: none;
	color: #000;
	font-size: 1.5em;
	margin-bottom: 20px;*/
	display: block;
	width: 100%;
	padding: 15px 10px;
	text-decoration: none;
	color: #000;
	font-size: 18px;
	margin-bottom: 0;
	transition: background 0.3s ease, color 0.3s ease;
    }

main { padding: 82px 0px 150px; }

.container {}
.content {
	max-width: 1100px;
	margin: 0 auto;
	position: relative;
	}


/* フッター*/
footer {
	width: 100%;
	font-size: 1.2em;
	line-height: 1.6;
	color: #333;
    }

.footer-content {
	background-color: #eeeeee;
	padding: 50px 20px;
	text-align: center;
    }

.footer-content img {
	max-width: 100%;
	height: auto;
	margin: auto;
    }

.footer-meta {
	background-color: #A7A7A7;
	color: #fff;
	text-align: center;
	padding: 15px 10px;
	width: 100%;
    }

.footer-menu {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 10px;
    }

.footer-menu a {
	color: #fff;
	text-decoration: none;
	font-size: 12px;
    }

.footer-menu a:hover {
	text-decoration: underline;
    }

.copyright {
	font-size: 10px;
	color: #efefef;
	margin: 0;
    }


/*.fixed-bottom-buttons {
	display: none;
    }*/
.fixed-bottom-buttons {
  display: none; /* 初期は非表示（PCでもスマホでも） */
  position: fixed;
  bottom: -80px;
  left: 0;
  width: 100vw;
  z-index: 10000;
  justify-content: space-between;
  opacity: 0;
  transition: all 0.4s ease;
  pointer-events: none;
}

.fixed-bottom-buttons.show {
  bottom: 0;
  opacity: 1;
  pointer-events: auto;
}

.fixed-bottom-buttons a {
	flex: 1;
	text-align: center;
	padding: 14px 0;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 6px;
	font-size: 1.4em;
    }
.fixed-bottom-buttons .btn1 {
	background: #1997b4;
    }
.fixed-bottom-buttons .btn2 {
	background: #e94000;
    }
.fixed-bottom-buttons .icon {
	width: 18px;
	height: 18px;
    }

@media (max-width: 768px) {
	.header-right {
		display: none;
	}

	.hamburger {
		display: flex;
		flex-direction: column;
		justify-content: center;
      }

	main { padding: 60px 0px; }
	
	.fixed-bottom-buttons {
		display: flex;
	}
	/*.fixed-bottom-buttons {
		display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100vw;
        z-index: 10000;
        justify-content: space-between;
      }*/

	/*footer {
		margin-bottom: 60px;
      }*/
}


/*--------------------------------------------------*/

.backColoer {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	/*max-height: 740px;*/
	height: 740px;
	background: #F3A481;
	z-index: -1;
}
@media (max-width: 992px) {
	.backColoer {
		height: 600px;
	}
}
@media (max-width:768px) {
	.backColoer {
		height: 450px;
	}
}
@media (max-width:576px) {
	.backColoer {
		max-height: 340px;
		min-height: 300px;
	}
}

.content img.main {
	max-width: 900px;
	width: 100%;
	margin: 0 auto;
	position: relative;
	z-index: 110;
	}
.content img.leftCloud {
	position: absolute;
	top: 600px;
	left: -180px;
	z-index: 100;
	}
.content img.rightCloud {
	position: absolute;
	top: 600px;
	right: -150px;
	z-index: 100:
}
@media (max-width: 992px) {
	.content img.leftCloud {
		top: 500px;
		left: -300px;
		}
	.content img.rightCloud {
		top: 500px;
		right: -260px;
	}
}
@media (max-width: 768px) {
	.content img.leftCloud {
		display: none;
		}
	.content img.rightCloud {
		display: none;
	}
}

.imgPc { display: block !important; }
.imgSp { display: none !important; }
@media (max-width: 768px) {
	.imgPc { display: none !important; }
	.imgSp { display: block !important; width: 100%; }
}

.infoBox {
	background: rgba(255,255,255,0.75);
	padding: 65px 25px;
	border-radius: 10px
}
.infoBox img {
	width: 100%;
	max-width: 1000px;
	margin: auto;
}
@media (max-width: 768px) {
	.infoBox {
		padding: 25px 10px;
	}
}

.topics-section {
	text-align: center;

}

.topics-section h2 {
	color: #E15520;
	font-size: 28px;
	font-weight: 600;
	margin: 0;
	letter-spacing: 2px;
	display: inline-block;
	position: relative;
}

.topics-section h2::after {
	content: "";
	display: block;
	width: 4em;
	height: 2px;
	background: #666;
	margin: 3px auto 0;
}

.topics-section p {
      margin-top: 6px;
      font-size: 1.3em;
      color: #333;
		font-weight: 600;
}

.topicsBox {
	background: rgba(255,255,255,0.75);
	padding: 30px 30px 15px;
	border-radius: 10px
}
@media (max-width: 768px) {
	.topicsBox {
		padding: 15px 0px 1px;
	}
}
.topics-list {
	max-width: 100%;
	padding: 0 20px;
}

.topic-item {
	background-color: #f2f2f2;
	padding: 15px 20px;
	border-radius: 10px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 15px;
	font-size: 14px;
	color: #333;
}

.topic-date {
	color: #999;
	margin-right: 20px;
	min-width: 100px;
}

.topic-text {
	color: #333;
}

@media (max-width: 600px) {
  .topics-section {
    padding: 30px 0 15px;
  }

  .topics-section h2 {
    font-size: 22px;
  }

  .topics-section h2::after {
    width: 30px;
  }

  .topics-section p {
    font-size: 12px;
    margin-top: 6px;
  }

  .topics-list {
    padding: 0 10px;
  }

  .topic-item {
    padding: 12px 15px;
    margin-bottom: 10px;
    font-size: 13px;
    flex-direction: column;
    align-items: flex-start;
  }

  .topic-date {
    margin-bottom: 5px;
    min-width: auto;
  }
}
/*-----------------------------------------*/
.contTitle {
	background: #F3A481;
}
.contTitle .title {
	height: 240px;
	background: url("../img/cnt_img1.png") no-repeat right bottom;
}
.contTitle .title h1 {
	font-size: 30px;
	line-height: 240px;
	font-weight: 600;
	color: #fff;
}
@media (max-width: 768px) {
	.contTitle .title {
		height: 100px;
		background: none;
	}
	.contTitle .title h1 {
		font-size: 22px;
		line-height: 100px;
		text-align: center;
		font-weight: 600;
		color: #fff;
	}
}

.contBox {
	background: rgba(255,255,255,0.6);
	padding: 30px;
	border-radius: 10px;
}
@media (max-width: 768px) {
	.contBox {
		padding: 25px 10px;
	}
}
.contBox h2 {
	font-size: 2.4em;
	border-left: 4px solid #DD5E28;
    padding-left: 8px;
	color: #DD5E28;
	font-weight: 600;
}
.contBox p.text {
	font-size: 1.6em;
	line-height: 2.4em;
}
.contBox p.text2 {
	font-size: 1.8em;
	font-weight: 600;
}
.contBox p.text2 span {
	font-size: 0.8em;
}
p.gdSubtitle {
	font-weight: 700;
	font-size: 1.2em;
	margin-bottom: 0.2em;
}
table.glTable {
	width: 100%;
}
table.glTable tr {
	display: block;
	margin-bottom: 10px;
}
table.glTable td {
	padding: 10px 20px 10px 25px;
	font-size: 1.6em;
}
table.glTable th {
	font-size: 1.6em;
	min-width: 8em;
	background-color: #1591B7;
	color: #fff;
	text-align: center;
}
.exaText {
	background-color: #EEEEEE;
	padding: 10px;
	font-size: 0.9em;
	margin-bottom: 0px;
}
table.glTable th.bgGray {
	background-color: #B5B5B5;
}
@media screen and (max-width: 576px) {
	.glTable tr {
		display: block;
		margin-bottom: 10px;
	}
	.glTable th, .glTable td {
		display: block;
		width: 100%;
	}
	.glTable th {
		padding: 5px;
	}
	.glTable td {
		padding: 10px 0px !important;
	}
}

ul.info-text {
	padding-left: 1em;
	font-size: 1.5em;
}
ul.info-text li {
	position: relative;
	list-style-type: none!important;
	line-height: 2.2;
	vertical-align: middle;
	padding-left: 10px;
}
ul.info-text li:before {
	display:inline-block; 
	vertical-align: middle;
	content:'';
	width:1em;
	height: 1em;
	background: #DD5E28;
	border-radius: 50%;
	margin-right: 0.5em;
	margin-left: -1.5em;
}
ul.info-text li.fcOrange {
	color: #DD5E28;
	font-weight: 700;
}

.waitBox {
	background: rgba(255, 255, 255, 0.6);
	padding: 280px 0;
	border-radius: 10px;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.waitBox::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 260px;
	height: 177px;
	background: url("../img/wait_icon1.png") no-repeat center;
	background-size: contain;
	transform: translate(-50%, -50%);
	z-index: 0;
}
.waitText {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #555;
	font-size: 20px;
	font-weight: bold;
	z-index: 1;
}
/* スケジュール リンクエリア-------*/
.schedulWrap {
	position: relative;
	width: 100%;
	max-width: 1040px;
	margin: 0 auto;
}
.click-area {
	position: absolute;
}
.area1 { left: 17.9%; top: 15.5%; width: 79%; height: 9.5%; }
/*.area2 { left: 26%; top: 19%; width: 70%; height: 11%; }
.area3 { left: 26%; top: 30%; width: 70%; height: 11%; }
.area4 { left: 26%; top: 57%; width: 70%; height: 12%; }
.area5 { left: 26%; top: 69%; width: 70%; height: 12%; }*/
.click-area {
	display: block;
	/*background: rgba(0,200,255,0.8);*/
	background: none;
}
@media (max-width: 768px) {
	.area1 { left: 11%; top: 29%; width: 86%; height: 8%; }
	/*.area2 { left: 10%; top: 33.5%; width: 88%; height: 9.0%; }
	.area3 { left: 10%; top: 42.5%; width: 88%; height: 10%; }
	.area4 { left: 10%; top: 65.5%; width: 88%; height: 10.5%; }
	.area5 { left: 10%; top: 76%; width: 88%; height: 10.5%; }*/
}