@charset "utf-8";

/* ==================================================
PC
================================================== */

/* ========== トップページ ========== */

/* 非表示 */
#footstep_wrap {
	display: none !important;
}

/* スライドショー */
#top_photo_wrap {
	overflow: hidden;
}
#top_photo {
	width: 1080px;
	margin: 0px auto;
}

#top_photo_list .photo img {
	width: 100%;
	height: auto;
	vertical-align: top;
}
#top_photo_list .photo a {
	display: block;
	color: inherit;
	text-decoration: none;
}
#top_photo_list .photo span.photo_caption {
	display: block;
	background: #333333;
	color: #ffffff;
	padding: 5px 20px;
}
#top_photo_list .photo span.photo_caption:empty {
	padding: 0px;
}
#top_photo_list .photo span.photo_caption span {
	color: inherit !important;
}

/* スライドショー（3枚表示） */
#top_photo.triple #top_photo_list {
	width: calc(1080px * 3);
	position: relative;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

/* スライドコントロールボタン */
*[id*="_control_box"] {
	margin: 10px 0px 0px;
	padding: 10px 0px;
}
*[id*="_control_box"] button[id*="_control_"] {
	display: inline-block;
	vertical-align: middle;
	margin: 0px 5px 0px 0px;
	padding: 0px;
	width: 30px;
	height: 30px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 100%;
	border: 1px solid #ffffff;
	color: #ffffff;
	background-color: #333333;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 8px auto;
	text-align: left;
	text-indent: -9999em;
	overflow: hidden;
}
*[id*="_control_box"] button[id*="_control_prev"] {
	background-image: url("/img/top/photo/btn_slide_prev.png");
}
*[id*="_control_box"] button[id*="_control_next"] {
	background-image: url("/img/top/photo/btn_slide_next.png");
}
*[id*="_control_box"] button[id*="_control_pause"] {
	background-image: url("/img/top/photo/btn_slide_stop.png");
}
*[id*="_control_box"] button[id*="_control_play"] {
	display: none;
	background-image: url("/img/top/photo/btn_slide_play.png");
}

/* スライドナビゲーションボタン */
*[id*="_control_navigation"] {
	display: inline-block;
	vertical-align: middle;
	margin-right: 20px;
}

ul.slick-dots {
	display: inline-block;
	vertical-align: middle;
	margin: 0px;
	padding: 0px;
	list-style: none;
}
ul.slick-dots li {
	display: inline-block;
	vertical-align: middle;
	margin: 0px 3px;
	padding: 2px;
}
ul.slick-dots li button {
	display: block;
	margin: 0px;
	padding: 0px;
	width: 20px;
	height: 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 100%;
	text-indent: -9999em;
	text-align: left;
	overflow: hidden;
	border: 1px solid #ffffff;
	background: #cccccc;
	color: #333333;
}
ul.slick-dots li.slick-active button {
	background: #333333;
	color: #ffffff;
}

/* バナー広告 */
#footer_banner {
	clear: both;
	width: var(--content-width, 1080px);
	margin: 0px auto 60px;
}
#footer_banner ul.banner_list {
	margin: 0px;
	padding: 0px;
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 20px;
}
#footer_banner ul.banner_list li {
	width: 200px;
}
#footer_banner ul.banner_list li img {
	width: 100%;
	height: auto;
	vertical-align: top;
}

.banner_text {
	display: block;
	padding: 10px;
	text-align: left;
}
.banner_text span {
	display: block;
}
.banner_text span:nth-child(2n) {
	font-size: var(--fontsize-main-small, 1.5rem);
}

/* 新着情報 */
.section_information {
	background: transparent;
	margin: 40px 0px;
	padding: 0px;
	max-width: 1340px;
	margin: 0 auto;
	position: relative;
}
.section_information h2 {
	margin: 0px;
	padding: 0px;
	border: none;
	border-radius: 0;
	background: none;
	font-size: 3rem;
}

.section_information p.no_data {
	margin: 0px;
	padding: 20px 0px;
}

.section_information_list ul {
	margin: 0px;
	padding: 25px 0px 12px;
	list-style: none;
	display: block;
}
.section_information_list ul li {
	width: 100%;
	display: table;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0px 0px 20px;
	padding-bottom: 20px;
	padding-right: 60px;
	border-bottom: 1px solid #b9ad9c;
	font-weight: bold;
}
.section_information_list ul li > span {
	display: table-cell;
	vertical-align: top;
}
.section_information_list ul li > span.article_date {
	width: 12em;
	font-size: var(--fontsize-detail-small, 1.6rem);
	padding-top: 0.3em;
	font-weight: bold;
}

.section_information_list img.icon_new {
	/* vertical-align: baseline; */
	/* margin-left: 0.5em; */
	display: inline-block;
	vertical-align: middle;
	margin-left: 20px;
}

/* 新着情報（文字拡大時） */
.font_size_changed .section_information_list ul li,
.font_size_changed .section_information_list ul li > span {
	display: block;
}
.font_size_changed .section_information_list ul li > span.article_date {
	width: auto;
	padding-top: 0px;
}

/* 新着情報（一覧 / RSS） */
.section_information_list div.link_box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: flex-end;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 20px;
}
.section_information_list div.link_box span {
	display: inline-block;
	vertical-align: top;
	width: 100%;
	max-width: 179px;
}
.section_information_list div.link_box span a {
	display: block;
	border: 1px solid transparent;
	border-radius: 0;
	background: #ffffff;
	color: #333333;
	font-size: var(--fontsize-main-small, 1.5rem);
	line-height: 1.6rem;
	text-decoration: none;
	margin: 0px;
	text-align: center;
	padding: 10px 0;
}
.section_information_list div.link_box span a:hover,
.section_information_list div.link_box span a:focus {
	text-decoration: underline;
}

/* take */

.info_area {
	color: #fff;
}

.info_grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.info_col {
	max-width: 210px;
}
.info_col2 {
	width: 100%;
}

.info_block {
}

/* 見出し（spanなので block 化） */
.info_heading {
	display: block;
	font-size: 2rem;
	font-weight: bold;
	padding-left: 28px;
	padding-bottom: 5px;
	border-bottom: 1px solid #fff;
	margin-bottom: 4px;
	position: relative;
	line-height: 1;
}

/* アイコン用（後で background-image） */
.info_heading::before {
	content: "";
	width: 32px;
	height: 32px;
	position: absolute;
	left: 0;
	top: 0;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 10px;
	left: 0px;
	transform: translate(0%, -50%);
}

/* 種別 */
.info_heading.time::before {
	background: url(/img/sites/rekishi/opened.png) no-repeat left;
}

.info_heading.close::before {
	background: url(/img/sites/rekishi/kyuukan.png) no-repeat left;
}

.info_heading.price::before {
	background: url(/img/sites/rekishi/yen.png) no-repeat left;
}

/* テキスト */
.info_text {
	margin-top: 0;
	font-size: 1.6rem;
	line-height: 1.7;
	margin-bottom: 11px;
}

.price_list {
	font-size: 1.6rem;
	line-height: 1.8;
	list-style: none;
	padding: 0;
	margin: 0;
}

.price_list li {
	margin-bottom: 8px;
}

.schedule {
	padding: 35px 0;
	gap: 25px;
	justify-content: center;
	display: flex;
	background-color: #896523;
	align-items: flex-start;
	margin-bottom: 30px;
}

/* 背景エリア */
.procedure_banner {
	background: url(/img/sites/rekishi/common-bg.png) no-repeat center;
	background-size: cover;
	padding: 30px 20px;
	margin-bottom: 40px;
}

/* 半透明ボックス */
.procedure_banner_inner {
	max-width: 927px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 66px;
	background-color: rgba(255, 255, 255, 0.56);
	border-radius: 16px;
	padding: 20px 0px;
}

/* 左テキスト */
.procedure_banner_title span {
	font-size: 3rem;
	font-weight: bold;
	color: #333;
	display: block;
	font-family:
		"Hiragino Mincho Pro", "HiraMinProN-W3", "ヒラギノ明朝 Pro W3", Century, "BIZ UDPMincho", "游明朝", "Yu Mincho",
		"游明朝体", "YuMincho", serif;
}

/* 右ボタン群 */
.procedure_banner_buttons {
	flex-direction: column;
	gap: 12px;
	width: 100%;
	max-width: 506px;
	display: flex;
}

/* ボタン共通 */
.procedure_btn {
	display: block;
	text-align: center;
	background-color: #2f2f2f;
	color: #ffffff !important;
	text-decoration: none;
	font-size: 2rem;
	font-weight: bold;
	letter-spacing: 0.04em;
	padding: 5px 0px;
	border-radius: 999px;
	transition: opacity 0.3s;
	width: 100%;
	max-width: 245px;
}

/* メインボタン */
.procedure_btn.is-primary {
	background-color: #8f3a36;
	max-width: 100%;
}

/* hover */
.procedure_btn:hover {
	opacity: 0.8;
}

.procedure_flex {
	display: flex;
	justify-content: space-between;
}

.top_slideshow .swiper-pagination {
	counter-reset: num;
}
.top_slideshow .swiper-pagination-bullet {
	width: 2rem;
	height: 2rem;
	counter-increment: num;
	background: #8a2e31;
	color: #fff;
	opacity: 1;
}
.top_slideshow .swiper-pagination-bullet::before {
	content: counter(num);
	font-size: 1.2rem;
	position: relative;
	top: -2px;
}
.top_slideshow .swiper-pagination-bullet-active {
	background: #fff;
	color: #000;
}

/* セクション */
.topics_section {
	padding: 80px 0px;
	max-width: 1340px;
	margin: 0 auto;
	margin-bottom: 80px;
}

/* 共通インナー（←これが肝） */
.topics_inner {
}

/* 見出し */
.topics_heading {
	margin-bottom: 24px;
}

.topics_topic {
	display: block;
	font-size: 2rem;
	color: #726350;
	line-height: 1;
}

.topics_title {
	display: block;
	font-size: 3rem;
	color: #0e120f;
	font-weight: bold;
	margin: 0;
	letter-spacing: 0.32em;
}

/* カード一覧 */
.topics_list {
	display: flex;
	justify-content: space-between;
}

/* カード */
.topics_card {
	width: 259px;
	height: 266px;
	text-decoration: none !important;
	border-radius: 16px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	flex-shrink: 0;
	text-decoration: none;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	width: calc((100% - 40px) / 5);
}

.topics_card:hover {
	opacity: 0.75;
}

/* 画像内テキスト */
.topics_card_text {
	font-size: 2.6rem;
	color: #ffffff;
	text-align: center;
	line-height: 1.3;
	font-family:
		"Hiragino Mincho Pro", "HiraMinProN-W3", "ヒラギノ明朝 Pro W3", Century, "BIZ UDPMincho", "游明朝", "Yu Mincho",
		"游明朝体", "YuMincho", serif;
	position: relative;
	z-index: 1;
	text-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
}

.bg_kaho {
	background: url(/img/sites/rekishi/kaho.png) no-repeat center;
}

.bg_ito {
	background: url(/img/sites/rekishi/ito.png) no-repeat center;
}

.bg_shoyu {
	background: url(/img/sites/rekishi/shoyu.png) no-repeat center;
}

.bg_digital {
	background: url(/img/sites/rekishi/digital.png) no-repeat center;
}

.bg_edu {
	background: url(/img/sites/rekishi/kyouiku.png) no-repeat center;
}

/* オーバーレイ */
.topics_card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.25);
}

#important_noticest_area {
	max-width: 1340px;
	margin: 0 auto;
}

.event {
	max-width: 1340px;
	margin: 0 auto;
	padding: 80px 0 80px;
}

/* 見出し */
.event_heading {
}

.event_heading_en {
	display: block;
	font-size: 2rem;
	color: #726350;
	line-height: 1;
}

.event_heading_jp {
	font-size: 3rem;
	color: #0e120f;
	font-weight: bold;
	margin: 0;
	margin-bottom: 30px;
	letter-spacing: 0.04em;
}

/* ★ グリッド */
.event_grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 48px;
}

/* カード */
.free_box {
	background: #ffffff;
}

.free_box img {
	width: 100% !important;
	height: auto;
	display: block;
}

.free_box p {
	margin: 0;
	padding: 0px 0px;
	font-size: 1.6rem;
	color: #333;
}

.free_box p:last-child a {
	font-size: 1.6rem;
	color: #333;
	text-decoration: underline;
}

.free_box p:last-child a:hover {
	text-decoration: none;
}

/* ボタン */
.event_buttons {
	display: flex;
	justify-content: flex-end;
	gap: 7px;
	margin-top: 33px;
}

.event_btn {
	width: 100%;
	max-width: 179px;
	background-color: #a54a3f;
	padding: 5px 0;
	color: #ffffff !important;
	font-size: 1.6rem;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-weight: bold;
}

/* セクション全体 */
.course_section {
	max-width: 1344px;
	margin: 0 auto;
	padding: 60px 0 40px;
}

/* 見出し */
.course_heading {
	margin-bottom: 0px;
}

.course_heading_en {
	display: block;
	font-size: 2rem;
	color: #726350;
	line-height: 1;
}

.course_heading_jp {
	display: block;
	font-size: 3rem;
	color: #0e120f;
	font-weight: bold;
}

/* 一覧 */
.course_list {
	margin-bottom: 30px;
}

/* 各行 */
.tpl_site_index .detail_free {
	display: flex !important;
	grid-template-columns: 180px 160px 1fr;
	align-items: center;
	gap: 50px;
	padding: 31px 0 20px !important;
	margin-bottom: 0px !important;
	border-bottom: 1px solid #c8bfb2;
}

/* 日付 */
.tpl_site_index .detail_free p:nth-of-type(1) {
	font-size: 1.6rem;
	color: #333;
	margin: 0;
	width: 100%;
	max-width: max-content;
}

/* 種別ラベル */
.tpl_site_index .detail_free p:nth-of-type(2) {
	margin: 0;
}

.tpl_site_index .detail_free p:nth-of-type(2)::before {
	content: attr(data-label);
}

.tpl_site_index .detail_free p:nth-of-type(2) {
	background-color: #8a6a45;
	color: #ffffff;
	font-size: 1.6rem;
	text-align: center;
	padding: 5px 0px;
	width: max-content;
	width: 100%;
	max-width: 159px;
}

/* タイトル */
.tpl_site_index .detail_free p:nth-of-type(3) {
	margin: 0;
	font-size: 1.8rem;
}

.tpl_site_index .detail_free a {
	font-size: 1.6rem;
	color: #333;
	text-decoration: underline;
}

.tpl_site_index .detail_free a:hover {
	text-decoration: none;
}

/* ボタン */
.tpl_site_index.course_button_wrap {
	display: flex;
	justify-content: flex-end;
	margin-top: 32px;
}

.tpl_site_index .course_button {
	width: 100%;
	max-width: 179px;
	background-color: #a54a3f;
	color: #ffffff;
	padding: 5px 0;
	font-size: 1.6rem;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-weight: bold;
}

.swiper-stop-text {
	color: #333333;
	display: block;
}

button.swiper-button-prev,
button.swiper-button-next {
	display: none !important;
}

button.swiper-button-start,
button.swiper-button-stop {
	position: relative !important;
	top: inherit !important;
	bottom: 0px !important;
	left: -7% !important;
	transform: translate(-50%, 0%) !important;
	background-color: #ab272d !important;
	width: 2.4rem !important;
	height: 2.4rem !important;
	box-shadow: none !important;
	z-index: 11 !important;
	text-decoration: none !important;
}
button.swiper-button-stop {
	background: url(/img/sites/rekishi/stop.png) no-repeat center !important;
}
button.swiper-button-stop::after {
	display: none !important;
}

button.swiper-button-start span,
button.swiper-button-stop span {
	width: max-content;
	display: block;
	color: #333333;
	font-size: 1.2rem;
	position: relative;
	left: 23px;
	text-decoration: none !important;
}

.swiper-pagination {
	left: 51px !important;
	margin-top: 17px !important;
}

.top_slideshow .swiper-pagination-bullet {
	width: 2.4rem;
	height: 2.4rem;
	counter-increment: num;
	background: #ab272d;
	margin: 0 3px !important;
	color: #fff;
}

.top_slideshow .swiper-pagination-bullet-active {
	background: #fff;
	color: #ab272d;
	border: 1px solid #ab272d;
}

.swiper-control-wrap {
	position: absolute;

	top: 104%;

	left: 49.5%;

	transform: translate(-50%, -50%);

	z-index: 2;

	display: flex;

	align-items: center;
}

.swiper {
	padding-bottom: 4rem !important;
	overflow: inherit !important;
}

.swiper-container {
	overflow: inherit !important;
}

button.swiper-button-prev,
button.swiper-button-next {
	position: relative !important;
}

.section_information_list img.icon_new {
	/* vertical-align: baseline; */
	/* margin-left: 0px; */
	/* position: absolute; */
	/* top: 50%; */
	/* left: 220px; */
	/* transform: translate(-50%, -50%); */
	/* width: 36px; */
	/* height: auto; */
}

.section_information .link_rss {
	display: none !important;
}
.section_information .link_ichiran a {
	width: 179px;
	background-color: #a54a3f !important;
	color: #ffffff !important;
	font-size: 1.6rem !important;
	border-radius: 12px !important;
	display: flex !important;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-weight: bold;
}

.info_sns {
	position: absolute;
	top: 12px;
	right: 0;
	display: flex;
	gap: 20px;
}

.info_sns a {
}

.event .free_box > :nth-child(2) {
	padding: 18px 13px 0 13px;
}

.event .free_box p:last-child {
	padding: 4px 13px 40px 13px;
	font-size: 1.8rem;
}

.tpl_site_index #main_body {
	width: 100%;
	max-width: 1340px;
	margin: 0 auto;
	box-sizing: border-box;
}

/* ==================================================
PC
================================================== */

/* ========== トップページ ========== */

/* 非表示 */
#footstep_wrap {
	display: none !important;
}

/* スライドショー */
#top_photo_wrap {
	overflow: hidden;
}
#top_photo {
	width: 1080px;
	margin: 0px auto;
}

#top_photo_list .photo img {
	width: 100%;
	height: auto;
	vertical-align: top;
}
#top_photo_list .photo a {
	display: block;
	color: inherit;
	text-decoration: none;
}
#top_photo_list .photo span.photo_caption {
	display: block;
	background: #333333;
	color: #ffffff;
	padding: 5px 20px;
}
#top_photo_list .photo span.photo_caption:empty {
	padding: 0px;
}
#top_photo_list .photo span.photo_caption span {
	color: inherit !important;
}

/* スライドショー（3枚表示） */
#top_photo.triple #top_photo_list {
	width: calc(1080px * 3);
	position: relative;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

/* スライドコントロールボタン */
*[id*="_control_box"] {
	margin: 10px 0px 0px;
	padding: 10px 0px;
}
*[id*="_control_box"] button[id*="_control_"] {
	display: inline-block;
	vertical-align: middle;
	margin: 0px 5px 0px 0px;
	padding: 0px;
	width: 30px;
	height: 30px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 100%;
	border: 1px solid #ffffff;
	color: #ffffff;
	background-color: #333333;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 8px auto;
	text-align: left;
	text-indent: -9999em;
	overflow: hidden;
}
*[id*="_control_box"] button[id*="_control_prev"] {
	background-image: url("/img/top/photo/btn_slide_prev.png");
}
*[id*="_control_box"] button[id*="_control_next"] {
	background-image: url("/img/top/photo/btn_slide_next.png");
}
*[id*="_control_box"] button[id*="_control_pause"] {
	background-image: url("/img/top/photo/btn_slide_stop.png");
}
*[id*="_control_box"] button[id*="_control_play"] {
	display: none;
	background-image: url("/img/top/photo/btn_slide_play.png");
}

/* スライドナビゲーションボタン */
*[id*="_control_navigation"] {
	display: inline-block;
	vertical-align: middle;
	margin-right: 20px;
}
ul.slick-dots {
	display: inline-block;
	vertical-align: middle;
	margin: 0px;
	padding: 0px;
	list-style: none;
}
ul.slick-dots li {
	display: inline-block;
	vertical-align: middle;
	margin: 0px 3px;
	padding: 2px;
}
ul.slick-dots li button {
	display: block;
	margin: 0px;
	padding: 0px;
	width: 20px;
	height: 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 100%;
	text-indent: -9999em;
	text-align: left;
	overflow: hidden;
	border: 1px solid #ffffff;
	background: #cccccc;
	color: #333333;
}
ul.slick-dots li.slick-active button {
	background: #333333;
	color: #ffffff;
}

/* バナー広告 */
#footer_banner {
	clear: both;
	width: var(--content-width, 1080px);
	margin: 0px auto 60px;
}
#footer_banner ul.banner_list {
	margin: 0px;
	padding: 0px;
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 20px;
}
#footer_banner ul.banner_list li {
	width: 200px;
}
#footer_banner ul.banner_list li img {
	width: 100%;
	height: auto;
	vertical-align: top;
}

.banner_text {
	display: block;
	padding: 10px;
	text-align: left;
}
.banner_text span {
	display: block;
}
.banner_text span:nth-child(2n) {
	font-size: var(--fontsize-main-small, 1.5rem);
}

/* 新着情報 */
.section_information {
	background: transparent;
	margin: 40px 0px;
	padding: 0px;
	max-width: 1340px;
	margin: 0 auto;
	position: relative;
}
.section_information h2 {
	margin: 0px;
	padding: 0px;
	border: none;
	border-radius: 0;
	background: none;
	font-size: 3rem;
}

.section_information p.no_data {
	margin: 0px;
	padding: 20px 0px;
}

.section_information_list ul {
	/* margin: 0px; */
	/* padding: 25px 0px 12px; */
	/* list-style: none; */
	/* display: block; */
}
.section_information_list ul li {
	/* width: 100%; */
	/* display: table; */
	/* -webkit-box-sizing: border-box; */
	/* box-sizing: border-box; */
	/* margin: 0px 0px 20px; */
	/* padding-bottom: 20px; */
	/* padding-right: 60px; */
	/* border-bottom: 1px solid #b9ad9c; */
}
.section_information_list ul li > span {
	/* display: table-cell; */
	/* vertical-align: top; */
}
.section_information_list ul li > span.article_date {
	/* width: 12em; */
	/* font-size: var(--fontsize-detail-small, 1.6rem); */
	/* padding-top: 0.1rem; */
}

.section_information_list img.icon_new {
	/* vertical-align: baseline; */
	/* margin-left: 0.5em; */
}

/* 新着情報（文字拡大時） */
.font_size_changed .section_information_list ul li,
.font_size_changed .section_information_list ul li > span {
	display: block;
}
.font_size_changed .section_information_list ul li > span.article_date {
	width: auto;
	padding-top: 0px;
}

/* 新着情報（一覧 / RSS） */
.section_information_list div.link_box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: flex-end;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 20px;
}
.section_information_list div.link_box span {
	display: inline-block;
	vertical-align: top;
	width: 100%;
	max-width: 179px;
}
.section_information_list div.link_box span a {
	display: block;
	border: 1px solid transparent;
	border-radius: 0;
	background: #ffffff;
	color: #333333;
	font-size: var(--fontsize-main-small, 1.5rem);
	line-height: 1.6rem;
	text-decoration: none;
	margin: 0px;
	text-align: center;
	padding: 10px 0;
}
.section_information_list div.link_box span a:hover,
.section_information_list div.link_box span a:focus {
	text-decoration: underline;
}

/* take */

.info_area {
	color: #fff;
}

.info_grid {
	display: flex;
	gap: 15px;
}

.info_col {
	width: 100%;
	max-width: 210px;
}
.info_col2 {
	width: 100%;
	max-width: 235px;
}

.info_col2 .info_block {
	width: max-content;
}

.info_block {width: 100%;}

/* 見出し（spanなので block 化） */
.info_heading {
	display: block;
	font-size: 2rem;
	font-weight: bold;
	padding-left: 28px;
	padding-bottom: 5px;
	border-bottom: 1px solid #fff;
	margin-bottom: 4px;
	position: relative;
	line-height: 1;
}

/* アイコン用（後で background-image） */
.info_heading::before {
	content: "";
	width: 32px;
	height: 32px;
	position: absolute;
	left: 0;
	top: 0;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 10px;
	left: 0px;
	transform: translate(0%, -50%);
}

/* 種別 */
.info_heading.time::before {
	background: url(/img/sites/rekishi/opened.png) no-repeat left;
}

.info_heading.close::before {
	background: url(/img/sites/rekishi/kyuukan.png) no-repeat left;
}

.info_heading.price::before {
	background: url(/img/sites/rekishi/yen.png) no-repeat left;
}

/* テキスト */
.info_text {
	margin-top: 0;
	font-size: 1.6rem;
	line-height: 1.7;
	margin-bottom: 11px;
}

.price_list {
	font-size: 1.6rem;
	line-height: 1.8;
	list-style: none;
	padding: 0;
	margin: 0;
}

.price_list li {
	margin-bottom: 8px;
}

.schedule {
	padding: 35px 0;
	gap: 25px;
	justify-content: center;
	display: flex;
	background-color: #896523;
	align-items: flex-start;
	margin-bottom: 30px;
}

/* 背景エリア */
.procedure_banner {
	background: url(/img/sites/rekishi/common-bg.png) no-repeat center;
	background-size: cover;
	padding: 30px 20px;
	margin-bottom: 40px;
}

/* 半透明ボックス */
.procedure_banner_inner {
	max-width: 927px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 66px;
	background-color: rgba(255, 255, 255, 0.56);
	border-radius: 16px;
	padding: 20px 0px;
}

/* 左テキスト */
.procedure_banner_title span {
	font-size: 3rem;
	font-weight: bold;
	color: #333;
	display: block;
	font-family:
		"Hiragino Mincho Pro", "HiraMinProN-W3", "ヒラギノ明朝 Pro W3", Century, "BIZ UDPMincho", "游明朝", "Yu Mincho",
		"游明朝体", "YuMincho", serif;
}

/* 右ボタン群 */
.procedure_banner_buttons {
	flex-direction: column;
	gap: 12px;
	width: 100%;
	max-width: 506px;
	display: flex;
}

/* ボタン共通 */
.procedure_btn {
	display: block;
	text-align: center;
	background-color: #2f2f2f;
	color: #ffffff !important;
	text-decoration: none;
	font-size: 2rem;
	font-weight: bold;
	letter-spacing: 0.04em;
	padding: 5px 0px;
	border-radius: 999px;
	transition: opacity 0.3s;
	width: 100%;
	max-width: 245px;
}

/* メインボタン */
.procedure_btn.is-primary {
	background-color: #8f3a36;
	max-width: 100%;
}

/* hover */
.procedure_btn:hover {
	opacity: 0.8;
}

.procedure_flex {
	display: flex;
	justify-content: space-between;
}

.top_slideshow .swiper-pagination {
	counter-reset: num;
}
.top_slideshow .swiper-pagination-bullet {
	width: 2rem;
	height: 2rem;
	counter-increment: num;
	background: #8a2e31;
	color: #fff;
	opacity: 1;
}
.top_slideshow .swiper-pagination-bullet::before {
	content: counter(num);
	font-size: 1.2rem;
	position: relative;
	top: -2px;
}
.top_slideshow .swiper-pagination-bullet-active {
	background: #fff;
	color: #000;
}

/* セクション */
.topics_section {
	padding: 80px 0px;
	max-width: 1340px;
	margin: 0 auto;
	margin-bottom: 80px;
}

/* 共通インナー（←これが肝） */
.topics_inner {
}

/* 見出し */
.topics_heading {
	margin-bottom: 24px;
}

.topics_topic {
	display: block;
	font-size: 2rem;
	color: #726350;
	line-height: 1;
}

.topics_title {
	display: block;
	font-size: 3rem;
	color: #0e120f;
	font-weight: bold;
	margin: 0;
	letter-spacing: 0.32em;
}

/* カード一覧 */
.topics_list {
	display: flex;
	justify-content: space-between;
}

/* カード */
.topics_card {
	width: 259px;
	height: 266px;
	text-decoration: none !important;
	border-radius: 16px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	flex-shrink: 0;
	text-decoration: none;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	width: calc((100% - 40px) / 5);
}

.topics_card:hover {
	opacity: 0.75;
}

/* 画像内テキスト */
.topics_card_text {
	font-size: 2.6rem;
	color: #ffffff;
	text-align: center;
	line-height: 1.3;
	font-family:
		"Hiragino Mincho Pro", "HiraMinProN-W3", "ヒラギノ明朝 Pro W3", Century, "BIZ UDPMincho", "游明朝", "Yu Mincho",
		"游明朝体", "YuMincho", serif;
	position: relative;
	z-index: 1;
	text-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
}

.bg_kaho {
	background: url(/img/sites/rekishi/kaho.png) no-repeat center;
}

.bg_ito {
	background: url(/img/sites/rekishi/ito.png) no-repeat center;
}

.bg_shoyu {
	background: url(/img/sites/rekishi/shoyu.png) no-repeat center;
}

.bg_digital {
	background: url(/img/sites/rekishi/digital.png) no-repeat center;
}

.bg_edu {
	background: url(/img/sites/rekishi/kyouiku.png) no-repeat center;
}

/* オーバーレイ */
.topics_card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.25);
}

#important_noticest_area {
	max-width: 1340px;
	margin: 0 auto;
}

.event {
	max-width: 1340px;
	margin: 0 auto;
	padding: 80px 0 80px;
}

/* 見出し */
.event_heading {
}

.event_heading_en {
	display: block;
	font-size: 2rem;
	color: #726350;
	line-height: 1;
}

.event_heading_jp {
	font-size: 3rem;
	color: #0e120f;
	font-weight: bold;
	margin: 0;
	margin-bottom: 30px;
	letter-spacing: 0.04em;
}

/* ★ グリッド */
.event_grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 48px;
}

/* カード */
.free_box {
	background: #ffffff;
}

.free_box img {
	width: 100% !important;
	height: auto;
	display: block;
}

.free_box p {
	margin: 0;
	padding: 0px 0px;
	font-size: 1.6rem;
	color: #333;
}

.free_box p:last-child a {
	font-size: 1.6rem;
	color: #333;
	text-decoration: underline;
}

.free_box p:last-child a:hover {
	text-decoration: none;
}

/* ボタン */
.event_buttons {
	display: flex;
	justify-content: flex-end;
	gap: 7px;
	margin-top: 33px;
}

.event_btn {
	width: 100%;
	max-width: 179px;
	background-color: #a54a3f;
	padding: 5px 0;
	color: #ffffff !important;
	font-size: 1.6rem;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	text-align: center;
	font-weight: bold;
}

/* セクション全体 */
.course_section {
	max-width: 1344px;
	margin: 0 auto;
	padding: 60px 0 40px;
}

/* 見出し */
.course_heading {
	margin-bottom: 0px;
}

.course_heading_en {
	display: block;
	font-size: 2rem;
	color: #726350;
	line-height: 1;
}

.course_heading_jp {
	display: block;
	font-size: 3rem;
	color: #0e120f;
	font-weight: bold;
}

/* 一覧 */
.course_list {
	margin-bottom: 30px;
}

/* 各行 */
.tpl_site_index .detail_free {
	display: flex !important;
	grid-template-columns: 180px 160px 1fr;
	align-items: center;
	gap: 50px;
	padding: 31px 0 20px !important;
	margin-bottom: 0px !important;
	border-bottom: 1px solid #c8bfb2;
}

/* 日付 */
.tpl_site_index .detail_free p:nth-of-type(1) {
	font-size: 1.6rem;
	color: #333;
	margin: 0;
	width: 100%;
	max-width: max-content;
}

/* 種別ラベル */
.tpl_site_index .detail_free p:nth-of-type(2) {
	margin: 0;
}

.tpl_site_index .detail_free p:nth-of-type(2)::before {
	content: attr(data-label);
}

.tpl_site_index .detail_free p:nth-of-type(2) {
	background-color: #8a6a45;
	color: #ffffff;
	font-size: 1.6rem;
	text-align: center;
	padding: 5px 0px;
	width: max-content;
	width: 100%;
	max-width: 159px;
}

/* タイトル */
.tpl_site_index .detail_free p:nth-of-type(3) {
	margin: 0;
	font-size: 1.8rem;
}

.tpl_site_index .detail_free a {
	font-size: 1.6rem;
	color: #333;
	text-decoration: underline;
}

.tpl_site_index .detail_free a:hover {
	text-decoration: none;
}

/* ボタン */
.tpl_site_index.course_button_wrap {
	display: flex;
	justify-content: flex-end;
	margin-top: 32px;
}

.tpl_site_index .course_button {
	width: 100%;
	max-width: 179px;
	background-color: #a54a3f;
	color: #ffffff;
	padding: 5px 0;
	font-size: 1.6rem;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-weight: bold;
}

.swiper-stop-text {
	color: #333333;
	display: block;
}
button.swiper-button-prev,
button.swiper-button-next {
	display: none !important;
}
button.swiper-button-start,
button.swiper-button-stop {
	position: relative !important;
	top: inherit !important;
	bottom: 0px !important;
	left: -7% !important;
	transform: translate(-50%, 0%) !important;
	background-color: #ab272d !important;
	width: 2.4rem !important;
	height: 2.4rem !important;
	box-shadow: none !important;
	z-index: 11 !important;
	text-decoration: none !important;
}
button.swiper-button-stop {
	background: url(/img/sites/rekishi/stop.png) no-repeat center !important;
}
button.swiper-button-stop::after {
	display: none !important;
}
button.swiper-button-start span,
button.swiper-button-stop span {
	width: max-content;
	display: block;
	color: #333333;
	font-size: 1.2rem;
	position: relative;
	left: 23px;
	text-decoration: none !important;
}

.swiper-pagination {
	left: 51px !important;
	margin-top: 17px !important;
}

.top_slideshow .swiper-pagination-bullet {
	width: 2.4rem;
	height: 2.4rem;
	counter-increment: num;
	background: #ab272d;
	margin: 0 3px !important;
	color: #fff;
}

.top_slideshow .swiper-pagination-bullet-active {
	background: #fff;
	color: #ab272d;
	border: 1px solid #ab272d;
}

.swiper-control-wrap {
	position: absolute;
	top: 104%;
	left: 49.5%;
	transform: translate(-50%, -50%);
	z-index: 2;
	display: flex;
	align-items: center;
}

.swiper {
	padding-bottom: 4rem !important;
	overflow: inherit !important;
}

.swiper-container {
	overflow: inherit !important;
}
button.swiper-button-prev,
button.swiper-button-next {
	position: relative !important;
}

.section_information_list img.icon_new {
	/* vertical-align: baseline; */
	/* margin-left: 0px; */
	/* position: absolute; */
	/* top: 50%; */
	/* left: 220px; */
	/* transform: translate(-50%, -50%); */
	/* width: 36px; */
	/* height: auto; */
}

.section_information .link_rss {
	display: none !important;
}
.section_information .link_ichiran a {
	width: 179px;
	background-color: #a54a3f !important;
	color: #ffffff !important;
	font-size: 1.6rem !important;
	border-radius: 12px !important;
	display: flex !important;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-weight: bold;
}

.info_sns {
	position: absolute;
	top: 12px;
	right: 0;
	display: flex;
	gap: 20px;
}

.event .free_box > :nth-child(2) {
	padding: 18px 13px 0 13px;
}

.event .free_box p:last-child {
	padding: 4px 13px 40px 13px;
	font-size: 1.8rem;
}

.tpl_site_index #main_body {
	width: 100%;
	max-width: 1340px;
	margin: 0 auto;
}

#main_body h2 {
	padding: 0;
	background: none;
	font-size: 3rem;
	border-left: none;
	margin: 0;
	letter-spacing: 0.04em;
}

.course_button_wrap {
	display: flex;
	justify-content: flex-end;
}

#mymainback {
	padding-top: 20px;
	padding-bottom: 80px;
}

#header2_box {
	padding: 30px 0px;
}

.color_black .info_sns {
	background-color: #666666 !important;
}

.swiper-control-wrap {
	gap: 30px !important;
}

.font_size_changed button.swiper-button-start span,
button.swiper-button-stop span {
	left: 35px !important;
}

.font_size_limit_max .procedure_btn {
    padding: 25px 0px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.color_change .procedure_banner {
	background: none;
}

.free_box_wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}



/* code */

/* ========== 背景色変更 ========== */

/* 共通 */
.color_change * {
}
/* 黒 */
.color_black * {
}
/* 青 */
.color_blue * {
}

/* ==================================================
PC ここまで
================================================== */

/* ==================================================
スマートフォン
================================================== */
@media screen and (max-width: 1080px) {
	/* ========== トップページ ========== */

	/* スライドショー */
	#top_photo {
		width: auto;
		margin: 15px 15px 0px;
	}

	/* スライドショー（3枚表示） */
	#top_photo.triple #top_photo_list {
		width: auto;
		left: auto;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
	}

	/* スライドコントロールボタン */
	*[id*="_control_box"] {
		text-align: center;
	}

	/* スライドナビゲーションボタン */
	*[id*="_control_navigation"] {
		margin: 5px 20px;
	}

	/* バナー広告 */
	#footer_banner {
		width: auto;
		margin: 0px var(--mymainback-margin-side, 15px) 40px;
	}
	#footer_banner ul.banner_list {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		gap: 10px;
	}
	#footer_banner ul.banner_list li {
		width: calc(50% - 5px);
		max-width: 200px;
	}

	.banner_text span:nth-child(2n) {
		font-size: var(--fontsize-main-small, 1.3rem);
	}

	/* 新着情報 */
	.section_information {
		padding: 0px;
		margin-bottom: 15px;
	}
	.section_information h2 {
		margin: 0px;
		padding: 15px 20px;
		font-size: 2rem;
	}

	.section_information p.no_data {
		padding: 20px;
	}

	.section_information_list ul {
		padding: 0px 20px 20px;
	}
	.section_information_list ul li {
		display: block;
		width: auto;
		margin: 0px;
		padding: 15px 0px;
		border-bottom: 1px solid #cccccc;
	}
	.section_information_list ul li > span {
		display: block;
	}
	.section_information_list ul li > span.article_date {
		width: auto;
		padding-top: 0px;
	}
	.section_information_list ul li a {
		/* display: block; */
		/* background-size: 8px auto; */
		/* padding-right: 15px; */
	}

	.section_information_list ul li:has(img.icon_new) {
		position: relative;
	}
	.section_information_list ul li:has(img.icon_new) > span.article_date {
		/* padding-left: 45px; */
	}
	.section_information_list ul li:has(img.icon_new) img.icon_new {
		/* margin: 0px; */
		/* position: absolute; */
		/* top: 17px; */
		/* left: 0px; */
	}

	/* 新着情報（一覧 / RSS） */
	.section_information_list div.link_box {
		padding: 0px 10px 30px;
		gap: 10px;
	}
	.section_information_list div.link_box span {
		width: auto;
		max-width: none;
		min-width: calc(50% - 5px);
	}
	.section_information_list div.link_box span a {
		font-size: var(--fontsize-main-small, 1.3rem);
	}

	.swiper-pagination {
		left: 41px !important;
		width: 225px !important;
	}

	.swiper-slide img.pg_class_slide_img_fit {
		object-fit: cover !important;
		height: 300px !important;
	}

	#he_right {
		margin-bottom: 20px;
	}

	.top_slideshow .swiper-pagination-bullet::before {
		content: counter(num);
		position: relative;
		top: 1px;
	}
	.swiper-control-wrap {
		top: 110%;
	}

	.schedule .free_box {
		background: #ffffff;
		width: 315px;
	}

	.schedule .free_box img {
		width: 100% !important;
		max-width: 100%;
		height: auto !important;
		vertical-align: top;
	}

	#mymainback {
		margin: 0;
		padding-top: 30px;
	}

	.schedule {
		align-items: center;
		flex-direction: column;
	}

	.info_grid {
		align-items: flex-start;
		justify-content: center;
		display: flex;
		flex-direction: column;
		padding: 0 27px;
	}

	.procedure_banner_inner {
		flex-direction: column;
	}

	#important_noticest_area .second_important .link_box {
		margin-top: 22px;
		text-align: right;
		display: flex;
		justify-content: flex-end;
		gap: 28px;
		padding-right: 0px;
		flex-direction: column;
		align-items: center;
	}

	.topics_list {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		margin: auto;
		width: fit-content;
		gap: 10px;
	}

	.event_grid {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		gap: 48px;
	}

	#main_body div.detail_free {
		display: block !important;
		position: relative;
	}

	.tpl_site_index .detail_free p:nth-of-type(2) {
		background-color: #8a6a45;
		color: #ffffff;
		font-size: 1.6rem;
		text-align: center;
		padding: 0px 0px;
		width: max-content;
		width: 100%;
		max-width: 124px;
		position: absolute;
		top: 25px;
		left: 180px;
	}

	.topics_card {
		width: 174px;
		height: 176px;
		text-decoration: none !important;
		border-radius: 16px;
		overflow: hidden;
		display: flex;
		align-items: center;
		justify-content: center;
		position: relative;
		flex-shrink: 0;
		text-decoration: none;
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}

	.procedure_banner_title span {
		font-size: 2.4rem;
	}

	.procedure_btn {
		font-size: 1.8rem;
	}

	.procedure_btn {
		display: block;
		text-align: center;
		background-color: #2f2f2f;
		color: #ffffff !important;
		text-decoration: none;
		font-size: 1.4rem;
		font-weight: bold;
		letter-spacing: 0.04em;
		padding: 5px 0px;
		border-radius: 999px;
		transition: opacity 0.3s;
		width: 100%;
		max-width: 245px;
	}

	#important_noticest_area .second_important ul li {
		display: flex;
		align-items: flex-start;
		margin-bottom: 10px;
		flex-direction: column;
		border: none !important;
	}

	#important_noticest_area .second_important ul li > span {
		display: block;
		font-size: 1.4rem !important;
		color: #333333 !important;
	}

	#important_noticest_area .second_important .link_box > span a {
		font-size: 1.6rem;
	}

	.topics_card_text {
		font-size: 1.6rem;
		color: #ffffff;
		text-align: center;
		line-height: 1.3;
		font-family:
			"Hiragino Mincho Pro", "HiraMinProN-W3", "ヒラギノ明朝 Pro W3", Century, "BIZ UDPMincho", "游明朝",
			"Yu Mincho", "游明朝体", "YuMincho", serif;
		position: relative;
		z-index: 1;
		text-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
	}

	.section_information h2 {
		margin: 0px;
		padding: 0;
		font-size: 3rem;
	}

	.section_information_list ul li a {
		/* font-size: 1.6rem; */
		/* font-weight: 700; */
	}

	.section_information_list ul li > span.article_date {
		/* font-weight: 700; */
	}
	.section_information_list div.link_box span a {
		font-size: 1.4rem;
	}
	.event .free_box > :nth-child(2) {
		font-size: 1.4rem;
		padding: 11px 13px 0 13px;
	}

	.event_btn {
		font-size: 1.4rem;
	}
	.tpl_site_index .detail_free p:nth-of-type(1) {
		font-size: 1.4rem;
		margin-bottom: 8px;
	}

	.tpl_site_index .course_list .detail_free p:nth-of-type(2) {
		font-size: 1.5rem;
	}
	.tpl_site_index .course_button {
		font-size: 1.4rem;
	}

	#he_left {
		margin-bottom: -5px;
	}

	.info_area {
		width: 100%;
		color: #fff;
	}

	.info_heading {
		display: block;
		font-size: 2rem;
		font-weight: bold;
		padding-left: 28px;
		padding-bottom: 11px;
		border-bottom: 1px solid #fff;
		margin-bottom: 7px;
		position: relative;
		line-height: 1;
	}

	.info_block {
		margin-bottom: 15px;
	}

	.price_list li {
		margin-bottom: 0px;
	}

	.procedure_btn {
		font-size: 1.8rem;
	}

	.procedure_flex a {
		font-size: 1.4rem;
	}

	.procedure_banner {
		background: url(/img/sites/rekishi/common-bg.png) no-repeat center;
		background-size: cover;
		padding: 50px 10px;
		margin-bottom: 40px;
	}

	.procedure_banner_inner {
		max-width: 927px;
		margin: 0 auto;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 20px;
		background-color: rgba(255, 255, 255, 0.56);
		border-radius: 16px;
		padding: 50px 10px;
	}

	.procedure_flex {
		display: flex;
		justify-content: space-between;
		gap: 10px;
	}

	#important_noticest_area {
		max-width: 1340px;
		margin: 0 10px;
	}
	#important_noticest_area .second_important h2,
	#important_noticest_area .second_important_ttl {
		margin: 0px 0px 21px;
		padding: 15px 20px 15px 53px;
		color: #842f34;
		font-size: 2rem;
		text-align: left;
		border-radius: 12px 12px 0 0;
		background: url(/img/sites/rekishi/important.png) no-repeat left 21px center;
		background-size: 25px;
		background-color: #f2cecc;
	}
	#important_noticest_area .second_important ul li {
		margin: 0px;
		padding: 9px 21px;
		border-bottom: 1px solid var(--list-bordercolor, #cccccc);
		margin-bottom: 10px;
	}

	#important_noticest_area .second_important .link_box {
		margin-top: 0px;
		text-align: right;
		display: flex;
		justify-content: flex-end;
		gap: 20px;
		padding-right: 0px;
		flex-direction: column;
		align-items: center;
	}
	#important_noticest_area .second_important .link_box > span {
		display: block;
		margin-top: 0px;
		border: 1px solid #842f34;
		border-radius: 50px;
		padding: 7px 0px;
		width: 100%;
		max-width: 290px;
		text-align: center;
	}

	#important_noticest_area .second_important {
		background: #ffffff;
		border-radius: 12px;
		border: 1px solid #ff0000;
		padding-bottom: 30px;
	}

	.topics_section {
		padding: 50px 0px;
		margin-bottom: 5px;
	}

	.topics_heading {
		margin-bottom: 24px;
		padding: 0 10px;
	}

	.event_heading {
		padding: 0 10px;
	}

	.info_sns {
		position: absolute;
		top: 24px;
		right: 10px;
		display: flex;
		gap: 15px;
	}

	.info_sns a img {
		width: 30px;
		height: 30px;
	}

	.section_information_list ul {
		padding: 0px 10px 38px;
	}

	.event {
		max-width: 1340px;
		margin: 0 auto;
		padding: 0px 0 45px;
	}

	.event_grid {
		gap: 25px;
		margin: 0 10px;
	}
	.course_heading {
		margin: 0 10px;
		margin-bottom: 0px;
	}

	.course_list {
		margin: 0 10px;
		margin-bottom: 30px;
	}

	.font_size_changed .swiper-control-wrap {
		top: 114%;
	}

	.font_size_changed button.swiper-button-stop {
		background: url(/img/sites/rekishi/stop.png) no-repeat center !important;
		background-size: 2.4rem !important;
	}

	.tpl_site_index .detail_free {
		display: flex !important;
		grid-template-columns: 180px 160px 1fr;
		align-items: center;
		gap: 50px;
		padding: 27px 0 13px !important;
		margin-bottom: 0px !important;
		border-bottom: 1px solid #c8bfb2;
	}

	.tpl_site_index .detail_free p:nth-of-type(3) {
		margin: 0;
		font-size: 1.6rem;
	}

	.event_buttons {
		display: flex;
		justify-content: center;
		gap: 7px;
		margin-top: 33px;
	}

	.course_button_wrap {
		display: flex;
		justify-content: flex-end;
		margin: 0 10px;
	}

	.font_size_changed .tpl_site_index .detail_free p:nth-of-type(2) {
		background-color: #8a6a45;
		color: #ffffff;
		font-size: 1.6rem;
		text-align: center;
		padding: 0px 0px;
		width: max-content;
		width: 100%;
		max-width: max-content;
		position: unset;
	}



	/* code-sp */

	/* ========== 背景色変更 ========== */

	/* 共通 */
	.color_change * {
	}
	/* 黒 */
	.color_black * {
	}
	/* 青 */
	.color_blue * {
	}
}
/* ==================================================
スマートフォン ここまで
================================================== */

#main_body h2 {
	padding: 0;
	background: none;
	font-size: 3rem;
	border-left: none;
	margin: 0;
	letter-spacing: 0.04em;
}

.course_button_wrap {
	display: flex;
	justify-content: flex-end;
}

#mymainback {
	padding-top: 20px;
	padding-bottom: 80px;
}

#header2_box {
	padding: 30px 0px;
}

.color_black .info_sns {
	background-color: #666666 !important;
}

/* code */

/* ========== 背景色変更 ========== */

/* 共通 */
.color_change * {
}
/* 黒 */
.color_black * {
}
/* 青 */
.color_blue * {
}

/* ==================================================
PC ここまで
================================================== */

/* ==================================================
スマートフォン
================================================== */
@media screen and (max-width: 1080px) {
	/* ========== トップページ ========== */

	/* スライドショー */
	#top_photo {
		width: auto;
		margin: 15px 15px 0px;
	}

	/* スライドショー（3枚表示） */
	#top_photo.triple #top_photo_list {
		width: auto;
		left: auto;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
	}

	/* スライドコントロールボタン */
	*[id*="_control_box"] {
		text-align: center;
	}

	/* スライドナビゲーションボタン */
	*[id*="_control_navigation"] {
		margin: 5px 20px;
	}

	/* バナー広告 */
	#footer_banner {
		width: auto;
		margin: 0px var(--mymainback-margin-side, 15px) 40px;
	}
	#footer_banner ul.banner_list {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		gap: 10px;
	}
	#footer_banner ul.banner_list li {
		width: calc(50% - 5px);
		max-width: 200px;
	}

	.banner_text span:nth-child(2n) {
		font-size: var(--fontsize-main-small, 1.3rem);
	}

	/* 新着情報 */
	.section_information {
		padding: 0px;
		margin-bottom: 15px;
	}
	.section_information h2 {
		margin: 0px;
		padding: 15px 20px;
		font-size: 2rem;
	}

	.section_information p.no_data {
		padding: 20px;
	}

	.section_information_list ul {
		padding: 0px 20px 20px;
	}
	.section_information_list ul li {
		display: block;
		width: auto;
		margin: 0px;
		padding: 15px 0px;
		border-bottom: 1px solid #cccccc;
	}
	.section_information_list ul li > span {
		display: block;
	}
	.section_information_list ul li > span.article_date {
		width: auto;
		padding-top: 0px;
	}
	.section_information_list ul li a {
		/* display: block; */
		/* background-size: 8px auto; */
		/* padding-right: 15px; */
	}

	.section_information_list ul li:has(img.icon_new) {
		position: relative;
	}
	.section_information_list ul li:has(img.icon_new) > span.article_date {
		/* padding-left: 45px; */
	}
	.section_information_list ul li:has(img.icon_new) img.icon_new {
		/* margin: 0px; */
		/* position: absolute; */
		/* top: 17px; */
		/* left: 0px; */
		width: 25px;
		aspect-ratio: 1 / 1;
		height: auto;
		margin-left: 10px;
	}

	/* 新着情報（一覧 / RSS） */
	.section_information_list div.link_box {
		padding: 0px 10px 30px;
		gap: 10px;
	}
	.section_information_list div.link_box span {
		width: auto;
		max-width: none;
		min-width: calc(50% - 5px);
	}
	.section_information_list div.link_box span a {
		font-size: var(--fontsize-main-small, 1.3rem);
	}

	.swiper-pagination {
		left: 41px !important;
		width: 225px !important;
	}

	.swiper-slide img.pg_class_slide_img_fit {
		object-fit: cover !important;
		height: 300px !important;
	}

	#he_right {
		margin-bottom: 20px;
	}

	.top_slideshow .swiper-pagination-bullet::before {
		content: counter(num);
		position: relative;
		top: 1px;
	}
	.swiper-control-wrap {
		top: 110%;
	}

	.schedule .free_box {
		background: #ffffff;
		width: 315px;
	}

	.schedule .free_box img {
		width: 100% !important;
		max-width: 100%;
		height: auto !important;
		vertical-align: top;
	}

	#mymainback {
		margin: 0;
		padding-top: 30px;
	}

	.schedule {
		align-items: center;
		flex-direction: column;
	}

	.info_grid {
		align-items: flex-start;
		justify-content: center;
		display: flex;
		flex-direction: column;
		padding: 0 27px;
		align-items: center;
	}

	.procedure_banner_inner {
		flex-direction: column;
	}

	#important_noticest_area .second_important .link_box {
		margin-top: 22px;
		text-align: right;
		display: flex;
		justify-content: flex-end;
		gap: 28px;
		padding-right: 0px;
		flex-direction: column;
		align-items: center;
	}

	.topics_list {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		margin: auto;
		width: fit-content;
		gap: 10px;
	}

	.event_grid {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		gap: 48px;
	}

	#main_body div.detail_free {
		display: block !important;
		position: relative;
	}

	.tpl_site_index .detail_free p:nth-of-type(2) {
		background-color: #8a6a45;
		color: #ffffff;
		font-size: 1.6rem;
		text-align: center;
		padding: 0px 0px;
		width: max-content;
		width: 100%;
		max-width: 124px;
		position: absolute;
		top: 25px;
		left: 180px;
	}

	.topics_card {
		width: 174px;
		height: 176px;
		text-decoration: none !important;
		border-radius: 16px;
		overflow: hidden;
		display: flex;
		align-items: center;
		justify-content: center;
		position: relative;
		flex-shrink: 0;
		text-decoration: none;
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
	}

	.procedure_banner_title span {
		font-size: 2.4rem;
	}

	.procedure_btn {
		font-size: 1.8rem;
	}

	.procedure_btn {
		display: block;
		text-align: center;
		background-color: #2f2f2f;
		color: #ffffff !important;
		text-decoration: none;
		font-size: 1.4rem;
		font-weight: bold;
		letter-spacing: 0.04em;
		padding: 5px 0px;
		border-radius: 999px;
		transition: opacity 0.3s;
		width: 100%;
		max-width: 245px;
	}

	#important_noticest_area .second_important ul li {
		display: flex;
		align-items: flex-start;
		margin-bottom: 10px;
		flex-direction: column;
		border: none !important;
	}

	#important_noticest_area .second_important ul li > span {
		display: block;
		font-size: 1.4rem !important;
		color: #333333 !important;
	}

	#important_noticest_area .second_important .link_box > span a {
		font-size: 1.6rem;
	}

	.topics_card_text {
		font-size: 1.6rem;
		color: #ffffff;
		text-align: center;
		line-height: 1.3;
		font-family:
			"Hiragino Mincho Pro", "HiraMinProN-W3", "ヒラギノ明朝 Pro W3", Century, "BIZ UDPMincho", "游明朝",
			"Yu Mincho", "游明朝体", "YuMincho", serif;
		position: relative;
		z-index: 1;
		text-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
	}

	.section_information h2 {
		margin: 0px;
		padding: 0;
		font-size: 3rem;
	}

	.section_information_list ul li a {
		/* font-size: 1.6rem; */
		/* font-weight: 700; */
	}

	.section_information_list ul li > span.article_date {
		/* font-weight: 700; */
	}
	.section_information_list div.link_box span a {
		font-size: 1.4rem;
	}
	.event .free_box > :nth-child(2) {
		font-size: 1.4rem;
		padding: 11px 13px 0 13px;
	}

	.event_btn {
		font-size: 1.4rem;
	}
	.tpl_site_index .detail_free p:nth-of-type(1) {
		font-size: 1.4rem;
		margin-bottom: 8px;
	}

	.tpl_site_index .course_list .detail_free p:nth-of-type(2) {
		font-size: 1.5rem;
	}
	.tpl_site_index .course_button {
		font-size: 1.4rem;
	}

	#he_left {
		margin-bottom: -5px;
	}

	.info_area {
		width: 100%;
		color: #fff;
	}

	.info_heading {
		display: block;
		font-size: 2rem;
		font-weight: bold;
		padding-left: 28px;
		padding-bottom: 11px;
		border-bottom: 1px solid #fff;
		margin-bottom: 7px;
		position: relative;
		line-height: 1;
	}

	.info_block {
		margin-bottom: 15px;
	}

	.price_list li {
		margin-bottom: 0px;
	}

	.procedure_btn {
		font-size: 1.8rem;
	}

	.procedure_flex a {
		font-size: 1.4rem;
	}

	.procedure_banner {
		background: url(/img/sites/rekishi/common-bg.png) no-repeat center;
		background-size: cover;
		padding: 50px 10px;
		margin-bottom: 40px;
	}

	.procedure_banner_inner {
		max-width: 927px;
		margin: 0 auto;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 20px;
		background-color: rgba(255, 255, 255, 0.56);
		border-radius: 16px;
		padding: 50px 10px;
	}

	.procedure_flex {
		display: flex;
		justify-content: space-between;
		gap: 10px;
	}

	#important_noticest_area {
		max-width: 1340px;
		margin: 0 10px;
	}
	#important_noticest_area .second_important h2,
	#important_noticest_area .second_important_ttl {
		margin: 0px 0px 21px;
		padding: 15px 20px 15px 53px;
		color: #842f34;
		font-size: 2rem;
		text-align: left;
		border-radius: 12px 12px 0 0;
		background: url(/img/sites/rekishi/important.png) no-repeat left 21px center;
		background-size: 25px;
		background-color: #f2cecc;
	}
	#important_noticest_area .second_important ul li {
		margin: 0px;
		padding: 9px 21px;
		border-bottom: 1px solid var(--list-bordercolor, #cccccc);
		margin-bottom: 10px;
	}

	#important_noticest_area .second_important .link_box {
		margin-top: 0px;
		text-align: right;
		display: flex;
		justify-content: flex-end;
		gap: 20px;
		padding-right: 0px;
		flex-direction: column;
		align-items: center;
	}
	#important_noticest_area .second_important .link_box > span {
		display: block;
		margin-top: 0px;
		border: 1px solid #842f34;
		border-radius: 50px;
		padding: 7px 0px;
		width: 100%;
		max-width: 290px;
		text-align: center;
	}

	#important_noticest_area .second_important {
		background: #ffffff;
		border-radius: 12px;
		border: 1px solid #ff0000;
		padding-bottom: 30px;
	}

	.topics_section {
		padding: 50px 0px;
		margin-bottom: 5px;
	}

	.topics_heading {
		margin-bottom: 24px;
		padding: 0 10px;
	}

	.event_heading {
		padding: 0 10px;
	}

	.info_sns {
		position: absolute;
		top: 24px;
		right: 10px;
		display: flex;
		gap: 15px;
	}

	.info_sns a img {
		width: 30px;
		height: 30px;
	}

	.section_information_list ul {
		padding: 0px 10px 38px;
	}

	.event {
		max-width: 1340px;
		margin: 0 auto;
		padding: 0px 0 45px;
	}

	.event_grid {
		gap: 25px;
		margin: 0 10px;
	}
	.course_heading {
		margin: 0 10px;
		margin-bottom: 0px;
	}

	.course_list {
		margin: 0 10px;
		margin-bottom: 30px;
	}

	.font_size_changed .swiper-control-wrap {
		top: 114%;
	}

	.font_size_changed button.swiper-button-stop {
		background: url(/img/sites/rekishi/stop.png) no-repeat center !important;
		background-size: 2.4rem !important;
	}

	.tpl_site_index .detail_free {
		display: flex !important;
		grid-template-columns: 180px 160px 1fr;
		align-items: center;
		gap: 50px;
		padding: 27px 0 13px !important;
		margin-bottom: 0px !important;
		border-bottom: 1px solid #c8bfb2;
	}

	.tpl_site_index .detail_free p:nth-of-type(3) {
		margin: 0;
		font-size: 1.6rem;
	}

	.event_buttons {
		display: flex;
		justify-content: center;
		gap: 7px;
		margin-top: 33px;
	}

	.course_button_wrap {
		display: flex;
		justify-content: flex-end;
		margin: 0 10px;
	}

	.font_size_changed .tpl_site_index .detail_free p:nth-of-type(2) {
		background-color: #8a6a45;
		color: #ffffff;
		font-size: 1.6rem;
		text-align: center;
		padding: 0px 0px;
		width: max-content;
		width: 100%;
		max-width: max-content;
		position: unset;
	}

	.font_size_limit_max button.swiper-button-start span, .font_size_limit_max button.swiper-button-stop span {
    top: 43px;
    left: -51px !important;
}

.font_size_limit_max button.swiper-button-start, .font_size_limit_max button.swiper-button-stop {
    position: relative !important;
    top: inherit !important;
    bottom: 20px !important;
    left: 20% !important;
    transform: translate(-50%, 0%) !important;
    background-color: #ab272d !important;
    width: 2.4rem !important;
    height: 2.4rem !important;
    box-shadow: none !important;
    z-index: 11 !important;
    text-decoration: none !important;
}

	.free_box_wrapper {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		gap: 20px;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}

	.info_col {
		max-width: max-content;
	}

	/* code-sp */

	/* ========== 背景色変更 ========== */

	/* 共通 */
	.color_change * {
	}
	/* 黒 */
	.color_black * {
	}
	/* 青 */
	.color_blue * {
	}
}
/* ==================================================
スマートフォン ここまで
================================================== */